summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-05-27 10:32:03 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-05-28 22:09:59 +0200
commit208522ddd3fb6b994aacdab10aca45d4e2562207 (patch)
tree3ac11f2b9bb9a212c26989010f2dd8d8f165aa0d /include
parent12800a215102435b16fd0e3028f1fdfe8ebeb090 (diff)
weld SfxCustomPropertiesPage
Change-Id: I1b1ba1c2b879d270eb3af486a4d006f170d1b92e Reviewed-on: https://gerrit.libreoffice.org/73111 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/sfx2/dinfdlg.hxx245
-rw-r--r--include/sfx2/strings.hrc1
-rw-r--r--include/svtools/ctrlbox.hxx1
-rw-r--r--include/vcl/weld.hxx1
4 files changed, 105 insertions, 143 deletions
diff --git a/include/sfx2/dinfdlg.hxx b/include/sfx2/dinfdlg.hxx
index 4ededb6bd3fb..1062cf18dc5b 100644
--- a/include/sfx2/dinfdlg.hxx
+++ b/include/sfx2/dinfdlg.hxx
@@ -29,6 +29,8 @@
#include <svl/stritem.hxx>
#include <svl/zforlist.hxx>
+#include <svtools/ctrlbox.hxx>
+
#include <vcl/headbar.hxx>
#include <vcl/edit.hxx>
@@ -257,147 +259,109 @@ public:
// class CustomPropertiesRemoveButton ------------------------------------
struct CustomPropertyLine;
-class CustomPropertiesEdit : public Edit
+class CustomPropertiesDateField
{
private:
- CustomPropertyLine* const m_pLine;
-
-public:
- CustomPropertiesEdit(vcl::Window* pParent, WinBits nStyle, CustomPropertyLine* pLine)
- : Edit(pParent, nStyle)
- , m_pLine(pLine)
- {
- }
-
- CustomPropertyLine* GetLine() const { return m_pLine; }
-};
-
-class CustomPropertiesTypeBox : public ListBox
-{
-private:
- CustomPropertyLine* const m_pLine;
-
-public:
- CustomPropertiesTypeBox(vcl::Window* pParent, CustomPropertyLine* pLine);
- CustomPropertyLine* GetLine() const { return m_pLine; }
-};
-
-class CustomPropertiesDateField : public DateField
-{
+ std::unique_ptr<SvtCalendarBox> m_xDateField;
public:
::boost::optional<sal_Int16> m_TZ;
- CustomPropertiesDateField(vcl::Window* pParent, WinBits nStyle)
- : DateField(pParent, nStyle)
- {
- }
+ CustomPropertiesDateField(SvtCalendarBox* pDateField);
+ void set_visible(bool bVisible) { m_xDateField->set_visible(bVisible); }
+ Date get_date() const { return m_xDateField->get_date(); }
+ void set_date(const Date& rDate) { m_xDateField->set_date(rDate); }
+ ~CustomPropertiesDateField();
};
-class CustomPropertiesTimeField : public TimeField
+class CustomPropertiesTimeField
{
public:
+ std::unique_ptr<weld::TimeSpinButton> m_xTimeField;
bool m_isUTC;
- CustomPropertiesTimeField(vcl::Window* pParent, WinBits nStyle)
- : TimeField(pParent, nStyle)
- , m_isUTC(false)
- {
- }
+ CustomPropertiesTimeField(std::unique_ptr<weld::TimeSpinButton> xTimeField);
+ void set_visible(bool bVisible) { m_xTimeField->set_visible(bVisible); }
+ tools::Time get_value() const { return m_xTimeField->get_value(); }
+ void set_value(const tools::Time& rTime) { m_xTimeField->set_value(rTime); }
+ ~CustomPropertiesTimeField();
};
-class CustomPropertiesDurationField : public Edit
+class CustomPropertiesDurationField
{
- CustomPropertyLine* const m_pLine;
css::util::Duration m_aDuration;
-protected:
- virtual void RequestHelp(const HelpEvent& rEvt) override;
+ std::unique_ptr<weld::Entry> m_xEntry;
+ std::unique_ptr<weld::Button> m_xEditButton;
+
+ DECL_LINK(ClickHdl, weld::Button&, void);
public:
- CustomPropertiesDurationField(vcl::Window* pParent, WinBits nStyle, CustomPropertyLine* pLine);
+ CustomPropertiesDurationField(std::unique_ptr<weld::Entry> xEntry,
+ std::unique_ptr<weld::Button> xEditButton);
void SetDuration( const css::util::Duration& rDuration );
const css::util::Duration& GetDuration() const { return m_aDuration; }
-};
-class CustomPropertiesEditButton : public PushButton
-{
- CustomPropertyLine* m_pLine;
-
-public:
- CustomPropertiesEditButton(vcl::Window* pParent, WinBits nStyle, CustomPropertyLine* pLine);
-
- DECL_LINK(ClickHdl, Button*, void);
+ void set_visible(bool bVisible);
};
-class CustomPropertiesRemoveButton : public ImageButton
+class CustomPropertiesYesNoButton
{
private:
- CustomPropertyLine* const m_pLine;
+ std::unique_ptr<weld::Widget> m_xTopLevel;
+ std::unique_ptr<weld::RadioButton> m_xYesButton;
+ std::unique_ptr<weld::RadioButton> m_xNoButton;
public:
- CustomPropertiesRemoveButton(vcl::Window* pParent, WinBits nStyle, CustomPropertyLine* pLine)
- : ImageButton(pParent, nStyle)
- , m_pLine(pLine)
- {
- }
-
- CustomPropertyLine* GetLine() const { return m_pLine; }
+ CustomPropertiesYesNoButton(std::unique_ptr<weld::Widget>,
+ std::unique_ptr<weld::RadioButton> xYesButton,
+ std::unique_ptr<weld::RadioButton> xNoButton);
+ ~CustomPropertiesYesNoButton();
+
+ void CheckYes() { m_xYesButton->set_active(true); }
+ void CheckNo() { m_xNoButton->set_active(true); }
+ bool IsYesChecked() const { return m_xYesButton->get_active(); }
+ void set_visible(bool bVisible) { m_xTopLevel->set_visible(bVisible); }
};
-class CustomPropertiesYesNoButton : public Control
-{
-private:
- VclPtr<RadioButton> m_aYesButton;
- VclPtr<RadioButton> m_aNoButton;
-
-public:
- CustomPropertiesYesNoButton(vcl::Window* pParent);
- virtual ~CustomPropertiesYesNoButton() override;
- virtual void dispose() override;
-
- virtual void Resize() override;
-
- void CheckYes() { m_aYesButton->Check(); }
- void CheckNo() { m_aNoButton->Check(); }
- bool IsYesChecked() const { return m_aYesButton->IsChecked(); }
-};
+class CustomPropertiesWindow;
// struct CustomPropertyLine ---------------------------------------------
-
struct CustomPropertyLine
{
- ScopedVclPtr<VclGrid> m_aLine;
- ScopedVclPtr<ComboBox> m_aNameBox;
- ScopedVclPtr<CustomPropertiesTypeBox> m_aTypeBox;
- ScopedVclPtr<CustomPropertiesEdit> m_aValueEdit;
- ScopedVclPtr<CustomPropertiesDateField> m_aDateField;
- ScopedVclPtr<CustomPropertiesTimeField> m_aTimeField;
- const OUString m_sDurationFormat;
- ScopedVclPtr<CustomPropertiesDurationField> m_aDurationField;
- ScopedVclPtr<CustomPropertiesEditButton> m_aEditButton;
- ScopedVclPtr<CustomPropertiesYesNoButton> m_aYesNoButton;
- ScopedVclPtr<CustomPropertiesRemoveButton> m_aRemoveButton;
-
- bool m_bTypeLostFocus;
-
- CustomPropertyLine( vcl::Window* pParent );
+ CustomPropertiesWindow* m_pParent;
+
+ std::unique_ptr<weld::Builder> m_xBuilder;
+ std::unique_ptr<weld::Container> m_xLine;
+ std::unique_ptr<weld::ComboBox> m_xNameBox;
+ std::unique_ptr<weld::ComboBox> m_xTypeBox;
+ std::unique_ptr<weld::Entry> m_xValueEdit;
+ std::unique_ptr<weld::Widget> m_xDateTimeBox;
+ std::unique_ptr<CustomPropertiesDateField> m_xDateField;
+ std::unique_ptr<CustomPropertiesTimeField> m_xTimeField;
+ std::unique_ptr<weld::Widget> m_xDurationBox;
+ std::unique_ptr<CustomPropertiesDurationField> m_xDurationField;
+ std::unique_ptr<CustomPropertiesYesNoButton> m_xYesNoButton;
+ std::unique_ptr<weld::Button> m_xRemoveButton;
+
+ bool m_bTypeLostFocus;
+
+ CustomPropertyLine(CustomPropertiesWindow* pParent, weld::Widget* pContainer);
+ DECL_LINK(TypeHdl, weld::ComboBox&, void);
+ DECL_LINK(RemoveHdl, weld::Button&, void);
+ DECL_LINK(EditLoseFocusHdl, weld::Widget&, void);
+ DECL_LINK(BoxLoseFocusHdl, weld::Widget&, void);
+
+ void DoTypeHdl(weld::ComboBox& rBox);
+
void Clear();
void Hide();
};
// class CustomPropertiesWindow ------------------------------------------
-class CustomPropertiesWindow : public vcl::Window
+class CustomPropertiesWindow
{
private:
- VclPtr<HeaderBar> m_pHeaderBar;
- VclPtr<ScrollBar> m_pScrollBar;
- VclPtr<FixedText> m_pHeaderAccName;
- VclPtr<FixedText> m_pHeaderAccType;
- VclPtr<FixedText> m_pHeaderAccValue;
-
- sal_Int32 m_nWidgetHeight;
- sal_Int32 m_nRemoveButtonWidth;
- sal_Int32 m_nTypeBoxWidth;
+ sal_Int32 m_nHeight;
sal_Int32 m_nLineHeight;
sal_Int32 m_nScrollPos;
std::vector<std::unique_ptr<CustomProperty>> m_aCustomProperties;
@@ -408,11 +372,10 @@ private:
Idle m_aBoxLoseFocusIdle;
Link<void*,void> m_aRemovedHdl;
- DECL_LINK(TypeHdl, ListBox&, void);
- DECL_LINK(RemoveHdl, Button*, void);
- DECL_LINK(EditLoseFocusHdl, Control&, void);
- DECL_LINK(BoxLoseFocusHdl, Control&, void);
- //add lose focus handlers of Date/TimeField?
+ weld::Container& m_rBody;
+ weld::Label& m_rHeaderAccName;
+ weld::Label& m_rHeaderAccType;
+ weld::Label& m_rHeaderAccValue;
DECL_LINK(EditTimeoutHdl, Timer *, void);
DECL_LINK(BoxTimeoutHdl, Timer *, void);
@@ -420,76 +383,73 @@ private:
bool IsLineValid( CustomPropertyLine* pLine ) const;
void ValidateLine( CustomPropertyLine* pLine, bool bIsFromTypeBox );
void CreateNewLine();
- void ReloadLinesContent();
+ void FillLine(sal_uInt32 nLine);
void StoreCustomProperties();
sal_uInt32 GetCurrentDataModelPosition() const { return -1 * m_nScrollPos / m_nLineHeight; }
public:
- CustomPropertiesWindow(vcl::Window* pParent,
- FixedText *pHeaderAccName,
- FixedText *pHeaderAccType,
- FixedText *pHeaderAccValue);
- void Init(HeaderBar* pHeaderBar, ScrollBar* pScrollBar);
- virtual ~CustomPropertiesWindow() override;
- virtual void dispose() override;
+ CustomPropertiesWindow(weld::Container& rParent, weld::Label& rHeaderAccName,
+ weld::Label& rHeaderAccType, weld::Label& rHeaderAccValue);
+ ~CustomPropertiesWindow();
- virtual void Resize() override;
- //these consts are unhelpful, this changes the state of the widgets
- //that belong to CustomPropertyLine, but they are held by VclPtr
- //and operator-> on a VclPtr is a const method that returns the
- //non-const contents of the VclPtr, but loplugin:constparams
- //correctly sees that it could all be set to const, so we end
- //up with this unhappy situation
- void SetWidgetWidths(const CustomPropertyLine* pLine) const;
sal_uInt16 GetExistingLineCount() const { return m_aCustomPropertiesLines.size(); }
sal_uInt16 GetTotalLineCount() const { return m_aCustomProperties.size(); }
sal_uInt16 GetVisibleLineCount() const;
void SetVisibleLineCount(sal_uInt32 nCount);
+ sal_Int32 GetHeight() const { return m_nHeight; }
+ void SetHeight(int nHeight) { m_nHeight = nHeight; }
sal_Int32 GetLineHeight() const { return m_nLineHeight; }
+ void SetLineHeight(sal_Int32 nLineHeight) { m_nLineHeight = nLineHeight; }
void AddLine( const OUString& sName, css::uno::Any const & rAny );
bool AreAllLinesValid() const;
void ClearAllLines();
void DoScroll( sal_Int32 nNewPos );
+ void ReloadLinesContent();
css::uno::Sequence< css::beans::PropertyValue >
GetCustomProperties();
void SetCustomProperties(std::vector< std::unique_ptr<CustomProperty> >&& rProperties);
void SetRemovedHdl( const Link<void*,void>& rLink ) { m_aRemovedHdl = rLink; }
+
+ void BoxLoseFocus(CustomPropertyLine* pLine);
+ void EditLoseFocus(CustomPropertyLine* pLine);
+ void Remove(CustomPropertyLine* pLine);
};
// class CustomPropertiesControl -----------------------------------------
-class CustomPropertiesControl : public vcl::Window
+class CustomPropertiesControl
{
private:
- VclPtr<VclVBox> m_pVBox;
- VclPtr<HeaderBar> m_pHeaderBar;
- VclPtr<VclHBox> m_pBody;
- VclPtr<CustomPropertiesWindow> m_pPropertiesWin;
- VclPtr<ScrollBar> m_pVertScroll;
-
sal_Int32 m_nThumbPos;
- DECL_LINK( ScrollHdl, ScrollBar*, void );
+ std::unique_ptr<weld::Widget> m_xBox;
+ std::unique_ptr<weld::Container> m_xBody;
+ std::unique_ptr<CustomPropertiesWindow> m_xPropertiesWin;
+ std::unique_ptr<weld::ScrolledWindow> m_xVertScroll;
+ std::unique_ptr<weld::Label> m_xName;
+ std::unique_ptr<weld::Label> m_xType;
+ std::unique_ptr<weld::Label> m_xValue;
+
+ DECL_LINK( ResizeHdl, const Size&, void );
+ DECL_LINK( ScrollHdl, weld::ScrolledWindow&, void );
DECL_LINK( RemovedHdl, void*, void );
public:
- CustomPropertiesControl(vcl::Window* pParent);
- virtual ~CustomPropertiesControl() override;
- virtual void dispose() override;
+ CustomPropertiesControl();
+ ~CustomPropertiesControl();
void AddLine(css::uno::Any const & rAny);
- bool AreAllLinesValid() const { return m_pPropertiesWin->AreAllLinesValid(); }
- void ClearAllLines() { m_pPropertiesWin->ClearAllLines(); }
+ bool AreAllLinesValid() const { return m_xPropertiesWin->AreAllLinesValid(); }
+ void ClearAllLines() { m_xPropertiesWin->ClearAllLines(); }
css::uno::Sequence<css::beans::PropertyValue>
GetCustomProperties() const
- { return m_pPropertiesWin->GetCustomProperties(); }
+ { return m_xPropertiesWin->GetCustomProperties(); }
void SetCustomProperties(std::vector< std::unique_ptr<CustomProperty> >&& rProperties);
- void Init(VclBuilderContainer& rParent);
- virtual void Resize() override;
+ void Init(weld::Builder& rParent);
};
// class SfxCustomPropertiesPage -----------------------------------------
@@ -497,12 +457,13 @@ public:
class SfxCustomPropertiesPage : public SfxTabPage
{
private:
- VclPtr<CustomPropertiesControl> m_pPropertiesCtrl;
-
- DECL_LINK(AddHdl, Button*, void);
+ DECL_LINK(AddHdl, weld::Button&, void);
using TabPage::DeactivatePage;
+ std::unique_ptr<CustomPropertiesControl> m_xPropertiesCtrl;
+ std::unique_ptr<weld::Button> m_xAdd;
+
protected:
virtual ~SfxCustomPropertiesPage() override;
virtual void dispose() override;
@@ -512,7 +473,7 @@ protected:
virtual DeactivateRC DeactivatePage( SfxItemSet* pSet ) override;
public:
- SfxCustomPropertiesPage( vcl::Window* pParent, const SfxItemSet& );
+ SfxCustomPropertiesPage(TabPageParent pParent, const SfxItemSet&);
static VclPtr<SfxTabPage> Create( TabPageParent pParent, const SfxItemSet* );
};
diff --git a/include/sfx2/strings.hrc b/include/sfx2/strings.hrc
index bb6606a7c620..7c01fd0173df 100644
--- a/include/sfx2/strings.hrc
+++ b/include/sfx2/strings.hrc
@@ -193,7 +193,6 @@
#define STR_SFX_NEWOFFICEDOC NC_("STR_SFX_NEWOFFICEDOC", "%PRODUCTNAME document")
#define SFX_ST_DURATION_FORMAT NC_("SFX_ST_DURATION_FORMAT", " Y: %1 M: %2 D: %3 H: %4 M: %5 S: %6")
-#define STR_SFX_REMOVE_PROPERTY NC_("STR_SFX_REMOVE_PROPERTY", "Remove Property")
#define STR_SFX_QUERY_WRONG_TYPE NC_("STR_SFX_QUERY_WRONG_TYPE", "The value entered does not match the specified type.\nThe value will be stored as text.")
#define STR_QUERY_OVERWRITE NC_("STR_QUERY_OVERWRITE", "Style already exists. Overwrite?")
diff --git a/include/svtools/ctrlbox.hxx b/include/svtools/ctrlbox.hxx
index 1923809ba344..d7b9179dd508 100644
--- a/include/svtools/ctrlbox.hxx
+++ b/include/svtools/ctrlbox.hxx
@@ -305,6 +305,7 @@ public:
void set_sensitive(bool bSensitive) { m_xControl->set_sensitive(bSensitive); }
bool get_sensitive() const { return m_xControl->get_sensitive(); }
+ void set_visible(bool bSensitive) { m_xControl->set_visible(bSensitive); }
void grab_focus() { m_xControl->grab_focus(); }
void connect_activated(const Link<SvtCalendarBox&, void>& rActivatedHdl) { m_aActivatedHdl = rActivatedHdl; }
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx
index af7271037a3b..6a793d59ae65 100644
--- a/include/vcl/weld.hxx
+++ b/include/vcl/weld.hxx
@@ -1511,6 +1511,7 @@ public:
void set_sensitive(bool sensitive) { m_xSpinButton->set_sensitive(sensitive); }
bool get_sensitive() const { return m_xSpinButton->get_sensitive(); }
+ void set_visible(bool bShow) { m_xSpinButton->set_visible(bShow); }
bool get_visible() const { return m_xSpinButton->get_visible(); }
void grab_focus() { m_xSpinButton->grab_focus(); }
bool has_focus() const { return m_xSpinButton->has_focus(); }
>source/sq/dictionaries/pt_BR/dialog/registry/data/org/openoffice/Office.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-05-23 12:05+0200\n"
+"POT-Creation-Date: 2013-06-03 08:43+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -29,5 +29,5 @@ msgctxt ""
"..OptionsDialog.Nodes.LanguageSettings.Leaves.org.openoffice.lightproof.pt_BR\n"
"Label\n"
"value.text"
-msgid "Grammar checking (Portuguese)"
+msgid "Portuguese sentence checking"
msgstr ""
diff --git a/source/sq/editeng/source/editeng.po b/source/sq/editeng/source/editeng.po
index 4cb7cd29804..0fc13bc8098 100644
--- a/source/sq/editeng/source/editeng.po
+++ b/source/sq/editeng/source/editeng.po
@@ -1,20 +1,20 @@
-#
+#. extracted from editeng/source/editeng
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-02-17 21:26+0000\n"
+"PO-Revision-Date: 2013-05-27 05:57+0000\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: sq\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sq\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1361136373.0\n"
+"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1369634268.0\n"
#: editeng.src
msgctxt ""
diff --git a/source/sq/editeng/source/items.po b/source/sq/editeng/source/items.po
index b60ffd4ab1b..0e9dda9a671 100644
--- a/source/sq/editeng/source/items.po
+++ b/source/sq/editeng/source/items.po
@@ -1,20 +1,20 @@
-#
+#. extracted from editeng/source/items
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2013-02-17 21:26+0000\n"
+"PO-Revision-Date: 2013-05-27 05:57+0000\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: sq\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sq\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
-"X-POOTLE-MTIME: 1361136373.0\n"
+"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1369634275.0\n"
#: page.src
msgctxt ""
diff --git a/source/sq/editeng/source/outliner.po b/source/sq/editeng/source/outliner.po
index 86f4aa6e71b..5d63a659346 100644
--- a/source/sq/editeng/source/outliner.po
+++ b/source/sq/editeng/source/outliner.po
@@ -1,19 +1,20 @@
-#
+#. extracted from editeng/source/outliner
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2013-05-23 12:05+0200\n"
-"PO-Revision-Date: 2011-04-05 09:36+0200\n"
+"PO-Revision-Date: 2013-05-27 05:58+0000\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: sq\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sq\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
+"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1369634282.0\n"
#: outliner.src
#, fuzzy
diff --git a/source/sq/helpcontent2/source/auxiliary.po b/source/sq/helpcontent2/source/auxiliary.po
index 0a4a18cb00d..44b29af4692 100644
--- a/source/sq/helpcontent2/source/auxiliary.po
+++ b/source/sq/helpcontent2/source/auxiliary.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:43+0100\n"
+"POT-Creation-Date: 2013-05-23 12:05+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -62,141 +62,149 @@ msgctxt ""
msgid "Guides"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"04\n"
+"scalc.tree\n"
+"08\n"
"help_section.text"
-msgid "Presentations and Drawings"
-msgstr ""
+msgid "Spreadsheets"
+msgstr "Microsoft &Excel tabela kalkuluese"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0401\n"
+"scalc.tree\n"
+"0801\n"
"node.text"
msgid "General Information and User Interface Usage"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0402\n"
+"scalc.tree\n"
+"0802\n"
"node.text"
msgid "Command and Menu Reference"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"040201\n"
+"scalc.tree\n"
+"080201\n"
"node.text"
-msgid "Presentations (%PRODUCTNAME Impress)"
+msgid "Menus"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"04020101\n"
+"scalc.tree\n"
+"080202\n"
"node.text"
-msgid "Menus"
-msgstr ""
+msgid "Toolbars"
+msgstr "Shiriti i veglave"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"04020102\n"
+"scalc.tree\n"
+"0803\n"
"node.text"
-msgid "Toolbars"
+msgid "Functions Types and Operators"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"040202\n"
+"scalc.tree\n"
+"0804\n"
"node.text"
-msgid "Drawings (%PRODUCTNAME Draw)"
+msgid "Loading, Saving, Importing, and Exporting"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"04020201\n"
+"scalc.tree\n"
+"0805\n"
"node.text"
-msgid "Menus"
-msgstr ""
+msgid "Formatting"
+msgstr "Formatim"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"04020202\n"
+"scalc.tree\n"
+"0806\n"
"node.text"
-msgid "Toolbars"
+msgid "Filtering and Sorting"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0403\n"
+"scalc.tree\n"
+"0807\n"
"node.text"
-msgid "Loading, Saving, Importing, and Exporting"
-msgstr ""
+msgid "Printing"
+msgstr "Duke shtypur"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0404\n"
+"scalc.tree\n"
+"0808\n"
"node.text"
-msgid "Formatting"
+msgid "Data Ranges"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0405\n"
+"scalc.tree\n"
+"0809\n"
"node.text"
-msgid "Printing"
+msgid "Pivot Table"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0406\n"
+"scalc.tree\n"
+"0810\n"
"node.text"
-msgid "Effects"
-msgstr ""
+msgid "Scenarios"
+msgstr "Plan-veprimet"
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0407\n"
+"scalc.tree\n"
+"0811\n"
"node.text"
-msgid "Objects, Graphics, and Bitmaps"
+msgid "References"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0408\n"
+"scalc.tree\n"
+"0812\n"
"node.text"
-msgid "Groups and Layers"
+msgid "Viewing, Selecting, Copying"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0409\n"
+"scalc.tree\n"
+"0813\n"
"node.text"
-msgid "Text in Presentations and Drawings"
+msgid "Formulas and Calculations"
msgstr ""
-#: simpress.tree
+#: scalc.tree
msgctxt ""
-"simpress.tree\n"
-"0410\n"
+"scalc.tree\n"
+"0814\n"
"node.text"
-msgid "Viewing"
-msgstr ""
+msgid "Protection"
+msgstr "Mbrojtje"
+
+#: scalc.tree
+msgctxt ""
+"scalc.tree\n"
+"0815\n"
+"node.text"
+msgid "Miscellaneous"
+msgstr "Të ndryshme"
#: schart.tree
msgctxt ""
@@ -214,254 +222,6 @@ msgctxt ""
msgid "General Information"
msgstr ""
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"02\n"
-"help_section.text"
-msgid "Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0201\n"
-"node.text"
-msgid "General Information and User Interface Usage"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0202\n"
-"node.text"
-msgid "Command and Menu Reference"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"020201\n"
-"node.text"
-msgid "Menus"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"020202\n"
-"node.text"
-msgid "Toolbars"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0203\n"
-"node.text"
-msgid "Creating Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0204\n"
-"node.text"
-msgid "Graphics in Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0205\n"
-"node.text"
-msgid "Tables in Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0206\n"
-"node.text"
-msgid "Objects in Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0207\n"
-"node.text"
-msgid "Sections and Frames in Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0208\n"
-"node.text"
-msgid "Tables of Contents and Indexes"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0209\n"
-"node.text"
-msgid "Fields in Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0210\n"
-"node.text"
-msgid "Navigating Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0211\n"
-"node.text"
-msgid "Calculating in Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0212\n"
-"node.text"
-msgid "Formatting Text Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"021201\n"
-"node.text"
-msgid "Templates and Styles"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0213\n"
-"node.text"
-msgid "Special Text Elements"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0214\n"
-"node.text"
-msgid "Automatic Functions"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0215\n"
-"node.text"
-msgid "Numbering and Lists"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0216\n"
-"node.text"
-msgid "Spellchecking, Thesaurus, and Languages"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0218\n"
-"node.text"
-msgid "Troubleshooting Tips"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0219\n"
-"node.text"
-msgid "Loading, Saving, Importing, and Exporting"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0220\n"
-"node.text"
-msgid "Master Documents"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0221\n"
-"node.text"
-msgid "Links and References"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0222\n"
-"node.text"
-msgid "Printing"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"0223\n"
-"node.text"
-msgid "Searching and Replacing"
-msgstr ""
-
-#: swriter.tree
-msgctxt ""
-"swriter.tree\n"
-"06\n"
-"help_section.text"
-msgid "HTML Documents"
-msgstr ""
-
-#: smath.tree
-msgctxt ""
-"smath.tree\n"
-"03\n"
-"help_section.text"
-msgid "Formulas"
-msgstr ""
-
-#: smath.tree
-msgctxt ""
-"smath.tree\n"
-"0301\n"
-"node.text"
-msgid "General Information and User Interface Usage"
-msgstr ""
-
-#: smath.tree
-msgctxt ""
-"smath.tree\n"
-"0302\n"
-"node.text"
-msgid "Command and Menu Reference"
-msgstr ""
-
-#: smath.tree
-msgctxt ""
-"smath.tree\n"
-"0303\n"
-"node.text"
-msgid "Working with Formulas"
-msgstr ""
-
#: shared.tree
msgctxt ""
"shared.tree\n"
@@ -516,7 +276,7 @@ msgctxt ""
"100501\n"
"node.text"
msgid "Letter Wizard"
-msgstr ""
+msgstr "Magjistari i formës..."
#: shared.tree
msgctxt ""
@@ -524,7 +284,7 @@ msgctxt ""
"100502\n"
"node.text"
msgid "Fax Wizard"
-msgstr ""
+msgstr "Magjistari i formës..."
#: shared.tree
msgctxt ""
@@ -532,7 +292,7 @@ msgctxt ""
"100504\n"
"node.text"
msgid "Agenda Wizard"
-msgstr ""
+msgstr "Magjistari i formës..."
#: shared.tree
msgctxt ""
@@ -540,7 +300,7 @@ msgctxt ""
"100505\n"
"node.text"
msgid "Presentation Wizard"
-msgstr ""
+msgstr "Magjistari i formës..."
#: shared.tree
msgctxt ""
@@ -686,146 +446,386 @@ msgctxt ""
msgid "General Information"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"08\n"
+"simpress.tree\n"
+"04\n"
"help_section.text"
-msgid "Spreadsheets"
+msgid "Presentations and Drawings"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0801\n"
+"simpress.tree\n"
+"0401\n"
"node.text"
msgid "General Information and User Interface Usage"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0802\n"
+"simpress.tree\n"
+"0402\n"
"node.text"
msgid "Command and Menu Reference"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"080201\n"
+"simpress.tree\n"
+"040201\n"
+"node.text"
+msgid "Presentations (%PRODUCTNAME Impress)"
+msgstr ""
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"04020101\n"
"node.text"
msgid "Menus"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"080202\n"
+"simpress.tree\n"
+"04020102\n"
"node.text"
msgid "Toolbars"
+msgstr "Shiriti i veglave"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"040202\n"
+"node.text"
+msgid "Drawings (%PRODUCTNAME Draw)"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0803\n"
+"simpress.tree\n"
+"04020201\n"
"node.text"
-msgid "Functions Types and Operators"
+msgid "Menus"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0804\n"
+"simpress.tree\n"
+"04020202\n"
+"node.text"
+msgid "Toolbars"
+msgstr "Shiriti i veglave"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0403\n"
"node.text"
msgid "Loading, Saving, Importing, and Exporting"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0805\n"
+"simpress.tree\n"
+"0404\n"
"node.text"
msgid "Formatting"
+msgstr "Formatim"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0405\n"
+"node.text"
+msgid "Printing"
+msgstr "Duke shtypur"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0406\n"
+"node.text"
+msgid "Effects"
+msgstr "Efektet"
+
+#: simpress.tree
+msgctxt ""
+"simpress.tree\n"
+"0407\n"
+"node.text"
+msgid "Objects, Graphics, and Bitmaps"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0806\n"
+"simpress.tree\n"
+"0408\n"
"node.text"
-msgid "Filtering and Sorting"
+msgid "Groups and Layers"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0807\n"
+"simpress.tree\n"
+"0409\n"
"node.text"
-msgid "Printing"
+msgid "Text in Presentations and Drawings"
msgstr ""
-#: scalc.tree
+#: simpress.tree
msgctxt ""
-"scalc.tree\n"
-"0808\n"
+"simpress.tree\n"
+"0410\n"
"node.text"
-msgid "Data Ranges"
+msgid "Viewing"
msgstr ""
-#: scalc.tree
+#: smath.tree
msgctxt ""
-"scalc.tree\n"
-"0809\n"
+"smath.tree\n"
+"03\n"
+"help_section.text"
+msgid "Formulas"
+msgstr "Formulat"
+
+#: smath.tree
+msgctxt ""
+"smath.tree\n"
+"0301\n"
"node.text"
-msgid "Pivot Table"
+msgid "General Information and User Interface Usage"
msgstr ""
-#: scalc.tree
+#: smath.tree
msgctxt ""
-"scalc.tree\n"
-"0810\n"
+"smath.tree\n"
+"0302\n"
"node.text"
-msgid "Scenarios"
+msgid "Command and Menu Reference"
msgstr ""
-#: scalc.tree
+#: smath.tree
msgctxt ""
-"scalc.tree\n"
-"0811\n"
+"smath.tree\n"
+"0303\n"
"node.text"
-msgid "References"
+msgid "Working with Formulas"
msgstr ""
-#: scalc.tree
+#: swriter.tree
msgctxt ""
-"scalc.tree\n"
-"0812\n"
+"swriter.tree\n"
+"02\n"
+"help_section.text"
+msgid "Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0201\n"
"node.text"
-msgid "Viewing, Selecting, Copying"
+msgid "General Information and User Interface Usage"
msgstr ""
-#: scalc.tree
+#: swriter.tree
msgctxt ""
-"scalc.tree\n"
-"0813\n"
+"swriter.tree\n"
+"0202\n"
"node.text"
-msgid "Formulas and Calculations"
+msgid "Command and Menu Reference"
msgstr ""
-#: scalc.tree
+#: swriter.tree
msgctxt ""
-"scalc.tree\n"
-"0814\n"
+"swriter.tree\n"
+"020201\n"
"node.text"
-msgid "Protection"
+msgid "Menus"
msgstr ""
-#: scalc.tree
+#: swriter.tree
msgctxt ""
-"scalc.tree\n"
-"0815\n"
+"swriter.tree\n"
+"020202\n"
"node.text"
-msgid "Miscellaneous"
+msgid "Toolbars"
+msgstr "Shiriti i veglave"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0203\n"
+"node.text"
+msgid "Creating Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0204\n"
+"node.text"
+msgid "Graphics in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0205\n"
+"node.text"
+msgid "Tables in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0206\n"
+"node.text"
+msgid "Objects in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0207\n"
+"node.text"
+msgid "Sections and Frames in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0208\n"
+"node.text"
+msgid "Tables of Contents and Indexes"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0209\n"
+"node.text"
+msgid "Fields in Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0210\n"
+"node.text"
+msgid "Navigating Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0211\n"
+"node.text"
+msgid "Calculating in Text Documents"
+msgstr "Rreshtat në kornizë të tekstit"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0212\n"
+"node.text"
+msgid "Formatting Text Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"021201\n"
+"node.text"
+msgid "Templates and Styles"
+msgstr "Struktura dhe formatimi"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0213\n"
+"node.text"
+msgid "Special Text Elements"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0214\n"
+"node.text"
+msgid "Automatic Functions"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0215\n"
+"node.text"
+msgid "Numbering and Lists"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0216\n"
+"node.text"
+msgid "Spellchecking, Thesaurus, and Languages"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0218\n"
+"node.text"
+msgid "Troubleshooting Tips"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0219\n"
+"node.text"
+msgid "Loading, Saving, Importing, and Exporting"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0220\n"
+"node.text"
+msgid "Master Documents"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0221\n"
+"node.text"
+msgid "Links and References"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0222\n"
+"node.text"
+msgid "Printing"
+msgstr "Duke shtypur"
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"0223\n"
+"node.text"
+msgid "Searching and Replacing"
+msgstr ""
+
+#: swriter.tree
+msgctxt ""
+"swriter.tree\n"
+"06\n"
+"help_section.text"
+msgid "HTML Documents"
msgstr ""
diff --git a/source/sq/helpcontent2/source/text/sbasic/guide.po b/source/sq/helpcontent2/source/text/sbasic/guide.po
index c4b11a11695..f264bcd9988 100644
--- a/source/sq/helpcontent2/source/text/sbasic/guide.po
+++ b/source/sq/helpcontent2/source/text/sbasic/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:05+0200\n"
"PO-Revision-Date: 2011-04-05 19:06+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,6 +15,49 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"tit\n"
+"help.text"
+msgid "Changing the Properties of Controls in the Dialog Editor"
+msgstr ""
+
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"bm_id3145786\n"
+"help.text"
+msgid "<bookmark_value>properties; controls in dialog editor</bookmark_value><bookmark_value>changing;control properties</bookmark_value><bookmark_value>controls;changing properties</bookmark_value><bookmark_value>dialog editor;changing control properties</bookmark_value>"
+msgstr ""
+
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"hd_id3145786\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Changing the Properties of Controls in the Dialog Editor</link></variable>"
+msgstr ""
+
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"par_id3147317\n"
+"2\n"
+"help.text"
+msgid "You can set the properties of control that you add to a dialog. For example, you can change the color, name, and size of a button that you added. You can change most control properties when you create or edit a dialog. However, you can only change some properties at runtime."
+msgstr ""
+
+#: control_properties.xhp
+msgctxt ""
+"control_properties.xhp\n"
+"par_id3145749\n"
+"3\n"
+"help.text"
+msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
+msgstr ""
+
#: create_dialog.xhp
msgctxt ""
"create_dialog.xhp\n"
@@ -296,7 +339,6 @@ msgid "REM execute dialog"
msgstr "Nuk ka veprim për tu ekzekutuar"
#: sample_code.xhp
-#, fuzzy
msgctxt ""
"sample_code.xhp\n"
"par_id3146115\n"
@@ -346,47 +388,65 @@ msgctxt ""
msgid "REM remove the first entry from the ListBox"
msgstr ""
-#: control_properties.xhp
+#: show_dialog.xhp
msgctxt ""
-"control_properties.xhp\n"
+"show_dialog.xhp\n"
"tit\n"
"help.text"
-msgid "Changing the Properties of Controls in the Dialog Editor"
+msgid "Opening a Dialog With Program Code"
msgstr ""
-#: control_properties.xhp
+#: show_dialog.xhp
msgctxt ""
-"control_properties.xhp\n"
-"bm_id3145786\n"
+"show_dialog.xhp\n"
+"bm_id3154140\n"
"help.text"
-msgid "<bookmark_value>properties; controls in dialog editor</bookmark_value><bookmark_value>changing;control properties</bookmark_value><bookmark_value>controls;changing properties</bookmark_value><bookmark_value>dialog editor;changing control properties</bookmark_value>"
+msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
msgstr ""
-#: control_properties.xhp
+#: show_dialog.xhp
msgctxt ""
-"control_properties.xhp\n"
-"hd_id3145786\n"
+"show_dialog.xhp\n"
+"hd_id3154140\n"
"1\n"
"help.text"
-msgid "<variable id=\"control_properties\"><link href=\"text/sbasic/guide/control_properties.xhp\" name=\"Changing the Properties of Controls in the Dialog Editor\">Changing the Properties of Controls in the Dialog Editor</link></variable>"
+msgid "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Program Code\">Opening a Dialog With Program Code</link></variable>"
msgstr ""
-#: control_properties.xhp
+#: show_dialog.xhp
msgctxt ""
-"control_properties.xhp\n"
-"par_id3147317\n"
+"show_dialog.xhp\n"
+"par_id3145171\n"
"2\n"
"help.text"
-msgid "You can set the properties of control that you add to a dialog. For example, you can change the color, name, and size of a button that you added. You can change most control properties when you create or edit a dialog. However, you can only change some properties at runtime."
+msgid "In the <item type=\"productname\">%PRODUCTNAME</item> BASIC window for a dialog that you created, leave the dialog editor by clicking the name tab of the Module that the dialog is assigned to. The name tab is at the bottom of the window."
msgstr ""
-#: control_properties.xhp
+#: show_dialog.xhp
msgctxt ""
-"control_properties.xhp\n"
-"par_id3145749\n"
-"3\n"
+"show_dialog.xhp\n"
+"par_id3153968\n"
+"6\n"
"help.text"
-msgid "To change the properties of a control in design mode, right-click the control, and then choose <emph>Properties</emph>."
+msgid "Enter the following code for a subroutine called <emph>Dialog1Show</emph>. In this example, the name of the dialog that you created is \"Dialog1\":"
+msgstr ""
+
+#: show_dialog.xhp
+msgctxt ""
+"show_dialog.xhp\n"
+"par_id3152596\n"
+"18\n"
+"help.text"
+msgid "Without using \"LoadDialog\" you can call the code as follows:"
+msgstr ""
+
+#: show_dialog.xhp
+msgctxt ""
+"show_dialog.xhp\n"
+"par_id3153157\n"
+"16\n"
+"help.text"
+msgid "When you execute this code, \"Dialog1\" opens. To close the dialog, click the close button (x) on its title bar."
msgstr ""
#: translation.xhp
@@ -660,64 +720,3 @@ msgctxt ""
"help.text"
msgid "If the user has an older version of %PRODUCTNAME that does not know localizable string resources for Basic dialogs, the user will see the default language strings."
msgstr ""
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"tit\n"
-"help.text"
-msgid "Opening a Dialog With Program Code"
-msgstr ""
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"bm_id3154140\n"
-"help.text"
-msgid "<bookmark_value>module/dialog toggle</bookmark_value><bookmark_value>dialogs;using program code to show (example)</bookmark_value><bookmark_value>examples; showing a dialog using program code</bookmark_value>"
-msgstr ""
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"hd_id3154140\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"show_dialog\"><link href=\"text/sbasic/guide/show_dialog.xhp\" name=\"Opening a Dialog With Program Code\">Opening a Dialog With Program Code</link></variable>"
-msgstr ""
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"par_id3145171\n"
-"2\n"
-"help.text"
-msgid "In the <item type=\"productname\">%PRODUCTNAME</item> BASIC window for a dialog that you created, leave the dialog editor by clicking the name tab of the Module that the dialog is assigned to. The name tab is at the bottom of the window."
-msgstr ""
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"par_id3153968\n"
-"6\n"
-"help.text"
-msgid "Enter the following code for a subroutine called <emph>Dialog1Show</emph>. In this example, the name of the dialog that you created is \"Dialog1\":"
-msgstr ""
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"par_id3152596\n"
-"18\n"
-"help.text"
-msgid "Without using \"LoadDialog\" you can call the code as follows:"
-msgstr ""
-
-#: show_dialog.xhp
-msgctxt ""
-"show_dialog.xhp\n"
-"par_id3153157\n"
-"16\n"
-"help.text"
-msgid "When you execute this code, \"Dialog1\" opens. To close the dialog, click the close button (x) on its title bar."
-msgstr ""
diff --git a/source/sq/helpcontent2/source/text/sbasic/shared.po b/source/sq/helpcontent2/source/text/sbasic/shared.po
index ab6066dbcc8..0299854c38e 100644
--- a/source/sq/helpcontent2/source/text/sbasic/shared.po
+++ b/source/sq/helpcontent2/source/text/sbasic/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:05+0200\n"
"PO-Revision-Date: 2011-11-01 00:36+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,6 +15,5040 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Basic Glossary"
+msgstr "Hijëzimi i Sintaksës Themelore"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3145068\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"$[officename] Basic Glossary\">$[officename] Basic Glossary</link>"
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3150792\n"
+"2\n"
+"help.text"
+msgid "This glossary explains some technical terms that you may come across when working with $[officename] Basic."
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3155133\n"
+"7\n"
+"help.text"
+msgid "Decimal Point"
+msgstr "Shëni pikën"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3156443\n"
+"8\n"
+"help.text"
+msgid "When converting numbers, $[officename] Basic uses the locale settings of the system for determining the type of decimal and thousand separator."
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153092\n"
+"9\n"
+"help.text"
+msgid "The behavior has an effect on both the implicit conversion ( 1 + \"2.3\" = 3.3 ) as well as the runtime function <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>."
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3155854\n"
+"29\n"
+"help.text"
+msgid "Colors"
+msgstr "Ngjyrat"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3145366\n"
+"30\n"
+"help.text"
+msgid "In $[officename] Basic, colors are treated as long integer value. The return value of color queries is also always a long integer value. When defining properties, colors can be specified using their RGB code that is converted to a long integer value using the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB function\">RGB function</link>."
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3146119\n"
+"32\n"
+"help.text"
+msgid "Measurement Units"
+msgstr "Njësi matëse"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3154013\n"
+"33\n"
+"help.text"
+msgid "In $[officename] Basic, a <emph>method parameter</emph> or a <emph>property</emph> expecting unit information can be specified either as integer or long integer expression without a unit, or as a character string containing a unit. If no unit is passed to the method the default unit defined for the active document type will be used. If the parameter is passed as a character string containing a measurement unit, the default setting will be ignored. The default measurement unit for a document type can be set under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - (Document Type) - General</emph>."
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3145801\n"
+"help.text"
+msgid "<bookmark_value>twips; definition</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3145801\n"
+"5\n"
+"help.text"
+msgid "Twips"
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3154731\n"
+"6\n"
+"help.text"
+msgid "A twip is a screen-independent unit which is used to define the uniform position and size of screen elements on all display systems. A twip is 1/1440th of an inch or 1/20 of a printer's point. There are 1440 twips to an inch or about 567 twips to a centimeter."
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3153159\n"
+"106\n"
+"help.text"
+msgid "URL Notation"
+msgstr "URL njohje"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153415\n"
+"108\n"
+"help.text"
+msgid "URLs (<emph>Uniform Resource Locators</emph>) are used to determine the location of a resource like a file in a file system, typically inside a network environment. A URL consists of a protocol specifier, a host specifier and a file and path specifier:"
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3149121\n"
+"107\n"
+"help.text"
+msgid "<emph>protocol</emph>://<emph>host.name</emph>/<emph>path/to/the/file.html</emph>"
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3168612\n"
+"109\n"
+"help.text"
+msgid "The most common usage of URLs is on the internet when specifying web pages. Example for protocols are <emph>http</emph>, <emph>ftp</emph>, or <emph>file</emph>. The <emph>file</emph> protocol specifier is used when referring to a file on the local file system."
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3150324\n"
+"110\n"
+"help.text"
+msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (<emph>/</emph>) is used as a path separator. For example, a file referred to as <emph>C:\\My File.sxw</emph> on the local host in \"Windows notation\" becomes <emph>file:///C|/My%20File.sxw</emph> in URL notation."
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"tit\n"
+"help.text"
+msgid "Information"
+msgstr "Informacion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id3148550\n"
+"1\n"
+"help.text"
+msgid "Information"
+msgstr "Informacion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153381\n"
+"102\n"
+"help.text"
+msgid "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>. In Basic format codes, the decimal point (<emph>.</emph>) is always used as <emph>placeholder</emph> for the decimal separator defined in your locale and will be replaced by the corresponding character."
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150870\n"
+"103\n"
+"help.text"
+msgid "The same applies to the locale settings for date, time and currency formats. The Basic format code will be interpreted and displayed according to your locale setting."
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3156424\n"
+"2\n"
+"help.text"
+msgid "The color values of the 16 basic colors are as follows:"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153091\n"
+"3\n"
+"help.text"
+msgid "<emph>Color Value</emph>"
+msgstr "Vlerë në zvoglim e kryerreshtit"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154319\n"
+"4\n"
+"help.text"
+msgid "<emph>Color Name</emph>"
+msgstr "Emri i skemës së ngjyrës"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151112\n"
+"5\n"
+"help.text"
+msgid "0"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3155854\n"
+"6\n"
+"help.text"
+msgid "Black"
+msgstr "Zi"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154942\n"
+"7\n"
+"help.text"
+msgid "128"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154731\n"
+"8\n"
+"help.text"
+msgid "Blue"
+msgstr "Kaltër"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145645\n"
+"9\n"
+"help.text"
+msgid "32768"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149400\n"
+"10\n"
+"help.text"
+msgid "Green"
+msgstr "Gjelbërt"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150753\n"
+"11\n"
+"help.text"
+msgid "32896"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153765\n"
+"12\n"
+"help.text"
+msgid "Cyan"
+msgstr "Cian"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154756\n"
+"13\n"
+"help.text"
+msgid "8388608"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159266\n"
+"14\n"
+"help.text"
+msgid "Red"
+msgstr "Kuq"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3163807\n"
+"15\n"
+"help.text"
+msgid "8388736"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145150\n"
+"16\n"
+"help.text"
+msgid "Magenta"
+msgstr "Magjenta"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147002\n"
+"17\n"
+"help.text"
+msgid "8421376"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3152778\n"
+"18\n"
+"help.text"
+msgid "Yellow"
+msgstr "Verdhë"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150088\n"
+"19\n"
+"help.text"
+msgid "8421504"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159239\n"
+"20\n"
+"help.text"
+msgid "White"
+msgstr "Bardhë"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150206\n"
+"21\n"
+"help.text"
+msgid "12632256"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149817\n"
+"22\n"
+"help.text"
+msgid "Gray"
+msgstr "Ngjyrë hiri"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150363\n"
+"23\n"
+"help.text"
+msgid "255"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154576\n"
+"24\n"
+"help.text"
+msgid "Light blue"
+msgstr "Kaltërt e çiltër"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150367\n"
+"25\n"
+"help.text"
+msgid "65280"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150202\n"
+"26\n"
+"help.text"
+msgid "Light green"
+msgstr "Gjelbërt e çiltërt"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154487\n"
+"27\n"
+"help.text"
+msgid "65535"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151332\n"
+"28\n"
+"help.text"
+msgid "Light cyan"
+msgstr "Cian e çiltërt"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148702\n"
+"29\n"
+"help.text"
+msgid "16711680"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153067\n"
+"30\n"
+"help.text"
+msgid "Light red"
+msgstr "Kuqe e çiltër"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153912\n"
+"31\n"
+"help.text"
+msgid "16711935"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159097\n"
+"32\n"
+"help.text"
+msgid "Light magenta"
+msgstr "Magjenta e çiltërt"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3155266\n"
+"33\n"
+"help.text"
+msgid "16776960"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3157978\n"
+"34\n"
+"help.text"
+msgid "Light yellow"
+msgstr "Hiri e çiltër"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153286\n"
+"35\n"
+"help.text"
+msgid "16777215"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151302\n"
+"36\n"
+"help.text"
+msgid "Transparent white"
+msgstr "Bardh e Zi"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"hd_id3152869\n"
+"37\n"
+"help.text"
+msgid "<variable id=\"errorcode\">Error Codes</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id315509599\n"
+"help.text"
+msgid "<variable id=\"err1\">1 An exception occurred</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3155095\n"
+"38\n"
+"help.text"
+msgid "<variable id=\"err2\">2 Syntax error</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149126\n"
+"39\n"
+"help.text"
+msgid "<variable id=\"err3\">3 Return without Gosub</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153976\n"
+"40\n"
+"help.text"
+msgid "<variable id=\"err4\">4 Incorrect entry; please retry</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150891\n"
+"41\n"
+"help.text"
+msgid "<variable id=\"err5\">5 Invalid procedure call</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159227\n"
+"42\n"
+"help.text"
+msgid "<variable id=\"err6\">6 Overflow</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154649\n"
+"43\n"
+"help.text"
+msgid "<variable id=\"err7\">7 Not enough memory</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150050\n"
+"44\n"
+"help.text"
+msgid "<variable id=\"err8\">8 Array already dimensioned</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148900\n"
+"45\n"
+"help.text"
+msgid "<variable id=\"err9\">9 Index out of defined range</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153806\n"
+"46\n"
+"help.text"
+msgid "<variable id=\"err10\">10 Duplicate definition</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146963\n"
+"47\n"
+"help.text"
+msgid "<variable id=\"err11\">11 Division by zero</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153013\n"
+"48\n"
+"help.text"
+msgid "<variable id=\"err12\">12 Variable not defined</variable>"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3155593\n"
+"49\n"
+"help.text"
+msgid "<variable id=\"err13\">13 Data type mismatch</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151197\n"
+"50\n"
+"help.text"
+msgid "<variable id=\"err14\">14 Invalid parameter</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154710\n"
+"51\n"
+"help.text"
+msgid "<variable id=\"err18\">18 Process interrupted by user</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147504\n"
+"52\n"
+"help.text"
+msgid "<variable id=\"err20\">20 Resume without error</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145319\n"
+"53\n"
+"help.text"
+msgid "<variable id=\"err28\">28 Not enough stack memory</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146110\n"
+"54\n"
+"help.text"
+msgid "<variable id=\"err35\">35 Sub-procedure or function procedure not defined</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147246\n"
+"55\n"
+"help.text"
+msgid "<variable id=\"err48\">48 Error loading DLL file</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146101\n"
+"56\n"
+"help.text"
+msgid "<variable id=\"err49\">49 Wrong DLL call convention</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153957\n"
+"57\n"
+"help.text"
+msgid "<variable id=\"err51\">51 Internal error</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154404\n"
+"58\n"
+"help.text"
+msgid "<variable id=\"err52\">52 Invalid file name or file number</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3151338\n"
+"59\n"
+"help.text"
+msgid "<variable id=\"err53\">53 File not found</variable>"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147298\n"
+"60\n"
+"help.text"
+msgid "<variable id=\"err54\">54 Incorrect file mode</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148747\n"
+"61\n"
+"help.text"
+msgid "<variable id=\"err55\">55 File already open</variable>"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145233\n"
+"62\n"
+"help.text"
+msgid "<variable id=\"err57\">57 Device I/O error</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3156399\n"
+"63\n"
+"help.text"
+msgid "<variable id=\"err58\">58 File already exists</variable>"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149324\n"
+"64\n"
+"help.text"
+msgid "<variable id=\"err59\">59 Incorrect record length</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147409\n"
+"65\n"
+"help.text"
+msgid "<variable id=\"err61\">61 Disk or hard drive full</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149146\n"
+"66\n"
+"help.text"
+msgid "<variable id=\"err62\">62 Reading exceeds EOF</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150456\n"
+"67\n"
+"help.text"
+msgid "<variable id=\"err63\">63 Incorrect record number</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146883\n"
+"68\n"
+"help.text"
+msgid "<variable id=\"err67\">67 Too many files</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146818\n"
+"69\n"
+"help.text"
+msgid "<variable id=\"err68\">68 Device not available</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145225\n"
+"70\n"
+"help.text"
+msgid "<variable id=\"err70\">70 Access denied</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150372\n"
+"71\n"
+"help.text"
+msgid "<variable id=\"err71\">71 Disk not ready</variable>"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148894\n"
+"72\n"
+"help.text"
+msgid "<variable id=\"err73\">73 Not implemented</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3152981\n"
+"73\n"
+"help.text"
+msgid "<variable id=\"err74\">74 Renaming on different drives impossible</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149355\n"
+"74\n"
+"help.text"
+msgid "<variable id=\"err75\">75 Path/file access error</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150477\n"
+"75\n"
+"help.text"
+msgid "<variable id=\"err76\">76 Path not found</variable>"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154678\n"
+"76\n"
+"help.text"
+msgid "<variable id=\"err91\">91 Object variable not set</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149890\n"
+"77\n"
+"help.text"
+msgid "<variable id=\"err93\">93 Invalid string pattern</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146942\n"
+"78\n"
+"help.text"
+msgid "<variable id=\"err94\">94 Use of zero not permitted</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469429\n"
+"help.text"
+msgid "<variable id=\"err250\">250 DDE Error</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469428\n"
+"help.text"
+msgid "<variable id=\"err280\">280 Awaiting response to DDE connection</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469427\n"
+"help.text"
+msgid "<variable id=\"err281\">281 No DDE channels available</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469426\n"
+"help.text"
+msgid "<variable id=\"err282\">282 No application responded to DDE connect initiation</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469425\n"
+"help.text"
+msgid "<variable id=\"err283\">283 Too many applications responded to DDE connect initiation</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469424\n"
+"help.text"
+msgid "<variable id=\"err284\">284 DDE channel locked</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469423\n"
+"help.text"
+msgid "<variable id=\"err285\">285 External application cannot execute DDE operation</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469422\n"
+"help.text"
+msgid "<variable id=\"err286\">286 Timeout while waiting for DDE response</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469421\n"
+"help.text"
+msgid "<variable id=\"err287\">287 user pressed ESCAPE during DDE operation</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469420\n"
+"help.text"
+msgid "<variable id=\"err288\">288 External application busy</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469419\n"
+"help.text"
+msgid "<variable id=\"err289\">289 DDE operation without data</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469418\n"
+"help.text"
+msgid "<variable id=\"err290\">290 Data are in wrong format</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469417\n"
+"help.text"
+msgid "<variable id=\"err291\">291 External application has been terminated</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469416\n"
+"help.text"
+msgid "<variable id=\"err292\">292 DDE connection interrupted or modified</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469415\n"
+"help.text"
+msgid "<variable id=\"err293\">293 DDE method invoked with no channel open</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469414\n"
+"help.text"
+msgid "<variable id=\"err294\">294 Invalid DDE link format</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469413\n"
+"help.text"
+msgid "<variable id=\"err295\">295 DDE message has been lost</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469412\n"
+"help.text"
+msgid "<variable id=\"err296\">296 Paste link already performed</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469411\n"
+"help.text"
+msgid "<variable id=\"err297\">297 Link mode cannot be set due to invalid link topic</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31469410\n"
+"help.text"
+msgid "<variable id=\"err298\">298 DDE requires the DDEML.DLL file</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150028\n"
+"79\n"
+"help.text"
+msgid "<variable id=\"err323\">323 Module cannot be loaded; invalid format</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148434\n"
+"80\n"
+"help.text"
+msgid "<variable id=\"err341\">341 Invalid object index</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3143219\n"
+"81\n"
+"help.text"
+msgid "<variable id=\"err366\">366 Object is not available</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3144744\n"
+"82\n"
+"help.text"
+msgid "<variable id=\"err380\">380 Incorrect property value</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147420\n"
+"83\n"
+"help.text"
+msgid "<variable id=\"err382\">382 This property is read-only</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3147472\n"
+"84\n"
+"help.text"
+msgid "<variable id=\"err394\">394 This property is write-only</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148583\n"
+"85\n"
+"help.text"
+msgid "<variable id=\"err420\">420 Invalid object reference</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3153329\n"
+"86\n"
+"help.text"
+msgid "<variable id=\"err423\">423 Property or method not found</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3148738\n"
+"87\n"
+"help.text"
+msgid "<variable id=\"err424\">424 Object required</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3159084\n"
+"88\n"
+"help.text"
+msgid "<variable id=\"err425\">425 Invalid use of an object</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146806\n"
+"89\n"
+"help.text"
+msgid "<variable id=\"err430\">430 OLE Automation is not supported by this object</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146130\n"
+"90\n"
+"help.text"
+msgid "<variable id=\"err438\">438 This property or method is not supported by the object</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154374\n"
+"91\n"
+"help.text"
+msgid "<variable id=\"err440\">440 OLE automation error</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149685\n"
+"92\n"
+"help.text"
+msgid "<variable id=\"err445\">445 This action is not supported by given object</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150282\n"
+"93\n"
+"help.text"
+msgid "<variable id=\"err446\">446 Named arguments are not supported by given object</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3150142\n"
+"94\n"
+"help.text"
+msgid "<variable id=\"err447\">447 The current locale setting is not supported by the given object</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3152771\n"
+"95\n"
+"help.text"
+msgid "<variable id=\"err448\">448 Named argument not found</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145145\n"
+"96\n"
+"help.text"
+msgid "<variable id=\"err449\">449 Argument is not optional</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154399\n"
+"97\n"
+"help.text"
+msgid "<variable id=\"err450\">450 Invalid number of arguments</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3146137\n"
+"98\n"
+"help.text"
+msgid "<variable id=\"err451\">451 Object is not a list</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3149507\n"
+"99\n"
+"help.text"
+msgid "<variable id=\"err452\">452 Invalid ordinal number</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3154566\n"
+"100\n"
+"help.text"
+msgid "<variable id=\"err453\">453 Specified DLL function not found</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id3145595\n"
+"101\n"
+"help.text"
+msgid "<variable id=\"err460\">460 Invalid clipboard format</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455951\n"
+"help.text"
+msgid "<variable id=\"err951\">951 Unexpected symbol:</variable>"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455952\n"
+"help.text"
+msgid "<variable id=\"err952\">952 Expected:</variable>"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455953\n"
+"help.text"
+msgid "<variable id=\"err953\">953 Symbol expected</variable>"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455954\n"
+"help.text"
+msgid "<variable id=\"err954\">954 Variable expected</variable>"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455955\n"
+"help.text"
+msgid "<variable id=\"err955\">955 Label expected</variable>"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455956\n"
+"help.text"
+msgid "<variable id=\"err956\">956 Value cannot be applied</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455957\n"
+"help.text"
+msgid "<variable id=\"err957\">957 Variable already defined</variable>"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455958\n"
+"help.text"
+msgid "<variable id=\"err958\">958 Sub procedure or function procedure already defined</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455959\n"
+"help.text"
+msgid "<variable id=\"err959\">959 Label already defined</variable>"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455960\n"
+"help.text"
+msgid "<variable id=\"err960\">960 Variable not found</variable>"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455961\n"
+"help.text"
+msgid "<variable id=\"err961\">961 Array or procedure not found</variable>"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455962\n"
+"help.text"
+msgid "<variable id=\"err962\">962 Procedure not found</variable>"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455963\n"
+"help.text"
+msgid "<variable id=\"err963\">963 Label undefined</variable>"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455964\n"
+"help.text"
+msgid "<variable id=\"err964\">964 Unknown data type</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455965\n"
+"help.text"
+msgid "<variable id=\"err965\">965 Exit expected</variable>"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455966\n"
+"help.text"
+msgid "<variable id=\"err966\">966 Statement block still open: missing</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455967\n"
+"help.text"
+msgid "<variable id=\"err967\">967 Parentheses do not match</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455968\n"
+"help.text"
+msgid "<variable id=\"err968\">968 Symbol already defined differently</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455969\n"
+"help.text"
+msgid "<variable id=\"err969\">969 Parameters do not correspond to procedure</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455970\n"
+"help.text"
+msgid "<variable id=\"err970\">970 Invalid character in number</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455971\n"
+"help.text"
+msgid "<variable id=\"err971\">971 Array must be dimensioned</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455972\n"
+"help.text"
+msgid "<variable id=\"err972\">972 Else/Endif without If</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455973\n"
+"help.text"
+msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455974\n"
+"help.text"
+msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455975\n"
+"help.text"
+msgid "<variable id=\"err975\">975 Dimension specifications do not match</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455976\n"
+"help.text"
+msgid "<variable id=\"err976\">976 Unknown option:</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455977\n"
+"help.text"
+msgid "<variable id=\"err977\">977 Constant redefined</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455978\n"
+"help.text"
+msgid "<variable id=\"err978\">978 Program too large</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455979\n"
+"help.text"
+msgid "<variable id=\"err979\">979 Strings or arrays not permitted</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455980\n"
+"help.text"
+msgid "<variable id=\"err1000\">1000 Object does not have this property</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455981\n"
+"help.text"
+msgid "<variable id=\"err1001\">1001 Object does not have this method</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455982\n"
+"help.text"
+msgid "<variable id=\"err1002\">1002 Required argument lacking</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455983\n"
+"help.text"
+msgid "<variable id=\"err1003\">1003 Invalid number of arguments</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455984\n"
+"help.text"
+msgid "<variable id=\"err1004\">1004 Error executing a method</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455985\n"
+"help.text"
+msgid "<variable id=\"err1005\">1005 Unable to set property</variable>"
+msgstr ""
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_id31455986\n"
+"help.text"
+msgid "<variable id=\"err1006\">1006 Unable to determine property</variable>"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Programming with $[officename] Basic"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"hd_id3156027\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Programming with $[officename] Basic \">Programming with $[officename] Basic </link></variable>"
+msgstr ""
+
+#: 01000000.xhp
+msgctxt ""
+"01000000.xhp\n"
+"par_id3153708\n"
+"2\n"
+"help.text"
+msgid "This is where you find general information about working with macros and $[officename] Basic."
+msgstr ""
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"tit\n"
+"help.text"
+msgid "Basics"
+msgstr ""
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"bm_id4488967\n"
+"help.text"
+msgid "<bookmark_value>fundamentals</bookmark_value><bookmark_value>subroutines</bookmark_value><bookmark_value>variables;global and local</bookmark_value><bookmark_value>modules;subroutines and functions</bookmark_value>"
+msgstr ""
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3154927\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Basics\">Basics</link>"
+msgstr ""
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3156023\n"
+"14\n"
+"help.text"
+msgid "This section provides the fundamentals for working with $[officename] Basic."
+msgstr ""
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3147560\n"
+"2\n"
+"help.text"
+msgid "$[officename] Basic code is based on subroutines and functions that are specified between <emph>sub...end sub</emph> and <emph>function...end function</emph> sections. Each Sub or Function can call other Subs and Functions. If you take care to write generic code for a Sub or Function, you can probably re-use it in other programs. See also <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedures and Functions\">Procedures and Functions</link>."
+msgstr ""
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id314756320\n"
+"help.text"
+msgid "Some restrictions apply for the names of your public variables, subs, and functions. You must not use the same name as one of the modules of the same library."
+msgstr ""
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3150398\n"
+"3\n"
+"help.text"
+msgid "What is a Sub?"
+msgstr "Nuk është baraz me"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3148797\n"
+"4\n"
+"help.text"
+msgid "<emph>Sub</emph> is the short form of <emph>subroutine</emph>, that is used to handle a certain task within a program. Subs are used to split a task into individual procedures. Splitting a program into procedures and sub-procedures enhances readability and reduces the error-proneness. A sub possibly takes some arguments as parameters but does not return any values back to the calling sub or function, for example:"
+msgstr ""
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3150868\n"
+"15\n"
+"help.text"
+msgid "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
+msgstr ""
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3156282\n"
+"5\n"
+"help.text"
+msgid "What is a Function?"
+msgstr "**Tejmbushje e funksionit të katrorit**"
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3156424\n"
+"6\n"
+"help.text"
+msgid "A <emph>function</emph> is essentially a sub, which returns a value. You may use a function at the right side of a variable declaration, or at other places where you normally use values, for example:"
+msgstr ""
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3146985\n"
+"7\n"
+"help.text"
+msgid "MySecondValue = myFunction(MyFirstValue)"
+msgstr ""
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3153364\n"
+"8\n"
+"help.text"
+msgid "Global and local variables"
+msgstr ""
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3151112\n"
+"9\n"
+"help.text"
+msgid "Global variables are valid for all subs and functions inside a module. They are declared at the beginning of a module before the first sub or function starts."
+msgstr ""
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3154012\n"
+"10\n"
+"help.text"
+msgid "Variables that you declare within a sub or function are valid only inside this sub or function. These variables override global variables with the same name and local variables with the same name coming from superordinate subs or functions."
+msgstr ""
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"hd_id3150010\n"
+"11\n"
+"help.text"
+msgid "Structuring"
+msgstr ""
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3153727\n"
+"12\n"
+"help.text"
+msgid "After separating your program into procedures and functions (Subs and Functions), you can save these procedures and functions as files for reuse in other projects. $[officename] Basic supports <link href=\"text/sbasic/shared/01020500.xhp\" name=\"Modules and Libraries\">Modules and Libraries</link>. Subs and functions are always contained in modules. You can define modules to be global or part of a document. Multiple modules can be combined to a library."
+msgstr ""
+
+#: 01010210.xhp
+msgctxt ""
+"01010210.xhp\n"
+"par_id3152578\n"
+"13\n"
+"help.text"
+msgid "You can copy or move subs, functions, modules and libraries from one file to another by using the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog."
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3148946\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Syntax\">Syntax</link>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150793\n"
+"2\n"
+"help.text"
+msgid "This section describes the basic syntax elements of $[officename] Basic. For a detailed description please refer to the $[officename] Basic Guide which is available separately."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Variables"
+msgstr "Duke përdorur Ndihmën"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"bm_id3149346\n"
+"help.text"
+msgid "<bookmark_value>names of variables</bookmark_value><bookmark_value>variables; using</bookmark_value><bookmark_value>types of variables</bookmark_value><bookmark_value>declaring variables</bookmark_value><bookmark_value>values;of variables</bookmark_value><bookmark_value>constants</bookmark_value><bookmark_value>arrays;declaring</bookmark_value><bookmark_value>defining;constants</bookmark_value>"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3149346\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Using Variables\">Using Variables</link>"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154346\n"
+"3\n"
+"help.text"
+msgid "The following describes the basic use of variables in $[officename] Basic."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3153361\n"
+"4\n"
+"help.text"
+msgid "Naming Conventions for Variable Identifiers"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3148797\n"
+"5\n"
+"help.text"
+msgid "A variable name can consist of a maximum of 255 characters. The first character of a variable name <emph>must</emph> be a letter A-Z or a-z. Numbers can also be used in a variable name, but punctuation symbols and special characters are not permitted, with exception of the underscore character (\"_\"). In $[officename] Basic variable identifiers are not case-sensitive. Variable names may contain spaces but must be enclosed in square brackets if they do."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3156422\n"
+"6\n"
+"help.text"
+msgid "Examples for variable identifiers:"
+msgstr "Emër i padefinuar për qeli të variablit."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3156441\n"
+"126\n"
+"help.text"
+msgid "Correct"
+msgstr "Fusha e valutave"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149664\n"
+"127\n"
+"help.text"
+msgid "Correct"
+msgstr "Fusha e valutave"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3146119\n"
+"128\n"
+"help.text"
+msgid "Correct"
+msgstr "Fusha e valutave"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153876\n"
+"11\n"
+"help.text"
+msgid "Not valid, variable with space must be enclosed in square brackets"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154510\n"
+"15\n"
+"help.text"
+msgid "Correct"
+msgstr "Fusha e valutave"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150330\n"
+"129\n"
+"help.text"
+msgid "Not valid, special characters are not allowed"
+msgstr "Karakteret në vazhdim nuk janë të vlefshme dhe janë mënjanuar:"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154254\n"
+"130\n"
+"help.text"
+msgid "Not valid, variable may not begin with a number"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149256\n"
+"131\n"
+"help.text"
+msgid "Not valid, punctuation marks are not allowed"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3146317\n"
+"17\n"
+"help.text"
+msgid "Declaring Variables"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150299\n"
+"18\n"
+"help.text"
+msgid "In $[officename] Basic you don't need to declare variables explicitly. A variable declaration can be performed with the <emph>Dim</emph> statement. You can declare more than one variable at a time by separating the names with a comma. To define the variable type, use either a type-declaration sign after the name, or the appropriate key word."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154118\n"
+"140\n"
+"help.text"
+msgid "Examples for variable declarations:"
+msgstr "Emër i padefinuar për qeli të variablit."
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150982\n"
+"132\n"
+"help.text"
+msgid "Declares the variable \"a\" as a String"
+msgstr "Modeli i lidhëses është i pavlefshëm"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150343\n"
+"133\n"
+"help.text"
+msgid "Declares the variable \"a\" as a String"
+msgstr "Modeli i lidhëses është i pavlefshëm"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3155507\n"
+"22\n"
+"help.text"
+msgid "Declares one variable as a String and one as an Integer"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_idN10859\n"
+"help.text"
+msgid "Declares c as a Boolean variable that can be TRUE or FALSE"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150519\n"
+"23\n"
+"help.text"
+msgid "It is very important when declaring variables that you use the type-declaration character each time, even if it was used in the declaration instead of a keyword. Thus the following statements are invalid:"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154527\n"
+"134\n"
+"help.text"
+msgid "Declares \"a\" as a String"
+msgstr "Modeli i lidhëses është i pavlefshëm"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153064\n"
+"135\n"
+"help.text"
+msgid "Type-declaration missing: \"a$=\""
+msgstr "Gabim: Mungon operatori"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3144770\n"
+"26\n"
+"help.text"
+msgid "Once you have declared a variable as a certain type, you cannot declare the variable under the same name again as a different type!"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3149331\n"
+"27\n"
+"help.text"
+msgid "Forcing Variable Declarations"
+msgstr "**Ndryshorja nuk u gjet**"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149443\n"
+"28\n"
+"help.text"
+msgid "To force declaration of variables, use the following command:"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3155072\n"
+"30\n"
+"help.text"
+msgid "The <emph>Option Explicit</emph> statement has to be the first line in the module, before the first SUB. Generally, only arrays need to be declared explicitly. All other variables are declared according to the type-declaration character, or - if omitted - as the default type <emph>Single</emph>."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3154614\n"
+"34\n"
+"help.text"
+msgid "Variable Types"
+msgstr "Llojet e fajllave"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3155383\n"
+"35\n"
+"help.text"
+msgid "$[officename] Basic supports four variable classes:"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153972\n"
+"36\n"
+"help.text"
+msgid "<emph>Numeric</emph> variables can contain number values. Some variables are used to store large or small numbers, and others are used for floating-point or fractional numbers."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3159226\n"
+"37\n"
+"help.text"
+msgid "<emph>String</emph> variables contain character strings."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3145217\n"
+"38\n"
+"help.text"
+msgid "<emph>Boolean</emph> variables contain either the TRUE or the FALSE value."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154762\n"
+"39\n"
+"help.text"
+msgid "<emph>Object</emph> variables can store objects of various types, like tables and documents within a document."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3153805\n"
+"40\n"
+"help.text"
+msgid "Integer Variables"
+msgstr "Numri i plotë për orë"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3146966\n"
+"41\n"
+"help.text"
+msgid "Integer variables range from -32768 to 32767. If you assign a floating-point value to an integer variable, the decimal places are rounded to the next integer. Integer variables are rapidly calculated in procedures and are suitable for counter variables in loops. An integer variable only requires two bytes of memory. \"%\" is the type-declaration character."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3147546\n"
+"45\n"
+"help.text"
+msgid "Long Integer Variables"
+msgstr "Numri i plotë për orë"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3151193\n"
+"46\n"
+"help.text"
+msgid "Long integer variables range from -2147483648 to 2147483647. If you assign a floating-point value to a long integer variable, the decimal places are rounded to the next integer. Long integer variables are rapidly calculated in procedures and are suitable for counter variables in loops for large values. A long integer variable requires four bytes of memory. \"&\" is the type-declaration character."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id7596972\n"
+"help.text"
+msgid "Decimal Variables"
+msgstr "Vendet decimale"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id2649311\n"
+"help.text"
+msgid "Decimal variables can take positive or negative numbers or zero. Accuracy is up to 29 digits."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id7617114\n"
+"help.text"
+msgid "You can use plus (+) or minus (-) signs as prefixes for decimal numbers (with or without spaces)."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id1593676\n"
+"help.text"
+msgid "If a decimal number is assigned to an integer variable, %PRODUCTNAME Basic rounds the figure up or down."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3147500\n"
+"50\n"
+"help.text"
+msgid "Single Variables"
+msgstr "Vija të njëfishta"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153070\n"
+"51\n"
+"help.text"
+msgid "Single variables can take positive or negative values ranging from 3.402823 x 10E38 to 1.401298 x 10E-45. Single variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Single variables are suitable for mathematical calculations of average precision. Calculations require more time than for Integer variables, but are faster than calculations with Double variables. A Single variable requires 4 bytes of memory. The type-declaration character is \"!\"."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3155753\n"
+"54\n"
+"help.text"
+msgid "Double Variables"
+msgstr "Integral i dyfishtë"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150953\n"
+"55\n"
+"help.text"
+msgid "Double variables can take positive or negative values ranging from 1.79769313486232 x 10E308 to 4.94065645841247 x 10E-324. Double variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Double variables are suitable for precise calculations. Calculations require more time than for Single variables. A Double variable requires 8 bytes of memory. The type-declaration character is \"#\"."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3155747\n"
+"95\n"
+"help.text"
+msgid "Currency Variables"
+msgstr "Fusha e valutave"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153337\n"
+"96\n"
+"help.text"
+msgid "Currency variables are internally stored as 64-bit numbers (8 Bytes) and displayed as a fixed-decimal number with 15 non-decimal and 4 decimal places. The values range from -922337203685477.5808 to +922337203685477.5807. Currency variables are used to calculate currency values with a high precision. The type-declaration character is \"@\"."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3148742\n"
+"58\n"
+"help.text"
+msgid "String Variables"
+msgstr "Modeli i lidhëses është i pavlefshëm"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3151393\n"
+"59\n"
+"help.text"
+msgid "String variables can hold character strings with up to 65,535 characters. Each character is stored as the corresponding Unicode value. String variables are suitable for word processing within programs and for temporary storage of any non-printable character up to a maximum length of 64 Kbytes. The memory required for storing string variables depends on the number of characters in the variable. The type-declaration character is \"$\"."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3150534\n"
+"62\n"
+"help.text"
+msgid "Boolean Variables"
+msgstr "JO logjike"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3145632\n"
+"63\n"
+"help.text"
+msgid "Boolean variables store only one of two values: TRUE or FALSE. A number 0 evaluates to FALSE, every other value evaluates to TRUE."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3149722\n"
+"65\n"
+"help.text"
+msgid "Date Variables"
+msgstr "Data (caktuar)"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3159116\n"
+"66\n"
+"help.text"
+msgid "Date variables can only contain dates and time values stored in an internal format. Values assigned to Date variables with <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph>Timeserial</emph></link> or <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> are automatically converted to the internal format. Date-variables are converted to normal numbers by using the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function. The internal format enables a comparison of date/time values by calculating the difference between two numbers. These variables can only be declared with the key word <emph>Date</emph>."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3148732\n"
+"68\n"
+"help.text"
+msgid "Initial Variable Values"
+msgstr "Ndrysho vlerat standarde"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154549\n"
+"69\n"
+"help.text"
+msgid "As soon as the variable has been declared, it is automatically set to the \"Null\" value. Note the following conventions:"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3143222\n"
+"70\n"
+"help.text"
+msgid "<emph>Numeric</emph> variables are automatically assigned the value \"0\" as soon as they are declared."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3150693\n"
+"71\n"
+"help.text"
+msgid "<emph>Date variables</emph> are assigned the value 0 internally; equivalent to converting the value to \"0\" with the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154807\n"
+"72\n"
+"help.text"
+msgid "<emph>String variables</emph> are assigned an empty-string (\"\") when they are declared."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3153936\n"
+"83\n"
+"help.text"
+msgid "Arrays"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3148736\n"
+"84\n"
+"help.text"
+msgid "$[officename] Basic knows one- or multi-dimensional arrays, defined by a specified variable type. Arrays are suitable for editing lists and tables in programs. Individual elements of an array can be addressed through a numeric index."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149546\n"
+"85\n"
+"help.text"
+msgid "Arrays <emph>must</emph> be declared with the <emph>Dim</emph> statement. There are several ways to define the index range of an array:"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154567\n"
+"136\n"
+"help.text"
+msgid "21 elements numbered from 0 to 20"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3154397\n"
+"137\n"
+"help.text"
+msgid "30 elements (a matrix of 6 x 5 elements)"
+msgstr "Grumbulli vertikal (2 elemente)"
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3149690\n"
+"138\n"
+"help.text"
+msgid "21 elements numbered from 5 to 25"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153113\n"
+"89\n"
+"help.text"
+msgid "21 elements (including 0), numbered from -15 to 5"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3153005\n"
+"90\n"
+"help.text"
+msgid "The index range can include positive as well as negative numbers."
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"hd_id3154507\n"
+"91\n"
+"help.text"
+msgid "Constants"
+msgstr ""
+
+#: 01020100.xhp
+msgctxt ""
+"01020100.xhp\n"
+"par_id3156357\n"
+"92\n"
+"help.text"
+msgid "Constants have a fixed value. They are only defined once in the program and cannot be redefined later:"
+msgstr ""
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Objects"
+msgstr "Titull, 4 Objekte"
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"hd_id3145645\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\">Using the Object Catalog</link></variable>"
+msgstr ""
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"par_id3153707\n"
+"76\n"
+"help.text"
+msgid "The object catalog provides an overview of all modules and dialogs you have created in $[officename]."
+msgstr ""
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"par_id3147346\n"
+"78\n"
+"help.text"
+msgid "Click the <emph>Object Catalog</emph> icon <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Icon</alt></image> in the Macro toolbar to display the object catalog."
+msgstr ""
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"par_id3155114\n"
+"79\n"
+"help.text"
+msgid "The dialog shows a list of all existing objects in a hierarchical representation. Double-clicking a list entry opens its subordinate objects."
+msgstr ""
+
+#: 01020200.xhp
+msgctxt ""
+"01020200.xhp\n"
+"par_id3150786\n"
+"83\n"
+"help.text"
+msgid "To display a certain module in the Editor or to position the cursor in a selected SUB or FUNCTION, double click on the corresponding entry."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Using Procedures and Functions"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"bm_id3149456\n"
+"help.text"
+msgid "<bookmark_value>procedures</bookmark_value><bookmark_value>functions;using</bookmark_value><bookmark_value>variables;passing to procedures and functions</bookmark_value><bookmark_value>parameters;for procedures and functions</bookmark_value><bookmark_value>parameters;passing by reference or value</bookmark_value><bookmark_value>variables;scope</bookmark_value><bookmark_value>scope of variables</bookmark_value><bookmark_value>GLOBAL variables</bookmark_value><bookmark_value>PUBLIC variables</bookmark_value><bookmark_value>PRIVATE variables</bookmark_value><bookmark_value>functions;return value type</bookmark_value><bookmark_value>return value type of functions</bookmark_value>"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3149456\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link>"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150767\n"
+"2\n"
+"help.text"
+msgid "The following describes the basic use of procedures and functions in $[officename] Basic."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3151215\n"
+"56\n"
+"help.text"
+msgid "When you create a new module, $[officename] Basic automatically inserts a SUB called \"Main\". This default name has nothing to do with the order or the starting point of a $[officename] Basic project. You can also safely rename this SUB."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id314756320\n"
+"help.text"
+msgid "Some restrictions apply for the names of your public variables, subs, and functions. You must not use the same name as one of the modules of the same library."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3154124\n"
+"3\n"
+"help.text"
+msgid "Procedures (SUBS) and functions (FUNCTIONS) help you maintaining a structured overview by separating a program into logical pieces."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3153193\n"
+"4\n"
+"help.text"
+msgid "One benefit of procedures and functions is that, once you have developed a program code containing task components, you can use this code in another project."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3153770\n"
+"26\n"
+"help.text"
+msgid "Passing Variables to Procedures (SUB) and Functions (FUNCTION)"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3155414\n"
+"27\n"
+"help.text"
+msgid "Variables can be passed to both procedures and functions. The SUB or FUNCTION must be declared to expect parameters:"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3151114\n"
+"29\n"
+"help.text"
+msgid "Program code"
+msgstr "Kodi i karakterit"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3152577\n"
+"31\n"
+"help.text"
+msgid "The SUB is called using the following syntax:"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3147124\n"
+"33\n"
+"help.text"
+msgid "The parameters passed to a SUB must fit to those specified in the SUB declaration."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3147397\n"
+"34\n"
+"help.text"
+msgid "The same process applies to FUNCTIONS. In addition, functions always return a function result. The result of a function is defined by assigning the return value to the function name:"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3156284\n"
+"36\n"
+"help.text"
+msgid "Program code"
+msgstr "Kodi i karakterit"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3145799\n"
+"37\n"
+"help.text"
+msgid "FunctionName=Result"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3153839\n"
+"39\n"
+"help.text"
+msgid "The FUNCTION is called using the following syntax:"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3146914\n"
+"40\n"
+"help.text"
+msgid "Variable=FunctionName(Parameter1, Parameter2,...)"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_idN107B3\n"
+"help.text"
+msgid "You can also use the fully qualified name to call a procedure or function:<br/><item type=\"literal\">Library.Module.Macro()</item><br/> For example, to call the Autotext macro from the Gimmicks library, use the following command:<br/><item type=\"literal\">Gimmicks.AutoText.Main()</item>"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3156276\n"
+"45\n"
+"help.text"
+msgid "Passing Variables by Value or Reference"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3155765\n"
+"47\n"
+"help.text"
+msgid "Parameters can be passed to a SUB or a FUNCTION either by reference or by value. Unless otherwise specified, a parameter is always passed by reference. That means that a SUB or a FUNCTION gets the parameter and can read and modify its value."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3145640\n"
+"53\n"
+"help.text"
+msgid "If you want to pass a parameter by value insert the key word \"ByVal\" in front of the parameter when you call a SUB or FUNCTION, for example:"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150042\n"
+"54\n"
+"help.text"
+msgid "Result = Function(ByVal Parameter)"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3149258\n"
+"55\n"
+"help.text"
+msgid "In this case, the original content of the parameter will not be modified by the FUNCTION since it only gets the value and not the parameter itself."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3150982\n"
+"57\n"
+"help.text"
+msgid "Scope of Variables"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3149814\n"
+"58\n"
+"help.text"
+msgid "A variable defined within a SUB or FUNCTION, only remains valid until the procedure is exited. This is known as a \"local\" variable. In many cases, you need a variable to be valid in all procedures, in every module of all libraries, or after a SUB or FUNCTION is exited."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3154186\n"
+"59\n"
+"help.text"
+msgid "Declaring Variables Outside a SUB or FUNCTION"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150208\n"
+"111\n"
+"help.text"
+msgid "Global VarName As TYPENAME"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3145258\n"
+"112\n"
+"help.text"
+msgid "The variable is valid as long as the $[officename] session lasts."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3153198\n"
+"60\n"
+"help.text"
+msgid "Public VarName As TYPENAME"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150088\n"
+"61\n"
+"help.text"
+msgid "The variable is valid in all modules."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3158212\n"
+"62\n"
+"help.text"
+msgid "Private VarName As TYPENAME"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3152994\n"
+"63\n"
+"help.text"
+msgid "The variable is only valid in this module."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150886\n"
+"64\n"
+"help.text"
+msgid "Dim VarName As TYPENAME"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3150368\n"
+"65\n"
+"help.text"
+msgid "The variable is only valid in this module."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id5097506\n"
+"help.text"
+msgid "Example for private variables"
+msgstr "Duke caktuar të ndryshueshmen PROM për Arcboot"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id8738975\n"
+"help.text"
+msgid "Enforce private variables to be private across modules by setting CompatibilityMode(true)."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id9475997\n"
+"help.text"
+msgid "myText = \"Hello\""
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id6933500\n"
+"help.text"
+msgid "Print \"In module1 : \", myText"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id4104129\n"
+"help.text"
+msgid "' Now returns empty string"
+msgstr "Vargu i thatë është i PAVLEFSHËM"
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id7906125\n"
+"help.text"
+msgid "' (or rises error for Option Explicit)"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id8055970\n"
+"help.text"
+msgid "Print \"Now in module2 : \", myText"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3154368\n"
+"66\n"
+"help.text"
+msgid "Saving Variable Content after Exiting a SUB or FUNCTION"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3156288\n"
+"67\n"
+"help.text"
+msgid "Static VarName As TYPENAME"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3154486\n"
+"68\n"
+"help.text"
+msgid "The variable retains its value until the next time the FUNCTION or SUB is entered. The declaration must exist inside a SUB or a FUNCTION."
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"hd_id3155809\n"
+"41\n"
+"help.text"
+msgid "Specifying the Return Value Type of a FUNCTION"
+msgstr ""
+
+#: 01020300.xhp
+msgctxt ""
+"01020300.xhp\n"
+"par_id3149404\n"
+"42\n"
+"help.text"
+msgid "As with variables, include a type-declaration character after the function name, or the type indicated by \"As\" and the corresponding key word at the end of the parameter list to define the type of the function's return value, for example:"
+msgstr ""
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Libraries, Modules and Dialogs"
+msgstr ""
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3147317\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Libraries, Modules and Dialogs\">Libraries, Modules and Dialogs</link>"
+msgstr ""
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3147427\n"
+"2\n"
+"help.text"
+msgid "The following describes the basic use of libraries, modules and dialogs in $[officename] Basic."
+msgstr ""
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3146120\n"
+"3\n"
+"help.text"
+msgid "$[officename] Basic provides tools to help you structuring your projects. It supports various \"units\" which enable you to group individual SUBS and FUNCTIONS in a Basic project."
+msgstr ""
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3148575\n"
+"5\n"
+"help.text"
+msgid "Libraries"
+msgstr "Biblotekat"
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3150011\n"
+"6\n"
+"help.text"
+msgid "Libraries serve as a tool for organizing modules, and can either be attached to a document or a template. When the document or a template is saved, all modules contained in the library are automatically saved as well."
+msgstr ""
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3151112\n"
+"7\n"
+"help.text"
+msgid "A library can contain up to 16,000 modules."
+msgstr ""
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3149262\n"
+"8\n"
+"help.text"
+msgid "Modules"
+msgstr "Modulet"
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3156441\n"
+"9\n"
+"help.text"
+msgid "A module contains SUBS and FUNCTIONS along with variable declarations. The length of the program that can be saved in a module is limited to 64 KB. If more space is required you can divide a $[officename] Basic project among several modules, and then save them in a single library."
+msgstr ""
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"hd_id3152577\n"
+"11\n"
+"help.text"
+msgid "Dialog Modules"
+msgstr "Edito Modulet"
+
+#: 01020500.xhp
+msgctxt ""
+"01020500.xhp\n"
+"par_id3149377\n"
+"12\n"
+"help.text"
+msgid "Dialog modules contain dialog definitions, including the dialog box properties, the properties of each dialog element and the events assigned. Since a dialog module can only contain a single dialog, they are often referred to as \"dialogs\"."
+msgstr ""
+
+#: 01030000.xhp
+msgctxt ""
+"01030000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Integrated Development Environment (IDE)"
+msgstr ""
+
+#: 01030000.xhp
+msgctxt ""
+"01030000.xhp\n"
+"bm_id3145090\n"
+"help.text"
+msgid "<bookmark_value>Basic IDE;Integrated Development Environment</bookmark_value><bookmark_value>IDE;Integrated Development Environment</bookmark_value>"
+msgstr ""
+
+#: 01030000.xhp
+msgctxt ""
+"01030000.xhp\n"
+"hd_id3145090\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Integrated Development Environment (IDE)\">Integrated Development Environment (IDE)</link>"
+msgstr ""
+
+#: 01030000.xhp
+msgctxt ""
+"01030000.xhp\n"
+"par_id3146795\n"
+"2\n"
+"help.text"
+msgid "This section describes the Integrated Development Environment for $[officename] Basic."
+msgstr ""
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"tit\n"
+"help.text"
+msgid "IDE Overview"
+msgstr "IDE Bazike"
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"hd_id3147291\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"IDE Overview\">IDE Overview</link>"
+msgstr ""
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3156344\n"
+"3\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\"><emph>Macro Toolbar</emph></link> in the IDE provides various icons for editing and testing programs."
+msgstr ""
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3151210\n"
+"4\n"
+"help.text"
+msgid "In the <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor window\"><emph>Editor window</emph></link>, directly below the Macro toolbar, you can edit the Basic program code. The column on the left side is used to set breakpoints in the program code."
+msgstr ""
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3154686\n"
+"5\n"
+"help.text"
+msgid "The <link href=\"text/sbasic/shared/01050100.xhp\" name=\"Watch\"><emph>Watch window</emph></link> (observer) is located below the Editor window at the left, and displays the contents of variables or arrays during a single step process."
+msgstr ""
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3145787\n"
+"8\n"
+"help.text"
+msgid "The <emph>Call Stack</emph> window to the right provides information about the call stack of SUBS and FUNCTIONS when a program runs."
+msgstr ""
+
+#: 01030100.xhp
+msgctxt ""
+"01030100.xhp\n"
+"par_id3147434\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"tit\n"
+"help.text"
+msgid "The Basic Editor"
+msgstr "Edituesi i ImageMapës"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"bm_id3148647\n"
+"help.text"
+msgid "<bookmark_value>saving;Basic code</bookmark_value><bookmark_value>loading;Basic code</bookmark_value><bookmark_value>Basic editor</bookmark_value><bookmark_value>navigating;in Basic projects</bookmark_value><bookmark_value>long lines;in Basic editor</bookmark_value><bookmark_value>lines of text;in Basic editor</bookmark_value><bookmark_value>continuation;long lines in editor</bookmark_value>"
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3147264\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">The Basic Editor</link>"
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3145069\n"
+"3\n"
+"help.text"
+msgid "The Basic Editor provides the standard editing functions you are familiar with when working in a text document. It supports the functions of the <emph>Edit</emph> menu (Cut, Delete, Paste), the ability to select text with the Shift key, as well as cursor positioning functions (for example, moving from word to word with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and the arrow keys)."
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3154686\n"
+"31\n"
+"help.text"
+msgid "Long lines can be split into several parts by inserting a space and an underline character _ as the last two characters of a line. This connects the line with the following line to one logical line. (If \"Option Compatible\" is used in the same Basic module, the line continuation feature is also valid for comment lines.)"
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3151042\n"
+"32\n"
+"help.text"
+msgid "If you press the <emph>Run BASIC</emph> icon on the <emph>Macro</emph> bar, program execution starts at the first line of the Basic editor. The program executes the first Sub or Function and then program execution stops. The \"Sub Main\" does not take precedence on program execution."
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id59816\n"
+"help.text"
+msgid "Insert your Basic code between the Sub Main and End Sub lines that you see when you first open the IDE. Alternatively, delete all lines and then enter your own Basic code."
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3125863\n"
+"4\n"
+"help.text"
+msgid "Navigating in a Project"
+msgstr "Përpara objektit"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3145785\n"
+"6\n"
+"help.text"
+msgid "The Library List"
+msgstr "Kryerresht i listës"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3146120\n"
+"7\n"
+"help.text"
+msgid "Select a library from the <emph>Library</emph> list at the left of the toolbar to load the library in the editor. The first module of the selected library will be displayed."
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3153190\n"
+"8\n"
+"help.text"
+msgid "The Object Catalog"
+msgstr "Katalogu i objektit"
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3148647\n"
+"15\n"
+"help.text"
+msgid "Saving and Loading Basic Source Code"
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3154320\n"
+"16\n"
+"help.text"
+msgid "You can save Basic code in a text file for saving and importing in other programming systems."
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3149959\n"
+"25\n"
+"help.text"
+msgid "You cannot save Basic dialogs to a text file."
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3149403\n"
+"17\n"
+"help.text"
+msgid "Saving Source Code to a Text File"
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3150327\n"
+"18\n"
+"help.text"
+msgid "Select the module that you want to export as text from the object catalog."
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3150752\n"
+"19\n"
+"help.text"
+msgid "Click the <emph>Save Source As</emph> icon in the Macro toolbar."
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3154754\n"
+"20\n"
+"help.text"
+msgid "Select a file name and click <emph>OK</emph> to save the file."
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"hd_id3159264\n"
+"21\n"
+"help.text"
+msgid "Loading Source Code From a Text File"
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3147343\n"
+"22\n"
+"help.text"
+msgid "Select the module where you want to import the source code from the object catalog."
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3145230\n"
+"23\n"
+"help.text"
+msgid "Position the cursor where you want to insert the program code."
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3149565\n"
+"24\n"
+"help.text"
+msgid "Click the <emph>Insert Source Text</emph> icon in the Macro toolbar."
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3154020\n"
+"33\n"
+"help.text"
+msgid "Select the text file containing the source code and click <emph>OK</emph>."
+msgstr ""
+
+#: 01030200.xhp
+msgctxt ""
+"01030200.xhp\n"
+"par_id3153198\n"
+"29\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Debugging a Basic Program"
+msgstr "%PRODUCTNAME Modulet e programeve"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"bm_id3153344\n"
+"help.text"
+msgid "<bookmark_value>debugging Basic programs</bookmark_value><bookmark_value>variables; observing values</bookmark_value><bookmark_value>watching variables</bookmark_value><bookmark_value>run-time errors in Basic</bookmark_value><bookmark_value>error codes in Basic</bookmark_value><bookmark_value>breakpoints</bookmark_value><bookmark_value>Call Stack window</bookmark_value>"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3153344\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01030300.xhp\">Debugging a Basic Program</link>"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3159224\n"
+"4\n"
+"help.text"
+msgid "Breakpoints and Single Step Execution"
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3150682\n"
+"5\n"
+"help.text"
+msgid "You can check each line in your Basic program for errors using single step execution. Errors are easily traced since you can immediately see the result of each step. A pointer in the breakpoint column of the Editor indicates the current line. You can also set a breakpoint if you want to force the program to be interrupted at a specific position."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3147303\n"
+"7\n"
+"help.text"
+msgid "Double-click in the <emph>breakpoint</emph> column at the left of the Editor window to toggle a breakpoint at the corresponding line. When the program reaches a breakpoint, the program execution is interrupted."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3155805\n"
+"8\n"
+"help.text"
+msgid "The <emph>single step </emph>execution using the <emph>Single Step</emph> icon causes the program to branch into procedures and functions."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3151110\n"
+"25\n"
+"help.text"
+msgid "The procedure step execution using the <emph>Procedure Step</emph> icon causes the program to skip over procedures and functions as a single step."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3153825\n"
+"9\n"
+"help.text"
+msgid "Properties of a Breakpoint"
+msgstr "Vetitë e kornizës"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3147574\n"
+"26\n"
+"help.text"
+msgid "The properties of a breakpoint are available through its context menu by right-clicking the breakpoint in the breakpoint column."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3148473\n"
+"10\n"
+"help.text"
+msgid "You can <emph>activate</emph> and <emph>deactivate</emph> a breakpoint by selecting <emph>Active</emph> from its context menu. When a breakpoint is deactivated, it does not interrupt the program execution."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3159413\n"
+"27\n"
+"help.text"
+msgid "Select <emph>Properties</emph> from the context menu of a breakpoint or select <emph>Breakpoints</emph> from the context menu of the breakpoint column to call the <emph>Breakpoints</emph> dialog where you can specify other breakpoint options."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3156280\n"
+"11\n"
+"help.text"
+msgid "The list displays all <emph>breakpoints</emph> with the corresponding line number in the source code. You can activate or deactivate a selected breakpoint by checking or clearing the <emph>Active</emph> box."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3158407\n"
+"12\n"
+"help.text"
+msgid "The <emph>Pass Count</emph> specifies the number of times the breakpoint can be passed over before the program is interrupted. If you enter 0 (default setting) the program is always interrupted as soon as a breakpoint is encountered."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3153968\n"
+"13\n"
+"help.text"
+msgid "Click <emph>Delete</emph> to remove the breakpoint from the program."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3150439\n"
+"14\n"
+"help.text"
+msgid "Observing the Value of Variables"
+msgstr "Vlerë në zvoglim e kryerreshtit"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3153368\n"
+"15\n"
+"help.text"
+msgid "You can monitor the values of a variable by adding it to the <emph>Watch</emph> window. To add a variable to the list of watched variables, type the variable name in the <emph>Watch</emph> text box and press Enter."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3146986\n"
+"16\n"
+"help.text"
+msgid "The values of variables are only displayed if they are in scope. Variables that are not defined at the current source code location display (\"Out of Scope\") instead of a value."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3145272\n"
+"17\n"
+"help.text"
+msgid "You can also include arrays in the Watch window. If you enter the name of an array variable without an index value in the Watch text box, the content of the entire array is displayed."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3145749\n"
+"19\n"
+"help.text"
+msgid "If you rest the mouse over a predefined variable in the Editor at run-time, the content of the variable is displayed in a pop-up box."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3148618\n"
+"20\n"
+"help.text"
+msgid "The Call Stack Window"
+msgstr "Përshtate me faqe"
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"par_id3154491\n"
+"21\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">Provides an overview of the call hierarchy of procedures and functions.</ahelp> You can determine which procedures and functions called which other procedures and functions at the current point in the source code."
+msgstr ""
+
+#: 01030300.xhp
+msgctxt ""
+"01030300.xhp\n"
+"hd_id3150594\n"
+"24\n"
+"help.text"
+msgid "List of Run-Time Errors"
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Organizing Libraries and Modules"
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"bm_id3148797\n"
+"help.text"
+msgid "<bookmark_value>libraries;organizing</bookmark_value><bookmark_value>modules;organizing</bookmark_value><bookmark_value>copying;modules</bookmark_value><bookmark_value>adding libraries</bookmark_value><bookmark_value>deleting;libraries/modules/dialogs</bookmark_value><bookmark_value>dialogs;organizing</bookmark_value><bookmark_value>moving;modules</bookmark_value><bookmark_value>organizing;modules/libraries/dialogs</bookmark_value><bookmark_value>renaming modules and dialogs</bookmark_value>"
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3148797\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\">Organizing Libraries and Modules</link></variable>"
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3150868\n"
+"4\n"
+"help.text"
+msgid "Organizing Libraries"
+msgstr "Bashkangjitni biblotekat"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3125864\n"
+"5\n"
+"help.text"
+msgid "Creating a New Library"
+msgstr "$(ERR gjatë krijimit të dokumentit të ri."
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3152576\n"
+"6\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3153726\n"
+"8\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Largo nga adresa"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3149664\n"
+"9\n"
+"help.text"
+msgid "Select to where you want to attach the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be attached to this document and only available from there."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3153365\n"
+"10\n"
+"help.text"
+msgid "Click <emph>New</emph> and insert a name to create a new library."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3147394\n"
+"48\n"
+"help.text"
+msgid "Import a Library"
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3153157\n"
+"49\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146972\n"
+"50\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Largo nga adresa"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3145640\n"
+"51\n"
+"help.text"
+msgid "Select to where you want to import the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be imported to this document and only available from there."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3154253\n"
+"52\n"
+"help.text"
+msgid "Click <emph>Import...</emph> and select an external library to import."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3154705\n"
+"53\n"
+"help.text"
+msgid "Select all libraries to be imported in the <emph>Import Libraries</emph> dialog. The dialog displays all libraries that are contained in the selected file."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3163807\n"
+"54\n"
+"help.text"
+msgid "If you want to insert the library as a reference only check the <emph>Insert as reference (read-only)</emph> box. Read-only libraries are fully functional but cannot be modified in the Basic IDE."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3145228\n"
+"55\n"
+"help.text"
+msgid "Check the <emph>Replace existing libraries</emph> box if you want existing libraries of the same name to be overwritten."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147004\n"
+"56\n"
+"help.text"
+msgid "Click <emph>OK</emph> to import the library."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3159099\n"
+"17\n"
+"help.text"
+msgid "Export a Library"
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147005\n"
+"70\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147006\n"
+"71\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Largo nga adresa"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147007\n"
+"72\n"
+"help.text"
+msgid "In the <emph>Location</emph> list you specify where your library is stored. Select the library that you want to export. Note that you cannot export the <emph>Standard</emph> library."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147008\n"
+"73\n"
+"help.text"
+msgid "Click <emph>Export...</emph>"
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147009\n"
+"74\n"
+"help.text"
+msgid "Choose whether you want to export the library as an extension or as a basic library."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147010\n"
+"75\n"
+"help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Largo nga adresa"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147011\n"
+"76\n"
+"help.text"
+msgid "Select where you want your library exported."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147012\n"
+"77\n"
+"help.text"
+msgid "Click <emph>Save</emph> to export the library."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3159100\n"
+"17\n"
+"help.text"
+msgid "Deleting a Library"
+msgstr "Libraria e tanishme"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3150086\n"
+"18\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146808\n"
+"57\n"
+"help.text"
+msgid "Click the <emph>Libraries</emph> tab."
+msgstr "Largo nga adresa"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3158212\n"
+"58\n"
+"help.text"
+msgid "Select the library to be deleted from the list."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3150361\n"
+"20\n"
+"help.text"
+msgid "Click <emph>Delete</emph>."
+msgstr "Fshije stilin e linjës"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3152986\n"
+"19\n"
+"help.text"
+msgid "Deleting a library permanently deletes all existing modules and corresponding procedures and functions."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3148868\n"
+"59\n"
+"help.text"
+msgid "You cannot delete the default library named \"Standard\"."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146869\n"
+"60\n"
+"help.text"
+msgid "If you delete a library that was inserted as reference only the reference is deleted but not the library itself."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3147070\n"
+"21\n"
+"help.text"
+msgid "Organizing Modules and Dialogs"
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3155265\n"
+"61\n"
+"help.text"
+msgid "Creating a New Module or Dialog"
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3154537\n"
+"62\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146781\n"
+"63\n"
+"help.text"
+msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3159206\n"
+"64\n"
+"help.text"
+msgid "Select the library where the module will be inserted and click <emph>New</emph>."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3152389\n"
+"65\n"
+"help.text"
+msgid "Enter a name for the module or the dialog and click <emph>OK</emph>."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3152872\n"
+"25\n"
+"help.text"
+msgid "Renaming a Module or Dialog"
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3159230\n"
+"66\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3150046\n"
+"67\n"
+"help.text"
+msgid "Click the module to be renamed twice, with a pause between the clicks. Enter the new name."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3153801\n"
+"27\n"
+"help.text"
+msgid "In the Basic IDE, right-click the name of the module or dialog in the tabs at the bottom of the screen, choose <emph>Rename</emph> and type in the new name."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3155526\n"
+"28\n"
+"help.text"
+msgid "Press Enter to confirm your changes."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3146963\n"
+"29\n"
+"help.text"
+msgid "Deleting a Module or Dialog"
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147547\n"
+"68\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3150958\n"
+"69\n"
+"help.text"
+msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3149870\n"
+"30\n"
+"help.text"
+msgid "Select the module or dialog to be deleted from the list. Double-click an entry to reveal sub-entries, if required."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3147248\n"
+"32\n"
+"help.text"
+msgid "Click <emph>Delete</emph>."
+msgstr "Fshije stilin e linjës"
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3151339\n"
+"31\n"
+"help.text"
+msgid "Deleting a module permanently deletes all existing procedures and functions in that module."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3151392\n"
+"33\n"
+"help.text"
+msgid "Organizing Projects among Documents or Templates"
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"hd_id3156400\n"
+"36\n"
+"help.text"
+msgid "Moving or copying modules between documents, templates and the application."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3146819\n"
+"37\n"
+"help.text"
+msgid "Open all documents or templates among which you want to move or copy the modules or dialogs."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3149319\n"
+"38\n"
+"help.text"
+msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgstr ""
+
+#: 01030400.xhp
+msgctxt ""
+"01030400.xhp\n"
+"par_id3145637\n"
+"39\n"
+"help.text"
+msgid "To move a module or dialog to another document, click the corresponding object in the list and drag it to the desired position. A horizontal line indicates the target position of the current object while dragging. Hold the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while dragging to copy the object instead of moving it."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Event-Driven Macros"
+msgstr "Makrot ekzistuese në:\\n"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"bm_id3154581\n"
+"help.text"
+msgid "<bookmark_value>deleting; macro assignments to events</bookmark_value> <bookmark_value>macros; assigning to events</bookmark_value> <bookmark_value>assigning macros to events</bookmark_value> <bookmark_value>events; assigning macros</bookmark_value>"
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"hd_id3147348\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Event-Driven Macros</link>"
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146120\n"
+"2\n"
+"help.text"
+msgid "This section describes how to assign Basic programs to program events."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149263\n"
+"4\n"
+"help.text"
+msgid "You can automatically execute a macro when a specified software event occurs by assigning the desired macro to the event. The following table provides an overview of program events and at what point an assigned macro is executed."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3148455\n"
+"5\n"
+"help.text"
+msgid "Event"
+msgstr "Ngjarje"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145799\n"
+"6\n"
+"help.text"
+msgid "An assigned macro is executed..."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149379\n"
+"7\n"
+"help.text"
+msgid "Program Start"
+msgstr "Numërimi 1 Fillimi"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150715\n"
+"8\n"
+"help.text"
+msgid "... after a $[officename] application is started."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146914\n"
+"9\n"
+"help.text"
+msgid "Program End"
+msgstr "Numrimi 1 Fundi"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3153765\n"
+"10\n"
+"help.text"
+msgid "...before a $[officename] application is terminated."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145150\n"
+"11\n"
+"help.text"
+msgid "Create Document"
+msgstr "Krijo dokumentin"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3163808\n"
+"12\n"
+"help.text"
+msgid "...after a new document is created with <emph>File - New</emph> or with the <emph>New</emph> icon."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145790\n"
+"13\n"
+"help.text"
+msgid "Open Document"
+msgstr "Hape Dokumentin"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154572\n"
+"14\n"
+"help.text"
+msgid "...after a document is opened with <emph>File - Open</emph> or with the <emph>Open</emph> icon."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3153266\n"
+"15\n"
+"help.text"
+msgid "Save Document As"
+msgstr "Ruaj dokumentin si"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150208\n"
+"16\n"
+"help.text"
+msgid "...before a document is saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or the <emph>Save</emph> icon, if a document name has not yet been specified)."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3158215\n"
+"43\n"
+"help.text"
+msgid "Document has been saved as"
+msgstr "Dokumenti është ruajtur si"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150980\n"
+"44\n"
+"help.text"
+msgid "... after a document was saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or with the <emph>Save</emph> icon, if a document name has not yet been specified)."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150519\n"
+"17\n"
+"help.text"
+msgid "Save Document"
+msgstr "Ruaje dokumentin"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3155529\n"
+"18\n"
+"help.text"
+msgid "...before a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149404\n"
+"45\n"
+"help.text"
+msgid "Document has been saved"
+msgstr "Dokumenti është ruajtur"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3151332\n"
+"46\n"
+"help.text"
+msgid "...after a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3159171\n"
+"19\n"
+"help.text"
+msgid "Document is closing"
+msgstr "Është duke u shtypur në"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146868\n"
+"20\n"
+"help.text"
+msgid "...before a document is closed."
+msgstr "Kërkimi i dokumetit ka përfunduar."
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3159097\n"
+"47\n"
+"help.text"
+msgid "Document closed"
+msgstr "Është duke u shtypur në"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3148606\n"
+"48\n"
+"help.text"
+msgid "...after a document was closed. Note that the \"Save Document\" event may also occur when the document is saved before closing."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3144772\n"
+"21\n"
+"help.text"
+msgid "Activate Document"
+msgstr "Aktivizo dokumentin"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149442\n"
+"22\n"
+"help.text"
+msgid "...after a document is brought to the foreground."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150888\n"
+"23\n"
+"help.text"
+msgid "Deactivate Document"
+msgstr "Deaktivizo dokumentin"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154060\n"
+"24\n"
+"help.text"
+msgid "...after another document is brought to the foreground."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3152384\n"
+"25\n"
+"help.text"
+msgid "Print Document"
+msgstr "Printo dokumentin"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3152873\n"
+"26\n"
+"help.text"
+msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3159227\n"
+"49\n"
+"help.text"
+msgid "JavaScript run-time error"
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3145362\n"
+"50\n"
+"help.text"
+msgid "...when a JavaScript run-time error occurs."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154767\n"
+"27\n"
+"help.text"
+msgid "Print Mail Merge"
+msgstr "Pranuesit e bashkangjitjes me të dhëna"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3153555\n"
+"28\n"
+"help.text"
+msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins. This event occurs for each copy printed."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3156366\n"
+"51\n"
+"help.text"
+msgid "Change of the page count"
+msgstr "Shto numërimin e faqeve"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154627\n"
+"52\n"
+"help.text"
+msgid "...when the page count changes."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3154737\n"
+"53\n"
+"help.text"
+msgid "Message received"
+msgstr "Mesazhi i e-mail"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150952\n"
+"54\n"
+"help.text"
+msgid "...if a message was received."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"hd_id3153299\n"
+"30\n"
+"help.text"
+msgid "Assigning a Macro to an Event"
+msgstr "Dëshiron të aktivizosh makron?"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3147244\n"
+"31\n"
+"help.text"
+msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146098\n"
+"55\n"
+"help.text"
+msgid "Select whether you want the assignment to be globally valid or just valid in the current document in the <emph>Save In</emph> listbox."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3150431\n"
+"32\n"
+"help.text"
+msgid "Select the event from the <emph>Event</emph> list."
+msgstr "Zgjidh skemën e tastierës nga lista e arkitekturave"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3148742\n"
+"33\n"
+"help.text"
+msgid "Click <emph>Macro</emph> and select the macro to be assigned to the selected event."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146321\n"
+"35\n"
+"help.text"
+msgid "Click <emph>OK</emph> to assign the macro."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3147414\n"
+"56\n"
+"help.text"
+msgid "Click <emph>OK</emph> to close the dialog."
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"hd_id3154581\n"
+"36\n"
+"help.text"
+msgid "Removing the Assignment of a Macro to an Event"
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3146883\n"
+"57\n"
+"help.text"
+msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3155909\n"
+"58\n"
+"help.text"
+msgid "Select whether you want to remove a global assignment or an assignment that is just valid in the current document by selecting the option in the <emph>Save In</emph> listbox."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3159129\n"
+"59\n"
+"help.text"
+msgid "Select the event that contains the assignment to be removed from the <emph>Event</emph> list."
+msgstr ""
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149143\n"
+"37\n"
+"help.text"
+msgid "Click <emph>Remove</emph>."
+msgstr "Largo nga adresa"
+
+#: 01040000.xhp
+msgctxt ""
+"01040000.xhp\n"
+"par_id3149351\n"
+"60\n"
+"help.text"
+msgid "Click <emph>OK</emph> to close the dialog."
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Basic IDE"
+msgstr "Master IDE%s, ndarja Nr. %s [%s]"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3154422\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\" name=\"$[officename] Basic IDE\">$[officename] Basic IDE</link></variable>"
+msgstr ""
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3153142\n"
+"2\n"
+"help.text"
+msgid "This section describes the structure of the Basic IDE."
+msgstr ""
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_idN105C9\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Basic IDE where you can write and edit macros.</ahelp>"
+msgstr ""
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3153188\n"
+"5\n"
+"help.text"
+msgid "Commands From the Context menu of the Module Tabs"
+msgstr ""
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3154731\n"
+"6\n"
+"help.text"
+msgid "Insert"
+msgstr "Shto"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3151074\n"
+"8\n"
+"help.text"
+msgid "Module"
+msgstr "Modula"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3149581\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\".uno:NewModule\">Inserts a new module into the current library.</ahelp>"
+msgstr ""
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3147397\n"
+"10\n"
+"help.text"
+msgid "Dialog"
+msgstr "Dialogu"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3144335\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\".uno:NewDialog\">Inserts a new dialog into the current library.</ahelp>"
+msgstr ""
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3155602\n"
+"12\n"
+"help.text"
+msgid "Delete"
+msgstr "Fshije"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3155064\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DeleteCurrent\">Deletes the selected module.</ahelp>"
+msgstr ""
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3149018\n"
+"14\n"
+"help.text"
+msgid "Rename"
+msgstr "Riemëro"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3154754\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\".uno:RenameCurrent\">Renames the current module in place.</ahelp>"
+msgstr ""
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3150043\n"
+"16\n"
+"help.text"
+msgid "Hide"
+msgstr "Fshehe"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3145147\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\".uno:HideCurPage\">Hides the current module.</ahelp>"
+msgstr ""
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3163805\n"
+"18\n"
+"help.text"
+msgid "Modules"
+msgstr "Modulet"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3153965\n"
+"19\n"
+"help.text"
+msgid "Opens the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog."
+msgstr ""
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Watch Window"
+msgstr "Dritarja aktive"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3149457\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050100.xhp\">Watch Window</link>"
+msgstr ""
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3154908\n"
+"9\n"
+"help.text"
+msgid "The Watch window allows you to observe the value of variables during the execution of a program. Define the variable in the Watch text box. Click on <link href=\"text/sbasic/shared/02/11080000.xhp\">Enable Watch</link> to add the variable to the list box and to display its values."
+msgstr ""
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3145173\n"
+"4\n"
+"help.text"
+msgid "Watch"
+msgstr "Ora"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3155132\n"
+"5\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">Enter the name of the variable whose value is to be monitored.</ahelp>"
+msgstr ""
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3148645\n"
+"6\n"
+"help.text"
+msgid "Remove Watch"
+msgstr "Hiqe orwn"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3148576\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_REMOVEWATCH\">Removes the selected variable from the list of watched variables.</ahelp>"
+msgstr ""
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3147426\n"
+"help.text"
+msgid "<image id=\"img_id3152460\" src=\"res/baswatr.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3152460\">Icon</alt></image>"
+msgstr ""
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3154012\n"
+"8\n"
+"help.text"
+msgid "Remove Watch"
+msgstr "Hiqe orwn"
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"hd_id3154491\n"
+"10\n"
+"help.text"
+msgid "Editing the Value of a Watched Variable"
+msgstr "Shëndron një ndryshore të rastësishme në një vlerë të normalizuar."
+
+#: 01050100.xhp
+msgctxt ""
+"01050100.xhp\n"
+"par_id3156283\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_LIST\">Displays the list of watched variables. Click twice with a short pause in between on an entry to edit its value.</ahelp> The new value will be taken as the variable's value for the program."
+msgstr ""
+
+#: 01050200.xhp
+msgctxt ""
+"01050200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Call Stack Window (Calls)"
+msgstr ""
+
+#: 01050200.xhp
+msgctxt ""
+"01050200.xhp\n"
+"hd_id3146794\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Call Stack Window (Calls)\">Call Stack Window (Calls)</link>"
+msgstr ""
+
+#: 01050200.xhp
+msgctxt ""
+"01050200.xhp\n"
+"par_id3150400\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\" visibility=\"hidden\">Displays the sequence of procedures and functions during the execution of a program.</ahelp> The <emph>Call Stack</emph> allows you to monitor the sequence of procedures and functions during the execution of a program. The procedures are functions are displayed bottom to top with the most recent function or procedure call at the top of the list."
+msgstr ""
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Manage Breakpoints"
+msgstr "Trajto pikat ndërprerëse"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3154927\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
+msgstr ""
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3148550\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_BRKPROPS\">Specifies the options for breakpoints.</ahelp>"
+msgstr ""
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3149670\n"
+"3\n"
+"help.text"
+msgid "Breakpoints"
+msgstr "Pikat e ndërprerjes"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3150398\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"BASCTL_COMBOBOX_RID_BASICIDE_BREAKPOINTDLG_RID_CB_BRKPOINTS\">Enter the line number for a new breakpoint, then click <emph>New</emph>.</ahelp>"
+msgstr ""
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3156280\n"
+"6\n"
+"help.text"
+msgid "Active"
+msgstr "Aktiv"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3154910\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_ACTIV\">Activates or deactivates the current breakpoint.</ahelp>"
+msgstr ""
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3144500\n"
+"8\n"
+"help.text"
+msgid "Pass Count"
+msgstr "Numwrimi i kalimeve:"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3161831\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\"BASCTL_NUMERICFIELD_RID_BASICIDE_BREAKPOINTDLG_RID_FLD_PASS\">Specify the number of loops to perform before the breakpoint takes effect.</ahelp>"
+msgstr ""
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3152579\n"
+"10\n"
+"help.text"
+msgid "New"
+msgstr "E re"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3148575\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_NEW\">Creates a breakpoint on the line number specified.</ahelp>"
+msgstr ""
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"hd_id3147319\n"
+"12\n"
+"help.text"
+msgid "Delete"
+msgstr "Fshije"
+
+#: 01050300.xhp
+msgctxt ""
+"01050300.xhp\n"
+"par_id3153363\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_DEL\">Deletes the selected breakpoint.</ahelp>"
+msgstr ""
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Control and Dialog Properties"
+msgstr ""
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"bm_id3153379\n"
+"help.text"
+msgid "<bookmark_value>controls; properties</bookmark_value><bookmark_value>properties; controls and dialogs</bookmark_value><bookmark_value>dialogs; properties</bookmark_value>"
+msgstr ""
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"hd_id3153379\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Control and Dialog Properties\">Control and Dialog Properties</link>"
+msgstr ""
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3156280\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specifies the properties of the selected dialog or control.</ahelp> You must be in the design mode to be able to use this command."
+msgstr ""
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"hd_id3151043\n"
+"20\n"
+"help.text"
+msgid "Entering Data in the Properties Dialog"
+msgstr ""
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3153771\n"
+"3\n"
+"help.text"
+msgid "The following key combinations apply to enter data in multiline fields or combo boxes of the <emph>Properties</emph> dialog:"
+msgstr ""
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3150010\n"
+"18\n"
+"help.text"
+msgid "Keys"
+msgstr "Tastet"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3147317\n"
+"19\n"
+"help.text"
+msgid "Effects"
+msgstr "Efektet"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146121\n"
+"4\n"
+"help.text"
+msgid "Alt+Down Arrow"
+msgstr "Thirrje poshtë shigjetë"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3149581\n"
+"5\n"
+"help.text"
+msgid "Opens a combo box"
+msgstr "AutoPilot Kuti Krehër"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3147394\n"
+"6\n"
+"help.text"
+msgid "Alt+Up Arrow"
+msgstr "Thirrje lartë shigjetë"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3148455\n"
+"7\n"
+"help.text"
+msgid "Closes a combo box"
+msgstr "AutoPilot Kuti Krehër"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3154511\n"
+"8\n"
+"help.text"
+msgid "Shift+Enter"
+msgstr "Regjistro grupin"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146971\n"
+"9\n"
+"help.text"
+msgid "Inserts a line break in multiline fields."
+msgstr ""
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146914\n"
+"10\n"
+"help.text"
+msgid "(UpArrow)"
+msgstr ""
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3153714\n"
+"11\n"
+"help.text"
+msgid "Goes to the previous line."
+msgstr "Fshij deri Fillim të Rreshtit"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3159266\n"
+"12\n"
+"help.text"
+msgid "(DownArrow)"
+msgstr ""
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3146314\n"
+"13\n"
+"help.text"
+msgid "Goes to the next line."
+msgstr "Fshij deri Fillim të Rreshtit"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3149255\n"
+"14\n"
+"help.text"
+msgid "Enter"
+msgstr "Qendër"
+
+#: 01170100.xhp
+msgctxt ""
+"01170100.xhp\n"
+"par_id3149566\n"
+"15\n"
+"help.text"
+msgid "Applies the changes made to a field and places the cursor into the next field."
+msgstr ""
+
#: 01170101.xhp
msgctxt ""
"01170101.xhp\n"
@@ -431,7 +5465,7 @@ msgctxt ""
"99\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -467,7 +5501,7 @@ msgctxt ""
"103\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -485,7 +5519,7 @@ msgctxt ""
"105\n"
"help.text"
msgid "N"
-msgstr "N"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -521,7 +5555,7 @@ msgctxt ""
"109\n"
"help.text"
msgid "X"
-msgstr "X"
+msgstr ""
#: 01170101.xhp
msgctxt ""
@@ -687,7 +5721,6 @@ msgid "The default value is FALSE."
msgstr "Definon vlerën llogjike si PASAKTË."
#: 01170101.xhp
-#, fuzzy
msgctxt ""
"01170101.xhp\n"
"hd_id3150536\n"
@@ -1738,3168 +6771,2924 @@ msgctxt ""
msgid "<ahelp hid=\".\">Specify the width of the current control or dialog.</ahelp>"
msgstr ""
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
+"01170103.xhp\n"
"tit\n"
"help.text"
-msgid "Blue Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03010301.xhp
-msgctxt ""
-"03010301.xhp\n"
-"bm_id3149180\n"
-"help.text"
-msgid "<bookmark_value>Blue function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "Events"
+msgstr "Ngjarjet"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"hd_id3149180\n"
+"01170103.xhp\n"
+"hd_id3155506\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Blue Function [Runtime]\">Blue Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">Events</link>"
msgstr ""
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3156343\n"
+"01170103.xhp\n"
+"par_id3146114\n"
"2\n"
"help.text"
-msgid "Returns the blue component of the specified color code."
+msgid "Define event assignments for the selected control or dialog. The available events depend on the type of control selected."
msgstr ""
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"hd_id3149670\n"
-"3\n"
+"01170103.xhp\n"
+"hd_id3145387\n"
+"16\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "When receiving focus"
+msgstr "Kur pranon mbledhje"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3149457\n"
-"4\n"
+"01170103.xhp\n"
+"par_id3155090\n"
+"17\n"
"help.text"
-msgid "Blue (Color As Long)"
+msgid "<ahelp hid=\"HID_EVT_FOCUSGAINED\">This event takes place if a control receives the focus.</ahelp>"
msgstr ""
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"hd_id3149656\n"
-"5\n"
+"01170103.xhp\n"
+"hd_id3152892\n"
+"18\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "When losing focus"
+msgstr "Kur humb mbledhjen"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3154365\n"
-"6\n"
+"01170103.xhp\n"
+"par_id3153305\n"
+"19\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "<ahelp hid=\"HID_EVT_FOCUSLOST\">This event takes place if a control loses the focus.</ahelp>"
+msgstr ""
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"hd_id3156423\n"
-"7\n"
+"01170103.xhp\n"
+"hd_id3152896\n"
+"20\n"
"help.text"
-msgid "Parameter:"
-msgstr "Parametri i sllajdit"
+msgid "Key pressed"
+msgstr "Miu i shtypur"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3150448\n"
-"8\n"
+"01170103.xhp\n"
+"par_id3148837\n"
+"21\n"
"help.text"
-msgid "<emph>Color value</emph>: Long integer expression that specifies any <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the blue component."
+msgid "<ahelp hid=\"HID_EVT_KEYTYPED\">This event occurs when the user presses any key while the control has the focus.</ahelp>"
msgstr ""
-#: 03010301.xhp
-msgctxt ""
-"03010301.xhp\n"
-"hd_id3153091\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3154012\n"
-"13\n"
+"01170103.xhp\n"
+"hd_id3146869\n"
+"43\n"
"help.text"
-msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-msgstr ""
+msgid "Key released"
+msgstr "Miu i çliruar"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3148645\n"
-"14\n"
+"01170103.xhp\n"
+"par_id3155267\n"
+"44\n"
"help.text"
-msgid "\"red= \" & Red(lVar) & Chr(13)&_"
+msgid "<ahelp hid=\"HID_EVT_KEYUP\">This event occurs when the user releases a key while the control has the focus.</ahelp>"
msgstr ""
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3159155\n"
-"15\n"
+"01170103.xhp\n"
+"hd_id3159096\n"
+"41\n"
"help.text"
-msgid "\"green= \" & Green(lVar) & Chr(13)&_"
-msgstr ""
+msgid "Modified"
+msgstr "Ndryshuar"
-#: 03010301.xhp
+#: 01170103.xhp
msgctxt ""
-"03010301.xhp\n"
-"par_id3147319\n"
-"16\n"
+"01170103.xhp\n"
+"par_id3156019\n"
+"42\n"
"help.text"
-msgid "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
+msgid "<ahelp hid=\"HID_EVT_CHANGED\">This event takes place, when the control loses the focus and the contents of the control were changed since it lost the focus.</ahelp>"
msgstr ""
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"tit\n"
+"01170103.xhp\n"
+"hd_id3144508\n"
+"10\n"
"help.text"
-msgid "Comparison Operators [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "Text modified"
+msgstr "Teksti i modifikuar"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"bm_id3150682\n"
+"01170103.xhp\n"
+"par_id3148608\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value><bookmark_value>operators;comparisons</bookmark_value>"
+msgid "<ahelp hid=\"HID_EVT_TEXTCHANGED\">This event takes place if you enter or modify a text in an input field.</ahelp>"
msgstr ""
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"hd_id3150682\n"
-"1\n"
+"01170103.xhp\n"
+"hd_id3159207\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators [Runtime]\">Comparison Operators [Runtime]</link>"
-msgstr ""
+msgid "Item status changed"
+msgstr "Statuti i artikullit ka ndryshuar"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3156042\n"
-"2\n"
+"01170103.xhp\n"
+"par_id3155097\n"
+"9\n"
"help.text"
-msgid "Comparison operators compare two expressions. The result is returned as a Boolean expression that determines if the comparison is True (-1) or False (0)."
+msgid "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">This event takes place if the status of the control field is changed, for example, from checked to unchecked.</ahelp>"
msgstr ""
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"hd_id3147291\n"
-"3\n"
+"01170103.xhp\n"
+"hd_id3151304\n"
+"26\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Mouse inside"
+msgstr "Miu brenda"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3149177\n"
-"4\n"
+"01170103.xhp\n"
+"par_id3152871\n"
+"27\n"
"help.text"
-msgid "Result = Expression1 { = | < | > | <= | >= } Expression2"
-msgstr "Gabim: Pa rezultat"
+msgid "<ahelp hid=\"HID_EVT_MOUSEENTERED\">This event takes place when the mouse enters the control.</ahelp>"
+msgstr ""
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"hd_id3145316\n"
-"5\n"
+"01170103.xhp\n"
+"hd_id3146778\n"
+"30\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Mouse moved while key pressed"
+msgstr "Miu lëvizë derisa shtypet çelësi"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3147573\n"
-"6\n"
+"01170103.xhp\n"
+"par_id3150403\n"
+"31\n"
"help.text"
-msgid "<emph>Result:</emph> Boolean expression that specifies the result of the comparison (True, or False)"
+msgid "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">This event takes place when the mouse is dragged while a key is pressed.</ahelp>"
msgstr ""
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3148686\n"
-"7\n"
+"01170103.xhp\n"
+"hd_id3150210\n"
+"32\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric values or strings that you want to compare."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "Mouse moved"
+msgstr "Miu i lëvizur"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"hd_id3147531\n"
-"8\n"
+"01170103.xhp\n"
+"par_id3149697\n"
+"33\n"
"help.text"
-msgid "Comparison operators"
-msgstr "Operatërot Unar/Binar"
+msgid "<ahelp hid=\"HID_EVT_MOUSEMOVED\">This event takes place when the mouse moves over the control.</ahelp>"
+msgstr ""
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3147265\n"
-"9\n"
+"01170103.xhp\n"
+"hd_id3145216\n"
+"22\n"
"help.text"
-msgid "= : Equal to"
-msgstr "e barabartë me"
+msgid "Mouse button pressed"
+msgstr "Butoni i miut i shtypur"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3154924\n"
-"10\n"
+"01170103.xhp\n"
+"par_id3155914\n"
+"23\n"
"help.text"
-msgid "< : Less than"
-msgstr "më pak se"
+msgid "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">This event takes place when the mouse button is pressed while the mouse pointer is on the control.</ahelp>"
+msgstr ""
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3146795\n"
-"11\n"
+"01170103.xhp\n"
+"hd_id3148899\n"
+"24\n"
"help.text"
-msgid "> : Greater than"
-msgstr "më e madhe se"
+msgid "Mouse button released"
+msgstr "Butoni i miut i çliruar"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3150541\n"
-"12\n"
+"01170103.xhp\n"
+"par_id3153812\n"
+"25\n"
"help.text"
-msgid "<= : Less than or equal to"
-msgstr "më pak se ose barazi me"
+msgid "<ahelp hid=\"HID_EVT_MOUSERELEASED\">This event takes place when the mouse button is released while the mouse pointer is on the control.</ahelp>"
+msgstr ""
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3150400\n"
-"13\n"
+"01170103.xhp\n"
+"hd_id3153556\n"
+"28\n"
"help.text"
-msgid ">= : Greater than or equal to"
-msgstr "më e madhe se ose baraz me"
+msgid "Mouse outside"
+msgstr "Miu jashtë"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3148797\n"
-"14\n"
+"01170103.xhp\n"
+"par_id3153013\n"
+"29\n"
"help.text"
-msgid "<> : Not equal to"
-msgstr "jo e barabartë me"
+msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when the mouse leaves the control.</ahelp>"
+msgstr ""
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"hd_id3154686\n"
-"15\n"
+"01170103.xhp\n"
+"hd_id3155759\n"
+"45\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "While adjusting"
+msgstr "Derisa rregullon"
-#: 03110100.xhp
+#: 01170103.xhp
msgctxt ""
-"03110100.xhp\n"
-"par_id3154909\n"
-"18\n"
+"01170103.xhp\n"
+"par_id3156364\n"
+"46\n"
"help.text"
-msgid "Dim sRoot As String ' Root directory for file in and output"
+msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when a scrollbar is being dragged.</ahelp>"
msgstr ""
-#: 03030303.xhp
+#: 03000000.xhp
msgctxt ""
-"03030303.xhp\n"
+"03000000.xhp\n"
"tit\n"
"help.text"
-msgid "Timer Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03030303.xhp
-msgctxt ""
-"03030303.xhp\n"
-"bm_id3149346\n"
-"help.text"
-msgid "<bookmark_value>Timer function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "Run-Time Functions"
+msgstr "Paraqit Funksionet e Vizatimit"
-#: 03030303.xhp
+#: 03000000.xhp
msgctxt ""
-"03030303.xhp\n"
-"hd_id3149346\n"
+"03000000.xhp\n"
+"hd_id3152895\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Timer Function [Runtime]\">Timer Function [Runtime]</link>"
+msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">Run-Time Functions</link></variable>"
msgstr ""
-#: 03030303.xhp
+#: 03000000.xhp
msgctxt ""
-"03030303.xhp\n"
-"par_id3156023\n"
+"03000000.xhp\n"
+"par_id3148983\n"
"2\n"
"help.text"
-msgid "Returns a value that specifies the number of seconds that have elapsed since midnight."
-msgstr ""
-
-#: 03030303.xhp
-msgctxt ""
-"03030303.xhp\n"
-"par_id3156212\n"
-"3\n"
-"help.text"
-msgid "You must first declare a variable to call the Timer function and assign it the \"Long \" data type, otherwise a Date value is returned."
+msgid "This section describes the Runtime Functions of <item type=\"productname\">%PRODUCTNAME</item> Basic."
msgstr ""
-#: 03030303.xhp
-msgctxt ""
-"03030303.xhp\n"
-"hd_id3153768\n"
-"4\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03030303.xhp
+#: 03010000.xhp
msgctxt ""
-"03030303.xhp\n"
-"par_id3161831\n"
-"5\n"
+"03010000.xhp\n"
+"tit\n"
"help.text"
-msgid "Timer"
-msgstr "Koha"
+msgid "Screen I/O Functions"
+msgstr "Funksionet statistikore"
-#: 03030303.xhp
+#: 03010000.xhp
msgctxt ""
-"03030303.xhp\n"
-"hd_id3146975\n"
-"6\n"
+"03010000.xhp\n"
+"hd_id3156280\n"
+"1\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Screen I/O Functions</link>"
+msgstr ""
-#: 03030303.xhp
+#: 03010000.xhp
msgctxt ""
-"03030303.xhp\n"
-"par_id3146984\n"
-"7\n"
+"03010000.xhp\n"
+"par_id3153770\n"
+"2\n"
"help.text"
-msgid "Date"
-msgstr "Data"
+msgid "This section describes the Runtime Functions used to call dialogs for the input and output of user entries."
+msgstr ""
-#: 03030303.xhp
+#: 03010100.xhp
msgctxt ""
-"03030303.xhp\n"
-"hd_id3156442\n"
-"8\n"
+"03010100.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Display Functions"
+msgstr "Funksionet statistikore"
-#: 03030303.xhp
+#: 03010100.xhp
msgctxt ""
-"03030303.xhp\n"
-"par_id3145748\n"
-"12\n"
+"03010100.xhp\n"
+"hd_id3151384\n"
+"1\n"
"help.text"
-msgid "MsgBox lSec,0,\"Seconds since midnight\""
+msgid "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Display Functions\">Display Functions</link>"
msgstr ""
-#: 03030303.xhp
+#: 03010100.xhp
msgctxt ""
-"03030303.xhp\n"
-"par_id3156283\n"
-"17\n"
+"03010100.xhp\n"
+"par_id3149346\n"
+"2\n"
"help.text"
-msgid "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2) ,0,\"The time is\""
+msgid "This section describes Runtime functions used to output information to the screen display."
msgstr ""
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
+"03010101.xhp\n"
"tit\n"
"help.text"
-msgid "Dir Function [Runtime]"
+msgid "MsgBox Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"bm_id3154347\n"
+"03010101.xhp\n"
+"bm_id1807916\n"
"help.text"
-msgid "<bookmark_value>Dir function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>MsgBox statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"hd_id3154347\n"
+"03010101.xhp\n"
+"hd_id3154927\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Dir Function [Runtime]\">Dir Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03010101.xhp\">MsgBox Statement [Runtime]</link>"
msgstr ""
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3153381\n"
+"03010101.xhp\n"
+"par_id3148947\n"
"2\n"
"help.text"
-msgid "Returns the name of a file, a directory, or all of the files and the directories on a drive or in a directory that match the specified search path."
+msgid "Displays a dialog box containing a message."
msgstr ""
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"hd_id3154365\n"
+"03010101.xhp\n"
+"hd_id3153897\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3156282\n"
+"03010101.xhp\n"
+"par_id3148664\n"
"4\n"
"help.text"
-msgid "Dir [(Text As String) [, Attrib As Integer]]"
+msgid "MsgBox Text As String [,Type As Integer [,Dialogtitle As String]] (As Statement) or MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]]) (As Function)"
msgstr ""
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"hd_id3156424\n"
+"03010101.xhp\n"
+"hd_id3153361\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameter:"
+msgstr "Parametri i sllajdit"
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3153193\n"
+"03010101.xhp\n"
+"par_id3148798\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
+msgstr ""
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"hd_id3153770\n"
+"03010101.xhp\n"
+"par_id3150769\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialog. If omitted, the title bar displays the name of the respective application."
+msgstr ""
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3161831\n"
+"03010101.xhp\n"
+"par_id3147228\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the search path, directory or file. This argument can only be specified the first time that you call the Dir function. If you want, you can enter the path in <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "<emph>Type</emph>: Any integer expression that specifies the dialog type, as well as the number and type of buttons to display, and the icon type. <emph>Type</emph> represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:"
msgstr ""
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3146974\n"
+"03010101.xhp\n"
+"par_id3161832\n"
"9\n"
"help.text"
-msgid "<emph>Attrib: </emph>Any integer expression that specifies bitwise file attributes. The Dir function only returns files or directories that match the specified attributes. You can combine several attributes by adding the attribute values:"
+msgid "0 : Display OK button only."
msgstr ""
-#: 03020404.xhp
-msgctxt ""
-"03020404.xhp\n"
-"par_id3149666\n"
-"11\n"
-"help.text"
-msgid "0 : Normal files."
-msgstr "Të gjithë fajllat (*.*)"
-
-#: 03020404.xhp
-msgctxt ""
-"03020404.xhp\n"
-"par_id3147427\n"
-"15\n"
-"help.text"
-msgid "16 : Returns the name of the directory only."
-msgstr "Emri i Grupit të Volumit:"
-
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3153952\n"
-"16\n"
+"03010101.xhp\n"
+"par_id3153726\n"
+"10\n"
"help.text"
-msgid "Use this attribute to check if a file or directory exists, or to determine all files and folders in a specific directory."
+msgid "1 : Display OK and Cancel buttons."
msgstr ""
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3159156\n"
-"17\n"
+"03010101.xhp\n"
+"par_id3149665\n"
+"11\n"
"help.text"
-msgid "To check if a file exists, enter the complete path and name of the file. If the file or directory name does not exist, the Dir function returns a zero-length string (\"\")."
+msgid "2 : Display Abort, Retry, and Ignore buttons."
msgstr ""
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3154012\n"
-"18\n"
+"03010101.xhp\n"
+"par_id3147318\n"
+"12\n"
"help.text"
-msgid "To generate a list of all existing files in a specific directory, proceed as follows: The first time you call the Dir function, specify the complete search path for the files, for example, \"D:\\Files\\*.sxw\". If the path is correct and the search finds at least one file, the Dir function returns the name of the first file that matches the search path. To return additional file names that match the path, call Dir again, but with no arguments."
+msgid "3 : Display Yes, No and Cancel buttons."
msgstr ""
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3147348\n"
-"19\n"
+"03010101.xhp\n"
+"par_id3155412\n"
+"13\n"
"help.text"
-msgid "To return directories only, use the attribute parameter. The same applies if you want to determine the name of a volume (for example, a hard drive partition)"
+msgid "4 : Display Yes and No buttons."
msgstr ""
-#: 03020404.xhp
-msgctxt ""
-"03020404.xhp\n"
-"hd_id3154942\n"
-"20\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03020404.xhp
+#: 03010101.xhp
msgctxt ""
-"03020404.xhp\n"
-"par_id3148455\n"
-"22\n"
+"03010101.xhp\n"
+"par_id3146119\n"
+"14\n"
"help.text"
-msgid "' Displays all files and directories"
+msgid "5 : Display Retry and Cancel buttons."
msgstr ""
-#: 03020404.xhp
-msgctxt ""
-"03020404.xhp\n"
-"par_id3153416\n"
-"27\n"
-"help.text"
-msgid "sDir=\"Directories:\""
-msgstr "Duke inicializuar ODBC direktoriumet"
-
-#: 03020404.xhp
-#, fuzzy
-msgctxt ""
-"03020404.xhp\n"
-"par_id3154253\n"
-"34\n"
-"help.text"
-msgid "' Get the directories"
-msgstr "Duke inicializuar ODBC direktoriumet"
-
-#: 03070500.xhp
-msgctxt ""
-"03070500.xhp\n"
-"tit\n"
-"help.text"
-msgid "\"^\" Operator [Runtime]"
-msgstr "Gabim nw kohw: #"
-
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"bm_id3145315\n"
+"03010101.xhp\n"
+"par_id3159155\n"
+"15\n"
"help.text"
-msgid "<bookmark_value>\"^\" operator (mathematical)</bookmark_value>"
+msgid "16 : Add the Stop icon to the dialog."
msgstr ""
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"hd_id3145315\n"
-"1\n"
+"03010101.xhp\n"
+"par_id3145366\n"
+"16\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070500.xhp\">\"^\" Operator [Runtime]</link>"
+msgid "32 : Add the Question icon to the dialog."
msgstr ""
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"par_id3149670\n"
-"2\n"
+"03010101.xhp\n"
+"par_id3147350\n"
+"17\n"
"help.text"
-msgid "Raises a number to a power."
-msgstr "Ngrit një numër në fuqi të një tjetri."
+msgid "48 : Add the Exclamation icon to the dialog."
+msgstr ""
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"hd_id3147264\n"
-"3\n"
+"03010101.xhp\n"
+"par_id3149960\n"
+"18\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "64 : Add the Information icon to the dialog."
+msgstr ""
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"par_id3149656\n"
-"4\n"
+"03010101.xhp\n"
+"par_id3154944\n"
+"19\n"
"help.text"
-msgid "Result = Expression ^ Exponent"
-msgstr "**Fraza është e gabueshme**"
+msgid "128 : First button in the dialog as default button."
+msgstr ""
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"hd_id3151211\n"
-"5\n"
+"03010101.xhp\n"
+"par_id3155417\n"
+"20\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "256 : Second button in the dialog as default button."
+msgstr ""
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"par_id3153192\n"
-"6\n"
+"03010101.xhp\n"
+"par_id3153878\n"
+"21\n"
"help.text"
-msgid "<emph>Result:</emph> Any numerical expression that contains the result of the number raised to a power."
+msgid "512 : Third button in the dialog as default button."
msgstr ""
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"par_id3150448\n"
-"7\n"
+"03010101.xhp\n"
+"hd_id3150715\n"
+"22\n"
"help.text"
-msgid "<emph>Expression:</emph> Numerical value that you want to raise to a power."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"par_id3156422\n"
-"8\n"
+"03010101.xhp\n"
+"par_id3150327\n"
+"24\n"
"help.text"
-msgid "<emph>Exponent:</emph> The value of the power that you want to raise the expression to."
-msgstr ""
+msgid "Const sText1 = \"An unexpected error occurred.\""
+msgstr "Ndodhi një gabim i papritur gjatë çmontimit të ndarjeve."
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"hd_id3147287\n"
-"9\n"
+"03010101.xhp\n"
+"par_id3146912\n"
+"25\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Const sText2 = \"The program execution will continue, however.\""
+msgstr ""
-#: 03070500.xhp
+#: 03010101.xhp
msgctxt ""
-"03070500.xhp\n"
-"par_id3146984\n"
-"12\n"
+"03010101.xhp\n"
+"par_id3154757\n"
+"26\n"
"help.text"
-msgid "Print Exp ( 23 * Log( 12.345 ) ) ' Raises by forming a logarithm"
-msgstr ""
+msgid "Const sText3 = \"Error\""
+msgstr "Ka ndodhur një gabim i panjohur"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
+"03010102.xhp\n"
"tit\n"
"help.text"
-msgid "Sgn Function [Runtime]"
+msgid "MsgBox Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"bm_id3148474\n"
+"03010102.xhp\n"
+"bm_id3153379\n"
"help.text"
-msgid "<bookmark_value>Sgn function</bookmark_value>"
+msgid "<bookmark_value>MsgBox function</bookmark_value>"
msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"hd_id3148474\n"
+"03010102.xhp\n"
+"hd_id3153379\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Sgn Function [Runtime]\">Sgn Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"MsgBox Function [Runtime]\">MsgBox Function [Runtime]</link>"
msgstr ""
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3148686\n"
+"03010102.xhp\n"
+"par_id3145171\n"
"2\n"
"help.text"
-msgid "Returns an integer number between -1 and 1 that indicates if the number that is passed to the function is positive, negative, or zero."
+msgid "Displays a dialog box containing a message and returns a value."
msgstr ""
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"hd_id3156023\n"
+"03010102.xhp\n"
+"hd_id3156281\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3153897\n"
+"03010102.xhp\n"
+"par_id3154685\n"
"4\n"
"help.text"
-msgid "Sgn (Number)"
-msgstr "Numri i faqes"
+msgid "MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]])"
+msgstr ""
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"hd_id3145069\n"
+"03010102.xhp\n"
+"hd_id3153771\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3150359\n"
+"03010102.xhp\n"
+"par_id3146985\n"
"6\n"
"help.text"
msgid "Integer"
msgstr "Numër i plotë"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"hd_id3150543\n"
+"03010102.xhp\n"
+"hd_id3153363\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Parameter:"
+msgstr "Parametri i sllajdit"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3154365\n"
+"03010102.xhp\n"
+"par_id3153727\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that determines the value that is returned by the function."
+msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
msgstr ""
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3150767\n"
+"03010102.xhp\n"
+"par_id3147317\n"
"9\n"
"help.text"
-msgid "NumExpression"
+msgid "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialog. If omitted, the name of the respective application is displayed."
msgstr ""
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3150441\n"
+"03010102.xhp\n"
+"par_id3153954\n"
"10\n"
"help.text"
-msgid "Return value"
-msgstr "Vlerë absolute"
+msgid "<emph>Type</emph>: Any integer expression that specifies the dialog type and defines the number and type of buttons or icons displayed. <emph>Type</emph> represents a combination of bit patterns (dialog elements defined by adding the respective values):"
+msgstr ""
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3161833\n"
+"03010102.xhp\n"
+"par_id3154319\n"
"11\n"
"help.text"
-msgid "negative"
-msgstr "Devijim negativ"
+msgid "<emph>Values</emph>"
+msgstr "Vlerat e dalluara"
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3155306\n"
+"03010102.xhp\n"
+"par_id3147397\n"
"12\n"
"help.text"
-msgid "Sgn returns -1."
-msgstr "Kthen t-shprëndarjen."
+msgid "0 : Display OK button only."
+msgstr ""
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3145271\n"
+"03010102.xhp\n"
+"par_id3145646\n"
"13\n"
"help.text"
-msgid "0"
-msgstr "Titullimi 10"
+msgid "1 : Display OK and Cancel buttons."
+msgstr ""
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3146119\n"
+"03010102.xhp\n"
+"par_id3149410\n"
"14\n"
"help.text"
-msgid "Sgn returns 0."
-msgstr "Kthen t-shprëndarjen."
+msgid "2 : Display Abort, Retry, and Ignore buttons."
+msgstr ""
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3153139\n"
+"03010102.xhp\n"
+"par_id3151075\n"
"15\n"
"help.text"
-msgid "positive"
-msgstr "Devijim pozitiv"
+msgid "3 : Display Yes, No, and Cancel buttons."
+msgstr ""
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3154319\n"
+"03010102.xhp\n"
+"par_id3153878\n"
"16\n"
"help.text"
-msgid "Sgn returns 1."
-msgstr "Kthen t-shprëndarjen."
+msgid "4 : Display Yes and No buttons."
+msgstr ""
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"hd_id3152576\n"
+"03010102.xhp\n"
+"par_id3155601\n"
"17\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03080701.xhp
-msgctxt ""
-"03080701.xhp\n"
-"par_id3155416\n"
-"19\n"
-"help.text"
-msgid "Print sgn(-10) ' returns -1"
+msgid "5 : Display Retry and Cancel buttons."
msgstr ""
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3154096\n"
-"20\n"
+"03010102.xhp\n"
+"par_id3150716\n"
+"18\n"
"help.text"
-msgid "Print sgn(0) ' returns 0"
+msgid "16 : Add the Stop icon to the dialog."
msgstr ""
-#: 03080701.xhp
+#: 03010102.xhp
msgctxt ""
-"03080701.xhp\n"
-"par_id3148457\n"
-"21\n"
+"03010102.xhp\n"
+"par_id3153837\n"
+"19\n"
"help.text"
-msgid "Print sgn(10) ' returns 1"
+msgid "32 : Add the Question icon to the dialog."
msgstr ""
-#: 03090400.xhp
-msgctxt ""
-"03090400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Further Statements"
-msgstr "Informata të mëtejshme"
-
-#: 03090400.xhp
+#: 03010102.xhp
msgctxt ""
-"03090400.xhp\n"
-"hd_id3145316\n"
-"1\n"
+"03010102.xhp\n"
+"par_id3150751\n"
+"20\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Further Statements</link>"
+msgid "48 : Add the Exclamation Point icon to the dialog."
msgstr ""
-#: 03090400.xhp
+#: 03010102.xhp
msgctxt ""
-"03090400.xhp\n"
-"par_id3154923\n"
-"2\n"
+"03010102.xhp\n"
+"par_id3146915\n"
+"21\n"
"help.text"
-msgid "Statements that do not belong to any of the other runtime categories are described here."
+msgid "64 : Add the Information icon to the dialog."
msgstr ""
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"tit\n"
+"03010102.xhp\n"
+"par_id3145640\n"
+"22\n"
"help.text"
-msgid "LBound Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "128 : First button in the dialog as default button."
+msgstr ""
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"bm_id3156027\n"
+"03010102.xhp\n"
+"par_id3153765\n"
+"23\n"
"help.text"
-msgid "<bookmark_value>LBound function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "256 : Second button in the dialog as default button."
+msgstr ""
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"hd_id3156027\n"
-"1\n"
+"03010102.xhp\n"
+"par_id3153715\n"
+"24\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"LBound Function [Runtime]\">LBound Function [Runtime]</link>"
+msgid "512 : Third button in the dialog as default button."
msgstr ""
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3147226\n"
-"2\n"
+"03010102.xhp\n"
+"par_id3159267\n"
+"25\n"
"help.text"
-msgid "Returns the lower boundary of an array."
-msgstr "Shumëzimi i grupeve. Kthen prodhimin e dy grupeve."
+msgid "<emph>Return value:</emph>"
+msgstr "Veprimi përfundoi [Time]: [1]. Vlera kthyese [2]."
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"hd_id3148538\n"
-"3\n"
+"03010102.xhp\n"
+"par_id3145230\n"
+"26\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "1 : OK"
+msgstr "OK"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3150503\n"
-"4\n"
+"03010102.xhp\n"
+"par_id3149567\n"
+"27\n"
"help.text"
-msgid "LBound (ArrayName [, Dimension])"
-msgstr "Hapësira e vijës së dimensionit"
+msgid "2 : Cancel"
+msgstr "Anulo"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"hd_id3150984\n"
-"5\n"
+"03010102.xhp\n"
+"par_id4056825\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "3 : Abort"
+msgstr "Ndërprerje"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3153126\n"
-"6\n"
+"03010102.xhp\n"
+"par_id3155335\n"
+"28\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "4 : Retry"
+msgstr "&Riprovo"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"hd_id3144500\n"
-"7\n"
+"03010102.xhp\n"
+"par_id3146918\n"
+"29\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "5 : Ignore"
+msgstr "Injoro"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3145069\n"
-"8\n"
+"03010102.xhp\n"
+"par_id3155961\n"
+"30\n"
"help.text"
-msgid "<emph>ArrayName:</emph> Name of the array for which you want to return the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary of the array dimension."
-msgstr ""
+msgid "6 : Yes"
+msgstr "Po"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3149457\n"
-"9\n"
+"03010102.xhp\n"
+"par_id3148488\n"
+"31\n"
"help.text"
-msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary for. If a value is not specified, the first dimension is assumed."
-msgstr ""
+msgid "7 : No"
+msgstr "No"
-#: 03102900.xhp
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"hd_id3145171\n"
-"10\n"
+"03010102.xhp\n"
+"hd_id3150090\n"
+"40\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03102900.xhp
-#, fuzzy
-msgctxt ""
-"03102900.xhp\n"
-"par_id3145365\n"
-"18\n"
-"help.text"
-msgid "Print LBound(sVar()) ' Returns 10"
-msgstr "Shtyp dookumentet me bashkangjitje të të dhënave"
-
-#: 03102900.xhp
-#, fuzzy
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3150486\n"
-"19\n"
+"03010102.xhp\n"
+"par_id3151278\n"
+"43\n"
"help.text"
-msgid "Print UBound(sVar()) ' Returns 20"
-msgstr "Shtyp dookumentet me bashkangjitje të të dhënave"
+msgid "sVar = MsgBox(\"Las Vegas\")"
+msgstr ""
-#: 03102900.xhp
-#, fuzzy
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3149665\n"
-"20\n"
+"03010102.xhp\n"
+"par_id3149034\n"
+"44\n"
"help.text"
-msgid "Print LBound(sVar(),2) ' Returns 5"
-msgstr "Shtyp dookumentet me bashkangjitje të të dhënave"
+msgid "sVar = MsgBox(\"Las Vegas\",1)"
+msgstr ""
-#: 03102900.xhp
-#, fuzzy
+#: 03010102.xhp
msgctxt ""
-"03102900.xhp\n"
-"par_id3159154\n"
-"21\n"
+"03010102.xhp\n"
+"par_id3166424\n"
+"45\n"
"help.text"
-msgid "Print UBound(sVar(),2) ' Returns 70"
-msgstr "Shtyp dookumentet me bashkangjitje të të dhënave"
+msgid "sVar = MsgBox( \"Las Vegas\",256 + 16 + 2,\"Dialog title\")"
+msgstr ""
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
+"03010103.xhp\n"
"tit\n"
"help.text"
-msgid "UBound Function [Runtime]"
+msgid "Print Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"bm_id3148538\n"
+"03010103.xhp\n"
+"bm_id3147230\n"
"help.text"
-msgid "<bookmark_value>UBound function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>Print statement</bookmark_value>"
+msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"hd_id3148538\n"
+"03010103.xhp\n"
+"hd_id3147230\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"UBound Function [Runtime]\">UBound Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Print Statement [Runtime]\">Print Statement [Runtime]</link>"
msgstr ""
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3147573\n"
+"03010103.xhp\n"
+"par_id3156281\n"
"2\n"
"help.text"
-msgid "Returns the upper boundary of an array."
-msgstr "Shumëzimi i grupeve. Kthen prodhimin e dy grupeve."
+msgid "Outputs the specified strings or numeric expressions to a dialog or to a file."
+msgstr ""
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"hd_id3150984\n"
+"03010103.xhp\n"
+"hd_id3145785\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3149415\n"
+"03010103.xhp\n"
+"par_id3153188\n"
"4\n"
"help.text"
-msgid "UBound (ArrayName [, Dimension])"
-msgstr "Hapësira e vijës së dimensionit"
+msgid "Print [#FileName,] Expression1[{;|,} [Spc(Number As Integer);] [Tab(pos As Integer);] [Expression2[...]]"
+msgstr ""
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"hd_id3153897\n"
+"03010103.xhp\n"
+"hd_id3147348\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameter:"
+msgstr "Parametri i sllajdit"
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3149670\n"
+"03010103.xhp\n"
+"par_id2508621\n"
+"help.text"
+msgid "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
+msgstr ""
+
+#: 03010103.xhp
+msgctxt ""
+"03010103.xhp\n"
+"par_id3163712\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "<emph>Expression</emph>: Any numeric or string expression to be printed. Multiple expressions can be separated by a semicolon. If separated by a comma, the expressions are indented to the next tab stop. The tab stops cannot be adjusted."
+msgstr ""
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"hd_id3154347\n"
+"03010103.xhp\n"
+"par_id3153092\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "<emph>Number</emph>: Number of spaces to be inserted by the <emph>Spc</emph> function."
+msgstr ""
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3153381\n"
+"03010103.xhp\n"
+"par_id3145364\n"
"8\n"
"help.text"
-msgid "<emph>ArrayName:</emph> Name of the array for which you want to determine the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary."
+msgid "<emph>Pos</emph>: Spaces are inserted until the specified position."
msgstr ""
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3148797\n"
+"03010103.xhp\n"
+"par_id3154319\n"
"9\n"
"help.text"
-msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper(<emph>Ubound</emph>) or lower (<emph>LBound</emph>) boundary for. If no value is specified, the boundary of the first dimension is returned."
+msgid "If a semicolon or comma appears after the last expression to be printed, $[officename] Basic stores the text in an internal buffer and continues program execution without printing. When another Print statement without a semicolon or comma at the end is encountered, all text to be printed is printed at once."
msgstr ""
-#: 03103000.xhp
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"hd_id3153192\n"
+"03010103.xhp\n"
+"par_id3145272\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03103000.xhp
-#, fuzzy
-msgctxt ""
-"03103000.xhp\n"
-"par_id3152596\n"
-"18\n"
-"help.text"
-msgid "Print LBound(sVar()) ' Returns 10"
-msgstr "Shtyp dookumentet me bashkangjitje të të dhënave"
+msgid "Positive numeric expressions are printed with a leading space. Negative expressions are printed with a leading minus sign. If a certain range is exceeded for floating-point values, the respective numeric expression is printed in exponential notation."
+msgstr ""
-#: 03103000.xhp
-#, fuzzy
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3153138\n"
-"19\n"
+"03010103.xhp\n"
+"par_id3154011\n"
+"11\n"
"help.text"
-msgid "Print UBound(sVar()) ' Returns 20"
-msgstr "Shtyp dookumentet me bashkangjitje të të dhënave"
+msgid "If the expression to be printed exceeds a certain length, the display will automatically wrap to the next line."
+msgstr ""
-#: 03103000.xhp
-#, fuzzy
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3149665\n"
-"20\n"
+"03010103.xhp\n"
+"par_id3146969\n"
+"12\n"
"help.text"
-msgid "Print LBound(sVar(),2) ' Returns 5"
-msgstr "Shtyp dookumentet me bashkangjitje të të dhënave"
+msgid "You can insert the Tab function, enclosed by semicolons, between arguments to indent the output to a specific position, or you can use the <emph>Spc</emph> function to insert a specified number of spaces."
+msgstr ""
-#: 03103000.xhp
-#, fuzzy
+#: 03010103.xhp
msgctxt ""
-"03103000.xhp\n"
-"par_id3147214\n"
-"21\n"
+"03010103.xhp\n"
+"hd_id3146912\n"
+"13\n"
"help.text"
-msgid "Print UBound(sVar(),2) ' Returns 70"
-msgstr "Shtyp dookumentet me bashkangjitje të të dhënave"
+msgid "Example:"
+msgstr "Shembull"
-#: 03103400.xhp
+#: 03010200.xhp
msgctxt ""
-"03103400.xhp\n"
+"03010200.xhp\n"
"tit\n"
"help.text"
-msgid "Public Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03103400.xhp
-msgctxt ""
-"03103400.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>Public statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+msgid "Functions for Screen Input"
+msgstr ""
-#: 03103400.xhp
+#: 03010200.xhp
msgctxt ""
-"03103400.xhp\n"
-"hd_id3153311\n"
+"03010200.xhp\n"
+"hd_id3149456\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Public Statement [Runtime]\">Public Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Functions for Screen Input\">Functions for Screen Input</link>"
msgstr ""
-#: 03103400.xhp
+#: 03010200.xhp
msgctxt ""
-"03103400.xhp\n"
-"par_id3150669\n"
+"03010200.xhp\n"
+"par_id3150398\n"
"2\n"
"help.text"
-msgid "Dimensions a variable or an array at the module level (that is, not within a subroutine or function), so that the variable and the array are valid in all libraries and modules."
-msgstr ""
-
-#: 03103400.xhp
-msgctxt ""
-"03103400.xhp\n"
-"hd_id3150772\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03103400.xhp
-msgctxt ""
-"03103400.xhp\n"
-"par_id3155341\n"
-"4\n"
-"help.text"
-msgid "Public VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+msgid "This section describes Runtime functions used to control screen input."
msgstr ""
-#: 03103400.xhp
-msgctxt ""
-"03103400.xhp\n"
-"hd_id3145315\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
+"03010201.xhp\n"
"tit\n"
"help.text"
-msgid "CreateUnoValue Function [Runtime]"
+msgid "InputBox Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"bm_id3150682\n"
+"03010201.xhp\n"
+"bm_id3148932\n"
"help.text"
-msgid "<bookmark_value>CreateUnoValue function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>InputBox function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"hd_id3150682\n"
+"03010201.xhp\n"
+"hd_id3148932\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function [Runtime]\">CreateUnoValue Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"InputBox Function [Runtime]\">InputBox Function [Runtime]</link>"
msgstr ""
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3147291\n"
+"03010201.xhp\n"
+"par_id3151262\n"
"2\n"
"help.text"
-msgid "Returns an object that represents a strictly typed value referring to the Uno type system."
+msgid "Displays a prompt in a dialog at which the user can input text. The input is assigned to a variable."
msgstr ""
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3143267\n"
+"03010201.xhp\n"
+"par_id3151100\n"
"3\n"
"help.text"
-msgid "This object is automatically converted to an Any of the corresponding type when passed to Uno. The type must be specified by its fully qualified Uno type name."
+msgid "The <emph>InputBox</emph> statement is a convenient method of entering text through a dialog. Confirm the input by clicking OK or pressing Return. The input is returned as the function return value. If you close the dialog with Cancel, <emph>InputBox</emph> returns a zero-length string (\"\")."
msgstr ""
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3153626\n"
+"03010201.xhp\n"
+"hd_id3152347\n"
"4\n"
"help.text"
-msgid "The $[officename] API frequently uses the Any type. It is the counterpart of the Variant type known from other environments. The Any type holds one arbitrary Uno type and is used in generic Uno interfaces."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"hd_id3147560\n"
+"03010201.xhp\n"
+"par_id3159201\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "InputBox (Msg As String[, Title As String[, Default As String[, x_pos As Integer, y_pos As Integer]]]])"
+msgstr ""
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3154760\n"
+"03010201.xhp\n"
+"hd_id3150713\n"
"6\n"
"help.text"
-msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) to get a byte sequence."
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3150541\n"
+"03010201.xhp\n"
+"par_id3145090\n"
"7\n"
"help.text"
-msgid "If CreateUnoValue cannot be converted to the specified Uno type, and error occurs. For the conversion, the TypeConverter service is used."
-msgstr ""
+msgid "String"
+msgstr "Varg"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3153524\n"
+"03010201.xhp\n"
+"hd_id3149346\n"
"8\n"
"help.text"
-msgid "This function is intended for use in situations where the default Basic to Uno type converting mechanism is insufficient. This can happen when you try to access generic Any based interfaces, such as XPropertySet::setPropertyValue( Name, Value ) or X???Container::insertBy???( ???, Value ), from $[officename] Basic. The Basic runtime does not recognize these types as they are only defined in the corresponding service."
-msgstr ""
+msgid "Parameter:"
+msgstr "Parametri i sllajdit"
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3154366\n"
+"03010201.xhp\n"
+"par_id3153311\n"
"9\n"
"help.text"
-msgid "In this type of situation, $[officename] Basic chooses the best matching type for the Basic type that you want to convert. However, if the wrong type is selected, an error occurs. You use the CreateUnoValue() function to create a value for the unknown Uno type."
+msgid "<emph>Msg</emph>: String expression displayed as the message in the dialog box."
msgstr ""
-#: 03132300.xhp
+#: 03010201.xhp
msgctxt ""
-"03132300.xhp\n"
-"par_id3150769\n"
+"03010201.xhp\n"
+"par_id3145315\n"
"10\n"
"help.text"
-msgid "You can also use this function to pass non-Any values, but this is not recommend. If Basic already knows the target type, using the CreateUnoValue() function will only lead to additional converting operations that slow down the Basic execution."
+msgid "<emph>Title</emph>: String expression displayed in the title bar of the dialog box."
msgstr ""
-#: 03120303.xhp
-msgctxt ""
-"03120303.xhp\n"
-"tit\n"
-"help.text"
-msgid "Left Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03120303.xhp
-msgctxt ""
-"03120303.xhp\n"
-"bm_id3149346\n"
-"help.text"
-msgid "<bookmark_value>Left function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"hd_id3149346\n"
-"1\n"
+"03010201.xhp\n"
+"par_id3154307\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function [Runtime]\">Left Function [Runtime]</link>"
+msgid "<emph>Default</emph>: String expression displayed in the text box as default if no other input is given."
msgstr ""
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3147242\n"
-"2\n"
+"03010201.xhp\n"
+"par_id3147573\n"
+"12\n"
"help.text"
-msgid "Returns the number of leftmost characters that you specify of a string expression."
+msgid "<emph>x_pos</emph>: Integer expression that specifies the horizontal position of the dialog. The position is an absolute coordinate and does not refer to the window of the office application."
msgstr ""
-#: 03120303.xhp
-msgctxt ""
-"03120303.xhp\n"
-"hd_id3156153\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3150771\n"
-"4\n"
+"03010201.xhp\n"
+"par_id3156024\n"
+"13\n"
"help.text"
-msgid "Left (Text As String, n As Long)"
+msgid "<emph>y_pos</emph>: Integer expression that specifies the vertical position of the dialog. The position is an absolute coordinate and does not refer to the window of the office application."
msgstr ""
-#: 03120303.xhp
-msgctxt ""
-"03120303.xhp\n"
-"hd_id3153824\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
-
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3147530\n"
-"6\n"
+"03010201.xhp\n"
+"par_id3153897\n"
+"14\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "If <emph>x_pos</emph> and <emph>y_pos</emph> are omitted, the dialog is centered on the screen. The position is specified in <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">twips</link>."
+msgstr ""
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"hd_id3148946\n"
-"7\n"
+"03010201.xhp\n"
+"hd_id3149456\n"
+"15\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Example:"
+msgstr "Shembull"
-#: 03120303.xhp
-#, fuzzy
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3148552\n"
-"8\n"
+"03010201.xhp\n"
+"par_id3154367\n"
+"18\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to return the leftmost characters from."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "sText = InputBox (\"Please enter a phrase:\",\"Dear User\")"
+msgstr ""
-#: 03120303.xhp
+#: 03010201.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3149456\n"
-"9\n"
+"03010201.xhp\n"
+"par_id3151042\n"
+"19\n"
"help.text"
-msgid "<emph>n:</emph> Numeric expression that specifies the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
+msgid "MsgBox ( sText , 64, \"Confirmation of phrase\")"
msgstr ""
-#: 03120303.xhp
+#: 03010300.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3150791\n"
-"10\n"
+"03010300.xhp\n"
+"tit\n"
"help.text"
-msgid "The following example converts a date in YYYY.MM.DD format to MM/DD/YYYY format."
-msgstr ""
+msgid "Color Functions"
+msgstr "Funksionet statistikore"
-#: 03120303.xhp
+#: 03010300.xhp
msgctxt ""
-"03120303.xhp\n"
-"hd_id3125863\n"
-"11\n"
+"03010300.xhp\n"
+"hd_id3157896\n"
+"1\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Color Functions\">Color Functions</link>"
+msgstr ""
-#: 03120303.xhp
+#: 03010300.xhp
msgctxt ""
-"03120303.xhp\n"
-"par_id3150448\n"
-"15\n"
+"03010300.xhp\n"
+"par_id3155555\n"
+"2\n"
"help.text"
-msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgid "This section describes Runtime functions used to define colors."
msgstr ""
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
+"03010301.xhp\n"
"tit\n"
"help.text"
-msgid "Name Statement [Runtime]"
+msgid "Blue Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"bm_id3143268\n"
+"03010301.xhp\n"
+"bm_id3149180\n"
"help.text"
-msgid "<bookmark_value>Name statement</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>Blue function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"hd_id3143268\n"
+"03010301.xhp\n"
+"hd_id3149180\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Name Statement [Runtime]\">Name Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03010301.xhp\" name=\"Blue Function [Runtime]\">Blue Function [Runtime]</link>"
msgstr ""
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"par_id3154346\n"
+"03010301.xhp\n"
+"par_id3156343\n"
"2\n"
"help.text"
-msgid "Renames an existing file or directory."
+msgid "Returns the blue component of the specified color code."
msgstr ""
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"hd_id3156344\n"
+"03010301.xhp\n"
+"hd_id3149670\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"par_id3153381\n"
+"03010301.xhp\n"
+"par_id3149457\n"
"4\n"
"help.text"
-msgid "Name OldName As String As NewName As String"
+msgid "Blue (Color As Long)"
msgstr ""
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"hd_id3153362\n"
+"03010301.xhp\n"
+"hd_id3149656\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"par_id3151210\n"
+"03010301.xhp\n"
+"par_id3154365\n"
"6\n"
"help.text"
-msgid "<emph>OldName, NewName:</emph> Any string expression that specifies the file name, including the path. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr ""
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 03020412.xhp
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"hd_id3125863\n"
+"03010301.xhp\n"
+"hd_id3156423\n"
+"7\n"
+"help.text"
+msgid "Parameter:"
+msgstr "Parametri i sllajdit"
+
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id3150448\n"
"8\n"
"help.text"
+msgid "<emph>Color value</emph>: Long integer expression that specifies any <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the blue component."
+msgstr ""
+
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"hd_id3153091\n"
+"9\n"
+"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03020412.xhp
-#, fuzzy
+#: 03010301.xhp
msgctxt ""
-"03020412.xhp\n"
-"par_id3152462\n"
+"03010301.xhp\n"
+"par_id3154012\n"
+"13\n"
+"help.text"
+msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr ""
+
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id3148645\n"
+"14\n"
+"help.text"
+msgid "\"red= \" & Red(lVar) & Chr(13)&_"
+msgstr ""
+
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id3159155\n"
+"15\n"
+"help.text"
+msgid "\"green= \" & Green(lVar) & Chr(13)&_"
+msgstr ""
+
+#: 03010301.xhp
+msgctxt ""
+"03010301.xhp\n"
+"par_id3147319\n"
"16\n"
"help.text"
-msgid "MsgBox \"File already exists\""
-msgstr "Fajli tanimë ekziston. Të mbishkruhet?"
+msgid "\"blue= \" & Blue(lVar) & Chr(13) , 64,\"colors\""
+msgstr ""
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
+"03010302.xhp\n"
"tit\n"
"help.text"
-msgid "EqualUnoObjects Function [Runtime]"
+msgid "Green Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"bm_id3149205\n"
+"03010302.xhp\n"
+"bm_id3148947\n"
"help.text"
-msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
-msgstr "E kthen funksionin gabim plotwsues"
+msgid "<bookmark_value>Green function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"hd_id3149205\n"
+"03010302.xhp\n"
+"hd_id3148947\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function [Runtime]\">EqualUnoObjects Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Green Function [Runtime]\">Green Function [Runtime]</link>"
msgstr ""
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3145090\n"
+"03010302.xhp\n"
+"par_id3153361\n"
"2\n"
"help.text"
-msgid "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
+msgid "Returns the Green component of the given color code."
msgstr ""
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"hd_id3148538\n"
+"03010302.xhp\n"
+"hd_id3154140\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3150669\n"
+"03010302.xhp\n"
+"par_id3153969\n"
"4\n"
"help.text"
-msgid "EqualUnoObjects( oObj1, oObj2 )"
+msgid "Green (Color As Long)"
msgstr ""
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"hd_id3150984\n"
+"03010302.xhp\n"
+"hd_id3154124\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3154285\n"
+"03010302.xhp\n"
+"par_id3153194\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "JO logjike"
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"hd_id3145315\n"
+"03010302.xhp\n"
+"hd_id3154909\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Parameter:"
+msgstr "Parametri i sllajdit"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3156024\n"
+"03010302.xhp\n"
+"par_id3153770\n"
"8\n"
"help.text"
-msgid "// Copy of objects -> same instance"
+msgid "<emph>Color</emph>: Long integer expression that specifies a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the Green component."
msgstr ""
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3154923\n"
+"03010302.xhp\n"
+"hd_id3149664\n"
"9\n"
"help.text"
-msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
-msgstr ""
-
-#: 03104600.xhp
-msgctxt ""
-"03104600.xhp\n"
-"par_id3147559\n"
-"10\n"
-"help.text"
-msgid "oIntro2 = oIntrospection"
-msgstr ""
-
-#: 03104600.xhp
-msgctxt ""
-"03104600.xhp\n"
-"par_id3150541\n"
-"11\n"
-"help.text"
-msgid "print EqualUnoObjects( oIntrospection, oIntro2 )"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3153525\n"
-"12\n"
+"03010302.xhp\n"
+"par_id3151117\n"
+"13\n"
"help.text"
-msgid "// Copy of structs as value -> new instance"
+msgid "MsgBox \"The color \" & lVar & \" contains the components:\" & Chr(13) &_"
msgstr ""
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3154366\n"
-"13\n"
+"03010302.xhp\n"
+"par_id3153951\n"
+"14\n"
"help.text"
-msgid "Dim Struct1 as new com.sun.star.beans.Property"
+msgid "\"red = \" & red(lVar) & Chr(13)&_"
msgstr ""
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3154348\n"
-"14\n"
+"03010302.xhp\n"
+"par_id3152462\n"
+"15\n"
"help.text"
-msgid "Struct2 = Struct1"
+msgid "\"green = \" & green(lVar) & Chr(13)&_"
msgstr ""
-#: 03104600.xhp
+#: 03010302.xhp
msgctxt ""
-"03104600.xhp\n"
-"par_id3154125\n"
-"15\n"
+"03010302.xhp\n"
+"par_id3154730\n"
+"16\n"
"help.text"
-msgid "print EqualUnoObjects( Struct1, Struct2 )"
+msgid "\"blue = \" & blue(lVar) & Chr(13) , 64,\"colors\""
msgstr ""
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
+"03010303.xhp\n"
"tit\n"
"help.text"
-msgid "FileAttr-Function [Runtime]"
+msgid "Red Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"bm_id3153380\n"
+"03010303.xhp\n"
+"bm_id3148947\n"
"help.text"
-msgid "<bookmark_value>FileAttr function</bookmark_value>"
+msgid "<bookmark_value>Red function</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"hd_id3153380\n"
+"03010303.xhp\n"
+"hd_id3148947\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr-Function [Runtime]\">FileAttr Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Red Function [Runtime]\">Red Function [Runtime]</link>"
msgstr ""
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3154366\n"
+"03010303.xhp\n"
+"par_id3149656\n"
"2\n"
"help.text"
-msgid "Returns the access mode or the file access number of a file that was opened with the Open statement. The file access number is dependent on the operating system (OSH = Operating System Handle)."
+msgid "Returns the Red component of the specified color code."
msgstr ""
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3153364\n"
+"03010303.xhp\n"
+"hd_id3148799\n"
"3\n"
"help.text"
-msgid "If you use a 32-Bit operating system, you cannot use the FileAttr-Function to determine the file access number."
-msgstr ""
-
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"par_id3163713\n"
-"4\n"
-"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
-msgstr ""
-
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3151116\n"
-"5\n"
-"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3154012\n"
-"6\n"
+"03010303.xhp\n"
+"par_id3150448\n"
+"4\n"
"help.text"
-msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
+msgid "Red (ColorNumber As Long)"
msgstr ""
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"hd_id3147349\n"
-"7\n"
+"03010303.xhp\n"
+"hd_id3151042\n"
+"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3146974\n"
-"8\n"
+"03010303.xhp\n"
+"par_id3145173\n"
+"6\n"
"help.text"
msgid "Integer"
msgstr "Numër i plotë"
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"hd_id3153728\n"
-"9\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3151074\n"
-"10\n"
+"03010303.xhp\n"
+"hd_id3154685\n"
+"7\n"
"help.text"
-msgid "<emph>FileNumber:</emph> The number of the file that was opened with the Open statement."
-msgstr ""
+msgid "Parameter:"
+msgstr "Parametri i sllajdit"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3144766\n"
-"11\n"
+"03010303.xhp\n"
+"par_id3150440\n"
+"8\n"
"help.text"
-msgid "<emph>Attribute:</emph> Integer expression that indicates the type of file information that you want to return. The following values are possible:"
+msgid "<emph>ColorNumber</emph>: Long integer expression that specifies any <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the Red component."
msgstr ""
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3147396\n"
-"12\n"
+"03010303.xhp\n"
+"hd_id3148575\n"
+"9\n"
"help.text"
-msgid "1: The FileAttr-Function indicates the access mode of the file."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3149959\n"
+"03010303.xhp\n"
+"par_id3147435\n"
"13\n"
"help.text"
-msgid "2: The FileAttr-Function returns the file access number of the operating system."
+msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
msgstr ""
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3154018\n"
+"03010303.xhp\n"
+"par_id3155306\n"
"14\n"
"help.text"
-msgid "If you specify a parameter attribute with a value of 1, the following return values apply:"
+msgid "\"red= \" & red(lVar) & Chr(13)&_"
msgstr ""
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3149124\n"
+"03010303.xhp\n"
+"par_id3149262\n"
"15\n"
"help.text"
-msgid "1 - INPUT (file open for input)"
-msgstr "Protokolli për shkarkimin e file-ve:"
+msgid "\"green= \" & green(lVar) & Chr(13)&_"
+msgstr ""
-#: 03020405.xhp
+#: 03010303.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3156275\n"
+"03010303.xhp\n"
+"par_id3147397\n"
"16\n"
"help.text"
-msgid "2 - OUTPUT (file open for output)"
-msgstr "Protokolli për shkarkimin e file-ve:"
-
-#: 03020405.xhp
-msgctxt ""
-"03020405.xhp\n"
-"par_id3155066\n"
-"17\n"
-"help.text"
-msgid "4 - RANDOM (file open for random access)"
+msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
msgstr ""
-#: 03020405.xhp
+#: 03010304.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3148406\n"
-"18\n"
+"03010304.xhp\n"
+"tit\n"
"help.text"
-msgid "8 - APPEND (file open for appending)"
-msgstr ""
+msgid "QBColor Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020405.xhp
+#: 03010304.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3154757\n"
-"19\n"
+"03010304.xhp\n"
+"hd_id3149670\n"
+"1\n"
"help.text"
-msgid "32 - BINARY (file open in binary mode)."
+msgid "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"QBColor Function [Runtime]\">QBColor Function [Runtime]</link>"
msgstr ""
-#: 03020405.xhp
+#: 03010304.xhp
msgctxt ""
-"03020405.xhp\n"
-"hd_id3147339\n"
-"20\n"
+"03010304.xhp\n"
+"par_id3150359\n"
+"2\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Returns the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> color code of the color passed as a color value through an older MS-DOS based programming system."
+msgstr ""
-#: 03020405.xhp
+#: 03010304.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3155607\n"
-"29\n"
+"03010304.xhp\n"
+"hd_id3154140\n"
+"3\n"
"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr "Nga kreu në fund"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03020405.xhp
+#: 03010304.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3150361\n"
-"30\n"
+"03010304.xhp\n"
+"par_id3151042\n"
+"4\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
-msgstr ""
+msgid "QBColor (ColorNumber As Integer)"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03020405.xhp
+#: 03010304.xhp
msgctxt ""
-"03020405.xhp\n"
-"par_id3149817\n"
-"31\n"
+"03010304.xhp\n"
+"hd_id3145172\n"
+"5\n"
"help.text"
-msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"tit\n"
+"03010304.xhp\n"
+"par_id3154685\n"
+"6\n"
"help.text"
-msgid "Randomize Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "Long"
+msgstr "Standard (e gjatë)"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"bm_id3150616\n"
+"03010304.xhp\n"
+"hd_id3156560\n"
+"7\n"
"help.text"
-msgid "<bookmark_value>Randomize statement</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "Parameter:"
+msgstr "Parametri i sllajdit"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"hd_id3150616\n"
-"1\n"
+"03010304.xhp\n"
+"par_id3161832\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize Statement [Runtime]\">Randomize Statement [Runtime]</link>"
+msgid "<emph>ColorNumber</emph>: Any integer expression that specifies the color value of the color passed from an older MS-DOS based programming system."
msgstr ""
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"par_id3145090\n"
-"2\n"
+"03010304.xhp\n"
+"par_id3147318\n"
+"9\n"
"help.text"
-msgid "Initializes the random-number generator."
-msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
+msgid "<emph>ColorNumber</emph> can be assigned the following values:"
+msgstr ""
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"hd_id3147573\n"
-"3\n"
+"03010304.xhp\n"
+"par_id3152576\n"
+"10\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "0 : Black"
+msgstr "Zi"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"par_id3145315\n"
-"4\n"
+"03010304.xhp\n"
+"par_id3146975\n"
+"11\n"
"help.text"
-msgid "Randomize [Number]"
-msgstr "Numri i faqes"
+msgid "1 : Blue"
+msgstr "Kaltër"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"hd_id3152456\n"
-"5\n"
+"03010304.xhp\n"
+"par_id3151116\n"
+"12\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "2 : Green"
+msgstr "Gjelbërt"
-#: 03080301.xhp
-#, fuzzy
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"par_id3149670\n"
-"6\n"
+"03010304.xhp\n"
+"par_id3155412\n"
+"13\n"
"help.text"
-msgid "<emph>Number:</emph> Any integer value that initializes the random-number generator."
-msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
+msgid "3 : Cyan"
+msgstr "Cian"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"hd_id3149655\n"
-"7\n"
+"03010304.xhp\n"
+"par_id3155306\n"
+"14\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "4 : Red"
+msgstr "Kuq"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"par_id3147288\n"
-"14\n"
+"03010304.xhp\n"
+"par_id3153364\n"
+"15\n"
"help.text"
-msgid "iVar = Int((10 * Rnd) ) ' Range from 0 To 9"
-msgstr ""
+msgid "5 : Magenta"
+msgstr "Magjenta"
-#: 03080301.xhp
+#: 03010304.xhp
msgctxt ""
-"03080301.xhp\n"
-"par_id3148617\n"
-"22\n"
+"03010304.xhp\n"
+"par_id3146119\n"
+"16\n"
"help.text"
-msgid "MsgBox sText,0,\"Spectral Distribution\""
-msgstr ""
+msgid "6 : Yellow"
+msgstr "Verdhë"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"tit\n"
+"03010304.xhp\n"
+"par_id3154730\n"
+"17\n"
"help.text"
-msgid "DimArray Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "7 : White"
+msgstr "Bardhë"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"bm_id3150616\n"
+"03010304.xhp\n"
+"par_id3153877\n"
+"18\n"
"help.text"
-msgid "<bookmark_value>DimArray function</bookmark_value>"
-msgstr "E kthen funksionin gabim plotwsues"
+msgid "8 : Gray"
+msgstr "Ngjyrë hiri"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"hd_id3150616\n"
-"1\n"
+"03010304.xhp\n"
+"par_id3147124\n"
+"19\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function [Runtime]\">DimArray Function [Runtime]</link>"
-msgstr ""
+msgid "9 : Light Blue"
+msgstr "Kaltërt e çiltër"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"par_id3153527\n"
-"2\n"
+"03010304.xhp\n"
+"par_id3145646\n"
+"20\n"
"help.text"
-msgid "Returns a Variant array."
-msgstr "Kthen përcaktuesin e një grupi."
+msgid "10 : Light Green"
+msgstr "Indeksi 10 i shfrytëzuesit"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"hd_id3149762\n"
-"3\n"
+"03010304.xhp\n"
+"par_id3149958\n"
+"21\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "11 : Light Cyan"
+msgstr "Mbushja e rezervuar për 11"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"par_id3148473\n"
-"4\n"
+"03010304.xhp\n"
+"par_id3154943\n"
+"22\n"
"help.text"
-msgid "DimArray ( Argument list)"
-msgstr "Zgjedhni listën e adresave"
+msgid "12 : Light Red"
+msgstr "Yll 12-cepësh"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"par_id3154142\n"
-"5\n"
+"03010304.xhp\n"
+"par_id3150715\n"
+"23\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
-msgstr ""
+msgid "13 : Light Magenta"
+msgstr "13:45;13:45:00;01:45 PM;01:45:00 PM"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"par_id3156023\n"
-"6\n"
+"03010304.xhp\n"
+"par_id3146970\n"
+"24\n"
"help.text"
-msgid "If no parameters are passed, an empty array is created (like Dim A() that is the same as a sequence of length 0 in Uno). If parameters are specified, a dimension is created for each parameter."
+msgid "14 : Light Yellow"
msgstr ""
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"hd_id3154760\n"
-"7\n"
+"03010304.xhp\n"
+"par_id3150750\n"
+"25\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "15 : Bright White"
+msgstr "Bardh e zi"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"par_id3159414\n"
-"8\n"
+"03010304.xhp\n"
+"par_id3146914\n"
+"26\n"
"help.text"
-msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
+msgid "This function is used only to convert from older MS-DOS based BASIC applications that use the above color codes. The function returns a long integer value indicating the color to be used in the $[officename] IDE."
msgstr ""
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"hd_id3150358\n"
-"9\n"
+"03010304.xhp\n"
+"hd_id3148406\n"
+"27\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03104300.xhp
+#: 03010304.xhp
msgctxt ""
-"03104300.xhp\n"
-"par_id3154939\n"
-"10\n"
+"03010304.xhp\n"
+"par_id3149566\n"
+"33\n"
"help.text"
-msgid "DimArray( 2, 2, 4 ) is the same as DIM a( 2, 2, 4 )"
+msgid "MsgBox stext,0,\"Color \" & iColor"
msgstr ""
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
+"03010305.xhp\n"
"tit\n"
"help.text"
-msgid "TypeName Function; VarType Function[Runtime]"
-msgstr ""
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"bm_id3143267\n"
-"help.text"
-msgid "<bookmark_value>TypeName function</bookmark_value><bookmark_value>VarType function</bookmark_value>"
-msgstr ""
+msgid "RGB Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"hd_id3143267\n"
+"03010305.xhp\n"
+"hd_id3150792\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function [Runtime]\">RGB Function [Runtime]</link>"
msgstr ""
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3159157\n"
+"03010305.xhp\n"
+"par_id3150447\n"
"2\n"
"help.text"
-msgid "Returns a string (TypeName) or a numeric value (VarType) that contains information for a variable."
+msgid "Returns a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"long integer color value\">long integer color value</link> consisting of red, green, and blue components."
msgstr ""
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"hd_id3153825\n"
+"03010305.xhp\n"
+"hd_id3147229\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3155341\n"
+"03010305.xhp\n"
+"par_id3155132\n"
"4\n"
"help.text"
-msgid "TypeName (Variable)VarType (Variable)"
-msgstr "**Ndryshorja nuk u gjet**"
+msgid "RGB (Red, Green, Blue)"
+msgstr ""
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"hd_id3145610\n"
+"03010305.xhp\n"
+"hd_id3156442\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3148947\n"
+"03010305.xhp\n"
+"par_id3159153\n"
"6\n"
"help.text"
-msgid "String; Integer"
-msgstr "Numri i plotë për orë"
+msgid "Long"
+msgstr "Standard (e gjatë)"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"hd_id3146795\n"
+"03010305.xhp\n"
+"hd_id3154013\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Parameter:"
+msgstr "Parametri i sllajdit"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3148664\n"
+"03010305.xhp\n"
+"par_id3152597\n"
"8\n"
"help.text"
-msgid "<emph>Variable:</emph> The variable that you want to determine the type of. You can use the following values:"
+msgid "<emph>Red</emph>: Any integer expression that represents the red component (0-255) of the composite color."
msgstr ""
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3145171\n"
+"03010305.xhp\n"
+"par_id3146974\n"
"9\n"
"help.text"
-msgid "key word"
-msgstr "Zgjedh fjalën"
+msgid "<emph>Green</emph>: Any integer expression that represents the green component (0-255) of the composite color."
+msgstr ""
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3156212\n"
+"03010305.xhp\n"
+"par_id3151113\n"
"10\n"
"help.text"
-msgid "VarType"
+msgid "<emph>Blue</emph>: Any integer expression that represents the blue component (0-255) of the composite color."
msgstr ""
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3154684\n"
+"03010305.xhp\n"
+"hd_id3147435\n"
"11\n"
"help.text"
-msgid "Variable type"
-msgstr "Lloji i publikimit"
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3151041\n"
-"12\n"
-"help.text"
-msgid "Boolean"
-msgstr "JO logjike"
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3153367\n"
-"13\n"
-"help.text"
-msgid "11"
-msgstr ""
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3148645\n"
-"14\n"
-"help.text"
-msgid "Boolean variable"
-msgstr "Data (e ndryshueshme)"
+msgid "Example:"
+msgstr "Shembull"
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3153138\n"
+"03010305.xhp\n"
+"par_id3145647\n"
"15\n"
"help.text"
-msgid "Date"
-msgstr "Data"
+msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgstr ""
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3153363\n"
+"03010305.xhp\n"
+"par_id3154491\n"
"16\n"
"help.text"
-msgid "7"
+msgid "\"red= \" & red(lVar) & Chr(13)&_"
msgstr ""
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3155411\n"
+"03010305.xhp\n"
+"par_id3149401\n"
"17\n"
"help.text"
-msgid "Date variable"
-msgstr "Data (e ndryshueshme)"
+msgid "\"green= \" & green(lVar) & Chr(13)&_"
+msgstr ""
-#: 03103600.xhp
+#: 03010305.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3146975\n"
+"03010305.xhp\n"
+"par_id3150716\n"
"18\n"
"help.text"
-msgid "Double"
-msgstr "Dyfish"
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3150486\n"
-"19\n"
-"help.text"
-msgid "5"
+msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
msgstr ""
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3148616\n"
-"20\n"
-"help.text"
-msgid "Double floating point variable"
-msgstr "Gabim: Operacion i pavlefshëm i pikës qarkulluese"
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3148457\n"
-"21\n"
-"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3145647\n"
-"22\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3154490\n"
-"23\n"
-"help.text"
-msgid "Integer variable"
-msgstr "Data (e ndryshueshme)"
-
-#: 03103600.xhp
+#: 03020000.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3149960\n"
-"24\n"
+"03020000.xhp\n"
+"tit\n"
"help.text"
-msgid "Long"
-msgstr "Standard (e gjatë)"
+msgid "File I/O Functions"
+msgstr "Funksionet statistikore"
-#: 03103600.xhp
+#: 03020000.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3154513\n"
-"25\n"
+"03020000.xhp\n"
+"hd_id3156344\n"
+"1\n"
"help.text"
-msgid "3"
+msgid "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"File I/O Functions\">File I/O Functions</link>"
msgstr ""
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3151318\n"
-"26\n"
-"help.text"
-msgid "Long integer variable"
-msgstr "**Ndryshorja nuk u gjet**"
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3146972\n"
-"27\n"
-"help.text"
-msgid "Object"
-msgstr "Objekt"
-
-#: 03103600.xhp
+#: 03020000.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3154482\n"
-"28\n"
+"03020000.xhp\n"
+"par_id3153360\n"
+"2\n"
"help.text"
-msgid "9"
+msgid "Use File I/O functions to create and manage user-defined (data) files."
msgstr ""
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3150323\n"
-"29\n"
-"help.text"
-msgid "Object variable"
-msgstr "Variabla e objektit nuk është përcaktuar"
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3148405\n"
-"30\n"
-"help.text"
-msgid "Single"
-msgstr "E vetme"
-
-#: 03103600.xhp
+#: 03020000.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3149020\n"
-"31\n"
+"03020000.xhp\n"
+"par_id3150398\n"
+"3\n"
"help.text"
-msgid "4"
+msgid "You can use these functions to support the creation of \"relative\" files, so that you can save and reload certain records by specifying their record number. File I/O functions can also help you manage your files by providing you with information such as file size, current path settings, or the creation date of a file or a directory."
msgstr ""
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3147341\n"
-"32\n"
-"help.text"
-msgid "Single floating-point variable"
-msgstr "Gabim: Operacion i pavlefshëm i pikës qarkulluese"
-
-#: 03103600.xhp
-msgctxt ""
-"03103600.xhp\n"
-"par_id3155901\n"
-"33\n"
-"help.text"
-msgid "String"
-msgstr "Varg"
-
-#: 03103600.xhp
+#: 03020100.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3155960\n"
-"34\n"
+"03020100.xhp\n"
+"tit\n"
"help.text"
-msgid "8"
+msgid "Opening and Closing Files"
msgstr ""
-#: 03103600.xhp
+#: 03020100.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3146313\n"
-"35\n"
+"03020100.xhp\n"
+"hd_id3152924\n"
+"1\n"
"help.text"
-msgid "String variable"
-msgstr "Data (e ndryshueshme)"
+msgid "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Opening and Closing Files\">Opening and Closing Files</link>"
+msgstr ""
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3145149\n"
-"36\n"
+"03020101.xhp\n"
+"tit\n"
"help.text"
-msgid "Variant"
-msgstr "Zgjedhni një variantë"
+msgid "Close Statement [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3154021\n"
-"37\n"
+"03020101.xhp\n"
+"bm_id3157896\n"
"help.text"
-msgid "12"
-msgstr "Yll 12-cepësh"
+msgid "<bookmark_value>Close statement</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3145789\n"
-"38\n"
+"03020101.xhp\n"
+"hd_id3157896\n"
+"1\n"
"help.text"
-msgid "Variant variable (can contain all types specified by the definition)"
+msgid "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement [Runtime]\">Close Statement [Runtime]</link>"
msgstr ""
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3148630\n"
-"39\n"
+"03020101.xhp\n"
+"par_id3147573\n"
+"2\n"
"help.text"
-msgid "Empty"
-msgstr "<bosh>"
+msgid "Closes a specified file that was opened with the Open statement."
+msgstr ""
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3152584\n"
-"40\n"
+"03020101.xhp\n"
+"hd_id3156344\n"
+"3\n"
"help.text"
-msgid "0"
-msgstr "Titullimi 10"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3151278\n"
-"41\n"
+"03020101.xhp\n"
+"par_id3147265\n"
+"4\n"
"help.text"
-msgid "Variable is not initialized"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+msgid "Close FileNumber As Integer[, FileNumber2 As Integer[,...]]"
+msgstr ""
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3154576\n"
-"42\n"
+"03020101.xhp\n"
+"hd_id3153379\n"
+"5\n"
"help.text"
-msgid "Null"
-msgstr "Është e zbraztë"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3166424\n"
-"43\n"
+"03020101.xhp\n"
+"par_id3150791\n"
+"6\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "<emph>FileNumber:</emph> Any integer expression that specifies the number of the data channel that was opened with the <emph>Open</emph> statement."
+msgstr ""
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3145131\n"
-"44\n"
+"03020101.xhp\n"
+"hd_id3153192\n"
+"7\n"
"help.text"
-msgid "No valid data"
-msgstr "jo, ruaj të dhënat ekzistuese"
+msgid "Example:"
+msgstr "Shembull"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"hd_id3149338\n"
-"45\n"
+"03020101.xhp\n"
+"par_id3153727\n"
+"16\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Print #iNumber, \"First line of text\""
+msgstr "Nga kreu në fund"
-#: 03103600.xhp
+#: 03020101.xhp
msgctxt ""
-"03103600.xhp\n"
-"par_id3148817\n"
-"58\n"
+"03020101.xhp\n"
+"par_id3147350\n"
+"17\n"
"help.text"
-msgid "TypeName(lVar) & \" \" & VarType(lVar),0,\"Some types In $[officename] Basic\""
-msgstr ""
+msgid "Print #iNumber, \"Another line of text\""
+msgstr "Nga kreu në fund"
-#: 03030201.xhp
+#: 03020102.xhp
msgctxt ""
-"03030201.xhp\n"
+"03020102.xhp\n"
"tit\n"
"help.text"
-msgid "Hour Function [Runtime]"
+msgid "FreeFile Function[Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03030201.xhp
+#: 03020102.xhp
msgctxt ""
-"03030201.xhp\n"
-"bm_id3156042\n"
+"03020102.xhp\n"
+"bm_id3150400\n"
"help.text"
-msgid "<bookmark_value>Hour function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>FreeFile function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03030201.xhp
+#: 03020102.xhp
msgctxt ""
-"03030201.xhp\n"
-"hd_id3156042\n"
+"03020102.xhp\n"
+"hd_id3150400\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function [Runtime]\">Hour Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function[Runtime]\">FreeFile Function[Runtime]</link>"
msgstr ""
-#: 03030201.xhp
+#: 03020102.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3149346\n"
+"03020102.xhp\n"
+"par_id3154366\n"
"2\n"
"help.text"
-msgid "Returns the hour from a time value that is generated by the TimeSerial or the TimeValue function."
+msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
msgstr ""
-#: 03030201.xhp
+#: 03020102.xhp
msgctxt ""
-"03030201.xhp\n"
-"hd_id3147574\n"
+"03020102.xhp\n"
+"hd_id3150769\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03030201.xhp
-msgctxt ""
-"03030201.xhp\n"
-"par_id3147264\n"
-"4\n"
-"help.text"
-msgid "Hour (Number)"
-msgstr "Numri i faqes"
-
-#: 03030201.xhp
+#: 03020102.xhp
msgctxt ""
-"03030201.xhp\n"
-"hd_id3145069\n"
+"03020102.xhp\n"
+"hd_id3151042\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03030201.xhp
+#: 03020102.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3149670\n"
+"03020102.xhp\n"
+"par_id3150440\n"
"6\n"
"help.text"
msgid "Integer"
msgstr "Numër i plotë"
-#: 03030201.xhp
+#: 03020102.xhp
msgctxt ""
-"03030201.xhp\n"
-"hd_id3150359\n"
+"03020102.xhp\n"
+"hd_id3148576\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03030201.xhp
+#: 03020102.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3154366\n"
+"03020102.xhp\n"
+"par_id3155854\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the hour value."
+msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
msgstr ""
-#: 03030201.xhp
+#: 03020102.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3154909\n"
+"03020102.xhp\n"
+"hd_id3159153\n"
"9\n"
"help.text"
-msgid "This function is the opposite of the <emph>TimeSerial</emph> function. It returns an integer value that represents the hour from a time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression"
-msgstr ""
-
-#: 03030201.xhp
-msgctxt ""
-"03030201.xhp\n"
-"par_id3163798\n"
-"10\n"
-"help.text"
-msgid "Print Hour(TimeSerial(12,30,41))"
-msgstr ""
-
-#: 03030201.xhp
-msgctxt ""
-"03030201.xhp\n"
-"par_id3155132\n"
-"11\n"
-"help.text"
-msgid "returns the value 12."
-msgstr "Kthen vlerën llogjike SAKTË."
-
-#: 03030201.xhp
-msgctxt ""
-"03030201.xhp\n"
-"hd_id3147348\n"
-"12\n"
-"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03030201.xhp
-msgctxt ""
-"03030201.xhp\n"
-"par_id3146985\n"
-"13\n"
-"help.text"
-msgid "Sub ExampleHour"
-msgstr "Nën~totalet..."
-
-#: 03030201.xhp
+#: 03020102.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3156441\n"
-"14\n"
+"03020102.xhp\n"
+"par_id3155416\n"
+"18\n"
"help.text"
-msgid "Print \"The current hour is \" & Hour( Now )"
-msgstr ""
+msgid "Print #iNumber, \"First line of text\""
+msgstr "Nga kreu në fund"
-#: 03030201.xhp
+#: 03020102.xhp
msgctxt ""
-"03030201.xhp\n"
-"par_id3153145\n"
-"15\n"
+"03020102.xhp\n"
+"par_id3153416\n"
+"19\n"
"help.text"
-msgid "End Sub"
-msgstr "Nën~totalet..."
+msgid "Print #iNumber, \"Another line of text\""
+msgstr "Nga kreu në fund"
-#: 03090404.xhp
+#: 03020103.xhp
msgctxt ""
-"03090404.xhp\n"
+"03020103.xhp\n"
"tit\n"
"help.text"
-msgid "End Statement [Runtime]"
+msgid "Open Statement[Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03090404.xhp
+#: 03020103.xhp
msgctxt ""
-"03090404.xhp\n"
-"bm_id3150771\n"
+"03020103.xhp\n"
+"bm_id3150791\n"
"help.text"
-msgid "<bookmark_value>End statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+msgid "<bookmark_value>Open statement</bookmark_value>"
+msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
-#: 03090404.xhp
+#: 03020103.xhp
msgctxt ""
-"03090404.xhp\n"
-"hd_id3150771\n"
+"03020103.xhp\n"
+"hd_id3150791\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End Statement [Runtime]\">End Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement[Runtime]\">Open Statement[Runtime]</link>"
msgstr ""
-#: 03090404.xhp
+#: 03020103.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3153126\n"
+"03020103.xhp\n"
+"par_id3150769\n"
"2\n"
"help.text"
-msgid "Ends a procedure or block."
-msgstr "Nwn-procedura ose procedura e funksionit nuk wshtw definuar"
+msgid "Opens a data channel."
+msgstr "DDE kanali i bllokuar"
-#: 03090404.xhp
+#: 03020103.xhp
msgctxt ""
-"03090404.xhp\n"
-"hd_id3147264\n"
+"03020103.xhp\n"
+"hd_id3147230\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03090404.xhp
+#: 03020103.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3148552\n"
+"03020103.xhp\n"
+"par_id3154124\n"
"4\n"
"help.text"
-msgid "End, End Function, End If, End Select, End Sub"
+msgid "Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]"
msgstr ""
-#: 03090404.xhp
+#: 03020103.xhp
msgctxt ""
-"03090404.xhp\n"
-"hd_id3149456\n"
+"03020103.xhp\n"
+"hd_id3156280\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03090404.xhp
+#: 03020103.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3150398\n"
+"03020103.xhp\n"
+"par_id3155132\n"
"6\n"
"help.text"
-msgid "Use the End statement as follows:"
+msgid "<emph>FileName: </emph>Name and path of the file that you wan to open. If you try to read a file that does not exist (Access = Read), an error message appears. If you try to write to a file that does not exist (Access = Write), a new file is created."
msgstr ""
-#: 03090404.xhp
+#: 03020103.xhp
msgctxt ""
-"03090404.xhp\n"
-"hd_id3154366\n"
+"03020103.xhp\n"
+"par_id3149262\n"
"7\n"
"help.text"
-msgid "Statement"
-msgstr "DDE Deklaratë"
+msgid "<emph>Mode:</emph> Keyword that specifies the file mode. Valid values: Append (append to sequential file), Binary (data can be accessed by bytes using Get and Put), Input (opens data channel for reading), Output (opens data channel for writing), and Random (edits relative files)."
+msgstr ""
-#: 03090404.xhp
+#: 03020103.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3151043\n"
+"03020103.xhp\n"
+"par_id3154014\n"
"8\n"
"help.text"
-msgid "End: Is not required, but can be entered anywhere within a procedure to end the program execution."
+msgid "<emph>IOMode:</emph> Keyword that defines the access type. Valid values: Read (read-only), Write (write-only), Read Write (both)."
msgstr ""
-#: 03090404.xhp
+#: 03020103.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3145171\n"
+"03020103.xhp\n"
+"par_id3150011\n"
"9\n"
"help.text"
-msgid "End Function: Ends a <emph>Function</emph> statement."
+msgid "<emph>Protected:</emph> Keyword that defines the security status of a file after opening. Valid values: Shared (file may be opened by other applications), Lock Read (file is protected against reading), Lock Write (file is protected against writing), Lock Read Write (denies file access)."
msgstr ""
-#: 03090404.xhp
+#: 03020103.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3153192\n"
+"03020103.xhp\n"
+"par_id3153190\n"
"10\n"
"help.text"
-msgid "End If: Marks the end of a <emph>If...Then...Else</emph> block."
+msgid "<emph>FileNumber:</emph> Any integer expression from 0 to 511 to indicate the number of a free data channel. You can then pass commands through the data channel to access the file. The file number must be determined by the FreeFile function immediately before the Open statement."
msgstr ""
-#: 03090404.xhp
+#: 03020103.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3148451\n"
+"03020103.xhp\n"
+"par_id3151115\n"
"11\n"
"help.text"
-msgid "End Select: Marks the end of a <emph>Select Case</emph> block."
+msgid "<emph>DatasetLength:</emph> For random access files, set the length of the records."
msgstr ""
-#: 03090404.xhp
+#: 03020103.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3155131\n"
+"03020103.xhp\n"
+"par_id3153418\n"
"12\n"
"help.text"
-msgid "End Sub: Ends a <emph>Sub</emph> statement."
+msgid "You can only modify the contents of a file that was opened with the Open statement. If you try to open a file that is already open, an error message appears."
msgstr ""
-#: 03090404.xhp
+#: 03020103.xhp
msgctxt ""
-"03090404.xhp\n"
-"hd_id3146120\n"
+"03020103.xhp\n"
+"hd_id3149123\n"
"13\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03090404.xhp
+#: 03020103.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3152887\n"
-"19\n"
+"03020103.xhp\n"
+"par_id3154705\n"
+"22\n"
"help.text"
-msgid "Print \"Number from 1 to 5\""
+msgid "Print #iNumber, \"This is a line of text\""
msgstr "Nga kreu në fund"
-#: 03090404.xhp
+#: 03020103.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3148618\n"
-"21\n"
+"03020103.xhp\n"
+"par_id3146916\n"
+"23\n"
"help.text"
-msgid "Print \"Number from 6 to 8\""
+msgid "Print #iNumber, \"This is another line of text\""
msgstr "Nga kreu në fund"
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3147436\n"
-"23\n"
+"03020104.xhp\n"
+"tit\n"
"help.text"
-msgid "Print \"Greater than 8\""
-msgstr "Është më e madhe se"
+msgid "Reset Statement [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03090404.xhp
+#: 03020104.xhp
msgctxt ""
-"03090404.xhp\n"
-"par_id3150418\n"
-"25\n"
+"03020104.xhp\n"
+"bm_id3154141\n"
"help.text"
-msgid "Print \"Outside range 1 to 10\""
+msgid "<bookmark_value>Reset statement</bookmark_value>"
+msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
+
+#: 03020104.xhp
+msgctxt ""
+"03020104.xhp\n"
+"hd_id3154141\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020104.xhp\">Reset Statement [Runtime]</link>"
+msgstr ""
+
+#: 03020104.xhp
+msgctxt ""
+"03020104.xhp\n"
+"par_id3156423\n"
+"2\n"
+"help.text"
+msgid "Closes all open files and writes the contents of all file buffers to the harddisk."
+msgstr ""
+
+#: 03020104.xhp
+msgctxt ""
+"03020104.xhp\n"
+"hd_id3154124\n"
+"3\n"
+"help.text"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
+
+#: 03020104.xhp
+msgctxt ""
+"03020104.xhp\n"
+"hd_id3161831\n"
+"5\n"
+"help.text"
+msgid "Example:"
+msgstr "Shembull"
+
+#: 03020104.xhp
+msgctxt ""
+"03020104.xhp\n"
+"par_id3148455\n"
+"47\n"
+"help.text"
+msgid "Print #iNumber, \"This is a new line of text\""
msgstr "Nga kreu në fund"
-#: 03104400.xhp
+#: 03020104.xhp
msgctxt ""
-"03104400.xhp\n"
+"03020104.xhp\n"
+"par_id3163805\n"
+"62\n"
+"help.text"
+msgid "MsgBox \"All files will be closed\",0,\"Error\""
+msgstr ""
+
+#: 03020200.xhp
+msgctxt ""
+"03020200.xhp\n"
"tit\n"
"help.text"
-msgid "HasUnoInterfaces Function [Runtime]"
+msgid "File Input/Output Functions"
+msgstr "Gabim i përgjithshëm në hyrje/dalje"
+
+#: 03020200.xhp
+msgctxt ""
+"03020200.xhp\n"
+"hd_id3150791\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"File Input/Output Functions\">File Input/Output Functions</link>"
+msgstr ""
+
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"tit\n"
+"help.text"
+msgid "Get Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"bm_id3149987\n"
+"03020201.xhp\n"
+"bm_id3154927\n"
"help.text"
-msgid "<bookmark_value>HasUnoInterfaces function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>Get statement</bookmark_value>"
+msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"hd_id3149987\n"
+"03020201.xhp\n"
+"hd_id3154927\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces Function [Runtime]\">HasUnoInterfaces Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020201.xhp\">Get Statement [Runtime]</link>"
msgstr ""
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3151262\n"
+"03020201.xhp\n"
+"par_id3145069\n"
"2\n"
"help.text"
-msgid "Tests if a Basic Uno object supports certain Uno interfaces."
+msgid "Reads a record from a relative file, or a sequence of bytes from a binary file, into a variable."
msgstr ""
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3154232\n"
+"03020201.xhp\n"
+"par_id3154346\n"
"3\n"
"help.text"
-msgid "Returns True, if <emph>all</emph> stated Uno interfaces are supported, otherwise False is returned."
+msgid "See also: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> Statement"
msgstr ""
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"hd_id3150040\n"
+"03020201.xhp\n"
+"hd_id3150358\n"
"4\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3155555\n"
+"03020201.xhp\n"
+"par_id3150792\n"
"5\n"
"help.text"
-msgid "HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
+msgid "Get [#] FileNumber As Integer, [Position], Variable"
msgstr ""
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"hd_id3153345\n"
+"03020201.xhp\n"
+"hd_id3154138\n"
"6\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3148538\n"
+"03020201.xhp\n"
+"par_id3150448\n"
"7\n"
"help.text"
-msgid "Bool"
-msgstr "JO logjike"
+msgid "<emph>FileNumber:</emph> Any integer expression that determines the file number."
+msgstr ""
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"hd_id3159157\n"
+"03020201.xhp\n"
+"par_id3154684\n"
"8\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "<emph>Position:</emph> For files opened in Random mode, <emph>Position</emph> is the number of the record that you want to read."
+msgstr ""
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3155419\n"
+"03020201.xhp\n"
+"par_id3153768\n"
"9\n"
"help.text"
-msgid "<emph>oTest:</emph> the Basic Uno object that you want to test."
+msgid "For files opened in Binary mode, <emph>Position</emph> is the byte position in the file where the reading starts."
msgstr ""
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3149236\n"
+"03020201.xhp\n"
+"par_id3147319\n"
"10\n"
"help.text"
-msgid "<emph>Uno-Interface-Name:</emph> list of Uno interface names."
+msgid "If <emph>Position</emph> is omitted, the current position or the current data record of the file is used."
msgstr ""
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"hd_id3147574\n"
+"03020201.xhp\n"
+"par_id3149484\n"
"11\n"
"help.text"
+msgid "Variable: Name of the variable to be read. With the exception of object variables, you can use any variable type."
+msgstr ""
+
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"hd_id3153144\n"
+"12\n"
+"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03104400.xhp
+#: 03020201.xhp
msgctxt ""
-"03104400.xhp\n"
-"par_id3149580\n"
-"12\n"
+"03020201.xhp\n"
+"par_id3155307\n"
+"15\n"
"help.text"
-msgid "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
+msgid "Dim sText As Variant ' Must be a variant"
msgstr ""
-#: 03090402.xhp
+#: 03020201.xhp
msgctxt ""
-"03090402.xhp\n"
+"03020201.xhp\n"
+"par_id3149411\n"
+"21\n"
+"help.text"
+msgid "Seek #iNumber,1 ' Position at beginning"
+msgstr ""
+
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3153158\n"
+"22\n"
+"help.text"
+msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
+msgstr ""
+
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3148457\n"
+"23\n"
+"help.text"
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Nga kreu në fund"
+
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3150715\n"
+"24\n"
+"help.text"
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Nga kreu në fund"
+
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3155938\n"
+"33\n"
+"help.text"
+msgid "Put #iNumber,,\"This is a new text\""
+msgstr "Nga kreu në fund"
+
+#: 03020201.xhp
+msgctxt ""
+"03020201.xhp\n"
+"par_id3146916\n"
+"36\n"
+"help.text"
+msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgstr ""
+
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
"tit\n"
"help.text"
-msgid "Choose Function [Runtime]"
+msgid "Input# Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"bm_id3143271\n"
+"03020202.xhp\n"
+"bm_id3154908\n"
"help.text"
-msgid "<bookmark_value>Choose function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>Input statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"hd_id3143271\n"
+"03020202.xhp\n"
+"hd_id3154908\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090402.xhp\" name=\"Choose Function [Runtime]\">Choose Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement [Runtime]\">Input# Statement [Runtime]</link>"
msgstr ""
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3149234\n"
+"03020202.xhp\n"
+"par_id3156424\n"
"2\n"
"help.text"
-msgid "Returns a selected value from a list of arguments."
-msgstr "Kthen vlerën maksimale në një listë të argumenteve."
+msgid "Reads data from an open sequential file."
+msgstr ""
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"hd_id3148943\n"
+"03020202.xhp\n"
+"hd_id3125863\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3147560\n"
+"03020202.xhp\n"
+"par_id3150440\n"
"4\n"
"help.text"
-msgid "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
+msgid "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
msgstr ""
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"hd_id3154346\n"
+"03020202.xhp\n"
+"hd_id3146121\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3148664\n"
+"03020202.xhp\n"
+"par_id3145749\n"
"6\n"
"help.text"
-msgid "<emph>Index:</emph> A numeric expression that specifies the value to return."
+msgid "<emph>FileNumber:</emph> Number of the file that contains the data that you want to read. The file must be opened with the Open statement using the key word INPUT."
msgstr ""
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3150791\n"
+"03020202.xhp\n"
+"par_id3150011\n"
"7\n"
"help.text"
-msgid "<emph>Selection1:</emph> Any expression that contains one of the possible choices."
+msgid "<emph>var:</emph> A numeric or string variable that you assign the values read from the opened file to."
msgstr ""
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3151043\n"
+"03020202.xhp\n"
+"par_id3159153\n"
"8\n"
"help.text"
-msgid "The <emph>Choose</emph> function returns a value from the list of expressions based on the index value. If Index = 1, the function returns the first expression in the list, if index i= 2, it returns the second expression, and so on."
+msgid "The <emph>Input#</emph> statement reads numeric values or strings from an open file and assigns the data to one or more variables. A numeric variable is read up to the first carriage return (Asc=13), line feed (Asc=10), space, or comma. String variables are read to up to the first carriage return (Asc=13), line feed (Asc=10), or comma."
msgstr ""
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3153192\n"
+"03020202.xhp\n"
+"par_id3146984\n"
"9\n"
"help.text"
-msgid "If the index value is less than 1 or greater than the number of expressions listed, the function returns a Null value."
+msgid "Data and data types in the opened file must appear in the same order as the variables that are passed in the \"var\" parameter. If you assign non-numeric values to a numeric variable, \"var\" is assigned a value of \"0\"."
msgstr ""
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3156281\n"
+"03020202.xhp\n"
+"par_id3156442\n"
"10\n"
"help.text"
-msgid "The following example uses the <emph>Choose</emph> function to select a string from several strings that form a menu:"
+msgid "Records that are separated by commas cannot be assigned to a string variable. Quotation marks (\") in the file are disregarded as well. If you want to read these characters from the file, use the <emph>Line Input#</emph> statement to read pure text files (files containing only printable characters) line by line."
msgstr ""
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"hd_id3150439\n"
+"03020202.xhp\n"
+"par_id3147349\n"
"11\n"
"help.text"
+msgid "If the end of the file is reached while reading a data element, an error occurs and the process is aborted."
+msgstr ""
+
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"hd_id3152578\n"
+"12\n"
+"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03090402.xhp
+#: 03020202.xhp
msgctxt ""
-"03090402.xhp\n"
-"par_id3156443\n"
-"20\n"
+"03020202.xhp\n"
+"par_id4144765\n"
"help.text"
-msgid "ChooseMenu = Choose(Index, \"Quick Format\", \"Save Format\", \"System Format\")"
+msgid "' Write data ( which we will read later with Input ) to file"
+msgstr ""
+
+#: 03020202.xhp
+msgctxt ""
+"03020202.xhp\n"
+"par_id4144766\n"
+"help.text"
+msgid "' Read data file using Input"
msgstr ""
#: 03020203.xhp
@@ -5017,3987 +9806,3905 @@ msgctxt ""
msgid "Print #iNumber, \"This is another line of text\""
msgstr "Nga kreu në fund"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
+"03020204.xhp\n"
"tit\n"
"help.text"
-msgid "Xor-Operator [Runtime]"
+msgid "Put Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"bm_id3156024\n"
+"03020204.xhp\n"
+"bm_id3150360\n"
"help.text"
-msgid "<bookmark_value>Xor operator (logical)</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>Put statement</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"hd_id3156024\n"
+"03020204.xhp\n"
+"hd_id3150360\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Xor-Operator [Runtime]\">Xor-Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement [Runtime]\">Put Statement [Runtime]</link>"
msgstr ""
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3159414\n"
+"03020204.xhp\n"
+"par_id3154909\n"
"2\n"
"help.text"
-msgid "Performs a logical Exclusive-Or combination of two expressions."
+msgid "Writes a record to a relative file or a sequence of bytes to a binary file."
msgstr ""
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"hd_id3153381\n"
+"03020204.xhp\n"
+"par_id3156281\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "See also: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link> statement"
+msgstr ""
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3150400\n"
+"03020204.xhp\n"
+"hd_id3125863\n"
"4\n"
"help.text"
-msgid "Result = Expression1 Xor Expression2"
-msgstr "Gabim: Pa rezultat"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"hd_id3153968\n"
+"03020204.xhp\n"
+"par_id3155132\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Put [#] FileNumber As Integer, [position], Variable"
+msgstr ""
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3150448\n"
+"03020204.xhp\n"
+"hd_id3153190\n"
"6\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the combination."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3125864\n"
+"03020204.xhp\n"
+"par_id3146120\n"
"7\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to combine."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "<emph>FileNumber:</emph> Any integer expression that defines the file that you want to write to."
+msgstr ""
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3150439\n"
+"03020204.xhp\n"
+"par_id3155411\n"
"8\n"
"help.text"
-msgid "A logical Exclusive-Or conjunction of two Boolean expressions returns the value True only if both expressions are different from each other."
+msgid "<emph>Position: </emph>For relative files (random access files), the number of the record that you want to write."
msgstr ""
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3153770\n"
+"03020204.xhp\n"
+"par_id3148576\n"
"9\n"
"help.text"
-msgid "A bitwise Exclusive-Or conjunction returns a bit if the corresponding bit is set in only one of the two expressions."
+msgid "For binary files (binary access), the position of the byte in the file where you want to start writing."
msgstr ""
-#: 03060600.xhp
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"hd_id3153366\n"
+"03020204.xhp\n"
+"par_id3153729\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "<emph>Variable:</emph> Name of the variable that you want to write to the file."
+msgstr ""
-#: 03060600.xhp
-#, fuzzy
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3156442\n"
-"15\n"
+"03020204.xhp\n"
+"par_id3146974\n"
+"11\n"
"help.text"
-msgid "vOut = vA > vB Xor vB > vC ' returns 0"
-msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
+msgid "Note for relative files: If the contents of this variable does not match the length of the record that is specified in the <emph>Len</emph> clause of the <emph>Open</emph> statement, the space between the end of the newly written record and the next record is padded with existing data from the file that you are writing to."
+msgstr ""
-#: 03060600.xhp
-#, fuzzy
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3153191\n"
+"03020204.xhp\n"
+"par_id3155855\n"
+"12\n"
+"help.text"
+msgid "Note for binary files: The contents of the variables are written to the specified position, and the file pointer is inserted directly after the last byte. No space is left between the records."
+msgstr ""
+
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"hd_id3154491\n"
+"13\n"
+"help.text"
+msgid "Example:"
+msgstr "Shembull"
+
+#: 03020204.xhp
+msgctxt ""
+"03020204.xhp\n"
+"par_id3154729\n"
"16\n"
"help.text"
-msgid "vOut = vB > vA Xor vB > vC ' returns -1"
-msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
+msgid "Dim sText As Variant ' Must be a variant type"
+msgstr ""
-#: 03060600.xhp
-#, fuzzy
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3153144\n"
-"17\n"
+"03020204.xhp\n"
+"par_id3156278\n"
+"22\n"
"help.text"
-msgid "vOut = vA > vB Xor vB > vD ' returns -1"
-msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
+msgid "Seek #iNumber,1 ' Position To start writing"
+msgstr ""
-#: 03060600.xhp
-#, fuzzy
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3154944\n"
-"18\n"
+"03020204.xhp\n"
+"par_id3153711\n"
+"23\n"
"help.text"
-msgid "vOut = (vB > vD Xor vB > vA) ' returns 0"
-msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
+msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
+msgstr ""
-#: 03060600.xhp
-#, fuzzy
+#: 03020204.xhp
msgctxt ""
-"03060600.xhp\n"
-"par_id3148455\n"
-"19\n"
+"03020204.xhp\n"
+"par_id3155446\n"
+"24\n"
"help.text"
-msgid "vOut = vB Xor vA ' returns 2"
-msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Nga kreu në fund"
-#: 03080600.xhp
+#: 03020204.xhp
msgctxt ""
-"03080600.xhp\n"
-"tit\n"
+"03020204.xhp\n"
+"par_id3154255\n"
+"25\n"
"help.text"
-msgid "Absolute Values"
-msgstr "Vlerat e dalluara"
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Nga kreu në fund"
-#: 03080600.xhp
+#: 03020204.xhp
msgctxt ""
-"03080600.xhp\n"
-"hd_id3146958\n"
-"1\n"
+"03020204.xhp\n"
+"par_id3150940\n"
+"34\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Absolute Values\">Absolute Values</link>"
-msgstr ""
+msgid "Put #iNumber,,\"This is new text\""
+msgstr "Nga kreu në fund"
-#: 03080600.xhp
+#: 03020204.xhp
msgctxt ""
-"03080600.xhp\n"
-"par_id3150771\n"
-"2\n"
+"03020204.xhp\n"
+"par_id3159102\n"
+"37\n"
"help.text"
-msgid "This function returns absolute values."
+msgid "Put #iNumber,20,\"This is the text in record 20\""
msgstr ""
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
+"03020205.xhp\n"
"tit\n"
"help.text"
-msgid "DefLng Statement [Runtime]"
+msgid "Write Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"bm_id3148538\n"
+"03020205.xhp\n"
+"bm_id3147229\n"
"help.text"
-msgid "<bookmark_value>DefLng statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+msgid "<bookmark_value>Write statement</bookmark_value>"
+msgstr "Vlera #1 nuk mund të përdoret me LIKE!"
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"hd_id3148538\n"
+"03020205.xhp\n"
+"hd_id3147229\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"DefLng Statement [Runtime]\">DefLng Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Write Statement [Runtime]\">Write Statement [Runtime]</link>"
msgstr ""
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3149514\n"
+"03020205.xhp\n"
+"par_id3154685\n"
"2\n"
"help.text"
-msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgid "Writes data to a sequential file."
msgstr ""
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"hd_id3150504\n"
+"03020205.xhp\n"
+"hd_id3150449\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3145609\n"
+"03020205.xhp\n"
+"par_id3145785\n"
"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
+msgid "Write [#FileName], [Expressionlist]"
+msgstr "Dispozitivi shkrues CTC:"
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"hd_id3154760\n"
+"03020205.xhp\n"
+"hd_id3151116\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3145069\n"
+"03020205.xhp\n"
+"par_id3153728\n"
"6\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgid "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
msgstr ""
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3150791\n"
+"03020205.xhp\n"
+"par_id3146120\n"
"7\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgid "<emph>Expressionlist:</emph> Variables or expressions that you want to enter in a file, separated by commas."
msgstr ""
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3148798\n"
+"03020205.xhp\n"
+"par_id3150010\n"
"8\n"
"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "**Ndryshorja nuk u gjet**"
+msgid "If the expression list is omitted, the <emph>Write</emph> statement appends an empty line to the file."
+msgstr ""
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3154686\n"
+"03020205.xhp\n"
+"par_id3163713\n"
"9\n"
"help.text"
-msgid "<emph>DefLng:</emph> Long"
-msgstr "Nënvizo (vija të gjata lidhëse)"
+msgid "To add an expression list to a new or an existing file, the file must be opened in the <emph>Output</emph> or <emph>Append</emph> mode."
+msgstr ""
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"hd_id3153192\n"
+"03020205.xhp\n"
+"par_id3147428\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03101600.xhp
-msgctxt ""
-"03101600.xhp\n"
-"par_id3154124\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
+msgid "Strings that you write are enclosed by quotation marks and separated by commas. You do not need to enter these delimiters in the expression list."
msgstr ""
-#: 03101600.xhp
+#: 03020205.xhp
msgctxt ""
-"03101600.xhp\n"
-"par_id3145273\n"
-"22\n"
+"03020205.xhp\n"
+"par_id1002838\n"
"help.text"
-msgid "lCount=123456789 ' lCount is an implicit long integer variable"
+msgid "Each <emph>Write</emph> statement outputs a line end symbol as last entry."
msgstr ""
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Using Variables"
-msgstr "Duke përdorur Ndihmën"
-
-#: 01020100.xhp
+#: 03020205.xhp
msgctxt ""
-"01020100.xhp\n"
-"bm_id3149346\n"
+"03020205.xhp\n"
+"par_id6618854\n"
"help.text"
-msgid "<bookmark_value>names of variables</bookmark_value><bookmark_value>variables; using</bookmark_value><bookmark_value>types of variables</bookmark_value><bookmark_value>declaring variables</bookmark_value><bookmark_value>values;of variables</bookmark_value><bookmark_value>constants</bookmark_value><bookmark_value>arrays;declaring</bookmark_value><bookmark_value>defining;constants</bookmark_value>"
+msgid "Numbers with decimal delimiters are converted according to the locale settings."
msgstr ""
-#: 01020100.xhp
+#: 03020205.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3149346\n"
-"1\n"
+"03020205.xhp\n"
+"hd_id3151073\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01020100.xhp\" name=\"Using Variables\">Using Variables</link>"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154346\n"
-"3\n"
+"03020301.xhp\n"
+"tit\n"
"help.text"
-msgid "The following describes the basic use of variables in $[officename] Basic."
-msgstr ""
+msgid "Eof Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3153361\n"
-"4\n"
+"03020301.xhp\n"
+"bm_id3154598\n"
"help.text"
-msgid "Naming Conventions for Variable Identifiers"
-msgstr ""
+msgid "<bookmark_value>Eof function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3148797\n"
-"5\n"
+"03020301.xhp\n"
+"hd_id3154598\n"
+"1\n"
"help.text"
-msgid "A variable name can consist of a maximum of 255 characters. The first character of a variable name <emph>must</emph> be a letter A-Z or a-z. Numbers can also be used in a variable name, but punctuation symbols and special characters are not permitted, with exception of the underscore character (\"_\"). In $[officename] Basic variable identifiers are not case-sensitive. Variable names may contain spaces but must be enclosed in square brackets if they do."
+msgid "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Eof Function [Runtime]\">Eof Function [Runtime]</link>"
msgstr ""
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3156422\n"
-"6\n"
-"help.text"
-msgid "Examples for variable identifiers:"
-msgstr "Emër i padefinuar për qeli të variablit."
-
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3156441\n"
-"126\n"
-"help.text"
-msgid "Correct"
-msgstr "Fusha e valutave"
-
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3149664\n"
-"127\n"
-"help.text"
-msgid "Correct"
-msgstr "Fusha e valutave"
-
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3146119\n"
-"128\n"
+"03020301.xhp\n"
+"par_id3147182\n"
+"2\n"
"help.text"
-msgid "Correct"
-msgstr "Fusha e valutave"
+msgid "Determines if the file pointer has reached the end of a file."
+msgstr ""
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153876\n"
-"11\n"
+"03020301.xhp\n"
+"hd_id3149119\n"
+"3\n"
"help.text"
-msgid "Not valid, variable with space must be enclosed in square brackets"
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154510\n"
-"15\n"
+"03020301.xhp\n"
+"par_id3147399\n"
+"4\n"
"help.text"
-msgid "Correct"
-msgstr "Fusha e valutave"
+msgid "Eof (intexpression As Integer)"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150330\n"
-"129\n"
+"03020301.xhp\n"
+"hd_id3153539\n"
+"5\n"
"help.text"
-msgid "Not valid, special characters are not allowed"
-msgstr "Karakteret në vazhdim nuk janë të vlefshme dhe janë mënjanuar:"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154254\n"
-"130\n"
+"03020301.xhp\n"
+"par_id3156027\n"
+"6\n"
"help.text"
-msgid "Not valid, variable may not begin with a number"
-msgstr ""
+msgid "Bool"
+msgstr "JO logjike"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3149256\n"
-"131\n"
+"03020301.xhp\n"
+"hd_id3152924\n"
+"7\n"
"help.text"
-msgid "Not valid, punctuation marks are not allowed"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3146317\n"
-"17\n"
+"03020301.xhp\n"
+"par_id3153990\n"
+"8\n"
"help.text"
-msgid "Declaring Variables"
+msgid "<emph>Intexpression:</emph> Any integer expression that evaluates to the number of an open file."
msgstr ""
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150299\n"
-"18\n"
+"03020301.xhp\n"
+"par_id3153527\n"
+"9\n"
"help.text"
-msgid "In $[officename] Basic you don't need to declare variables explicitly. A variable declaration can be performed with the <emph>Dim</emph> statement. You can declare more than one variable at a time by separating the names with a comma. To define the variable type, use either a type-declaration sign after the name, or the appropriate key word."
+msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
msgstr ""
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154118\n"
-"140\n"
+"03020301.xhp\n"
+"hd_id3154046\n"
+"10\n"
"help.text"
-msgid "Examples for variable declarations:"
-msgstr "Emër i padefinuar për qeli të variablit."
+msgid "Example:"
+msgstr "Shembull"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150982\n"
-"132\n"
+"03020301.xhp\n"
+"par_id3153360\n"
+"19\n"
"help.text"
-msgid "Declares the variable \"a\" as a String"
-msgstr "Modeli i lidhëses është i pavlefshëm"
+msgid "Print #iNumber, \"First line of text\""
+msgstr "Nga kreu në fund"
-#: 01020100.xhp
+#: 03020301.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150343\n"
-"133\n"
+"03020301.xhp\n"
+"par_id3148797\n"
+"20\n"
"help.text"
-msgid "Declares the variable \"a\" as a String"
-msgstr "Modeli i lidhëses është i pavlefshëm"
+msgid "Print #iNumber, \"Another line of text\""
+msgstr "Nga kreu në fund"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3155507\n"
-"22\n"
+"03020302.xhp\n"
+"tit\n"
"help.text"
-msgid "Declares one variable as a String and one as an Integer"
-msgstr ""
+msgid "Loc Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_idN10859\n"
+"03020302.xhp\n"
+"bm_id3148663\n"
"help.text"
-msgid "Declares c as a Boolean variable that can be TRUE or FALSE"
-msgstr ""
+msgid "<bookmark_value>Loc function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150519\n"
-"23\n"
+"03020302.xhp\n"
+"hd_id3148663\n"
+"1\n"
"help.text"
-msgid "It is very important when declaring variables that you use the type-declaration character each time, even if it was used in the declaration instead of a keyword. Thus the following statements are invalid:"
+msgid "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc Function [Runtime]\">Loc Function [Runtime]</link>"
msgstr ""
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3154527\n"
-"134\n"
-"help.text"
-msgid "Declares \"a\" as a String"
-msgstr "Modeli i lidhëses është i pavlefshëm"
-
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"par_id3153064\n"
-"135\n"
-"help.text"
-msgid "Type-declaration missing: \"a$=\""
-msgstr "Gabim: Mungon operatori"
-
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3144770\n"
-"26\n"
+"03020302.xhp\n"
+"par_id3154138\n"
+"2\n"
"help.text"
-msgid "Once you have declared a variable as a certain type, you cannot declare the variable under the same name again as a different type!"
+msgid "Returns the current position in an open file."
msgstr ""
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3149331\n"
-"27\n"
+"03020302.xhp\n"
+"hd_id3156422\n"
+"3\n"
"help.text"
-msgid "Forcing Variable Declarations"
-msgstr "**Ndryshorja nuk u gjet**"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3149443\n"
-"28\n"
+"03020302.xhp\n"
+"par_id3150768\n"
+"4\n"
"help.text"
-msgid "To force declaration of variables, use the following command:"
-msgstr ""
+msgid "Loc(FileNumber)"
+msgstr "~Kërkim i Qëllimit..."
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3155072\n"
-"30\n"
+"03020302.xhp\n"
+"hd_id3150440\n"
+"5\n"
"help.text"
-msgid "The <emph>Option Explicit</emph> statement has to be the first line in the module, before the first SUB. Generally, only arrays need to be declared explicitly. All other variables are declared according to the type-declaration character, or - if omitted - as the default type <emph>Single</emph>."
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3154614\n"
-"34\n"
+"03020302.xhp\n"
+"par_id3152578\n"
+"6\n"
"help.text"
-msgid "Variable Types"
-msgstr "Llojet e fajllave"
+msgid "Long"
+msgstr "Standard (e gjatë)"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3155383\n"
-"35\n"
+"03020302.xhp\n"
+"hd_id3152462\n"
+"7\n"
"help.text"
-msgid "$[officename] Basic supports four variable classes:"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153972\n"
-"36\n"
+"03020302.xhp\n"
+"par_id3153363\n"
+"8\n"
"help.text"
-msgid "<emph>Numeric</emph> variables can contain number values. Some variables are used to store large or small numbers, and others are used for floating-point or fractional numbers."
+msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is set by the Open statement for the respective file."
msgstr ""
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3159226\n"
-"37\n"
+"03020302.xhp\n"
+"par_id3154320\n"
+"9\n"
"help.text"
-msgid "<emph>String</emph> variables contain character strings."
+msgid "If the Loc function is used for an open random access file, it returns the number of the last record that was last read or written."
msgstr ""
-#: 01020100.xhp
+#: 03020302.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3145217\n"
-"38\n"
+"03020302.xhp\n"
+"par_id3151115\n"
+"10\n"
"help.text"
-msgid "<emph>Boolean</emph> variables contain either the TRUE or the FALSE value."
+msgid "For a sequential file, the Loc function returns the position in a file divided by 128. For binary files, the position of the last read or written byte is returned."
msgstr ""
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154762\n"
-"39\n"
+"03020303.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Object</emph> variables can store objects of various types, like tables and documents within a document."
-msgstr ""
+msgid "Lof Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3153805\n"
-"40\n"
+"03020303.xhp\n"
+"bm_id3156024\n"
"help.text"
-msgid "Integer Variables"
-msgstr "Numri i plotë për orë"
+msgid "<bookmark_value>Lof function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3146966\n"
-"41\n"
+"03020303.xhp\n"
+"hd_id3156024\n"
+"1\n"
"help.text"
-msgid "Integer variables range from -32768 to 32767. If you assign a floating-point value to an integer variable, the decimal places are rounded to the next integer. Integer variables are rapidly calculated in procedures and are suitable for counter variables in loops. An integer variable only requires two bytes of memory. \"%\" is the type-declaration character."
+msgid "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function [Runtime]\">Lof Function [Runtime]</link>"
msgstr ""
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3147546\n"
-"45\n"
-"help.text"
-msgid "Long Integer Variables"
-msgstr "Numri i plotë për orë"
-
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3151193\n"
-"46\n"
+"03020303.xhp\n"
+"par_id3146794\n"
+"2\n"
"help.text"
-msgid "Long integer variables range from -2147483648 to 2147483647. If you assign a floating-point value to a long integer variable, the decimal places are rounded to the next integer. Long integer variables are rapidly calculated in procedures and are suitable for counter variables in loops for large values. A long integer variable requires four bytes of memory. \"&\" is the type-declaration character."
+msgid "Returns the size of an open file in bytes."
msgstr ""
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id7596972\n"
+"03020303.xhp\n"
+"hd_id3153380\n"
+"3\n"
"help.text"
-msgid "Decimal Variables"
-msgstr "Vendet decimale"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id2649311\n"
+"03020303.xhp\n"
+"par_id3150359\n"
+"4\n"
"help.text"
-msgid "Decimal variables can take positive or negative numbers or zero. Accuracy is up to 29 digits."
-msgstr ""
+msgid "Lof (FileNumber)"
+msgstr "~Kërkim i Qëllimit..."
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id7617114\n"
+"03020303.xhp\n"
+"hd_id3154141\n"
+"5\n"
"help.text"
-msgid "You can use plus (+) or minus (-) signs as prefixes for decimal numbers (with or without spaces)."
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id1593676\n"
+"03020303.xhp\n"
+"par_id3147230\n"
+"6\n"
"help.text"
-msgid "If a decimal number is assigned to an integer variable, %PRODUCTNAME Basic rounds the figure up or down."
-msgstr ""
+msgid "Long"
+msgstr "Standard (e gjatë)"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3147500\n"
-"50\n"
+"03020303.xhp\n"
+"hd_id3156281\n"
+"7\n"
"help.text"
-msgid "Single Variables"
-msgstr "Vija të njëfishta"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153070\n"
-"51\n"
+"03020303.xhp\n"
+"par_id3150869\n"
+"8\n"
"help.text"
-msgid "Single variables can take positive or negative values ranging from 3.402823 x 10E38 to 1.401298 x 10E-45. Single variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Single variables are suitable for mathematical calculations of average precision. Calculations require more time than for Integer variables, but are faster than calculations with Double variables. A Single variable requires 4 bytes of memory. The type-declaration character is \"!\"."
+msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is specified in the Open statement."
msgstr ""
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3155753\n"
-"54\n"
-"help.text"
-msgid "Double Variables"
-msgstr "Integral i dyfishtë"
-
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150953\n"
-"55\n"
+"03020303.xhp\n"
+"par_id3147349\n"
+"9\n"
"help.text"
-msgid "Double variables can take positive or negative values ranging from 1.79769313486232 x 10E308 to 4.94065645841247 x 10E-324. Double variables are floating-point variables, in which the decimal precision decreases as the non-decimal part of the number increases. Double variables are suitable for precise calculations. Calculations require more time than for Single variables. A Double variable requires 8 bytes of memory. The type-declaration character is \"#\"."
+msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
msgstr ""
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3155747\n"
-"95\n"
+"03020303.xhp\n"
+"hd_id3155415\n"
+"10\n"
"help.text"
-msgid "Currency Variables"
-msgstr "Fusha e valutave"
+msgid "Example:"
+msgstr "Shembull"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153337\n"
-"96\n"
+"03020303.xhp\n"
+"par_id3154730\n"
+"13\n"
"help.text"
-msgid "Currency variables are internally stored as 64-bit numbers (8 Bytes) and displayed as a fixed-decimal number with 15 non-decimal and 4 decimal places. The values range from -922337203685477.5808 to +922337203685477.5807. Currency variables are used to calculate currency values with a high precision. The type-declaration character is \"@\"."
+msgid "Dim sText As Variant REM must be a Variant"
msgstr ""
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3148742\n"
-"58\n"
-"help.text"
-msgid "String Variables"
-msgstr "Modeli i lidhëses është i pavlefshëm"
-
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3151393\n"
-"59\n"
+"03020303.xhp\n"
+"par_id3156276\n"
+"19\n"
"help.text"
-msgid "String variables can hold character strings with up to 65,535 characters. Each character is stored as the corresponding Unicode value. String variables are suitable for word processing within programs and for temporary storage of any non-printable character up to a maximum length of 64 Kbytes. The memory required for storing string variables depends on the number of characters in the variable. The type-declaration character is \"$\"."
+msgid "Seek #iNumber,1 REM Position at start"
msgstr ""
-#: 01020100.xhp
-msgctxt ""
-"01020100.xhp\n"
-"hd_id3150534\n"
-"62\n"
-"help.text"
-msgid "Boolean Variables"
-msgstr "JO logjike"
-
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3145632\n"
-"63\n"
+"03020303.xhp\n"
+"par_id3148405\n"
+"20\n"
"help.text"
-msgid "Boolean variables store only one of two values: TRUE or FALSE. A number 0 evaluates to FALSE, every other value evaluates to TRUE."
+msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
msgstr ""
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3149722\n"
-"65\n"
+"03020303.xhp\n"
+"par_id3154756\n"
+"21\n"
"help.text"
-msgid "Date Variables"
-msgstr "Data (caktuar)"
+msgid "Put #iNumber,, \"This is the second line of text\""
+msgstr "Nga kreu në fund"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3159116\n"
-"66\n"
+"03020303.xhp\n"
+"par_id3145643\n"
+"22\n"
"help.text"
-msgid "Date variables can only contain dates and time values stored in an internal format. Values assigned to Date variables with <link href=\"text/sbasic/shared/03030101.xhp\" name=\"Dateserial\"><emph>Dateserial</emph></link>, <link href=\"text/sbasic/shared/03030102.xhp\" name=\"Datevalue\"><emph>Datevalue</emph></link>, <link href=\"text/sbasic/shared/03030205.xhp\" name=\"Timeserial\"><emph>Timeserial</emph></link> or <link href=\"text/sbasic/shared/03030206.xhp\" name=\"Timevalue\"><emph>Timevalue</emph></link> are automatically converted to the internal format. Date-variables are converted to normal numbers by using the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function. The internal format enables a comparison of date/time values by calculating the difference between two numbers. These variables can only be declared with the key word <emph>Date</emph>."
-msgstr ""
+msgid "Put #iNumber,, \"This is the third line of text\""
+msgstr "Nga kreu në fund"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3148732\n"
-"68\n"
+"03020303.xhp\n"
+"par_id3150299\n"
+"31\n"
"help.text"
-msgid "Initial Variable Values"
-msgstr "Ndrysho vlerat standarde"
+msgid "Put #iNumber,,\"This is a new line of text\""
+msgstr "Nga kreu në fund"
-#: 01020100.xhp
+#: 03020303.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154549\n"
-"69\n"
+"03020303.xhp\n"
+"par_id3166425\n"
+"34\n"
"help.text"
-msgid "As soon as the variable has been declared, it is automatically set to the \"Null\" value. Note the following conventions:"
+msgid "Put #iNumber,20,\"This is the text in record 20\""
msgstr ""
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3143222\n"
-"70\n"
+"03020304.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Numeric</emph> variables are automatically assigned the value \"0\" as soon as they are declared."
-msgstr ""
+msgid "Seek Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3150693\n"
-"71\n"
+"03020304.xhp\n"
+"bm_id3154367\n"
"help.text"
-msgid "<emph>Date variables</emph> are assigned the value 0 internally; equivalent to converting the value to \"0\" with the <link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day\"><emph>Day</emph></link>, <link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month\"><emph>Month</emph></link>, <link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year\"><emph>Year</emph></link> or the <link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour\"><emph>Hour</emph></link>, <link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute\"><emph>Minute</emph></link>, <link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second\"><emph>Second</emph></link> function."
-msgstr ""
+msgid "<bookmark_value>Seek function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154807\n"
-"72\n"
+"03020304.xhp\n"
+"hd_id3154367\n"
+"1\n"
"help.text"
-msgid "<emph>String variables</emph> are assigned an empty-string (\"\") when they are declared."
+msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function [Runtime]\">Seek Function [Runtime]</link>"
msgstr ""
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3153936\n"
-"83\n"
+"03020304.xhp\n"
+"par_id3156280\n"
+"2\n"
"help.text"
-msgid "Arrays"
+msgid "Returns the position for the next writing or reading in a file that was opened with the open statement."
msgstr ""
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3148736\n"
-"84\n"
+"03020304.xhp\n"
+"par_id3153194\n"
+"3\n"
"help.text"
-msgid "$[officename] Basic knows one- or multi-dimensional arrays, defined by a specified variable type. Arrays are suitable for editing lists and tables in programs. Individual elements of an array can be addressed through a numeric index."
+msgid "For random access files, the Seek function returns the number of the next record to be read."
msgstr ""
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3149546\n"
-"85\n"
+"03020304.xhp\n"
+"par_id3161831\n"
+"4\n"
"help.text"
-msgid "Arrays <emph>must</emph> be declared with the <emph>Dim</emph> statement. There are several ways to define the index range of an array:"
+msgid "For all other files, the function returns the byte position at which the next operation is to occur."
msgstr ""
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154567\n"
-"136\n"
+"03020304.xhp\n"
+"par_id3155854\n"
+"5\n"
"help.text"
-msgid "21 elements numbered from 0 to 20"
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Seek</link>."
msgstr ""
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3154397\n"
-"137\n"
+"03020304.xhp\n"
+"hd_id3152460\n"
+"6\n"
"help.text"
-msgid "30 elements (a matrix of 6 x 5 elements)"
-msgstr "Grumbulli vertikal (2 elemente)"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3149690\n"
-"138\n"
+"03020304.xhp\n"
+"par_id3145365\n"
+"7\n"
"help.text"
-msgid "21 elements numbered from 5 to 25"
-msgstr ""
+msgid "Seek (FileNumber)"
+msgstr "~Kërkim i Qëllimit..."
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153113\n"
-"89\n"
+"03020304.xhp\n"
+"hd_id3148575\n"
+"8\n"
"help.text"
-msgid "21 elements (including 0), numbered from -15 to 5"
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3153005\n"
-"90\n"
+"03020304.xhp\n"
+"par_id3159156\n"
+"9\n"
"help.text"
-msgid "The index range can include positive as well as negative numbers."
-msgstr ""
+msgid "Long"
+msgstr "Standard (e gjatë)"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"hd_id3154507\n"
-"91\n"
+"03020304.xhp\n"
+"hd_id3149665\n"
+"10\n"
"help.text"
-msgid "Constants"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01020100.xhp
+#: 03020304.xhp
msgctxt ""
-"01020100.xhp\n"
-"par_id3156357\n"
-"92\n"
+"03020304.xhp\n"
+"par_id3148645\n"
+"11\n"
"help.text"
-msgid "Constants have a fixed value. They are only defined once in the program and cannot be redefined later:"
+msgid "<emph>FileNumber:</emph> The data channel number used in the Open statement."
msgstr ""
-#: 03101700.xhp
+#: 03020305.xhp
msgctxt ""
-"03101700.xhp\n"
+"03020305.xhp\n"
"tit\n"
"help.text"
-msgid "DefObj Statement [Runtime]"
+msgid "Seek Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03101700.xhp
+#: 03020305.xhp
msgctxt ""
-"03101700.xhp\n"
-"bm_id3149811\n"
+"03020305.xhp\n"
+"bm_id3159413\n"
"help.text"
-msgid "<bookmark_value>DefObj statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+msgid "<bookmark_value>Seek statement</bookmark_value>"
+msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
-#: 03101700.xhp
+#: 03020305.xhp
msgctxt ""
-"03101700.xhp\n"
-"hd_id3149811\n"
+"03020305.xhp\n"
+"hd_id3159413\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement [Runtime]\">DefObj Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Runtime]\">Seek Statement [Runtime]</link>"
msgstr ""
-#: 03101700.xhp
+#: 03020305.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3147573\n"
+"03020305.xhp\n"
+"par_id3153381\n"
"2\n"
"help.text"
-msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgid "Sets the position for the next writing or reading in a file that was opened with the Open statement."
msgstr ""
-#: 03101700.xhp
+#: 03020305.xhp
msgctxt ""
-"03101700.xhp\n"
-"hd_id3150504\n"
-"3\n"
+"03020305.xhp\n"
+"par_id2100589\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "For random access files, the Seek statement sets the number of the next record to be accessed."
+msgstr ""
-#: 03101700.xhp
+#: 03020305.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3147530\n"
-"4\n"
+"03020305.xhp\n"
+"par_id5444807\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgid "For all other files, the Seek statement sets the byte position at which the next operation is to occur."
msgstr ""
-#: 03101700.xhp
+#: 03020305.xhp
msgctxt ""
-"03101700.xhp\n"
-"hd_id3153896\n"
+"03020305.xhp\n"
+"par_id3156280\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
+msgstr ""
-#: 03101700.xhp
+#: 03020305.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3148552\n"
+"03020305.xhp\n"
+"hd_id3145785\n"
"6\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03101700.xhp
+#: 03020305.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3150358\n"
+"03020305.xhp\n"
+"par_id3145273\n"
"7\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgid "Seek[#FileNumber], Position (As Long)"
msgstr ""
-#: 03101700.xhp
+#: 03020305.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3148798\n"
+"03020305.xhp\n"
+"hd_id3154321\n"
"8\n"
"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "**Ndryshorja nuk u gjet**"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03101700.xhp
+#: 03020305.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3150769\n"
+"03020305.xhp\n"
+"par_id3153952\n"
"9\n"
"help.text"
-msgid "<emph>DefObj:</emph> Object"
-msgstr "Shiriti i Objektit Tekst"
-
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"hd_id3156212\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3153969\n"
-"12\n"
-"help.text"
-msgid "REM Prefix definitions for variable types:"
-msgstr ""
-
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3156424\n"
-"13\n"
-"help.text"
-msgid "DefBool b"
-msgstr ""
-
-#: 03101700.xhp
-#, fuzzy
-msgctxt ""
-"03101700.xhp\n"
-"par_id3159254\n"
-"14\n"
-"help.text"
-msgid "DefDate t"
-msgstr "Data"
-
-#: 03101700.xhp
-msgctxt ""
-"03101700.xhp\n"
-"par_id3150440\n"
-"15\n"
-"help.text"
-msgid "DefDbL d"
+msgid "<emph>FileNumber: </emph>The data channel number used in the Open statement."
msgstr ""
-#: 03101700.xhp
+#: 03020305.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3161832\n"
-"16\n"
+"03020305.xhp\n"
+"par_id3145366\n"
+"10\n"
"help.text"
-msgid "DefInt i"
+msgid "<emph>Position: </emph>Position for the next writing or reading. Position can be a number between 1 and 2,147,483,647. According to the file type, the position indicates the number of the record (files in the Random mode) or the byte position (files in the Binary, Output, Append or Input mode). The first byte in a file is position 1, the second byte is position 2, and so on."
msgstr ""
-#: 03101700.xhp
+#: 03020400.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3145365\n"
-"17\n"
+"03020400.xhp\n"
+"tit\n"
"help.text"
-msgid "DefLng l"
-msgstr ""
+msgid "Managing Files"
+msgstr "Të gjithë fajllat (*.*)"
-#: 03101700.xhp
+#: 03020400.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3149481\n"
-"18\n"
+"03020400.xhp\n"
+"hd_id3145136\n"
+"1\n"
"help.text"
-msgid "DefObj o"
+msgid "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Managing Files\">Managing Files</link>"
msgstr ""
-#: 03101700.xhp
+#: 03020400.xhp
msgctxt ""
-"03101700.xhp\n"
-"par_id3152886\n"
-"19\n"
+"03020400.xhp\n"
+"par_id3147264\n"
+"2\n"
"help.text"
-msgid "DefVar v"
+msgid "The functions and statements for managing files are described here."
msgstr ""
-#: 03103100.xhp
+#: 03020401.xhp
msgctxt ""
-"03103100.xhp\n"
+"03020401.xhp\n"
"tit\n"
"help.text"
-msgid "Let Statement [Runtime]"
+msgid "ChDir Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03103100.xhp
+#: 03020401.xhp
msgctxt ""
-"03103100.xhp\n"
-"bm_id3147242\n"
+"03020401.xhp\n"
+"bm_id3150178\n"
"help.text"
-msgid "<bookmark_value>Let statement</bookmark_value>"
-msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
+msgid "<bookmark_value>ChDir statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03103100.xhp
+#: 03020401.xhp
msgctxt ""
-"03103100.xhp\n"
-"hd_id3147242\n"
+"03020401.xhp\n"
+"hd_id3150178\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Let Statement [Runtime]\">Let Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"ChDir Statement [Runtime]\">ChDir Statement [Runtime]</link>"
msgstr ""
-#: 03103100.xhp
+#: 03020401.xhp
msgctxt ""
-"03103100.xhp\n"
-"par_id3149233\n"
+"03020401.xhp\n"
+"par_id3153126\n"
"2\n"
"help.text"
-msgid "Assigns a value to a variable."
-msgstr "Shëndron një ndryshore të rastësishme në një vlerë të normalizuar."
+msgid "Changes the current directory or drive."
+msgstr ""
-#: 03103100.xhp
+#: 03020401.xhp
msgctxt ""
-"03103100.xhp\n"
-"hd_id3153127\n"
+"03020401.xhp\n"
+"par_id9783013\n"
+"help.text"
+msgid "This runtime statement currently does not work as documented. See <link href=\"http://www.openoffice.org/issues/show_bug.cgi?id=30692\">this issue</link> for more information."
+msgstr ""
+
+#: 03020401.xhp
+msgctxt ""
+"03020401.xhp\n"
+"hd_id3154347\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03103100.xhp
+#: 03020401.xhp
msgctxt ""
-"03103100.xhp\n"
-"par_id3154285\n"
+"03020401.xhp\n"
+"par_id3153897\n"
"4\n"
"help.text"
-msgid "[Let] VarName=Expression"
-msgstr "**Fraza është e gabueshme**"
+msgid "ChDir Text As String"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03103100.xhp
+#: 03020401.xhp
msgctxt ""
-"03103100.xhp\n"
-"hd_id3148944\n"
+"03020401.xhp\n"
+"hd_id3148664\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03103100.xhp
+#: 03020401.xhp
msgctxt ""
-"03103100.xhp\n"
-"par_id3147560\n"
+"03020401.xhp\n"
+"par_id3150543\n"
"6\n"
"help.text"
-msgid "<emph>VarName:</emph> Variable that you want to assign a value to. Value and variable type must be compatible."
+msgid "<emph>Text:</emph> Any string expression that specifies the directory path or drive."
msgstr ""
-#: 03103100.xhp
+#: 03020401.xhp
msgctxt ""
-"03103100.xhp\n"
-"par_id3148451\n"
+"03020401.xhp\n"
+"par_id3152598\n"
"7\n"
"help.text"
-msgid "As in most BASIC dialects, the keyword <emph>Let</emph> is optional."
+msgid "If you only want to change the current drive, enter the drive letter followed by a colon."
msgstr ""
-#: 03103100.xhp
+#: 03020401.xhp
msgctxt ""
-"03103100.xhp\n"
-"hd_id3145785\n"
+"03020401.xhp\n"
+"hd_id3151116\n"
"8\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03103100.xhp
-msgctxt ""
-"03103100.xhp\n"
-"par_id3152939\n"
-"12\n"
-"help.text"
-msgid "MsgBox Len(sText) ' returns 9"
-msgstr ""
-
-#: 03010000.xhp
-msgctxt ""
-"03010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Screen I/O Functions"
-msgstr "Funksionet statistikore"
-
-#: 03010000.xhp
-msgctxt ""
-"03010000.xhp\n"
-"hd_id3156280\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010000.xhp\" name=\"Screen I/O Functions\">Screen I/O Functions</link>"
-msgstr ""
-
-#: 03010000.xhp
-msgctxt ""
-"03010000.xhp\n"
-"par_id3153770\n"
-"2\n"
-"help.text"
-msgid "This section describes the Runtime Functions used to call dialogs for the input and output of user entries."
-msgstr ""
-
-#: 03131600.xhp
+#: 03020402.xhp
msgctxt ""
-"03131600.xhp\n"
+"03020402.xhp\n"
"tit\n"
"help.text"
-msgid "CreateUnoService Function [Runtime]"
+msgid "ChDrive Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03131600.xhp
+#: 03020402.xhp
msgctxt ""
-"03131600.xhp\n"
-"bm_id3150682\n"
+"03020402.xhp\n"
+"bm_id3145068\n"
"help.text"
-msgid "<bookmark_value>CreateUnoService function</bookmark_value>"
+msgid "<bookmark_value>ChDrive statement</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03131600.xhp
+#: 03020402.xhp
msgctxt ""
-"03131600.xhp\n"
-"hd_id3150682\n"
+"03020402.xhp\n"
+"hd_id3145068\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131600.xhp\" name=\"CreateUnoService Function [Runtime]\">CreateUnoService Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"ChDrive Statement [Runtime]\">ChDrive Statement [Runtime]</link>"
msgstr ""
-#: 03131600.xhp
+#: 03020402.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_id3152924\n"
+"03020402.xhp\n"
+"par_id3149656\n"
"2\n"
"help.text"
-msgid "Instantiates a Uno service with the ProcessServiceManager."
-msgstr ""
+msgid "Changes the current drive."
+msgstr "Pajisje e CD-ROM"
-#: 03131600.xhp
+#: 03020402.xhp
msgctxt ""
-"03131600.xhp\n"
-"hd_id3152801\n"
+"03020402.xhp\n"
+"hd_id3154138\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03131600.xhp
+#: 03020402.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_id3153346\n"
+"03020402.xhp\n"
+"par_id3154685\n"
"4\n"
"help.text"
-msgid "oService = CreateUnoService( Uno service name )"
-msgstr ""
-
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"par_idN1060F\n"
-"help.text"
-msgid "For a list of available services, go to: http://api.libreoffice.org/docs/common/ref/com/sun/star/module-ix.html"
-msgstr ""
+msgid "ChDrive Text As String"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03131600.xhp
+#: 03020402.xhp
msgctxt ""
-"03131600.xhp\n"
-"hd_id3151111\n"
+"03020402.xhp\n"
+"hd_id3156423\n"
"5\n"
"help.text"
-msgid "Examples:"
-msgstr "Shembuj:"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03131600.xhp
+#: 03020402.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_id3154046\n"
+"03020402.xhp\n"
+"par_id3145172\n"
"6\n"
"help.text"
-msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
-msgstr ""
-
-#: 03131600.xhp
-msgctxt ""
-"03131600.xhp\n"
-"bm_id8334604\n"
-"help.text"
-msgid "<bookmark_value>filepicker;API service</bookmark_value>"
+msgid "<emph>Text:</emph> Any string expression that contains the drive letter of the new drive. If you want, you can use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
-#: 03131600.xhp
+#: 03020402.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_idN10625\n"
+"03020402.xhp\n"
+"par_id3145785\n"
+"7\n"
"help.text"
-msgid "The following code uses a service to open a file open dialog:"
+msgid "The drive must be assigned a capital letter. Under Windows, the letter that you assign the drive is restricted by the settings in LASTDRV. If the drive argument is a multiple-character string, only the first letter is relevant. If you attempt to access a non-existent drive, an error occurs that you can respond to with the OnError statement."
msgstr ""
-#: 03131600.xhp
+#: 03020402.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_idN1062B\n"
+"03020402.xhp\n"
+"hd_id3153188\n"
+"8\n"
"help.text"
-msgid "fName = FileOpenDialog (\"Please select a file\")"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03131600.xhp
+#: 03020402.xhp
msgctxt ""
-"03131600.xhp\n"
-"par_idN10630\n"
+"03020402.xhp\n"
+"par_id3152576\n"
+"10\n"
"help.text"
-msgid "Print \"file chosen: \"+fName"
+msgid "ChDrive \"D\" ' Only possible if a drive 'D' exists."
msgstr ""
-#: 03030104.xhp
+#: 03020403.xhp
msgctxt ""
-"03030104.xhp\n"
+"03020403.xhp\n"
"tit\n"
"help.text"
-msgid "Month Function [Runtime]"
+msgid "CurDir Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03030104.xhp
+#: 03020403.xhp
msgctxt ""
-"03030104.xhp\n"
-"bm_id3153127\n"
+"03020403.xhp\n"
+"bm_id3153126\n"
"help.text"
-msgid "<bookmark_value>Month function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>CurDir function</bookmark_value>"
+msgstr "E kthen funksionin gabim plotwsues"
-#: 03030104.xhp
+#: 03020403.xhp
msgctxt ""
-"03030104.xhp\n"
-"hd_id3153127\n"
+"03020403.xhp\n"
+"hd_id3153126\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function [Runtime]\">Month Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020403.xhp\">CurDir Function [Runtime]</link>"
msgstr ""
-#: 03030104.xhp
+#: 03020403.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3148550\n"
+"03020403.xhp\n"
+"par_id3156343\n"
"2\n"
"help.text"
-msgid "Returns the month of a year from a serial date that is generated by the DateSerial or the DateValue function."
+msgid "Returns a variant string that represents the current path of the specified drive."
msgstr ""
-#: 03030104.xhp
+#: 03020403.xhp
msgctxt ""
-"03030104.xhp\n"
-"hd_id3145068\n"
+"03020403.xhp\n"
+"hd_id3149457\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03030104.xhp
+#: 03020403.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3150398\n"
+"03020403.xhp\n"
+"par_id3153381\n"
"4\n"
"help.text"
-msgid "Month (Number)"
-msgstr "Numri i faqes"
+msgid "CurDir [(Text As String)]"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03030104.xhp
+#: 03020403.xhp
msgctxt ""
-"03030104.xhp\n"
+"03020403.xhp\n"
"hd_id3154366\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03030104.xhp
+#: 03020403.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3154125\n"
+"03020403.xhp\n"
+"par_id3156281\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "String"
+msgstr "Varg"
-#: 03030104.xhp
+#: 03020403.xhp
msgctxt ""
-"03030104.xhp\n"
-"hd_id3150768\n"
+"03020403.xhp\n"
+"hd_id3156423\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03030104.xhp
+#: 03020403.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3156423\n"
+"03020403.xhp\n"
+"par_id3153193\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that contains the serial date number that is used to determine the month of the year."
+msgid "<emph>Text:</emph> Any string expression that specifies an existing drive (for example, \"C\" for the first partition of the first hard drive)."
msgstr ""
-#: 03030104.xhp
+#: 03020403.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3153770\n"
+"03020403.xhp\n"
+"par_id3155133\n"
"9\n"
"help.text"
-msgid "This function is the opposite of the <emph>DateSerial </emph>function. It returns the month in the year that corresponds to the serial date that is generated by <emph>DateSerial</emph> or <emph>DateValue</emph>. For example, the expression"
+msgid "If no drive is specified or if the drive is a zero-length string (\"\"), CurDir returns the path for the current drive. $[officename] Basic reports an error if the syntax of the drive description is incorrect, the drive does not exist, or if the drive letter occurs after the letter defined in the CONFIG.SYS with the Lastdrive statement."
msgstr ""
-#: 03030104.xhp
+#: 03020403.xhp
msgctxt ""
-"03030104.xhp\n"
-"par_id3145366\n"
-"11\n"
+"03020403.xhp\n"
+"par_id3150010\n"
+"10\n"
"help.text"
-msgid "returns the value 12."
-msgstr "Kthen vlerën llogjike SAKTË."
+msgid "This function is not case-sensitive."
+msgstr ""
-#: 03030104.xhp
+#: 03020403.xhp
msgctxt ""
-"03030104.xhp\n"
-"hd_id3146923\n"
-"12\n"
+"03020403.xhp\n"
+"hd_id3155411\n"
+"11\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03030104.xhp
-msgctxt ""
-"03030104.xhp\n"
-"par_id3149664\n"
-"14\n"
-"help.text"
-msgid "MsgBox \"\" & Month(Now) ,64,\"The current month\""
-msgstr ""
-
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
+"03020404.xhp\n"
"tit\n"
"help.text"
-msgid "GoSub...Return Statement [Runtime]"
-msgstr ""
+msgid "Dir Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"bm_id3147242\n"
+"03020404.xhp\n"
+"bm_id3154347\n"
"help.text"
-msgid "<bookmark_value>GoSub...Return statement</bookmark_value>"
-msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
+msgid "<bookmark_value>Dir function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"hd_id3147242\n"
+"03020404.xhp\n"
+"hd_id3154347\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090301.xhp\" name=\"GoSub...Return Statement [Runtime]\">GoSub...Return Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020404.xhp\" name=\"Dir Function [Runtime]\">Dir Function [Runtime]</link>"
msgstr ""
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3145316\n"
+"03020404.xhp\n"
+"par_id3153381\n"
"2\n"
"help.text"
-msgid "Calls a subroutine that is indicated by a label from a subroutine or a function. The statements following the label are executed until the next Return statement. Afterwards, the program continues with the statement that follows the <emph>GoSub </emph>statement."
+msgid "Returns the name of a file, a directory, or all of the files and the directories on a drive or in a directory that match the specified search path."
msgstr ""
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"hd_id3145609\n"
+"03020404.xhp\n"
+"hd_id3154365\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3145069\n"
+"03020404.xhp\n"
+"par_id3156282\n"
"4\n"
"help.text"
-msgid "see Parameters"
-msgstr "Parametrat animues"
+msgid "Dir [(Text As String) [, Attrib As Integer]]"
+msgstr ""
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"hd_id3147265\n"
+"03020404.xhp\n"
+"hd_id3156424\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3148664\n"
+"03020404.xhp\n"
+"par_id3153193\n"
"6\n"
"help.text"
-msgid "Sub/Function"
-msgstr "Funksion eksponencial"
+msgid "String"
+msgstr "Varg"
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3150400\n"
+"03020404.xhp\n"
+"hd_id3153770\n"
"7\n"
"help.text"
-msgid "statement block"
-msgstr "Shigjetat e bllokut"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03090301.xhp
-#, fuzzy
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3154140\n"
+"03020404.xhp\n"
+"par_id3161831\n"
"8\n"
"help.text"
-msgid "Label"
-msgstr "Emërtimi"
+msgid "<emph>Text:</emph> Any string expression that specifies the search path, directory or file. This argument can only be specified the first time that you call the Dir function. If you want, you can enter the path in <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3150869\n"
+"03020404.xhp\n"
+"par_id3146974\n"
"9\n"
"help.text"
-msgid "statement block"
-msgstr "Shigjetat e bllokut"
-
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3154909\n"
-"10\n"
-"help.text"
-msgid "GoSub Label"
-msgstr "Teksti i etiketës"
+msgid "<emph>Attrib: </emph>Any integer expression that specifies bitwise file attributes. The Dir function only returns files or directories that match the specified attributes. You can combine several attributes by adding the attribute values:"
+msgstr ""
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3153969\n"
+"03020404.xhp\n"
+"par_id3149666\n"
"11\n"
"help.text"
-msgid "Exit Sub/Function"
-msgstr "**Tejmbushje e funksionit të katrorit**"
-
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3154685\n"
-"12\n"
-"help.text"
-msgid "Label:"
-msgstr "Etiketa:"
-
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3145786\n"
-"13\n"
-"help.text"
-msgid "statement block"
-msgstr "Shigjetat e bllokut"
-
-#: 03090301.xhp
-#, fuzzy
-msgctxt ""
-"03090301.xhp\n"
-"par_id3159252\n"
-"14\n"
-"help.text"
-msgid "Return"
-msgstr "Tipi i rikthimit"
+msgid "0 : Normal files."
+msgstr "Të gjithë fajllat (*.*)"
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3154321\n"
+"03020404.xhp\n"
+"par_id3147427\n"
"15\n"
"help.text"
-msgid "End Sub/Function"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "16 : Returns the name of the directory only."
+msgstr "Emri i Grupit të Volumit:"
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3147318\n"
+"03020404.xhp\n"
+"par_id3153952\n"
"16\n"
"help.text"
-msgid "The <emph>GoSub</emph> statement calls a local subroutine indicated by a label from within a subroutine or a function. The name of the label must end with a colon (\":\")."
+msgid "Use this attribute to check if a file or directory exists, or to determine all files and folders in a specific directory."
msgstr ""
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3153190\n"
+"03020404.xhp\n"
+"par_id3159156\n"
"17\n"
"help.text"
-msgid "If the program encounters a Return statement not preceded by <emph>GoSub</emph>, $[officename] Basic returns an error message. Use <emph>Exit Sub</emph> or <emph>Exit Function</emph> to ensure that the program leaves a Sub or Function before reaching the next Return statement."
+msgid "To check if a file exists, enter the complete path and name of the file. If the file or directory name does not exist, the Dir function returns a zero-length string (\"\")."
msgstr ""
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3145799\n"
+"03020404.xhp\n"
+"par_id3154012\n"
+"18\n"
+"help.text"
+msgid "To generate a list of all existing files in a specific directory, proceed as follows: The first time you call the Dir function, specify the complete search path for the files, for example, \"D:\\Files\\*.sxw\". If the path is correct and the search finds at least one file, the Dir function returns the name of the first file that matches the search path. To return additional file names that match the path, call Dir again, but with no arguments."
+msgstr ""
+
+#: 03020404.xhp
+msgctxt ""
+"03020404.xhp\n"
+"par_id3147348\n"
"19\n"
"help.text"
-msgid "The following example demonstrates the use of <emph>GoSub</emph> and <emph>Return</emph>. By executing a program section twice, the program calculates the square root of two numbers that are entered by the user."
+msgid "To return directories only, use the attribute parameter. The same applies if you want to determine the name of a volume (for example, a hard drive partition)"
msgstr ""
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"hd_id3156284\n"
+"03020404.xhp\n"
+"hd_id3154942\n"
"20\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03090301.xhp
-msgctxt ""
-"03090301.xhp\n"
-"par_id3146970\n"
-"25\n"
-"help.text"
-msgid "iInputa = Int(InputBox$ \"Enter the first number: \",\"NumberInput\"))"
-msgstr ""
-
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3150329\n"
-"26\n"
+"03020404.xhp\n"
+"par_id3148455\n"
+"22\n"
"help.text"
-msgid "iInputb = Int(InputBox$ \"Enter the second number: \",\"NumberInput\"))"
+msgid "' Displays all files and directories"
msgstr ""
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3154756\n"
-"29\n"
+"03020404.xhp\n"
+"par_id3153416\n"
+"27\n"
"help.text"
-msgid "Print \"The square root of\";iInputa;\" is\";iInputc"
-msgstr ""
+msgid "sDir=\"Directories:\""
+msgstr "Duke inicializuar ODBC direktoriumet"
-#: 03090301.xhp
+#: 03020404.xhp
msgctxt ""
-"03090301.xhp\n"
-"par_id3147340\n"
-"32\n"
+"03020404.xhp\n"
+"par_id3154253\n"
+"34\n"
"help.text"
-msgid "Print \"The square root of\";iInputb;\" is\";iInputc"
-msgstr ""
+msgid "' Get the directories"
+msgstr "Duke inicializuar ODBC direktoriumet"
-#: 03090408.xhp
+#: 03020405.xhp
msgctxt ""
-"03090408.xhp\n"
+"03020405.xhp\n"
"tit\n"
"help.text"
-msgid "Stop Statement [Runtime]"
+msgid "FileAttr-Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03090408.xhp
+#: 03020405.xhp
msgctxt ""
-"03090408.xhp\n"
-"bm_id3153311\n"
+"03020405.xhp\n"
+"bm_id3153380\n"
"help.text"
-msgid "<bookmark_value>Stop statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+msgid "<bookmark_value>FileAttr function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03090408.xhp
+#: 03020405.xhp
msgctxt ""
-"03090408.xhp\n"
-"hd_id3153311\n"
+"03020405.xhp\n"
+"hd_id3153380\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Stop Statement [Runtime]\">Stop Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020405.xhp\" name=\"FileAttr-Function [Runtime]\">FileAttr Function [Runtime]</link>"
msgstr ""
-#: 03090408.xhp
+#: 03020405.xhp
msgctxt ""
-"03090408.xhp\n"
-"par_id3154142\n"
+"03020405.xhp\n"
+"par_id3154366\n"
"2\n"
"help.text"
-msgid "Stops the execution of the Basic program."
+msgid "Returns the access mode or the file access number of a file that was opened with the Open statement. The file access number is dependent on the operating system (OSH = Operating System Handle)."
msgstr ""
-#: 03090408.xhp
+#: 03020405.xhp
msgctxt ""
-"03090408.xhp\n"
-"hd_id3153126\n"
+"03020405.xhp\n"
+"par_id3153364\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "If you use a 32-Bit operating system, you cannot use the FileAttr-Function to determine the file access number."
+msgstr ""
-#: 03090408.xhp
+#: 03020405.xhp
msgctxt ""
-"03090408.xhp\n"
-"par_id3156023\n"
+"03020405.xhp\n"
+"par_id3163713\n"
"4\n"
"help.text"
-msgid "Stop"
-msgstr "Ndal"
+msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>"
+msgstr ""
-#: 03090408.xhp
+#: 03020405.xhp
msgctxt ""
-"03090408.xhp\n"
-"hd_id3156344\n"
+"03020405.xhp\n"
+"hd_id3151116\n"
"5\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03010305.xhp
+#: 03020405.xhp
msgctxt ""
-"03010305.xhp\n"
-"tit\n"
+"03020405.xhp\n"
+"par_id3154012\n"
+"6\n"
"help.text"
-msgid "RGB Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "FileAttr (FileNumber As Integer, Attribute As Integer)"
+msgstr ""
-#: 03010305.xhp
+#: 03020405.xhp
msgctxt ""
-"03010305.xhp\n"
-"hd_id3150792\n"
-"1\n"
+"03020405.xhp\n"
+"hd_id3147349\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB Function [Runtime]\">RGB Function [Runtime]</link>"
+msgid "Return value:"
+msgstr "Vlerë absolute"
+
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3146974\n"
+"8\n"
+"help.text"
+msgid "Integer"
+msgstr "Numër i plotë"
+
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"hd_id3153728\n"
+"9\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Parametrat animues"
+
+#: 03020405.xhp
+msgctxt ""
+"03020405.xhp\n"
+"par_id3151074\n"
+"10\n"
+"help.text"
+msgid "<emph>FileNumber:</emph> The number of the file that was opened with the Open statement."
msgstr ""
-#: 03010305.xhp
+#: 03020405.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3150447\n"
-"2\n"
+"03020405.xhp\n"
+"par_id3144766\n"
+"11\n"
"help.text"
-msgid "Returns a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"long integer color value\">long integer color value</link> consisting of red, green, and blue components."
+msgid "<emph>Attribute:</emph> Integer expression that indicates the type of file information that you want to return. The following values are possible:"
msgstr ""
-#: 03010305.xhp
+#: 03020405.xhp
msgctxt ""
-"03010305.xhp\n"
-"hd_id3147229\n"
-"3\n"
+"03020405.xhp\n"
+"par_id3147396\n"
+"12\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "1: The FileAttr-Function indicates the access mode of the file."
+msgstr ""
-#: 03010305.xhp
+#: 03020405.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3155132\n"
-"4\n"
+"03020405.xhp\n"
+"par_id3149959\n"
+"13\n"
"help.text"
-msgid "RGB (Red, Green, Blue)"
+msgid "2: The FileAttr-Function returns the file access number of the operating system."
msgstr ""
-#: 03010305.xhp
+#: 03020405.xhp
msgctxt ""
-"03010305.xhp\n"
-"hd_id3156442\n"
-"5\n"
+"03020405.xhp\n"
+"par_id3154018\n"
+"14\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "If you specify a parameter attribute with a value of 1, the following return values apply:"
+msgstr ""
-#: 03010305.xhp
+#: 03020405.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3159153\n"
-"6\n"
+"03020405.xhp\n"
+"par_id3149124\n"
+"15\n"
"help.text"
-msgid "Long"
-msgstr "Standard (e gjatë)"
+msgid "1 - INPUT (file open for input)"
+msgstr "Protokolli për shkarkimin e file-ve:"
-#: 03010305.xhp
+#: 03020405.xhp
msgctxt ""
-"03010305.xhp\n"
-"hd_id3154013\n"
-"7\n"
+"03020405.xhp\n"
+"par_id3156275\n"
+"16\n"
"help.text"
-msgid "Parameter:"
-msgstr "Parametri i sllajdit"
+msgid "2 - OUTPUT (file open for output)"
+msgstr "Protokolli për shkarkimin e file-ve:"
-#: 03010305.xhp
+#: 03020405.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3152597\n"
-"8\n"
+"03020405.xhp\n"
+"par_id3155066\n"
+"17\n"
"help.text"
-msgid "<emph>Red</emph>: Any integer expression that represents the red component (0-255) of the composite color."
+msgid "4 - RANDOM (file open for random access)"
msgstr ""
-#: 03010305.xhp
+#: 03020405.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3146974\n"
-"9\n"
+"03020405.xhp\n"
+"par_id3148406\n"
+"18\n"
"help.text"
-msgid "<emph>Green</emph>: Any integer expression that represents the green component (0-255) of the composite color."
+msgid "8 - APPEND (file open for appending)"
msgstr ""
-#: 03010305.xhp
+#: 03020405.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3151113\n"
-"10\n"
+"03020405.xhp\n"
+"par_id3154757\n"
+"19\n"
"help.text"
-msgid "<emph>Blue</emph>: Any integer expression that represents the blue component (0-255) of the composite color."
+msgid "32 - BINARY (file open in binary mode)."
msgstr ""
-#: 03010305.xhp
+#: 03020405.xhp
msgctxt ""
-"03010305.xhp\n"
-"hd_id3147435\n"
-"11\n"
+"03020405.xhp\n"
+"hd_id3147339\n"
+"20\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03010305.xhp
-msgctxt ""
-"03010305.xhp\n"
-"par_id3145647\n"
-"15\n"
-"help.text"
-msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
-msgstr ""
-
-#: 03010305.xhp
+#: 03020405.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3154491\n"
-"16\n"
+"03020405.xhp\n"
+"par_id3155607\n"
+"29\n"
"help.text"
-msgid "\"red= \" & red(lVar) & Chr(13)&_"
-msgstr ""
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Nga kreu në fund"
-#: 03010305.xhp
+#: 03020405.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3149401\n"
-"17\n"
+"03020405.xhp\n"
+"par_id3150361\n"
+"30\n"
"help.text"
-msgid "\"green= \" & green(lVar) & Chr(13)&_"
+msgid "MsgBox FileAttr(#iNumber, 1 ),0,\"Access mode\""
msgstr ""
-#: 03010305.xhp
+#: 03020405.xhp
msgctxt ""
-"03010305.xhp\n"
-"par_id3150716\n"
-"18\n"
+"03020405.xhp\n"
+"par_id3149817\n"
+"31\n"
"help.text"
-msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgid "MsgBox FileAttr(#iNumber, 2 ),0,\"File attribute\""
msgstr ""
-#: 03102600.xhp
+#: 03020406.xhp
msgctxt ""
-"03102600.xhp\n"
+"03020406.xhp\n"
"tit\n"
"help.text"
-msgid "IsNull Function [Runtime]"
+msgid "FileCopy Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03102600.xhp
+#: 03020406.xhp
msgctxt ""
-"03102600.xhp\n"
-"bm_id3155555\n"
+"03020406.xhp\n"
+"bm_id3154840\n"
"help.text"
-msgid "<bookmark_value>IsNull function</bookmark_value><bookmark_value>Null value</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>FileCopy statement</bookmark_value>"
+msgstr "Veprimi përfundoi [Time]: [1]. Vlera kthyese [2]."
-#: 03102600.xhp
+#: 03020406.xhp
msgctxt ""
-"03102600.xhp\n"
-"hd_id3155555\n"
+"03020406.xhp\n"
+"hd_id3154840\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"IsNull Function [Runtime]\">IsNull Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"FileCopy Statement [Runtime]\">FileCopy Statement [Runtime]</link>"
msgstr ""
-#: 03102600.xhp
+#: 03020406.xhp
msgctxt ""
-"03102600.xhp\n"
-"par_id3146957\n"
+"03020406.xhp\n"
+"par_id3149497\n"
"2\n"
"help.text"
-msgid "Tests if a Variant contains the special Null value, indicating that the variable does not contain data."
-msgstr ""
+msgid "Copies a file."
+msgstr "Emri i fajllit"
-#: 03102600.xhp
+#: 03020406.xhp
msgctxt ""
-"03102600.xhp\n"
-"hd_id3150670\n"
+"03020406.xhp\n"
+"hd_id3147443\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03102600.xhp
+#: 03020406.xhp
msgctxt ""
-"03102600.xhp\n"
-"par_id3150984\n"
+"03020406.xhp\n"
+"par_id3146957\n"
"4\n"
"help.text"
-msgid "IsNull (Var)"
-msgstr "Var (mostër)"
+msgid "FileCopy TextFrom As String, TextTo As String"
+msgstr ""
-#: 03102600.xhp
+#: 03020406.xhp
msgctxt ""
-"03102600.xhp\n"
-"hd_id3149514\n"
+"03020406.xhp\n"
+"hd_id3153825\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03102600.xhp
+#: 03020406.xhp
msgctxt ""
-"03102600.xhp\n"
-"par_id3145609\n"
+"03020406.xhp\n"
+"par_id3155390\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "JO logjike"
+msgid "<emph>TextFrom:</emph> Any string expression that specifies the name of the file that you want to copy. The expression can contain optional path and drive information. If you want, you can enter a path in <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
-#: 03102600.xhp
+#: 03020406.xhp
msgctxt ""
-"03102600.xhp\n"
-"hd_id3149669\n"
+"03020406.xhp\n"
+"par_id3150669\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03102600.xhp
-msgctxt ""
-"03102600.xhp\n"
-"par_id3159414\n"
-"8\n"
-"help.text"
-msgid "<emph>Var:</emph> Any variable that you want to test. This function returns True if the Variant contains the Null value, or False if the Variant does not contain the Null value."
+msgid "<emph>TextTo:</emph> Any string expression that specifies where you want to copy the source file to. The expression can contain the destination drive, the path, and file name, or the path in URL notation."
msgstr ""
-#: 03102600.xhp
+#: 03020406.xhp
msgctxt ""
-"03102600.xhp\n"
-"par_idN1062A\n"
+"03020406.xhp\n"
+"par_id3150791\n"
+"8\n"
"help.text"
-msgid "<emph>Null</emph> - This value is used for a variant data sub type without valid contents."
+msgid "You can only use the FileCopy statement to copy files that are not opened."
msgstr ""
-#: 03102600.xhp
+#: 03020406.xhp
msgctxt ""
-"03102600.xhp\n"
-"hd_id3153381\n"
+"03020406.xhp\n"
+"hd_id3125863\n"
"9\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03070300.xhp
+#: 03020407.xhp
msgctxt ""
-"03070300.xhp\n"
+"03020407.xhp\n"
"tit\n"
"help.text"
-msgid "\"+\" Operator [Runtime]"
-msgstr "Gabim nw kohw: #"
+msgid "FileDateTime Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03070300.xhp
+#: 03020407.xhp
msgctxt ""
-"03070300.xhp\n"
-"bm_id3145316\n"
+"03020407.xhp\n"
+"bm_id3153361\n"
"help.text"
-msgid "<bookmark_value>\"+\" operator (mathematical)</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>FileDateTime function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03070300.xhp
+#: 03020407.xhp
msgctxt ""
-"03070300.xhp\n"
-"hd_id3145316\n"
+"03020407.xhp\n"
+"hd_id3153361\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070300.xhp\">\"+\" Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"FileDateTime Function [Runtime]\">FileDateTime Function [Runtime]</link>"
msgstr ""
-#: 03070300.xhp
+#: 03020407.xhp
msgctxt ""
-"03070300.xhp\n"
-"par_id3145068\n"
+"03020407.xhp\n"
+"par_id3156423\n"
"2\n"
"help.text"
-msgid "Adds or combines two expressions."
+msgid "Returns a string that contains the date and the time that a file was created or last modified."
msgstr ""
-#: 03070300.xhp
+#: 03020407.xhp
msgctxt ""
-"03070300.xhp\n"
-"hd_id3144500\n"
+"03020407.xhp\n"
+"hd_id3154685\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03070300.xhp
+#: 03020407.xhp
msgctxt ""
-"03070300.xhp\n"
-"par_id3150358\n"
+"03020407.xhp\n"
+"par_id3154124\n"
"4\n"
"help.text"
-msgid "Result = Expression1 + Expression2"
-msgstr "Gabim: Pa rezultat"
+msgid "FileDateTime (Text As String)"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03070300.xhp
+#: 03020407.xhp
msgctxt ""
-"03070300.xhp\n"
-"hd_id3150400\n"
+"03020407.xhp\n"
+"hd_id3150448\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03070300.xhp
+#: 03020407.xhp
msgctxt ""
-"03070300.xhp\n"
-"par_id3154123\n"
+"03020407.xhp\n"
+"par_id3159153\n"
"6\n"
"help.text"
-msgid "<emph>Result:</emph> Any numerical expression that contains the result of the addition."
+msgid "<emph>Text:</emph> Any string expression that contains an unambiguous (no wildcards) file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
-#: 03070300.xhp
+#: 03020407.xhp
msgctxt ""
-"03070300.xhp\n"
-"par_id3150870\n"
+"03020407.xhp\n"
+"par_id3155306\n"
"7\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to combine or to add."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "This function determines the exact time of creation or last modification of a file, returned in the format \"MM.DD.YYYY HH.MM.SS\"."
+msgstr ""
-#: 03070300.xhp
+#: 03020407.xhp
msgctxt ""
-"03070300.xhp\n"
-"hd_id3153969\n"
+"03020407.xhp\n"
+"hd_id3146119\n"
"8\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03120311.xhp
+#: 03020408.xhp
msgctxt ""
-"03120311.xhp\n"
+"03020408.xhp\n"
"tit\n"
"help.text"
-msgid "Trim Function [Runtime]"
+msgid "FileLen-Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03120311.xhp
+#: 03020408.xhp
msgctxt ""
-"03120311.xhp\n"
-"bm_id3150616\n"
+"03020408.xhp\n"
+"bm_id3153126\n"
"help.text"
-msgid "<bookmark_value>Trim function</bookmark_value>"
-msgstr "E kthen funksionin gabim plotwsues"
+msgid "<bookmark_value>FileLen function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03120311.xhp
+#: 03020408.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3150616\n"
+"03020408.xhp\n"
+"hd_id3153126\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Trim Function [Runtime]\">Trim Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"FileLen-Function [Runtime]\">FileLen Function [Runtime]</link>"
msgstr ""
-#: 03120311.xhp
+#: 03020408.xhp
msgctxt ""
-"03120311.xhp\n"
-"par_id3149177\n"
+"03020408.xhp\n"
+"par_id3145068\n"
"2\n"
"help.text"
-msgid "Removes all leading and trailing spaces from a string expression."
+msgid "Returns the length of a file in bytes."
msgstr ""
-#: 03120311.xhp
+#: 03020408.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3159157\n"
+"03020408.xhp\n"
+"hd_id3159414\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03120311.xhp
+#: 03020408.xhp
msgctxt ""
-"03120311.xhp\n"
-"par_id3155341\n"
+"03020408.xhp\n"
+"par_id3149656\n"
"4\n"
"help.text"
-msgid "Trim( Text As String )"
+msgid "FileLen (Text As String)"
msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03120311.xhp
+#: 03020408.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3155388\n"
+"03020408.xhp\n"
+"hd_id3148798\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03120311.xhp
+#: 03020408.xhp
msgctxt ""
-"03120311.xhp\n"
-"par_id3143228\n"
+"03020408.xhp\n"
+"par_id3156282\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "Long"
+msgstr "Standard (e gjatë)"
-#: 03120311.xhp
+#: 03020408.xhp
msgctxt ""
-"03120311.xhp\n"
-"hd_id3145609\n"
+"03020408.xhp\n"
+"hd_id3150768\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03120311.xhp
+#: 03020408.xhp
msgctxt ""
-"03120311.xhp\n"
-"par_id3159414\n"
+"03020408.xhp\n"
+"par_id3153193\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
-
-#: 03120311.xhp
-msgctxt ""
-"03120311.xhp\n"
-"hd_id3148663\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03000000.xhp
-msgctxt ""
-"03000000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Run-Time Functions"
-msgstr "Paraqit Funksionet e Vizatimit"
+msgid "<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
-#: 03000000.xhp
+#: 03020408.xhp
msgctxt ""
-"03000000.xhp\n"
-"hd_id3152895\n"
-"1\n"
+"03020408.xhp\n"
+"par_id3150439\n"
+"9\n"
"help.text"
-msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/03000000.xhp\" name=\"Run-Time Functions\">Run-Time Functions</link></variable>"
+msgid "This function determines the length of a file. If the FileLen function is called for an open file, it returns the file length before it was opened. To determine the current file length of an open file, use the Lof function."
msgstr ""
-#: 03000000.xhp
+#: 03020408.xhp
msgctxt ""
-"03000000.xhp\n"
-"par_id3148983\n"
-"2\n"
+"03020408.xhp\n"
+"hd_id3163710\n"
+"10\n"
"help.text"
-msgid "This section describes the Runtime Functions of <item type=\"productname\">%PRODUCTNAME</item> Basic."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03020103.xhp
+#: 03020409.xhp
msgctxt ""
-"03020103.xhp\n"
+"03020409.xhp\n"
"tit\n"
"help.text"
-msgid "Open Statement[Runtime]"
+msgid "GetAttr Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020103.xhp
+#: 03020409.xhp
msgctxt ""
-"03020103.xhp\n"
-"bm_id3150791\n"
+"03020409.xhp\n"
+"bm_id3150984\n"
"help.text"
-msgid "<bookmark_value>Open statement</bookmark_value>"
-msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
+msgid "<bookmark_value>GetAttr function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03020103.xhp
+#: 03020409.xhp
msgctxt ""
-"03020103.xhp\n"
-"hd_id3150791\n"
+"03020409.xhp\n"
+"hd_id3150984\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open Statement[Runtime]\">Open Statement[Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"GetAttr Function [Runtime]\">GetAttr Function [Runtime]</link>"
msgstr ""
-#: 03020103.xhp
+#: 03020409.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3150769\n"
+"03020409.xhp\n"
+"par_id3154347\n"
"2\n"
"help.text"
-msgid "Opens a data channel."
-msgstr "DDE kanali i bllokuar"
+msgid "Returns a bit pattern that identifies the file type or the name of a volume or a directory."
+msgstr ""
-#: 03020103.xhp
+#: 03020409.xhp
msgctxt ""
-"03020103.xhp\n"
-"hd_id3147230\n"
+"03020409.xhp\n"
+"hd_id3149457\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03020103.xhp
+#: 03020409.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3154124\n"
+"03020409.xhp\n"
+"par_id3150359\n"
"4\n"
"help.text"
-msgid "Open FileName As String [For Mode] [Access IOMode] [Protected] As [#]FileNumber As Integer [Len = DatasetLength]"
-msgstr ""
+msgid "GetAttr (Text As String)"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03020103.xhp
+#: 03020409.xhp
msgctxt ""
-"03020103.xhp\n"
-"hd_id3156280\n"
+"03020409.xhp\n"
+"hd_id3151211\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03020103.xhp
+#: 03020409.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3155132\n"
+"03020409.xhp\n"
+"par_id3154909\n"
"6\n"
"help.text"
-msgid "<emph>FileName: </emph>Name and path of the file that you wan to open. If you try to read a file that does not exist (Access = Read), an error message appears. If you try to write to a file that does not exist (Access = Write), a new file is created."
-msgstr ""
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 03020103.xhp
+#: 03020409.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3149262\n"
+"03020409.xhp\n"
+"hd_id3145172\n"
"7\n"
"help.text"
-msgid "<emph>Mode:</emph> Keyword that specifies the file mode. Valid values: Append (append to sequential file), Binary (data can be accessed by bytes using Get and Put), Input (opens data channel for reading), Output (opens data channel for writing), and Random (edits relative files)."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03020103.xhp
+#: 03020409.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3154014\n"
+"03020409.xhp\n"
+"par_id3151042\n"
"8\n"
"help.text"
-msgid "<emph>IOMode:</emph> Keyword that defines the access type. Valid values: Read (read-only), Write (write-only), Read Write (both)."
+msgid "<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
-#: 03020103.xhp
+#: 03020409.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3150011\n"
+"03020409.xhp\n"
+"par_id3161831\n"
"9\n"
"help.text"
-msgid "<emph>Protected:</emph> Keyword that defines the security status of a file after opening. Valid values: Shared (file may be opened by other applications), Lock Read (file is protected against reading), Lock Write (file is protected against writing), Lock Read Write (denies file access)."
+msgid "This function determines the attributes for a specified file and returns the bit pattern that can help you to identify the following file attributes:"
msgstr ""
-#: 03020103.xhp
+#: 03020409.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3153190\n"
+"03020409.xhp\n"
+"hd_id3145364\n"
"10\n"
"help.text"
-msgid "<emph>FileNumber:</emph> Any integer expression from 0 to 511 to indicate the number of a free data channel. You can then pass commands through the data channel to access the file. The file number must be determined by the FreeFile function immediately before the Open statement."
-msgstr ""
+msgid "Value"
+msgstr "Vlerë"
-#: 03020103.xhp
+#: 03020409.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3151115\n"
+"03020409.xhp\n"
+"par_id3147349\n"
"11\n"
"help.text"
-msgid "<emph>DatasetLength:</emph> For random access files, set the length of the records."
-msgstr ""
+msgid "0 : Normal files."
+msgstr "Të gjithë fajllat (*.*)"
-#: 03020103.xhp
+#: 03020409.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3153418\n"
+"03020409.xhp\n"
+"par_id3147434\n"
"12\n"
"help.text"
-msgid "You can only modify the contents of a file that was opened with the Open statement. If you try to open a file that is already open, an error message appears."
+msgid "1 : Read-only files."
+msgstr "I editueshëm në dokument vetëm të lexueshëm"
+
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id3159154\n"
+"15\n"
+"help.text"
+msgid "8 : Returns the name of the volume"
+msgstr "Emri i Grupit të Volumit:"
+
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id3145271\n"
+"16\n"
+"help.text"
+msgid "16 : Returns the name of the directory only."
+msgstr "Emri i Grupit të Volumit:"
+
+#: 03020409.xhp
+msgctxt ""
+"03020409.xhp\n"
+"par_id3153953\n"
+"17\n"
+"help.text"
+msgid "32 : File was changed since last backup (Archive bit)."
msgstr ""
-#: 03020103.xhp
+#: 03020409.xhp
msgctxt ""
-"03020103.xhp\n"
-"hd_id3149123\n"
-"13\n"
+"03020409.xhp\n"
+"par_id3156444\n"
+"18\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "If you want to know if a bit of the attribute byte is set, use the following query method:"
+msgstr ""
-#: 03020103.xhp
+#: 03020409.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3154705\n"
-"22\n"
+"03020409.xhp\n"
+"hd_id3153094\n"
+"19\n"
"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr "Nga kreu në fund"
+msgid "Example:"
+msgstr "Shembull"
-#: 03020103.xhp
+#: 03020409.xhp
msgctxt ""
-"03020103.xhp\n"
-"par_id3146916\n"
-"23\n"
+"03020409.xhp\n"
+"par_id3155415\n"
+"21\n"
"help.text"
-msgid "Print #iNumber, \"This is another line of text\""
-msgstr "Nga kreu në fund"
+msgid "On Error GoTo ErrorHandler ' Define target for error handler"
+msgstr ""
-#: 03070200.xhp
+#: 03020410.xhp
msgctxt ""
-"03070200.xhp\n"
+"03020410.xhp\n"
"tit\n"
"help.text"
-msgid "\"*\" Operator [Runtime]"
-msgstr "Gabim nw kohw: #"
+msgid "Kill Statement [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03070200.xhp
+#: 03020410.xhp
msgctxt ""
-"03070200.xhp\n"
-"bm_id3147573\n"
+"03020410.xhp\n"
+"bm_id3153360\n"
"help.text"
-msgid "<bookmark_value>\"*\" operator (mathematical)</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>Kill statement</bookmark_value>"
+msgstr "Veprimi përfundoi [Time]: [1]. Vlera kthyese [2]."
-#: 03070200.xhp
+#: 03020410.xhp
msgctxt ""
-"03070200.xhp\n"
-"hd_id3147573\n"
+"03020410.xhp\n"
+"hd_id3153360\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Kill Statement [Runtime]\">Kill Statement [Runtime]</link>"
msgstr ""
-#: 03070200.xhp
+#: 03020410.xhp
msgctxt ""
-"03070200.xhp\n"
-"par_id3154347\n"
+"03020410.xhp\n"
+"par_id3151211\n"
"2\n"
"help.text"
-msgid "Multiplies two values."
-msgstr "Ndrysho vlerat standarde"
+msgid "Deletes a file from a disk."
+msgstr "Gjeneron emrin e fajllit nga"
-#: 03070200.xhp
+#: 03020410.xhp
msgctxt ""
-"03070200.xhp\n"
-"hd_id3148946\n"
+"03020410.xhp\n"
+"hd_id3150767\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03070200.xhp
+#: 03020410.xhp
msgctxt ""
-"03070200.xhp\n"
-"par_id3150358\n"
+"03020410.xhp\n"
+"par_id3154685\n"
"4\n"
"help.text"
-msgid "Result = Expression1 * Expression2"
-msgstr "Gabim: Pa rezultat"
+msgid "Kill File As String"
+msgstr "Fajlli nuk mund të përdoret si shabllon"
-#: 03070200.xhp
+#: 03020410.xhp
msgctxt ""
-"03070200.xhp\n"
-"hd_id3150400\n"
+"03020410.xhp\n"
+"hd_id3153194\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03070200.xhp
+#: 03020410.xhp
msgctxt ""
-"03070200.xhp\n"
-"par_id3154365\n"
+"03020410.xhp\n"
+"par_id3150440\n"
"6\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric expression that records the result of a multiplication."
+msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
-#: 03070200.xhp
+#: 03020410.xhp
msgctxt ""
-"03070200.xhp\n"
-"par_id3154685\n"
+"03020410.xhp\n"
+"hd_id3148645\n"
"7\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to multiply."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
-
-#: 03070200.xhp
-msgctxt ""
-"03070200.xhp\n"
-"hd_id3153968\n"
-"8\n"
-"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03020000.xhp
-msgctxt ""
-"03020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "File I/O Functions"
-msgstr "Funksionet statistikore"
-
-#: 03020000.xhp
-msgctxt ""
-"03020000.xhp\n"
-"hd_id3156344\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020000.xhp\" name=\"File I/O Functions\">File I/O Functions</link>"
-msgstr ""
-
-#: 03020000.xhp
-msgctxt ""
-"03020000.xhp\n"
-"par_id3153360\n"
-"2\n"
-"help.text"
-msgid "Use File I/O functions to create and manage user-defined (data) files."
-msgstr ""
-
-#: 03020000.xhp
+#: 03020410.xhp
msgctxt ""
-"03020000.xhp\n"
-"par_id3150398\n"
-"3\n"
+"03020410.xhp\n"
+"par_id3163710\n"
+"9\n"
"help.text"
-msgid "You can use these functions to support the creation of \"relative\" files, so that you can save and reload certain records by specifying their record number. File I/O functions can also help you manage your files by providing you with information such as file size, current path settings, or the creation date of a file or a directory."
+msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
msgstr ""
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
+"03020411.xhp\n"
"tit\n"
"help.text"
-msgid "CStr Function [Runtime]"
+msgid "MkDir Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"bm_id3146958\n"
+"03020411.xhp\n"
+"bm_id3156421\n"
"help.text"
-msgid "<bookmark_value>CStr function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>MkDir statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"hd_id3146958\n"
+"03020411.xhp\n"
+"hd_id3156421\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"CStr Function [Runtime]\">CStr Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement [Runtime]\">MkDir Statement [Runtime]</link>"
msgstr ""
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3147574\n"
+"03020411.xhp\n"
+"par_id3147000\n"
"2\n"
"help.text"
-msgid "Converts any numeric expression to a string expression."
+msgid "Creates a new directory on a data medium."
msgstr ""
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"hd_id3148473\n"
+"03020411.xhp\n"
+"hd_id3148520\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3145315\n"
+"03020411.xhp\n"
+"par_id3155150\n"
"4\n"
"help.text"
-msgid "CStr (Expression)"
-msgstr "Shprehje e rezervuar"
+msgid "MkDir Text As String"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"hd_id3153062\n"
+"03020411.xhp\n"
+"hd_id3156027\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3153897\n"
+"03020411.xhp\n"
+"par_id3153750\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"hd_id3154760\n"
+"03020411.xhp\n"
+"par_id3153311\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "If the path is not determined, the directory is created in the current directory."
+msgstr ""
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3149457\n"
+"03020411.xhp\n"
+"hd_id3155388\n"
"8\n"
"help.text"
-msgid "<emph>Expression:</emph> Any valid string or numeric expression that you want to convert."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "Example:"
+msgstr "Shembull"
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"hd_id3150358\n"
-"9\n"
+"03020411.xhp\n"
+"par_id3149762\n"
+"10\n"
"help.text"
-msgid "Expression Types and Conversion Returns"
+msgid "' Example for functions of the file organization"
msgstr ""
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3153192\n"
-"10\n"
+"03020411.xhp\n"
+"par_id3149669\n"
+"13\n"
"help.text"
-msgid "Boolean :"
-msgstr "JO logjike"
+msgid "Const sSubDir1 As String =\"Test\""
+msgstr ""
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3156422\n"
-"11\n"
+"03020411.xhp\n"
+"par_id3148663\n"
+"14\n"
"help.text"
-msgid "String that evaluates to either <emph>True</emph> or <emph>False</emph>."
+msgid "Const sFile2 As String = \"Copied.tmp\""
msgstr ""
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3147287\n"
-"12\n"
+"03020411.xhp\n"
+"par_id3154071\n"
+"15\n"
"help.text"
-msgid "Date :"
-msgstr "Data"
+msgid "Const sFile3 As String = \"Renamed.tmp\""
+msgstr ""
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3155411\n"
-"13\n"
+"03020411.xhp\n"
+"par_id3154217\n"
+"19\n"
"help.text"
-msgid "String that contains the date and time."
+msgid "If Dir(sSubDir1,16)=\"\" Then ' Does the directory exist?"
msgstr ""
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3147428\n"
-"14\n"
+"03020411.xhp\n"
+"par_id3147228\n"
+"21\n"
"help.text"
-msgid "Null :"
-msgstr "Është e zbraztë"
+msgid "MsgBox sFile,0,\"Create directory\""
+msgstr ""
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3150486\n"
-"15\n"
+"03020411.xhp\n"
+"par_id3153770\n"
+"26\n"
"help.text"
-msgid "Run-time error."
-msgstr "Ka ndodhur një gabim i panjohur"
+msgid "MsgBox fSysURL(CurDir()),0,\"Current directory\""
+msgstr ""
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3153953\n"
-"16\n"
+"03020411.xhp\n"
+"par_id3159154\n"
+"27\n"
"help.text"
-msgid "Empty :"
-msgstr "<bosh>"
+msgid "MsgBox sFile & Chr(13) & FileDateTime( sFile ),0,\"Creation time\""
+msgstr ""
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3155306\n"
-"17\n"
+"03020411.xhp\n"
+"par_id3149484\n"
+"28\n"
"help.text"
-msgid "String without any characters."
+msgid "MsgBox sFile & Chr(13)& FileLen( sFile ),0,\"File length\""
msgstr ""
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3149260\n"
-"18\n"
+"03020411.xhp\n"
+"par_id3152885\n"
+"29\n"
"help.text"
-msgid "Any :"
-msgstr "Çfardo regjistrimi"
+msgid "MsgBox sFile & Chr(13)& GetAttr( sFile ),0,\"File attributes\""
+msgstr ""
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3152938\n"
-"19\n"
+"03020411.xhp\n"
+"par_id3153952\n"
+"31\n"
"help.text"
-msgid "Corresponding number as string."
-msgstr "Vlera të interpretohet si një numër."
+msgid "' Rename in the same directory"
+msgstr "Duke kontrolluar ${DRIVE} (në ${DIRECTORY})..."
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"par_id3155738\n"
-"20\n"
+"03020411.xhp\n"
+"par_id3147426\n"
+"34\n"
"help.text"
-msgid "Zeros at the end of a floating-point number are not included in the returned string."
+msgid "SetAttr( sFile, 0 ) 'Delete all attributes"
msgstr ""
-#: 03101000.xhp
+#: 03020411.xhp
msgctxt ""
-"03101000.xhp\n"
-"hd_id3154729\n"
-"21\n"
+"03020411.xhp\n"
+"par_id3148647\n"
+"35\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "MsgBox sFile & Chr(13) & GetAttr( sFile ),0,\"New file attributes\""
+msgstr ""
-#: 03020101.xhp
+#: 03020411.xhp
msgctxt ""
-"03020101.xhp\n"
+"03020411.xhp\n"
+"par_id3150092\n"
+"40\n"
+"help.text"
+msgid "' Converts a system path in URL"
+msgstr ""
+
+#: 03020411.xhp
+msgctxt ""
+"03020411.xhp\n"
+"par_id3156276\n"
+"49\n"
+"help.text"
+msgid "' the colon with DOS"
+msgstr "Pamja më e mirë me"
+
+#: 03020412.xhp
+msgctxt ""
+"03020412.xhp\n"
"tit\n"
"help.text"
-msgid "Close Statement [Runtime]"
+msgid "Name Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020101.xhp
+#: 03020412.xhp
msgctxt ""
-"03020101.xhp\n"
-"bm_id3157896\n"
+"03020412.xhp\n"
+"bm_id3143268\n"
"help.text"
-msgid "<bookmark_value>Close statement</bookmark_value>"
+msgid "<bookmark_value>Name statement</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03020101.xhp
+#: 03020412.xhp
msgctxt ""
-"03020101.xhp\n"
-"hd_id3157896\n"
+"03020412.xhp\n"
+"hd_id3143268\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020101.xhp\" name=\"Close Statement [Runtime]\">Close Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020412.xhp\" name=\"Name Statement [Runtime]\">Name Statement [Runtime]</link>"
msgstr ""
-#: 03020101.xhp
+#: 03020412.xhp
msgctxt ""
-"03020101.xhp\n"
-"par_id3147573\n"
+"03020412.xhp\n"
+"par_id3154346\n"
"2\n"
"help.text"
-msgid "Closes a specified file that was opened with the Open statement."
+msgid "Renames an existing file or directory."
msgstr ""
-#: 03020101.xhp
+#: 03020412.xhp
msgctxt ""
-"03020101.xhp\n"
+"03020412.xhp\n"
"hd_id3156344\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03020101.xhp
+#: 03020412.xhp
msgctxt ""
-"03020101.xhp\n"
-"par_id3147265\n"
+"03020412.xhp\n"
+"par_id3153381\n"
"4\n"
"help.text"
-msgid "Close FileNumber As Integer[, FileNumber2 As Integer[,...]]"
+msgid "Name OldName As String As NewName As String"
msgstr ""
-#: 03020101.xhp
+#: 03020412.xhp
msgctxt ""
-"03020101.xhp\n"
-"hd_id3153379\n"
+"03020412.xhp\n"
+"hd_id3153362\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03020101.xhp
+#: 03020412.xhp
msgctxt ""
-"03020101.xhp\n"
-"par_id3150791\n"
+"03020412.xhp\n"
+"par_id3151210\n"
"6\n"
"help.text"
-msgid "<emph>FileNumber:</emph> Any integer expression that specifies the number of the data channel that was opened with the <emph>Open</emph> statement."
+msgid "<emph>OldName, NewName:</emph> Any string expression that specifies the file name, including the path. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
-#: 03020101.xhp
+#: 03020412.xhp
msgctxt ""
-"03020101.xhp\n"
-"hd_id3153192\n"
-"7\n"
+"03020412.xhp\n"
+"hd_id3125863\n"
+"8\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03020101.xhp
+#: 03020412.xhp
msgctxt ""
-"03020101.xhp\n"
-"par_id3153727\n"
+"03020412.xhp\n"
+"par_id3152462\n"
"16\n"
"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Nga kreu në fund"
-
-#: 03020101.xhp
-msgctxt ""
-"03020101.xhp\n"
-"par_id3147350\n"
-"17\n"
-"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Nga kreu në fund"
+msgid "MsgBox \"File already exists\""
+msgstr "Fajli tanimë ekziston. Të mbishkruhet?"
-#: 03102800.xhp
+#: 03020413.xhp
msgctxt ""
-"03102800.xhp\n"
+"03020413.xhp\n"
"tit\n"
"help.text"
-msgid "IsObject Function [Runtime]"
+msgid "RmDir Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03102800.xhp
+#: 03020413.xhp
msgctxt ""
-"03102800.xhp\n"
-"bm_id3149346\n"
+"03020413.xhp\n"
+"bm_id3148947\n"
"help.text"
-msgid "<bookmark_value>IsObject function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>RmDir statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03102800.xhp
+#: 03020413.xhp
msgctxt ""
-"03102800.xhp\n"
-"hd_id3149346\n"
+"03020413.xhp\n"
+"hd_id3148947\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function [Runtime]\">IsObject Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"RmDir Statement [Runtime]\">RmDir Statement [Runtime]</link>"
msgstr ""
-#: 03102800.xhp
+#: 03020413.xhp
msgctxt ""
-"03102800.xhp\n"
-"par_id3148538\n"
+"03020413.xhp\n"
+"par_id3149457\n"
"2\n"
"help.text"
-msgid "Tests if an object variable is an OLE object. The function returns True if the variable is an OLE object, otherwise it returns False."
+msgid "Deletes an existing directory from a data medium."
msgstr ""
-#: 03102800.xhp
+#: 03020413.xhp
msgctxt ""
-"03102800.xhp\n"
-"hd_id3149234\n"
+"03020413.xhp\n"
+"hd_id3153361\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03102800.xhp
+#: 03020413.xhp
msgctxt ""
-"03102800.xhp\n"
-"par_id3154285\n"
+"03020413.xhp\n"
+"par_id3154367\n"
"4\n"
"help.text"
-msgid "IsObject (ObjectVar)"
-msgstr ""
+msgid "RmDir Text As String"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03102800.xhp
+#: 03020413.xhp
msgctxt ""
-"03102800.xhp\n"
-"hd_id3148685\n"
+"03020413.xhp\n"
+"hd_id3156281\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03102800.xhp
+#: 03020413.xhp
msgctxt ""
-"03102800.xhp\n"
-"par_id3156024\n"
+"03020413.xhp\n"
+"par_id3151042\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "JO logjike"
+msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory that you want to delete. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgstr ""
-#: 03102800.xhp
+#: 03020413.xhp
msgctxt ""
-"03102800.xhp\n"
-"hd_id3148947\n"
+"03020413.xhp\n"
+"par_id3153192\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
+msgstr ""
-#: 03102800.xhp
+#: 03020413.xhp
msgctxt ""
-"03102800.xhp\n"
-"par_id3148552\n"
+"03020413.xhp\n"
+"hd_id3145271\n"
"8\n"
"help.text"
-msgid "<emph>ObjectVar:</emph> Any variable that you want to test. If the Object variable contains an OLE object, the function returns True."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03132500.xhp
+#: 03020414.xhp
msgctxt ""
-"03132500.xhp\n"
+"03020414.xhp\n"
"tit\n"
"help.text"
-msgid "GetDefaultContext Function [Runtime]"
+msgid "SetAttr Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03132500.xhp
+#: 03020414.xhp
msgctxt ""
-"03132500.xhp\n"
-"bm_id4761192\n"
+"03020414.xhp\n"
+"bm_id3147559\n"
"help.text"
-msgid "<bookmark_value>GetDefaultContext function</bookmark_value>"
+msgid "<bookmark_value>SetAttr statement</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03132500.xhp
+#: 03020414.xhp
msgctxt ""
-"03132500.xhp\n"
-"par_idN10580\n"
+"03020414.xhp\n"
+"hd_id3147559\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132500.xhp\">GetDefaultContext Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"SetAttr Statement [Runtime]\">SetAttr Statement [Runtime]</link>"
msgstr ""
-#: 03132500.xhp
+#: 03020414.xhp
msgctxt ""
-"03132500.xhp\n"
-"par_idN10590\n"
+"03020414.xhp\n"
+"par_id3147264\n"
+"2\n"
"help.text"
-msgid "Returns the default context of the process service factory, if existent, else returns a null reference."
+msgid "Sets the attribute information for a specified file."
msgstr ""
-#: 03132500.xhp
+#: 03020414.xhp
msgctxt ""
-"03132500.xhp\n"
-"par_idN10593\n"
+"03020414.xhp\n"
+"hd_id3150359\n"
+"3\n"
"help.text"
-msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03080101.xhp
+#: 03020414.xhp
msgctxt ""
-"03080101.xhp\n"
-"tit\n"
+"03020414.xhp\n"
+"par_id3154365\n"
+"4\n"
"help.text"
-msgid "Atn Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "SetAttr FileName As String, Attribute As Integer"
+msgstr ""
-#: 03080101.xhp
+#: 03020414.xhp
msgctxt ""
-"03080101.xhp\n"
-"bm_id3150616\n"
+"03020414.xhp\n"
+"hd_id3125863\n"
+"5\n"
"help.text"
-msgid "<bookmark_value>Atn function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03080101.xhp
+#: 03020414.xhp
msgctxt ""
-"03080101.xhp\n"
-"hd_id3150616\n"
-"1\n"
+"03020414.xhp\n"
+"par_id3154909\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080101.xhp\" name=\"Atn Function [Runtime]\">Atn Function [Runtime]</link>"
+msgid "FileName: Name of the file, including the path, that you want to test attributes of. If you do not enter a path, <emph>SetAttr</emph> searches for the file in the current directory. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
-#: 03080101.xhp
+#: 03020414.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3149346\n"
-"2\n"
+"03020414.xhp\n"
+"par_id3153192\n"
+"7\n"
"help.text"
-msgid "Trigonometric function that returns the arctangent of a numeric expression. The return value is in the range -Pi/2 to +Pi/2."
+msgid "<emph>Attribute:</emph> Bit pattern defining the attributes that you want to set or to clear:"
msgstr ""
-#: 03080101.xhp
+#: 03020414.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3143271\n"
-"3\n"
+"03020414.xhp\n"
+"par_id3145786\n"
+"8\n"
"help.text"
-msgid "The arctangent is the inverse of the tangent function. The Atn Function returns the angle \"Alpha\", expressed in radians, using the tangent of this angle. The function can also return the angle \"Alpha\" by comparing the ratio of the length of the side that is opposite of the angle to the length of the side that is adjacent to the angle in a right-angled triangle."
-msgstr ""
+msgid "<emph>Value</emph>"
+msgstr "Vlerë absolute"
-#: 03080101.xhp
+#: 03020414.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3145315\n"
-"4\n"
+"03020414.xhp\n"
+"par_id3152596\n"
+"9\n"
"help.text"
-msgid "Atn(side opposite the angle/side adjacent to angle)= Alpha"
+msgid "0 : Normal files."
+msgstr "Të gjithë fajllat (*.*)"
+
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3149262\n"
+"10\n"
+"help.text"
+msgid "1 : Read-only files."
+msgstr "I editueshëm në dokument vetëm të lexueshëm"
+
+#: 03020414.xhp
+msgctxt ""
+"03020414.xhp\n"
+"par_id3152576\n"
+"13\n"
+"help.text"
+msgid "32 : File was changed since last backup (Archive bit)."
msgstr ""
-#: 03080101.xhp
+#: 03020414.xhp
msgctxt ""
-"03080101.xhp\n"
-"hd_id3149669\n"
-"5\n"
+"03020414.xhp\n"
+"par_id3153093\n"
+"14\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "You can set multiple attributes by combining the respective values with a logic OR statement."
+msgstr ""
-#: 03080101.xhp
+#: 03020414.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3148947\n"
-"6\n"
+"03020414.xhp\n"
+"hd_id3147434\n"
+"15\n"
"help.text"
-msgid "Atn (Number)"
-msgstr "Numri i faqes"
+msgid "Example:"
+msgstr "Shembull"
-#: 03080101.xhp
+#: 03020414.xhp
msgctxt ""
-"03080101.xhp\n"
-"hd_id3148664\n"
-"7\n"
+"03020414.xhp\n"
+"par_id3148645\n"
+"17\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "On Error GoTo ErrorHandler ' Define target for error handler"
+msgstr ""
-#: 03080101.xhp
+#: 03020415.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3150359\n"
-"8\n"
+"03020415.xhp\n"
+"tit\n"
"help.text"
-msgid "Double"
-msgstr "Dyfish"
+msgid "FileExists Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03080101.xhp
+#: 03020415.xhp
msgctxt ""
-"03080101.xhp\n"
-"hd_id3148798\n"
-"9\n"
+"03020415.xhp\n"
+"bm_id3148946\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "<bookmark_value>FileExists function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03080101.xhp
+#: 03020415.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3156212\n"
-"10\n"
+"03020415.xhp\n"
+"hd_id3148946\n"
+"1\n"
"help.text"
-msgid "<emph>Number:</emph> Any numerical expression that represents the ratio of two sides of a right triangle. The Atn function returns the corresponding angle in radians (arctangent)."
+msgid "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"FileExists Function [Runtime]\">FileExists Function [Runtime]</link>"
msgstr ""
-#: 03080101.xhp
+#: 03020415.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3153192\n"
-"11\n"
+"03020415.xhp\n"
+"par_id3153361\n"
+"2\n"
"help.text"
-msgid "To convert radians to degrees, multiply radians by 180/pi."
+msgid "Determines if a file or a directory is available on the data medium."
msgstr ""
-#: 03080101.xhp
+#: 03020415.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3147230\n"
-"12\n"
+"03020415.xhp\n"
+"hd_id3150447\n"
+"3\n"
"help.text"
-msgid "degree=(radian*180)/pi"
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03080101.xhp
+#: 03020415.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3125864\n"
-"13\n"
+"03020415.xhp\n"
+"par_id3154685\n"
+"4\n"
"help.text"
-msgid "radian=(degree*pi)/180"
+msgid "FileExists(FileName As String | DirectoryName As String)"
msgstr ""
-#: 03080101.xhp
+#: 03020415.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3159252\n"
-"14\n"
+"03020415.xhp\n"
+"hd_id3154126\n"
+"5\n"
"help.text"
-msgid "Pi is here the fixed circle constant with the rounded value 3.14159."
+msgid "Return value:"
+msgstr "Vlerë absolute"
+
+#: 03020415.xhp
+msgctxt ""
+"03020415.xhp\n"
+"par_id3150769\n"
+"6\n"
+"help.text"
+msgid "Bool"
+msgstr "JO logjike"
+
+#: 03020415.xhp
+msgctxt ""
+"03020415.xhp\n"
+"hd_id3153770\n"
+"7\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Parametrat animues"
+
+#: 03020415.xhp
+msgctxt ""
+"03020415.xhp\n"
+"par_id3147349\n"
+"8\n"
+"help.text"
+msgid "FileName | DirectoryName: Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
msgstr ""
-#: 03080101.xhp
+#: 03020415.xhp
msgctxt ""
-"03080101.xhp\n"
-"hd_id3153142\n"
-"15\n"
+"03020415.xhp\n"
+"hd_id3149664\n"
+"9\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03080101.xhp
+#: 03030000.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3146985\n"
-"16\n"
+"03030000.xhp\n"
+"tit\n"
"help.text"
-msgid "' The following example calculates for a right-angled triangle"
+msgid "Date and Time Functions"
+msgstr "Fusha e datës dhe kohës"
+
+#: 03030000.xhp
+msgctxt ""
+"03030000.xhp\n"
+"hd_id3150502\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Date and Time Functions\">Date and Time Functions</link>"
msgstr ""
-#: 03080101.xhp
+#: 03030000.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3145750\n"
-"17\n"
+"03030000.xhp\n"
+"par_id3153255\n"
+"2\n"
"help.text"
-msgid "' the angle Alpha from the tangent of the angle Alpha:"
+msgid "Use the statements and functions described here to perform date and time calculations."
msgstr ""
-#: 03080101.xhp
+#: 03030000.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3151112\n"
-"19\n"
+"03030000.xhp\n"
+"par_id3152363\n"
+"3\n"
"help.text"
-msgid "' rounded Pi = 3.14159 Is a predefined constant"
+msgid "<item type=\"productname\">%PRODUCTNAME</item> Basic lets you calculate time or date differences by converting the time and date values to continuous numeric values. After the difference is calculated, special functions are used to reconvert the values to the standard time or date formats."
msgstr ""
-#: 03080101.xhp
+#: 03030000.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3149262\n"
-"22\n"
+"03030000.xhp\n"
+"par_id3151054\n"
+"4\n"
"help.text"
-msgid "d1 = InputBox$ (\"Enter the length of the side adjacent to the angle: \",\"Adjacent\")"
+msgid "You can combine date and time values into a single floating-decimal number. Dates are converted to integers, and times to decimal values. <item type=\"productname\">%PRODUCTNAME</item> Basic also supports the variable type Date, which can contain a time specification consisting of both a date and time."
msgstr ""
-#: 03080101.xhp
+#: 03030100.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3149482\n"
-"23\n"
+"03030100.xhp\n"
+"tit\n"
"help.text"
-msgid "d2 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"Opposite\")"
+msgid "Converting Date Values"
+msgstr "Ndrysho vlerat standarde"
+
+#: 03030100.xhp
+msgctxt ""
+"03030100.xhp\n"
+"hd_id3147573\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Converting Date Values\">Converting Date Values</link>"
msgstr ""
-#: 03080101.xhp
+#: 03030100.xhp
msgctxt ""
-"03080101.xhp\n"
-"par_id3155415\n"
-"24\n"
+"03030100.xhp\n"
+"par_id3154760\n"
+"2\n"
"help.text"
-msgid "Print \"The Alpha angle is\"; (atn (d2/d1) * 180 / Pi); \" degrees\""
+msgid "The following functions convert date values to calculable numbers and back."
msgstr ""
-#: 03080302.xhp
+#: 03030101.xhp
msgctxt ""
-"03080302.xhp\n"
+"03030101.xhp\n"
"tit\n"
"help.text"
-msgid "Rnd Function [Runtime]"
+msgid "DateSerial Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03080302.xhp
+#: 03030101.xhp
msgctxt ""
-"03080302.xhp\n"
-"bm_id3148685\n"
+"03030101.xhp\n"
+"bm_id3157896\n"
"help.text"
-msgid "<bookmark_value>Rnd function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>DateSerial function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03080302.xhp
+#: 03030101.xhp
msgctxt ""
-"03080302.xhp\n"
-"hd_id3148685\n"
+"03030101.xhp\n"
+"hd_id3157896\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080302.xhp\" name=\"Rnd Function [Runtime]\">Rnd Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function [Runtime]\">DateSerial Function [Runtime]</link>"
msgstr ""
-#: 03080302.xhp
+#: 03030101.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3149669\n"
+"03030101.xhp\n"
+"par_id3143267\n"
"2\n"
"help.text"
-msgid "Returns a random number between 0 and 1."
-msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
+msgid "Returns a <emph>Date</emph> value for a specified year, month, or day."
+msgstr ""
-#: 03080302.xhp
+#: 03030101.xhp
msgctxt ""
-"03080302.xhp\n"
-"hd_id3153897\n"
+"03030101.xhp\n"
+"hd_id3147264\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03080302.xhp
+#: 03030101.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3150543\n"
+"03030101.xhp\n"
+"par_id3149670\n"
"4\n"
"help.text"
-msgid "Rnd [(Expression)]"
-msgstr "Shprehje e rezervuar"
+msgid "DateSerial (year, month, day)"
+msgstr "Çfarwdo dite nw muajin e dwshiruar"
-#: 03080302.xhp
+#: 03030101.xhp
msgctxt ""
-"03080302.xhp\n"
-"hd_id3149655\n"
+"03030101.xhp\n"
+"hd_id3150792\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03080302.xhp
+#: 03030101.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3154365\n"
+"03030101.xhp\n"
+"par_id3150398\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Dyfish"
+msgid "Date"
+msgstr "Data"
-#: 03080302.xhp
+#: 03030101.xhp
msgctxt ""
-"03080302.xhp\n"
-"hd_id3154909\n"
+"03030101.xhp\n"
+"hd_id3154141\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03080302.xhp
-#, fuzzy
+#: 03030101.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3125864\n"
+"03030101.xhp\n"
+"par_id3147229\n"
"8\n"
"help.text"
-msgid "<emph>Expression:</emph> Any numeric expression."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "<emph>Year:</emph> Integer expression that indicates a year. All values between 0 and 99 are interpreted as the years 1900-1999. For years that fall outside this range, you must enter all four digits."
+msgstr ""
-#: 03080302.xhp
+#: 03030101.xhp
msgctxt ""
-"03080302.xhp\n"
+"03030101.xhp\n"
+"par_id3156280\n"
+"9\n"
+"help.text"
+msgid "<emph>Month:</emph> Integer expression that indicates the month of the specified year. The accepted range is from 1-12."
+msgstr ""
+
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"par_id3151043\n"
+"10\n"
+"help.text"
+msgid "<emph>Day:</emph> Integer expression that indicates the day of the specified month. The accepted range is from 1-31. No error is returned when you enter a non-existing day for a month shorter than 31 days."
+msgstr ""
+
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"par_id3161832\n"
+"11\n"
+"help.text"
+msgid "The <emph>DateSerial function</emph> returns the number of days between December 30,1899 and the given date. You can use this function to calculate the difference between two dates."
+msgstr ""
+
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
"par_id3155306\n"
"12\n"
"help.text"
-msgid "<emph>Omitted:</emph> Returns the next random number in the sequence."
+msgid "The <emph>DateSerial function</emph> returns the data type Variant with VarType 7 (Date). Internally, this value is stored as a Double value, so that when the given date is 1.1.1900, the returned value is 2. Negative values correspond to dates before December 30, 1899 (not inclusive)."
msgstr ""
-#: 03080302.xhp
+#: 03030101.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3147318\n"
+"03030101.xhp\n"
+"par_id3152576\n"
+"13\n"
+"help.text"
+msgid "If a date is defined that lies outside of the accepted range, $[officename] Basic returns an error message."
+msgstr ""
+
+#: 03030101.xhp
+msgctxt ""
+"03030101.xhp\n"
+"par_id3149481\n"
"14\n"
"help.text"
-msgid "The <emph>Rnd</emph> function only returns values ranging from 0 to 1. To generate random integers in a given range, use the formula in the following example:"
+msgid "Whereas you define the <emph>DateValue function</emph> as a string that contains the date, the <emph>DateSerial function</emph> evaluates each of the parameters (year, month, day) as separate numeric expressions."
msgstr ""
-#: 03080302.xhp
+#: 03030101.xhp
msgctxt ""
-"03080302.xhp\n"
-"hd_id3151118\n"
+"03030101.xhp\n"
+"hd_id3155411\n"
"15\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3147124\n"
-"21\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr "Nga kreu në fund"
-
-#: 03080302.xhp
+#: 03030101.xhp
msgctxt ""
-"03080302.xhp\n"
-"par_id3154943\n"
-"23\n"
+"03030101.xhp\n"
+"par_id3154942\n"
"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr "Nga kreu në fund"
+msgid "MsgBox lDate ' returns 23476"
+msgstr ""
-#: 03080302.xhp
+#: 03030101.xhp
msgctxt ""
-"03080302.xhp\n"
+"03030101.xhp\n"
"par_id3151074\n"
-"25\n"
-"help.text"
-msgid "Print \"Greater than 8\""
-msgstr "Është më e madhe se"
-
-#: 03080302.xhp
-msgctxt ""
-"03080302.xhp\n"
-"par_id3155602\n"
-"27\n"
"help.text"
-msgid "Print \"Outside range 1 to 10\""
-msgstr "Nga kreu në fund"
+msgid "MsgBox sDate ' returns 04/09/1964"
+msgstr ""
-#: 03120103.xhp
+#: 03030102.xhp
msgctxt ""
-"03120103.xhp\n"
+"03030102.xhp\n"
"tit\n"
"help.text"
-msgid "Str Function [Runtime]"
+msgid "DateValue Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03120103.xhp
+#: 03030102.xhp
msgctxt ""
-"03120103.xhp\n"
-"bm_id3143272\n"
+"03030102.xhp\n"
+"bm_id3156344\n"
"help.text"
-msgid "<bookmark_value>Str function</bookmark_value>"
+msgid "<bookmark_value>DateValue function</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03120103.xhp
+#: 03030102.xhp
msgctxt ""
-"03120103.xhp\n"
-"hd_id3143272\n"
+"03030102.xhp\n"
+"hd_id3156344\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function [Runtime]\">Str Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function [Runtime]\">DateValue Function [Runtime]</link>"
msgstr ""
-#: 03120103.xhp
+#: 03030102.xhp
msgctxt ""
-"03120103.xhp\n"
-"par_id3155100\n"
+"03030102.xhp\n"
+"par_id3150542\n"
"2\n"
"help.text"
-msgid "Converts a numeric expression into a string."
+msgid "Returns a date value from a date string. The date string is a complete date in a single numeric value. You can also use this serial number to determine the difference between two dates."
msgstr ""
-#: 03120103.xhp
+#: 03030102.xhp
msgctxt ""
-"03120103.xhp\n"
-"hd_id3109850\n"
+"03030102.xhp\n"
+"hd_id3148799\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03120103.xhp
+#: 03030102.xhp
msgctxt ""
-"03120103.xhp\n"
-"par_id3149497\n"
+"03030102.xhp\n"
+"par_id3154910\n"
"4\n"
"help.text"
-msgid "Str (Expression)"
-msgstr "Shprehje e rezervuar"
+msgid "DateValue [(date)]"
+msgstr "Data (caktuar)"
-#: 03120103.xhp
+#: 03030102.xhp
msgctxt ""
-"03120103.xhp\n"
-"hd_id3150040\n"
+"03030102.xhp\n"
+"hd_id3150870\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03120103.xhp
+#: 03030102.xhp
msgctxt ""
-"03120103.xhp\n"
-"par_id3146117\n"
+"03030102.xhp\n"
+"par_id3153194\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "Date"
+msgstr "Data"
-#: 03120103.xhp
+#: 03030102.xhp
msgctxt ""
-"03120103.xhp\n"
-"hd_id3155805\n"
+"03030102.xhp\n"
+"hd_id3153969\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03120103.xhp
-#, fuzzy
+#: 03030102.xhp
msgctxt ""
-"03120103.xhp\n"
-"par_id3149178\n"
+"03030102.xhp\n"
+"par_id3153770\n"
"8\n"
"help.text"
-msgid "<emph>Expression: </emph>Any numeric expression."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "<emph>Date:</emph> String expression that contains the date that you want to calculate. The date can be specified in almost any format."
+msgstr ""
-#: 03120103.xhp
+#: 03030102.xhp
msgctxt ""
-"03120103.xhp\n"
-"par_id3146958\n"
-"9\n"
+"03030102.xhp\n"
+"par_id3153189\n"
+"22\n"
"help.text"
-msgid "The <emph>Str</emph> function converts a numeric variable, or the result of a calculation into a string. Negative numbers are preceded by a minus sign. Positive numbers are preceded by a space (instead of the plus sign)."
+msgid "You can use this function to convert a date that occurs between December 1, 1582 and December 31, 9999 into a single integer value. You can then use this value to calculate the difference between two dates. If the date argument lies outside the acceptable range, $[officename] Basic returns an error message."
msgstr ""
-#: 03120103.xhp
+#: 03030102.xhp
msgctxt ""
-"03120103.xhp\n"
-"hd_id3155419\n"
-"10\n"
+"03030102.xhp\n"
+"par_id3146974\n"
+"23\n"
+"help.text"
+msgid "In contrast to the DateSerial function that passes years, months, and days as separate numeric values, the DateValue function passes the date using the format \"month.[,]day.[,]year\"."
+msgstr ""
+
+#: 03030102.xhp
+msgctxt ""
+"03030102.xhp\n"
+"hd_id3153142\n"
+"24\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03030300.xhp
+#: 03030103.xhp
msgctxt ""
-"03030300.xhp\n"
+"03030103.xhp\n"
"tit\n"
"help.text"
-msgid "System Date and Time"
-msgstr "Fusha e datës dhe kohës"
+msgid "Day Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03030300.xhp
+#: 03030103.xhp
msgctxt ""
-"03030300.xhp\n"
-"hd_id3154923\n"
+"03030103.xhp\n"
+"bm_id3153345\n"
+"help.text"
+msgid "<bookmark_value>Day function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 03030103.xhp
+msgctxt ""
+"03030103.xhp\n"
+"hd_id3153345\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"System Date and Time\">System Date and Time</link>"
+msgid "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function [Runtime]\">Day Function [Runtime]</link>"
msgstr ""
-#: 03030300.xhp
+#: 03030103.xhp
msgctxt ""
-"03030300.xhp\n"
-"par_id3149457\n"
+"03030103.xhp\n"
+"par_id3147560\n"
"2\n"
"help.text"
-msgid "The following functions and statements set or return the system date and time."
+msgid "Returns a value that represents the day of the month based on a serial date number generated by <emph>DateSerial</emph> or <emph>DateValue</emph>."
msgstr ""
-#: 03090200.xhp
+#: 03030103.xhp
msgctxt ""
-"03090200.xhp\n"
-"tit\n"
+"03030103.xhp\n"
+"hd_id3149456\n"
+"3\n"
"help.text"
-msgid "Loops"
-msgstr "Loop de Loop"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03090200.xhp
+#: 03030103.xhp
msgctxt ""
-"03090200.xhp\n"
-"hd_id3153990\n"
-"1\n"
+"03030103.xhp\n"
+"par_id3150358\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">Loops</link>"
-msgstr ""
+msgid "Day (Number)"
+msgstr "Numri i faqes"
-#: 03090200.xhp
+#: 03030103.xhp
msgctxt ""
-"03090200.xhp\n"
-"par_id3147226\n"
-"2\n"
+"03030103.xhp\n"
+"hd_id3148798\n"
+"5\n"
"help.text"
-msgid "The following statements execute loops."
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03070000.xhp
+#: 03030103.xhp
msgctxt ""
-"03070000.xhp\n"
-"tit\n"
+"03030103.xhp\n"
+"par_id3125865\n"
+"6\n"
"help.text"
-msgid "Mathematical Operators"
-msgstr "Operatërot Unar/Binar"
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 03070000.xhp
+#: 03030103.xhp
msgctxt ""
-"03070000.xhp\n"
-"hd_id3149234\n"
-"1\n"
+"03030103.xhp\n"
+"hd_id3150448\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link>"
+msgid "Parameters:"
+msgstr "Parametrat animues"
+
+#: 03030103.xhp
+msgctxt ""
+"03030103.xhp\n"
+"par_id3156423\n"
+"8\n"
+"help.text"
+msgid "<emph>Number:</emph> A numeric expression that contains a serial date number from which you can determine the day of the month."
msgstr ""
-#: 03070000.xhp
+#: 03030103.xhp
msgctxt ""
-"03070000.xhp\n"
-"par_id3145068\n"
-"2\n"
+"03030103.xhp\n"
+"par_id3145786\n"
+"9\n"
"help.text"
-msgid "The following mathematical operators are supported in $[officename] Basic."
+msgid "This function is basically the opposite of the DateSerial function, returning the day of the month from a serial date number generated by the <emph>DateSerial</emph> or the <emph>DateValue</emph> function. For example, the expression"
msgstr ""
-#: 03070000.xhp
+#: 03030103.xhp
msgctxt ""
-"03070000.xhp\n"
-"par_id3148552\n"
-"3\n"
+"03030103.xhp\n"
+"par_id3153190\n"
+"11\n"
"help.text"
-msgid "This chapter provides a short overview of all of the arithmetical operators that you may need for calculations within a program."
+msgid "returns the value 20."
+msgstr "Kthen vlerën llogjike SAKTË."
+
+#: 03030103.xhp
+msgctxt ""
+"03030103.xhp\n"
+"hd_id3149481\n"
+"12\n"
+"help.text"
+msgid "Example:"
+msgstr "Shembull"
+
+#: 03030103.xhp
+msgctxt ""
+"03030103.xhp\n"
+"par_id3149260\n"
+"14\n"
+"help.text"
+msgid "Print \"Day \" & Day(DateSerial(1994, 12, 20)) & \" of the month\""
msgstr ""
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
+"03030104.xhp\n"
"tit\n"
"help.text"
-msgid "Do...Loop Statement [Runtime]"
+msgid "Month Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"bm_id3156116\n"
+"03030104.xhp\n"
+"bm_id3153127\n"
"help.text"
-msgid "<bookmark_value>Do...Loop statement</bookmark_value><bookmark_value>While; Do loop</bookmark_value><bookmark_value>Until</bookmark_value><bookmark_value>loops</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>Month function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"hd_id3156116\n"
+"03030104.xhp\n"
+"hd_id3153127\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop Statement [Runtime]\">Do...Loop Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030104.xhp\" name=\"Month Function [Runtime]\">Month Function [Runtime]</link>"
msgstr ""
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3109850\n"
+"03030104.xhp\n"
+"par_id3148550\n"
"2\n"
"help.text"
-msgid "Repeats the statements between the Do and the Loop statement while the condition is True or until the condition becomes True."
+msgid "Returns the month of a year from a serial date that is generated by the DateSerial or the DateValue function."
msgstr ""
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"hd_id3149119\n"
+"03030104.xhp\n"
+"hd_id3145068\n"
"3\n"
"help.text"
-msgid "Syntax"
+msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3155150\n"
+"03030104.xhp\n"
+"par_id3150398\n"
"4\n"
"help.text"
-msgid "Do [{While | Until} condition = True]"
-msgstr ""
+msgid "Month (Number)"
+msgstr "Numri i faqes"
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3154422\n"
+"03030104.xhp\n"
+"hd_id3154366\n"
"5\n"
"help.text"
-msgid "statement block"
-msgstr "Shigjetat e bllokut"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3150789\n"
+"03030104.xhp\n"
+"par_id3154125\n"
"6\n"
"help.text"
-msgid "[Exit Do]"
-msgstr "Teposhtë"
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3155805\n"
+"03030104.xhp\n"
+"hd_id3150768\n"
"7\n"
"help.text"
-msgid "statement block"
-msgstr "Shigjetat e bllokut"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3145090\n"
+"03030104.xhp\n"
+"par_id3156423\n"
"8\n"
"help.text"
-msgid "Loop"
-msgstr "Loop de Loop"
+msgid "<emph>Number:</emph> Numeric expression that contains the serial date number that is used to determine the month of the year."
+msgstr ""
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3154749\n"
+"03030104.xhp\n"
+"par_id3153770\n"
"9\n"
"help.text"
-msgid "or"
-msgstr "ose"
-
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3150503\n"
-"10\n"
-"help.text"
-msgid "Do"
-msgstr "Teposhtë"
+msgid "This function is the opposite of the <emph>DateSerial </emph>function. It returns the month in the year that corresponds to the serial date that is generated by <emph>DateSerial</emph> or <emph>DateValue</emph>. For example, the expression"
+msgstr ""
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149762\n"
+"03030104.xhp\n"
+"par_id3145366\n"
"11\n"
"help.text"
-msgid "statement block"
-msgstr "Shigjetat e bllokut"
+msgid "returns the value 12."
+msgstr "Kthen vlerën llogjike SAKTË."
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3150984\n"
+"03030104.xhp\n"
+"hd_id3146923\n"
"12\n"
"help.text"
-msgid "[Exit Do]"
-msgstr "Teposhtë"
-
-#: 03090201.xhp
-msgctxt ""
-"03090201.xhp\n"
-"par_id3143228\n"
-"13\n"
-"help.text"
-msgid "statement block"
-msgstr "Shigjetat e bllokut"
+msgid "Example:"
+msgstr "Shembull"
-#: 03090201.xhp
+#: 03030104.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149235\n"
+"03030104.xhp\n"
+"par_id3149664\n"
"14\n"
"help.text"
-msgid "Loop [{While | Until} condition = True]"
+msgid "MsgBox \"\" & Month(Now) ,64,\"The current month\""
msgstr ""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"hd_id3156024\n"
-"15\n"
+"03030105.xhp\n"
+"tit\n"
"help.text"
-msgid "Parameters/Elements"
-msgstr "Elementet e adresës"
+msgid "WeekDay Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3156344\n"
-"16\n"
+"03030105.xhp\n"
+"bm_id3153127\n"
"help.text"
-msgid "<emph>Condition:</emph> A comparison, numeric or string expression, that evaluates either True or False."
-msgstr ""
+msgid "<bookmark_value>WeekDay function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149669\n"
-"17\n"
+"03030105.xhp\n"
+"hd_id3153127\n"
+"1\n"
"help.text"
-msgid "<emph>Statement block:</emph> Statements that you want to repeat while or until the condition is True."
+msgid "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function [Runtime]\">WeekDay Function [Runtime]</link>"
msgstr ""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3150791\n"
-"18\n"
+"03030105.xhp\n"
+"par_id3146795\n"
+"2\n"
"help.text"
-msgid "The <emph>Do...Loop</emph> statement executes a loop as long as, or until, a certain condition is True. The condition for exiting the loop must be entered following either the <emph>Do</emph> or the <emph>Loop</emph> statement. The following examples are valid combinations:"
+msgid "Returns the number corresponding to the weekday represented by a serial date number that is generated by the DateSerial or the DateValue function."
msgstr ""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"hd_id3154366\n"
-"19\n"
+"03030105.xhp\n"
+"hd_id3145068\n"
+"3\n"
"help.text"
-msgid "Syntax"
+msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3145171\n"
-"20\n"
+"03030105.xhp\n"
+"par_id3149655\n"
+"4\n"
"help.text"
-msgid "Do While condition = True"
-msgstr ""
+msgid "WeekDay (Number)"
+msgstr "Numri i faqes"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149203\n"
-"21\n"
+"03030105.xhp\n"
+"hd_id3148799\n"
+"5\n"
"help.text"
-msgid "...statement block"
-msgstr "Shigjetat e bllokut"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3125864\n"
-"22\n"
+"03030105.xhp\n"
+"par_id3154125\n"
+"6\n"
"help.text"
-msgid "Loop"
-msgstr "Loop de Loop"
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3154124\n"
-"24\n"
+"03030105.xhp\n"
+"hd_id3150768\n"
+"7\n"
"help.text"
-msgid "The statement block between the Do While and the Loop statements is repeated so long as the condition is true."
+msgid "Parameters:"
+msgstr "Parametrat animues"
+
+#: 03030105.xhp
+msgctxt ""
+"03030105.xhp\n"
+"par_id3151042\n"
+"8\n"
+"help.text"
+msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the day of the week (1-7)."
msgstr ""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3153968\n"
-"25\n"
+"03030105.xhp\n"
+"par_id3159254\n"
+"9\n"
"help.text"
-msgid "Do Until condition = True"
+msgid "The following example determines the day of the week using the WeekDay function when you enter a date."
msgstr ""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3154909\n"
-"26\n"
+"03030105.xhp\n"
+"hd_id3148616\n"
+"10\n"
"help.text"
-msgid "...statement block"
-msgstr "Shigjetat e bllokut"
+msgid "Example:"
+msgstr "Shembull"
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3159151\n"
-"27\n"
+"03030105.xhp\n"
+"par_id3148576\n"
+"13\n"
"help.text"
-msgid "Loop"
-msgstr "Loop de Loop"
+msgid "' Return And display the day of the week"
+msgstr ""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3150440\n"
-"29\n"
+"03030105.xhp\n"
+"par_id3151117\n"
+"16\n"
"help.text"
-msgid "The statement block between the Do Until and the Loop statements is repeated if the condition so long as the condition is false."
+msgid "sDay=\"Sunday\""
msgstr ""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
+"03030105.xhp\n"
"par_id3153952\n"
-"30\n"
+"18\n"
"help.text"
-msgid "Do"
-msgstr "Teposhtë"
+msgid "sDay=\"Monday\""
+msgstr ""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3147349\n"
-"31\n"
+"03030105.xhp\n"
+"par_id3153157\n"
+"20\n"
"help.text"
-msgid "...statement block"
-msgstr "Shigjetat e bllokut"
+msgid "sDay=\"Tuesday\""
+msgstr ""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3159153\n"
-"32\n"
+"03030105.xhp\n"
+"par_id3154942\n"
+"22\n"
"help.text"
-msgid "Loop While condition = True"
+msgid "sDay=\"Wednesday\""
msgstr ""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3146985\n"
-"34\n"
+"03030105.xhp\n"
+"par_id3155416\n"
+"24\n"
"help.text"
-msgid "The statement block between the Do and the Loop statements repeats so long as the condition is true."
+msgid "sDay=\"Thursday\""
msgstr ""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3150488\n"
-"35\n"
+"03030105.xhp\n"
+"par_id3154015\n"
+"26\n"
"help.text"
-msgid "Do"
-msgstr "Teposhtë"
+msgid "sDay=\"Friday\""
+msgstr ""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3153189\n"
-"36\n"
+"03030105.xhp\n"
+"par_id3153707\n"
+"28\n"
"help.text"
-msgid "...statement block"
-msgstr "Shigjetat e bllokut"
+msgid "sDay=\"Saturday\""
+msgstr ""
-#: 03090201.xhp
+#: 03030105.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3155411\n"
-"37\n"
+"03030105.xhp\n"
+"par_id3148993\n"
+"30\n"
"help.text"
-msgid "Loop Until condition = True"
+msgid "MsgBox \"\" + sDay,64,\"Today Is\""
msgstr ""
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3151117\n"
-"39\n"
+"03030106.xhp\n"
+"tit\n"
"help.text"
-msgid "The statement block between the Do and the Loop statements repeats until the condition is true."
+msgid "Year Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
+
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"bm_id3148664\n"
+"help.text"
+msgid "<bookmark_value>Year function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"hd_id3148664\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Year Function [Runtime]</link>"
msgstr ""
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149484\n"
-"41\n"
+"03030106.xhp\n"
+"par_id3149655\n"
+"2\n"
"help.text"
-msgid "Use the <emph>Exit Do</emph> statement to unconditionally end the loop. You can add this statement anywhere in a <emph>Do</emph>...<emph>Loop</emph> statement. You can also define an exit condition using the <emph>If...Then</emph> structure as follows:"
+msgid "Returns the year from a serial date number that is generated by the DateSerial or the DateValue function."
msgstr ""
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149262\n"
-"42\n"
+"03030106.xhp\n"
+"hd_id3154125\n"
+"3\n"
"help.text"
-msgid "Do..."
-msgstr "Teposhtë"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3149298\n"
-"43\n"
+"03030106.xhp\n"
+"par_id3147229\n"
+"4\n"
"help.text"
-msgid "statements"
-msgstr "DDE Deklaratë"
+msgid "Year (Number)"
+msgstr "Numri i faqes"
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3145646\n"
-"44\n"
+"03030106.xhp\n"
+"hd_id3154685\n"
+"5\n"
"help.text"
-msgid "If condition = True Then Exit Do"
+msgid "Return value:"
+msgstr "Vlerë absolute"
+
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"par_id3153970\n"
+"6\n"
+"help.text"
+msgid "Integer"
+msgstr "Numër i plotë"
+
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"hd_id3150440\n"
+"7\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Parametrat animues"
+
+#: 03030106.xhp
+msgctxt ""
+"03030106.xhp\n"
+"par_id3163712\n"
+"8\n"
+"help.text"
+msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the year."
msgstr ""
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3154490\n"
-"45\n"
+"03030106.xhp\n"
+"par_id3152596\n"
+"9\n"
"help.text"
-msgid "statements"
-msgstr "DDE Deklaratë"
+msgid "This function is the opposite of the <emph>DateSerial </emph>function, and returns the year of a serial date. For example, the expression:"
+msgstr ""
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"par_id3153159\n"
-"46\n"
+"03030106.xhp\n"
+"par_id3149483\n"
+"11\n"
"help.text"
-msgid "Loop..."
-msgstr "Loop de Loop"
+msgid "returns the value 1994."
+msgstr "Kthen vlerën llogjike SAKTË."
-#: 03090201.xhp
+#: 03030106.xhp
msgctxt ""
-"03090201.xhp\n"
-"hd_id3147396\n"
-"47\n"
+"03030106.xhp\n"
+"hd_id3146985\n"
+"12\n"
"help.text"
-msgid "Example"
+msgid "Example:"
msgstr "Shembull"
-#: 03080802.xhp
+#: 03030106.xhp
msgctxt ""
-"03080802.xhp\n"
+"03030106.xhp\n"
+"par_id3153363\n"
+"14\n"
+"help.text"
+msgid "MsgBox \"\" & Year(Now) ,64,\"Current year\""
+msgstr ""
+
+#: 03030107.xhp
+msgctxt ""
+"03030107.xhp\n"
"tit\n"
"help.text"
-msgid "Oct Function [Runtime]"
+msgid "CDateToIso Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"bm_id3155420\n"
+"03030107.xhp\n"
+"bm_id3150620\n"
"help.text"
-msgid "<bookmark_value>Oct function</bookmark_value>"
+msgid "<bookmark_value>CdateToIso function</bookmark_value>"
msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"hd_id3155420\n"
+"03030107.xhp\n"
+"hd_id3150620\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Oct Function [Runtime]\">Oct Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">CDateToIso Function [Runtime]</link>"
msgstr ""
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"par_id3154924\n"
+"03030107.xhp\n"
+"par_id3151097\n"
"2\n"
"help.text"
-msgid "Returns the octal value of a number."
-msgstr "Kthen vlerën e numrit Pi."
+msgid "Returns the date in ISO format from a serial date number that is generated by the DateSerial or the DateValue function."
+msgstr ""
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"hd_id3148947\n"
+"03030107.xhp\n"
+"hd_id3159224\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"par_id3150543\n"
+"03030107.xhp\n"
+"par_id3149497\n"
"4\n"
"help.text"
-msgid "Oct (Number)"
+msgid "CDateToIso(Number)"
msgstr "Numri i faqes"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"hd_id3153360\n"
+"03030107.xhp\n"
+"hd_id3152347\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"par_id3154138\n"
+"03030107.xhp\n"
+"par_id3154422\n"
"6\n"
"help.text"
msgid "String"
msgstr "Varg"
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"hd_id3156422\n"
+"03030107.xhp\n"
+"hd_id3147303\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03080802.xhp
-#, fuzzy
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"par_id3150768\n"
+"03030107.xhp\n"
+"par_id3145136\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to convert to an octal value."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "<emph>Number:</emph> Integer that contains the serial date number."
+msgstr ""
-#: 03080802.xhp
+#: 03030107.xhp
msgctxt ""
-"03080802.xhp\n"
-"hd_id3148672\n"
+"03030107.xhp\n"
+"hd_id3147243\n"
"9\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03080400.xhp
-msgctxt ""
-"03080400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Square Root Calculation"
-msgstr "Kthen rrënjën katrore të një numri."
-
-#: 03080400.xhp
-msgctxt ""
-"03080400.xhp\n"
-"hd_id3148946\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Square Root Calculation\">Square Root Calculation</link>"
-msgstr ""
-
-#: 03080400.xhp
+#: 03030107.xhp
msgctxt ""
-"03080400.xhp\n"
-"par_id3159414\n"
-"2\n"
+"03030107.xhp\n"
+"par_id3153126\n"
+"11\n"
"help.text"
-msgid "Use this function to calculate square roots."
+msgid "MsgBox \"\" & CDateToIso(Now) ,64,\"ISO Date\""
msgstr ""
#: 03030108.xhp
@@ -9115,884 +13822,621 @@ msgctxt ""
msgid "returns 12/31/2002 in the date format of your system"
msgstr ""
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
+"03030110.xhp\n"
"tit\n"
"help.text"
-msgid "CCur Function [Runtime]"
+msgid "DateAdd Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"bm_id8926053\n"
+"03030110.xhp\n"
+"bm_id6269417\n"
"help.text"
-msgid "<bookmark_value>CCur function</bookmark_value>"
+msgid "<bookmark_value>DateAdd function</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN10541\n"
+"03030110.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100050.xhp\">CCur Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030110.xhp\">DateAdd Function [Runtime]</link>"
msgstr ""
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN10545\n"
+"03030110.xhp\n"
+"par_idN10558\n"
"help.text"
-msgid "Converts a string expression or numeric expression to a currency expression. The locale settings are used for decimal separators and currency symbols."
+msgid "Adds a date interval to a given date a number of times and returns the resulting date."
msgstr ""
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN10548\n"
+"03030110.xhp\n"
+"par_idN1055B\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN105E8\n"
+"03030110.xhp\n"
+"par_idN1055F\n"
"help.text"
-msgid "CCur(Expression)"
-msgstr "Shprehje e rezervuar"
+msgid "DateAdd (Add, Count, Date)"
+msgstr ""
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN105EB\n"
+"03030110.xhp\n"
+"par_idN1061E\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN105EF\n"
+"03030110.xhp\n"
+"par_idN10622\n"
"help.text"
-msgid "Currency"
-msgstr "Fusha e valutave"
+msgid "A Variant containing a date."
+msgstr "Formati numerik: datë"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN105F2\n"
+"03030110.xhp\n"
+"par_idN10625\n"
"help.text"
-msgid "Parameter:"
-msgstr "Parametri i sllajdit"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03100050.xhp
+#: 03030110.xhp
msgctxt ""
-"03100050.xhp\n"
-"par_idN105F6\n"
+"03030110.xhp\n"
+"par_idN10629\n"
"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "Add - A string expression from the following table, specifying the date interval."
+msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"tit\n"
+"03030110.xhp\n"
+"par_idN10636\n"
"help.text"
-msgid "Tan Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "Add (string value)"
+msgstr "Vlerë në zvoglim e kryerreshtit"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"bm_id3148550\n"
+"03030110.xhp\n"
+"par_idN1063C\n"
"help.text"
-msgid "<bookmark_value>Tan function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "Explanation"
+msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"hd_id3148550\n"
-"1\n"
+"03030110.xhp\n"
+"par_idN10643\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan Function [Runtime]\">Tan Function [Runtime]</link>"
+msgid "yyyy"
msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3148663\n"
-"2\n"
+"03030110.xhp\n"
+"par_idN10649\n"
"help.text"
-msgid "Determines the tangent of an angle. The angle is specified in radians."
+msgid "Year"
+msgstr "Viti"
+
+#: 03030110.xhp
+msgctxt ""
+"03030110.xhp\n"
+"par_idN10650\n"
+"help.text"
+msgid "q"
msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3153379\n"
-"3\n"
+"03030110.xhp\n"
+"par_idN10656\n"
"help.text"
-msgid "Using the angle Alpha, the Tan Function calculates the ratio of the length of the side opposite the angle to the length of the side adjacent to the angle in a right-angled triangle."
+msgid "Quarter"
msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3154366\n"
-"4\n"
+"03030110.xhp\n"
+"par_idN1065D\n"
"help.text"
-msgid "Tan(Alpha) = side opposite the angle/side adjacent to angle"
+msgid "m"
msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"hd_id3145174\n"
-"5\n"
+"03030110.xhp\n"
+"par_idN10663\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Month"
+msgstr "Muaj"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3151042\n"
-"6\n"
+"03030110.xhp\n"
+"par_idN1066A\n"
"help.text"
-msgid "Tan (Number)"
-msgstr "Numri i faqes"
+msgid "y"
+msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"hd_id3156214\n"
-"7\n"
+"03030110.xhp\n"
+"par_idN10670\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Day of year"
+msgstr "Dita e parw e periudhws"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3156281\n"
-"8\n"
+"03030110.xhp\n"
+"par_idN10677\n"
"help.text"
-msgid "Double"
-msgstr "Dyfish"
+msgid "w"
+msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"hd_id3155132\n"
-"9\n"
+"03030110.xhp\n"
+"par_idN1067D\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Weekday"
+msgstr "WEEKDAY"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3145786\n"
-"10\n"
+"03030110.xhp\n"
+"par_idN10684\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the tangent for (in radians)."
+msgid "ww"
msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3153728\n"
-"11\n"
+"03030110.xhp\n"
+"par_idN1068A\n"
"help.text"
-msgid "To convert degrees to radians, multiply by Pi/180. To convert radians to degrees, multiply by 180/Pi."
+msgid "Week of year"
msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3155414\n"
-"12\n"
+"03030110.xhp\n"
+"par_idN10691\n"
"help.text"
-msgid "degrees=(radiant*180)/Pi"
+msgid "d"
msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3146975\n"
-"13\n"
+"03030110.xhp\n"
+"par_idN10697\n"
"help.text"
-msgid "radiant=(degrees*Pi)/180"
-msgstr ""
+msgid "Day"
+msgstr "Dita"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3147434\n"
-"14\n"
+"03030110.xhp\n"
+"par_idN1069E\n"
"help.text"
-msgid "Pi is approximately 3.141593."
-msgstr "Numri me tw cilin pi wshtw shumwzuar"
+msgid "h"
+msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"hd_id3149483\n"
-"15\n"
+"03030110.xhp\n"
+"par_idN106A4\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Hour"
+msgstr "ORA"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3148646\n"
-"16\n"
+"03030110.xhp\n"
+"par_idN106AB\n"
"help.text"
-msgid "' In this example, the following entry is possible for a right-angled triangle:"
+msgid "n"
msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3150012\n"
-"17\n"
+"03030110.xhp\n"
+"par_idN106B1\n"
"help.text"
-msgid "' The side opposite the angle and the angle (in degrees) to calculate the length of the side adjacent to the angle:"
-msgstr ""
+msgid "Minute"
+msgstr "MINUTA"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3153158\n"
-"19\n"
+"03030110.xhp\n"
+"par_idN106B8\n"
"help.text"
-msgid "' Pi = 3.1415926 is a pre-defined variable"
+msgid "s"
msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3145252\n"
-"22\n"
+"03030110.xhp\n"
+"par_idN106BE\n"
"help.text"
-msgid "d1 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"opposite\")"
-msgstr ""
+msgid "Second"
+msgstr "SEKONDA"
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3149582\n"
-"23\n"
+"03030110.xhp\n"
+"par_idN106C1\n"
"help.text"
-msgid "dAlpha = InputBox$ (\"Enter the Alpha angle (in degrees): \",\"Alpha\")"
+msgid "Count - A numerical expression specifying how often the Add interval will be added (Count is positive) or subtracted (Count is negative)."
msgstr ""
-#: 03080104.xhp
+#: 03030110.xhp
msgctxt ""
-"03080104.xhp\n"
-"par_id3154016\n"
-"24\n"
+"03030110.xhp\n"
+"par_idN106C4\n"
"help.text"
-msgid "Print \"the length of the side adjacent the angle is\"; (d1 / tan (dAlpha * Pi / 180))"
+msgid "Date - A given date or the name of a Variant variable containing a date. The Add value will be added Count times to this value."
msgstr ""
-#: 03100300.xhp
+#: 03030110.xhp
msgctxt ""
-"03100300.xhp\n"
+"03030110.xhp\n"
+"par_idN106C7\n"
+"help.text"
+msgid "Example:"
+msgstr "Shembull"
+
+#: 03030120.xhp
+msgctxt ""
+"03030120.xhp\n"
"tit\n"
"help.text"
-msgid "CDate Function [Runtime]"
+msgid "DateDiff Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03100300.xhp
+#: 03030120.xhp
msgctxt ""
-"03100300.xhp\n"
-"bm_id3150772\n"
+"03030120.xhp\n"
+"bm_id6134830\n"
"help.text"
-msgid "<bookmark_value>CDate function</bookmark_value>"
+msgid "<bookmark_value>DateDiff function</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03100300.xhp
+#: 03030120.xhp
msgctxt ""
-"03100300.xhp\n"
-"hd_id3150772\n"
-"1\n"
+"03030120.xhp\n"
+"par_idN10542\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Function [Runtime]\">CDate Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030120.xhp\">DateDiff Function [Runtime]</link>"
msgstr ""
-#: 03100300.xhp
+#: 03030120.xhp
msgctxt ""
-"03100300.xhp\n"
-"par_id3150986\n"
-"2\n"
+"03030120.xhp\n"
+"par_idN10546\n"
"help.text"
-msgid "Converts any string or numeric expression to a date value."
+msgid "Returns the number of date intervals between two given date values."
msgstr ""
-#: 03100300.xhp
+#: 03030120.xhp
msgctxt ""
-"03100300.xhp\n"
-"hd_id3148944\n"
-"3\n"
+"03030120.xhp\n"
+"par_idN10549\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03100300.xhp
+#: 03030120.xhp
msgctxt ""
-"03100300.xhp\n"
-"par_id3148947\n"
-"4\n"
+"03030120.xhp\n"
+"par_idN10648\n"
"help.text"
-msgid "CDate (Expression)"
-msgstr "Shprehje e rezervuar"
+msgid "DateDiff (Add, Date1, Date2 [, Week_start [, Year_start]])"
+msgstr ""
-#: 03100300.xhp
+#: 03030120.xhp
msgctxt ""
-"03100300.xhp\n"
-"hd_id3148552\n"
-"5\n"
+"03030120.xhp\n"
+"par_idN1064B\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03100300.xhp
+#: 03030120.xhp
msgctxt ""
-"03100300.xhp\n"
-"par_id3159414\n"
-"6\n"
+"03030120.xhp\n"
+"par_idN1064F\n"
"help.text"
-msgid "Date"
-msgstr "Data"
+msgid "A number."
+msgstr "<number>"
-#: 03100300.xhp
+#: 03030120.xhp
msgctxt ""
-"03100300.xhp\n"
-"hd_id3153525\n"
-"7\n"
+"03030120.xhp\n"
+"par_idN10652\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"par_id3150359\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
-
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"par_id3125864\n"
-"9\n"
-"help.text"
-msgid "When you convert a string expression, the date and time must be entered in the format MM.DD.YYYY HH.MM.SS, as defined by the <emph>DateValue</emph> and <emph>TimeValue</emph> function conventions. In numeric expressions, values to the left of the decimal represent the date, beginning from December 31, 1899. Values to the right of the decimal represent the time."
-msgstr ""
-
-#: 03100300.xhp
-msgctxt ""
-"03100300.xhp\n"
-"hd_id3156422\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Events"
-msgstr "Ngjarjet"
-
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3155506\n"
-"1\n"
+"03030120.xhp\n"
+"par_idN10656\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01170103.xhp\" name=\"Events\">Events</link>"
+msgid "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3146114\n"
-"2\n"
+"03030120.xhp\n"
+"par_idN10664\n"
"help.text"
-msgid "Define event assignments for the selected control or dialog. The available events depend on the type of control selected."
+msgid "<emph>Date1, Date2</emph> - The two date values to be compared."
msgstr ""
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3145387\n"
-"16\n"
-"help.text"
-msgid "When receiving focus"
-msgstr "Kur pranon mbledhje"
-
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3155090\n"
-"17\n"
+"03030120.xhp\n"
+"par_idN1066A\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_FOCUSGAINED\">This event takes place if a control receives the focus.</ahelp>"
+msgid "<emph>Week_start</emph> - An optional parameter that specifies the starting day of a week."
msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3152892\n"
-"18\n"
+"03030120.xhp\n"
+"par_idN1067A\n"
"help.text"
-msgid "When losing focus"
-msgstr "Kur humb mbledhjen"
+msgid "Week_start value"
+msgstr "Vlerë në zvoglim e kryerreshtit"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3153305\n"
-"19\n"
+"03030120.xhp\n"
+"par_idN10680\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_FOCUSLOST\">This event takes place if a control loses the focus.</ahelp>"
+msgid "Explanation"
msgstr ""
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3152896\n"
-"20\n"
-"help.text"
-msgid "Key pressed"
-msgstr "Miu i shtypur"
-
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3148837\n"
-"21\n"
+"03030120.xhp\n"
+"par_idN10687\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_KEYTYPED\">This event occurs when the user presses any key while the control has the focus.</ahelp>"
+msgid "0"
msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3146869\n"
-"43\n"
+"03030120.xhp\n"
+"par_idN1068D\n"
"help.text"
-msgid "Key released"
-msgstr "Miu i çliruar"
+msgid "Use system default value"
+msgstr "Cila listë fjalësh do jetë e prezgjedhura e sistemit?"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3155267\n"
-"44\n"
+"03030120.xhp\n"
+"par_idN10694\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_KEYUP\">This event occurs when the user releases a key while the control has the focus.</ahelp>"
+msgid "1"
msgstr ""
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"hd_id3159096\n"
-"41\n"
+"03030120.xhp\n"
+"par_idN1069A\n"
"help.text"
-msgid "Modified"
-msgstr "Ndryshuar"
+msgid "Sunday (default)"
+msgstr "Fontet standarde"
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3156019\n"
-"42\n"
+"03030120.xhp\n"
+"par_idN106A1\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_CHANGED\">This event takes place, when the control loses the focus and the contents of the control were changed since it lost the focus.</ahelp>"
+msgid "2"
msgstr ""
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3144508\n"
-"10\n"
-"help.text"
-msgid "Text modified"
-msgstr "Teksti i modifikuar"
-
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3148608\n"
-"11\n"
+"03030120.xhp\n"
+"par_idN106A7\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_TEXTCHANGED\">This event takes place if you enter or modify a text in an input field.</ahelp>"
+msgid "Monday"
msgstr ""
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3159207\n"
-"8\n"
-"help.text"
-msgid "Item status changed"
-msgstr "Statuti i artikullit ka ndryshuar"
-
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3155097\n"
-"9\n"
+"03030120.xhp\n"
+"par_idN106AE\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_ITEMSTATECHANGED\">This event takes place if the status of the control field is changed, for example, from checked to unchecked.</ahelp>"
+msgid "3"
msgstr ""
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3151304\n"
-"26\n"
-"help.text"
-msgid "Mouse inside"
-msgstr "Miu brenda"
-
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3152871\n"
-"27\n"
+"03030120.xhp\n"
+"par_idN106B4\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEENTERED\">This event takes place when the mouse enters the control.</ahelp>"
+msgid "Tuesday"
msgstr ""
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3146778\n"
-"30\n"
-"help.text"
-msgid "Mouse moved while key pressed"
-msgstr "Miu lëvizë derisa shtypet çelësi"
-
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3150403\n"
-"31\n"
+"03030120.xhp\n"
+"par_idN106BB\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEDRAGGED\">This event takes place when the mouse is dragged while a key is pressed.</ahelp>"
+msgid "4"
msgstr ""
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3150210\n"
-"32\n"
-"help.text"
-msgid "Mouse moved"
-msgstr "Miu i lëvizur"
-
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3149697\n"
-"33\n"
+"03030120.xhp\n"
+"par_idN106C1\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEMOVED\">This event takes place when the mouse moves over the control.</ahelp>"
+msgid "Wednesday"
msgstr ""
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3145216\n"
-"22\n"
-"help.text"
-msgid "Mouse button pressed"
-msgstr "Butoni i miut i shtypur"
-
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3155914\n"
-"23\n"
+"03030120.xhp\n"
+"par_idN106C8\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEPRESSED\">This event takes place when the mouse button is pressed while the mouse pointer is on the control.</ahelp>"
+msgid "5"
msgstr ""
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3148899\n"
-"24\n"
-"help.text"
-msgid "Mouse button released"
-msgstr "Butoni i miut i çliruar"
-
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3153812\n"
-"25\n"
+"03030120.xhp\n"
+"par_idN106CE\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSERELEASED\">This event takes place when the mouse button is released while the mouse pointer is on the control.</ahelp>"
+msgid "Thursday"
msgstr ""
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3153556\n"
-"28\n"
-"help.text"
-msgid "Mouse outside"
-msgstr "Miu jashtë"
-
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3153013\n"
-"29\n"
+"03030120.xhp\n"
+"par_idN106D5\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when the mouse leaves the control.</ahelp>"
+msgid "6"
msgstr ""
-#: 01170103.xhp
-msgctxt ""
-"01170103.xhp\n"
-"hd_id3155759\n"
-"45\n"
-"help.text"
-msgid "While adjusting"
-msgstr "Derisa rregullon"
-
-#: 01170103.xhp
+#: 03030120.xhp
msgctxt ""
-"01170103.xhp\n"
-"par_id3156364\n"
-"46\n"
+"03030120.xhp\n"
+"par_idN106DB\n"
"help.text"
-msgid "<ahelp hid=\"HID_EVT_MOUSEEXITED\">This event takes place when a scrollbar is being dragged.</ahelp>"
+msgid "Friday"
msgstr ""
-#: 01050200.xhp
+#: 03030120.xhp
msgctxt ""
-"01050200.xhp\n"
-"tit\n"
+"03030120.xhp\n"
+"par_idN106E2\n"
"help.text"
-msgid "Call Stack Window (Calls)"
+msgid "7"
msgstr ""
-#: 01050200.xhp
+#: 03030120.xhp
msgctxt ""
-"01050200.xhp\n"
-"hd_id3146794\n"
-"1\n"
+"03030120.xhp\n"
+"par_idN106E8\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01050200.xhp\" name=\"Call Stack Window (Calls)\">Call Stack Window (Calls)</link>"
+msgid "Saturday"
msgstr ""
-#: 01050200.xhp
+#: 03030120.xhp
msgctxt ""
-"01050200.xhp\n"
-"par_id3150400\n"
-"2\n"
+"03030120.xhp\n"
+"par_idN106EB\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\" visibility=\"hidden\">Displays the sequence of procedures and functions during the execution of a program.</ahelp> The <emph>Call Stack</emph> allows you to monitor the sequence of procedures and functions during the execution of a program. The procedures are functions are displayed bottom to top with the most recent function or procedure call at the top of the list."
+msgid "<emph>Year_start</emph> - An optional parameter that specifies the starting week of a year."
msgstr ""
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"tit\n"
-"help.text"
-msgid "TwipsPerPixelY Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"bm_id3150040\n"
-"help.text"
-msgid "<bookmark_value>TwipsPerPixelY function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"hd_id3150040\n"
-"1\n"
+"03030120.xhp\n"
+"par_idN106FB\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"TwipsPerPixelY Function [Runtime]\">TwipsPerPixelY Function [Runtime]</link>"
-msgstr ""
+msgid "Year_start value"
+msgstr "Vlerë në zvoglim e kryerreshtit"
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"par_id3154186\n"
-"2\n"
+"03030120.xhp\n"
+"par_idN10701\n"
"help.text"
-msgid "Returns the number of twips that represent the height of a pixel."
+msgid "Explanation"
msgstr ""
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"hd_id3145090\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"par_id3153681\n"
-"4\n"
+"03030120.xhp\n"
+"par_idN10708\n"
"help.text"
-msgid "n = TwipsPerPixelY"
+msgid "0"
msgstr ""
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"hd_id3148473\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
-
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"par_id3154306\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
-
-#: 03131400.xhp
-msgctxt ""
-"03131400.xhp\n"
-"hd_id3149235\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03131400.xhp
+#: 03030120.xhp
msgctxt ""
-"03131400.xhp\n"
-"par_id3154142\n"
-"9\n"
+"03030120.xhp\n"
+"par_idN1070E\n"
"help.text"
-msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
-msgstr ""
+msgid "Use system default value"
+msgstr "Cila listë fjalësh do jetë e prezgjedhura e sistemit?"
-#: 03120100.xhp
+#: 03030120.xhp
msgctxt ""
-"03120100.xhp\n"
-"tit\n"
+"03030120.xhp\n"
+"par_idN10715\n"
"help.text"
-msgid "ASCII/ANSI Conversion in Strings"
+msgid "1"
msgstr ""
-#: 03120100.xhp
+#: 03030120.xhp
msgctxt ""
-"03120100.xhp\n"
-"hd_id3147443\n"
-"1\n"
+"03030120.xhp\n"
+"par_idN1071B\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI Conversion in Strings\">ASCII/ANSI Conversion in Strings</link>"
+msgid "Week 1 is the week with January, 1st (default)"
msgstr ""
-#: 03120100.xhp
+#: 03030120.xhp
msgctxt ""
-"03120100.xhp\n"
-"par_id3159201\n"
-"2\n"
+"03030120.xhp\n"
+"par_idN10722\n"
"help.text"
-msgid "The following functions convert strings to and from ASCII or ANSI code."
+msgid "2"
msgstr ""
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"tit\n"
-"help.text"
-msgid "With Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"bm_id3153311\n"
-"help.text"
-msgid "<bookmark_value>With statement</bookmark_value>"
-msgstr "Vlera #1 nuk mund të përdoret me LIKE!"
-
-#: 03090411.xhp
+#: 03030120.xhp
msgctxt ""
-"03090411.xhp\n"
-"hd_id3153311\n"
-"1\n"
+"03030120.xhp\n"
+"par_idN10728\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement [Runtime]\">With Statement [Runtime]</link>"
+msgid "Week 1 is the first week containing four or more days of that year"
msgstr ""
-#: 03090411.xhp
+#: 03030120.xhp
msgctxt ""
-"03090411.xhp\n"
-"par_id3159158\n"
-"2\n"
+"03030120.xhp\n"
+"par_idN1072F\n"
"help.text"
-msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
+msgid "3"
msgstr ""
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3156153\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03090411.xhp
+#: 03030120.xhp
msgctxt ""
-"03090411.xhp\n"
-"par_id3145609\n"
-"4\n"
+"03030120.xhp\n"
+"par_idN10735\n"
"help.text"
-msgid "With Object Statement block End With"
+msgid "Week 1 is the first week containing only days of the new year"
msgstr ""
-#: 03090411.xhp
-msgctxt ""
-"03090411.xhp\n"
-"hd_id3154924\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03090411.xhp
+#: 03030120.xhp
msgctxt ""
-"03090411.xhp\n"
-"par_id3147560\n"
-"6\n"
+"03030120.xhp\n"
+"par_idN10738\n"
"help.text"
-msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
#: 03030130.xhp
msgctxt ""
@@ -10090,886 +14534,1033 @@ msgctxt ""
msgid "Example:"
msgstr "Shembull"
-#: 03101130.xhp
+#: 03030200.xhp
msgctxt ""
-"03101130.xhp\n"
+"03030200.xhp\n"
"tit\n"
"help.text"
-msgid "DefSng Statement [Runtime]"
+msgid "Converting Time Values"
+msgstr "Ndrysho vlerat standarde"
+
+#: 03030200.xhp
+msgctxt ""
+"03030200.xhp\n"
+"hd_id3147226\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Converting Time Values\">Converting Time Values</link>"
+msgstr ""
+
+#: 03030200.xhp
+msgctxt ""
+"03030200.xhp\n"
+"par_id3149415\n"
+"2\n"
+"help.text"
+msgid "The following functions convert time values to calculable numbers."
+msgstr ""
+
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"tit\n"
+"help.text"
+msgid "Hour Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"bm_id2445142\n"
+"03030201.xhp\n"
+"bm_id3156042\n"
"help.text"
-msgid "<bookmark_value>DefSng statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+msgid "<bookmark_value>Hour function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN10577\n"
+"03030201.xhp\n"
+"hd_id3156042\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101130.xhp\">DefSng Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030201.xhp\" name=\"Hour Function [Runtime]\">Hour Function [Runtime]</link>"
msgstr ""
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN10587\n"
+"03030201.xhp\n"
+"par_id3149346\n"
+"2\n"
"help.text"
-msgid "If no type-declaration character or keyword is specified, the DefSng statement sets the default variable type, according to a letter range."
+msgid "Returns the hour from a time value that is generated by the TimeSerial or the TimeValue function."
msgstr ""
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN1058A\n"
+"03030201.xhp\n"
+"hd_id3147574\n"
+"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN1058E\n"
+"03030201.xhp\n"
+"par_id3147264\n"
+"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
+msgid "Hour (Number)"
+msgstr "Numri i faqes"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN10591\n"
+"03030201.xhp\n"
+"hd_id3145069\n"
+"5\n"
+"help.text"
+msgid "Return value:"
+msgstr "Vlerë absolute"
+
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"par_id3149670\n"
+"6\n"
+"help.text"
+msgid "Integer"
+msgstr "Numër i plotë"
+
+#: 03030201.xhp
+msgctxt ""
+"03030201.xhp\n"
+"hd_id3150359\n"
+"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN10595\n"
+"03030201.xhp\n"
+"par_id3154366\n"
+"8\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the hour value."
msgstr ""
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN1059C\n"
+"03030201.xhp\n"
+"par_id3154909\n"
+"9\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgid "This function is the opposite of the <emph>TimeSerial</emph> function. It returns an integer value that represents the hour from a time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression"
msgstr ""
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN105A3\n"
+"03030201.xhp\n"
+"par_id3163798\n"
+"10\n"
"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "**Ndryshorja nuk u gjet**"
+msgid "Print Hour(TimeSerial(12,30,41))"
+msgstr ""
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN105AA\n"
+"03030201.xhp\n"
+"par_id3155132\n"
+"11\n"
"help.text"
-msgid "<emph>DefSng:</emph> Single"
-msgstr "Hapësirë me vetëm një rresht"
+msgid "returns the value 12."
+msgstr "Kthen vlerën llogjike SAKTË."
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN105B1\n"
+"03030201.xhp\n"
+"hd_id3147348\n"
+"12\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN105B5\n"
+"03030201.xhp\n"
+"par_id3146985\n"
+"13\n"
"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr ""
+msgid "Sub ExampleHour"
+msgstr "Nën~totalet..."
-#: 03101130.xhp
+#: 03030201.xhp
msgctxt ""
-"03101130.xhp\n"
-"par_idN105D3\n"
+"03030201.xhp\n"
+"par_id3156441\n"
+"14\n"
"help.text"
-msgid "sSng=Single ' sSng is an implicit single variable"
+msgid "Print \"The current hour is \" & Hour( Now )"
msgstr ""
-#: 03120305.xhp
+#: 03030201.xhp
msgctxt ""
-"03120305.xhp\n"
+"03030201.xhp\n"
+"par_id3153145\n"
+"15\n"
+"help.text"
+msgid "End Sub"
+msgstr "Nën~totalet..."
+
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
"tit\n"
"help.text"
-msgid "LTrim Function [Runtime]"
+msgid "Minute Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"bm_id3147574\n"
+"03030202.xhp\n"
+"bm_id3155419\n"
"help.text"
-msgid "<bookmark_value>LTrim function</bookmark_value>"
+msgid "<bookmark_value>Minute function</bookmark_value>"
msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"hd_id3147574\n"
+"03030202.xhp\n"
+"hd_id3155419\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function [Runtime]\">LTrim Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function [Runtime]\">Minute Function [Runtime]</link>"
msgstr ""
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"par_id3145316\n"
+"03030202.xhp\n"
+"par_id3156344\n"
"2\n"
"help.text"
-msgid "Removes all leading spaces at the start of a string expression."
+msgid "Returns the minute of the hour that corresponds to the serial time value that is generated by the TimeSerial or the TimeValue function."
msgstr ""
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"hd_id3154924\n"
+"03030202.xhp\n"
+"hd_id3154758\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"par_id3148552\n"
+"03030202.xhp\n"
+"par_id3149656\n"
"4\n"
"help.text"
-msgid "LTrim (Text As String)"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "Minute (Number)"
+msgstr "Numri i faqes"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"hd_id3156344\n"
+"03030202.xhp\n"
+"hd_id3148798\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"par_id3151056\n"
+"03030202.xhp\n"
+"par_id3150449\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"hd_id3150543\n"
+"03030202.xhp\n"
+"hd_id3153193\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"par_id3150792\n"
+"03030202.xhp\n"
+"par_id3153969\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the minute value."
+msgstr ""
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"par_id3125863\n"
+"03030202.xhp\n"
+"par_id3150869\n"
"9\n"
"help.text"
-msgid "Use this function to remove spaces at the beginning of a string expression."
+msgid "This function is the opposite of the <emph>TimeSerial </emph>function. It returns the minute of the serial time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression:"
msgstr ""
-#: 03120305.xhp
+#: 03030202.xhp
msgctxt ""
-"03120305.xhp\n"
-"hd_id3145419\n"
+"03030202.xhp\n"
+"par_id3149262\n"
"10\n"
"help.text"
+msgid "Print Minute(TimeSerial(12,30,41))"
+msgstr ""
+
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"par_id3148576\n"
+"11\n"
+"help.text"
+msgid "returns the value 30."
+msgstr "Indeksi i vlerës (1..30) së selektuar."
+
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"hd_id3150010\n"
+"12\n"
+"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03010103.xhp
+#: 03030202.xhp
msgctxt ""
-"03010103.xhp\n"
+"03030202.xhp\n"
+"par_id3159154\n"
+"13\n"
+"help.text"
+msgid "Sub ExampleMinute"
+msgstr "Nën~totalet..."
+
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"par_id3146119\n"
+"14\n"
+"help.text"
+msgid "MsgBox \"The current minute is \"& Minute(Now)& \".\""
+msgstr ""
+
+#: 03030202.xhp
+msgctxt ""
+"03030202.xhp\n"
+"par_id3153726\n"
+"15\n"
+"help.text"
+msgid "end sub"
+msgstr "Nën~totalet..."
+
+#: 03030203.xhp
+msgctxt ""
+"03030203.xhp\n"
"tit\n"
"help.text"
-msgid "Print Statement [Runtime]"
+msgid "Now Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"bm_id3147230\n"
+"03030203.xhp\n"
+"bm_id3149416\n"
"help.text"
-msgid "<bookmark_value>Print statement</bookmark_value>"
-msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
+msgid "<bookmark_value>Now function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"hd_id3147230\n"
+"03030203.xhp\n"
+"hd_id3149416\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010103.xhp\" name=\"Print Statement [Runtime]\">Print Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030203.xhp\" name=\"Now Function [Runtime]\">Now Function [Runtime]</link>"
msgstr ""
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3156281\n"
+"03030203.xhp\n"
+"par_id3149670\n"
"2\n"
"help.text"
-msgid "Outputs the specified strings or numeric expressions to a dialog or to a file."
+msgid "Returns the current system date and time as a <emph>Date</emph> value."
msgstr ""
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"hd_id3145785\n"
+"03030203.xhp\n"
+"hd_id3149456\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3153188\n"
+"03030203.xhp\n"
+"par_id3149655\n"
"4\n"
"help.text"
-msgid "Print [#FileName,] Expression1[{;|,} [Spc(Number As Integer);] [Tab(pos As Integer);] [Expression2[...]]"
-msgstr ""
+msgid "Now"
+msgstr "TANI"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"hd_id3147348\n"
+"03030203.xhp\n"
+"hd_id3154366\n"
"5\n"
"help.text"
-msgid "Parameter:"
-msgstr "Parametri i sllajdit"
-
-#: 03010103.xhp
-msgctxt ""
-"03010103.xhp\n"
-"par_id2508621\n"
-"help.text"
-msgid "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3163712\n"
+"03030203.xhp\n"
+"par_id3154909\n"
"6\n"
"help.text"
-msgid "<emph>Expression</emph>: Any numeric or string expression to be printed. Multiple expressions can be separated by a semicolon. If separated by a comma, the expressions are indented to the next tab stop. The tab stops cannot be adjusted."
-msgstr ""
+msgid "Date"
+msgstr "Data"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3153092\n"
+"03030203.xhp\n"
+"hd_id3147229\n"
"7\n"
"help.text"
-msgid "<emph>Number</emph>: Number of spaces to be inserted by the <emph>Spc</emph> function."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03010103.xhp
+#: 03030203.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3145364\n"
-"8\n"
+"03030203.xhp\n"
+"par_id3150870\n"
+"9\n"
"help.text"
-msgid "<emph>Pos</emph>: Spaces are inserted until the specified position."
+msgid "MsgBox \"It is now \" & Now"
msgstr ""
-#: 03010103.xhp
+#: 03030204.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3154319\n"
-"9\n"
+"03030204.xhp\n"
+"tit\n"
"help.text"
-msgid "If a semicolon or comma appears after the last expression to be printed, $[officename] Basic stores the text in an internal buffer and continues program execution without printing. When another Print statement without a semicolon or comma at the end is encountered, all text to be printed is printed at once."
-msgstr ""
+msgid "Second Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03010103.xhp
+#: 03030204.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3145272\n"
-"10\n"
+"03030204.xhp\n"
+"bm_id3153346\n"
"help.text"
-msgid "Positive numeric expressions are printed with a leading space. Negative expressions are printed with a leading minus sign. If a certain range is exceeded for floating-point values, the respective numeric expression is printed in exponential notation."
-msgstr ""
+msgid "<bookmark_value>Second function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03010103.xhp
+#: 03030204.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3154011\n"
-"11\n"
+"03030204.xhp\n"
+"hd_id3153346\n"
+"1\n"
"help.text"
-msgid "If the expression to be printed exceeds a certain length, the display will automatically wrap to the next line."
+msgid "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second Function [Runtime]\">Second Function [Runtime]</link>"
msgstr ""
-#: 03010103.xhp
+#: 03030204.xhp
msgctxt ""
-"03010103.xhp\n"
-"par_id3146969\n"
-"12\n"
+"03030204.xhp\n"
+"par_id3156023\n"
+"2\n"
"help.text"
-msgid "You can insert the Tab function, enclosed by semicolons, between arguments to indent the output to a specific position, or you can use the <emph>Spc</emph> function to insert a specified number of spaces."
+msgid "Returns an integer that represents the seconds of the serial time number that is generated by the TimeSerial or the TimeValue function."
msgstr ""
-#: 03010103.xhp
+#: 03030204.xhp
msgctxt ""
-"03010103.xhp\n"
-"hd_id3146912\n"
-"13\n"
+"03030204.xhp\n"
+"hd_id3147264\n"
+"3\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"tit\n"
+"03030204.xhp\n"
+"par_id3146795\n"
+"4\n"
"help.text"
-msgid "Control and Dialog Properties"
-msgstr ""
+msgid "Second (Number)"
+msgstr "Numri i dytw"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"bm_id3153379\n"
+"03030204.xhp\n"
+"hd_id3150792\n"
+"5\n"
"help.text"
-msgid "<bookmark_value>controls; properties</bookmark_value><bookmark_value>properties; controls and dialogs</bookmark_value><bookmark_value>dialogs; properties</bookmark_value>"
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"hd_id3153379\n"
-"1\n"
+"03030204.xhp\n"
+"par_id3154140\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01170100.xhp\" name=\"Control and Dialog Properties\">Control and Dialog Properties</link>"
-msgstr ""
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3156280\n"
-"2\n"
+"03030204.xhp\n"
+"hd_id3156280\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the properties of the selected dialog or control.</ahelp> You must be in the design mode to be able to use this command."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"hd_id3151043\n"
-"20\n"
+"03030204.xhp\n"
+"par_id3154124\n"
+"8\n"
"help.text"
-msgid "Entering Data in the Properties Dialog"
+msgid "<emph>Number:</emph> Numeric expression that contains the serial time number that is used to calculate the number of seconds."
msgstr ""
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3153771\n"
-"3\n"
+"03030204.xhp\n"
+"par_id3125864\n"
+"9\n"
"help.text"
-msgid "The following key combinations apply to enter data in multiline fields or combo boxes of the <emph>Properties</emph> dialog:"
+msgid "This function is the opposite of the <emph>TimeSerial </emph>function. It returns the seconds of a serial time value that is generated by the <emph>TimeSerial</emph> or <emph>TimeValue </emph>functions. For example, the expression:"
msgstr ""
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3150010\n"
-"18\n"
+"03030204.xhp\n"
+"par_id3153951\n"
+"10\n"
"help.text"
-msgid "Keys"
-msgstr "Tastet"
+msgid "Print Second(TimeSerial(12,30,41))"
+msgstr ""
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3147317\n"
-"19\n"
+"03030204.xhp\n"
+"par_id3151117\n"
+"11\n"
"help.text"
-msgid "Effects"
-msgstr "Efektet"
+msgid "returns the value 41."
+msgstr "Kthen vlerën llogjike SAKTË."
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3146121\n"
-"4\n"
+"03030204.xhp\n"
+"hd_id3147426\n"
+"12\n"
"help.text"
-msgid "Alt+Down Arrow"
-msgstr "Thirrje poshtë shigjetë"
+msgid "Example:"
+msgstr "Shembull"
-#: 01170100.xhp
+#: 03030204.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3149581\n"
-"5\n"
+"03030204.xhp\n"
+"par_id3156441\n"
+"14\n"
"help.text"
-msgid "Opens a combo box"
-msgstr "AutoPilot Kuti Krehër"
+msgid "MsgBox \"The exact second of the current time is \"& Second( Now )"
+msgstr ""
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3147394\n"
-"6\n"
+"03030205.xhp\n"
+"tit\n"
"help.text"
-msgid "Alt+Up Arrow"
-msgstr "Thirrje lartë shigjetë"
+msgid "TimeSerial Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3148455\n"
-"7\n"
+"03030205.xhp\n"
+"bm_id3143271\n"
"help.text"
-msgid "Closes a combo box"
-msgstr "AutoPilot Kuti Krehër"
+msgid "<bookmark_value>TimeSerial function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3154511\n"
-"8\n"
+"03030205.xhp\n"
+"hd_id3143271\n"
+"1\n"
"help.text"
-msgid "Shift+Enter"
-msgstr "Regjistro grupin"
+msgid "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"TimeSerial Function [Runtime]\">TimeSerial Function [Runtime]</link>"
+msgstr ""
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3146971\n"
-"9\n"
+"03030205.xhp\n"
+"par_id3156344\n"
+"2\n"
"help.text"
-msgid "Inserts a line break in multiline fields."
+msgid "Calculates a serial time value for the specified hour, minute, and second parameters that are passed as numeric value. You can then use this value to calculate the difference between times."
msgstr ""
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3146914\n"
-"10\n"
+"03030205.xhp\n"
+"hd_id3146794\n"
+"4\n"
"help.text"
-msgid "(UpArrow)"
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3153714\n"
-"11\n"
+"03030205.xhp\n"
+"par_id3150792\n"
+"5\n"
"help.text"
-msgid "Goes to the previous line."
-msgstr "Fshij deri Fillim të Rreshtit"
+msgid "TimeSerial (hour, minute, second)"
+msgstr ""
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3159266\n"
-"12\n"
+"03030205.xhp\n"
+"hd_id3148797\n"
+"6\n"
"help.text"
-msgid "(DownArrow)"
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3146314\n"
-"13\n"
+"03030205.xhp\n"
+"par_id3154908\n"
+"7\n"
"help.text"
-msgid "Goes to the next line."
-msgstr "Fshij deri Fillim të Rreshtit"
+msgid "Date"
+msgstr "Data"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3149255\n"
-"14\n"
+"03030205.xhp\n"
+"hd_id3154124\n"
+"8\n"
"help.text"
-msgid "Enter"
-msgstr "Qendër"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01170100.xhp
+#: 03030205.xhp
msgctxt ""
-"01170100.xhp\n"
-"par_id3149566\n"
-"15\n"
+"03030205.xhp\n"
+"par_id3153193\n"
+"9\n"
"help.text"
-msgid "Applies the changes made to a field and places the cursor into the next field."
+msgid "<emph>hour:</emph> Any integer expression that indicates the hour of the time that is used to determine the serial time value. Valid values: 0-23."
msgstr ""
-#: 03080100.xhp
+#: 03030205.xhp
msgctxt ""
-"03080100.xhp\n"
-"tit\n"
+"03030205.xhp\n"
+"par_id3159252\n"
+"10\n"
"help.text"
-msgid "Trigonometric Functions"
-msgstr "Funksionet statistikore"
+msgid "<emph>minute:</emph> Any integer expression that indicates the minute of the time that is used to determine the serial time value. In general, use values between 0 and 59. However, you can also use values that lie outside of this range, where the number of minutes influence the hour value."
+msgstr ""
-#: 03080100.xhp
+#: 03030205.xhp
msgctxt ""
-"03080100.xhp\n"
-"hd_id3159201\n"
-"1\n"
+"03030205.xhp\n"
+"par_id3161831\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometric Functions\">Trigonometric Functions</link>"
+msgid "<emph>second:</emph> Any integer expression that indicates the second of the time that is used to determine the serial time value. In general, you can use values between 0 and 59. However, you can also use values that lie outside of this range, where the number seconds influences the minute value."
msgstr ""
-#: 03080100.xhp
+#: 03030205.xhp
msgctxt ""
-"03080100.xhp\n"
-"par_id3149180\n"
-"2\n"
+"03030205.xhp\n"
+"par_id3155854\n"
+"12\n"
"help.text"
-msgid "The following are the trigonometric functions that are supported in $[officename] Basic."
-msgstr ""
+msgid "<emph>Examples:</emph>"
+msgstr "Emri i grupit"
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"tit\n"
+"03030205.xhp\n"
+"par_id3153952\n"
+"13\n"
"help.text"
-msgid "CVErr Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "12, -5, 45 corresponds to 11, 55, 45"
+msgstr ""
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"bm_id531022\n"
+"03030205.xhp\n"
+"par_id3147349\n"
+"14\n"
"help.text"
-msgid "<bookmark_value>CVErr function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "12, 61, 45 corresponds to 13, 2, 45"
+msgstr ""
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN1054B\n"
+"03030205.xhp\n"
+"par_id3147426\n"
+"15\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100080.xhp\">CVErr Function [Runtime]</link>"
+msgid "12, 20, -2 corresponds to 12, 19, 58"
msgstr ""
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN1055B\n"
+"03030205.xhp\n"
+"par_id3153365\n"
+"16\n"
"help.text"
-msgid "Converts a string expression or numeric expression to a variant expression of the sub type \"Error\"."
+msgid "12, 20, 63 corresponds to 12, 21, 4"
msgstr ""
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN1055E\n"
+"03030205.xhp\n"
+"par_id3146985\n"
+"17\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "You can use the TimeSerial function to convert any time into a single value that you can use to calculate time differences."
+msgstr ""
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN10562\n"
+"03030205.xhp\n"
+"par_id3155308\n"
+"18\n"
"help.text"
-msgid "CVErr(Expression)"
-msgstr "Shprehje e rezervuar"
+msgid "The TimeSerial function returns the type Variant with VarType 7 (Date). This value is stored internally as a double-precision number between 0 and 0.9999999999. As opposed to the DateSerial or DateValue function, where the serial date values are calculated as days relative to a fixed date, you can calculate with values returned by the TimeSerial function, but you cannot evaluate them."
+msgstr ""
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN10565\n"
+"03030205.xhp\n"
+"par_id3149482\n"
+"19\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "In the TimeValue function, you can pass a string as a parameter containing the time. For the TimeSerial function, however, you can pass the individual parameters (hour, minute, second) as separate numeric expressions."
+msgstr ""
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN10569\n"
+"03030205.xhp\n"
+"hd_id3154790\n"
+"20\n"
"help.text"
-msgid "Variant."
-msgstr "Zgjedhni një variantë"
+msgid "Example:"
+msgstr "Shembull"
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN1056C\n"
+"03030205.xhp\n"
+"par_id3155600\n"
+"25\n"
"help.text"
-msgid "Parameter:"
-msgstr "Parametri i sllajdit"
+msgid "MsgBox dDate,64,\"Time as a number\""
+msgstr ""
-#: 03100080.xhp
+#: 03030205.xhp
msgctxt ""
-"03100080.xhp\n"
-"par_idN10570\n"
+"03030205.xhp\n"
+"par_id3153417\n"
+"26\n"
"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "MsgBox sDate,64,\"Formatted time\""
+msgstr ""
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
+"03030206.xhp\n"
"tit\n"
"help.text"
-msgid "Fix Function [Runtime]"
+msgid "TimeValue Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"bm_id3159201\n"
+"03030206.xhp\n"
+"bm_id3149670\n"
"help.text"
-msgid "<bookmark_value>Fix function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>TimeValue function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"hd_id3159201\n"
+"03030206.xhp\n"
+"hd_id3149670\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function [Runtime]\">Fix Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"TimeValue Function [Runtime]\">TimeValue Function [Runtime]</link>"
msgstr ""
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3149346\n"
+"03030206.xhp\n"
+"par_id3153361\n"
"2\n"
"help.text"
-msgid "Returns the integer value of a numeric expression by removing the fractional part of the number."
+msgid "Calculates a serial time value from the specified hour, minute, and second - parameters passed as strings - that represents the time in a single numeric value. This value can be used to calculate the difference between times."
msgstr ""
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"hd_id3155419\n"
+"03030206.xhp\n"
+"hd_id3154138\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3156152\n"
+"03030206.xhp\n"
+"par_id3156282\n"
"4\n"
"help.text"
-msgid "Fix (Expression)"
-msgstr "Shprehje e rezervuar"
+msgid "TimeValue (Text As String)"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"hd_id3154923\n"
+"03030206.xhp\n"
+"hd_id3153969\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3148947\n"
+"03030206.xhp\n"
+"par_id3156424\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Dyfish"
+msgid "Date"
+msgstr "Data"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"hd_id3154760\n"
+"03030206.xhp\n"
+"hd_id3145172\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3149457\n"
+"03030206.xhp\n"
+"par_id3145786\n"
"8\n"
"help.text"
-msgid "<emph>Expression:</emph> Numeric expression that you want to return the integer value for."
+msgid "<emph>Text:</emph> Any string expression that contains the time that you want to calculate in the format \"HH:MM:SS\"."
msgstr ""
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"hd_id3150447\n"
+"03030206.xhp\n"
+"par_id3152578\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Use the TimeValue function to convert any time into a single value, so that you can calculate time differences."
+msgstr ""
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3156214\n"
+"03030206.xhp\n"
+"par_id3163710\n"
+"10\n"
+"help.text"
+msgid "This TimeValue function returns the type Variant with VarType 7 (Date), and stores this value internally as a double-precision number between 0 and 0.9999999999."
+msgstr ""
+
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3151117\n"
"11\n"
"help.text"
-msgid "Print Fix(3.14159) ' returns 3."
+msgid "As opposed to the DateSerial or the DateValue function, where serial date values result in days relative to a fixed date, you can calculate with the values that are returned by the TimeValue function, but you cannot evaluate them."
msgstr ""
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3154217\n"
+"03030206.xhp\n"
+"par_id3147426\n"
"12\n"
"help.text"
-msgid "Print Fix(0) ' returns 0."
+msgid "In the TimeSerial function, you can pass individual parameters (hour, minute, second) as separate numeric expressions. For the TimeValue function, however, you can pass a string as a parameter containing the time."
msgstr ""
-#: 03080501.xhp
+#: 03030206.xhp
msgctxt ""
-"03080501.xhp\n"
-"par_id3145786\n"
+"03030206.xhp\n"
+"hd_id3145271\n"
"13\n"
"help.text"
-msgid "Print Fix(-3.14159) ' returns -3."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03090300.xhp
+#: 03030206.xhp
msgctxt ""
-"03090300.xhp\n"
+"03030206.xhp\n"
+"par_id3149378\n"
+"33\n"
+"help.text"
+msgid "a1 = \"start time\""
+msgstr "Veprimi filloi [Time]: [1]."
+
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3145800\n"
+"34\n"
+"help.text"
+msgid "b1 = \"end time\""
+msgstr "**Format i gabuar kohor**"
+
+#: 03030206.xhp
+msgctxt ""
+"03030206.xhp\n"
+"par_id3151074\n"
+"35\n"
+"help.text"
+msgid "c1 = \"total time\""
+msgstr "Koha totale e editimit:"
+
+#: 03030300.xhp
+msgctxt ""
+"03030300.xhp\n"
"tit\n"
"help.text"
-msgid "Jumps"
-msgstr ""
+msgid "System Date and Time"
+msgstr "Fusha e datës dhe kohës"
-#: 03090300.xhp
+#: 03030300.xhp
msgctxt ""
-"03090300.xhp\n"
-"hd_id3151262\n"
+"03030300.xhp\n"
+"hd_id3154923\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">Jumps</link>"
+msgid "<link href=\"text/sbasic/shared/03030300.xhp\" name=\"System Date and Time\">System Date and Time</link>"
msgstr ""
-#: 03090300.xhp
+#: 03030300.xhp
msgctxt ""
-"03090300.xhp\n"
-"par_id3148983\n"
+"03030300.xhp\n"
+"par_id3149457\n"
"2\n"
"help.text"
-msgid "The following statements execute jumps."
+msgid "The following functions and statements set or return the system date and time."
msgstr ""
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
+"03030301.xhp\n"
"tit\n"
"help.text"
-msgid "CreateUnoStruct Function [Runtime]"
+msgid "Date Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"bm_id3150499\n"
+"03030301.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "<bookmark_value>CreateUnoStruct function</bookmark_value>"
+msgid "<bookmark_value>Date statement</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"hd_id3150499\n"
+"03030301.xhp\n"
+"hd_id3156027\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Function [Runtime]\">CreateUnoStruct Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Date Statement [Runtime]\">Date Statement [Runtime]</link>"
msgstr ""
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"par_id3150713\n"
+"03030301.xhp\n"
+"par_id3147291\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Creates an instance of a Uno structure type.</ahelp>"
+msgid "Returns the current system date as a string, or resets the date. The date format depends on your local system settings."
msgstr ""
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"par_id3147226\n"
+"03030301.xhp\n"
+"hd_id3148686\n"
"3\n"
"help.text"
-msgid "Use the following structure for your statement:"
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"par_id3149177\n"
+"03030301.xhp\n"
+"par_id3146794\n"
"4\n"
"help.text"
-msgid "Dim oStruct as new com.sun.star.beans.Property"
-msgstr ""
+msgid "Date ; Date = Text As String"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"hd_id3156153\n"
+"03030301.xhp\n"
+"hd_id3154347\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"par_id3155341\n"
+"03030301.xhp\n"
+"par_id3145069\n"
"6\n"
"help.text"
-msgid "oStruct = CreateUnoStruct( Uno type name )"
+msgid "<emph>Text:</emph> Only required in order to reset the system date. In this case, the string expression must correspond to the date format defined in your local settings."
msgstr ""
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"hd_id3145316\n"
+"03030301.xhp\n"
+"hd_id3150793\n"
"7\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03131500.xhp
+#: 03030301.xhp
msgctxt ""
-"03131500.xhp\n"
-"par_id3149762\n"
-"8\n"
+"03030301.xhp\n"
+"par_id3156424\n"
+"9\n"
"help.text"
-msgid "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
-msgstr ""
+msgid "MsgBox \"The date is \" & Date"
+msgstr "Nuk është baraz me"
#: 03030302.xhp
msgctxt ""
@@ -11059,1369 +15650,1262 @@ msgctxt ""
msgid "MsgBox Time,0,\"The time is\""
msgstr "Nuk është baraz me"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
+"03030303.xhp\n"
"tit\n"
"help.text"
-msgid "CreateUnoDialog Function [Runtime]"
+msgid "Timer Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"bm_id3150040\n"
+"03030303.xhp\n"
+"bm_id3149346\n"
"help.text"
-msgid "<bookmark_value>CreateUnoDialog function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>Timer function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"hd_id3150040\n"
+"03030303.xhp\n"
+"hd_id3149346\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Function [Runtime]\">CreateUnoDialog Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03030303.xhp\" name=\"Timer Function [Runtime]\">Timer Function [Runtime]</link>"
msgstr ""
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3154186\n"
+"03030303.xhp\n"
+"par_id3156023\n"
"2\n"
"help.text"
-msgid "Creates a Basic Uno object that represents a Uno dialog control during Basic runtime."
+msgid "Returns a value that specifies the number of seconds that have elapsed since midnight."
msgstr ""
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3153750\n"
+"03030303.xhp\n"
+"par_id3156212\n"
"3\n"
"help.text"
-msgid "Dialogs are defined in the dialog libraries. To display a dialog, a \"live\" dialog must be created from the library."
+msgid "You must first declare a variable to call the Timer function and assign it the \"Long \" data type, otherwise a Date value is returned."
msgstr ""
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3153681\n"
+"03030303.xhp\n"
+"hd_id3153768\n"
"4\n"
"help.text"
-msgid "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"hd_id3154286\n"
+"03030303.xhp\n"
+"par_id3161831\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Timer"
+msgstr "Koha"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3159176\n"
+"03030303.xhp\n"
+"hd_id3146975\n"
"6\n"
"help.text"
-msgid "CreateUnoDialog( oDlgDesc )"
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"hd_id3143270\n"
+"03030303.xhp\n"
+"par_id3146984\n"
"7\n"
"help.text"
+msgid "Date"
+msgstr "Data"
+
+#: 03030303.xhp
+msgctxt ""
+"03030303.xhp\n"
+"hd_id3156442\n"
+"8\n"
+"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3159157\n"
-"8\n"
+"03030303.xhp\n"
+"par_id3145748\n"
+"12\n"
"help.text"
-msgid "' Get dialog description from the dialog library"
+msgid "MsgBox lSec,0,\"Seconds since midnight\""
msgstr ""
-#: 03131800.xhp
+#: 03030303.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3149234\n"
-"9\n"
+"03030303.xhp\n"
+"par_id3156283\n"
+"17\n"
"help.text"
-msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
+msgid "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2) ,0,\"The time is\""
msgstr ""
-#: 03131800.xhp
+#: 03050000.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3154923\n"
-"10\n"
+"03050000.xhp\n"
+"tit\n"
"help.text"
-msgid "' generate \"live\" dialog"
-msgstr "Gjeneron emrin e fajllit nga"
+msgid "Error-Handling Functions"
+msgstr "Paraqit Funksionet e Vizatimit"
-#: 03131800.xhp
+#: 03050000.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3149670\n"
-"11\n"
+"03050000.xhp\n"
+"hd_id3143271\n"
+"1\n"
"help.text"
-msgid "oDlgControl = CreateUnoDialog( oDlgDesc )"
+msgid "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Error-Handling Functions\">Error-Handling Functions</link>"
msgstr ""
-#: 03131800.xhp
+#: 03050000.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3148550\n"
-"12\n"
+"03050000.xhp\n"
+"par_id3145068\n"
+"2\n"
"help.text"
-msgid "' display \"live\" dialog"
-msgstr "Paraqit shkronjat e lëshuara"
+msgid "Use the following statements and functions to define the way $[officename] Basic reacts to run-time errors."
+msgstr ""
-#: 03131800.xhp
+#: 03050000.xhp
msgctxt ""
-"03131800.xhp\n"
-"par_id3154072\n"
-"13\n"
+"03050000.xhp\n"
+"par_id3148946\n"
+"3\n"
"help.text"
-msgid "oDlgControl.execute"
-msgstr "Ekzektuto Makron"
+msgid "$[officename] Basic offers several methods to prevent the termination of a program when a run-time error occurs."
+msgstr ""
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
+"03050100.xhp\n"
"tit\n"
"help.text"
-msgid "IsEmpty Function [Runtime]"
+msgid "Erl Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"bm_id3153394\n"
+"03050100.xhp\n"
+"bm_id3157896\n"
"help.text"
-msgid "<bookmark_value>IsEmpty function</bookmark_value>"
+msgid "<bookmark_value>Erl function</bookmark_value>"
msgstr "E kthen funksionin gabim plotwsues"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"hd_id3153394\n"
+"03050100.xhp\n"
+"hd_id3157896\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"IsEmpty Function [Runtime]\">IsEmpty Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Erl Function [Runtime]\">Erl Function [Runtime]</link>"
msgstr ""
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"par_id3163045\n"
+"03050100.xhp\n"
+"par_id3153394\n"
"2\n"
"help.text"
-msgid "Tests if a Variant variable contains the Empty value. The Empty value indicates that the variable is not initialized."
+msgid "Returns the line number where an error occurred during program execution."
msgstr ""
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"hd_id3159158\n"
+"03050100.xhp\n"
+"hd_id3147574\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"par_id3153126\n"
+"03050100.xhp\n"
+"par_id3146795\n"
"4\n"
"help.text"
-msgid "IsEmpty (Var)"
-msgstr "Var (mostër)"
+msgid "Erl"
+msgstr ""
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"hd_id3148685\n"
+"03050100.xhp\n"
+"hd_id3147265\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"par_id3156344\n"
+"03050100.xhp\n"
+"par_id3154924\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "JO logjike"
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"hd_id3148947\n"
+"03050100.xhp\n"
+"hd_id3150792\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"par_id3154347\n"
+"03050100.xhp\n"
+"par_id3153771\n"
"8\n"
"help.text"
-msgid "<emph>Var:</emph> Any variable that you want to test. If the Variant contains the Empty value, the function returns True, otherwise the function returns False."
+msgid "The Erl function only returns a line number, and not a line label."
msgstr ""
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"hd_id3154138\n"
+"03050100.xhp\n"
+"hd_id3146921\n"
"9\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03102400.xhp
+#: 03050100.xhp
msgctxt ""
-"03102400.xhp\n"
-"par_id3154863\n"
-"13\n"
+"03050100.xhp\n"
+"par_id3150010\n"
+"11\n"
"help.text"
-msgid "Print IsEmpty(sVar) ' Returns True"
+msgid "On Error GoTo ErrorHandler ' Set up error handler"
msgstr ""
-#: 03030200.xhp
-msgctxt ""
-"03030200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Time Values"
-msgstr "Ndrysho vlerat standarde"
-
-#: 03030200.xhp
+#: 03050100.xhp
msgctxt ""
-"03030200.xhp\n"
-"hd_id3147226\n"
-"1\n"
+"03050100.xhp\n"
+"par_id3153188\n"
+"14\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030200.xhp\" name=\"Converting Time Values\">Converting Time Values</link>"
+msgid "' Error caused by non-existent file"
msgstr ""
-#: 03030200.xhp
+#: 03050100.xhp
msgctxt ""
-"03030200.xhp\n"
-"par_id3149415\n"
-"2\n"
+"03050100.xhp\n"
+"par_id3155416\n"
+"21\n"
"help.text"
-msgid "The following functions convert time values to calculable numbers."
+msgid "MsgBox \"Error \" & err & \": \" & Error$ + chr(13) + \"In Line : \" + Erl + chr(13) + Now , 16 ,\"An error occurred\""
msgstr ""
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
+"03050200.xhp\n"
"tit\n"
"help.text"
-msgid "CLng Function [Runtime]"
+msgid "Err Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"bm_id3153311\n"
+"03050200.xhp\n"
+"bm_id3156343\n"
"help.text"
-msgid "<bookmark_value>CLng function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>Err function</bookmark_value>"
+msgstr "E kthen funksionin gabim plotwsues"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"hd_id3153311\n"
+"03050200.xhp\n"
+"hd_id3156343\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"CLng Function [Runtime]\">CLng Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function [Runtime]\">Err Function [Runtime]</link>"
msgstr ""
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"par_id3148686\n"
+"03050200.xhp\n"
+"par_id3150541\n"
"2\n"
"help.text"
-msgid "Converts any string or numeric expression to a long integer."
+msgid "Returns an error code that identifies the error that occurred during program execution."
msgstr ""
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"hd_id3145315\n"
+"03050200.xhp\n"
+"hd_id3149656\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"par_id3147573\n"
+"03050200.xhp\n"
+"par_id3154123\n"
"4\n"
"help.text"
-msgid "CLng (Expression)"
-msgstr "Shprehje e rezervuar"
+msgid "Err"
+msgstr "Err:"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"hd_id3145610\n"
+"03050200.xhp\n"
+"hd_id3147229\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"par_id3153897\n"
+"03050200.xhp\n"
+"par_id3150869\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Standard (e gjatë)"
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"hd_id3154760\n"
+"03050200.xhp\n"
+"hd_id3153193\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"par_id3159414\n"
+"03050200.xhp\n"
+"par_id3149561\n"
"8\n"
"help.text"
-msgid "<emph>Expression:</emph> Any numerical expression that you want to convert. If the <emph>Expression</emph> lies outside the valid long integer range between -2.147.483.648 and 2.147.483.647, $[officename] Basic returns an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+msgid "The Err function is used in error-handling routines to determine the error and the corrective action."
msgstr ""
-#: 03100600.xhp
+#: 03050200.xhp
msgctxt ""
-"03100600.xhp\n"
-"par_id3150358\n"
+"03050200.xhp\n"
+"hd_id3147317\n"
"9\n"
"help.text"
-msgid "This function always rounds the fractional part of a number to the nearest integer."
-msgstr ""
-
-#: 03100600.xhp
-msgctxt ""
-"03100600.xhp\n"
-"hd_id3154216\n"
-"10\n"
-"help.text"
msgid "Example:"
msgstr "Shembull"
-#: main0211.xhp
-msgctxt ""
-"main0211.xhp\n"
-"tit\n"
-"help.text"
-msgid "Macro Toolbar"
-msgstr "Shiriti i makrove kyçur/çkyçur"
-
-#: main0211.xhp
+#: 03050200.xhp
msgctxt ""
-"main0211.xhp\n"
-"bm_id3150543\n"
+"03050200.xhp\n"
+"par_id3147426\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>toolbars; Basic IDE</bookmark_value><bookmark_value>macro toolbar</bookmark_value>"
+msgid "On Error Goto ErrorHandler REM Set up error handler"
msgstr ""
-#: main0211.xhp
+#: 03050200.xhp
msgctxt ""
-"main0211.xhp\n"
-"hd_id3150543\n"
-"1\n"
+"03050200.xhp\n"
+"par_id3149481\n"
+"14\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Macro Toolbar</link>"
+msgid "REM Error occurs due to non-existent file"
msgstr ""
-#: main0211.xhp
+#: 03050200.xhp
msgctxt ""
-"main0211.xhp\n"
-"par_id3147288\n"
-"2\n"
+"03050200.xhp\n"
+"par_id3145646\n"
+"21\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">The <emph>Macro Toolbar </emph>contains commands to create, edit, and run macros.</ahelp>"
+msgid "MsgBox \"Error \" & Err & \": \" & Error$ + chr(13) + \"At line : \" + Erl + chr(13) + Now , 16 ,\"an error occurred\""
msgstr ""
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
+"03050300.xhp\n"
"tit\n"
"help.text"
-msgid "\"-\" Operator [Runtime]"
-msgstr "Gabim nw kohw: #"
+msgid "Error Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
-"bm_id3156042\n"
+"03050300.xhp\n"
+"bm_id3159413\n"
"help.text"
-msgid "<bookmark_value>\"-\" operator (mathematical)</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>Error function</bookmark_value>"
+msgstr "E kthen funksionin gabim plotwsues"
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
-"hd_id3156042\n"
+"03050300.xhp\n"
+"hd_id3159413\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070100.xhp\">\"-\" Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error Function [Runtime]\">Error Function [Runtime]</link>"
msgstr ""
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
-"par_id3153345\n"
+"03050300.xhp\n"
+"par_id3148663\n"
"2\n"
"help.text"
-msgid "Subtracts two values."
-msgstr "Ndrysho vlerat standarde"
+msgid "Returns the error message that corresponds to a given error code."
+msgstr ""
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
-"hd_id3149416\n"
+"03050300.xhp\n"
+"hd_id3153379\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
-"par_id3156023\n"
+"03050300.xhp\n"
+"par_id3154366\n"
"4\n"
"help.text"
-msgid "Result = Expression1 - Expression2"
-msgstr "Gabim: Pa rezultat"
+msgid "Error (Expression)"
+msgstr "Shprehje e rezervuar"
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
-"hd_id3154760\n"
+"03050300.xhp\n"
+"hd_id3145173\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
-"par_id3147560\n"
+"03050300.xhp\n"
+"par_id3154125\n"
"6\n"
"help.text"
-msgid "<emph>Result:</emph> Any numerical expression that contains the result of the subtraction."
-msgstr ""
+msgid "String"
+msgstr "Varg"
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
-"par_id3150398\n"
+"03050300.xhp\n"
+"hd_id3150869\n"
"7\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to subtract."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03070100.xhp
+#: 03050300.xhp
msgctxt ""
-"03070100.xhp\n"
-"hd_id3154366\n"
+"03050300.xhp\n"
+"par_id3153193\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "<emph>Expression:</emph> Any numeric expression that contains the error code of the error message that you want to return."
+msgstr ""
-#: 03030205.xhp
+#: 03050300.xhp
msgctxt ""
-"03030205.xhp\n"
+"03050300.xhp\n"
+"par_id3159254\n"
+"9\n"
+"help.text"
+msgid "If no parameters are passed, the Error function returns the error message of the most recent error that occurred during program execution."
+msgstr ""
+
+#: 03050500.xhp
+msgctxt ""
+"03050500.xhp\n"
"tit\n"
"help.text"
-msgid "TimeSerial Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "On Error GoTo ... Resume Statement [Runtime]"
+msgstr ""
-#: 03030205.xhp
+#: 03050500.xhp
msgctxt ""
-"03030205.xhp\n"
-"bm_id3143271\n"
+"03050500.xhp\n"
+"bm_id3146795\n"
"help.text"
-msgid "<bookmark_value>TimeSerial function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>Resume Next parameter</bookmark_value><bookmark_value>On Error GoTo ... Resume statement</bookmark_value>"
+msgstr ""
-#: 03030205.xhp
+#: 03050500.xhp
msgctxt ""
-"03030205.xhp\n"
-"hd_id3143271\n"
+"03050500.xhp\n"
+"hd_id3146795\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030205.xhp\" name=\"TimeSerial Function [Runtime]\">TimeSerial Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"On Error GoTo ... Resume Statement [Runtime]\">On Error GoTo ... Resume Statement [Runtime]</link>"
msgstr ""
-#: 03030205.xhp
+#: 03050500.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3156344\n"
+"03050500.xhp\n"
+"par_id3150358\n"
"2\n"
"help.text"
-msgid "Calculates a serial time value for the specified hour, minute, and second parameters that are passed as numeric value. You can then use this value to calculate the difference between times."
+msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
msgstr ""
-#: 03030205.xhp
+#: 03050500.xhp
msgctxt ""
-"03030205.xhp\n"
-"hd_id3146794\n"
-"4\n"
+"03050500.xhp\n"
+"hd_id3151212\n"
+"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03030205.xhp
+#: 03050500.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3150792\n"
-"5\n"
+"03050500.xhp\n"
+"par_id3145173\n"
+"4\n"
"help.text"
-msgid "TimeSerial (hour, minute, second)"
+msgid "On {[Local] Error GoTo Labelname | GoTo 0 | Resume Next}"
msgstr ""
-#: 03030205.xhp
+#: 03050500.xhp
msgctxt ""
-"03030205.xhp\n"
-"hd_id3148797\n"
-"6\n"
+"03050500.xhp\n"
+"hd_id3154125\n"
+"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03030205.xhp
+#: 03050500.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3154908\n"
+"03050500.xhp\n"
+"par_id3150869\n"
"7\n"
"help.text"
-msgid "Date"
-msgstr "Data"
+msgid "<emph>GoTo Labelname:</emph> If an error occurs, enables the error-handling routine that starts at the line \"Labelname\"."
+msgstr ""
-#: 03030205.xhp
+#: 03050500.xhp
msgctxt ""
-"03030205.xhp\n"
-"hd_id3154124\n"
+"03050500.xhp\n"
+"par_id3150439\n"
"8\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "<emph>Resume Next:</emph> If an error occurs, program execution continues with the statement that follows the statement in which the error occurred."
+msgstr ""
-#: 03030205.xhp
+#: 03050500.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3153193\n"
+"03050500.xhp\n"
+"par_id3149482\n"
"9\n"
"help.text"
-msgid "<emph>hour:</emph> Any integer expression that indicates the hour of the time that is used to determine the serial time value. Valid values: 0-23."
+msgid "<emph>GoTo 0:</emph> Disables the error handler in the current procedure."
msgstr ""
-#: 03030205.xhp
+#: 03050500.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3159252\n"
-"10\n"
+"03050500.xhp\n"
+"par_id3149483\n"
+"9\n"
"help.text"
-msgid "<emph>minute:</emph> Any integer expression that indicates the minute of the time that is used to determine the serial time value. In general, use values between 0 and 59. However, you can also use values that lie outside of this range, where the number of minutes influence the hour value."
+msgid "<emph>Local:</emph> \"On error\" is global in scope, and remains active until canceled by another \"On error\" statement. \"On Local error\" is local to the routine which invokes it. Local error handling overrides any previous global setting. When the invoking routine exits, the local error handling is canceled automatically, and any previous global setting is restored."
msgstr ""
-#: 03030205.xhp
+#: 03050500.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3161831\n"
-"11\n"
+"03050500.xhp\n"
+"par_id3148619\n"
+"10\n"
"help.text"
-msgid "<emph>second:</emph> Any integer expression that indicates the second of the time that is used to determine the serial time value. In general, you can use values between 0 and 59. However, you can also use values that lie outside of this range, where the number seconds influences the minute value."
+msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
msgstr ""
-#: 03030205.xhp
-msgctxt ""
-"03030205.xhp\n"
-"par_id3155854\n"
-"12\n"
-"help.text"
-msgid "<emph>Examples:</emph>"
-msgstr "Emri i grupit"
-
-#: 03030205.xhp
+#: 03050500.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3153952\n"
-"13\n"
+"03050500.xhp\n"
+"hd_id3146985\n"
+"11\n"
"help.text"
-msgid "12, -5, 45 corresponds to 11, 55, 45"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03030205.xhp
+#: 03050500.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3147349\n"
-"14\n"
+"03050500.xhp\n"
+"par_id3153876\n"
+"52\n"
"help.text"
-msgid "12, 61, 45 corresponds to 13, 2, 45"
-msgstr ""
+msgid "Print #iNumber, \"This is a line of text\""
+msgstr "Nga kreu në fund"
-#: 03030205.xhp
+#: 03050500.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3147426\n"
-"15\n"
+"03050500.xhp\n"
+"par_id3146916\n"
+"67\n"
"help.text"
-msgid "12, 20, -2 corresponds to 12, 19, 58"
+msgid "MsgBox \"All files will be closed\",0,\"Error\""
msgstr ""
-#: 03030205.xhp
+#: 03060000.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3153365\n"
-"16\n"
+"03060000.xhp\n"
+"tit\n"
"help.text"
-msgid "12, 20, 63 corresponds to 12, 21, 4"
-msgstr ""
+msgid "Logical Operators"
+msgstr "Gjerësi logjike"
-#: 03030205.xhp
+#: 03060000.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3146985\n"
-"17\n"
+"03060000.xhp\n"
+"hd_id3147559\n"
+"1\n"
"help.text"
-msgid "You can use the TimeSerial function to convert any time into a single value that you can use to calculate time differences."
+msgid "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">Logical Operators</link>"
msgstr ""
-#: 03030205.xhp
+#: 03060000.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3155308\n"
-"18\n"
+"03060000.xhp\n"
+"par_id3153379\n"
+"2\n"
"help.text"
-msgid "The TimeSerial function returns the type Variant with VarType 7 (Date). This value is stored internally as a double-precision number between 0 and 0.9999999999. As opposed to the DateSerial or DateValue function, where the serial date values are calculated as days relative to a fixed date, you can calculate with values returned by the TimeSerial function, but you cannot evaluate them."
+msgid "The following logical operators are supported by $[officename] Basic."
msgstr ""
-#: 03030205.xhp
+#: 03060000.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3149482\n"
-"19\n"
+"03060000.xhp\n"
+"par_id3154138\n"
+"3\n"
"help.text"
-msgid "In the TimeValue function, you can pass a string as a parameter containing the time. For the TimeSerial function, however, you can pass the individual parameters (hour, minute, second) as separate numeric expressions."
+msgid "Logical operators combine (bitwise) the contents of two expressions or variables, for example, to test if specific bits are set or not."
msgstr ""
-#: 03030205.xhp
+#: 03060100.xhp
msgctxt ""
-"03030205.xhp\n"
-"hd_id3154790\n"
-"20\n"
+"03060100.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "AND Operator [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03030205.xhp
+#: 03060100.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3155600\n"
-"25\n"
+"03060100.xhp\n"
+"bm_id3146117\n"
"help.text"
-msgid "MsgBox dDate,64,\"Time as a number\""
+msgid "<bookmark_value>AND operator (logical)</bookmark_value>"
msgstr ""
-#: 03030205.xhp
+#: 03060100.xhp
msgctxt ""
-"03030205.xhp\n"
-"par_id3153417\n"
-"26\n"
+"03060100.xhp\n"
+"hd_id3146117\n"
+"1\n"
"help.text"
-msgid "MsgBox sDate,64,\"Formatted time\""
+msgid "<link href=\"text/sbasic/shared/03060100.xhp\" name=\"AND Operator [Runtime]\">AND Operator [Runtime]</link>"
msgstr ""
-#: 03110000.xhp
-msgctxt ""
-"03110000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Comparison Operators"
-msgstr "Operatërot Unar/Binar"
-
-#: 03110000.xhp
+#: 03060100.xhp
msgctxt ""
-"03110000.xhp\n"
-"hd_id3155555\n"
-"1\n"
+"03060100.xhp\n"
+"par_id3143268\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
+msgid "Logically combines two expressions."
msgstr ""
-#: 03110000.xhp
+#: 03060100.xhp
msgctxt ""
-"03110000.xhp\n"
-"par_id3153528\n"
-"2\n"
+"03060100.xhp\n"
+"hd_id3147574\n"
+"3\n"
"help.text"
-msgid "The available comparison operators are described here."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03090100.xhp
+#: 03060100.xhp
msgctxt ""
-"03090100.xhp\n"
-"tit\n"
+"03060100.xhp\n"
+"par_id3156344\n"
+"4\n"
"help.text"
-msgid "Condition Statements"
-msgstr "Me kusht"
+msgid "Result = Expression1 And Expression2"
+msgstr "Gabim: Pa rezultat"
-#: 03090100.xhp
+#: 03060100.xhp
msgctxt ""
-"03090100.xhp\n"
-"hd_id3154422\n"
-"1\n"
+"03060100.xhp\n"
+"hd_id3148946\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Condition Statements\">Condition Statements</link>"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03090100.xhp
+#: 03060100.xhp
msgctxt ""
-"03090100.xhp\n"
-"par_id3153750\n"
-"2\n"
+"03060100.xhp\n"
+"par_id3149457\n"
+"6\n"
"help.text"
-msgid "The following statements are based on conditions."
+msgid "<emph>Result:</emph> Any numeric variable that records the result of the combination."
msgstr ""
-#: 03120105.xhp
+#: 03060100.xhp
msgctxt ""
-"03120105.xhp\n"
-"tit\n"
+"03060100.xhp\n"
+"par_id3150541\n"
+"7\n"
"help.text"
-msgid "CByte Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to combine."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03120105.xhp
+#: 03060100.xhp
msgctxt ""
-"03120105.xhp\n"
-"bm_id3156027\n"
+"03060100.xhp\n"
+"par_id3156215\n"
+"8\n"
"help.text"
-msgid "<bookmark_value>CByte function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "Boolean expressions combined with AND only return the value <emph>True</emph> if both expressions evaluate to <emph>True</emph>:"
+msgstr ""
-#: 03120105.xhp
+#: 03060100.xhp
msgctxt ""
-"03120105.xhp\n"
-"hd_id3156027\n"
-"1\n"
+"03060100.xhp\n"
+"par_id3150870\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function [Runtime]\">CByte Function [Runtime]</link>"
+msgid "<emph>True</emph> AND <emph>True</emph> returns <emph>True</emph>; for all other combinations the result is <emph>False</emph>."
msgstr ""
-#: 03120105.xhp
+#: 03060100.xhp
msgctxt ""
-"03120105.xhp\n"
-"par_id3143267\n"
-"2\n"
+"03060100.xhp\n"
+"par_id3153768\n"
+"10\n"
"help.text"
-msgid "Converts a string or a numeric expression to the type Byte."
+msgid "The AND operator also performs a bitwise comparison of identically positioned bits in two numeric expressions."
msgstr ""
-#: 03120105.xhp
+#: 03060100.xhp
msgctxt ""
-"03120105.xhp\n"
-"hd_id3149811\n"
-"3\n"
+"03060100.xhp\n"
+"hd_id3153727\n"
+"11\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Example:"
+msgstr "Shembull"
-#: 03120105.xhp
+#: 03060100.xhp
msgctxt ""
-"03120105.xhp\n"
-"par_id3147573\n"
-"4\n"
+"03060100.xhp\n"
+"par_id3146984\n"
+"16\n"
"help.text"
-msgid "Cbyte( expression )"
-msgstr "Shprehje e rezervuar"
+msgid "vVarOut = A > B And B > C ' returns -1"
+msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03120105.xhp
+#: 03060100.xhp
msgctxt ""
-"03120105.xhp\n"
-"hd_id3145315\n"
-"5\n"
+"03060100.xhp\n"
+"par_id3154014\n"
+"17\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "vVarOut = B > A And B > C ' returns 0"
+msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03120105.xhp
+#: 03060100.xhp
msgctxt ""
-"03120105.xhp\n"
-"par_id3148473\n"
-"6\n"
+"03060100.xhp\n"
+"par_id3149262\n"
+"18\n"
"help.text"
-msgid "Byte"
-msgstr ""
+msgid "vVarOut = A > B And B > D ' returns 0"
+msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03120105.xhp
+#: 03060100.xhp
msgctxt ""
-"03120105.xhp\n"
-"hd_id3147530\n"
-"7\n"
+"03060100.xhp\n"
+"par_id3145751\n"
+"19\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "vVarOut = (B > D And B > A) ' returns 0"
+msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03120105.xhp
-#, fuzzy
+#: 03060100.xhp
msgctxt ""
-"03120105.xhp\n"
-"par_id3145068\n"
-"8\n"
+"03060100.xhp\n"
+"par_id3147394\n"
+"20\n"
"help.text"
-msgid "<emph>Expression:</emph> A string or a numeric expression."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "vVarOut = B And A ' returns 8 due to the bitwise And combination of both arguments"
+msgstr ""
-#: 03010201.xhp
+#: 03060200.xhp
msgctxt ""
-"03010201.xhp\n"
+"03060200.xhp\n"
"tit\n"
"help.text"
-msgid "InputBox Function [Runtime]"
+msgid "Eqv Operator [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03010201.xhp
+#: 03060200.xhp
msgctxt ""
-"03010201.xhp\n"
-"bm_id3148932\n"
+"03060200.xhp\n"
+"bm_id3156344\n"
"help.text"
-msgid "<bookmark_value>InputBox function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>Eqv operator (logical)</bookmark_value>"
+msgstr ""
-#: 03010201.xhp
+#: 03060200.xhp
msgctxt ""
-"03010201.xhp\n"
-"hd_id3148932\n"
+"03060200.xhp\n"
+"hd_id3156344\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010201.xhp\" name=\"InputBox Function [Runtime]\">InputBox Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Eqv Operator [Runtime]\">Eqv Operator [Runtime]</link>"
msgstr ""
-#: 03010201.xhp
+#: 03060200.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3151262\n"
+"03060200.xhp\n"
+"par_id3149656\n"
"2\n"
"help.text"
-msgid "Displays a prompt in a dialog at which the user can input text. The input is assigned to a variable."
+msgid "Calculates the logical equivalence of two expressions."
msgstr ""
-#: 03010201.xhp
+#: 03060200.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3151100\n"
+"03060200.xhp\n"
+"hd_id3154367\n"
"3\n"
"help.text"
-msgid "The <emph>InputBox</emph> statement is a convenient method of entering text through a dialog. Confirm the input by clicking OK or pressing Return. The input is returned as the function return value. If you close the dialog with Cancel, <emph>InputBox</emph> returns a zero-length string (\"\")."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03010201.xhp
+#: 03060200.xhp
msgctxt ""
-"03010201.xhp\n"
-"hd_id3152347\n"
+"03060200.xhp\n"
+"par_id3154910\n"
"4\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Result = Expression1 Eqv Expression2"
+msgstr "Gabim: Pa rezultat"
-#: 03010201.xhp
+#: 03060200.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3159201\n"
+"03060200.xhp\n"
+"hd_id3151043\n"
"5\n"
"help.text"
-msgid "InputBox (Msg As String[, Title As String[, Default As String[, x_pos As Integer, y_pos As Integer]]]])"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03010201.xhp
+#: 03060200.xhp
msgctxt ""
-"03010201.xhp\n"
-"hd_id3150713\n"
+"03060200.xhp\n"
+"par_id3150869\n"
"6\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the comparison."
+msgstr ""
-#: 03010201.xhp
+#: 03060200.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3145090\n"
+"03060200.xhp\n"
+"par_id3150448\n"
"7\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to compare."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03010201.xhp
+#: 03060200.xhp
msgctxt ""
-"03010201.xhp\n"
-"hd_id3149346\n"
+"03060200.xhp\n"
+"par_id3149562\n"
"8\n"
"help.text"
-msgid "Parameter:"
-msgstr "Parametri i sllajdit"
+msgid "When testing for equivalence between Boolean expressions, the result is <emph>True</emph> if both expressions are either <emph>True</emph> or <emph>False</emph>."
+msgstr ""
-#: 03010201.xhp
+#: 03060200.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3153311\n"
+"03060200.xhp\n"
+"par_id3154319\n"
"9\n"
"help.text"
-msgid "<emph>Msg</emph>: String expression displayed as the message in the dialog box."
+msgid "In a bit-wise comparison, the Eqv operator only sets the corresponding bit in the result if a bit is set in both expressions, or in neither expression."
msgstr ""
-#: 03010201.xhp
+#: 03060200.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3145315\n"
+"03060200.xhp\n"
+"hd_id3159154\n"
"10\n"
"help.text"
-msgid "<emph>Title</emph>: String expression displayed in the title bar of the dialog box."
-msgstr ""
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3154307\n"
-"11\n"
-"help.text"
-msgid "<emph>Default</emph>: String expression displayed in the text box as default if no other input is given."
-msgstr ""
-
-#: 03010201.xhp
-msgctxt ""
-"03010201.xhp\n"
-"par_id3147573\n"
-"12\n"
-"help.text"
-msgid "<emph>x_pos</emph>: Integer expression that specifies the horizontal position of the dialog. The position is an absolute coordinate and does not refer to the window of the office application."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03010201.xhp
+#: 03060200.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3156024\n"
-"13\n"
+"03060200.xhp\n"
+"par_id3152462\n"
+"15\n"
"help.text"
-msgid "<emph>y_pos</emph>: Integer expression that specifies the vertical position of the dialog. The position is an absolute coordinate and does not refer to the window of the office application."
-msgstr ""
+msgid "vOut = A > B Eqv B > C ' returns -1"
+msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03010201.xhp
+#: 03060200.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3153897\n"
-"14\n"
+"03060200.xhp\n"
+"par_id3153191\n"
+"16\n"
"help.text"
-msgid "If <emph>x_pos</emph> and <emph>y_pos</emph> are omitted, the dialog is centered on the screen. The position is specified in <link href=\"text/sbasic/shared/00000002.xhp#twips\" name=\"twips\">twips</link>."
-msgstr ""
+msgid "vOut = B > A Eqv B > C ' returns 0"
+msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03010201.xhp
+#: 03060200.xhp
msgctxt ""
-"03010201.xhp\n"
-"hd_id3149456\n"
-"15\n"
+"03060200.xhp\n"
+"par_id3145799\n"
+"17\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "vOut = A > B Eqv B > D ' returns 0"
+msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03010201.xhp
+#: 03060200.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3154367\n"
+"03060200.xhp\n"
+"par_id3149412\n"
"18\n"
"help.text"
-msgid "sText = InputBox (\"Please enter a phrase:\",\"Dear User\")"
-msgstr ""
+msgid "vOut = (B > D Eqv B > A) ' returns -1"
+msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03010201.xhp
+#: 03060200.xhp
msgctxt ""
-"03010201.xhp\n"
-"par_id3151042\n"
+"03060200.xhp\n"
+"par_id3149959\n"
"19\n"
"help.text"
-msgid "MsgBox ( sText , 64, \"Confirmation of phrase\")"
-msgstr ""
+msgid "vOut = B Eqv A ' returns -3"
+msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03060100.xhp
+#: 03060300.xhp
msgctxt ""
-"03060100.xhp\n"
+"03060300.xhp\n"
"tit\n"
"help.text"
-msgid "AND Operator [Runtime]"
+msgid "Imp-Operator [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03060100.xhp
+#: 03060300.xhp
msgctxt ""
-"03060100.xhp\n"
-"bm_id3146117\n"
+"03060300.xhp\n"
+"bm_id3156024\n"
"help.text"
-msgid "<bookmark_value>AND operator (logical)</bookmark_value>"
+msgid "<bookmark_value>Imp operator (logical)</bookmark_value>"
msgstr ""
-#: 03060100.xhp
+#: 03060300.xhp
msgctxt ""
-"03060100.xhp\n"
-"hd_id3146117\n"
+"03060300.xhp\n"
+"hd_id3156024\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060100.xhp\" name=\"AND Operator [Runtime]\">AND Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
msgstr ""
-#: 03060100.xhp
+#: 03060300.xhp
msgctxt ""
-"03060100.xhp\n"
-"par_id3143268\n"
+"03060300.xhp\n"
+"par_id3148947\n"
"2\n"
"help.text"
-msgid "Logically combines two expressions."
+msgid "Performs a logical implication on two expressions."
msgstr ""
-#: 03060100.xhp
+#: 03060300.xhp
msgctxt ""
-"03060100.xhp\n"
-"hd_id3147574\n"
+"03060300.xhp\n"
+"hd_id3148664\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03060100.xhp
+#: 03060300.xhp
msgctxt ""
-"03060100.xhp\n"
-"par_id3156344\n"
+"03060300.xhp\n"
+"par_id3149656\n"
"4\n"
"help.text"
-msgid "Result = Expression1 And Expression2"
+msgid "Result = Expression1 Imp Expression2"
msgstr "Gabim: Pa rezultat"
-#: 03060100.xhp
+#: 03060300.xhp
msgctxt ""
-"03060100.xhp\n"
-"hd_id3148946\n"
+"03060300.xhp\n"
+"hd_id3151212\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03060100.xhp
+#: 03060300.xhp
msgctxt ""
-"03060100.xhp\n"
-"par_id3149457\n"
+"03060300.xhp\n"
+"par_id3154910\n"
"6\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that records the result of the combination."
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the implication."
msgstr ""
-#: 03060100.xhp
+#: 03060300.xhp
msgctxt ""
-"03060100.xhp\n"
-"par_id3150541\n"
+"03060300.xhp\n"
+"par_id3156281\n"
"7\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to combine."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to evaluate with the Imp operator."
+msgstr ""
-#: 03060100.xhp
+#: 03060300.xhp
msgctxt ""
-"03060100.xhp\n"
-"par_id3156215\n"
+"03060300.xhp\n"
+"par_id3150440\n"
"8\n"
"help.text"
-msgid "Boolean expressions combined with AND only return the value <emph>True</emph> if both expressions evaluate to <emph>True</emph>:"
+msgid "If you use the Imp operator in Boolean expressions, False is only returned if the first expression evaluates to True and the second expression to False."
msgstr ""
-#: 03060100.xhp
+#: 03060300.xhp
msgctxt ""
-"03060100.xhp\n"
-"par_id3150870\n"
+"03060300.xhp\n"
+"par_id3163710\n"
"9\n"
"help.text"
-msgid "<emph>True</emph> AND <emph>True</emph> returns <emph>True</emph>; for all other combinations the result is <emph>False</emph>."
+msgid "If you use the Imp operator in bit expressions, a bit is deleted from the result if the corresponding bit is set in the first expression and the corresponding bit is deleted in the second expression."
msgstr ""
-#: 03060100.xhp
+#: 03060300.xhp
msgctxt ""
-"03060100.xhp\n"
-"par_id3153768\n"
+"03060300.xhp\n"
+"hd_id3147318\n"
"10\n"
"help.text"
-msgid "The AND operator also performs a bitwise comparison of identically positioned bits in two numeric expressions."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03060100.xhp
+#: 03060300.xhp
msgctxt ""
-"03060100.xhp\n"
-"hd_id3153727\n"
-"11\n"
+"03060300.xhp\n"
+"par_id3145750\n"
+"15\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "vOut = A > B Imp B > C ' returns -1"
+msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03060100.xhp
-#, fuzzy
+#: 03060300.xhp
msgctxt ""
-"03060100.xhp\n"
-"par_id3146984\n"
+"03060300.xhp\n"
+"par_id3156441\n"
"16\n"
"help.text"
-msgid "vVarOut = A > B And B > C ' returns -1"
+msgid "vOut = B > A Imp B > C ' returns -1"
msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03060100.xhp
-#, fuzzy
+#: 03060300.xhp
msgctxt ""
-"03060100.xhp\n"
-"par_id3154014\n"
+"03060300.xhp\n"
+"par_id3152596\n"
"17\n"
"help.text"
-msgid "vVarOut = B > A And B > C ' returns 0"
+msgid "vOut = A > B Imp B > D ' returns 0"
msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03060100.xhp
-#, fuzzy
+#: 03060300.xhp
msgctxt ""
-"03060100.xhp\n"
-"par_id3149262\n"
+"03060300.xhp\n"
+"par_id3154942\n"
"18\n"
"help.text"
-msgid "vVarOut = A > B And B > D ' returns 0"
+msgid "vOut = (B > D Imp B > A) ' returns -1"
msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03060100.xhp
-#, fuzzy
+#: 03060300.xhp
msgctxt ""
-"03060100.xhp\n"
-"par_id3145751\n"
+"03060300.xhp\n"
+"par_id3154492\n"
"19\n"
"help.text"
-msgid "vVarOut = (B > D And B > A) ' returns 0"
+msgid "vOut = B Imp A ' returns -1"
msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03060100.xhp
-msgctxt ""
-"03060100.xhp\n"
-"par_id3147394\n"
-"20\n"
-"help.text"
-msgid "vVarOut = B And A ' returns 8 due to the bitwise And combination of both arguments"
-msgstr ""
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Programming with $[officename] Basic"
-msgstr ""
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"hd_id3156027\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"doc_title\"><link href=\"text/sbasic/shared/01000000.xhp\" name=\"Programming with $[officename] Basic \">Programming with $[officename] Basic </link></variable>"
-msgstr ""
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"par_id3153708\n"
-"2\n"
-"help.text"
-msgid "This is where you find general information about working with macros and $[officename] Basic."
-msgstr ""
-
-#: 03090403.xhp
+#: 03060400.xhp
msgctxt ""
-"03090403.xhp\n"
+"03060400.xhp\n"
"tit\n"
"help.text"
-msgid "Declare Statement [Runtime]"
+msgid "Not-Operator [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"bm_id3148473\n"
-"help.text"
-msgid "<bookmark_value>Declare statement</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 03090403.xhp
+#: 03060400.xhp
msgctxt ""
-"03090403.xhp\n"
-"hd_id3148473\n"
-"1\n"
+"03060400.xhp\n"
+"bm_id3156024\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement [Runtime]\">Declare Statement [Runtime]</link>"
+msgid "<bookmark_value>Not operator (logical)</bookmark_value>"
msgstr ""
-#: 03090403.xhp
+#: 03060400.xhp
msgctxt ""
-"03090403.xhp\n"
-"bm_id3145316\n"
+"03060400.xhp\n"
+"hd_id3156024\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>DLL (Dynamic Link Library)</bookmark_value>"
+msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Not-Operator [Runtime]</link>"
msgstr ""
-#: 03090403.xhp
+#: 03060400.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3145316\n"
+"03060400.xhp\n"
+"par_id3159414\n"
"2\n"
"help.text"
-msgid "Declares and defines a subroutine in a DLL file that you want to execute from $[officename] Basic."
+msgid "Negates an expression by inverting the bit values."
msgstr ""
-#: 03090403.xhp
+#: 03060400.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3146795\n"
+"03060400.xhp\n"
+"hd_id3149457\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
-msgstr ""
-
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"hd_id3156344\n"
-"4\n"
-"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03090403.xhp
+#: 03060400.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3148664\n"
-"5\n"
+"03060400.xhp\n"
+"par_id3150360\n"
+"4\n"
"help.text"
-msgid "Declare {Sub | Function} Name Lib \"Libname\" [Alias \"Aliasname\"] [Parameter] [As Type]"
-msgstr ""
+msgid "Result = Not Expression"
+msgstr "**Fraza është e gabueshme**"
-#: 03090403.xhp
+#: 03060400.xhp
msgctxt ""
-"03090403.xhp\n"
-"hd_id3153360\n"
-"6\n"
+"03060400.xhp\n"
+"hd_id3151211\n"
+"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03090403.xhp
+#: 03060400.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3154140\n"
-"8\n"
+"03060400.xhp\n"
+"par_id3147228\n"
+"6\n"
"help.text"
-msgid "<emph>Name:</emph> A different name than defined in the DLL, to call the subroutine from $[officename] Basic."
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the negation."
msgstr ""
-#: 03090403.xhp
+#: 03060400.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3150870\n"
-"9\n"
+"03060400.xhp\n"
+"par_id3154124\n"
+"7\n"
"help.text"
-msgid "<emph>Aliasname</emph>: Name of the subroutine as defined in the DLL."
-msgstr ""
+msgid "<emph>Expression:</emph> Any expression that you want to negate."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03090403.xhp
+#: 03060400.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3154684\n"
-"10\n"
+"03060400.xhp\n"
+"par_id3150868\n"
+"8\n"
"help.text"
-msgid "<emph>Libname:</emph> File or system name of the DLL. This library is automatically loaded the first time the function is used."
+msgid "When a Boolean expression is negated, the value True changes to False, and the value False changes to True."
msgstr ""
-#: 03090403.xhp
+#: 03060400.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3148452\n"
-"11\n"
+"03060400.xhp\n"
+"par_id3145785\n"
+"9\n"
"help.text"
-msgid "<emph>Argumentlist:</emph> List of parameters representing arguments that are passed to the procedure when it is called. The type and number of parameters is dependent on the executed procedure."
+msgid "In a bitwise negation each individual bit is inverted."
msgstr ""
-#: 03090403.xhp
+#: 03060400.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3147289\n"
-"12\n"
+"03060400.xhp\n"
+"hd_id3153093\n"
+"10\n"
"help.text"
-msgid "<emph>Type:</emph> Defines the data type of the value that is returned by a function procedure. You can exclude this parameter if a type-declaration character is entered after the name."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03090403.xhp
+#: 03060400.xhp
msgctxt ""
-"03090403.xhp\n"
-"par_id3146922\n"
-"13\n"
+"03060400.xhp\n"
+"par_id3145749\n"
+"15\n"
"help.text"
-msgid "To pass a parameter to a subroutine as a value instead of as a reference, the parameter must be indicated by the keyword <emph>ByVal</emph>."
+msgid "vOut = Not vA ' Returns -11"
msgstr ""
-#: 03090403.xhp
-msgctxt ""
-"03090403.xhp\n"
-"hd_id3153951\n"
-"14\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03120400.xhp
+#: 03060400.xhp
msgctxt ""
-"03120400.xhp\n"
-"tit\n"
+"03060400.xhp\n"
+"par_id3148645\n"
+"16\n"
"help.text"
-msgid "Editing String Length"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "vOut = Not(vC > vD) ' Returns -1"
+msgstr ""
-#: 03120400.xhp
+#: 03060400.xhp
msgctxt ""
-"03120400.xhp\n"
-"hd_id3155150\n"
-"1\n"
+"03060400.xhp\n"
+"par_id3156441\n"
+"17\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Length\">Editing String Length</link>"
+msgid "vOut = Not(vB > vA) ' Returns -1"
msgstr ""
-#: 03120400.xhp
+#: 03060400.xhp
msgctxt ""
-"03120400.xhp\n"
-"par_id3159201\n"
-"2\n"
+"03060400.xhp\n"
+"par_id3152596\n"
+"18\n"
"help.text"
-msgid "The following functions determine string lengths and compare strings."
+msgid "vOut = Not(vA > vB) ' Returns 0"
msgstr ""
#: 03060500.xhp
@@ -12530,7937 +17014,6810 @@ msgctxt ""
msgid "Example:"
msgstr "Shembull"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
+"03060600.xhp\n"
"tit\n"
"help.text"
-msgid "Format Function [Runtime]"
+msgid "Xor-Operator [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"bm_id3153539\n"
+"03060600.xhp\n"
+"bm_id3156024\n"
"help.text"
-msgid "<bookmark_value>Format function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>Xor operator (logical)</bookmark_value>"
+msgstr ""
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3153539\n"
+"03060600.xhp\n"
+"hd_id3156024\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Format Function [Runtime]\">Format Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03060600.xhp\" name=\"Xor-Operator [Runtime]\">Xor-Operator [Runtime]</link>"
msgstr ""
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3156042\n"
+"03060600.xhp\n"
+"par_id3159414\n"
"2\n"
"help.text"
-msgid "Converts a number to a string, and then formats it according to the format that you specify."
+msgid "Performs a logical Exclusive-Or combination of two expressions."
msgstr ""
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3145090\n"
-"4\n"
+"03060600.xhp\n"
+"hd_id3153381\n"
+"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153527\n"
+"03060600.xhp\n"
+"par_id3150400\n"
+"4\n"
+"help.text"
+msgid "Result = Expression1 Xor Expression2"
+msgstr "Gabim: Pa rezultat"
+
+#: 03060600.xhp
+msgctxt ""
+"03060600.xhp\n"
+"hd_id3153968\n"
"5\n"
"help.text"
-msgid "Format (Number [, Format As String])"
-msgstr "Format Numerik: Shto Vendin Decimal"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3149178\n"
+"03060600.xhp\n"
+"par_id3150448\n"
"6\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the combination."
+msgstr ""
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3148474\n"
+"03060600.xhp\n"
+"par_id3125864\n"
"7\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to combine."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3159176\n"
+"03060600.xhp\n"
+"par_id3150439\n"
"8\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "A logical Exclusive-Or conjunction of two Boolean expressions returns the value True only if both expressions are different from each other."
+msgstr ""
-#: 03120301.xhp
-#, fuzzy
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3149415\n"
+"03060600.xhp\n"
+"par_id3153770\n"
"9\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that you want to convert to a formatted string."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "A bitwise Exclusive-Or conjunction returns a bit if the corresponding bit is set in only one of the two expressions."
+msgstr ""
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3147531\n"
+"03060600.xhp\n"
+"hd_id3153366\n"
"10\n"
"help.text"
-msgid "<emph>Format:</emph> String that specifies the format code for the number. If <emph>Format</emph> is omitted, the Format function works like the <emph>Str</emph> function."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3147561\n"
-"47\n"
+"03060600.xhp\n"
+"par_id3156442\n"
+"15\n"
"help.text"
-msgid "Formatting Codes"
-msgstr "Kodet e fushës"
+msgid "vOut = vA > vB Xor vB > vC ' returns 0"
+msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3147265\n"
-"11\n"
+"03060600.xhp\n"
+"par_id3153191\n"
+"16\n"
"help.text"
-msgid "The following list describes the codes that you can use for formatting a number:"
-msgstr ""
+msgid "vOut = vB > vA Xor vB > vC ' returns -1"
+msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153380\n"
-"12\n"
+"03060600.xhp\n"
+"par_id3153144\n"
+"17\n"
"help.text"
-msgid "<emph>0:</emph> If <emph>Number</emph> has a digit at the position of the 0 in the format code, the digit is displayed, otherwise a zero is displayed."
-msgstr ""
+msgid "vOut = vA > vB Xor vB > vD ' returns -1"
+msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3151210\n"
-"13\n"
+"03060600.xhp\n"
+"par_id3154944\n"
+"18\n"
"help.text"
-msgid "If <emph>Number</emph> has fewer digits than the number of zeros in the format code, (on either side of the decimal), leading or trailing zeros are displayed. If the number has more digits to the left of the decimal separator than the amount of zeros in the format code, the additional digits are displayed without formatting."
-msgstr ""
+msgid "vOut = (vB > vD Xor vB > vA) ' returns 0"
+msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03120301.xhp
+#: 03060600.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3151176\n"
-"14\n"
+"03060600.xhp\n"
+"par_id3148455\n"
+"19\n"
"help.text"
-msgid "Decimal places in the number are rounded according to the number of zeros that appear after the decimal separator in the <emph>Format </emph>code."
-msgstr ""
+msgid "vOut = vB Xor vA ' returns 2"
+msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03120301.xhp
+#: 03070000.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3154123\n"
-"15\n"
+"03070000.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>#:</emph> If <emph>Number</emph> contains a digit at the position of the # placeholder in the <emph>Format</emph> code, the digit is displayed, otherwise nothing is displayed at this position."
-msgstr ""
+msgid "Mathematical Operators"
+msgstr "Operatërot Unar/Binar"
-#: 03120301.xhp
+#: 03070000.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3148452\n"
-"16\n"
+"03070000.xhp\n"
+"hd_id3149234\n"
+"1\n"
"help.text"
-msgid "This symbol works like the 0, except that leading or trailing zeroes are not displayed if there are more # characters in the format code than digits in the number. Only the relevant digits of the number are displayed."
+msgid "<link href=\"text/sbasic/shared/03070000.xhp\" name=\"Mathematical Operators\">Mathematical Operators</link>"
msgstr ""
-#: 03120301.xhp
+#: 03070000.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3159150\n"
-"17\n"
+"03070000.xhp\n"
+"par_id3145068\n"
+"2\n"
"help.text"
-msgid "<emph>.:</emph> The decimal placeholder determines the number of decimal places to the left and right of the decimal separator."
+msgid "The following mathematical operators are supported in $[officename] Basic."
msgstr ""
-#: 03120301.xhp
+#: 03070000.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3159252\n"
-"18\n"
+"03070000.xhp\n"
+"par_id3148552\n"
+"3\n"
"help.text"
-msgid "If the format code contains only # placeholders to the left of this symbol, numbers less than 1 begin with a decimal separator. To always display a leading zero with fractional numbers, use 0 as a placeholder for the first digit to the left of the decimal separator."
+msgid "This chapter provides a short overview of all of the arithmetical operators that you may need for calculations within a program."
msgstr ""
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153368\n"
-"19\n"
+"03070100.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>%:</emph> Multiplies the number by 100 and inserts the percent sign (%) where the number appears in the format code."
-msgstr ""
+msgid "\"-\" Operator [Runtime]"
+msgstr "Gabim nw kohw: #"
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3149481\n"
-"20\n"
+"03070100.xhp\n"
+"bm_id3156042\n"
"help.text"
-msgid "<emph>E- E+ e- e+ :</emph> If the format code contains at least one digit placeholder (0 or #) to the right of the symbol E-, E+, e-, or e+, the number is formatted in the scientific or exponential format. The letter E or e is inserted between the number and the exponent. The number of placeholders for digits to the right of the symbol determines the number of digits in the exponent."
+msgid "<bookmark_value>\"-\" operator (mathematical)</bookmark_value>"
msgstr ""
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3149262\n"
-"21\n"
+"03070100.xhp\n"
+"hd_id3156042\n"
+"1\n"
"help.text"
-msgid "If the exponent is negative, a minus sign is displayed directly before an exponent with E-, E+, e-, e+. If the exponent is positive, a plus sign is only displayed before exponents with E+ or e+."
+msgid "<link href=\"text/sbasic/shared/03070100.xhp\">\"-\" Operator [Runtime]</link>"
msgstr ""
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3148617\n"
-"23\n"
+"03070100.xhp\n"
+"par_id3153345\n"
+"2\n"
"help.text"
-msgid "The thousands delimiter is displayed if the format code contains the delimiter enclosed by digit placeholders (0 or #)."
-msgstr ""
+msgid "Subtracts two values."
+msgstr "Ndrysho vlerat standarde"
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3163713\n"
-"29\n"
+"03070100.xhp\n"
+"hd_id3149416\n"
+"3\n"
"help.text"
-msgid "The use of a period as a thousands and decimal separator is dependent on the regional setting. When you enter a number directly in Basic source code, always use a period as decimal delimiter. The actual character displayed as a decimal separator depends on the number format in your system settings."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3152887\n"
-"24\n"
+"03070100.xhp\n"
+"par_id3156023\n"
+"4\n"
"help.text"
-msgid "<emph>- + $ ( ) space:</emph> A plus (+), minus (-), dollar ($), space, or brackets entered directly in the format code is displayed as a literal character."
-msgstr ""
+msgid "Result = Expression1 - Expression2"
+msgstr "Gabim: Pa rezultat"
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3148576\n"
-"25\n"
+"03070100.xhp\n"
+"hd_id3154760\n"
+"5\n"
"help.text"
-msgid "To display characters other than the ones listed here, you must precede it by a backslash (\\), or enclose it in quotation marks (\" \")."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153139\n"
-"26\n"
+"03070100.xhp\n"
+"par_id3147560\n"
+"6\n"
"help.text"
-msgid "\\ : The backslash displays the next character in the format code."
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the subtraction."
msgstr ""
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153366\n"
-"27\n"
+"03070100.xhp\n"
+"par_id3150398\n"
+"7\n"
"help.text"
-msgid "Characters in the format code that have a special meaning can only be displayed as literal characters if they are preceded by a backslash. The backslash itself is not displayed, unless you enter a double backslash (\\\\) in the format code."
-msgstr ""
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to subtract."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03120301.xhp
+#: 03070100.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3155411\n"
-"28\n"
+"03070100.xhp\n"
+"hd_id3154366\n"
+"8\n"
"help.text"
-msgid "Characters that must be preceded by a backslash in the format code in order to be displayed as literal characters are date- and time-formatting characters (a, c, d, h, m, n, p, q, s, t, w, y, /, :), numeric-formatting characters (#, 0, %, E, e, comma, period), and string-formatting characters (@, &, <, >, !)."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3145749\n"
-"30\n"
+"03070200.xhp\n"
+"tit\n"
"help.text"
-msgid "You can also use the following predefined number formats. Except for \"General Number\", all of the predefined format codes return the number as a decimal number with two decimal places."
-msgstr ""
+msgid "\"*\" Operator [Runtime]"
+msgstr "Gabim nw kohw: #"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3150113\n"
-"31\n"
+"03070200.xhp\n"
+"bm_id3147573\n"
"help.text"
-msgid "If you use predefined formats, the name of the format must be enclosed in quotation marks."
+msgid "<bookmark_value>\"*\" operator (mathematical)</bookmark_value>"
msgstr ""
-#: 03120301.xhp
-msgctxt ""
-"03120301.xhp\n"
-"hd_id3149377\n"
-"32\n"
-"help.text"
-msgid "Predefined format"
-msgstr "Format tjetër"
-
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3154730\n"
-"33\n"
+"03070200.xhp\n"
+"hd_id3147573\n"
+"1\n"
"help.text"
-msgid "<emph>General Number:</emph> Numbers are displayed as entered."
+msgid "<link href=\"text/sbasic/shared/03070200.xhp\">\"*\" Operator [Runtime]</link>"
msgstr ""
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153158\n"
-"34\n"
+"03070200.xhp\n"
+"par_id3154347\n"
+"2\n"
"help.text"
-msgid "<emph>Currency:</emph> Inserts a dollar sign in front of the number and encloses negative numbers in brackets."
-msgstr ""
+msgid "Multiplies two values."
+msgstr "Ndrysho vlerat standarde"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3154490\n"
-"35\n"
+"03070200.xhp\n"
+"hd_id3148946\n"
+"3\n"
"help.text"
-msgid "<emph>Fixed:</emph> Displays at least one digit in front of the decimal separator."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153415\n"
-"36\n"
+"03070200.xhp\n"
+"par_id3150358\n"
+"4\n"
"help.text"
-msgid "<emph>Standard:</emph> Displays numbers with a thousands separator."
-msgstr ""
+msgid "Result = Expression1 * Expression2"
+msgstr "Gabim: Pa rezultat"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3150715\n"
-"37\n"
+"03070200.xhp\n"
+"hd_id3150400\n"
+"5\n"
"help.text"
-msgid "<emph>Percent:</emph> Multiplies the number by 100 and appends a percent sign to the number."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153836\n"
-"38\n"
+"03070200.xhp\n"
+"par_id3154365\n"
+"6\n"
"help.text"
-msgid "<emph>Scientific:</emph> Displays numbers in scientific format (for example, 1.00E+03 for 1000)."
+msgid "<emph>Result:</emph> Any numeric expression that records the result of a multiplication."
msgstr ""
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3153707\n"
-"39\n"
+"03070200.xhp\n"
+"par_id3154685\n"
+"7\n"
"help.text"
-msgid "A format code can be divided into three sections that are separated by semicolons. The first part defines the format for positive values, the second part for negative values, and the third part for zero. If you only specify one format code, it applies to all numbers."
-msgstr ""
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to multiply."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03120301.xhp
+#: 03070200.xhp
msgctxt ""
-"03120301.xhp\n"
-"hd_id3149019\n"
-"40\n"
+"03070200.xhp\n"
+"hd_id3153968\n"
+"8\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03120301.xhp
+#: 03070300.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_idN107A2\n"
+"03070300.xhp\n"
+"tit\n"
"help.text"
-msgid "' always use a period as decimal delimiter when you enter numbers in Basic source code."
-msgstr ""
+msgid "\"+\" Operator [Runtime]"
+msgstr "Gabim nw kohw: #"
-#: 03120301.xhp
+#: 03070300.xhp
msgctxt ""
-"03120301.xhp\n"
-"par_id3147339\n"
-"46\n"
+"03070300.xhp\n"
+"bm_id3145316\n"
"help.text"
-msgid "' displays for example 6,328.20 in English locale, 6.328,20 in German locale."
+msgid "<bookmark_value>\"+\" operator (mathematical)</bookmark_value>"
msgstr ""
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "$[officename] Basic IDE"
-msgstr "Master IDE%s, ndarja Nr. %s [%s]"
-
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3154422\n"
+"03070300.xhp\n"
+"hd_id3145316\n"
"1\n"
"help.text"
-msgid "<variable id=\"01050000\"><link href=\"text/sbasic/shared/01050000.xhp\" name=\"$[officename] Basic IDE\">$[officename] Basic IDE</link></variable>"
+msgid "<link href=\"text/sbasic/shared/03070300.xhp\">\"+\" Operator [Runtime]</link>"
msgstr ""
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3153142\n"
+"03070300.xhp\n"
+"par_id3145068\n"
"2\n"
"help.text"
-msgid "This section describes the structure of the Basic IDE."
+msgid "Adds or combines two expressions."
msgstr ""
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_idN105C9\n"
+"03070300.xhp\n"
+"hd_id3144500\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Basic IDE where you can write and edit macros.</ahelp>"
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3153188\n"
+"03070300.xhp\n"
+"par_id3150358\n"
+"4\n"
+"help.text"
+msgid "Result = Expression1 + Expression2"
+msgstr "Gabim: Pa rezultat"
+
+#: 03070300.xhp
+msgctxt ""
+"03070300.xhp\n"
+"hd_id3150400\n"
"5\n"
"help.text"
-msgid "Commands From the Context menu of the Module Tabs"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3154731\n"
+"03070300.xhp\n"
+"par_id3154123\n"
"6\n"
"help.text"
-msgid "Insert"
-msgstr "Shto"
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the addition."
+msgstr ""
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3151074\n"
-"8\n"
+"03070300.xhp\n"
+"par_id3150870\n"
+"7\n"
"help.text"
-msgid "Module"
-msgstr "Modula"
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to combine or to add."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 01050000.xhp
+#: 03070300.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3149581\n"
-"9\n"
+"03070300.xhp\n"
+"hd_id3153969\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".uno:NewModule\">Inserts a new module into the current library.</ahelp>"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3147397\n"
-"10\n"
+"03070400.xhp\n"
+"tit\n"
"help.text"
-msgid "Dialog"
-msgstr "Dialogu"
+msgid "\"/\" Operator [Runtime]"
+msgstr "Gabim nw kohw: #"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3144335\n"
-"11\n"
+"03070400.xhp\n"
+"bm_id3150669\n"
"help.text"
-msgid "<ahelp hid=\".uno:NewDialog\">Inserts a new dialog into the current library.</ahelp>"
+msgid "<bookmark_value>\"/\" operator (mathematical)</bookmark_value>"
msgstr ""
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3155602\n"
-"12\n"
+"03070400.xhp\n"
+"hd_id3150669\n"
+"1\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "<link href=\"text/sbasic/shared/03070400.xhp\">\"/\" Operator [Runtime]</link>"
+msgstr ""
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3155064\n"
-"13\n"
+"03070400.xhp\n"
+"par_id3149670\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeleteCurrent\">Deletes the selected module.</ahelp>"
-msgstr ""
+msgid "Divides two values."
+msgstr "Ndrysho vlerat standarde"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3149018\n"
-"14\n"
+"03070400.xhp\n"
+"hd_id3148946\n"
+"3\n"
"help.text"
-msgid "Rename"
-msgstr "Riemëro"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3154754\n"
-"15\n"
+"03070400.xhp\n"
+"par_id3153360\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".uno:RenameCurrent\">Renames the current module in place.</ahelp>"
-msgstr ""
+msgid "Result = Expression1 / Expression2"
+msgstr "Gabim: Pa rezultat"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3150043\n"
-"16\n"
+"03070400.xhp\n"
+"hd_id3150359\n"
+"5\n"
"help.text"
-msgid "Hide"
-msgstr "Fshehe"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3145147\n"
-"17\n"
+"03070400.xhp\n"
+"par_id3154141\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".uno:HideCurPage\">Hides the current module.</ahelp>"
+msgid "<emph>Result:</emph> Any numerical value that contains the result of the division."
msgstr ""
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3163805\n"
-"18\n"
+"03070400.xhp\n"
+"par_id3150448\n"
+"7\n"
"help.text"
-msgid "Modules"
-msgstr "Modulet"
+msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to divide."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 01050000.xhp
+#: 03070400.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3153965\n"
-"19\n"
+"03070400.xhp\n"
+"hd_id3154684\n"
+"8\n"
"help.text"
-msgid "Opens the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
+"03070500.xhp\n"
"tit\n"
"help.text"
-msgid "DateDiff Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "\"^\" Operator [Runtime]"
+msgstr "Gabim nw kohw: #"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"bm_id6134830\n"
+"03070500.xhp\n"
+"bm_id3145315\n"
"help.text"
-msgid "<bookmark_value>DateDiff function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>\"^\" operator (mathematical)</bookmark_value>"
+msgstr ""
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10542\n"
+"03070500.xhp\n"
+"hd_id3145315\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030120.xhp\">DateDiff Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03070500.xhp\">\"^\" Operator [Runtime]</link>"
msgstr ""
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10546\n"
+"03070500.xhp\n"
+"par_id3149670\n"
+"2\n"
"help.text"
-msgid "Returns the number of date intervals between two given date values."
-msgstr ""
+msgid "Raises a number to a power."
+msgstr "Ngrit një numër në fuqi të një tjetri."
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10549\n"
+"03070500.xhp\n"
+"hd_id3147264\n"
+"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10648\n"
-"help.text"
-msgid "DateDiff (Add, Date1, Date2 [, Week_start [, Year_start]])"
-msgstr ""
-
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1064B\n"
-"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
-
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN1064F\n"
+"03070500.xhp\n"
+"par_id3149656\n"
+"4\n"
"help.text"
-msgid "A number."
-msgstr "<number>"
+msgid "Result = Expression ^ Exponent"
+msgstr "**Fraza është e gabueshme**"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10652\n"
+"03070500.xhp\n"
+"hd_id3151211\n"
+"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10656\n"
+"03070500.xhp\n"
+"par_id3153192\n"
+"6\n"
"help.text"
-msgid "<emph>Add</emph> - A string expression from the following table, specifying the date interval."
+msgid "<emph>Result:</emph> Any numerical expression that contains the result of the number raised to a power."
msgstr ""
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10664\n"
+"03070500.xhp\n"
+"par_id3150448\n"
+"7\n"
"help.text"
-msgid "<emph>Date1, Date2</emph> - The two date values to be compared."
+msgid "<emph>Expression:</emph> Numerical value that you want to raise to a power."
msgstr ""
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN1066A\n"
+"03070500.xhp\n"
+"par_id3156422\n"
+"8\n"
"help.text"
-msgid "<emph>Week_start</emph> - An optional parameter that specifies the starting day of a week."
+msgid "<emph>Exponent:</emph> The value of the power that you want to raise the expression to."
msgstr ""
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN1067A\n"
+"03070500.xhp\n"
+"hd_id3147287\n"
+"9\n"
"help.text"
-msgid "Week_start value"
-msgstr "Vlerë në zvoglim e kryerreshtit"
+msgid "Example:"
+msgstr "Shembull"
-#: 03030120.xhp
+#: 03070500.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10680\n"
+"03070500.xhp\n"
+"par_id3146984\n"
+"12\n"
"help.text"
-msgid "Explanation"
+msgid "Print Exp ( 23 * Log( 12.345 ) ) ' Raises by forming a logarithm"
msgstr ""
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10687\n"
-"help.text"
-msgid "0"
-msgstr "Titullimi 10"
-
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1068D\n"
-"help.text"
-msgid "Use system default value"
-msgstr "Cila listë fjalësh do jetë e prezgjedhura e sistemit?"
-
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN10694\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#: 03030120.xhp
-msgctxt ""
-"03030120.xhp\n"
-"par_idN1069A\n"
-"help.text"
-msgid "Sunday (default)"
-msgstr "Fontet standarde"
-
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106A1\n"
+"03070600.xhp\n"
+"tit\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "Mod-Operator [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106A7\n"
+"03070600.xhp\n"
+"bm_id3150669\n"
"help.text"
-msgid "Monday"
+msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
msgstr ""
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106AE\n"
+"03070600.xhp\n"
+"hd_id3150669\n"
+"1\n"
"help.text"
-msgid "3"
+msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Mod Operator [Runtime]</link>"
msgstr ""
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106B4\n"
+"03070600.xhp\n"
+"par_id3148686\n"
+"2\n"
"help.text"
-msgid "Tuesday"
-msgstr ""
+msgid "Returns the integer remainder of a division."
+msgstr "E kthen pjeswn integjere tw pjeswtimit"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106BB\n"
+"03070600.xhp\n"
+"hd_id3146795\n"
+"3\n"
"help.text"
-msgid "4"
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106C1\n"
+"03070600.xhp\n"
+"par_id3147560\n"
+"4\n"
"help.text"
-msgid "Wednesday"
-msgstr ""
+msgid "Result = Expression1 MOD Expression2"
+msgstr "Gabim: Pa rezultat"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106C8\n"
+"03070600.xhp\n"
+"hd_id3149657\n"
+"5\n"
"help.text"
-msgid "5"
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106CE\n"
+"03070600.xhp\n"
+"par_id3153380\n"
+"6\n"
"help.text"
-msgid "Thursday"
-msgstr ""
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106D5\n"
+"03070600.xhp\n"
+"hd_id3154365\n"
+"7\n"
"help.text"
-msgid "6"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106DB\n"
+"03070600.xhp\n"
+"par_id3145172\n"
+"8\n"
"help.text"
-msgid "Friday"
+msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
msgstr ""
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106E2\n"
+"03070600.xhp\n"
+"par_id3151042\n"
+"9\n"
"help.text"
-msgid "7"
-msgstr ""
+msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106E8\n"
+"03070600.xhp\n"
+"hd_id3147287\n"
+"10\n"
"help.text"
-msgid "Saturday"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106EB\n"
+"03070600.xhp\n"
+"par_id3161832\n"
+"12\n"
"help.text"
-msgid "<emph>Year_start</emph> - An optional parameter that specifies the starting week of a year."
-msgstr ""
+msgid "Print 10 Mod 2.5 ' returns 0"
+msgstr "E kthen llogaritmin base-10 tw numrit kompleks"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN106FB\n"
+"03070600.xhp\n"
+"par_id3146922\n"
+"13\n"
"help.text"
-msgid "Year_start value"
-msgstr "Vlerë në zvoglim e kryerreshtit"
+msgid "Print 10 / 2.5 ' returns 4"
+msgstr "E kthen llogaritmin base-10 tw numrit kompleks"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10701\n"
+"03070600.xhp\n"
+"par_id3145273\n"
+"14\n"
"help.text"
-msgid "Explanation"
-msgstr ""
+msgid "Print 10 Mod 5 ' returns 0"
+msgstr "E kthen llogaritmin base-10 tw numrit kompleks"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10708\n"
+"03070600.xhp\n"
+"par_id3150011\n"
+"15\n"
"help.text"
-msgid "0"
-msgstr "Titullimi 10"
+msgid "Print 10 / 5 ' returns 2"
+msgstr "E kthen llogaritmin base-10 tw numrit kompleks"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN1070E\n"
+"03070600.xhp\n"
+"par_id3149483\n"
+"16\n"
"help.text"
-msgid "Use system default value"
-msgstr "Cila listë fjalësh do jetë e prezgjedhura e sistemit?"
+msgid "Print 5 Mod 10 ' returns 5"
+msgstr "E kthen llogaritmin base-10 tw numrit kompleks"
-#: 03030120.xhp
+#: 03070600.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10715\n"
+"03070600.xhp\n"
+"par_id3151114\n"
+"17\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "Print 5 / 10 ' returns 0.5"
+msgstr "E kthen llogaritmin base-10 tw numrit kompleks"
-#: 03030120.xhp
+#: 03080000.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN1071B\n"
+"03080000.xhp\n"
+"tit\n"
"help.text"
-msgid "Week 1 is the week with January, 1st (default)"
-msgstr ""
+msgid "Numeric Functions"
+msgstr "Funksionet statistikore"
-#: 03030120.xhp
+#: 03080000.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10722\n"
+"03080000.xhp\n"
+"hd_id3153127\n"
+"1\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Numeric Functions\">Numeric Functions</link>"
+msgstr ""
-#: 03030120.xhp
+#: 03080000.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10728\n"
+"03080000.xhp\n"
+"par_id3148550\n"
+"2\n"
"help.text"
-msgid "Week 1 is the first week containing four or more days of that year"
+msgid "The following numeric functions perform calculations. Mathematical and Boolean operators are described in a separate section. Functions differ from operators in that functions pass arguments and return a result, instead of operators that return a result by combining two numeric expressions."
msgstr ""
-#: 03030120.xhp
+#: 03080100.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN1072F\n"
+"03080100.xhp\n"
+"tit\n"
"help.text"
-msgid "3"
-msgstr ""
+msgid "Trigonometric Functions"
+msgstr "Funksionet statistikore"
-#: 03030120.xhp
+#: 03080100.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10735\n"
+"03080100.xhp\n"
+"hd_id3159201\n"
+"1\n"
"help.text"
-msgid "Week 1 is the first week containing only days of the new year"
+msgid "<link href=\"text/sbasic/shared/03080100.xhp\" name=\"Trigonometric Functions\">Trigonometric Functions</link>"
msgstr ""
-#: 03030120.xhp
+#: 03080100.xhp
msgctxt ""
-"03030120.xhp\n"
-"par_idN10738\n"
+"03080100.xhp\n"
+"par_id3149180\n"
+"2\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "The following are the trigonometric functions that are supported in $[officename] Basic."
+msgstr ""
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
+"03080101.xhp\n"
"tit\n"
"help.text"
-msgid "While...Wend Statement[Runtime]"
-msgstr ""
+msgid "Atn Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"bm_id3150400\n"
+"03080101.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>While;While...Wend loop</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>Atn function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"hd_id3150400\n"
+"03080101.xhp\n"
+"hd_id3150616\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080101.xhp\" name=\"Atn Function [Runtime]\">Atn Function [Runtime]</link>"
msgstr ""
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3151211\n"
+"03080101.xhp\n"
+"par_id3149346\n"
"2\n"
"help.text"
-msgid "When a program encounters a While statement, it tests the condition. If the condition is False, the program continues directly following the Wend statement. If the condition is True, the loop is executed until the program finds Wend and then jumps back to the<emph> While </emph>statement. If the condition is still True, the loop is executed again."
+msgid "Trigonometric function that returns the arctangent of a numeric expression. The return value is in the range -Pi/2 to +Pi/2."
msgstr ""
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3151041\n"
+"03080101.xhp\n"
+"par_id3143271\n"
"3\n"
"help.text"
-msgid "Unlike the <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link> statement, you cannot cancel a <emph>While...Wend</emph> loop with <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>. Never exit a While...Wend loop with <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, since this can cause a run-time error."
+msgid "The arctangent is the inverse of the tangent function. The Atn Function returns the angle \"Alpha\", expressed in radians, using the tangent of this angle. The function can also return the angle \"Alpha\" by comparing the ratio of the length of the side that is opposite of the angle to the length of the side that is adjacent to the angle in a right-angled triangle."
msgstr ""
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3145172\n"
+"03080101.xhp\n"
+"par_id3145315\n"
"4\n"
"help.text"
-msgid "A Do...Loop is more flexible than a While...Wend."
+msgid "Atn(side opposite the angle/side adjacent to angle)= Alpha"
msgstr ""
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"hd_id3155133\n"
+"03080101.xhp\n"
+"hd_id3149669\n"
"5\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3147288\n"
+"03080101.xhp\n"
+"par_id3148947\n"
"6\n"
"help.text"
-msgid "While Condition [Statement] Wend"
-msgstr ""
+msgid "Atn (Number)"
+msgstr "Numri i faqes"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"hd_id3153139\n"
+"03080101.xhp\n"
+"hd_id3148664\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3159153\n"
+"03080101.xhp\n"
+"par_id3150359\n"
"8\n"
"help.text"
-msgid "Sub ExampleWhileWend"
-msgstr "Nën~totalet..."
+msgid "Double"
+msgstr "Dyfish"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3151114\n"
+"03080101.xhp\n"
+"hd_id3148798\n"
"9\n"
"help.text"
-msgid "Dim stext As String"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3153143\n"
+"03080101.xhp\n"
+"par_id3156212\n"
"10\n"
"help.text"
-msgid "Dim iRun As Integer"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<emph>Number:</emph> Any numerical expression that represents the ratio of two sides of a right triangle. The Atn function returns the corresponding angle in radians (arctangent)."
+msgstr ""
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3155306\n"
+"03080101.xhp\n"
+"par_id3153192\n"
"11\n"
"help.text"
-msgid "sText =\"This Is a short text\""
+msgid "To convert radians to degrees, multiply radians by 180/pi."
msgstr ""
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3154011\n"
+"03080101.xhp\n"
+"par_id3147230\n"
"12\n"
"help.text"
-msgid "iRun = 1"
+msgid "degree=(radian*180)/pi"
msgstr ""
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3147215\n"
+"03080101.xhp\n"
+"par_id3125864\n"
"13\n"
"help.text"
-msgid "While iRun < Len(sText)"
+msgid "radian=(degree*pi)/180"
msgstr ""
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3147427\n"
+"03080101.xhp\n"
+"par_id3159252\n"
"14\n"
"help.text"
-msgid "If Mid(sText,iRun,1 )<> \" \" Then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
+msgid "Pi is here the fixed circle constant with the rounded value 3.14159."
msgstr ""
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3149665\n"
+"03080101.xhp\n"
+"hd_id3153142\n"
"15\n"
"help.text"
-msgid "iRun = iRun + 1"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3152939\n"
+"03080101.xhp\n"
+"par_id3146985\n"
"16\n"
"help.text"
-msgid "Wend"
-msgstr "fund"
+msgid "' The following example calculates for a right-angled triangle"
+msgstr ""
-#: 03090203.xhp
+#: 03080101.xhp
msgctxt ""
-"03090203.xhp\n"
-"par_id3153189\n"
+"03080101.xhp\n"
+"par_id3145750\n"
"17\n"
"help.text"
-msgid "MsgBox sText,0,\"Text encoded\""
+msgid "' the angle Alpha from the tangent of the angle Alpha:"
msgstr ""
-#: 03090203.xhp
-#, fuzzy
-msgctxt ""
-"03090203.xhp\n"
-"par_id3145251\n"
-"18\n"
-"help.text"
-msgid "End Sub"
-msgstr "Nën~totalet..."
-
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"tit\n"
-"help.text"
-msgid "Global Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"bm_id3159201\n"
-"help.text"
-msgid "<bookmark_value>Global statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-
-#: 03103450.xhp
+#: 03080101.xhp
msgctxt ""
-"03103450.xhp\n"
-"hd_id3159201\n"
-"1\n"
+"03080101.xhp\n"
+"par_id3151112\n"
+"19\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Global Statement [Runtime]\">Global Statement [Runtime]</link>"
+msgid "' rounded Pi = 3.14159 Is a predefined constant"
msgstr ""
-#: 03103450.xhp
+#: 03080101.xhp
msgctxt ""
-"03103450.xhp\n"
-"par_id3149177\n"
-"2\n"
+"03080101.xhp\n"
+"par_id3149262\n"
+"22\n"
"help.text"
-msgid "Dimensions a variable or an array at the global level (that is, not within a subroutine or function), so that the variable and the array are valid in all libraries and modules for the current session."
+msgid "d1 = InputBox$ (\"Enter the length of the side adjacent to the angle: \",\"Adjacent\")"
msgstr ""
-#: 03103450.xhp
-msgctxt ""
-"03103450.xhp\n"
-"hd_id3143270\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03103450.xhp
+#: 03080101.xhp
msgctxt ""
-"03103450.xhp\n"
-"par_id3150771\n"
-"4\n"
+"03080101.xhp\n"
+"par_id3149482\n"
+"23\n"
"help.text"
-msgid "Global VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+msgid "d2 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"Opposite\")"
msgstr ""
-#: 03103450.xhp
+#: 03080101.xhp
msgctxt ""
-"03103450.xhp\n"
-"hd_id3156152\n"
-"5\n"
+"03080101.xhp\n"
+"par_id3155415\n"
+"24\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Print \"The Alpha angle is\"; (atn (d2/d1) * 180 / Pi); \" degrees\""
+msgstr ""
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
+"03080102.xhp\n"
"tit\n"
"help.text"
-msgid "Const Statement [Runtime]"
+msgid "Cos Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"bm_id3146958\n"
+"03080102.xhp\n"
+"bm_id3154923\n"
"help.text"
-msgid "<bookmark_value>Const statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+msgid "<bookmark_value>Cos function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"hd_id3146958\n"
+"03080102.xhp\n"
+"hd_id3154923\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Const Statement [Runtime]\">Const Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080102.xhp\" name=\"Cos Function [Runtime]\">Cos Function [Runtime]</link>"
msgstr ""
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3154143\n"
+"03080102.xhp\n"
+"par_id3159413\n"
"2\n"
"help.text"
-msgid "Defines a string as a constant."
-msgstr "Definon vlerën llogjike si PASAKTË."
+msgid "Calculates the cosine of an angle. The angle is specified in radians. The result lies between -1 and 1."
+msgstr ""
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"hd_id3150670\n"
+"03080102.xhp\n"
+"par_id3150358\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Using the angle Alpha, the Cos-Function calculates the ratio of the length of the side that is adjacent to the angle, divided by the length of the hypotenuse in a right-angled triangle."
+msgstr ""
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3150984\n"
+"03080102.xhp\n"
+"par_id3154141\n"
"4\n"
"help.text"
-msgid "Const Text = Expression"
-msgstr "**Fraza është e gabueshme**"
+msgid "Cos(Alpha) = Adjacent/Hypotenuse"
+msgstr ""
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"hd_id3147530\n"
+"03080102.xhp\n"
+"hd_id3154125\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3153897\n"
+"03080102.xhp\n"
+"par_id3145172\n"
"6\n"
"help.text"
-msgid "<emph>Text:</emph> Any constant name that follows the standard variable naming conventions."
-msgstr ""
+msgid "Cos (Number)"
+msgstr "Numri i faqes"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3147264\n"
+"03080102.xhp\n"
+"hd_id3156214\n"
"7\n"
"help.text"
-msgid "A constant is a variable that helps to improve the readability of a program. Constants are not defined as a specific type of variable, but rather are used as placeholders in the code. You can only define a constant once and it cannot be modified. Use the following statement to define a constant:"
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03100700.xhp
-#, fuzzy
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3150542\n"
+"03080102.xhp\n"
+"par_id3150449\n"
"8\n"
"help.text"
-msgid "CONST ConstName=Expression"
-msgstr "**Fraza është e gabueshme**"
+msgid "Double"
+msgstr "Dyfish"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3150400\n"
+"03080102.xhp\n"
+"hd_id3153969\n"
"9\n"
"help.text"
-msgid "The type of expression is irrelevant. If a program is started, $[officename] Basic converts the program code internally so that each time a constant is used, the defined expression replaces it."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"hd_id3154366\n"
+"03080102.xhp\n"
+"par_id3153770\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "<emph>Number:</emph> Numeric expression that specifies an angle in radians that you want to calculate the cosine for."
+msgstr ""
-#: 03100700.xhp
+#: 03080102.xhp
msgctxt ""
-"03100700.xhp\n"
-"par_id3153969\n"
+"03080102.xhp\n"
+"par_id3145749\n"
+"11\n"
+"help.text"
+msgid "To convert degrees to radians, multiply degrees by pi/180. To convert radians to degrees, multiply radians by 180/pi."
+msgstr ""
+
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3149664\n"
+"12\n"
+"help.text"
+msgid "degree=(radian*180)/pi"
+msgstr ""
+
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3146985\n"
+"13\n"
+"help.text"
+msgid "radian=(degree*pi)/180"
+msgstr ""
+
+#: 03080102.xhp
+msgctxt ""
+"03080102.xhp\n"
+"par_id3152885\n"
"14\n"
"help.text"
-msgid "Const sVar = \"Program\", dVar As Double = 1.00"
+msgid "Pi is here the fixed circle constant with the rounded value 3.14159..."
msgstr ""
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"tit\n"
+"03080102.xhp\n"
+"hd_id3153951\n"
+"15\n"
"help.text"
-msgid "Using Objects"
-msgstr "Titull, 4 Objekte"
+msgid "Example:"
+msgstr "Shembull"
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"hd_id3145645\n"
-"1\n"
+"03080102.xhp\n"
+"par_id3155855\n"
+"16\n"
"help.text"
-msgid "<variable id=\"01020200\"><link href=\"text/sbasic/shared/01020200.xhp\">Using the Object Catalog</link></variable>"
+msgid "' The following example allows for a right-angled triangle the input of"
msgstr ""
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"par_id3153707\n"
-"76\n"
+"03080102.xhp\n"
+"par_id3149484\n"
+"17\n"
"help.text"
-msgid "The object catalog provides an overview of all modules and dialogs you have created in $[officename]."
+msgid "' secant and angle (in degrees) and calculates the length of the hypotenuse:"
msgstr ""
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"par_id3147346\n"
-"78\n"
+"03080102.xhp\n"
+"par_id3150010\n"
+"19\n"
"help.text"
-msgid "Click the <emph>Object Catalog</emph> icon <image id=\"img_id3147341\" src=\"cmd/sc_objectcatalog.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3147341\">Icon</alt></image> in the Macro toolbar to display the object catalog."
+msgid "' rounded Pi = 3.14159"
msgstr ""
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"par_id3155114\n"
-"79\n"
+"03080102.xhp\n"
+"par_id3144764\n"
+"21\n"
"help.text"
-msgid "The dialog shows a list of all existing objects in a hierarchical representation. Double-clicking a list entry opens its subordinate objects."
+msgid "d1 = InputBox$ (\"\"Enter the length of the adjacent side: \",\"Adjacent\")"
msgstr ""
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"par_id3150786\n"
-"83\n"
+"03080102.xhp\n"
+"par_id3154491\n"
+"22\n"
"help.text"
-msgid "To display a certain module in the Editor or to position the cursor in a selected SUB or FUNCTION, select the corresponding entry and click the <emph>Show</emph> icon <image id=\"img_id3149527\" src=\"basctl/res/im01.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3149527\">Icon</alt></image>."
+msgid "dAngle = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
msgstr ""
-#: 01020200.xhp
+#: 03080102.xhp
msgctxt ""
-"01020200.xhp\n"
-"par_id3153266\n"
-"81\n"
+"03080102.xhp\n"
+"par_id3151074\n"
+"23\n"
"help.text"
-msgid "Click the (X) icon in the title bar to close the object catalog."
+msgid "Print \"The length of the hypothenuse is\"; (d1 / cos (dAngle * Pi / 180))"
msgstr ""
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
+"03080103.xhp\n"
"tit\n"
"help.text"
-msgid "FreeLibrary Function [Runtime]"
+msgid "Sin Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"bm_id3143270\n"
+"03080103.xhp\n"
+"bm_id3153896\n"
"help.text"
-msgid "<bookmark_value>FreeLibrary function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>Sin function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"hd_id3143270\n"
+"03080103.xhp\n"
+"hd_id3153896\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary Function [Runtime]\">FreeLibrary Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Sin Function [Runtime]\">Sin Function [Runtime]</link>"
msgstr ""
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"par_id3147559\n"
+"03080103.xhp\n"
+"par_id3149456\n"
"2\n"
"help.text"
-msgid "Releases DLLs that were loaded by a Declare statement. A released DLL is automatically reloaded if one of its functions is called. See also: <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare\">Declare</link>"
+msgid "Returns the sine of an angle. The angle is specified in radians. The result lies between -1 and 1."
msgstr ""
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"hd_id3148550\n"
+"03080103.xhp\n"
+"par_id3153379\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Using the angle Alpha, the Sin Function returns the ratio of the length of the opposite side of an angle to the length of the hypotenuse in a right-angled triangle."
+msgstr ""
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"par_id3153361\n"
+"03080103.xhp\n"
+"par_id3148798\n"
"4\n"
"help.text"
-msgid "FreeLibrary (LibName As String)"
+msgid "Sin(Alpha) = side opposite the angle/hypotenuse"
msgstr ""
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"hd_id3153380\n"
+"03080103.xhp\n"
+"hd_id3147230\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"par_id3154138\n"
+"03080103.xhp\n"
+"par_id3154909\n"
"6\n"
"help.text"
-msgid "<emph>LibName:</emph> String expression that specifies the name of the DLL."
-msgstr ""
+msgid "Sin (Number)"
+msgstr "Numri i faqes"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"par_id3146923\n"
+"03080103.xhp\n"
+"hd_id3156214\n"
"7\n"
"help.text"
-msgid "FreeLibrary can only release DLLs that are loaded during Basic runtime."
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03090405.xhp
+#: 03080103.xhp
msgctxt ""
-"03090405.xhp\n"
-"hd_id3153363\n"
+"03080103.xhp\n"
+"par_id3150870\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Double"
+msgstr "Dyfish"
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"tit\n"
+"03080103.xhp\n"
+"hd_id3155132\n"
+"9\n"
"help.text"
-msgid "Static Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"bm_id3149798\n"
+"03080103.xhp\n"
+"par_id3145786\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>Static statement</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<emph>Number:</emph> Numeric expression that defines the angle in radians that you want to calculate the sine for."
+msgstr ""
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"hd_id3149798\n"
-"1\n"
+"03080103.xhp\n"
+"par_id3155413\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement [Runtime]\">Static Statement [Runtime]</link>"
+msgid "To convert degrees to radians, multiply degrees by Pi/180, and to convert radians to degrees, multiply radians by 180/Pi."
msgstr ""
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id3153311\n"
-"2\n"
+"03080103.xhp\n"
+"par_id3149664\n"
+"12\n"
"help.text"
-msgid "Declares a variable or an array at the procedure level within a subroutine or a function, so that the values of the variable or the array are retained after exiting the subroutine or function. Dim statement conventions are also valid."
+msgid "grad=(radiant*180)/pi"
msgstr ""
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id3147264\n"
-"3\n"
+"03080103.xhp\n"
+"par_id3153143\n"
+"13\n"
"help.text"
-msgid "The <emph>Static statement</emph> cannot be used to define variable arrays. Arrays must be specified according to a fixed size."
+msgid "radiant=(grad*pi)/180"
msgstr ""
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"hd_id3149657\n"
-"4\n"
+"03080103.xhp\n"
+"par_id3151112\n"
+"14\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Pi is approximately 3.141593."
+msgstr "Numri me tw cilin pi wshtw shumwzuar"
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id3150400\n"
-"5\n"
+"03080103.xhp\n"
+"hd_id3163712\n"
+"15\n"
"help.text"
-msgid "Static VarName[(start To end)] [As VarType], VarName2[(start To end)] [As VarType], ..."
+msgid "Example:"
+msgstr "Shembull"
+
+#: 03080103.xhp
+msgctxt ""
+"03080103.xhp\n"
+"par_id3149482\n"
+"16\n"
+"help.text"
+msgid "' In this example, the following entry is possible for a right-angled triangle:"
msgstr ""
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"hd_id3148452\n"
-"6\n"
+"03080103.xhp\n"
+"par_id3148577\n"
+"17\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "' The side opposite the angle and the angle (in degrees) to calculate the length of the hypotenuse:"
+msgstr ""
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id3150870\n"
-"11\n"
+"03080103.xhp\n"
+"par_id3150011\n"
+"19\n"
"help.text"
-msgid "MsgBox iResult,0,\"The answer is\""
+msgid "' Pi = 3.1415926 is a predefined variable"
msgstr ""
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id3151115\n"
-"15\n"
+"03080103.xhp\n"
+"par_id3145251\n"
+"22\n"
"help.text"
-msgid "' Function for initialization of the static variable"
+msgid "d1 = InputBox$ (\"Enter the length of the opposite side: \",\"Opposite Side\")"
msgstr ""
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id1057161\n"
+"03080103.xhp\n"
+"par_id3148456\n"
+"23\n"
"help.text"
-msgid "Const iMinimum As Integer = 40 ' minimum return value of this function"
+msgid "dAlpha = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
msgstr ""
-#: 03103500.xhp
+#: 03080103.xhp
msgctxt ""
-"03103500.xhp\n"
-"par_id580462\n"
+"03080103.xhp\n"
+"par_id3153877\n"
+"24\n"
"help.text"
-msgid "If iInit = 0 Then ' check if initialized"
+msgid "Print \"The length of the hypotenuse is\"; (d1 / sin (dAlpha * Pi / 180))"
msgstr ""
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
+"03080104.xhp\n"
"tit\n"
"help.text"
-msgid "For...Next Statement [Runtime]"
+msgid "Tan Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"bm_id3149205\n"
+"03080104.xhp\n"
+"bm_id3148550\n"
"help.text"
-msgid "<bookmark_value>For statement</bookmark_value><bookmark_value>To statement</bookmark_value><bookmark_value>Step statement</bookmark_value><bookmark_value>Next statement</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>Tan function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"hd_id3149205\n"
+"03080104.xhp\n"
+"hd_id3148550\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">For...Next Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080104.xhp\" name=\"Tan Function [Runtime]\">Tan Function [Runtime]</link>"
msgstr ""
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3143267\n"
+"03080104.xhp\n"
+"par_id3148663\n"
"2\n"
"help.text"
-msgid "Repeats the statements between the For...Next block a specified number of times."
+msgid "Determines the tangent of an angle. The angle is specified in radians."
msgstr ""
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"hd_id3156153\n"
+"03080104.xhp\n"
+"par_id3153379\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Using the angle Alpha, the Tan Function calculates the ratio of the length of the side opposite the angle to the length of the side adjacent to the angle in a right-angled triangle."
+msgstr ""
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3148473\n"
+"03080104.xhp\n"
+"par_id3154366\n"
"4\n"
"help.text"
-msgid "For counter=start To end [Step step]"
+msgid "Tan(Alpha) = side opposite the angle/side adjacent to angle"
msgstr ""
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3156024\n"
+"03080104.xhp\n"
+"hd_id3145174\n"
"5\n"
"help.text"
-msgid "statement block"
-msgstr "Shigjetat e bllokut"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3146796\n"
+"03080104.xhp\n"
+"par_id3151042\n"
"6\n"
"help.text"
-msgid "[Exit For]"
-msgstr "Cakto drejtimin e daljes për %O"
+msgid "Tan (Number)"
+msgstr "Numri i faqes"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3159414\n"
+"03080104.xhp\n"
+"hd_id3156214\n"
"7\n"
"help.text"
-msgid "statement block"
-msgstr "Shigjetat e bllokut"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3153897\n"
+"03080104.xhp\n"
+"par_id3156281\n"
"8\n"
"help.text"
-msgid "Next [counter]"
-msgstr "Faqja tjetër"
+msgid "Double"
+msgstr "Dyfish"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"hd_id3150400\n"
+"03080104.xhp\n"
+"hd_id3155132\n"
"9\n"
"help.text"
-msgid "Variables:"
-msgstr "Variablat"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3150358\n"
+"03080104.xhp\n"
+"par_id3145786\n"
"10\n"
"help.text"
-msgid "<emph>Counter:</emph> Loop counter initially assigned the value to the right of the equal sign (start). Only numeric variables are valid. The loop counter increases or decreases according to the variable Step until End is passed."
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the tangent for (in radians)."
msgstr ""
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3152455\n"
+"03080104.xhp\n"
+"par_id3153728\n"
"11\n"
"help.text"
-msgid "<emph>Start:</emph> Numeric variable that defines the initial value at the beginning of the loop."
+msgid "To convert degrees to radians, multiply by Pi/180. To convert radians to degrees, multiply by 180/Pi."
msgstr ""
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3151043\n"
+"03080104.xhp\n"
+"par_id3155414\n"
"12\n"
"help.text"
-msgid "<emph>End:</emph> Numeric variable that defines the final value at the end of the loop."
+msgid "degrees=(radiant*180)/Pi"
msgstr ""
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3156281\n"
+"03080104.xhp\n"
+"par_id3146975\n"
"13\n"
"help.text"
-msgid "<emph>Step:</emph> Sets the value by which to increase or decrease the loop counter. If Step is not specified, the loop counter is incremented by 1. In this case, End must be greater than Start. If you want to decrease Counter, End must be less than Start, and Step must be assigned a negative value."
+msgid "radiant=(degrees*Pi)/180"
msgstr ""
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3154684\n"
+"03080104.xhp\n"
+"par_id3147434\n"
"14\n"
"help.text"
-msgid "The <emph>For...Next</emph> loop repeats all of the statements in the loop for the number of times that is specified by the parameters."
-msgstr ""
+msgid "Pi is approximately 3.141593."
+msgstr "Numri me tw cilin pi wshtw shumwzuar"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3147287\n"
+"03080104.xhp\n"
+"hd_id3149483\n"
"15\n"
"help.text"
-msgid "As the counter variable is decreased, $[officename] Basic checks if the end value has been reached. As soon as the counter passes the end value, the loop automatically ends."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3159154\n"
+"03080104.xhp\n"
+"par_id3148646\n"
"16\n"
"help.text"
-msgid "It is possible to nest <emph>For...Next</emph> statements. If you do not specify a variable following the <emph>Next</emph> statement, <emph>Next</emph> automatically refers to the most recent <emph>For</emph> statement."
+msgid "' In this example, the following entry is possible for a right-angled triangle:"
msgstr ""
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3155306\n"
+"03080104.xhp\n"
+"par_id3150012\n"
"17\n"
"help.text"
-msgid "If you specify an increment of 0, the statements between <emph>For</emph> and <emph>Next</emph> are repeated continuously."
+msgid "' The side opposite the angle and the angle (in degrees) to calculate the length of the side adjacent to the angle:"
msgstr ""
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3155854\n"
-"18\n"
+"03080104.xhp\n"
+"par_id3153158\n"
+"19\n"
"help.text"
-msgid "When counting down the counter variable, $[officename] Basic checks for overflow or underflow. The loop ends when Counter exceeds End (positive Step value) or is less than End (negative Step value)."
+msgid "' Pi = 3.1415926 is a pre-defined variable"
msgstr ""
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3145273\n"
-"19\n"
+"03080104.xhp\n"
+"par_id3145252\n"
+"22\n"
"help.text"
-msgid "Use the <emph>Exit For</emph> statement to exit the loop unconditionally. This statement must be within a <emph>For...Next</emph> loop. Use the <emph>If...Then</emph> statement to test the exit condition as follows:"
+msgid "d1 = InputBox$ (\"Enter the length of the side opposite the angle: \",\"opposite\")"
msgstr ""
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3153190\n"
-"20\n"
+"03080104.xhp\n"
+"par_id3149582\n"
+"23\n"
"help.text"
-msgid "For..."
-msgstr "për"
+msgid "dAlpha = InputBox$ (\"Enter the Alpha angle (in degrees): \",\"Alpha\")"
+msgstr ""
-#: 03090202.xhp
+#: 03080104.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3149482\n"
-"21\n"
+"03080104.xhp\n"
+"par_id3154016\n"
+"24\n"
"help.text"
-msgid "statements"
-msgstr "DDE Deklaratë"
+msgid "Print \"the length of the side adjacent the angle is\"; (d1 / tan (dAlpha * Pi / 180))"
+msgstr ""
-#: 03090202.xhp
+#: 03080200.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3147124\n"
-"22\n"
+"03080200.xhp\n"
+"tit\n"
"help.text"
-msgid "If condition = True Then Exit For"
+msgid "Exponential and Logarithmic Functions"
msgstr ""
-#: 03090202.xhp
+#: 03080200.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3153159\n"
-"23\n"
+"03080200.xhp\n"
+"hd_id3154758\n"
+"1\n"
"help.text"
-msgid "statements"
-msgstr "DDE Deklaratë"
+msgid "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Exponential and Logarithmic Functions\">Exponential and Logarithmic Functions</link>"
+msgstr ""
-#: 03090202.xhp
+#: 03080200.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3154096\n"
-"24\n"
+"03080200.xhp\n"
+"par_id3148550\n"
+"2\n"
"help.text"
-msgid "Next"
-msgstr "I ardhshmi"
+msgid "$[officename] Basic supports the following exponential and logarithmic functions."
+msgstr ""
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3156286\n"
-"25\n"
+"03080201.xhp\n"
+"tit\n"
"help.text"
-msgid "Note: In nested <emph>For...Next</emph> loops, if you exit a loop unconditionally with <emph>Exit For</emph>, only one loop is exited."
-msgstr ""
+msgid "Exp Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"hd_id3148457\n"
-"26\n"
+"03080201.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<bookmark_value>Exp function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3151074\n"
-"27\n"
+"03080201.xhp\n"
+"hd_id3150616\n"
+"1\n"
"help.text"
-msgid "The following example uses two nested loops to sort a string array with 10 elements ( sEntry() ), that are first filled with various contents:"
+msgid "<link href=\"text/sbasic/shared/03080201.xhp\" name=\"Exp Function [Runtime]\">Exp Function [Runtime]</link>"
msgstr ""
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3155767\n"
-"42\n"
+"03080201.xhp\n"
+"par_id3155555\n"
+"2\n"
"help.text"
-msgid "sEntry(0) = \"Jerry\""
+msgid "Returns the base of the natural logarithm (e = 2.718282) raised to a power."
msgstr ""
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3153711\n"
-"33\n"
+"03080201.xhp\n"
+"hd_id3150984\n"
+"3\n"
"help.text"
-msgid "sEntry(1) = \"Patty\""
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3148993\n"
-"34\n"
+"03080201.xhp\n"
+"par_id3145315\n"
+"4\n"
"help.text"
-msgid "sEntry(2) = \"Kurt\""
-msgstr ""
+msgid "Exp (Number)"
+msgstr "Numri i faqes"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3156382\n"
-"35\n"
+"03080201.xhp\n"
+"hd_id3154347\n"
+"5\n"
"help.text"
-msgid "sEntry(3) = \"Thomas\""
-msgstr "St_Thomas"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3155174\n"
-"36\n"
+"03080201.xhp\n"
+"par_id3149670\n"
+"6\n"
"help.text"
-msgid "sEntry(4) = \"Michael\""
-msgstr ""
+msgid "Double"
+msgstr "Dyfish"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3166448\n"
-"37\n"
+"03080201.xhp\n"
+"hd_id3154760\n"
+"7\n"
"help.text"
-msgid "sEntry(5) = \"David\""
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3149255\n"
-"38\n"
+"03080201.xhp\n"
+"par_id3150793\n"
+"8\n"
"help.text"
-msgid "sEntry(6) = \"Cathy\""
+msgid "<emph>Number:</emph> Any numeric expression that specifies the power that you want to raise \"e\" to (the base of natural logarithms). The power must be for both single-precision numbers less than or equal to 88.02969 and double-precision numbers less than or equal to 709.782712893, since $[officename] Basic returns an Overflow error for numbers exceeding these values."
msgstr ""
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3149565\n"
-"39\n"
+"03080201.xhp\n"
+"hd_id3156280\n"
+"9\n"
"help.text"
-msgid "sEntry(7) = \"Susie\""
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3145148\n"
-"40\n"
+"03080201.xhp\n"
+"par_id3159254\n"
+"13\n"
"help.text"
-msgid "sEntry(8) = \"Edward\""
+msgid "Const b2=1.345e34"
msgstr ""
-#: 03090202.xhp
+#: 03080201.xhp
msgctxt ""
-"03090202.xhp\n"
-"par_id3145229\n"
-"41\n"
+"03080201.xhp\n"
+"par_id3161832\n"
+"15\n"
"help.text"
-msgid "sEntry(9) = \"Christine\""
+msgid "MsgBox \"\" & dValue & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm\""
msgstr ""
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
+"03080202.xhp\n"
"tit\n"
"help.text"
-msgid "ChDir Statement [Runtime]"
+msgid "Log Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"bm_id3150178\n"
+"03080202.xhp\n"
+"bm_id3149416\n"
"help.text"
-msgid "<bookmark_value>ChDir statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+msgid "<bookmark_value>Log function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"hd_id3150178\n"
+"03080202.xhp\n"
+"hd_id3149416\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020401.xhp\" name=\"ChDir Statement [Runtime]\">ChDir Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Log Function [Runtime]\">Log Function [Runtime]</link>"
msgstr ""
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"par_id3153126\n"
+"03080202.xhp\n"
+"par_id3145066\n"
"2\n"
"help.text"
-msgid "Changes the current directory or drive."
-msgstr ""
-
-#: 03020401.xhp
-msgctxt ""
-"03020401.xhp\n"
-"par_id9783013\n"
-"help.text"
-msgid "This runtime statement currently does not work as documented. See <link href=\"http://www.openoffice.org/issues/show_bug.cgi?id=30692\">this issue</link> for more information."
-msgstr ""
+msgid "Returns the natural logarithm of a number."
+msgstr "E kthen logaritmin natyral tw numrit kompleks"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"hd_id3154347\n"
+"03080202.xhp\n"
+"hd_id3159414\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"par_id3153897\n"
+"03080202.xhp\n"
+"par_id3154760\n"
"4\n"
"help.text"
-msgid "ChDir Text As String"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "Log (Number)"
+msgstr "Numri i faqes"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"hd_id3148664\n"
+"03080202.xhp\n"
+"hd_id3149457\n"
"5\n"
"help.text"
+msgid "Return value:"
+msgstr "Vlerë absolute"
+
+#: 03080202.xhp
+msgctxt ""
+"03080202.xhp\n"
+"par_id3150791\n"
+"6\n"
+"help.text"
+msgid "Double"
+msgstr "Dyfish"
+
+#: 03080202.xhp
+msgctxt ""
+"03080202.xhp\n"
+"hd_id3151211\n"
+"7\n"
+"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"par_id3150543\n"
-"6\n"
+"03080202.xhp\n"
+"par_id3151041\n"
+"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the directory path or drive."
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the natural logarithm for."
msgstr ""
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"par_id3152598\n"
-"7\n"
+"03080202.xhp\n"
+"par_id3150869\n"
+"9\n"
"help.text"
-msgid "If you only want to change the current drive, enter the drive letter followed by a colon."
+msgid "The natural logarithm is the logarithm to the base e. Base e is a constant with an approximate value of 2.718282..."
msgstr ""
-#: 03020401.xhp
+#: 03080202.xhp
msgctxt ""
-"03020401.xhp\n"
-"hd_id3151116\n"
-"8\n"
+"03080202.xhp\n"
+"par_id3153968\n"
+"10\n"
+"help.text"
+msgid "You can calculate logarithms to any base (n) for any number (x) by dividing the natural logarithm of x by the natural logarithm of n, as follows:"
+msgstr ""
+
+#: 03080202.xhp
+msgctxt ""
+"03080202.xhp\n"
+"par_id3145420\n"
+"11\n"
+"help.text"
+msgid "Log n(x) = Log(x) / Log(n)"
+msgstr "LOG"
+
+#: 03080202.xhp
+msgctxt ""
+"03080202.xhp\n"
+"hd_id3155131\n"
+"12\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03130000.xhp
+#: 03080202.xhp
msgctxt ""
-"03130000.xhp\n"
+"03080202.xhp\n"
+"par_id3149262\n"
+"18\n"
+"help.text"
+msgid "MsgBox \"\" & a & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm function\""
+msgstr ""
+
+#: 03080300.xhp
+msgctxt ""
+"03080300.xhp\n"
"tit\n"
"help.text"
-msgid "Other Commands"
-msgstr "Format tjetër"
+msgid "Generating Random Numbers"
+msgstr "Bashkësia e numrave natyral"
-#: 03130000.xhp
+#: 03080300.xhp
msgctxt ""
-"03130000.xhp\n"
-"hd_id3156027\n"
+"03080300.xhp\n"
+"hd_id3143270\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">Other Commands</link>"
+msgid "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generating Random Numbers\">Generating Random Numbers</link>"
msgstr ""
-#: 03130000.xhp
+#: 03080300.xhp
msgctxt ""
-"03130000.xhp\n"
-"par_id3153312\n"
+"03080300.xhp\n"
+"par_id3154347\n"
"2\n"
"help.text"
-msgid "This is a list of the functions and the statements that are not included in the other categories."
+msgid "The following statements and functions generate random numbers."
msgstr ""
-#: 03030301.xhp
+#: 03080301.xhp
msgctxt ""
-"03030301.xhp\n"
+"03080301.xhp\n"
"tit\n"
"help.text"
-msgid "Date Statement [Runtime]"
+msgid "Randomize Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03030301.xhp
+#: 03080301.xhp
msgctxt ""
-"03030301.xhp\n"
-"bm_id3156027\n"
+"03080301.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Date statement</bookmark_value>"
+msgid "<bookmark_value>Randomize statement</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03030301.xhp
+#: 03080301.xhp
msgctxt ""
-"03030301.xhp\n"
-"hd_id3156027\n"
+"03080301.xhp\n"
+"hd_id3150616\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030301.xhp\" name=\"Date Statement [Runtime]\">Date Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080301.xhp\" name=\"Randomize Statement [Runtime]\">Randomize Statement [Runtime]</link>"
msgstr ""
-#: 03030301.xhp
+#: 03080301.xhp
msgctxt ""
-"03030301.xhp\n"
-"par_id3147291\n"
+"03080301.xhp\n"
+"par_id3145090\n"
"2\n"
"help.text"
-msgid "Returns the current system date as a string, or resets the date. The date format depends on your local system settings."
-msgstr ""
+msgid "Initializes the random-number generator."
+msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03030301.xhp
+#: 03080301.xhp
msgctxt ""
-"03030301.xhp\n"
-"hd_id3148686\n"
+"03080301.xhp\n"
+"hd_id3147573\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03030301.xhp
+#: 03080301.xhp
msgctxt ""
-"03030301.xhp\n"
-"par_id3146794\n"
+"03080301.xhp\n"
+"par_id3145315\n"
"4\n"
"help.text"
-msgid "Date ; Date = Text As String"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "Randomize [Number]"
+msgstr "Numri i faqes"
-#: 03030301.xhp
+#: 03080301.xhp
msgctxt ""
-"03030301.xhp\n"
-"hd_id3154347\n"
+"03080301.xhp\n"
+"hd_id3152456\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03030301.xhp
+#: 03080301.xhp
msgctxt ""
-"03030301.xhp\n"
-"par_id3145069\n"
+"03080301.xhp\n"
+"par_id3149670\n"
"6\n"
"help.text"
-msgid "<emph>Text:</emph> Only required in order to reset the system date. In this case, the string expression must correspond to the date format defined in your local settings."
-msgstr ""
+msgid "<emph>Number:</emph> Any integer value that initializes the random-number generator."
+msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03030301.xhp
+#: 03080301.xhp
msgctxt ""
-"03030301.xhp\n"
-"hd_id3150793\n"
+"03080301.xhp\n"
+"hd_id3149655\n"
"7\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03030301.xhp
-#, fuzzy
+#: 03080301.xhp
msgctxt ""
-"03030301.xhp\n"
-"par_id3156424\n"
-"9\n"
+"03080301.xhp\n"
+"par_id3147288\n"
+"14\n"
"help.text"
-msgid "MsgBox \"The date is \" & Date"
-msgstr "Nuk është baraz me"
+msgid "iVar = Int((10 * Rnd) ) ' Range from 0 To 9"
+msgstr ""
-#: 03120304.xhp
+#: 03080301.xhp
msgctxt ""
-"03120304.xhp\n"
+"03080301.xhp\n"
+"par_id3148617\n"
+"22\n"
+"help.text"
+msgid "MsgBox sText,0,\"Spectral Distribution\""
+msgstr ""
+
+#: 03080302.xhp
+msgctxt ""
+"03080302.xhp\n"
"tit\n"
"help.text"
-msgid "LSet Statement [Runtime]"
+msgid "Rnd Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03120304.xhp
+#: 03080302.xhp
msgctxt ""
-"03120304.xhp\n"
-"bm_id3143268\n"
+"03080302.xhp\n"
+"bm_id3148685\n"
"help.text"
-msgid "<bookmark_value>LSet statement</bookmark_value>"
-msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
+msgid "<bookmark_value>Rnd function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03120304.xhp
+#: 03080302.xhp
msgctxt ""
-"03120304.xhp\n"
-"hd_id3143268\n"
+"03080302.xhp\n"
+"hd_id3148685\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"LSet Statement [Runtime]\">LSet Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080302.xhp\" name=\"Rnd Function [Runtime]\">Rnd Function [Runtime]</link>"
msgstr ""
-#: 03120304.xhp
+#: 03080302.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3155419\n"
+"03080302.xhp\n"
+"par_id3149669\n"
"2\n"
"help.text"
-msgid "Aligns a string to the left of a string variable, or copies a variable of a user-defined type to another variable of a different user-defined type."
-msgstr ""
+msgid "Returns a random number between 0 and 1."
+msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-#: 03120304.xhp
+#: 03080302.xhp
msgctxt ""
-"03120304.xhp\n"
-"hd_id3145317\n"
+"03080302.xhp\n"
+"hd_id3153897\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03120304.xhp
+#: 03080302.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3150984\n"
+"03080302.xhp\n"
+"par_id3150543\n"
"4\n"
"help.text"
-msgid "LSet Var As String = Text or LSet Var1 = Var2"
-msgstr ""
+msgid "Rnd [(Expression)]"
+msgstr "Shprehje e rezervuar"
-#: 03120304.xhp
+#: 03080302.xhp
msgctxt ""
-"03120304.xhp\n"
-"hd_id3143271\n"
+"03080302.xhp\n"
+"hd_id3149655\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03120304.xhp
+#: 03080302.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3145610\n"
+"03080302.xhp\n"
+"par_id3154365\n"
"6\n"
"help.text"
-msgid "<emph>Var:</emph> Any String variable that contains the string that you want align to the left."
-msgstr ""
+msgid "Double"
+msgstr "Dyfish"
-#: 03120304.xhp
+#: 03080302.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3154346\n"
+"03080302.xhp\n"
+"hd_id3154909\n"
"7\n"
"help.text"
-msgid "<emph>Text:</emph> String that you want to align to the left of the string variable."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03120304.xhp
+#: 03080302.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3151054\n"
+"03080302.xhp\n"
+"par_id3125864\n"
"8\n"
"help.text"
-msgid "<emph>Var1:</emph> Name of the user-defined type variable that you want to copy to."
-msgstr ""
+msgid "<emph>Expression:</emph> Any numeric expression."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03120304.xhp
+#: 03080302.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3153361\n"
-"9\n"
+"03080302.xhp\n"
+"par_id3155306\n"
+"12\n"
"help.text"
-msgid "<emph>Var2:</emph> Name of the user-defined type variable that you want to copy from."
+msgid "<emph>Omitted:</emph> Returns the next random number in the sequence."
msgstr ""
-#: 03120304.xhp
+#: 03080302.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3154686\n"
-"10\n"
+"03080302.xhp\n"
+"par_id3147318\n"
+"14\n"
"help.text"
-msgid "If the string is shorter than the string variable, <emph>LSet</emph> left-aligns the string within the string variable. Any remaining positions in the string variable are replaced by spaces. If the string is longer than the string variable, only the leftmost characters up to the length of the string variable are copied. With the <emph>LSet</emph> statement, you can also copy a user-defined type variable to another variable of the same type."
+msgid "The <emph>Rnd</emph> function only returns values ranging from 0 to 1. To generate random integers in a given range, use the formula in the following example:"
msgstr ""
-#: 03120304.xhp
+#: 03080302.xhp
msgctxt ""
-"03120304.xhp\n"
-"hd_id3156282\n"
-"11\n"
+"03080302.xhp\n"
+"hd_id3151118\n"
+"15\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03120304.xhp
+#: 03080302.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3152940\n"
-"18\n"
+"03080302.xhp\n"
+"par_id3147124\n"
+"21\n"
"help.text"
-msgid "' Align \"SBX\" within the 40-character reference string"
-msgstr ""
+msgid "Print \"Number from 1 to 5\""
+msgstr "Nga kreu në fund"
-#: 03120304.xhp
+#: 03080302.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3148647\n"
-"19\n"
+"03080302.xhp\n"
+"par_id3154943\n"
+"23\n"
"help.text"
-msgid "' Replace asterisks with spaces"
+msgid "Print \"Number from 6 to 8\""
+msgstr "Nga kreu në fund"
+
+#: 03080302.xhp
+msgctxt ""
+"03080302.xhp\n"
+"par_id3151074\n"
+"25\n"
+"help.text"
+msgid "Print \"Greater than 8\""
+msgstr "Është më e madhe se"
+
+#: 03080302.xhp
+msgctxt ""
+"03080302.xhp\n"
+"par_id3155602\n"
+"27\n"
+"help.text"
+msgid "Print \"Outside range 1 to 10\""
+msgstr "Nga kreu në fund"
+
+#: 03080400.xhp
+msgctxt ""
+"03080400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Square Root Calculation"
+msgstr "Kthen rrënjën katrore të një numri."
+
+#: 03080400.xhp
+msgctxt ""
+"03080400.xhp\n"
+"hd_id3148946\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03080400.xhp\" name=\"Square Root Calculation\">Square Root Calculation</link>"
msgstr ""
-#: 03120304.xhp
+#: 03080400.xhp
msgctxt ""
-"03120304.xhp\n"
-"par_id3151075\n"
-"30\n"
+"03080400.xhp\n"
+"par_id3159414\n"
+"2\n"
"help.text"
-msgid "' Left-align \"SBX\" within the 40-character reference string"
+msgid "Use this function to calculate square roots."
msgstr ""
-#: 03030107.xhp
+#: 03080401.xhp
msgctxt ""
-"03030107.xhp\n"
+"03080401.xhp\n"
"tit\n"
"help.text"
-msgid "CDateToIso Function [Runtime]"
+msgid "Sqr Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03030107.xhp
+#: 03080401.xhp
msgctxt ""
-"03030107.xhp\n"
-"bm_id3150620\n"
+"03080401.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "<bookmark_value>CdateToIso function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>Sqr function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03030107.xhp
+#: 03080401.xhp
msgctxt ""
-"03030107.xhp\n"
-"hd_id3150620\n"
+"03080401.xhp\n"
+"hd_id3156027\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030107.xhp\" name=\"CDateToIso Function [Runtime]\">CDateToIso Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Sqr Function [Runtime]\">Sqr Function [Runtime]</link>"
msgstr ""
-#: 03030107.xhp
+#: 03080401.xhp
msgctxt ""
-"03030107.xhp\n"
-"par_id3151097\n"
+"03080401.xhp\n"
+"par_id3147226\n"
"2\n"
"help.text"
-msgid "Returns the date in ISO format from a serial date number that is generated by the DateSerial or the DateValue function."
+msgid "Calculates the square root of a numeric expression."
msgstr ""
-#: 03030107.xhp
+#: 03080401.xhp
msgctxt ""
-"03030107.xhp\n"
-"hd_id3159224\n"
+"03080401.xhp\n"
+"hd_id3143267\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03030107.xhp
+#: 03080401.xhp
msgctxt ""
-"03030107.xhp\n"
-"par_id3149497\n"
+"03080401.xhp\n"
+"par_id3149415\n"
"4\n"
"help.text"
-msgid "CDateToIso(Number)"
+msgid "Sqr (Number)"
msgstr "Numri i faqes"
-#: 03030107.xhp
+#: 03080401.xhp
msgctxt ""
-"03030107.xhp\n"
-"hd_id3152347\n"
+"03080401.xhp\n"
+"hd_id3156023\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03030107.xhp
+#: 03080401.xhp
msgctxt ""
-"03030107.xhp\n"
-"par_id3154422\n"
+"03080401.xhp\n"
+"par_id3156343\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "Double"
+msgstr "Dyfish"
-#: 03030107.xhp
+#: 03080401.xhp
msgctxt ""
-"03030107.xhp\n"
-"hd_id3147303\n"
+"03080401.xhp\n"
+"hd_id3147265\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03030107.xhp
+#: 03080401.xhp
msgctxt ""
-"03030107.xhp\n"
-"par_id3145136\n"
+"03080401.xhp\n"
+"par_id3149457\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Integer that contains the serial date number."
+msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the square root for."
msgstr ""
-#: 03030107.xhp
+#: 03080401.xhp
msgctxt ""
-"03030107.xhp\n"
-"hd_id3147243\n"
+"03080401.xhp\n"
+"par_id3154365\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03030107.xhp
-msgctxt ""
-"03030107.xhp\n"
-"par_id3153126\n"
-"11\n"
-"help.text"
-msgid "MsgBox \"\" & CDateToIso(Now) ,64,\"ISO Date\""
+msgid "A square root is the number that you multiply by itself to produce another number, for example, the square root of 36 is 6."
msgstr ""
-#: 03130500.xhp
+#: 03080401.xhp
msgctxt ""
-"03130500.xhp\n"
-"tit\n"
+"03080401.xhp\n"
+"hd_id3153192\n"
+"10\n"
"help.text"
-msgid "Shell Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "Example:"
+msgstr "Shembull"
-#: 03130500.xhp
+#: 03080500.xhp
msgctxt ""
-"03130500.xhp\n"
-"bm_id3150040\n"
+"03080500.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>Shell function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "Integers"
+msgstr "Grupi integer"
-#: 03130500.xhp
+#: 03080500.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3150040\n"
+"03080500.xhp\n"
+"hd_id3153345\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Shell Function [Runtime]\">Shell Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Integers</link>"
msgstr ""
-#: 03130500.xhp
+#: 03080500.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3153394\n"
+"03080500.xhp\n"
+"par_id3156152\n"
"2\n"
"help.text"
-msgid "Starts another application and defines the respective window style, if necessary."
+msgid "The following functions round values to integers."
msgstr ""
-#: 03130500.xhp
-msgctxt ""
-"03130500.xhp\n"
-"hd_id3153345\n"
-"4\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 03130500.xhp
+#: 03080501.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3147576\n"
-"5\n"
+"03080501.xhp\n"
+"tit\n"
"help.text"
-msgid "Shell (Pathname As String[, Windowstyle As Integer][, Param As String][, bSync])"
-msgstr ""
+msgid "Fix Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03130500.xhp
+#: 03080501.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3149235\n"
-"6\n"
+"03080501.xhp\n"
+"bm_id3159201\n"
"help.text"
-msgid "Parameter"
-msgstr "Parametri i sllajdit"
+msgid "<bookmark_value>Fix function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03130500.xhp
+#: 03080501.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3154306\n"
-"23\n"
+"03080501.xhp\n"
+"hd_id3159201\n"
+"1\n"
"help.text"
-msgid "Pathname"
+msgid "<link href=\"text/sbasic/shared/03080501.xhp\" name=\"Fix Function [Runtime]\">Fix Function [Runtime]</link>"
msgstr ""
-#: 03130500.xhp
+#: 03080501.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3155419\n"
-"7\n"
+"03080501.xhp\n"
+"par_id3149346\n"
+"2\n"
"help.text"
-msgid "Complete path and program name of the program that you want to start."
+msgid "Returns the integer value of a numeric expression by removing the fractional part of the number."
msgstr ""
-#: 03130500.xhp
+#: 03080501.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3150771\n"
-"24\n"
+"03080501.xhp\n"
+"hd_id3155419\n"
+"3\n"
"help.text"
-msgid "Windowstyle"
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03130500.xhp
+#: 03080501.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3145609\n"
-"8\n"
+"03080501.xhp\n"
+"par_id3156152\n"
+"4\n"
"help.text"
-msgid "Optional integer expression that specifies the style of the window that the program is executed in. The following values are possible:"
-msgstr ""
+msgid "Fix (Expression)"
+msgstr "Shprehje e rezervuar"
-#: 03130500.xhp
+#: 03080501.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3148663\n"
-"25\n"
+"03080501.xhp\n"
+"hd_id3154923\n"
+"5\n"
"help.text"
-msgid "0"
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03130500.xhp
+#: 03080501.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3153360\n"
-"10\n"
+"03080501.xhp\n"
+"par_id3148947\n"
+"6\n"
"help.text"
-msgid "The focus is on the hidden program window."
-msgstr ""
+msgid "Double"
+msgstr "Dyfish"
-#: 03130500.xhp
+#: 03080501.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3154123\n"
-"26\n"
+"03080501.xhp\n"
+"hd_id3154760\n"
+"7\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03130500.xhp
+#: 03080501.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3144760\n"
-"11\n"
+"03080501.xhp\n"
+"par_id3149457\n"
+"8\n"
"help.text"
-msgid "The focus is on the program window in standard size."
+msgid "<emph>Expression:</emph> Numeric expression that you want to return the integer value for."
msgstr ""
-#: 03130500.xhp
+#: 03080501.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3156422\n"
-"27\n"
+"03080501.xhp\n"
+"hd_id3150447\n"
+"9\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "Example:"
+msgstr "Shembull"
-#: 03130500.xhp
+#: 03080501.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3148451\n"
-"12\n"
+"03080501.xhp\n"
+"par_id3156214\n"
+"11\n"
"help.text"
-msgid "The focus is on the minimized program window."
+msgid "Print Fix(3.14159) ' returns 3."
msgstr ""
-#: 03130500.xhp
+#: 03080501.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3149561\n"
-"28\n"
+"03080501.xhp\n"
+"par_id3154217\n"
+"12\n"
"help.text"
-msgid "3"
+msgid "Print Fix(0) ' returns 0."
msgstr ""
-#: 03130500.xhp
+#: 03080501.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3146921\n"
+"03080501.xhp\n"
+"par_id3145786\n"
"13\n"
"help.text"
-msgid "focus is on the maximized program window."
+msgid "Print Fix(-3.14159) ' returns -3."
msgstr ""
-#: 03130500.xhp
+#: 03080502.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3149481\n"
-"29\n"
+"03080502.xhp\n"
+"tit\n"
"help.text"
-msgid "4"
-msgstr ""
+msgid "Int Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03130500.xhp
+#: 03080502.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3155854\n"
-"14\n"
+"03080502.xhp\n"
+"bm_id3153345\n"
"help.text"
-msgid "Standard size program window, without focus."
-msgstr ""
+msgid "<bookmark_value>Int function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03130500.xhp
+#: 03080502.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3145271\n"
-"30\n"
+"03080502.xhp\n"
+"hd_id3153345\n"
+"1\n"
"help.text"
-msgid "6"
+msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function [Runtime]\">Int Function [Runtime]</link>"
msgstr ""
-#: 03130500.xhp
+#: 03080502.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3152938\n"
-"15\n"
+"03080502.xhp\n"
+"par_id3155420\n"
+"2\n"
"help.text"
-msgid "Minimized program window, focus remains on the active window."
-msgstr ""
+msgid "Returns the integer portion of a number."
+msgstr "E kthen pjeswn integjere tw pjeswtimit"
-#: 03130500.xhp
+#: 03080502.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3146119\n"
-"31\n"
+"03080502.xhp\n"
+"hd_id3147559\n"
+"3\n"
"help.text"
-msgid "10"
-msgstr "Titullimi 10"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03130500.xhp
+#: 03080502.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3151112\n"
-"16\n"
+"03080502.xhp\n"
+"par_id3146795\n"
+"4\n"
"help.text"
-msgid "Full-screen display."
-msgstr "Shkallëzo Shfaqjen e Ekranit"
+msgid "Int (Number)"
+msgstr "Numri i faqes"
-#: 03130500.xhp
+#: 03080502.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3150419\n"
-"33\n"
+"03080502.xhp\n"
+"hd_id3149670\n"
+"5\n"
"help.text"
-msgid "Param"
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03130500.xhp
+#: 03080502.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3149412\n"
-"17\n"
+"03080502.xhp\n"
+"par_id3150400\n"
+"6\n"
"help.text"
-msgid "Any string expression that specifies the command line that want to pass."
-msgstr ""
+msgid "Double"
+msgstr "Dyfish"
-#: 03130500.xhp
+#: 03080502.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3148456\n"
-"32\n"
+"03080502.xhp\n"
+"hd_id3149656\n"
+"7\n"
"help.text"
-msgid "bSync"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03130500.xhp
+#: 03080502.xhp
msgctxt ""
-"03130500.xhp\n"
-"par_id3154096\n"
-"18\n"
+"03080502.xhp\n"
+"par_id3148797\n"
+"8\n"
"help.text"
-msgid "If this value is set to <emph>true</emph>, the <emph>Shell</emph> command and all $[officename] tasks wait until the shell process completes. If the value is set to <emph>false</emph>, the shell returns directly. The default value is <emph>false</emph>."
+msgid "<emph>Number:</emph> Any valid numeric expression."
msgstr ""
-#: 03130500.xhp
+#: 03080502.xhp
msgctxt ""
-"03130500.xhp\n"
-"hd_id3154270\n"
-"19\n"
+"03080502.xhp\n"
+"hd_id3148672\n"
+"9\n"
"help.text"
-msgid "Example"
+msgid "Example:"
msgstr "Shembull"
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"tit\n"
-"help.text"
-msgid "TwipsPerPixelX Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"bm_id3153539\n"
-"help.text"
-msgid "<bookmark_value>TwipsPerPixelX function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 03131300.xhp
+#: 03080502.xhp
msgctxt ""
-"03131300.xhp\n"
-"hd_id3153539\n"
-"1\n"
+"03080502.xhp\n"
+"par_id3125864\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"TwipsPerPixelX Function [Runtime]\">TwipsPerPixelX Function [Runtime]</link>"
+msgid "Print Int(3.99) ' returns the value 3"
msgstr ""
-#: 03131300.xhp
+#: 03080502.xhp
msgctxt ""
-"03131300.xhp\n"
-"par_id3153394\n"
-"2\n"
+"03080502.xhp\n"
+"par_id3145787\n"
+"12\n"
"help.text"
-msgid "Returns the number of twips that represent the width of a pixel."
+msgid "Print Int(0) ' returns the value 0"
msgstr ""
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"hd_id3153527\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03131300.xhp
+#: 03080502.xhp
msgctxt ""
-"03131300.xhp\n"
-"par_id3151110\n"
-"4\n"
+"03080502.xhp\n"
+"par_id3153143\n"
+"13\n"
"help.text"
-msgid "n = TwipsPerPixelX"
+msgid "Print Int(-3.14159) ' returns the value -4"
msgstr ""
-#: 03131300.xhp
-msgctxt ""
-"03131300.xhp\n"
-"hd_id3150669\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
-
-#: 03131300.xhp
+#: 03080600.xhp
msgctxt ""
-"03131300.xhp\n"
-"par_id3150503\n"
-"6\n"
+"03080600.xhp\n"
+"tit\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "Absolute Values"
+msgstr "Vlerat e dalluara"
-#: 03131300.xhp
+#: 03080600.xhp
msgctxt ""
-"03131300.xhp\n"
-"hd_id3159176\n"
-"7\n"
+"03080600.xhp\n"
+"hd_id3146958\n"
+"1\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "<link href=\"text/sbasic/shared/03080600.xhp\" name=\"Absolute Values\">Absolute Values</link>"
+msgstr ""
-#: 03131300.xhp
+#: 03080600.xhp
msgctxt ""
-"03131300.xhp\n"
-"par_id3153061\n"
-"9\n"
+"03080600.xhp\n"
+"par_id3150771\n"
+"2\n"
"help.text"
-msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
+msgid "This function returns absolute values."
msgstr ""
-#: 03100500.xhp
+#: 03080601.xhp
msgctxt ""
-"03100500.xhp\n"
+"03080601.xhp\n"
"tit\n"
"help.text"
-msgid "CInt Function [Runtime]"
+msgid "Abs Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03100500.xhp
+#: 03080601.xhp
msgctxt ""
-"03100500.xhp\n"
-"bm_id3149346\n"
+"03080601.xhp\n"
+"bm_id3159201\n"
"help.text"
-msgid "<bookmark_value>CInt function</bookmark_value>"
+msgid "<bookmark_value>Abs function</bookmark_value>"
msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03100500.xhp
+#: 03080601.xhp
msgctxt ""
-"03100500.xhp\n"
-"hd_id3149346\n"
+"03080601.xhp\n"
+"hd_id3159201\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"CInt Function [Runtime]\">CInt Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Abs Function [Runtime]\">Abs Function [Runtime]</link>"
msgstr ""
-#: 03100500.xhp
+#: 03080601.xhp
msgctxt ""
-"03100500.xhp\n"
-"par_id3155419\n"
+"03080601.xhp\n"
+"par_id3153394\n"
"2\n"
"help.text"
-msgid "Converts any string or numeric expression to an integer."
-msgstr ""
+msgid "Returns the absolute value of a numeric expression."
+msgstr "I kthen vlerat absolute tw njw numri kompleks"
-#: 03100500.xhp
+#: 03080601.xhp
msgctxt ""
-"03100500.xhp\n"
-"hd_id3147573\n"
+"03080601.xhp\n"
+"hd_id3149233\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03100500.xhp
+#: 03080601.xhp
msgctxt ""
-"03100500.xhp\n"
-"par_id3154142\n"
+"03080601.xhp\n"
+"par_id3147573\n"
"4\n"
"help.text"
-msgid "CInt (Expression)"
-msgstr "Shprehje e rezervuar"
+msgid "Abs (Number)"
+msgstr "Numri i faqes"
-#: 03100500.xhp
+#: 03080601.xhp
msgctxt ""
-"03100500.xhp\n"
-"hd_id3147531\n"
+"03080601.xhp\n"
+"hd_id3156152\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03100500.xhp
+#: 03080601.xhp
msgctxt ""
-"03100500.xhp\n"
-"par_id3147560\n"
+"03080601.xhp\n"
+"par_id3149670\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "Double"
+msgstr "Dyfish"
-#: 03100500.xhp
+#: 03080601.xhp
msgctxt ""
-"03100500.xhp\n"
-"hd_id3145069\n"
+"03080601.xhp\n"
+"hd_id3154924\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03100500.xhp
+#: 03080601.xhp
msgctxt ""
-"03100500.xhp\n"
-"par_id3159414\n"
+"03080601.xhp\n"
+"par_id3154347\n"
"8\n"
"help.text"
-msgid "<emph>Expression:</emph> Any numeric expression that you want to convert. If the <emph>Expression</emph> exceeds the value range between -32768 and 32767, $[officename] Basic reports an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+msgid "<emph>Number:</emph> Any numeric expression that you want to return the absolute value for. Positive numbers, including 0, are returned unchanged, whereas negative numbers are converted to positive numbers."
msgstr ""
-#: 03100500.xhp
+#: 03080601.xhp
msgctxt ""
-"03100500.xhp\n"
-"par_id3150358\n"
+"03080601.xhp\n"
+"par_id3153381\n"
"9\n"
"help.text"
-msgid "This function always rounds the fractional part of a number to the nearest integer."
+msgid "The following example uses the Abs function to calculate the difference between two values. It does not matter which value you enter first."
msgstr ""
-#: 03100500.xhp
+#: 03080601.xhp
msgctxt ""
-"03100500.xhp\n"
-"hd_id3145419\n"
+"03080601.xhp\n"
+"hd_id3148451\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"tit\n"
-"help.text"
-msgid "DateAdd Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"bm_id6269417\n"
-"help.text"
-msgid "<bookmark_value>DateAdd function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030110.xhp\">DateAdd Function [Runtime]</link>"
-msgstr ""
-
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10558\n"
+"03080601.xhp\n"
+"par_id3145786\n"
+"14\n"
"help.text"
-msgid "Adds a date interval to a given date a number of times and returns the resulting date."
+msgid "siW1 = Int(InputBox$ (\"Please enter the first amount\",\"Value Input\"))"
msgstr ""
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1055B\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1055F\n"
+"03080601.xhp\n"
+"par_id3149561\n"
+"15\n"
"help.text"
-msgid "DateAdd (Add, Count, Date)"
+msgid "siW2 = Int(InputBox$ (\"Please enter the second amount\",\"Value Input\"))"
msgstr ""
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN1061E\n"
-"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
-
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10622\n"
-"help.text"
-msgid "A Variant containing a date."
-msgstr "Formati numerik: datë"
-
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10625\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03030110.xhp
+#: 03080601.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10629\n"
+"03080601.xhp\n"
+"par_id3145750\n"
+"16\n"
"help.text"
-msgid "Add - A string expression from the following table, specifying the date interval."
+msgid "Print \"The difference is \"; Abs(siW1 - siW2)"
msgstr ""
-#: 03030110.xhp
+#: 03080700.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10636\n"
+"03080700.xhp\n"
+"tit\n"
"help.text"
-msgid "Add (string value)"
-msgstr "Vlerë në zvoglim e kryerreshtit"
+msgid "Expression Signs"
+msgstr "Shprehje e rezervuar"
-#: 03030110.xhp
+#: 03080700.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1063C\n"
+"03080700.xhp\n"
+"hd_id3150702\n"
+"1\n"
"help.text"
-msgid "Explanation"
+msgid "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Expression Signs\">Expression Signs</link>"
msgstr ""
-#: 03030110.xhp
+#: 03080700.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10643\n"
+"03080700.xhp\n"
+"par_id3148668\n"
+"2\n"
"help.text"
-msgid "yyyy"
+msgid "This function returns the algebraic sign of a numeric expression."
msgstr ""
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10649\n"
-"help.text"
-msgid "Year"
-msgstr "Viti"
-
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10650\n"
+"03080701.xhp\n"
+"tit\n"
"help.text"
-msgid "q"
-msgstr ""
+msgid "Sgn Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10656\n"
+"03080701.xhp\n"
+"bm_id3148474\n"
"help.text"
-msgid "Quarter"
-msgstr ""
+msgid "<bookmark_value>Sgn function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1065D\n"
+"03080701.xhp\n"
+"hd_id3148474\n"
+"1\n"
"help.text"
-msgid "m"
+msgid "<link href=\"text/sbasic/shared/03080701.xhp\" name=\"Sgn Function [Runtime]\">Sgn Function [Runtime]</link>"
msgstr ""
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10663\n"
-"help.text"
-msgid "Month"
-msgstr "Muaj"
-
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1066A\n"
+"03080701.xhp\n"
+"par_id3148686\n"
+"2\n"
"help.text"
-msgid "y"
+msgid "Returns an integer number between -1 and 1 that indicates if the number that is passed to the function is positive, negative, or zero."
msgstr ""
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10670\n"
+"03080701.xhp\n"
+"hd_id3156023\n"
+"3\n"
"help.text"
-msgid "Day of year"
-msgstr "Dita e parw e periudhws"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10677\n"
+"03080701.xhp\n"
+"par_id3153897\n"
+"4\n"
"help.text"
-msgid "w"
-msgstr ""
+msgid "Sgn (Number)"
+msgstr "Numri i faqes"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1067D\n"
+"03080701.xhp\n"
+"hd_id3145069\n"
+"5\n"
"help.text"
-msgid "Weekday"
-msgstr "WEEKDAY"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10684\n"
+"03080701.xhp\n"
+"par_id3150359\n"
+"6\n"
"help.text"
-msgid "ww"
-msgstr ""
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1068A\n"
+"03080701.xhp\n"
+"hd_id3150543\n"
+"7\n"
"help.text"
-msgid "Week of year"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN10691\n"
+"03080701.xhp\n"
+"par_id3154365\n"
+"8\n"
"help.text"
-msgid "d"
+msgid "<emph>Number:</emph> Numeric expression that determines the value that is returned by the function."
msgstr ""
-#: 03030110.xhp
-msgctxt ""
-"03030110.xhp\n"
-"par_idN10697\n"
-"help.text"
-msgid "Day"
-msgstr "Dita"
-
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN1069E\n"
+"03080701.xhp\n"
+"par_id3150767\n"
+"9\n"
"help.text"
-msgid "h"
+msgid "NumExpression"
msgstr ""
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106A4\n"
+"03080701.xhp\n"
+"par_id3150441\n"
+"10\n"
"help.text"
-msgid "Hour"
-msgstr "ORA"
+msgid "Return value"
+msgstr "Vlerë absolute"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106AB\n"
+"03080701.xhp\n"
+"par_id3161833\n"
+"11\n"
"help.text"
-msgid "n"
-msgstr ""
+msgid "negative"
+msgstr "Devijim negativ"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106B1\n"
+"03080701.xhp\n"
+"par_id3155306\n"
+"12\n"
"help.text"
-msgid "Minute"
-msgstr "MINUTA"
+msgid "Sgn returns -1."
+msgstr "Kthen t-shprëndarjen."
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106B8\n"
+"03080701.xhp\n"
+"par_id3145271\n"
+"13\n"
"help.text"
-msgid "s"
+msgid "0"
msgstr ""
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106BE\n"
+"03080701.xhp\n"
+"par_id3146119\n"
+"14\n"
"help.text"
-msgid "Second"
-msgstr "SEKONDA"
+msgid "Sgn returns 0."
+msgstr "Kthen t-shprëndarjen."
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106C1\n"
+"03080701.xhp\n"
+"par_id3153139\n"
+"15\n"
"help.text"
-msgid "Count - A numerical expression specifying how often the Add interval will be added (Count is positive) or subtracted (Count is negative)."
-msgstr ""
+msgid "positive"
+msgstr "Devijim pozitiv"
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106C4\n"
+"03080701.xhp\n"
+"par_id3154319\n"
+"16\n"
"help.text"
-msgid "Date - A given date or the name of a Variant variable containing a date. The Add value will be added Count times to this value."
-msgstr ""
+msgid "Sgn returns 1."
+msgstr "Kthen t-shprëndarjen."
-#: 03030110.xhp
+#: 03080701.xhp
msgctxt ""
-"03030110.xhp\n"
-"par_idN106C7\n"
+"03080701.xhp\n"
+"hd_id3152576\n"
+"17\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefBool Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"bm_id3145759\n"
-"help.text"
-msgid "<bookmark_value>DefBool statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"hd_id3145759\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"DefBool Statement [Runtime]\">DefBool Statement [Runtime]</link>"
-msgstr ""
-
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3153089\n"
-"2\n"
-"help.text"
-msgid "If no type-declaration character or keyword is specified, the DefBool statement sets the default data type for variables, according to a letter range."
-msgstr ""
-
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"hd_id3149495\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3150682\n"
-"4\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
-
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"hd_id3159201\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3147226\n"
-"6\n"
+"03080701.xhp\n"
+"par_id3155416\n"
+"19\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgid "Print sgn(-10) ' returns -1"
msgstr ""
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3149178\n"
-"7\n"
+"03080701.xhp\n"
+"par_id3154096\n"
+"20\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgid "Print sgn(0) ' returns 0"
msgstr ""
-#: 03101100.xhp
-msgctxt ""
-"03101100.xhp\n"
-"par_id3150669\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "**Ndryshorja nuk u gjet**"
-
-#: 03101100.xhp
+#: 03080701.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3149233\n"
-"9\n"
+"03080701.xhp\n"
+"par_id3148457\n"
+"21\n"
"help.text"
-msgid "<emph>DefBool:</emph> Boolean"
+msgid "Print sgn(10) ' returns 1"
msgstr ""
-#: 03101100.xhp
+#: 03080800.xhp
msgctxt ""
-"03101100.xhp\n"
-"hd_id3149762\n"
-"10\n"
+"03080800.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Converting Numbers"
+msgstr "Numrat e faqeve"
-#: 03101100.xhp
+#: 03080800.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3156152\n"
-"12\n"
+"03080800.xhp\n"
+"hd_id3145315\n"
+"1\n"
"help.text"
-msgid "' Prefix definition for variable types:"
+msgid "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Converting Numbers\">Converting Numbers</link>"
msgstr ""
-#: 03101100.xhp
+#: 03080800.xhp
msgctxt ""
-"03101100.xhp\n"
-"par_id3151381\n"
-"22\n"
+"03080800.xhp\n"
+"par_id3154760\n"
+"2\n"
"help.text"
-msgid "bOK=TRUE ' bOK is an implicit boolean variable"
+msgid "The following functions convert numbers from one number format to another."
msgstr ""
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
+"03080801.xhp\n"
"tit\n"
"help.text"
-msgid "SetAttr Statement [Runtime]"
+msgid "Hex Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"bm_id3147559\n"
+"03080801.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>SetAttr statement</bookmark_value>"
+msgid "<bookmark_value>Hex function</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"hd_id3147559\n"
+"03080801.xhp\n"
+"hd_id3150616\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020414.xhp\" name=\"SetAttr Statement [Runtime]\">SetAttr Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Hex Function [Runtime]\">Hex Function [Runtime]</link>"
msgstr ""
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3147264\n"
+"03080801.xhp\n"
+"par_id3145136\n"
"2\n"
"help.text"
-msgid "Sets the attribute information for a specified file."
+msgid "Returns a string that represents the hexadecimal value of a number."
msgstr ""
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"hd_id3150359\n"
+"03080801.xhp\n"
+"hd_id3147573\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3154365\n"
+"03080801.xhp\n"
+"par_id3150771\n"
"4\n"
"help.text"
-msgid "SetAttr FileName As String, Attribute As Integer"
-msgstr ""
+msgid "Hex (Number)"
+msgstr "Numri i faqes"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"hd_id3125863\n"
+"03080801.xhp\n"
+"hd_id3147530\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3154909\n"
+"03080801.xhp\n"
+"par_id3159414\n"
"6\n"
"help.text"
-msgid "FileName: Name of the file, including the path, that you want to test attributes of. If you do not enter a path, <emph>SetAttr</emph> searches for the file in the current directory. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr ""
+msgid "String"
+msgstr "Varg"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3153192\n"
+"03080801.xhp\n"
+"hd_id3156344\n"
"7\n"
"help.text"
-msgid "<emph>Attribute:</emph> Bit pattern defining the attributes that you want to set or to clear:"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3145786\n"
+"03080801.xhp\n"
+"par_id3148947\n"
"8\n"
"help.text"
-msgid "<emph>Value</emph>"
-msgstr "Vlerë absolute"
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert to a hexadecimal number."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3152596\n"
+"03080801.xhp\n"
+"hd_id3154365\n"
"9\n"
"help.text"
-msgid "0 : Normal files."
-msgstr "Të gjithë fajllat (*.*)"
-
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"par_id3149262\n"
-"10\n"
-"help.text"
-msgid "1 : Read-only files."
-msgstr "I editueshëm në dokument vetëm të lexueshëm"
+msgid "Example:"
+msgstr "Shembull"
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3152576\n"
-"13\n"
+"03080801.xhp\n"
+"par_id3156214\n"
+"30\n"
"help.text"
-msgid "32 : File was changed since last backup (Archive bit)."
+msgid "' uses BasicFormulas in $[officename] Calc"
msgstr ""
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3153093\n"
-"14\n"
+"03080801.xhp\n"
+"par_id3149262\n"
+"20\n"
"help.text"
-msgid "You can set multiple attributes by combining the respective values with a logic OR statement."
+msgid "' Returns a long integer from a hexadecimal value."
msgstr ""
-#: 03020414.xhp
-msgctxt ""
-"03020414.xhp\n"
-"hd_id3147434\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03020414.xhp
+#: 03080801.xhp
msgctxt ""
-"03020414.xhp\n"
-"par_id3148645\n"
-"17\n"
+"03080801.xhp\n"
+"par_id3147215\n"
+"25\n"
"help.text"
-msgid "On Error GoTo ErrorHandler ' Define target for error handler"
+msgid "' Calculates a hexadecimal value in integer."
msgstr ""
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
+"03080802.xhp\n"
"tit\n"
"help.text"
-msgid "GoTo Statement [Runtime]"
+msgid "Oct Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"bm_id3159413\n"
+"03080802.xhp\n"
+"bm_id3155420\n"
"help.text"
-msgid "<bookmark_value>GoTo statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+msgid "<bookmark_value>Oct function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"hd_id3159413\n"
+"03080802.xhp\n"
+"hd_id3155420\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement [Runtime]\">GoTo Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03080802.xhp\" name=\"Oct Function [Runtime]\">Oct Function [Runtime]</link>"
msgstr ""
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3153379\n"
+"03080802.xhp\n"
+"par_id3154924\n"
"2\n"
"help.text"
-msgid "Continues program execution within a Sub or Function at the procedure line indicated by a label."
-msgstr ""
+msgid "Returns the octal value of a number."
+msgstr "Kthen vlerën e numrit Pi."
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"hd_id3149656\n"
+"03080802.xhp\n"
+"hd_id3148947\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3154367\n"
+"03080802.xhp\n"
+"par_id3150543\n"
"4\n"
"help.text"
-msgid "see Parameters"
-msgstr "Parametrat animues"
+msgid "Oct (Number)"
+msgstr "Numri i faqes"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"hd_id3150870\n"
+"03080802.xhp\n"
+"hd_id3153360\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3156214\n"
+"03080802.xhp\n"
+"par_id3154138\n"
"6\n"
"help.text"
-msgid "Sub/Function"
-msgstr "Funksion eksponencial"
+msgid "String"
+msgstr "Varg"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3156424\n"
+"03080802.xhp\n"
+"hd_id3156422\n"
"7\n"
"help.text"
-msgid "statement block"
-msgstr "Shigjetat e bllokut"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3154685\n"
+"03080802.xhp\n"
+"par_id3150768\n"
"8\n"
"help.text"
-msgid "Label1"
-msgstr "Emërtimi"
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert to an octal value."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03090302.xhp
+#: 03080802.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3145786\n"
+"03080802.xhp\n"
+"hd_id3148672\n"
"9\n"
"help.text"
-msgid "<emph>Label2:</emph>"
-msgstr "Vlerë absolute"
-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3161832\n"
-"10\n"
-"help.text"
-msgid "statement block"
-msgstr "Shigjetat e bllokut"
-
-#: 03090302.xhp
-#, fuzzy
-msgctxt ""
-"03090302.xhp\n"
-"par_id3146120\n"
-"11\n"
-"help.text"
-msgid "Exit Sub"
-msgstr "Nën~totalet..."
-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3150010\n"
-"12\n"
-"help.text"
-msgid "<emph>Label1:</emph>"
-msgstr "Vlerë absolute"
+msgid "Example:"
+msgstr "Shembull"
-#: 03090302.xhp
+#: 03090000.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3152462\n"
-"13\n"
+"03090000.xhp\n"
+"tit\n"
"help.text"
-msgid "statement block"
-msgstr "Shigjetat e bllokut"
+msgid "Controlling Program Execution"
+msgstr "%PRODUCTNAME Modulet e programeve"
-#: 03090302.xhp
+#: 03090000.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3149664\n"
-"14\n"
+"03090000.xhp\n"
+"hd_id3145136\n"
+"1\n"
"help.text"
-msgid "GoTo Label2"
+msgid "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Controlling Program Execution\">Controlling Program Execution</link>"
msgstr ""
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id3152886\n"
-"15\n"
-"help.text"
-msgid "End Sub/Function"
-msgstr "**Tejmbushje e funksionit të katrorit**"
-
-#: 03090302.xhp
+#: 03090000.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3152596\n"
-"16\n"
+"03090000.xhp\n"
+"par_id3143268\n"
+"2\n"
"help.text"
-msgid "Use the GoTo statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and then and end it with a colon (\":\")."
+msgid "The following statements control the execution of a program."
msgstr ""
-#: 03090302.xhp
+#: 03090000.xhp
msgctxt ""
-"03090302.xhp\n"
-"par_id3155416\n"
-"17\n"
+"03090000.xhp\n"
+"par_id3156152\n"
+"3\n"
"help.text"
-msgid "You cannot use the GoTo statement to jump out of a Sub or Function."
+msgid "A program generally executes from the first line of code to the last line of code. You can also execute certain procedures within the program according to specific conditions, or repeat a section of the program within a sub-procedure or function. You can use loops to repeat parts of a program as many times as necessary, or until a certain condition is met. These type of control statements are classified as Condition, Loop, or Jump statements."
msgstr ""
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"hd_id3154731\n"
-"19\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03090302.xhp
-msgctxt ""
-"03090302.xhp\n"
-"par_id6967035\n"
-"help.text"
-msgid "see Parameters"
-msgstr "Parametrat animues"
-
-#: 03080700.xhp
+#: 03090100.xhp
msgctxt ""
-"03080700.xhp\n"
+"03090100.xhp\n"
"tit\n"
"help.text"
-msgid "Expression Signs"
-msgstr "Shprehje e rezervuar"
+msgid "Condition Statements"
+msgstr "Me kusht"
-#: 03080700.xhp
+#: 03090100.xhp
msgctxt ""
-"03080700.xhp\n"
-"hd_id3150702\n"
+"03090100.xhp\n"
+"hd_id3154422\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080700.xhp\" name=\"Expression Signs\">Expression Signs</link>"
+msgid "<link href=\"text/sbasic/shared/03090100.xhp\" name=\"Condition Statements\">Condition Statements</link>"
msgstr ""
-#: 03080700.xhp
+#: 03090100.xhp
msgctxt ""
-"03080700.xhp\n"
-"par_id3148668\n"
+"03090100.xhp\n"
+"par_id3153750\n"
"2\n"
"help.text"
-msgid "This function returns the algebraic sign of a numeric expression."
+msgid "The following statements are based on conditions."
msgstr ""
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
+"03090101.xhp\n"
"tit\n"
"help.text"
-msgid "RSet Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "If...Then...Else Statement [Runtime]"
+msgstr ""
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"bm_id3153345\n"
+"03090101.xhp\n"
+"bm_id3154422\n"
"help.text"
-msgid "<bookmark_value>RSet statement</bookmark_value>"
-msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
+msgid "<bookmark_value>If statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"hd_id3153345\n"
+"03090101.xhp\n"
+"hd_id3154422\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else Statement [Runtime]\">If...Then...Else Statement [Runtime]</link>"
msgstr ""
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3150503\n"
+"03090101.xhp\n"
+"par_id3155555\n"
"2\n"
"help.text"
-msgid "Right-aligns a string within a string variable, or copies a user-defined variable type into another."
+msgid "Defines one or more statement blocks that you only want to execute if a given condition is True."
msgstr ""
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"hd_id3149234\n"
+"03090101.xhp\n"
+"hd_id3146957\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3150669\n"
+"03090101.xhp\n"
+"par_id3153126\n"
"4\n"
"help.text"
-msgid "RSet Text As String = Text or RSet Variable1 = Variable2"
+msgid "If condition=true Then Statement block [ElseIf condition=true Then] Statement block [Else] Statement block EndIf"
msgstr ""
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"hd_id3156024\n"
+"03090101.xhp\n"
+"par_id3123476\n"
+"help.text"
+msgid "Instead of Else If you can write ElseIf, instead of End If you can write EndIf."
+msgstr ""
+
+#: 03090101.xhp
+msgctxt ""
+"03090101.xhp\n"
+"hd_id3155419\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3148552\n"
+"03090101.xhp\n"
+"par_id3153062\n"
"6\n"
"help.text"
-msgid "<emph>Text:</emph> Any string variable."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "The <emph>If...Then</emph> statement executes program blocks depending on given conditions. When $[officename] Basic encounters an <emph>If</emph> statement, the condition is tested. If the condition is True, all subsequent statements up to the next <emph>Else</emph> or <emph>ElseIf</emph> statement are executed. If the condition is False, and an <emph>ElseIf</emph> statement follows, $[officename] Basic tests the next condition and executes the following statements if the condition is True. If False, the program continues either with the next <emph>ElseIf</emph> or <emph>Else</emph> statement. Statements following <emph>Else</emph> are executed only if none of the previously tested conditions were True. After all conditions are evaluated, and the corresponding statements executed, the program continues with the statement following <emph>EndIf</emph>."
+msgstr ""
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3154924\n"
+"03090101.xhp\n"
+"par_id3153192\n"
"7\n"
"help.text"
-msgid "<emph>Text</emph>: String that you want to right-align in the string variable."
+msgid "You can nest multiple <emph>If...Then</emph> statements."
msgstr ""
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3149456\n"
+"03090101.xhp\n"
+"par_id3154684\n"
"8\n"
"help.text"
-msgid "<emph>Variable1:</emph> User-defined variable that is the target for the copied variable."
+msgid "<emph>Else</emph> and <emph>ElseIf</emph> statements are optional."
msgstr ""
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3153381\n"
+"03090101.xhp\n"
+"par_id3152939\n"
"9\n"
"help.text"
-msgid "<emph>Variable2:</emph> User-defined variable that you want to copy to another variable."
+msgid "You can use <emph>GoTo</emph> and <emph>GoSub</emph> to jump out of an <emph>If...Then</emph> block, but not to jump into an <emph>If...Then</emph> structure."
msgstr ""
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3154140\n"
+"03090101.xhp\n"
+"par_id3153951\n"
"10\n"
"help.text"
-msgid "If the string is shorter than the string variable, <emph>RSet</emph> aligns the string to the right within the string variable. Any remaining characters in the string variable are replaced with spaces. If the string is longer than the string variable, characters exceeding the length of the variable are truncated, and only the remaining characters are right-aligned within the string variable."
+msgid "The following example enables you to enter the expiration date of a product, and determines if the expiration date has passed."
msgstr ""
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3149202\n"
+"03090101.xhp\n"
+"hd_id3152576\n"
"11\n"
"help.text"
-msgid "You can also use the <emph>RSet statement</emph> to assign variables of one user-defined type to another."
-msgstr ""
-
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"par_id3151042\n"
-"12\n"
-"help.text"
-msgid "The following example uses the <emph>RSet</emph> and <emph>LSet</emph> statements to modify the left and right alignment of a string."
-msgstr ""
-
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"hd_id3154909\n"
-"13\n"
-"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3155856\n"
-"20\n"
+"03090101.xhp\n"
+"par_id3154490\n"
+"16\n"
"help.text"
-msgid "' Right-align \"SBX\" in a 40-character string"
+msgid "sDate = InputBox(\"Enter the expiration date (MM.DD.YYYY)\")"
msgstr ""
-#: 03120308.xhp
+#: 03090101.xhp
msgctxt ""
-"03120308.xhp\n"
-"par_id3152577\n"
+"03090101.xhp\n"
+"par_id3155601\n"
"21\n"
"help.text"
-msgid "' Replace asterisks with spaces"
-msgstr ""
-
-#: 03120308.xhp
-msgctxt ""
-"03120308.xhp\n"
-"par_id3145801\n"
-"32\n"
-"help.text"
-msgid "' Left-align \"SBX\" in a 40-character string"
-msgstr ""
-
-#: 03080200.xhp
-msgctxt ""
-"03080200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Exponential and Logarithmic Functions"
+msgid "MsgBox \"The expiration date has passed\""
msgstr ""
-#: 03080200.xhp
+#: 03090101.xhp
msgctxt ""
-"03080200.xhp\n"
-"hd_id3154758\n"
-"1\n"
+"03090101.xhp\n"
+"par_id3146912\n"
+"23\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080200.xhp\" name=\"Exponential and Logarithmic Functions\">Exponential and Logarithmic Functions</link>"
+msgid "MsgBox \"The expiration date has not yet passed\""
msgstr ""
-#: 03080200.xhp
+#: 03090101.xhp
msgctxt ""
-"03080200.xhp\n"
-"par_id3148550\n"
-"2\n"
+"03090101.xhp\n"
+"par_id3154754\n"
+"25\n"
"help.text"
-msgid "$[officename] Basic supports the following exponential and logarithmic functions."
+msgid "MsgBox \"The expiration date is today\""
msgstr ""
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
+"03090102.xhp\n"
"tit\n"
"help.text"
-msgid "The Basic Editor"
-msgstr "Edituesi i ImageMapës"
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"bm_id3148647\n"
-"help.text"
-msgid "<bookmark_value>saving;Basic code</bookmark_value><bookmark_value>loading;Basic code</bookmark_value><bookmark_value>Basic editor</bookmark_value><bookmark_value>navigating;in Basic projects</bookmark_value><bookmark_value>long lines;in Basic editor</bookmark_value><bookmark_value>lines of text;in Basic editor</bookmark_value><bookmark_value>continuation;long lines in editor</bookmark_value>"
+msgid "Select...Case Statement [Runtime]"
msgstr ""
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"hd_id3147264\n"
-"1\n"
+"03090102.xhp\n"
+"bm_id3149416\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01030200.xhp\" name=\"The Basic Editor\">The Basic Editor</link>"
+msgid "<bookmark_value>Select...Case statement</bookmark_value><bookmark_value>Case statement</bookmark_value>"
msgstr ""
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3145069\n"
-"3\n"
+"03090102.xhp\n"
+"hd_id3149416\n"
+"1\n"
"help.text"
-msgid "The Basic Editor provides the standard editing functions you are familiar with when working in a text document. It supports the functions of the <emph>Edit</emph> menu (Cut, Delete, Paste), the ability to select text with the Shift key, as well as cursor positioning functions (for example, moving from word to word with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and the arrow keys)."
+msgid "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select...Case Statement [Runtime]\">Select...Case Statement [Runtime]</link>"
msgstr ""
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3154686\n"
-"31\n"
+"03090102.xhp\n"
+"par_id3153896\n"
+"2\n"
"help.text"
-msgid "Long lines can be split into several parts by inserting a space and an underline character _ as the last two characters of a line. This connects the line with the following line to one logical line. (If \"Option Compatible\" is used in the same Basic module, the line continuation feature is also valid for comment lines.)"
+msgid "Defines one or more statement blocks depending on the value of an expression."
msgstr ""
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3151042\n"
-"32\n"
+"03090102.xhp\n"
+"hd_id3147265\n"
+"3\n"
"help.text"
-msgid "If you press the <emph>Run BASIC</emph> icon on the <emph>Macro</emph> bar, program execution starts at the first line of the Basic editor. The program executes the first Sub or Function and then program execution stops. The \"Sub Main\" does not take precedence on program execution."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id59816\n"
+"03090102.xhp\n"
+"par_id3150400\n"
+"4\n"
"help.text"
-msgid "Insert your Basic code between the Sub Main and End Sub lines that you see when you first open the IDE. Alternatively, delete all lines and then enter your own Basic code."
+msgid "Select Case condition Case expression Statement Block [Case expression2 Statement Block][Case Else] Statement Block End Select"
msgstr ""
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"hd_id3125863\n"
-"4\n"
+"03090102.xhp\n"
+"hd_id3150767\n"
+"5\n"
"help.text"
-msgid "Navigating in a Project"
-msgstr "Përpara objektit"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"hd_id3145785\n"
+"03090102.xhp\n"
+"par_id3156281\n"
"6\n"
"help.text"
-msgid "The Library List"
-msgstr "Kryerresht i listës"
+msgid "<emph>Condition:</emph> Any expression that controls if the statement block that follows the respective Case clause is executed."
+msgstr ""
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3146120\n"
+"03090102.xhp\n"
+"par_id3150448\n"
"7\n"
"help.text"
-msgid "Select a library from the <emph>Library</emph> list at the left of the toolbar to load the library in the editor. The first module of the selected library will be displayed."
+msgid "<emph>Expression:</emph> Any expression that is compatible with the Condition type expression. The statement block that follows the Case clause is executed if <emph>Condition</emph> matches <emph>Expression</emph>."
msgstr ""
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"hd_id3153190\n"
+"03090102.xhp\n"
+"hd_id3153768\n"
"8\n"
"help.text"
-msgid "The Object Catalog"
-msgstr "Katalogu i objektit"
+msgid "Example:"
+msgstr "Shembull"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"hd_id3148647\n"
-"15\n"
+"03090102.xhp\n"
+"par_id3152597\n"
+"14\n"
"help.text"
-msgid "Saving and Loading Basic Source Code"
-msgstr ""
+msgid "Print \"Number from 1 to 5\""
+msgstr "Nga kreu në fund"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3154320\n"
+"03090102.xhp\n"
+"par_id3147349\n"
"16\n"
"help.text"
-msgid "You can save Basic code in a text file for saving and importing in other programming systems."
-msgstr ""
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3149959\n"
-"25\n"
-"help.text"
-msgid "You cannot save Basic dialogs to a text file."
-msgstr ""
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3149403\n"
-"17\n"
-"help.text"
-msgid "Saving Source Code to a Text File"
-msgstr ""
+msgid "Print \"Number from 6 to 8\""
+msgstr "Nga kreu në fund"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3150327\n"
+"03090102.xhp\n"
+"par_id3152886\n"
"18\n"
"help.text"
-msgid "Select the module that you want to export as text from the object catalog."
-msgstr ""
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3150752\n"
-"19\n"
-"help.text"
-msgid "Click the <emph>Save Source As</emph> icon in the Macro toolbar."
-msgstr ""
+msgid "Print \"Greater than 8\""
+msgstr "Është më e madhe se"
-#: 01030200.xhp
+#: 03090102.xhp
msgctxt ""
-"01030200.xhp\n"
-"par_id3154754\n"
+"03090102.xhp\n"
+"par_id3146975\n"
"20\n"
"help.text"
-msgid "Select a file name and click <emph>OK</emph> to save the file."
-msgstr ""
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"hd_id3159264\n"
-"21\n"
-"help.text"
-msgid "Loading Source Code From a Text File"
-msgstr ""
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3147343\n"
-"22\n"
-"help.text"
-msgid "Select the module where you want to import the source code from the object catalog."
-msgstr ""
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3145230\n"
-"23\n"
-"help.text"
-msgid "Position the cursor where you want to insert the program code."
-msgstr ""
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3149565\n"
-"24\n"
-"help.text"
-msgid "Click the <emph>Insert Source Text</emph> icon in the Macro toolbar."
-msgstr ""
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3154020\n"
-"33\n"
-"help.text"
-msgid "Select the text file containing the source code and click <emph>OK</emph>."
-msgstr ""
-
-#: 01030200.xhp
-msgctxt ""
-"01030200.xhp\n"
-"par_id3153198\n"
-"29\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
-msgstr ""
+msgid "Print \"Out of range 1 to 10\""
+msgstr "Nga kreu në fund"
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
+"03090103.xhp\n"
"tit\n"
"help.text"
-msgid "DefVar Statement [Runtime]"
+msgid "IIf Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"bm_id3143267\n"
+"03090103.xhp\n"
+"bm_id3155420\n"
"help.text"
-msgid "<bookmark_value>DefVar statement</bookmark_value>"
+msgid "<bookmark_value>IIf statement</bookmark_value>"
msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"hd_id3143267\n"
+"03090103.xhp\n"
+"hd_id3155420\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"DefVar Statement [Runtime]\">DefVar Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Statement [Runtime]\">IIf Statement [Runtime]</link>"
msgstr ""
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3153825\n"
+"03090103.xhp\n"
+"par_id3145610\n"
"2\n"
"help.text"
-msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgid "Returns one of two possible function results, depending on the logical value of the evaluated expression."
msgstr ""
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"hd_id3154143\n"
+"03090103.xhp\n"
+"hd_id3159413\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3149514\n"
+"03090103.xhp\n"
+"par_id3147560\n"
"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgid "IIf (Expression, ExpressionTrue, ExpressionFalse)"
msgstr ""
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"hd_id3156024\n"
+"03090103.xhp\n"
+"hd_id3150541\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3147560\n"
+"03090103.xhp\n"
+"par_id3153381\n"
"6\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgid "<emph>Expression:</emph> Any expression that you want to evaluate. If the expression evaluates to <emph>True</emph>, the function returns the result of ExpressionTrue, otherwise it returns the result of ExpressionFalse."
msgstr ""
-#: 03102000.xhp
+#: 03090103.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3148552\n"
+"03090103.xhp\n"
+"par_id3150870\n"
"7\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgid "<emph>ExpressionTrue, ExpressionFalse:</emph> Any expression, one of which will be returned as the function result, depending on the logical evaluation."
msgstr ""
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3153524\n"
-"8\n"
-"help.text"
-msgid "<emph>Keyword: </emph>Default variable type"
-msgstr "**Ndryshorja nuk u gjet**"
-
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"par_id3150767\n"
-"9\n"
-"help.text"
-msgid "<emph>DefVar:</emph> Variant"
-msgstr "variant-formulari kanji (itaiji)"
-
-#: 03102000.xhp
-msgctxt ""
-"03102000.xhp\n"
-"hd_id3151041\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03102000.xhp
+#: 03090200.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3156214\n"
-"11\n"
+"03090200.xhp\n"
+"tit\n"
"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr ""
+msgid "Loops"
+msgstr "Loop de Loop"
-#: 03102000.xhp
+#: 03090200.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3154012\n"
-"21\n"
+"03090200.xhp\n"
+"hd_id3153990\n"
+"1\n"
"help.text"
-msgid "vDiv=99 ' vDiv is an implicit variant"
+msgid "<link href=\"text/sbasic/shared/03090200.xhp\" name=\"Loops\">Loops</link>"
msgstr ""
-#: 03102000.xhp
+#: 03090200.xhp
msgctxt ""
-"03102000.xhp\n"
-"par_id3146121\n"
-"22\n"
+"03090200.xhp\n"
+"par_id3147226\n"
+"2\n"
"help.text"
-msgid "vDiv=\"Hello world\""
+msgid "The following statements execute loops."
msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
+"03090201.xhp\n"
"tit\n"
"help.text"
-msgid "Information"
-msgstr "Informacion"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"hd_id3148550\n"
-"1\n"
-"help.text"
-msgid "Information"
-msgstr "Informacion"
+msgid "Do...Loop Statement [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153381\n"
-"102\n"
+"03090201.xhp\n"
+"bm_id3156116\n"
"help.text"
-msgid "You can set the locale used for controlling the formatting numbers, dates and currencies in $[officename] Basic in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>. In Basic format codes, the decimal point (<emph>.</emph>) is always used as <emph>placeholder</emph> for the decimal separator defined in your locale and will be replaced by the corresponding character."
+msgid "<bookmark_value>Do...Loop statement</bookmark_value><bookmark_value>While; Do loop</bookmark_value><bookmark_value>Until</bookmark_value><bookmark_value>loops</bookmark_value>"
msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150870\n"
-"103\n"
+"03090201.xhp\n"
+"hd_id3156116\n"
+"1\n"
"help.text"
-msgid "The same applies to the locale settings for date, time and currency formats. The Basic format code will be interpreted and displayed according to your locale setting."
+msgid "<link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop Statement [Runtime]\">Do...Loop Statement [Runtime]</link>"
msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3156424\n"
+"03090201.xhp\n"
+"par_id3109850\n"
"2\n"
"help.text"
-msgid "The color values of the 16 basic colors are as follows:"
+msgid "Repeats the statements between the Do and the Loop statement while the condition is True or until the condition becomes True."
msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153091\n"
+"03090201.xhp\n"
+"hd_id3149119\n"
"3\n"
"help.text"
-msgid "<emph>Color Value</emph>"
-msgstr "Vlerë në zvoglim e kryerreshtit"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154319\n"
+"03090201.xhp\n"
+"par_id3155150\n"
"4\n"
"help.text"
-msgid "<emph>Color Name</emph>"
-msgstr "Emri i skemës së ngjyrës"
+msgid "Do [{While | Until} condition = True]"
+msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3151112\n"
+"03090201.xhp\n"
+"par_id3154422\n"
"5\n"
"help.text"
-msgid "0"
-msgstr "Titullimi 10"
+msgid "statement block"
+msgstr "Shigjetat e bllokut"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3155854\n"
+"03090201.xhp\n"
+"par_id3150789\n"
"6\n"
"help.text"
-msgid "Black"
-msgstr "Zi"
+msgid "[Exit Do]"
+msgstr "Teposhtë"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154942\n"
+"03090201.xhp\n"
+"par_id3155805\n"
"7\n"
"help.text"
-msgid "128"
-msgstr ""
+msgid "statement block"
+msgstr "Shigjetat e bllokut"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154731\n"
+"03090201.xhp\n"
+"par_id3145090\n"
"8\n"
"help.text"
-msgid "Blue"
-msgstr "Kaltër"
+msgid "Loop"
+msgstr "Loop de Loop"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145645\n"
+"03090201.xhp\n"
+"par_id3154749\n"
"9\n"
"help.text"
-msgid "32768"
-msgstr ""
+msgid "or"
+msgstr "ose"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149400\n"
+"03090201.xhp\n"
+"par_id3150503\n"
"10\n"
"help.text"
-msgid "Green"
-msgstr "Gjelbërt"
+msgid "Do"
+msgstr "Teposhtë"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150753\n"
+"03090201.xhp\n"
+"par_id3149762\n"
"11\n"
"help.text"
-msgid "32896"
-msgstr ""
+msgid "statement block"
+msgstr "Shigjetat e bllokut"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153765\n"
+"03090201.xhp\n"
+"par_id3150984\n"
"12\n"
"help.text"
-msgid "Cyan"
-msgstr "Cian"
+msgid "[Exit Do]"
+msgstr "Teposhtë"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154756\n"
+"03090201.xhp\n"
+"par_id3143228\n"
"13\n"
"help.text"
-msgid "8388608"
-msgstr ""
+msgid "statement block"
+msgstr "Shigjetat e bllokut"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3159266\n"
+"03090201.xhp\n"
+"par_id3149235\n"
"14\n"
"help.text"
-msgid "Red"
-msgstr "Kuq"
+msgid "Loop [{While | Until} condition = True]"
+msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3163807\n"
+"03090201.xhp\n"
+"hd_id3156024\n"
"15\n"
"help.text"
-msgid "8388736"
-msgstr ""
+msgid "Parameters/Elements"
+msgstr "Elementet e adresës"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145150\n"
+"03090201.xhp\n"
+"par_id3156344\n"
"16\n"
"help.text"
-msgid "Magenta"
-msgstr "Magjenta"
+msgid "<emph>Condition:</emph> A comparison, numeric or string expression, that evaluates either True or False."
+msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3147002\n"
+"03090201.xhp\n"
+"par_id3149669\n"
"17\n"
"help.text"
-msgid "8421376"
+msgid "<emph>Statement block:</emph> Statements that you want to repeat while or until the condition is True."
msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3152778\n"
+"03090201.xhp\n"
+"par_id3150791\n"
"18\n"
"help.text"
-msgid "Yellow"
-msgstr "Verdhë"
+msgid "The <emph>Do...Loop</emph> statement executes a loop as long as, or until, a certain condition is True. The condition for exiting the loop must be entered following either the <emph>Do</emph> or the <emph>Loop</emph> statement. The following examples are valid combinations:"
+msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150088\n"
+"03090201.xhp\n"
+"hd_id3154366\n"
"19\n"
"help.text"
-msgid "8421504"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3159239\n"
+"03090201.xhp\n"
+"par_id3145171\n"
"20\n"
"help.text"
-msgid "White"
-msgstr "Bardhë"
+msgid "Do While condition = True"
+msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150206\n"
+"03090201.xhp\n"
+"par_id3149203\n"
"21\n"
"help.text"
-msgid "12632256"
-msgstr ""
+msgid "...statement block"
+msgstr "Shigjetat e bllokut"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149817\n"
+"03090201.xhp\n"
+"par_id3125864\n"
"22\n"
"help.text"
-msgid "Gray"
-msgstr "Ngjyrë hiri"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150363\n"
-"23\n"
-"help.text"
-msgid "255"
-msgstr ""
+msgid "Loop"
+msgstr "Loop de Loop"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154576\n"
+"03090201.xhp\n"
+"par_id3154124\n"
"24\n"
"help.text"
-msgid "Light blue"
-msgstr "Kaltërt e çiltër"
+msgid "The statement block between the Do While and the Loop statements is repeated so long as the condition is true."
+msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150367\n"
+"03090201.xhp\n"
+"par_id3153968\n"
"25\n"
"help.text"
-msgid "65280"
+msgid "Do Until condition = True"
msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150202\n"
+"03090201.xhp\n"
+"par_id3154909\n"
"26\n"
"help.text"
-msgid "Light green"
-msgstr "Gjelbërt e çiltërt"
+msgid "...statement block"
+msgstr "Shigjetat e bllokut"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154487\n"
+"03090201.xhp\n"
+"par_id3159151\n"
"27\n"
"help.text"
-msgid "65535"
-msgstr ""
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151332\n"
-"28\n"
-"help.text"
-msgid "Light cyan"
-msgstr "Cian e çiltërt"
+msgid "Loop"
+msgstr "Loop de Loop"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148702\n"
+"03090201.xhp\n"
+"par_id3150440\n"
"29\n"
"help.text"
-msgid "16711680"
+msgid "The statement block between the Do Until and the Loop statements is repeated if the condition so long as the condition is false."
msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153067\n"
+"03090201.xhp\n"
+"par_id3153952\n"
"30\n"
"help.text"
-msgid "Light red"
-msgstr "Kuqe e çiltër"
+msgid "Do"
+msgstr "Teposhtë"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153912\n"
+"03090201.xhp\n"
+"par_id3147349\n"
"31\n"
"help.text"
-msgid "16711935"
-msgstr ""
+msgid "...statement block"
+msgstr "Shigjetat e bllokut"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3159097\n"
+"03090201.xhp\n"
+"par_id3159153\n"
"32\n"
"help.text"
-msgid "Light magenta"
-msgstr "Magjenta e çiltërt"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3155266\n"
-"33\n"
-"help.text"
-msgid "16776960"
+msgid "Loop While condition = True"
msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3157978\n"
+"03090201.xhp\n"
+"par_id3146985\n"
"34\n"
"help.text"
-msgid "Light yellow"
-msgstr "Hiri e çiltër"
+msgid "The statement block between the Do and the Loop statements repeats so long as the condition is true."
+msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153286\n"
+"03090201.xhp\n"
+"par_id3150488\n"
"35\n"
"help.text"
-msgid "16777215"
-msgstr ""
+msgid "Do"
+msgstr "Teposhtë"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3151302\n"
+"03090201.xhp\n"
+"par_id3153189\n"
"36\n"
"help.text"
-msgid "Transparent white"
-msgstr "Bardh e Zi"
+msgid "...statement block"
+msgstr "Shigjetat e bllokut"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"hd_id3152869\n"
+"03090201.xhp\n"
+"par_id3155411\n"
"37\n"
"help.text"
-msgid "<variable id=\"errorcode\">Error Codes</variable>"
-msgstr ""
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id315509599\n"
-"help.text"
-msgid "<variable id=\"err1\">1 An exception occurred</variable>"
-msgstr ""
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3155095\n"
-"38\n"
-"help.text"
-msgid "<variable id=\"err2\">2 Syntax error</variable>"
+msgid "Loop Until condition = True"
msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149126\n"
+"03090201.xhp\n"
+"par_id3151117\n"
"39\n"
"help.text"
-msgid "<variable id=\"err3\">3 Return without Gosub</variable>"
-msgstr ""
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153976\n"
-"40\n"
-"help.text"
-msgid "<variable id=\"err4\">4 Incorrect entry; please retry</variable>"
+msgid "The statement block between the Do and the Loop statements repeats until the condition is true."
msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150891\n"
+"03090201.xhp\n"
+"par_id3149484\n"
"41\n"
"help.text"
-msgid "<variable id=\"err5\">5 Invalid procedure call</variable>"
+msgid "Use the <emph>Exit Do</emph> statement to unconditionally end the loop. You can add this statement anywhere in a <emph>Do</emph>...<emph>Loop</emph> statement. You can also define an exit condition using the <emph>If...Then</emph> structure as follows:"
msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3159227\n"
+"03090201.xhp\n"
+"par_id3149262\n"
"42\n"
"help.text"
-msgid "<variable id=\"err6\">6 Overflow</variable>"
-msgstr ""
+msgid "Do..."
+msgstr "Teposhtë"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154649\n"
+"03090201.xhp\n"
+"par_id3149298\n"
"43\n"
"help.text"
-msgid "<variable id=\"err7\">7 Not enough memory</variable>"
-msgstr ""
+msgid "statements"
+msgstr "DDE Deklaratë"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150050\n"
+"03090201.xhp\n"
+"par_id3145646\n"
"44\n"
"help.text"
-msgid "<variable id=\"err8\">8 Array already dimensioned</variable>"
+msgid "If condition = True Then Exit Do"
msgstr ""
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148900\n"
+"03090201.xhp\n"
+"par_id3154490\n"
"45\n"
"help.text"
-msgid "<variable id=\"err9\">9 Index out of defined range</variable>"
-msgstr ""
+msgid "statements"
+msgstr "DDE Deklaratë"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153806\n"
+"03090201.xhp\n"
+"par_id3153159\n"
"46\n"
"help.text"
-msgid "<variable id=\"err10\">10 Duplicate definition</variable>"
-msgstr ""
+msgid "Loop..."
+msgstr "Loop de Loop"
-#: 00000003.xhp
+#: 03090201.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146963\n"
+"03090201.xhp\n"
+"hd_id3147396\n"
"47\n"
"help.text"
-msgid "<variable id=\"err11\">11 Division by zero</variable>"
-msgstr ""
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3153013\n"
-"48\n"
-"help.text"
-msgid "<variable id=\"err12\">12 Variable not defined</variable>"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3155593\n"
-"49\n"
-"help.text"
-msgid "<variable id=\"err13\">13 Data type mismatch</variable>"
-msgstr ""
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151197\n"
-"50\n"
-"help.text"
-msgid "<variable id=\"err14\">14 Invalid parameter</variable>"
-msgstr ""
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3154710\n"
-"51\n"
-"help.text"
-msgid "<variable id=\"err18\">18 Process interrupted by user</variable>"
-msgstr ""
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147504\n"
-"52\n"
-"help.text"
-msgid "<variable id=\"err20\">20 Resume without error</variable>"
-msgstr ""
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3145319\n"
-"53\n"
-"help.text"
-msgid "<variable id=\"err28\">28 Not enough stack memory</variable>"
-msgstr ""
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3146110\n"
-"54\n"
-"help.text"
-msgid "<variable id=\"err35\">35 Sub-procedure or function procedure not defined</variable>"
-msgstr ""
-
-#: 00000003.xhp
-msgctxt ""
-"00000003.xhp\n"
-"par_id3147246\n"
-"55\n"
-"help.text"
-msgid "<variable id=\"err48\">48 Error loading DLL file</variable>"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146101\n"
-"56\n"
+"03090202.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"err49\">49 Wrong DLL call convention</variable>"
-msgstr ""
+msgid "For...Next Statement [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153957\n"
-"57\n"
+"03090202.xhp\n"
+"bm_id3149205\n"
"help.text"
-msgid "<variable id=\"err51\">51 Internal error</variable>"
+msgid "<bookmark_value>For statement</bookmark_value><bookmark_value>To statement</bookmark_value><bookmark_value>Step statement</bookmark_value><bookmark_value>Next statement</bookmark_value>"
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154404\n"
-"58\n"
+"03090202.xhp\n"
+"hd_id3149205\n"
+"1\n"
"help.text"
-msgid "<variable id=\"err52\">52 Invalid file name or file number</variable>"
+msgid "<link href=\"text/sbasic/shared/03090202.xhp\" name=\"For...Next Statement [Runtime]\">For...Next Statement [Runtime]</link>"
msgstr ""
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3151338\n"
-"59\n"
-"help.text"
-msgid "<variable id=\"err53\">53 File not found</variable>"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
-
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3147298\n"
-"60\n"
+"03090202.xhp\n"
+"par_id3143267\n"
+"2\n"
"help.text"
-msgid "<variable id=\"err54\">54 Incorrect file mode</variable>"
+msgid "Repeats the statements between the For...Next block a specified number of times."
msgstr ""
-#: 00000003.xhp
-#, fuzzy
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148747\n"
-"61\n"
+"03090202.xhp\n"
+"hd_id3156153\n"
+"3\n"
"help.text"
-msgid "<variable id=\"err55\">55 File already open</variable>"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145233\n"
-"62\n"
+"03090202.xhp\n"
+"par_id3148473\n"
+"4\n"
"help.text"
-msgid "<variable id=\"err57\">57 Device I/O error</variable>"
+msgid "For counter=start To end [Step step]"
msgstr ""
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3156399\n"
-"63\n"
-"help.text"
-msgid "<variable id=\"err58\">58 File already exists</variable>"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
-
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149324\n"
-"64\n"
+"03090202.xhp\n"
+"par_id3156024\n"
+"5\n"
"help.text"
-msgid "<variable id=\"err59\">59 Incorrect record length</variable>"
-msgstr ""
+msgid "statement block"
+msgstr "Shigjetat e bllokut"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3147409\n"
-"65\n"
+"03090202.xhp\n"
+"par_id3146796\n"
+"6\n"
"help.text"
-msgid "<variable id=\"err61\">61 Disk or hard drive full</variable>"
-msgstr ""
+msgid "[Exit For]"
+msgstr "Cakto drejtimin e daljes për %O"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149146\n"
-"66\n"
+"03090202.xhp\n"
+"par_id3159414\n"
+"7\n"
"help.text"
-msgid "<variable id=\"err62\">62 Reading exceeds EOF</variable>"
-msgstr ""
+msgid "statement block"
+msgstr "Shigjetat e bllokut"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150456\n"
-"67\n"
+"03090202.xhp\n"
+"par_id3153897\n"
+"8\n"
"help.text"
-msgid "<variable id=\"err63\">63 Incorrect record number</variable>"
-msgstr ""
+msgid "Next [counter]"
+msgstr "Faqja tjetër"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146883\n"
-"68\n"
+"03090202.xhp\n"
+"hd_id3150400\n"
+"9\n"
"help.text"
-msgid "<variable id=\"err67\">67 Too many files</variable>"
-msgstr ""
+msgid "Variables:"
+msgstr "Variablat"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146818\n"
-"69\n"
+"03090202.xhp\n"
+"par_id3150358\n"
+"10\n"
"help.text"
-msgid "<variable id=\"err68\">68 Device not available</variable>"
+msgid "<emph>Counter:</emph> Loop counter initially assigned the value to the right of the equal sign (start). Only numeric variables are valid. The loop counter increases or decreases according to the variable Step until End is passed."
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145225\n"
-"70\n"
+"03090202.xhp\n"
+"par_id3152455\n"
+"11\n"
"help.text"
-msgid "<variable id=\"err70\">70 Access denied</variable>"
+msgid "<emph>Start:</emph> Numeric variable that defines the initial value at the beginning of the loop."
msgstr ""
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150372\n"
-"71\n"
-"help.text"
-msgid "<variable id=\"err71\">71 Disk not ready</variable>"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
-
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148894\n"
-"72\n"
+"03090202.xhp\n"
+"par_id3151043\n"
+"12\n"
"help.text"
-msgid "<variable id=\"err73\">73 Not implemented</variable>"
+msgid "<emph>End:</emph> Numeric variable that defines the final value at the end of the loop."
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3152981\n"
-"73\n"
+"03090202.xhp\n"
+"par_id3156281\n"
+"13\n"
"help.text"
-msgid "<variable id=\"err74\">74 Renaming on different drives impossible</variable>"
+msgid "<emph>Step:</emph> Sets the value by which to increase or decrease the loop counter. If Step is not specified, the loop counter is incremented by 1. In this case, End must be greater than Start. If you want to decrease Counter, End must be less than Start, and Step must be assigned a negative value."
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149355\n"
-"74\n"
+"03090202.xhp\n"
+"par_id3154684\n"
+"14\n"
"help.text"
-msgid "<variable id=\"err75\">75 Path/file access error</variable>"
+msgid "The <emph>For...Next</emph> loop repeats all of the statements in the loop for the number of times that is specified by the parameters."
msgstr ""
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id3150477\n"
-"75\n"
-"help.text"
-msgid "<variable id=\"err76\">76 Path not found</variable>"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
-
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154678\n"
-"76\n"
+"03090202.xhp\n"
+"par_id3147287\n"
+"15\n"
"help.text"
-msgid "<variable id=\"err91\">91 Object variable not set</variable>"
+msgid "As the counter variable is decreased, $[officename] Basic checks if the end value has been reached. As soon as the counter passes the end value, the loop automatically ends."
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149890\n"
-"77\n"
+"03090202.xhp\n"
+"par_id3159154\n"
+"16\n"
"help.text"
-msgid "<variable id=\"err93\">93 Invalid string pattern</variable>"
+msgid "It is possible to nest <emph>For...Next</emph> statements. If you do not specify a variable following the <emph>Next</emph> statement, <emph>Next</emph> automatically refers to the most recent <emph>For</emph> statement."
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146942\n"
-"78\n"
+"03090202.xhp\n"
+"par_id3155306\n"
+"17\n"
"help.text"
-msgid "<variable id=\"err94\">94 Use of zero not permitted</variable>"
+msgid "If you specify an increment of 0, the statements between <emph>For</emph> and <emph>Next</emph> are repeated continuously."
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469429\n"
+"03090202.xhp\n"
+"par_id3155854\n"
+"18\n"
"help.text"
-msgid "<variable id=\"err250\">250 DDE Error</variable>"
+msgid "When counting down the counter variable, $[officename] Basic checks for overflow or underflow. The loop ends when Counter exceeds End (positive Step value) or is less than End (negative Step value)."
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469428\n"
+"03090202.xhp\n"
+"par_id3145273\n"
+"19\n"
"help.text"
-msgid "<variable id=\"err280\">280 Awaiting response to DDE connection</variable>"
+msgid "Use the <emph>Exit For</emph> statement to exit the loop unconditionally. This statement must be within a <emph>For...Next</emph> loop. Use the <emph>If...Then</emph> statement to test the exit condition as follows:"
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469427\n"
+"03090202.xhp\n"
+"par_id3153190\n"
+"20\n"
"help.text"
-msgid "<variable id=\"err281\">281 No DDE channels available</variable>"
-msgstr ""
+msgid "For..."
+msgstr "për"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469426\n"
+"03090202.xhp\n"
+"par_id3149482\n"
+"21\n"
"help.text"
-msgid "<variable id=\"err282\">282 No application responded to DDE connect initiation</variable>"
-msgstr ""
+msgid "statements"
+msgstr "DDE Deklaratë"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469425\n"
+"03090202.xhp\n"
+"par_id3147124\n"
+"22\n"
"help.text"
-msgid "<variable id=\"err283\">283 Too many applications responded to DDE connect initiation</variable>"
+msgid "If condition = True Then Exit For"
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469424\n"
+"03090202.xhp\n"
+"par_id3153159\n"
+"23\n"
"help.text"
-msgid "<variable id=\"err284\">284 DDE channel locked</variable>"
-msgstr ""
+msgid "statements"
+msgstr "DDE Deklaratë"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469423\n"
+"03090202.xhp\n"
+"par_id3154096\n"
+"24\n"
"help.text"
-msgid "<variable id=\"err285\">285 External application cannot execute DDE operation</variable>"
-msgstr ""
+msgid "Next"
+msgstr "I ardhshmi"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469422\n"
+"03090202.xhp\n"
+"par_id3156286\n"
+"25\n"
"help.text"
-msgid "<variable id=\"err286\">286 Timeout while waiting for DDE response</variable>"
+msgid "Note: In nested <emph>For...Next</emph> loops, if you exit a loop unconditionally with <emph>Exit For</emph>, only one loop is exited."
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469421\n"
+"03090202.xhp\n"
+"hd_id3148457\n"
+"26\n"
"help.text"
-msgid "<variable id=\"err287\">287 user pressed ESCAPE during DDE operation</variable>"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469420\n"
+"03090202.xhp\n"
+"par_id3151074\n"
+"27\n"
"help.text"
-msgid "<variable id=\"err288\">288 External application busy</variable>"
+msgid "The following example uses two nested loops to sort a string array with 10 elements ( sEntry() ), that are first filled with various contents:"
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469419\n"
+"03090202.xhp\n"
+"par_id3155767\n"
+"42\n"
"help.text"
-msgid "<variable id=\"err289\">289 DDE operation without data</variable>"
+msgid "sEntry(0) = \"Jerry\""
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469418\n"
+"03090202.xhp\n"
+"par_id3153711\n"
+"33\n"
"help.text"
-msgid "<variable id=\"err290\">290 Data are in wrong format</variable>"
+msgid "sEntry(1) = \"Patty\""
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469417\n"
+"03090202.xhp\n"
+"par_id3148993\n"
+"34\n"
"help.text"
-msgid "<variable id=\"err291\">291 External application has been terminated</variable>"
+msgid "sEntry(2) = \"Kurt\""
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469416\n"
+"03090202.xhp\n"
+"par_id3156382\n"
+"35\n"
"help.text"
-msgid "<variable id=\"err292\">292 DDE connection interrupted or modified</variable>"
-msgstr ""
+msgid "sEntry(3) = \"Thomas\""
+msgstr "St_Thomas"
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469415\n"
+"03090202.xhp\n"
+"par_id3155174\n"
+"36\n"
"help.text"
-msgid "<variable id=\"err293\">293 DDE method invoked with no channel open</variable>"
+msgid "sEntry(4) = \"Michael\""
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469414\n"
+"03090202.xhp\n"
+"par_id3166448\n"
+"37\n"
"help.text"
-msgid "<variable id=\"err294\">294 Invalid DDE link format</variable>"
+msgid "sEntry(5) = \"David\""
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469413\n"
+"03090202.xhp\n"
+"par_id3149255\n"
+"38\n"
"help.text"
-msgid "<variable id=\"err295\">295 DDE message has been lost</variable>"
+msgid "sEntry(6) = \"Cathy\""
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469412\n"
+"03090202.xhp\n"
+"par_id3149565\n"
+"39\n"
"help.text"
-msgid "<variable id=\"err296\">296 Paste link already performed</variable>"
+msgid "sEntry(7) = \"Susie\""
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469411\n"
+"03090202.xhp\n"
+"par_id3145148\n"
+"40\n"
"help.text"
-msgid "<variable id=\"err297\">297 Link mode cannot be set due to invalid link topic</variable>"
+msgid "sEntry(8) = \"Edward\""
msgstr ""
-#: 00000003.xhp
+#: 03090202.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31469410\n"
+"03090202.xhp\n"
+"par_id3145229\n"
+"41\n"
"help.text"
-msgid "<variable id=\"err298\">298 DDE requires the DDEML.DLL file</variable>"
+msgid "sEntry(9) = \"Christine\""
msgstr ""
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150028\n"
-"79\n"
+"03090203.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"err323\">323 Module cannot be loaded; invalid format</variable>"
+msgid "While...Wend Statement[Runtime]"
msgstr ""
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148434\n"
-"80\n"
+"03090203.xhp\n"
+"bm_id3150400\n"
"help.text"
-msgid "<variable id=\"err341\">341 Invalid object index</variable>"
+msgid "<bookmark_value>While;While...Wend loop</bookmark_value>"
msgstr ""
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3143219\n"
-"81\n"
+"03090203.xhp\n"
+"hd_id3150400\n"
+"1\n"
"help.text"
-msgid "<variable id=\"err366\">366 Object is not available</variable>"
+msgid "<link href=\"text/sbasic/shared/03090203.xhp\" name=\"While...Wend Statement[Runtime]\">While...Wend Statement[Runtime]</link>"
msgstr ""
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3144744\n"
-"82\n"
+"03090203.xhp\n"
+"par_id3151211\n"
+"2\n"
"help.text"
-msgid "<variable id=\"err380\">380 Incorrect property value</variable>"
+msgid "When a program encounters a While statement, it tests the condition. If the condition is False, the program continues directly following the Wend statement. If the condition is True, the loop is executed until the program finds Wend and then jumps back to the<emph> While </emph>statement. If the condition is still True, the loop is executed again."
msgstr ""
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3147420\n"
-"83\n"
+"03090203.xhp\n"
+"par_id3151041\n"
+"3\n"
"help.text"
-msgid "<variable id=\"err382\">382 This property is read-only</variable>"
+msgid "Unlike the <link href=\"text/sbasic/shared/03090201.xhp\" name=\"Do...Loop\">Do...Loop</link> statement, you cannot cancel a <emph>While...Wend</emph> loop with <link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit\">Exit</link>. Never exit a While...Wend loop with <link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo\">GoTo</link>, since this can cause a run-time error."
msgstr ""
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3147472\n"
-"84\n"
+"03090203.xhp\n"
+"par_id3145172\n"
+"4\n"
"help.text"
-msgid "<variable id=\"err394\">394 This property is write-only</variable>"
+msgid "A Do...Loop is more flexible than a While...Wend."
msgstr ""
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148583\n"
-"85\n"
+"03090203.xhp\n"
+"hd_id3155133\n"
+"5\n"
"help.text"
-msgid "<variable id=\"err420\">420 Invalid object reference</variable>"
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3153329\n"
-"86\n"
+"03090203.xhp\n"
+"par_id3147288\n"
+"6\n"
"help.text"
-msgid "<variable id=\"err423\">423 Property or method not found</variable>"
+msgid "While Condition [Statement] Wend"
msgstr ""
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3148738\n"
-"87\n"
+"03090203.xhp\n"
+"hd_id3153139\n"
+"7\n"
"help.text"
-msgid "<variable id=\"err424\">424 Object required</variable>"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3159084\n"
-"88\n"
+"03090203.xhp\n"
+"par_id3159153\n"
+"8\n"
"help.text"
-msgid "<variable id=\"err425\">425 Invalid use of an object</variable>"
-msgstr ""
+msgid "Sub ExampleWhileWend"
+msgstr "Nën~totalet..."
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146806\n"
-"89\n"
+"03090203.xhp\n"
+"par_id3151114\n"
+"9\n"
"help.text"
-msgid "<variable id=\"err430\">430 OLE Automation is not supported by this object</variable>"
-msgstr ""
+msgid "Dim stext As String"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146130\n"
-"90\n"
+"03090203.xhp\n"
+"par_id3153143\n"
+"10\n"
"help.text"
-msgid "<variable id=\"err438\">438 This property or method is not supported by the object</variable>"
-msgstr ""
+msgid "Dim iRun As Integer"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154374\n"
-"91\n"
+"03090203.xhp\n"
+"par_id3155306\n"
+"11\n"
"help.text"
-msgid "<variable id=\"err440\">440 OLE automation error</variable>"
+msgid "sText =\"This Is a short text\""
msgstr ""
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149685\n"
-"92\n"
+"03090203.xhp\n"
+"par_id3154011\n"
+"12\n"
"help.text"
-msgid "<variable id=\"err445\">445 This action is not supported by given object</variable>"
+msgid "iRun = 1"
msgstr ""
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150282\n"
-"93\n"
+"03090203.xhp\n"
+"par_id3147215\n"
+"13\n"
"help.text"
-msgid "<variable id=\"err446\">446 Named arguments are not supported by given object</variable>"
+msgid "While iRun < Len(sText)"
msgstr ""
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3150142\n"
-"94\n"
+"03090203.xhp\n"
+"par_id3147427\n"
+"14\n"
"help.text"
-msgid "<variable id=\"err447\">447 The current locale setting is not supported by the given object</variable>"
+msgid "If Mid(sText,iRun,1 )<> \" \" Then Mid( sText ,iRun, 1, Chr( 1 + Asc( Mid(sText,iRun,1 )) )"
msgstr ""
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3152771\n"
-"95\n"
+"03090203.xhp\n"
+"par_id3149665\n"
+"15\n"
"help.text"
-msgid "<variable id=\"err448\">448 Named argument not found</variable>"
+msgid "iRun = iRun + 1"
msgstr ""
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145145\n"
-"96\n"
+"03090203.xhp\n"
+"par_id3152939\n"
+"16\n"
"help.text"
-msgid "<variable id=\"err449\">449 Argument is not optional</variable>"
-msgstr ""
+msgid "Wend"
+msgstr "fund"
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154399\n"
-"97\n"
+"03090203.xhp\n"
+"par_id3153189\n"
+"17\n"
"help.text"
-msgid "<variable id=\"err450\">450 Invalid number of arguments</variable>"
+msgid "MsgBox sText,0,\"Text encoded\""
msgstr ""
-#: 00000003.xhp
+#: 03090203.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3146137\n"
-"98\n"
+"03090203.xhp\n"
+"par_id3145251\n"
+"18\n"
"help.text"
-msgid "<variable id=\"err451\">451 Object is not a list</variable>"
-msgstr ""
+msgid "End Sub"
+msgstr "Nën~totalet..."
-#: 00000003.xhp
+#: 03090300.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3149507\n"
-"99\n"
+"03090300.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"err452\">452 Invalid ordinal number</variable>"
+msgid "Jumps"
msgstr ""
-#: 00000003.xhp
+#: 03090300.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3154566\n"
-"100\n"
+"03090300.xhp\n"
+"hd_id3151262\n"
+"1\n"
"help.text"
-msgid "<variable id=\"err453\">453 Specified DLL function not found</variable>"
+msgid "<link href=\"text/sbasic/shared/03090300.xhp\" name=\"Jumps\">Jumps</link>"
msgstr ""
-#: 00000003.xhp
+#: 03090300.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id3145595\n"
-"101\n"
+"03090300.xhp\n"
+"par_id3148983\n"
+"2\n"
"help.text"
-msgid "<variable id=\"err460\">460 Invalid clipboard format</variable>"
+msgid "The following statements execute jumps."
msgstr ""
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455951\n"
-"help.text"
-msgid "<variable id=\"err951\">951 Unexpected symbol:</variable>"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455952\n"
-"help.text"
-msgid "<variable id=\"err952\">952 Expected:</variable>"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455953\n"
-"help.text"
-msgid "<variable id=\"err953\">953 Symbol expected</variable>"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455954\n"
-"help.text"
-msgid "<variable id=\"err954\">954 Variable expected</variable>"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455955\n"
-"help.text"
-msgid "<variable id=\"err955\">955 Label expected</variable>"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
-
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455956\n"
+"03090301.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"err956\">956 Value cannot be applied</variable>"
+msgid "GoSub...Return Statement [Runtime]"
msgstr ""
-#: 00000003.xhp
-#, fuzzy
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455957\n"
+"03090301.xhp\n"
+"bm_id3147242\n"
"help.text"
-msgid "<variable id=\"err957\">957 Variable already defined</variable>"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
+msgid "<bookmark_value>GoSub...Return statement</bookmark_value>"
+msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455958\n"
+"03090301.xhp\n"
+"hd_id3147242\n"
+"1\n"
"help.text"
-msgid "<variable id=\"err958\">958 Sub procedure or function procedure already defined</variable>"
+msgid "<link href=\"text/sbasic/shared/03090301.xhp\" name=\"GoSub...Return Statement [Runtime]\">GoSub...Return Statement [Runtime]</link>"
msgstr ""
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455959\n"
-"help.text"
-msgid "<variable id=\"err959\">959 Label already defined</variable>"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455960\n"
-"help.text"
-msgid "<variable id=\"err960\">960 Variable not found</variable>"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455961\n"
-"help.text"
-msgid "<variable id=\"err961\">961 Array or procedure not found</variable>"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455962\n"
-"help.text"
-msgid "<variable id=\"err962\">962 Procedure not found</variable>"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
-
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455963\n"
-"help.text"
-msgid "<variable id=\"err963\">963 Label undefined</variable>"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
-
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455964\n"
+"03090301.xhp\n"
+"par_id3145316\n"
+"2\n"
"help.text"
-msgid "<variable id=\"err964\">964 Unknown data type</variable>"
+msgid "Calls a subroutine that is indicated by a label from a subroutine or a function. The statements following the label are executed until the next Return statement. Afterwards, the program continues with the statement that follows the <emph>GoSub </emph>statement."
msgstr ""
-#: 00000003.xhp
-#, fuzzy
-msgctxt ""
-"00000003.xhp\n"
-"par_id31455965\n"
-"help.text"
-msgid "<variable id=\"err965\">965 Exit expected</variable>"
-msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
-
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455966\n"
+"03090301.xhp\n"
+"hd_id3145609\n"
+"3\n"
"help.text"
-msgid "<variable id=\"err966\">966 Statement block still open: missing</variable>"
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455967\n"
+"03090301.xhp\n"
+"par_id3145069\n"
+"4\n"
"help.text"
-msgid "<variable id=\"err967\">967 Parentheses do not match</variable>"
-msgstr ""
+msgid "see Parameters"
+msgstr "Parametrat animues"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455968\n"
+"03090301.xhp\n"
+"hd_id3147265\n"
+"5\n"
"help.text"
-msgid "<variable id=\"err968\">968 Symbol already defined differently</variable>"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455969\n"
+"03090301.xhp\n"
+"par_id3148664\n"
+"6\n"
"help.text"
-msgid "<variable id=\"err969\">969 Parameters do not correspond to procedure</variable>"
-msgstr ""
+msgid "Sub/Function"
+msgstr "Funksion eksponencial"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455970\n"
+"03090301.xhp\n"
+"par_id3150400\n"
+"7\n"
"help.text"
-msgid "<variable id=\"err970\">970 Invalid character in number</variable>"
-msgstr ""
+msgid "statement block"
+msgstr "Shigjetat e bllokut"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455971\n"
+"03090301.xhp\n"
+"par_id3154140\n"
+"8\n"
"help.text"
-msgid "<variable id=\"err971\">971 Array must be dimensioned</variable>"
-msgstr ""
+msgid "Label"
+msgstr "Emërtimi"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455972\n"
+"03090301.xhp\n"
+"par_id3150869\n"
+"9\n"
"help.text"
-msgid "<variable id=\"err972\">972 Else/Endif without If</variable>"
-msgstr ""
+msgid "statement block"
+msgstr "Shigjetat e bllokut"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455973\n"
+"03090301.xhp\n"
+"par_id3154909\n"
+"10\n"
"help.text"
-msgid "<variable id=\"err973\">973 not allowed within a procedure</variable>"
-msgstr ""
+msgid "GoSub Label"
+msgstr "Teksti i etiketës"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455974\n"
+"03090301.xhp\n"
+"par_id3153969\n"
+"11\n"
"help.text"
-msgid "<variable id=\"err974\">974 not allowed outside a procedure</variable>"
-msgstr ""
+msgid "Exit Sub/Function"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455975\n"
+"03090301.xhp\n"
+"par_id3154685\n"
+"12\n"
"help.text"
-msgid "<variable id=\"err975\">975 Dimension specifications do not match</variable>"
-msgstr ""
+msgid "Label:"
+msgstr "Etiketa:"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455976\n"
+"03090301.xhp\n"
+"par_id3145786\n"
+"13\n"
"help.text"
-msgid "<variable id=\"err976\">976 Unknown option:</variable>"
-msgstr ""
+msgid "statement block"
+msgstr "Shigjetat e bllokut"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455977\n"
+"03090301.xhp\n"
+"par_id3159252\n"
+"14\n"
"help.text"
-msgid "<variable id=\"err977\">977 Constant redefined</variable>"
-msgstr ""
+msgid "Return"
+msgstr "Tipi i rikthimit"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455978\n"
+"03090301.xhp\n"
+"par_id3154321\n"
+"15\n"
"help.text"
-msgid "<variable id=\"err978\">978 Program too large</variable>"
-msgstr ""
+msgid "End Sub/Function"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455979\n"
+"03090301.xhp\n"
+"par_id3147318\n"
+"16\n"
"help.text"
-msgid "<variable id=\"err979\">979 Strings or arrays not permitted</variable>"
+msgid "The <emph>GoSub</emph> statement calls a local subroutine indicated by a label from within a subroutine or a function. The name of the label must end with a colon (\":\")."
msgstr ""
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455980\n"
+"03090301.xhp\n"
+"par_id3153190\n"
+"17\n"
"help.text"
-msgid "<variable id=\"err1000\">1000 Object does not have this property</variable>"
+msgid "If the program encounters a Return statement not preceded by <emph>GoSub</emph>, $[officename] Basic returns an error message. Use <emph>Exit Sub</emph> or <emph>Exit Function</emph> to ensure that the program leaves a Sub or Function before reaching the next Return statement."
msgstr ""
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455981\n"
+"03090301.xhp\n"
+"par_id3145799\n"
+"19\n"
"help.text"
-msgid "<variable id=\"err1001\">1001 Object does not have this method</variable>"
+msgid "The following example demonstrates the use of <emph>GoSub</emph> and <emph>Return</emph>. By executing a program section twice, the program calculates the square root of two numbers that are entered by the user."
msgstr ""
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455982\n"
+"03090301.xhp\n"
+"hd_id3156284\n"
+"20\n"
"help.text"
-msgid "<variable id=\"err1002\">1002 Required argument lacking</variable>"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455983\n"
+"03090301.xhp\n"
+"par_id3146970\n"
+"25\n"
"help.text"
-msgid "<variable id=\"err1003\">1003 Invalid number of arguments</variable>"
+msgid "iInputa = Int(InputBox$ \"Enter the first number: \",\"NumberInput\"))"
msgstr ""
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455984\n"
+"03090301.xhp\n"
+"par_id3150329\n"
+"26\n"
"help.text"
-msgid "<variable id=\"err1004\">1004 Error executing a method</variable>"
+msgid "iInputb = Int(InputBox$ \"Enter the second number: \",\"NumberInput\"))"
msgstr ""
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455985\n"
+"03090301.xhp\n"
+"par_id3154756\n"
+"29\n"
"help.text"
-msgid "<variable id=\"err1005\">1005 Unable to set property</variable>"
+msgid "Print \"The square root of\";iInputa;\" is\";iInputc"
msgstr ""
-#: 00000003.xhp
+#: 03090301.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_id31455986\n"
+"03090301.xhp\n"
+"par_id3147340\n"
+"32\n"
"help.text"
-msgid "<variable id=\"err1006\">1006 Unable to determine property</variable>"
+msgid "Print \"The square root of\";iInputb;\" is\";iInputc"
msgstr ""
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
+"03090302.xhp\n"
"tit\n"
"help.text"
-msgid "Mid Function, Mid Statement [Runtime]"
+msgid "GoTo Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"bm_id3143268\n"
+"03090302.xhp\n"
+"bm_id3159413\n"
"help.text"
-msgid "<bookmark_value>Mid function</bookmark_value><bookmark_value>Mid statement</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>GoTo statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3143268\n"
+"03090302.xhp\n"
+"hd_id3159413\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Mid Function, Mid Statement [Runtime]\">Mid Function, Mid Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090302.xhp\" name=\"GoTo Statement [Runtime]\">GoTo Statement [Runtime]</link>"
msgstr ""
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3148473\n"
+"03090302.xhp\n"
+"par_id3153379\n"
"2\n"
"help.text"
-msgid "Returns the specified portion of a string expression (<emph>Mid function</emph>), or replaces the portion of a string expression with another string (<emph>Mid statement</emph>)."
+msgid "Continues program execution within a Sub or Function at the procedure line indicated by a label."
msgstr ""
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3154285\n"
+"03090302.xhp\n"
+"hd_id3149656\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3147530\n"
+"03090302.xhp\n"
+"par_id3154367\n"
"4\n"
"help.text"
-msgid "Mid (Text As String, Start As Long [, Length As Long]) or Mid (Text As String, Start As Long , Length As Long, Text As String)"
-msgstr ""
+msgid "see Parameters"
+msgstr "Parametrat animues"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3145068\n"
+"03090302.xhp\n"
+"hd_id3150870\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3149295\n"
+"03090302.xhp\n"
+"par_id3156214\n"
"6\n"
"help.text"
-msgid "String (only by Function)"
-msgstr ""
+msgid "Sub/Function"
+msgstr "Funksion eksponencial"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3154347\n"
+"03090302.xhp\n"
+"par_id3156424\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "statement block"
+msgstr "Shigjetat e bllokut"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3148664\n"
+"03090302.xhp\n"
+"par_id3154685\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to modify."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "Label1"
+msgstr "Emërtimi"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3150359\n"
+"03090302.xhp\n"
+"par_id3145786\n"
"9\n"
"help.text"
-msgid "<emph>Start: </emph>Numeric expression that indicates the character position within the string where the string portion that you want to replace or to return begins. The maximum allowed value is 65535."
-msgstr ""
+msgid "<emph>Label2:</emph>"
+msgstr "Vlerë absolute"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3148451\n"
+"03090302.xhp\n"
+"par_id3161832\n"
"10\n"
"help.text"
-msgid "<emph>Length:</emph> Numeric expression that returns the number of characters that you want to replace or return. The maximum allowed value is 65535."
-msgstr ""
+msgid "statement block"
+msgstr "Shigjetat e bllokut"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3125864\n"
+"03090302.xhp\n"
+"par_id3146120\n"
"11\n"
"help.text"
-msgid "If the Length parameter in the <emph>Mid function</emph> is omitted, all characters in the string expression from the start position to the end of the string are returned."
-msgstr ""
+msgid "Exit Sub"
+msgstr "Nën~totalet..."
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3144762\n"
+"03090302.xhp\n"
+"par_id3150010\n"
"12\n"
"help.text"
-msgid "If the Length parameter in the <emph>Mid statement</emph> is less than the length of the text that you want to replace, the text is reduced to the specified length."
-msgstr ""
+msgid "<emph>Label1:</emph>"
+msgstr "Vlerë absolute"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"par_id3150769\n"
+"03090302.xhp\n"
+"par_id3152462\n"
"13\n"
"help.text"
-msgid "<emph>Text:</emph> The string to replace the string expression (<emph>Mid statement</emph>)."
-msgstr ""
+msgid "statement block"
+msgstr "Shigjetat e bllokut"
-#: 03120306.xhp
+#: 03090302.xhp
msgctxt ""
-"03120306.xhp\n"
-"hd_id3149560\n"
+"03090302.xhp\n"
+"par_id3149664\n"
"14\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03120306.xhp
-msgctxt ""
-"03120306.xhp\n"
-"par_id3153189\n"
-"18\n"
-"help.text"
-msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
-msgstr ""
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"tit\n"
-"help.text"
-msgid "Year Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"bm_id3148664\n"
-"help.text"
-msgid "<bookmark_value>Year function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3148664\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030106.xhp\" name=\"Year Function [Runtime]\">Year Function [Runtime]</link>"
-msgstr ""
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3149655\n"
-"2\n"
-"help.text"
-msgid "Returns the year from a serial date number that is generated by the DateSerial or the DateValue function."
+msgid "GoTo Label2"
msgstr ""
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3154125\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3147229\n"
-"4\n"
-"help.text"
-msgid "Year (Number)"
-msgstr "Numri i faqes"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3154685\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"par_id3153970\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
-
-#: 03030106.xhp
-msgctxt ""
-"03030106.xhp\n"
-"hd_id3150440\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03030106.xhp
+#: 03090302.xhp
msgctxt ""
-"03030106.xhp\n"
-"par_id3163712\n"
-"8\n"
+"03090302.xhp\n"
+"par_id3152886\n"
+"15\n"
"help.text"
-msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the year."
-msgstr ""
+msgid "End Sub/Function"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 03030106.xhp
+#: 03090302.xhp
msgctxt ""
-"03030106.xhp\n"
+"03090302.xhp\n"
"par_id3152596\n"
-"9\n"
+"16\n"
"help.text"
-msgid "This function is the opposite of the <emph>DateSerial </emph>function, and returns the year of a serial date. For example, the expression:"
+msgid "Use the GoTo statement to instruct $[officename] Basic to continue program execution at another place within the procedure. The position must be indicated by a label. To set a label, assign a name, and then and end it with a colon (\":\")."
msgstr ""
-#: 03030106.xhp
+#: 03090302.xhp
msgctxt ""
-"03030106.xhp\n"
-"par_id3149483\n"
-"11\n"
+"03090302.xhp\n"
+"par_id3155416\n"
+"17\n"
"help.text"
-msgid "returns the value 1994."
-msgstr "Kthen vlerën llogjike SAKTË."
+msgid "You cannot use the GoTo statement to jump out of a Sub or Function."
+msgstr ""
-#: 03030106.xhp
+#: 03090302.xhp
msgctxt ""
-"03030106.xhp\n"
-"hd_id3146985\n"
-"12\n"
+"03090302.xhp\n"
+"hd_id3154731\n"
+"19\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03030106.xhp
+#: 03090302.xhp
msgctxt ""
-"03030106.xhp\n"
-"par_id3153363\n"
-"14\n"
+"03090302.xhp\n"
+"par_id6967035\n"
"help.text"
-msgid "MsgBox \"\" & Year(Now) ,64,\"Current year\""
-msgstr ""
+msgid "see Parameters"
+msgstr "Parametrat animues"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
+"03090303.xhp\n"
"tit\n"
"help.text"
-msgid "Abs Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "On...GoSub Statement; On...GoTo Statement [Runtime]"
+msgstr ""
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"bm_id3159201\n"
+"03090303.xhp\n"
+"bm_id3153897\n"
"help.text"
-msgid "<bookmark_value>Abs function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>On...GoSub statement</bookmark_value><bookmark_value>On...GoTo statement</bookmark_value>"
+msgstr ""
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3159201\n"
+"03090303.xhp\n"
+"hd_id3153897\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080601.xhp\" name=\"Abs Function [Runtime]\">Abs Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub Statement; On...GoTo Statement [Runtime]\">On...GoSub Statement; On...GoTo Statement [Runtime]</link>"
msgstr ""
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3153394\n"
+"03090303.xhp\n"
+"par_id3150359\n"
"2\n"
"help.text"
-msgid "Returns the absolute value of a numeric expression."
-msgstr "I kthen vlerat absolute tw njw numri kompleks"
+msgid "Branches to one of several specified lines in the program code, depending on the value of a numeric expression."
+msgstr ""
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3149233\n"
+"03090303.xhp\n"
+"hd_id3148798\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3147573\n"
+"03090303.xhp\n"
+"par_id3154366\n"
"4\n"
"help.text"
-msgid "Abs (Number)"
-msgstr "Numri i faqes"
+msgid "On N GoSub Label1[, Label2[, Label3[,...]]]"
+msgstr ""
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3156152\n"
+"03090303.xhp\n"
+"par_id3150769\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
+msgstr ""
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3149670\n"
+"03090303.xhp\n"
+"hd_id3156215\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Dyfish"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3154924\n"
+"03090303.xhp\n"
+"par_id3148673\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "<emph>NumExpression:</emph> Any numeric expression between 0 and 255 that determines which of the lines the program branches to. If NumExpression is 0, the statement is not executed. If NumExpression is greater than 0, the program jumps to the label that has a position number that corresponds to the expression (1 = First label; 2 = Second label)"
+msgstr ""
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3154347\n"
+"03090303.xhp\n"
+"par_id3153194\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to return the absolute value for. Positive numbers, including 0, are returned unchanged, whereas negative numbers are converted to positive numbers."
+msgid "<emph>Label:</emph> Target line according to<emph> GoTo </emph>or <emph>GoSub</emph> structure."
msgstr ""
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3153381\n"
+"03090303.xhp\n"
+"par_id3156442\n"
"9\n"
"help.text"
-msgid "The following example uses the Abs function to calculate the difference between two values. It does not matter which value you enter first."
+msgid "The <emph>GoTo</emph> or <emph>GoSub </emph>conventions are valid."
msgstr ""
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"hd_id3148451\n"
+"03090303.xhp\n"
+"hd_id3148645\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3145786\n"
-"14\n"
+"03090303.xhp\n"
+"par_id3153948\n"
+"21\n"
"help.text"
-msgid "siW1 = Int(InputBox$ (\"Please enter the first amount\",\"Value Input\"))"
+msgid "sVar =sVar & \" From Sub 1 to\" : Return"
msgstr ""
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3149561\n"
-"15\n"
+"03090303.xhp\n"
+"par_id3153708\n"
+"23\n"
"help.text"
-msgid "siW2 = Int(InputBox$ (\"Please enter the second amount\",\"Value Input\"))"
+msgid "sVar =sVar & \" From Sub 2 to\" : Return"
msgstr ""
-#: 03080601.xhp
+#: 03090303.xhp
msgctxt ""
-"03080601.xhp\n"
-"par_id3145750\n"
-"16\n"
+"03090303.xhp\n"
+"par_id3150321\n"
+"25\n"
"help.text"
-msgid "Print \"The difference is \"; Abs(siW1 - siW2)"
+msgid "sVar =sVar & \" Label 1\" : GoTo Ende"
msgstr ""
-#: 03104000.xhp
+#: 03090303.xhp
msgctxt ""
-"03104000.xhp\n"
-"tit\n"
+"03090303.xhp\n"
+"par_id3155764\n"
+"27\n"
"help.text"
-msgid "IsMissing function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "sVar =sVar & \" Label 2\""
+msgstr "Teksti i etiketës"
-#: 03104000.xhp
+#: 03090400.xhp
msgctxt ""
-"03104000.xhp\n"
-"bm_id3153527\n"
+"03090400.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>IsMissing function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "Further Statements"
+msgstr "Informata të mëtejshme"
-#: 03104000.xhp
+#: 03090400.xhp
msgctxt ""
-"03104000.xhp\n"
-"hd_id3153527\n"
+"03090400.xhp\n"
+"hd_id3145316\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090400.xhp\" name=\"Further Statements\">Further Statements</link>"
msgstr ""
-#: 03104000.xhp
+#: 03090400.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3153825\n"
+"03090400.xhp\n"
+"par_id3154923\n"
"2\n"
"help.text"
-msgid "Tests if a function is called with an optional parameter."
+msgid "Statements that do not belong to any of the other runtime categories are described here."
msgstr ""
-#: 03104000.xhp
+#: 03090401.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3150669\n"
-"3\n"
+"03090401.xhp\n"
+"tit\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
-msgstr ""
+msgid "Call Statement [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03104000.xhp
+#: 03090401.xhp
msgctxt ""
-"03104000.xhp\n"
-"hd_id3145611\n"
-"4\n"
+"03090401.xhp\n"
+"bm_id3154422\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "<bookmark_value>Call statement</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03104000.xhp
+#: 03090401.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3154924\n"
-"5\n"
+"03090401.xhp\n"
+"hd_id3154422\n"
+"1\n"
"help.text"
-msgid "IsMissing( ArgumentName )"
+msgid "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement [Runtime]\">Call Statement [Runtime]</link>"
msgstr ""
-#: 03104000.xhp
-msgctxt ""
-"03104000.xhp\n"
-"hd_id3145069\n"
-"6\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03104000.xhp
+#: 03090401.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3149457\n"
-"7\n"
+"03090401.xhp\n"
+"par_id3153394\n"
+"2\n"
"help.text"
-msgid "<emph>ArgumentName:</emph> the name of an optional argument."
+msgid "Transfers the control of the program to a subroutine, a function, or a DLL procedure."
msgstr ""
-#: 03104000.xhp
+#: 03090401.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3150398\n"
-"8\n"
+"03090401.xhp\n"
+"hd_id3153345\n"
+"3\n"
"help.text"
-msgid "If the IsMissing function is called by the ArgumentName, then True is returned."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03104000.xhp
+#: 03090401.xhp
msgctxt ""
-"03104000.xhp\n"
-"par_id3148798\n"
-"9\n"
+"03090401.xhp\n"
+"par_id3150984\n"
+"4\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
-msgstr ""
+msgid "[Call] Name [Parameter]"
+msgstr "Beta parametri i Beta shprëndarjes."
-#: main0601.xhp
+#: 03090401.xhp
msgctxt ""
-"main0601.xhp\n"
-"tit\n"
+"03090401.xhp\n"
+"hd_id3150771\n"
+"5\n"
"help.text"
-msgid "$[officename] Basic Help"
-msgstr "%PRODUCTNAME ndihma për Writer"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: main0601.xhp
+#: 03090401.xhp
msgctxt ""
-"main0601.xhp\n"
-"hd_id3154232\n"
-"1\n"
+"03090401.xhp\n"
+"par_id3148473\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
+msgid "<emph>Name:</emph> Name of the subroutine, the function, or the DLL that you want to call"
msgstr ""
-#: main0601.xhp
+#: 03090401.xhp
msgctxt ""
-"main0601.xhp\n"
-"par_id3153894\n"
-"4\n"
+"03090401.xhp\n"
+"par_id3148946\n"
+"7\n"
"help.text"
-msgid "%PRODUCTNAME %PRODUCTVERSION provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit <link href=\"http://api.libreoffice.org/\" name=\"http://api.libreoffice.org\">http://api.libreoffice.org</link>"
+msgid "<emph>Parameter:</emph> Parameters to pass to the procedure. The type and number of parameters is dependent on the routine that is executing."
msgstr ""
-#: main0601.xhp
+#: 03090401.xhp
msgctxt ""
-"main0601.xhp\n"
-"par_id3147226\n"
-"10\n"
+"03090401.xhp\n"
+"par_id3154216\n"
+"8\n"
"help.text"
-msgid "This help section explains the most common runtime functions of %PRODUCTNAME Basic. For more in-depth information please refer to the <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC Programming Guide</link> on the Wiki."
+msgid "A keyword is optional when you call a procedure. If a function is executed as an expression, the parameters must be enclosed by brackets in the statement. If a DLL is called, it must first be specified in the <emph>Declare-Statement</emph>."
msgstr ""
-#: main0601.xhp
+#: 03090401.xhp
msgctxt ""
-"main0601.xhp\n"
-"hd_id3146957\n"
+"03090401.xhp\n"
+"hd_id3125865\n"
"9\n"
"help.text"
-msgid "Working with %PRODUCTNAME Basic"
-msgstr "%PRODUCTNAME Basic Macro Organizues"
-
-#: main0601.xhp
-msgctxt ""
-"main0601.xhp\n"
-"hd_id3148473\n"
-"7\n"
-"help.text"
-msgid "Help about the Help"
-msgstr "Ndihma për %PRODUCTNAME Writer"
+msgid "Example:"
+msgstr "Shembull"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
+"03090402.xhp\n"
"tit\n"
"help.text"
-msgid "Rem Statement [Runtime]"
+msgid "Choose Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"bm_id3154347\n"
+"03090402.xhp\n"
+"bm_id3143271\n"
"help.text"
-msgid "<bookmark_value>Rem statement</bookmark_value><bookmark_value>comments;Rem statement</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>Choose function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"hd_id3154347\n"
+"03090402.xhp\n"
+"hd_id3143271\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement [Runtime]\">Rem Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090402.xhp\" name=\"Choose Function [Runtime]\">Choose Function [Runtime]</link>"
msgstr ""
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id3153525\n"
+"03090402.xhp\n"
+"par_id3149234\n"
"2\n"
"help.text"
-msgid "Specifies that a program line is a comment."
-msgstr ""
+msgid "Returns a selected value from a list of arguments."
+msgstr "Kthen vlerën maksimale në një listë të argumenteve."
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"hd_id3153360\n"
+"03090402.xhp\n"
+"hd_id3148943\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id3154141\n"
+"03090402.xhp\n"
+"par_id3147560\n"
"4\n"
"help.text"
-msgid "Rem Text"
-msgstr "Vizato tekstin"
+msgid "Choose (Index, Selection1[, Selection2, ... [,Selection_n]])"
+msgstr ""
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"hd_id3151042\n"
+"03090402.xhp\n"
+"hd_id3154346\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id3150869\n"
+"03090402.xhp\n"
+"par_id3148664\n"
"6\n"
"help.text"
-msgid "<emph>Text:</emph> Any text that serves as a comment."
+msgid "<emph>Index:</emph> A numeric expression that specifies the value to return."
msgstr ""
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id3147318\n"
+"03090402.xhp\n"
+"par_id3150791\n"
"7\n"
"help.text"
-msgid "You can use the single quotation mark instead of the Rem keyword to indicate that the text on a line is comments. This symbol can be inserted directly to the right of the program code, followed by a comment."
+msgid "<emph>Selection1:</emph> Any expression that contains one of the possible choices."
msgstr ""
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id6187017\n"
+"03090402.xhp\n"
+"par_id3151043\n"
+"8\n"
"help.text"
-msgid "You can use a space followed by the underline character _ as the last two characters of a line to continue the logical line on the next line. To continue comment lines, you must enter \"Option Compatible\" in the same Basic module."
+msgid "The <emph>Choose</emph> function returns a value from the list of expressions based on the index value. If Index = 1, the function returns the first expression in the list, if index i= 2, it returns the second expression, and so on."
msgstr ""
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"hd_id3150012\n"
-"8\n"
+"03090402.xhp\n"
+"par_id3153192\n"
+"9\n"
+"help.text"
+msgid "If the index value is less than 1 or greater than the number of expressions listed, the function returns a Null value."
+msgstr ""
+
+#: 03090402.xhp
+msgctxt ""
+"03090402.xhp\n"
+"par_id3156281\n"
+"10\n"
+"help.text"
+msgid "The following example uses the <emph>Choose</emph> function to select a string from several strings that form a menu:"
+msgstr ""
+
+#: 03090402.xhp
+msgctxt ""
+"03090402.xhp\n"
+"hd_id3150439\n"
+"11\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03090407.xhp
+#: 03090402.xhp
msgctxt ""
-"03090407.xhp\n"
-"par_id3153140\n"
-"13\n"
+"03090402.xhp\n"
+"par_id3156443\n"
+"20\n"
"help.text"
-msgid "' Nothing occurs here"
+msgid "ChooseMenu = Choose(Index, \"Quick Format\", \"Save Format\", \"System Format\")"
msgstr ""
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
+"03090403.xhp\n"
"tit\n"
"help.text"
-msgid "DefStr Statement [Runtime]"
+msgid "Declare Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"bm_id6161381\n"
+"03090403.xhp\n"
+"bm_id3148473\n"
"help.text"
-msgid "<bookmark_value>DefStr statement</bookmark_value>"
+msgid "<bookmark_value>Declare statement</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN10577\n"
+"03090403.xhp\n"
+"hd_id3148473\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101140.xhp\">DefStr Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare Statement [Runtime]\">Declare Statement [Runtime]</link>"
msgstr ""
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN10587\n"
+"03090403.xhp\n"
+"bm_id3145316\n"
"help.text"
-msgid "If no type-declaration character or keyword is specified, the DefStr statement sets the default variable type, according to a letter range."
+msgid "<bookmark_value>DLL (Dynamic Link Library)</bookmark_value>"
msgstr ""
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN1058A\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN1058E\n"
+"03090403.xhp\n"
+"par_id3145316\n"
+"2\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgid "Declares and defines a subroutine in a DLL file that you want to execute from $[officename] Basic."
msgstr ""
-#: 03101140.xhp
-msgctxt ""
-"03101140.xhp\n"
-"par_idN10591\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN10595\n"
+"03090403.xhp\n"
+"par_id3146795\n"
+"3\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgid "See also: <link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary\">FreeLibrary</link>"
msgstr ""
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN1059C\n"
+"03090403.xhp\n"
+"hd_id3156344\n"
+"4\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN105A3\n"
+"03090403.xhp\n"
+"par_id3148664\n"
+"5\n"
"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "**Ndryshorja nuk u gjet**"
+msgid "Declare {Sub | Function} Name Lib \"Libname\" [Alias \"Aliasname\"] [Parameter] [As Type]"
+msgstr ""
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN105AA\n"
+"03090403.xhp\n"
+"hd_id3153360\n"
+"6\n"
"help.text"
-msgid "<emph>DefStr:</emph> String"
-msgstr "Modeli i lidhëses është i pavlefshëm"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN105B1\n"
+"03090403.xhp\n"
+"par_id3154140\n"
+"8\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "<emph>Name:</emph> A different name than defined in the DLL, to call the subroutine from $[officename] Basic."
+msgstr ""
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN105B5\n"
+"03090403.xhp\n"
+"par_id3150870\n"
+"9\n"
"help.text"
-msgid "' Prefix definitions for variable types:"
+msgid "<emph>Aliasname</emph>: Name of the subroutine as defined in the DLL."
msgstr ""
-#: 03101140.xhp
+#: 03090403.xhp
msgctxt ""
-"03101140.xhp\n"
-"par_idN105D3\n"
+"03090403.xhp\n"
+"par_id3154684\n"
+"10\n"
"help.text"
-msgid "sStr=String ' sStr is an implicit string variable"
+msgid "<emph>Libname:</emph> File or system name of the DLL. This library is automatically loaded the first time the function is used."
msgstr ""
-#: 03060000.xhp
+#: 03090403.xhp
msgctxt ""
-"03060000.xhp\n"
-"tit\n"
+"03090403.xhp\n"
+"par_id3148452\n"
+"11\n"
"help.text"
-msgid "Logical Operators"
-msgstr "Gjerësi logjike"
+msgid "<emph>Argumentlist:</emph> List of parameters representing arguments that are passed to the procedure when it is called. The type and number of parameters is dependent on the executed procedure."
+msgstr ""
-#: 03060000.xhp
+#: 03090403.xhp
msgctxt ""
-"03060000.xhp\n"
-"hd_id3147559\n"
-"1\n"
+"03090403.xhp\n"
+"par_id3147289\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060000.xhp\" name=\"Logical Operators\">Logical Operators</link>"
+msgid "<emph>Type:</emph> Defines the data type of the value that is returned by a function procedure. You can exclude this parameter if a type-declaration character is entered after the name."
msgstr ""
-#: 03060000.xhp
+#: 03090403.xhp
msgctxt ""
-"03060000.xhp\n"
-"par_id3153379\n"
-"2\n"
+"03090403.xhp\n"
+"par_id3146922\n"
+"13\n"
"help.text"
-msgid "The following logical operators are supported by $[officename] Basic."
+msgid "To pass a parameter to a subroutine as a value instead of as a reference, the parameter must be indicated by the keyword <emph>ByVal</emph>."
msgstr ""
-#: 03060000.xhp
+#: 03090403.xhp
msgctxt ""
-"03060000.xhp\n"
-"par_id3154138\n"
-"3\n"
+"03090403.xhp\n"
+"hd_id3153951\n"
+"14\n"
"help.text"
-msgid "Logical operators combine (bitwise) the contents of two expressions or variables, for example, to test if specific bits are set or not."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
+"03090404.xhp\n"
"tit\n"
"help.text"
-msgid "GlobalScope [Runtime]"
-msgstr "Gabim nw kohw: #"
+msgid "End Statement [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"bm_id3150682\n"
+"03090404.xhp\n"
+"bm_id3150771\n"
"help.text"
-msgid "<bookmark_value>GlobalScope function</bookmark_value><bookmark_value>library systems</bookmark_value><bookmark_value>LibraryContainer</bookmark_value><bookmark_value>BasicLibraries (LibraryContainer)</bookmark_value><bookmark_value>DialogLibraries (LibraryContainer)</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>End statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"hd_id3150682\n"
+"03090404.xhp\n"
+"hd_id3150771\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope [Runtime]\">GlobalScope [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090404.xhp\" name=\"End Statement [Runtime]\">End Statement [Runtime]</link>"
msgstr ""
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3153345\n"
+"03090404.xhp\n"
+"par_id3153126\n"
"2\n"
"help.text"
-msgid "Basic source code and dialogs are organized in a library system."
-msgstr ""
+msgid "Ends a procedure or block."
+msgstr "Nwn-procedura ose procedura e funksionit nuk wshtw definuar"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3145315\n"
+"03090404.xhp\n"
+"hd_id3147264\n"
"3\n"
"help.text"
-msgid "The LibraryContainer contains libraries"
-msgstr "Biblioteka themelore %PRODUCTNAME"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3149514\n"
+"03090404.xhp\n"
+"par_id3148552\n"
"4\n"
"help.text"
-msgid "Libraries can contain modules and dialogs"
+msgid "End, End Function, End If, End Select, End Sub"
msgstr ""
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"hd_id3143271\n"
+"03090404.xhp\n"
+"hd_id3149456\n"
"5\n"
"help.text"
-msgid "In Basic:"
-msgstr "IDE Bazike"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3153061\n"
+"03090404.xhp\n"
+"par_id3150398\n"
"6\n"
"help.text"
-msgid "The LibraryContainer is called <emph>BasicLibraries</emph>."
+msgid "Use the End statement as follows:"
msgstr ""
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"hd_id3154346\n"
+"03090404.xhp\n"
+"hd_id3154366\n"
"7\n"
"help.text"
-msgid "In dialogs:"
-msgstr "Organizo ~dialogjet"
+msgid "Statement"
+msgstr "DDE Deklaratë"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3148663\n"
+"03090404.xhp\n"
+"par_id3151043\n"
"8\n"
"help.text"
-msgid "The LibraryContainer is called <emph>DialogLibraries</emph>."
+msgid "End: Is not required, but can be entered anywhere within a procedure to end the program execution."
msgstr ""
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3150543\n"
+"03090404.xhp\n"
+"par_id3145171\n"
"9\n"
"help.text"
-msgid "Both LibraryContainers exist in an application level and within every document. In the document Basic, the document's LibraryContainers are called automatically. If you want to call the global LibraryContainers from within a document, you must use the keyword <emph>GlobalScope</emph>."
+msgid "End Function: Ends a <emph>Function</emph> statement."
msgstr ""
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"hd_id3148920\n"
+"03090404.xhp\n"
+"par_id3153192\n"
"10\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "End If: Marks the end of a <emph>If...Then...Else</emph> block."
+msgstr ""
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3149203\n"
+"03090404.xhp\n"
+"par_id3148451\n"
"11\n"
"help.text"
-msgid "GlobalScope"
+msgid "End Select: Marks the end of a <emph>Select Case</emph> block."
msgstr ""
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"hd_id3154685\n"
+"03090404.xhp\n"
+"par_id3155131\n"
"12\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "End Sub: Ends a <emph>Sub</emph> statement."
+msgstr ""
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3154124\n"
+"03090404.xhp\n"
+"hd_id3146120\n"
"13\n"
"help.text"
-msgid "Example in the document Basic"
-msgstr "$(ERR) duke ngarkuar BASIC të dokumentit $(ARG1)"
+msgid "Example:"
+msgstr "Shembull"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3158408\n"
-"14\n"
+"03090404.xhp\n"
+"par_id3152887\n"
+"19\n"
"help.text"
-msgid "' calling Dialog1 in the document library Standard"
-msgstr ""
+msgid "Print \"Number from 1 to 5\""
+msgstr "Nga kreu në fund"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3125865\n"
-"15\n"
+"03090404.xhp\n"
+"par_id3148618\n"
+"21\n"
"help.text"
-msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
-msgstr ""
+msgid "Print \"Number from 6 to 8\""
+msgstr "Nga kreu në fund"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3154910\n"
-"16\n"
+"03090404.xhp\n"
+"par_id3147436\n"
+"23\n"
"help.text"
-msgid "' calling Dialog2 in the application library Library1"
-msgstr ""
+msgid "Print \"Greater than 8\""
+msgstr "Është më e madhe se"
-#: 03131900.xhp
+#: 03090404.xhp
msgctxt ""
-"03131900.xhp\n"
-"par_id3156424\n"
-"17\n"
+"03090404.xhp\n"
+"par_id3150418\n"
+"25\n"
"help.text"
-msgid "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
-msgstr ""
+msgid "Print \"Outside range 1 to 10\""
+msgstr "Nga kreu në fund"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
+"03090405.xhp\n"
"tit\n"
"help.text"
-msgid "Now Function [Runtime]"
+msgid "FreeLibrary Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"bm_id3149416\n"
+"03090405.xhp\n"
+"bm_id3143270\n"
"help.text"
-msgid "<bookmark_value>Now function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>FreeLibrary function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"hd_id3149416\n"
+"03090405.xhp\n"
+"hd_id3143270\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030203.xhp\" name=\"Now Function [Runtime]\">Now Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090405.xhp\" name=\"FreeLibrary Function [Runtime]\">FreeLibrary Function [Runtime]</link>"
msgstr ""
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"par_id3149670\n"
+"03090405.xhp\n"
+"par_id3147559\n"
"2\n"
"help.text"
-msgid "Returns the current system date and time as a <emph>Date</emph> value."
+msgid "Releases DLLs that were loaded by a Declare statement. A released DLL is automatically reloaded if one of its functions is called. See also: <link href=\"text/sbasic/shared/03090403.xhp\" name=\"Declare\">Declare</link>"
msgstr ""
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"hd_id3149456\n"
+"03090405.xhp\n"
+"hd_id3148550\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"par_id3149655\n"
+"03090405.xhp\n"
+"par_id3153361\n"
"4\n"
"help.text"
-msgid "Now"
-msgstr "TANI"
+msgid "FreeLibrary (LibName As String)"
+msgstr ""
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"hd_id3154366\n"
+"03090405.xhp\n"
+"hd_id3153380\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03030203.xhp
+#: 03090405.xhp
msgctxt ""
-"03030203.xhp\n"
-"par_id3154909\n"
+"03090405.xhp\n"
+"par_id3154138\n"
"6\n"
"help.text"
-msgid "Date"
-msgstr "Data"
-
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"hd_id3147229\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03030203.xhp
-msgctxt ""
-"03030203.xhp\n"
-"par_id3150870\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"It is now \" & Now"
+msgid "<emph>LibName:</emph> String expression that specifies the name of the DLL."
msgstr ""
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Variables"
-msgstr "Variablat"
-
-#: 03100000.xhp
+#: 03090405.xhp
msgctxt ""
-"03100000.xhp\n"
-"hd_id3149669\n"
-"1\n"
+"03090405.xhp\n"
+"par_id3146923\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">Variables</link>"
+msgid "FreeLibrary can only release DLLs that are loaded during Basic runtime."
msgstr ""
-#: 03100000.xhp
+#: 03090405.xhp
msgctxt ""
-"03100000.xhp\n"
-"par_id3147265\n"
-"2\n"
+"03090405.xhp\n"
+"hd_id3153363\n"
+"8\n"
"help.text"
-msgid "The following statements and functions are for working with variables. You can use these functions to declare or define variables, convert variables from one type to another, or determine the variable type."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
+"03090406.xhp\n"
"tit\n"
"help.text"
-msgid "Sin Function [Runtime]"
+msgid "Function Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"bm_id3153896\n"
+"03090406.xhp\n"
+"bm_id3153346\n"
"help.text"
-msgid "<bookmark_value>Sin function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>Function statement</bookmark_value>"
+msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"hd_id3153896\n"
+"03090406.xhp\n"
+"hd_id3153346\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080103.xhp\" name=\"Sin Function [Runtime]\">Sin Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement [Runtime]\">Function Statement [Runtime]</link>"
msgstr ""
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3149456\n"
+"03090406.xhp\n"
+"par_id3159158\n"
"2\n"
"help.text"
-msgid "Returns the sine of an angle. The angle is specified in radians. The result lies between -1 and 1."
+msgid "Defines a subroutine that can be used as an expression to determine a return type."
msgstr ""
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3153379\n"
+"03090406.xhp\n"
+"hd_id3145316\n"
"3\n"
"help.text"
-msgid "Using the angle Alpha, the Sin Function returns the ratio of the length of the opposite side of an angle to the length of the hypotenuse in a right-angled triangle."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3148798\n"
+"03090406.xhp\n"
+"par_id3148944\n"
"4\n"
"help.text"
-msgid "Sin(Alpha) = side opposite the angle/hypotenuse"
-msgstr ""
+msgid "see Parameter"
+msgstr "Parametri i sllajdit"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"hd_id3147230\n"
+"03090406.xhp\n"
+"hd_id3154760\n"
"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3154909\n"
+"03090406.xhp\n"
+"par_id3156344\n"
"6\n"
"help.text"
-msgid "Sin (Number)"
-msgstr "Numri i faqes"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"hd_id3156214\n"
+"03090406.xhp\n"
+"par_id3149457\n"
"7\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Function Name[(VarName1 [As Type][, VarName2 [As Type][,...]]]) [As Type]"
+msgstr ""
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3150870\n"
+"03090406.xhp\n"
+"par_id3153360\n"
"8\n"
"help.text"
-msgid "Double"
-msgstr "Dyfish"
+msgid "statement block"
+msgstr "Shigjetat e bllokut"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"hd_id3155132\n"
+"03090406.xhp\n"
+"par_id3148797\n"
"9\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "[Exit Function]"
+msgstr "Funksion eksponencial"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3145786\n"
+"03090406.xhp\n"
+"par_id3145419\n"
"10\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that defines the angle in radians that you want to calculate the sine for."
-msgstr ""
+msgid "statement block"
+msgstr "Shigjetat e bllokut"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3155413\n"
+"03090406.xhp\n"
+"par_id3150449\n"
"11\n"
"help.text"
-msgid "To convert degrees to radians, multiply degrees by Pi/180, and to convert radians to degrees, multiply radians by 180/Pi."
-msgstr ""
+msgid "End Function"
+msgstr "Funksion eksponencial"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3149664\n"
+"03090406.xhp\n"
+"par_id3156281\n"
"12\n"
"help.text"
-msgid "grad=(radiant*180)/pi"
-msgstr ""
+msgid "Parameter"
+msgstr "Parametri i sllajdit"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3153143\n"
+"03090406.xhp\n"
+"par_id3153193\n"
"13\n"
"help.text"
-msgid "radiant=(grad*pi)/180"
+msgid "<emph>Name:</emph> Name of the subroutine to contain the value returned by the function."
msgstr ""
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3151112\n"
+"03090406.xhp\n"
+"par_id3147229\n"
"14\n"
"help.text"
-msgid "Pi is approximately 3.141593."
-msgstr "Numri me tw cilin pi wshtw shumwzuar"
-
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"hd_id3163712\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3149482\n"
-"16\n"
-"help.text"
-msgid "' In this example, the following entry is possible for a right-angled triangle:"
-msgstr ""
-
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3148577\n"
-"17\n"
-"help.text"
-msgid "' The side opposite the angle and the angle (in degrees) to calculate the length of the hypotenuse:"
-msgstr ""
-
-#: 03080103.xhp
-msgctxt ""
-"03080103.xhp\n"
-"par_id3150011\n"
-"19\n"
-"help.text"
-msgid "' Pi = 3.1415926 is a predefined variable"
+msgid "<emph>VarName:</emph> Parameter to be passed to the subroutine."
msgstr ""
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3145251\n"
-"22\n"
+"03090406.xhp\n"
+"par_id3147287\n"
+"15\n"
"help.text"
-msgid "d1 = InputBox$ (\"Enter the length of the opposite side: \",\"Opposite Side\")"
+msgid "<emph>Type:</emph> Type-declaration keyword."
msgstr ""
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3148456\n"
-"23\n"
+"03090406.xhp\n"
+"hd_id3163710\n"
+"16\n"
"help.text"
-msgid "dAlpha = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03080103.xhp
+#: 03090406.xhp
msgctxt ""
-"03080103.xhp\n"
-"par_id3153877\n"
-"24\n"
+"03090406.xhp\n"
+"par_id3152939\n"
+"21\n"
"help.text"
-msgid "Print \"The length of the hypotenuse is\"; (d1 / sin (dAlpha * Pi / 180))"
+msgid "For siStep = 0 To 10 ' Fill array with test data"
msgstr ""
-#: 03050000.xhp
-msgctxt ""
-"03050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Error-Handling Functions"
-msgstr "Paraqit Funksionet e Vizatimit"
-
-#: 03050000.xhp
+#: 03090406.xhp
msgctxt ""
-"03050000.xhp\n"
-"hd_id3143271\n"
-"1\n"
+"03090406.xhp\n"
+"par_id3154943\n"
+"32\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050000.xhp\" name=\"Error-Handling Functions\">Error-Handling Functions</link>"
+msgid "' Linsearch searches a TextArray:sList() for a TextEntry:"
msgstr ""
-#: 03050000.xhp
+#: 03090406.xhp
msgctxt ""
-"03050000.xhp\n"
-"par_id3145068\n"
-"2\n"
+"03090406.xhp\n"
+"par_id3155601\n"
+"33\n"
"help.text"
-msgid "Use the following statements and functions to define the way $[officename] Basic reacts to run-time errors."
+msgid "' Return value Is the index of the entry Or 0 (Null)"
msgstr ""
-#: 03050000.xhp
+#: 03090406.xhp
msgctxt ""
-"03050000.xhp\n"
-"par_id3148946\n"
-"3\n"
+"03090406.xhp\n"
+"par_id3153707\n"
+"36\n"
"help.text"
-msgid "$[officename] Basic offers several methods to prevent the termination of a program when a run-time error occurs."
+msgid "Exit For ' sItem found"
msgstr ""
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
+"03090407.xhp\n"
"tit\n"
"help.text"
-msgid "Dim Statement [Runtime]"
+msgid "Rem Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"bm_id3149812\n"
+"03090407.xhp\n"
+"bm_id3154347\n"
"help.text"
-msgid "<bookmark_value>Dim statement</bookmark_value><bookmark_value>arrays; dimensioning</bookmark_value><bookmark_value>dimensioning arrays</bookmark_value>"
+msgid "<bookmark_value>Rem statement</bookmark_value><bookmark_value>comments;Rem statement</bookmark_value>"
msgstr ""
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"hd_id3149812\n"
+"03090407.xhp\n"
+"hd_id3154347\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Dim Statement [Runtime]\">Dim Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090407.xhp\" name=\"Rem Statement [Runtime]\">Rem Statement [Runtime]</link>"
msgstr ""
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3143271\n"
+"03090407.xhp\n"
+"par_id3153525\n"
"2\n"
"help.text"
-msgid "Declares a variable or an array."
-msgstr "Grupi ose intervali për referencë."
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154686\n"
-"3\n"
-"help.text"
-msgid "If the variables are separated by commas (for example, DIM sPar1, sPar2, sPar3 AS STRING), only Variant variables can be defined. Use a separate definition line for each variable."
-msgstr ""
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3152576\n"
-"7\n"
-"help.text"
-msgid "Dim declares local variables within subroutines. Global variables are declared with the PUBLIC or the PRIVATE statement."
+msgid "Specifies that a program line is a comment."
msgstr ""
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"hd_id3156443\n"
-"8\n"
+"03090407.xhp\n"
+"hd_id3153360\n"
+"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3149412\n"
-"9\n"
+"03090407.xhp\n"
+"par_id3154141\n"
+"4\n"
"help.text"
-msgid "[ReDim]Dim VarName [(start To end)] [As VarType][, VarName2 [(start To end)] [As VarType][,...]]"
-msgstr ""
+msgid "Rem Text"
+msgstr "Vizato tekstin"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"hd_id3147397\n"
-"10\n"
+"03090407.xhp\n"
+"hd_id3151042\n"
+"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154730\n"
-"11\n"
-"help.text"
-msgid "<emph>VarName:</emph> Any variable or array name."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3147125\n"
-"12\n"
-"help.text"
-msgid "<emph>Start, End:</emph> Numerical values or constants that define the number of elements (NumberElements=(end-start)+1) and the index range."
-msgstr ""
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3153877\n"
-"13\n"
-"help.text"
-msgid "Start and End can be numerical expressions if ReDim is applied at the procedure level."
-msgstr ""
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3153510\n"
-"14\n"
-"help.text"
-msgid "<emph>VarType:</emph> Key word that declares the data type of a variable."
-msgstr ""
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154015\n"
-"15\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Variable type"
-msgstr "variant-formulari kanji (itaiji)"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3153949\n"
-"16\n"
-"help.text"
-msgid "<emph>Bool:</emph> Boolean variable (True, False)"
-msgstr ""
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3156275\n"
-"17\n"
-"help.text"
-msgid "<emph>Currency:</emph> Currency-Variable (Currency with 4 Decimal places)"
-msgstr ""
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3156057\n"
-"18\n"
-"help.text"
-msgid "<emph>Date:</emph> Date variable"
-msgstr "**Ndryshorja nuk u gjet**"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3148405\n"
-"19\n"
-"help.text"
-msgid "<emph>Double:</emph> Double-precision floating-point variable (1,79769313486232 x 10E308 - 4,94065645841247 x 10E-324)"
-msgstr ""
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3148916\n"
-"20\n"
-"help.text"
-msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
-msgstr "**Ndryshorja nuk u gjet**"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3150045\n"
-"21\n"
-"help.text"
-msgid "<emph>Long:</emph> Long integer variable (-2.147.483.648 - 2.147.483.647)"
-msgstr ""
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3149255\n"
-"22\n"
-"help.text"
-msgid "<emph>Object:</emph> Object variable (Note: this variable can only subsequently be defined with Set!)"
-msgstr ""
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3155937\n"
-"23\n"
-"help.text"
-msgid "<emph>Single:</emph> Single-precision floating-point variable (3,402823 x 10E38 - 1,401298 x 10E-45)."
-msgstr ""
-
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3151251\n"
-"24\n"
+"03090407.xhp\n"
+"par_id3150869\n"
+"6\n"
"help.text"
-msgid "<emph>String:</emph> String variable consisting of a maximum of 64,000 ASCII characters."
+msgid "<emph>Text:</emph> Any text that serves as a comment."
msgstr ""
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3154704\n"
-"25\n"
+"03090407.xhp\n"
+"par_id3147318\n"
+"7\n"
"help.text"
-msgid "<emph>[Variant]:</emph> Variant variable type (contains all types, specified by definition). If a key word is not specified, variables are automatically defined as Variant Type, unless a statement from DefBool to DefVar is used."
+msgid "You can use the single quotation mark instead of the Rem keyword to indicate that the text on a line is comments. This symbol can be inserted directly to the right of the program code, followed by a comment."
msgstr ""
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3146316\n"
-"26\n"
+"03090407.xhp\n"
+"par_id6187017\n"
"help.text"
-msgid "In $[officename] Basic, you do not need to declare variables explicitly. However, you need to declare an array before you can use them. You can declare a variable with the Dim statement, using commas to separate multiple declarations. To declare a variable type, enter a type-declaration character following the name or use a corresponding key word."
+msgid "You can use a space followed by the underline character _ as the last two characters of a line to continue the logical line on the next line. To continue comment lines, you must enter \"Option Compatible\" in the same Basic module."
msgstr ""
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3149924\n"
-"27\n"
+"03090407.xhp\n"
+"hd_id3150012\n"
+"8\n"
"help.text"
-msgid "$[officename] Basic supports single or multi-dimensional arrays that are defined by a specified variable type. Arrays are suitable if the program contains lists or tables that you want to edit. The advantage of arrays is that it is possible to address individual elements according to indexes, which can be formulated as numeric expressions or variables."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03102100.xhp
+#: 03090407.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3148488\n"
-"28\n"
+"03090407.xhp\n"
+"par_id3153140\n"
+"13\n"
"help.text"
-msgid "Arrays are declared with the Dim statement. There are two methods to define the index range:"
+msgid "' Nothing occurs here"
msgstr ""
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3154662\n"
-"29\n"
+"03090408.xhp\n"
+"tit\n"
"help.text"
-msgid "DIM text(20) as String REM 21 elements numbered from 0 to 20"
-msgstr ""
+msgid "Stop Statement [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3155604\n"
-"30\n"
+"03090408.xhp\n"
+"bm_id3153311\n"
"help.text"
-msgid "DIM text(5 to 25) as String REM 21 elements numbered from 5 to 25"
-msgstr ""
+msgid "<bookmark_value>Stop statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3151274\n"
-"31\n"
+"03090408.xhp\n"
+"hd_id3153311\n"
+"1\n"
"help.text"
-msgid "DIM text(-15 to 5) as String REM 21 elements (including 0)"
+msgid "<link href=\"text/sbasic/shared/03090408.xhp\" name=\"Stop Statement [Runtime]\">Stop Statement [Runtime]</link>"
msgstr ""
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3152774\n"
-"32\n"
+"03090408.xhp\n"
+"par_id3154142\n"
+"2\n"
"help.text"
-msgid "REM numbered from -15 to 5"
+msgid "Stops the execution of the Basic program."
msgstr ""
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3150829\n"
-"33\n"
-"help.text"
-msgid "Two-dimensional data field"
-msgstr "Të dhëna të Adresës - Fusha e Caktuar"
-
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3149529\n"
-"34\n"
+"03090408.xhp\n"
+"hd_id3153126\n"
+"3\n"
"help.text"
-msgid "DIM text(20,2) as String REM 63 elements; form 0 to 20 level 1, from 0 to 20 level 2 and from 0 to 20 level 3."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"par_id3159239\n"
-"35\n"
+"03090408.xhp\n"
+"par_id3156023\n"
+"4\n"
"help.text"
-msgid "You can declare an array types as dynamic if a ReDim statement defines the number of dimensions in the subroutine or the function that contains the array. Generally, you can only define an array dimension once, and you cannot modify it. Within a subroutine, you can declare an array with ReDim. You can only define dimensions with numeric expressions. This ensures that the fields are only as large as necessary."
-msgstr ""
+msgid "Stop"
+msgstr "Ndal"
-#: 03102100.xhp
+#: 03090408.xhp
msgctxt ""
-"03102100.xhp\n"
-"hd_id3150344\n"
-"36\n"
+"03090408.xhp\n"
+"hd_id3156344\n"
+"5\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03102100.xhp
-#, fuzzy
-msgctxt ""
-"03102100.xhp\n"
-"par_id3154657\n"
-"40\n"
-"help.text"
-msgid "sVar = \"Office\""
-msgstr "Shiriti i Office"
-
-#: 03102100.xhp
-#, fuzzy
-msgctxt ""
-"03102100.xhp\n"
-"par_id3149036\n"
-"44\n"
-"help.text"
-msgid "' Two-dimensional data field"
-msgstr "Të dhëna të Adresës - Fusha e Caktuar"
-
-#: 03102100.xhp
-msgctxt ""
-"03102100.xhp\n"
-"par_id3153782\n"
-"46\n"
-"help.text"
-msgid "Const sDim As String = \" Dimension:\""
-msgstr ""
-
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
+"03090409.xhp\n"
"tit\n"
"help.text"
-msgid "FreeFile Function[Runtime]"
+msgid "Sub Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"bm_id3150400\n"
+"03090409.xhp\n"
+"bm_id3147226\n"
"help.text"
-msgid "<bookmark_value>FreeFile function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>Sub statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"hd_id3150400\n"
+"03090409.xhp\n"
+"hd_id3147226\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020102.xhp\" name=\"FreeFile Function[Runtime]\">FreeFile Function[Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Sub Statement [Runtime]\">Sub Statement [Runtime]</link>"
msgstr ""
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"par_id3154366\n"
+"03090409.xhp\n"
+"par_id3153311\n"
"2\n"
"help.text"
-msgid "Returns the next available file number for opening a file. Use this function to open a file using a file number that is not already in use by a currently open file."
-msgstr ""
+msgid "Defines a subroutine."
+msgstr "Definon llojin e të dhënës së një vlere."
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"hd_id3150769\n"
+"03090409.xhp\n"
+"hd_id3149416\n"
"3\n"
"help.text"
-msgid "Syntax:"
+msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"hd_id3151042\n"
+"03090409.xhp\n"
+"par_id3147530\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "statement block"
+msgstr "Shigjetat e bllokut"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"par_id3150440\n"
-"6\n"
+"03090409.xhp\n"
+"hd_id3153525\n"
+"9\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"hd_id3148576\n"
-"7\n"
+"03090409.xhp\n"
+"par_id3150792\n"
+"10\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "<emph>Name:</emph> Name of the subroutine ."
+msgstr "Shtegu/Emri i fajllit"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"par_id3155854\n"
-"8\n"
+"03090409.xhp\n"
+"par_id3154138\n"
+"11\n"
"help.text"
-msgid "This function can only be used immediately in front of an Open statement. FreeFile returns the next available file number, but does not reserve it."
+msgid "<emph>VarName: </emph>Parameter that you want to pass to the subroutine."
msgstr ""
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"hd_id3159153\n"
-"9\n"
+"03090409.xhp\n"
+"par_id3154908\n"
+"12\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "<emph>Type:</emph> Type-declaration key word."
+msgstr ""
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"par_id3155416\n"
-"18\n"
+"03090409.xhp\n"
+"hd_id3153770\n"
+"16\n"
"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Nga kreu në fund"
+msgid "Example:"
+msgstr "Shembull"
-#: 03020102.xhp
+#: 03090409.xhp
msgctxt ""
-"03020102.xhp\n"
-"par_id3153416\n"
-"19\n"
+"03090409.xhp\n"
+"par_idN1063F\n"
"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Nga kreu në fund"
+msgid "' some statements"
+msgstr "Kjo mund të kërkojë pak kohë."
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
+"03090410.xhp\n"
"tit\n"
"help.text"
-msgid "ConvertToURL Function [Runtime]"
+msgid "Switch Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"bm_id3152801\n"
+"03090410.xhp\n"
+"bm_id3148554\n"
"help.text"
-msgid "<bookmark_value>ConvertToURL function</bookmark_value>"
-msgstr "E kthen funksionin gabim plotwsues"
+msgid "<bookmark_value>Switch function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"hd_id3152801\n"
+"03090410.xhp\n"
+"hd_id3148554\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL Function [Runtime]\">ConvertToURL Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch Function [Runtime]\">Switch Function [Runtime]</link>"
msgstr ""
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3148538\n"
+"03090410.xhp\n"
+"par_id3148522\n"
"2\n"
"help.text"
-msgid "Converts a system file name to a file URL."
+msgid "Evaluates a list of arguments, consisting of an expression followed by a value. The Switch function returns a value that is associated with the expression that is passed by this function."
msgstr ""
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"hd_id3150669\n"
+"03090410.xhp\n"
+"hd_id3154863\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3154285\n"
+"03090410.xhp\n"
+"par_id3155934\n"
"4\n"
"help.text"
-msgid "ConvertToURL(filename)"
+msgid "Switch (Expression1, Value1[, Expression2, Value2[..., Expression_n, Value_n]])"
msgstr ""
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"hd_id3150984\n"
+"03090410.xhp\n"
+"hd_id3149119\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3147530\n"
+"03090410.xhp\n"
+"par_id3153894\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "The <emph>Switch</emph> function evaluates the expressions from left to right, and then returns the value that is assigned to the function expression. If expression and value are not given as a pair, a runtime error occurs."
+msgstr ""
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"hd_id3148550\n"
+"03090410.xhp\n"
+"par_id3153990\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "<emph>Expression:</emph> The expression that you want to evaluate."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3148947\n"
+"03090410.xhp\n"
+"par_id3153394\n"
"8\n"
"help.text"
-msgid "<emph>Filename:</emph> A file name as string."
+msgid "<emph>Value:</emph> The value that you want to return if the expression is True."
msgstr ""
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"hd_id3153361\n"
+"03090410.xhp\n"
+"par_id3153346\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "In the following example, the <emph>Switch</emph> function assigns the appropriate gender to the name that is passed to the function:"
+msgstr ""
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3150792\n"
+"03090410.xhp\n"
+"hd_id3159157\n"
"10\n"
"help.text"
-msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
-msgstr "Tekst i thjeshtë (*.txt)"
-
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3154365\n"
-"11\n"
-"help.text"
-msgid "url$ = ConvertToURL( systemFile$ )"
-msgstr "Shto URL butonin"
-
-#: 03120312.xhp
-msgctxt ""
-"03120312.xhp\n"
-"par_id3151042\n"
-"12\n"
-"help.text"
-msgid "print url$"
-msgstr "URL njohje"
+msgid "Example:"
+msgstr "Shembull"
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3154909\n"
+"03090410.xhp\n"
+"par_id3149579\n"
"13\n"
"help.text"
-msgid "systemFileAgain$ = ConvertFromURL( url$ )"
-msgstr "Shto URL butonin"
+msgid "sGender = GetGenderIndex( \"John\" )"
+msgstr ""
-#: 03120312.xhp
+#: 03090410.xhp
msgctxt ""
-"03120312.xhp\n"
-"par_id3144762\n"
-"14\n"
+"03090410.xhp\n"
+"par_id3153361\n"
+"18\n"
"help.text"
-msgid "print systemFileAgain$"
-msgstr "Opcionet e shtypjes"
+msgid "GetGenderIndex = Switch(sName = \"Jane\", \"female\", sName = \"John\", \"male\")"
+msgstr ""
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
+"03090411.xhp\n"
"tit\n"
"help.text"
-msgid "Set Statement[Runtime]"
+msgid "With Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"bm_id3154422\n"
+"03090411.xhp\n"
+"bm_id3153311\n"
"help.text"
-msgid "<bookmark_value>Set statement</bookmark_value><bookmark_value>Nothing object</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>With statement</bookmark_value>"
+msgstr "Vlera #1 nuk mund të përdoret me LIKE!"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"hd_id3154422\n"
+"03090411.xhp\n"
+"hd_id3153311\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Set Statement[Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090411.xhp\" name=\"With Statement [Runtime]\">With Statement [Runtime]</link>"
msgstr ""
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"par_id3159149\n"
+"03090411.xhp\n"
+"par_id3159158\n"
"2\n"
"help.text"
-msgid "Sets an object reference on a variable or a Property."
+msgid "Sets an object as the default object. Unless another object name is declared, all properties and methods refer to the default object until the End With statement is reached."
msgstr ""
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"hd_id3153105\n"
+"03090411.xhp\n"
+"hd_id3156153\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"par_id3154217\n"
+"03090411.xhp\n"
+"par_id3145609\n"
"4\n"
"help.text"
-msgid "Set ObjectVar = Object"
-msgstr "Variabla e objektit nuk është përcaktuar"
+msgid "With Object Statement block End With"
+msgstr ""
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"hd_id3154685\n"
+"03090411.xhp\n"
+"hd_id3154924\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03103700.xhp
+#: 03090411.xhp
msgctxt ""
-"03103700.xhp\n"
-"par_id3156281\n"
+"03090411.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
-msgid "<emph>ObjectVar:</emph> a variable or a property that requires an object reference."
-msgstr ""
-
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"par_id3159252\n"
-"7\n"
-"help.text"
-msgid "<emph>Object:</emph> Object that the variable or the property refers to."
-msgstr ""
-
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"par_idN10623\n"
-"help.text"
-msgid "<emph>Nothing</emph> - Assign the <emph>Nothing</emph> object to a variable to remove a previous assignment."
+msgid "Use <emph>With</emph> and <emph>End With</emph> if you have several properties or methods for a single object."
msgstr ""
-#: 03103700.xhp
-msgctxt ""
-"03103700.xhp\n"
-"hd_id3159153\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
+"03090412.xhp\n"
"tit\n"
"help.text"
-msgid "DefDate Statement [Runtime]"
+msgid "Exit Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"bm_id3150504\n"
+"03090412.xhp\n"
+"bm_id3152924\n"
"help.text"
-msgid "<bookmark_value>DefDate statement</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>Exit statement</bookmark_value>"
+msgstr "Vlera #1 nuk mund të përdoret me LIKE!"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"hd_id3150504\n"
+"03090412.xhp\n"
+"hd_id3152924\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"DefDate Statement [Runtime]\">DefDate Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit Statement [Runtime]\">Exit Statement [Runtime]</link>"
msgstr ""
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"par_id3145069\n"
+"03090412.xhp\n"
+"par_id3153394\n"
"2\n"
"help.text"
-msgid "If no type-declaration character or keyword is specified, the DefDate statement sets the default variable type, according to a letter range."
+msgid "Exits a <emph>Do...Loop</emph>, <emph>For...Next</emph>, a function, or a subroutine."
msgstr ""
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"hd_id3154758\n"
+"03090412.xhp\n"
+"hd_id3149763\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"par_id3148664\n"
+"03090412.xhp\n"
+"par_id3159157\n"
"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
+msgid "see Parameters"
+msgstr "Parametrat animues"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"hd_id3150541\n"
+"03090412.xhp\n"
+"hd_id3148943\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"par_id3156709\n"
+"03090412.xhp\n"
+"par_id3154760\n"
"6\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
-msgstr ""
+msgid "<emph>Exit Do</emph>"
+msgstr "Ruaj dokumentet"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"par_id3150869\n"
+"03090412.xhp\n"
+"par_id3147559\n"
"7\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgid "Only valid within a <emph>Do...Loop</emph> statement to exit the loop. Program execution continues with the statement that follows the Loop statement. If <emph>Do...Loop</emph> statements are nested, the control is transferred to the loop in the next higher level."
msgstr ""
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"par_id3145171\n"
+"03090412.xhp\n"
+"par_id3150398\n"
"8\n"
"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "**Ndryshorja nuk u gjet**"
+msgid "<emph>Exit For</emph>"
+msgstr "Cakto drejtimin e daljes për %O"
-#: 03101300.xhp
+#: 03090412.xhp
msgctxt ""
-"03101300.xhp\n"
-"par_id3150767\n"
+"03090412.xhp\n"
+"par_id3148797\n"
"9\n"
"help.text"
-msgid "<emph>DefDate:</emph> Date"
-msgstr "Formati numerik: datë"
-
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"hd_id3153768\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"par_id3145785\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr ""
-
-#: 03101300.xhp
-msgctxt ""
-"03101300.xhp\n"
-"par_id3152462\n"
-"22\n"
-"help.text"
-msgid "tDate=Date ' tDate is an implicit date variable"
-msgstr ""
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Libraries, Modules and Dialogs"
-msgstr ""
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3147317\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01020500.xhp\" name=\"Libraries, Modules and Dialogs\">Libraries, Modules and Dialogs</link>"
-msgstr ""
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"par_id3147427\n"
-"2\n"
-"help.text"
-msgid "The following describes the basic use of libraries, modules and dialogs in $[officename] Basic."
-msgstr ""
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"par_id3146120\n"
-"3\n"
-"help.text"
-msgid "$[officename] Basic provides tools to help you structuring your projects. It supports various \"units\" which enable you to group individual SUBS and FUNCTIONS in a Basic project."
-msgstr ""
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3148575\n"
-"5\n"
-"help.text"
-msgid "Libraries"
-msgstr "Biblotekat"
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"par_id3150011\n"
-"6\n"
-"help.text"
-msgid "Libraries serve as a tool for organizing modules, and can either be attached to a document or a template. When the document or a template is saved, all modules contained in the library are automatically saved as well."
-msgstr ""
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"par_id3151112\n"
-"7\n"
-"help.text"
-msgid "A library can contain up to 16,000 modules."
+msgid "Only valid within a <emph>For...Next</emph> loop to exit the loop. Program execution continues with the first statement that follows the <emph>Next</emph> statement. In nested statements, the control is transferred to the loop in the next higher level."
msgstr ""
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"hd_id3149262\n"
-"8\n"
-"help.text"
-msgid "Modules"
-msgstr "Modulet"
-
-#: 01020500.xhp
+#: 03090412.xhp
msgctxt ""
-"01020500.xhp\n"
-"par_id3156441\n"
-"9\n"
+"03090412.xhp\n"
+"par_id3147229\n"
+"10\n"
"help.text"
-msgid "A module contains SUBS and FUNCTIONS along with variable declarations. The length of the program that can be saved in a module is limited to 64 KB. If more space is required you can divide a $[officename] Basic project among several modules, and then save them in a single library."
-msgstr ""
+msgid "<emph>Exit Function</emph>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 01020500.xhp
+#: 03090412.xhp
msgctxt ""
-"01020500.xhp\n"
-"hd_id3152577\n"
+"03090412.xhp\n"
+"par_id3154685\n"
"11\n"
"help.text"
-msgid "Dialog Modules"
-msgstr "Edito Modulet"
-
-#: 01020500.xhp
-msgctxt ""
-"01020500.xhp\n"
-"par_id3149377\n"
-"12\n"
-"help.text"
-msgid "Dialog modules contain dialog definitions, including the dialog box properties, the properties of each dialog element and the events assigned. Since a dialog module can only contain a single dialog, they are often referred to as \"dialogs\"."
+msgid "Exits the <emph>Function</emph> procedure immediately. Program execution continues with the statement that follows the <emph>Function</emph> call."
msgstr ""
-#: 03030000.xhp
+#: 03090412.xhp
msgctxt ""
-"03030000.xhp\n"
-"tit\n"
+"03090412.xhp\n"
+"par_id3155132\n"
+"12\n"
"help.text"
-msgid "Date and Time Functions"
-msgstr "Fusha e datës dhe kohës"
+msgid "<emph>Exit Sub</emph>"
+msgstr "Pozita relative e daljes"
-#: 03030000.xhp
+#: 03090412.xhp
msgctxt ""
-"03030000.xhp\n"
-"hd_id3150502\n"
-"1\n"
+"03090412.xhp\n"
+"par_id3149561\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030000.xhp\" name=\"Date and Time Functions\">Date and Time Functions</link>"
+msgid "Exits the subroutine immediately. Program execution continues with the statement that follows the <emph>Sub</emph> call."
msgstr ""
-#: 03030000.xhp
+#: 03090412.xhp
msgctxt ""
-"03030000.xhp\n"
-"par_id3153255\n"
-"2\n"
+"03090412.xhp\n"
+"par_id3153143\n"
+"14\n"
"help.text"
-msgid "Use the statements and functions described here to perform date and time calculations."
+msgid "The Exit statement does not define the end of a structure, and must not be confused with the End statement."
msgstr ""
-#: 03030000.xhp
+#: 03090412.xhp
msgctxt ""
-"03030000.xhp\n"
-"par_id3152363\n"
-"3\n"
+"03090412.xhp\n"
+"hd_id3147348\n"
+"15\n"
"help.text"
-msgid "<item type=\"productname\">%PRODUCTNAME</item> Basic lets you calculate time or date differences by converting the time and date values to continuous numeric values. After the difference is calculated, special functions are used to reconvert the values to the standard time or date formats."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03030000.xhp
+#: 03090412.xhp
msgctxt ""
-"03030000.xhp\n"
-"par_id3151054\n"
-"4\n"
+"03090412.xhp\n"
+"par_id3153158\n"
+"20\n"
"help.text"
-msgid "You can combine date and time values into a single floating-decimal number. Dates are converted to integers, and times to decimal values. <item type=\"productname\">%PRODUCTNAME</item> Basic also supports the variable type Date, which can contain a time specification consisting of both a date and time."
+msgid "For siStep = 0 To 10 ' Fill array with test data"
msgstr ""
-#: 03090000.xhp
-msgctxt ""
-"03090000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Controlling Program Execution"
-msgstr "%PRODUCTNAME Modulet e programeve"
-
-#: 03090000.xhp
+#: 03090412.xhp
msgctxt ""
-"03090000.xhp\n"
-"hd_id3145136\n"
-"1\n"
+"03090412.xhp\n"
+"par_id3153764\n"
+"31\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090000.xhp\" name=\"Controlling Program Execution\">Controlling Program Execution</link>"
+msgid "' LinSearch searches a TextArray:sList() for a TextEntry:"
msgstr ""
-#: 03090000.xhp
+#: 03090412.xhp
msgctxt ""
-"03090000.xhp\n"
-"par_id3143268\n"
-"2\n"
+"03090412.xhp\n"
+"par_id3148995\n"
+"32\n"
"help.text"
-msgid "The following statements control the execution of a program."
+msgid "' Returns the index of the entry or 0 (Null)"
msgstr ""
-#: 03090000.xhp
+#: 03090412.xhp
msgctxt ""
-"03090000.xhp\n"
-"par_id3156152\n"
-"3\n"
+"03090412.xhp\n"
+"par_id3149567\n"
+"35\n"
"help.text"
-msgid "A program generally executes from the first line of code to the last line of code. You can also execute certain procedures within the program according to specific conditions, or repeat a section of the program within a sub-procedure or function. You can use loops to repeat parts of a program as many times as necessary, or until a certain condition is met. These type of control statements are classified as Condition, Loop, or Jump statements."
+msgid "Exit For ' sItem found"
msgstr ""
-#: 03080000.xhp
+#: 03100000.xhp
msgctxt ""
-"03080000.xhp\n"
+"03100000.xhp\n"
"tit\n"
"help.text"
-msgid "Numeric Functions"
-msgstr "Funksionet statistikore"
+msgid "Variables"
+msgstr "Variablat"
-#: 03080000.xhp
+#: 03100000.xhp
msgctxt ""
-"03080000.xhp\n"
-"hd_id3153127\n"
+"03100000.xhp\n"
+"hd_id3149669\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080000.xhp\" name=\"Numeric Functions\">Numeric Functions</link>"
+msgid "<link href=\"text/sbasic/shared/03100000.xhp\" name=\"Variables\">Variables</link>"
msgstr ""
-#: 03080000.xhp
+#: 03100000.xhp
msgctxt ""
-"03080000.xhp\n"
-"par_id3148550\n"
+"03100000.xhp\n"
+"par_id3147265\n"
"2\n"
"help.text"
-msgid "The following numeric functions perform calculations. Mathematical and Boolean operators are described in a separate section. Functions differ from operators in that functions pass arguments and return a result, instead of operators that return a result by combining two numeric expressions."
+msgid "The following statements and functions are for working with variables. You can use these functions to declare or define variables, convert variables from one type to another, or determine the variable type."
msgstr ""
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
+"03100050.xhp\n"
"tit\n"
"help.text"
-msgid "UCase Function [Runtime]"
+msgid "CCur Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"bm_id3153527\n"
+"03100050.xhp\n"
+"bm_id8926053\n"
"help.text"
-msgid "<bookmark_value>UCase function</bookmark_value>"
+msgid "<bookmark_value>CCur function</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"hd_id3153527\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase Function [Runtime]\">UCase Function [Runtime]</link>"
-msgstr ""
-
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3155420\n"
-"2\n"
+"03100050.xhp\n"
+"par_idN10541\n"
"help.text"
-msgid "Converts lowercase characters in a string to uppercase."
+msgid "<link href=\"text/sbasic/shared/03100050.xhp\">CCur Function [Runtime]</link>"
msgstr ""
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3150771\n"
-"3\n"
+"03100050.xhp\n"
+"par_idN10545\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">LCase Function</link>"
+msgid "Converts a string expression or numeric expression to a currency expression. The locale settings are used for decimal separators and currency symbols."
msgstr ""
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3149233\n"
-"4\n"
+"03100050.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "<emph>Syntax</emph>:"
+msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3153061\n"
-"5\n"
+"03100050.xhp\n"
+"par_idN105E8\n"
"help.text"
-msgid "UCase (Text As String)"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "CCur(Expression)"
+msgstr "Shprehje e rezervuar"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3159414\n"
-"6\n"
+"03100050.xhp\n"
+"par_idN105EB\n"
"help.text"
-msgid "<emph>Return value</emph>:"
-msgstr "Veprimi përfundoi [Time]: [1]. Vlera kthyese [2]."
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3146795\n"
-"7\n"
+"03100050.xhp\n"
+"par_idN105EF\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "Currency"
+msgstr "Fusha e valutave"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"hd_id3149457\n"
-"8\n"
+"03100050.xhp\n"
+"par_idN105F2\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Parameter:"
+msgstr "Parametri i sllajdit"
-#: 03120310.xhp
+#: 03100050.xhp
msgctxt ""
-"03120310.xhp\n"
-"par_id3150791\n"
-"9\n"
+"03100050.xhp\n"
+"par_idN105F6\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to convert."
+msgid "Expression: Any string or numeric expression that you want to convert."
msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"hd_id3154125\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3149204\n"
-"14\n"
-"help.text"
-msgid "Print LCase(sVar) ' returns \"las vegas\""
-msgstr ""
-
-#: 03120310.xhp
-msgctxt ""
-"03120310.xhp\n"
-"par_id3156280\n"
-"15\n"
-"help.text"
-msgid "Print UCase(sVar) ' returns \"LAS VEGAS\""
-msgstr ""
-
#: 03100060.xhp
msgctxt ""
"03100060.xhp\n"
@@ -20541,1003 +23898,872 @@ msgctxt ""
msgid "Expression: Any string or numeric expression that you want to convert."
msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
+"03100070.xhp\n"
"tit\n"
"help.text"
-msgid "Event-Driven Macros"
-msgstr "Makrot ekzistuese në:\\n"
-
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"bm_id3154581\n"
-"help.text"
-msgid "<bookmark_value>deleting; macro assignments to events</bookmark_value> <bookmark_value>macros; assigning to events</bookmark_value> <bookmark_value>assigning macros to events</bookmark_value> <bookmark_value>events; assigning macros</bookmark_value>"
-msgstr ""
+msgid "CVar Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"hd_id3147348\n"
-"1\n"
+"03100070.xhp\n"
+"bm_id2338633\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01040000.xhp\" name=\"Event-Driven Macros\">Event-Driven Macros</link>"
-msgstr ""
+msgid "<bookmark_value>CVar function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3146120\n"
-"2\n"
+"03100070.xhp\n"
+"par_idN1054B\n"
"help.text"
-msgid "This section describes how to assign Basic programs to program events."
+msgid "<link href=\"text/sbasic/shared/03100070.xhp\">CVar Function [Runtime]</link>"
msgstr ""
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3149263\n"
-"4\n"
+"03100070.xhp\n"
+"par_idN1055B\n"
"help.text"
-msgid "You can automatically execute a macro when a specified software event occurs by assigning the desired macro to the event. The following table provides an overview of program events and at what point an assigned macro is executed."
+msgid "Converts a string expression or numeric expression to a variant expression."
msgstr ""
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3148455\n"
-"5\n"
-"help.text"
-msgid "Event"
-msgstr "Ngjarje"
-
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3145799\n"
-"6\n"
+"03100070.xhp\n"
+"par_idN1055E\n"
"help.text"
-msgid "An assigned macro is executed..."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3149379\n"
-"7\n"
+"03100070.xhp\n"
+"par_idN10562\n"
"help.text"
-msgid "Program Start"
-msgstr "Numërimi 1 Fillimi"
+msgid "CVar(Expression)"
+msgstr "Shprehje e rezervuar"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150715\n"
-"8\n"
+"03100070.xhp\n"
+"par_idN10565\n"
"help.text"
-msgid "... after a $[officename] application is started."
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3146914\n"
-"9\n"
+"03100070.xhp\n"
+"par_idN10569\n"
"help.text"
-msgid "Program End"
-msgstr "Numrimi 1 Fundi"
+msgid "Variant."
+msgstr "Zgjedhni një variantë"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3153765\n"
-"10\n"
+"03100070.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "...before a $[officename] application is terminated."
-msgstr ""
+msgid "Parameter:"
+msgstr "Parametri i sllajdit"
-#: 01040000.xhp
+#: 03100070.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3145150\n"
-"11\n"
+"03100070.xhp\n"
+"par_idN10570\n"
"help.text"
-msgid "Create Document"
-msgstr "Krijo dokumentin"
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3163808\n"
-"12\n"
+"03100080.xhp\n"
+"tit\n"
"help.text"
-msgid "...after a new document is created with <emph>File - New</emph> or with the <emph>New</emph> icon."
-msgstr ""
+msgid "CVErr Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3145790\n"
-"13\n"
+"03100080.xhp\n"
+"bm_id531022\n"
"help.text"
-msgid "Open Document"
-msgstr "Hape Dokumentin"
+msgid "<bookmark_value>CVErr function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3154572\n"
-"14\n"
+"03100080.xhp\n"
+"par_idN1054B\n"
"help.text"
-msgid "...after a document is opened with <emph>File - Open</emph> or with the <emph>Open</emph> icon."
+msgid "<link href=\"text/sbasic/shared/03100080.xhp\">CVErr Function [Runtime]</link>"
msgstr ""
-#: 01040000.xhp
-msgctxt ""
-"01040000.xhp\n"
-"par_id3153266\n"
-"15\n"
-"help.text"
-msgid "Save Document As"
-msgstr "Ruaj dokumentin si"
-
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150208\n"
-"16\n"
+"03100080.xhp\n"
+"par_idN1055B\n"
"help.text"
-msgid "...before a document is saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or the <emph>Save</emph> icon, if a document name has not yet been specified)."
+msgid "Converts a string expression or numeric expression to a variant expression of the sub type \"Error\"."
msgstr ""
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3158215\n"
-"43\n"
+"03100080.xhp\n"
+"par_idN1055E\n"
"help.text"
-msgid "Document has been saved as"
-msgstr "Dokumenti është ruajtur si"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150980\n"
-"44\n"
+"03100080.xhp\n"
+"par_idN10562\n"
"help.text"
-msgid "... after a document was saved under a specified name (with <emph>File - Save As</emph>, or with <emph>File - Save</emph> or with the <emph>Save</emph> icon, if a document name has not yet been specified)."
-msgstr ""
+msgid "CVErr(Expression)"
+msgstr "Shprehje e rezervuar"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150519\n"
-"17\n"
+"03100080.xhp\n"
+"par_idN10565\n"
"help.text"
-msgid "Save Document"
-msgstr "Ruaje dokumentin"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3155529\n"
-"18\n"
+"03100080.xhp\n"
+"par_idN10569\n"
"help.text"
-msgid "...before a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
-msgstr ""
+msgid "Variant."
+msgstr "Zgjedhni një variantë"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3149404\n"
-"45\n"
+"03100080.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "Document has been saved"
-msgstr "Dokumenti është ruajtur"
+msgid "Parameter:"
+msgstr "Parametri i sllajdit"
-#: 01040000.xhp
+#: 03100080.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3151332\n"
-"46\n"
+"03100080.xhp\n"
+"par_idN10570\n"
"help.text"
-msgid "...after a document is saved with <emph>File - Save</emph> or the <emph>Save</emph> icon, provided that a document name has already been specified."
-msgstr ""
+msgid "Expression: Any string or numeric expression that you want to convert."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3159171\n"
-"19\n"
+"03100100.xhp\n"
+"tit\n"
"help.text"
-msgid "Document is closing"
-msgstr "Është duke u shtypur në"
+msgid "CBool Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3146868\n"
-"20\n"
+"03100100.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "...before a document is closed."
-msgstr "Kërkimi i dokumetit ka përfunduar."
+msgid "<bookmark_value>CBool function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3159097\n"
-"47\n"
+"03100100.xhp\n"
+"hd_id3150616\n"
+"1\n"
"help.text"
-msgid "Document closed"
-msgstr "Është duke u shtypur në"
+msgid "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"CBool Function [Runtime]\">CBool Function [Runtime]</link>"
+msgstr ""
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3148606\n"
-"48\n"
+"03100100.xhp\n"
+"par_id3145136\n"
+"2\n"
"help.text"
-msgid "...after a document was closed. Note that the \"Save Document\" event may also occur when the document is saved before closing."
+msgid "Converts a string comparison or numeric comparison to a Boolean expression, or converts a single numeric expression to a Boolean expression."
msgstr ""
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3144772\n"
-"21\n"
+"03100100.xhp\n"
+"hd_id3153345\n"
+"3\n"
"help.text"
-msgid "Activate Document"
-msgstr "Aktivizo dokumentin"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3149442\n"
-"22\n"
+"03100100.xhp\n"
+"par_id3149514\n"
+"4\n"
"help.text"
-msgid "...after a document is brought to the foreground."
+msgid "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)"
msgstr ""
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150888\n"
-"23\n"
+"03100100.xhp\n"
+"hd_id3156152\n"
+"5\n"
"help.text"
-msgid "Deactivate Document"
-msgstr "Deaktivizo dokumentin"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3154060\n"
-"24\n"
+"03100100.xhp\n"
+"par_id3155419\n"
+"6\n"
"help.text"
-msgid "...after another document is brought to the foreground."
-msgstr ""
+msgid "Bool"
+msgstr "JO logjike"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3152384\n"
-"25\n"
+"03100100.xhp\n"
+"hd_id3147530\n"
+"7\n"
"help.text"
-msgid "Print Document"
-msgstr "Printo dokumentin"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3152873\n"
-"26\n"
+"03100100.xhp\n"
+"par_id3156344\n"
+"8\n"
"help.text"
-msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins."
+msgid "<emph>Expression1, Expression2:</emph> Any string or numeric expressions that you want to compare. If the expressions match, the <emph>CBool</emph> function returns <emph>True</emph>, otherwise <emph>False</emph> is returned."
msgstr ""
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3159227\n"
-"49\n"
+"03100100.xhp\n"
+"par_id3149655\n"
+"9\n"
"help.text"
-msgid "JavaScript run-time error"
+msgid "<emph>Number:</emph> Any numeric expression that you want to convert. If the expression equals 0, <emph>False</emph> is returned, otherwise <emph>True</emph> is returned."
msgstr ""
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3145362\n"
-"50\n"
+"03100100.xhp\n"
+"par_id3145171\n"
+"10\n"
"help.text"
-msgid "...when a JavaScript run-time error occurs."
+msgid "The following example uses the <emph>CBool</emph> function to evaluate the value that is returned by the <emph>Instr</emph> function. The function checks if the word \"and\" is found in the sentence that was entered by the user."
msgstr ""
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3154767\n"
-"27\n"
+"03100100.xhp\n"
+"hd_id3156212\n"
+"11\n"
"help.text"
-msgid "Print Mail Merge"
-msgstr "Pranuesit e bashkangjitjes me të dhëna"
+msgid "Example:"
+msgstr "Shembull"
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3153555\n"
-"28\n"
+"03100100.xhp\n"
+"par_id3155132\n"
+"14\n"
"help.text"
-msgid "...after the <emph>Print</emph> dialog is closed, but before the actual print process begins. This event occurs for each copy printed."
+msgid "sText = InputBox(\"Please enter a short sentence:\")"
msgstr ""
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3156366\n"
-"51\n"
+"03100100.xhp\n"
+"par_id3155855\n"
+"15\n"
"help.text"
-msgid "Change of the page count"
-msgstr "Shto numërimin e faqeve"
+msgid "' Proof if the word »and« appears in the sentence."
+msgstr ""
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3154627\n"
-"52\n"
+"03100100.xhp\n"
+"par_id3146984\n"
+"16\n"
"help.text"
-msgid "...when the page count changes."
+msgid "' Instead of the command line"
msgstr ""
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3154737\n"
-"53\n"
+"03100100.xhp\n"
+"par_id3148576\n"
+"17\n"
"help.text"
-msgid "Message received"
-msgstr "Mesazhi i e-mail"
+msgid "' If Instr(Input, \"and\")<>0 Then..."
+msgstr ""
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150952\n"
-"54\n"
+"03100100.xhp\n"
+"par_id3154014\n"
+"18\n"
"help.text"
-msgid "...if a message was received."
+msgid "' the CBool function is applied as follows:"
msgstr ""
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"hd_id3153299\n"
-"30\n"
+"03100100.xhp\n"
+"par_id3155413\n"
+"19\n"
"help.text"
-msgid "Assigning a Macro to an Event"
-msgstr "Dëshiron të aktivizosh makron?"
+msgid "If CBool(Instr(sText, \"and\")) Then"
+msgstr ""
-#: 01040000.xhp
+#: 03100100.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3147244\n"
-"31\n"
+"03100100.xhp\n"
+"par_id3152940\n"
+"20\n"
"help.text"
-msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
+msgid "MsgBox \"The word »and« appears in the sentence you entered!\""
msgstr ""
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3146098\n"
-"55\n"
+"03100300.xhp\n"
+"tit\n"
"help.text"
-msgid "Select whether you want the assignment to be globally valid or just valid in the current document in the <emph>Save In</emph> listbox."
-msgstr ""
+msgid "CDate Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3150431\n"
-"32\n"
+"03100300.xhp\n"
+"bm_id3150772\n"
"help.text"
-msgid "Select the event from the <emph>Event</emph> list."
-msgstr "Zgjidh skemën e tastierës nga lista e arkitekturave"
+msgid "<bookmark_value>CDate function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3148742\n"
-"33\n"
+"03100300.xhp\n"
+"hd_id3150772\n"
+"1\n"
"help.text"
-msgid "Click <emph>Macro</emph> and select the macro to be assigned to the selected event."
+msgid "<link href=\"text/sbasic/shared/03100300.xhp\" name=\"CDate Function [Runtime]\">CDate Function [Runtime]</link>"
msgstr ""
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3146321\n"
-"35\n"
+"03100300.xhp\n"
+"par_id3150986\n"
+"2\n"
"help.text"
-msgid "Click <emph>OK</emph> to assign the macro."
+msgid "Converts any string or numeric expression to a date value."
msgstr ""
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3147414\n"
-"56\n"
+"03100300.xhp\n"
+"hd_id3148944\n"
+"3\n"
"help.text"
-msgid "Click <emph>OK</emph> to close the dialog."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"hd_id3154581\n"
-"36\n"
+"03100300.xhp\n"
+"par_id3148947\n"
+"4\n"
"help.text"
-msgid "Removing the Assignment of a Macro to an Event"
-msgstr ""
+msgid "CDate (Expression)"
+msgstr "Shprehje e rezervuar"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3146883\n"
-"57\n"
+"03100300.xhp\n"
+"hd_id3148552\n"
+"5\n"
"help.text"
-msgid "Choose <emph>Tools - Customize</emph> and click the <emph>Events</emph> tab."
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3155909\n"
-"58\n"
+"03100300.xhp\n"
+"par_id3159414\n"
+"6\n"
"help.text"
-msgid "Select whether you want to remove a global assignment or an assignment that is just valid in the current document by selecting the option in the <emph>Save In</emph> listbox."
-msgstr ""
+msgid "Date"
+msgstr "Data"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3159129\n"
-"59\n"
+"03100300.xhp\n"
+"hd_id3153525\n"
+"7\n"
"help.text"
-msgid "Select the event that contains the assignment to be removed from the <emph>Event</emph> list."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3149143\n"
-"37\n"
+"03100300.xhp\n"
+"par_id3150359\n"
+"8\n"
"help.text"
-msgid "Click <emph>Remove</emph>."
-msgstr "Largo nga adresa"
+msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 01040000.xhp
+#: 03100300.xhp
msgctxt ""
-"01040000.xhp\n"
-"par_id3149351\n"
-"60\n"
+"03100300.xhp\n"
+"par_id3125864\n"
+"9\n"
"help.text"
-msgid "Click <emph>OK</emph> to close the dialog."
+msgid "When you convert a string expression, the date and time must be entered in the format MM.DD.YYYY HH.MM.SS, as defined by the <emph>DateValue</emph> and <emph>TimeValue</emph> function conventions. In numeric expressions, values to the left of the decimal represent the date, beginning from December 31, 1899. Values to the right of the decimal represent the time."
msgstr ""
-#: 01030300.xhp
+#: 03100300.xhp
msgctxt ""
-"01030300.xhp\n"
+"03100300.xhp\n"
+"hd_id3156422\n"
+"10\n"
+"help.text"
+msgid "Example:"
+msgstr "Shembull"
+
+#: 03100400.xhp
+msgctxt ""
+"03100400.xhp\n"
"tit\n"
"help.text"
-msgid "Debugging a Basic Program"
-msgstr "%PRODUCTNAME Modulet e programeve"
+msgid "CDbl Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"bm_id3153344\n"
+"03100400.xhp\n"
+"bm_id3153750\n"
"help.text"
-msgid "<bookmark_value>debugging Basic programs</bookmark_value><bookmark_value>variables; observing values</bookmark_value><bookmark_value>watching variables</bookmark_value><bookmark_value>run-time errors in Basic</bookmark_value><bookmark_value>error codes in Basic</bookmark_value><bookmark_value>breakpoints</bookmark_value><bookmark_value>Call Stack window</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>CDbl function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"hd_id3153344\n"
+"03100400.xhp\n"
+"hd_id3153750\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01030300.xhp\">Debugging a Basic Program</link>"
+msgid "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"CDbl Function [Runtime]\">CDbl Function [Runtime]</link>"
msgstr ""
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"hd_id3159224\n"
-"4\n"
+"03100400.xhp\n"
+"par_id3149233\n"
+"2\n"
"help.text"
-msgid "Breakpoints and Single Step Execution"
+msgid "Converts any numerical expression or string expression to a double type."
msgstr ""
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3150682\n"
-"5\n"
+"03100400.xhp\n"
+"hd_id3149516\n"
+"3\n"
"help.text"
-msgid "You can check each line in your Basic program for errors using single step execution. Errors are easily traced since you can immediately see the result of each step. A pointer in the breakpoint column of the Editor indicates the current line. You can also set a breakpoint if you want to force the program to be interrupted at a specific position."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3147303\n"
-"7\n"
+"03100400.xhp\n"
+"par_id3156152\n"
+"4\n"
"help.text"
-msgid "Double-click in the <emph>breakpoint</emph> column at the left of the Editor window to toggle a breakpoint at the corresponding line. When the program reaches a breakpoint, the program execution is interrupted."
-msgstr ""
+msgid "CDbl (Expression)"
+msgstr "Shprehje e rezervuar"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3155805\n"
-"8\n"
+"03100400.xhp\n"
+"hd_id3153061\n"
+"5\n"
"help.text"
-msgid "The <emph>single step </emph>execution using the <emph>Single Step</emph> icon causes the program to branch into procedures and functions."
-msgstr ""
+msgid "Return value"
+msgstr "Vlerë absolute"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3151110\n"
-"25\n"
+"03100400.xhp\n"
+"par_id3145068\n"
+"6\n"
"help.text"
-msgid "The procedure step execution using the <emph>Procedure Step</emph> icon causes the program to skip over procedures and functions as a single step."
-msgstr ""
+msgid "Double"
+msgstr "Dyfish"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"hd_id3153825\n"
-"9\n"
+"03100400.xhp\n"
+"hd_id3154760\n"
+"7\n"
"help.text"
-msgid "Properties of a Breakpoint"
-msgstr "Vetitë e kornizës"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3147574\n"
-"26\n"
+"03100400.xhp\n"
+"par_id3153897\n"
+"8\n"
"help.text"
-msgid "The properties of a breakpoint are available through its context menu by right-clicking the breakpoint in the breakpoint column."
+msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
msgstr ""
-#: 01030300.xhp
+#: 03100400.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3148473\n"
-"10\n"
+"03100400.xhp\n"
+"hd_id3148797\n"
+"9\n"
"help.text"
-msgid "You can <emph>activate</emph> and <emph>deactivate</emph> a breakpoint by selecting <emph>Active</emph> from its context menu. When a breakpoint is deactivated, it does not interrupt the program execution."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3159413\n"
-"27\n"
+"03100500.xhp\n"
+"tit\n"
"help.text"
-msgid "Select <emph>Properties</emph> from the context menu of a breakpoint or select <emph>Breakpoints</emph> from the context menu of the breakpoint column to call the <emph>Breakpoints</emph> dialog where you can specify other breakpoint options."
-msgstr ""
+msgid "CInt Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3156280\n"
-"11\n"
+"03100500.xhp\n"
+"bm_id3149346\n"
"help.text"
-msgid "The list displays all <emph>breakpoints</emph> with the corresponding line number in the source code. You can activate or deactivate a selected breakpoint by checking or clearing the <emph>Active</emph> box."
-msgstr ""
+msgid "<bookmark_value>CInt function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3158407\n"
-"12\n"
+"03100500.xhp\n"
+"hd_id3149346\n"
+"1\n"
"help.text"
-msgid "The <emph>Pass Count</emph> specifies the number of times the breakpoint can be passed over before the program is interrupted. If you enter 0 (default setting) the program is always interrupted as soon as a breakpoint is encountered."
+msgid "<link href=\"text/sbasic/shared/03100500.xhp\" name=\"CInt Function [Runtime]\">CInt Function [Runtime]</link>"
msgstr ""
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3153968\n"
-"13\n"
+"03100500.xhp\n"
+"par_id3155419\n"
+"2\n"
"help.text"
-msgid "Click <emph>Delete</emph> to remove the breakpoint from the program."
+msgid "Converts any string or numeric expression to an integer."
msgstr ""
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"hd_id3150439\n"
-"14\n"
+"03100500.xhp\n"
+"hd_id3147573\n"
+"3\n"
"help.text"
-msgid "Observing the Value of Variables"
-msgstr "Vlerë në zvoglim e kryerreshtit"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3153368\n"
-"15\n"
+"03100500.xhp\n"
+"par_id3154142\n"
+"4\n"
"help.text"
-msgid "You can monitor the values of a variable by adding it to the <emph>Watch</emph> window. To add a variable to the list of watched variables, type the variable name in the <emph>Watch</emph> text box and press Enter."
-msgstr ""
+msgid "CInt (Expression)"
+msgstr "Shprehje e rezervuar"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3146986\n"
-"16\n"
+"03100500.xhp\n"
+"hd_id3147531\n"
+"5\n"
"help.text"
-msgid "The values of variables are only displayed if they are in scope. Variables that are not defined at the current source code location display (\"Out of Scope\") instead of a value."
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3145272\n"
-"17\n"
+"03100500.xhp\n"
+"par_id3147560\n"
+"6\n"
"help.text"
-msgid "You can also include arrays in the Watch window. If you enter the name of an array variable without an index value in the Watch text box, the content of the entire array is displayed."
-msgstr ""
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3145749\n"
-"19\n"
+"03100500.xhp\n"
+"hd_id3145069\n"
+"7\n"
"help.text"
-msgid "If you rest the mouse over a predefined variable in the Editor at run-time, the content of the variable is displayed in a pop-up box."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"hd_id3148618\n"
-"20\n"
+"03100500.xhp\n"
+"par_id3159414\n"
+"8\n"
"help.text"
-msgid "The Call Stack Window"
-msgstr "Përshtate me faqe"
+msgid "<emph>Expression:</emph> Any numeric expression that you want to convert. If the <emph>Expression</emph> exceeds the value range between -32768 and 32767, $[officename] Basic reports an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+msgstr ""
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"par_id3154491\n"
-"21\n"
+"03100500.xhp\n"
+"par_id3150358\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_STACKWINDOW_LIST\">Provides an overview of the call hierarchy of procedures and functions.</ahelp> You can determine which procedures and functions called which other procedures and functions at the current point in the source code."
+msgid "This function always rounds the fractional part of a number to the nearest integer."
msgstr ""
-#: 01030300.xhp
+#: 03100500.xhp
msgctxt ""
-"01030300.xhp\n"
-"hd_id3150594\n"
-"24\n"
+"03100500.xhp\n"
+"hd_id3145419\n"
+"10\n"
"help.text"
-msgid "List of Run-Time Errors"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
+"03100600.xhp\n"
"tit\n"
"help.text"
-msgid "Keyboard Shortcuts in the Basic IDE"
-msgstr ""
+msgid "CLng Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"bm_id3154760\n"
+"03100600.xhp\n"
+"bm_id3153311\n"
"help.text"
-msgid "<bookmark_value>keyboard;in IDE</bookmark_value><bookmark_value>shortcut keys;Basic IDE</bookmark_value><bookmark_value>IDE;keyboard shortcuts</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>CLng function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"hd_id3154760\n"
+"03100600.xhp\n"
+"hd_id3153311\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Keyboard Shortcuts in the Basic IDE\">Keyboard Shortcuts in the Basic IDE</link>"
+msgid "<link href=\"text/sbasic/shared/03100600.xhp\" name=\"CLng Function [Runtime]\">CLng Function [Runtime]</link>"
msgstr ""
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3149655\n"
+"03100600.xhp\n"
+"par_id3148686\n"
"2\n"
"help.text"
-msgid "In the Basic IDE you can use the following keyboard shortcuts:"
+msgid "Converts any string or numeric expression to a long integer."
msgstr ""
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3154908\n"
+"03100600.xhp\n"
+"hd_id3145315\n"
"3\n"
"help.text"
-msgid "Action"
-msgstr "Veprim"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3153192\n"
+"03100600.xhp\n"
+"par_id3147573\n"
"4\n"
"help.text"
-msgid "Keyboard shortcut"
-msgstr "Tastet përshpejtuese"
+msgid "CLng (Expression)"
+msgstr "Shprehje e rezervuar"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3159254\n"
+"03100600.xhp\n"
+"hd_id3145610\n"
"5\n"
"help.text"
-msgid "Run code starting from the first line, or from the current breakpoint, if the program stopped there before"
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3163712\n"
+"03100600.xhp\n"
+"par_id3153897\n"
"6\n"
"help.text"
-msgid "F5"
-msgstr ""
+msgid "Long"
+msgstr "Standard (e gjatë)"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3150010\n"
+"03100600.xhp\n"
+"hd_id3154760\n"
"7\n"
"help.text"
-msgid "Stop"
-msgstr "Ndal"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3154319\n"
+"03100600.xhp\n"
+"par_id3159414\n"
"8\n"
"help.text"
-msgid "Shift+F5"
-msgstr "Zhvendos djathtas"
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3151073\n"
-"11\n"
-"help.text"
-msgid "Add <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">watch</link> for the variable at the cursor"
-msgstr ""
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3154731\n"
-"12\n"
-"help.text"
-msgid "F7"
-msgstr ""
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3148455\n"
-"13\n"
-"help.text"
-msgid "Single step through each statement, starting at the first line or at that statement where the program execution stopped before."
-msgstr ""
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3150716\n"
-"14\n"
-"help.text"
-msgid "F8"
-msgstr ""
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3156275\n"
-"15\n"
-"help.text"
-msgid "Single step as with F8, but a function call is considered to be only <emph>one</emph> statement"
-msgstr ""
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3153764\n"
-"16\n"
-"help.text"
-msgid "Shift+F8"
-msgstr "Zhvendos djathtas"
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3150323\n"
-"17\n"
-"help.text"
-msgid "Set or remove a <link href=\"text/sbasic/shared/01030300.xhp\" name=\"breakpoint\">breakpoint</link> at the current line or all breakpoints in the current selection"
-msgstr ""
-
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3147339\n"
-"18\n"
-"help.text"
-msgid "F9"
+msgid "<emph>Expression:</emph> Any numerical expression that you want to convert. If the <emph>Expression</emph> lies outside the valid long integer range between -2.147.483.648 and 2.147.483.647, $[officename] Basic returns an overflow error. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
msgstr ""
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3153963\n"
-"19\n"
+"03100600.xhp\n"
+"par_id3150358\n"
+"9\n"
"help.text"
-msgid "Enable/disable the breakpoint at the current line or all breakpoints in the current selection"
+msgid "This function always rounds the fractional part of a number to the nearest integer."
msgstr ""
-#: keys.xhp
-msgctxt ""
-"keys.xhp\n"
-"par_id3155175\n"
-"20\n"
-"help.text"
-msgid "Shift+F9"
-msgstr "Zhvendos djathtas"
-
-#: keys.xhp
+#: 03100600.xhp
msgctxt ""
-"keys.xhp\n"
-"par_id3154702\n"
-"21\n"
+"03100600.xhp\n"
+"hd_id3154216\n"
+"10\n"
"help.text"
-msgid "A running macro can be aborted with Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q, also from outside of the Basic IDE. If you are inside the Basic IDE and the macro halts at a breakpoint, Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q stops execution of the macro, but you can recognize this only after the next F5, F8, or Shift+F8."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
+"03100700.xhp\n"
"tit\n"
"help.text"
-msgid "IsArray Function [Runtime]"
+msgid "Const Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"bm_id3154346\n"
+"03100700.xhp\n"
+"bm_id3146958\n"
"help.text"
-msgid "<bookmark_value>IsArray function</bookmark_value>"
-msgstr "E kthen funksionin gabim plotwsues"
+msgid "<bookmark_value>Const statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"hd_id3154346\n"
+"03100700.xhp\n"
+"hd_id3146958\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"IsArray Function [Runtime]\">IsArray Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03100700.xhp\" name=\"Const Statement [Runtime]\">Const Statement [Runtime]</link>"
msgstr ""
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"par_id3159413\n"
+"03100700.xhp\n"
+"par_id3154143\n"
"2\n"
"help.text"
-msgid "Determines if a variable is a data field in an array."
-msgstr ""
+msgid "Defines a string as a constant."
+msgstr "Definon vlerën llogjike si PASAKTË."
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"hd_id3150792\n"
+"03100700.xhp\n"
+"hd_id3150670\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"par_id3153379\n"
+"03100700.xhp\n"
+"par_id3150984\n"
"4\n"
"help.text"
-msgid "IsArray (Var)"
-msgstr "Var (mostër)"
+msgid "Const Text = Expression"
+msgstr "**Fraza është e gabueshme**"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"hd_id3154365\n"
+"03100700.xhp\n"
+"hd_id3147530\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"par_id3154685\n"
+"03100700.xhp\n"
+"par_id3153897\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "JO logjike"
+msgid "<emph>Text:</emph> Any constant name that follows the standard variable naming conventions."
+msgstr ""
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"hd_id3153969\n"
+"03100700.xhp\n"
+"par_id3147264\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "A constant is a variable that helps to improve the readability of a program. Constants are not defined as a specific type of variable, but rather are used as placeholders in the code. You can only define a constant once and it cannot be modified. Use the following statement to define a constant:"
+msgstr ""
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"par_id3145172\n"
+"03100700.xhp\n"
+"par_id3150542\n"
"8\n"
"help.text"
-msgid "<emph>Var:</emph> Any variable that you want to test if it is declared as an array. If the variable is an array, then the function returns <emph>True</emph>, otherwise <emph>False </emph>is returned."
-msgstr ""
+msgid "CONST ConstName=Expression"
+msgstr "**Fraza është e gabueshme**"
-#: 03102200.xhp
+#: 03100700.xhp
msgctxt ""
-"03102200.xhp\n"
-"hd_id3155131\n"
+"03100700.xhp\n"
+"par_id3150400\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03080300.xhp
-msgctxt ""
-"03080300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Generating Random Numbers"
-msgstr "Bashkësia e numrave natyral"
+msgid "The type of expression is irrelevant. If a program is started, $[officename] Basic converts the program code internally so that each time a constant is used, the defined expression replaces it."
+msgstr ""
-#: 03080300.xhp
+#: 03100700.xhp
msgctxt ""
-"03080300.xhp\n"
-"hd_id3143270\n"
-"1\n"
+"03100700.xhp\n"
+"hd_id3154366\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080300.xhp\" name=\"Generating Random Numbers\">Generating Random Numbers</link>"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03080300.xhp
+#: 03100700.xhp
msgctxt ""
-"03080300.xhp\n"
-"par_id3154347\n"
-"2\n"
+"03100700.xhp\n"
+"par_id3153969\n"
+"14\n"
"help.text"
-msgid "The following statements and functions generate random numbers."
+msgid "Const sVar = \"Program\", dVar As Double = 1.00"
msgstr ""
#: 03100900.xhp
@@ -21637,2606 +24863,1928 @@ msgctxt ""
msgid "Example:"
msgstr "Shembull"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
+"03101000.xhp\n"
"tit\n"
"help.text"
-msgid "Int Function [Runtime]"
+msgid "CStr Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"bm_id3153345\n"
+"03101000.xhp\n"
+"bm_id3146958\n"
"help.text"
-msgid "<bookmark_value>Int function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>CStr function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"hd_id3153345\n"
+"03101000.xhp\n"
+"hd_id3146958\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080502.xhp\" name=\"Int Function [Runtime]\">Int Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03101000.xhp\" name=\"CStr Function [Runtime]\">CStr Function [Runtime]</link>"
msgstr ""
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"par_id3155420\n"
+"03101000.xhp\n"
+"par_id3147574\n"
"2\n"
"help.text"
-msgid "Returns the integer portion of a number."
-msgstr "E kthen pjeswn integjere tw pjeswtimit"
+msgid "Converts any numeric expression to a string expression."
+msgstr ""
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"hd_id3147559\n"
+"03101000.xhp\n"
+"hd_id3148473\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"par_id3146795\n"
+"03101000.xhp\n"
+"par_id3145315\n"
"4\n"
"help.text"
-msgid "Int (Number)"
-msgstr "Numri i faqes"
+msgid "CStr (Expression)"
+msgstr "Shprehje e rezervuar"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"hd_id3149670\n"
+"03101000.xhp\n"
+"hd_id3153062\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"par_id3150400\n"
+"03101000.xhp\n"
+"par_id3153897\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Dyfish"
+msgid "String"
+msgstr "Varg"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"hd_id3149656\n"
+"03101000.xhp\n"
+"hd_id3154760\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"par_id3148797\n"
+"03101000.xhp\n"
+"par_id3149457\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Any valid numeric expression."
-msgstr ""
+msgid "<emph>Expression:</emph> Any valid string or numeric expression that you want to convert."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"hd_id3148672\n"
+"03101000.xhp\n"
+"hd_id3150358\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03080502.xhp
-msgctxt ""
-"03080502.xhp\n"
-"par_id3125864\n"
-"11\n"
-"help.text"
-msgid "Print Int(3.99) ' returns the value 3"
+msgid "Expression Types and Conversion Returns"
msgstr ""
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"par_id3145787\n"
-"12\n"
+"03101000.xhp\n"
+"par_id3153192\n"
+"10\n"
"help.text"
-msgid "Print Int(0) ' returns the value 0"
-msgstr ""
+msgid "Boolean :"
+msgstr "JO logjike"
-#: 03080502.xhp
+#: 03101000.xhp
msgctxt ""
-"03080502.xhp\n"
-"par_id3153143\n"
-"13\n"
+"03101000.xhp\n"
+"par_id3156422\n"
+"11\n"
"help.text"
-msgid "Print Int(-3.14159) ' returns the value -4"
+msgid "String that evaluates to either <emph>True</emph> or <emph>False</emph>."
msgstr ""
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"tit\n"
-"help.text"
-msgid "RTrim Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03120309.xhp
-msgctxt ""
-"03120309.xhp\n"
-"bm_id3154286\n"
-"help.text"
-msgid "<bookmark_value>RTrim function</bookmark_value>"
-msgstr "E kthen funksionin gabim plotwsues"
-
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"hd_id3154286\n"
-"1\n"
+"03101000.xhp\n"
+"par_id3147287\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"RTrim Function [Runtime]\">RTrim Function [Runtime]</link>"
-msgstr ""
+msgid "Date :"
+msgstr "Data"
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"par_id3153127\n"
-"2\n"
+"03101000.xhp\n"
+"par_id3155411\n"
+"13\n"
"help.text"
-msgid "Deletes the spaces at the end of a string expression."
+msgid "String that contains the date and time."
msgstr ""
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"par_id3153062\n"
-"3\n"
+"03101000.xhp\n"
+"par_id3147428\n"
+"14\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
-msgstr ""
+msgid "Null :"
+msgstr "Është e zbraztë"
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"hd_id3154924\n"
-"4\n"
+"03101000.xhp\n"
+"par_id3150486\n"
+"15\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Run-time error."
+msgstr "Ka ndodhur një gabim i panjohur"
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"par_id3154347\n"
-"5\n"
+"03101000.xhp\n"
+"par_id3153953\n"
+"16\n"
"help.text"
-msgid "RTrim (Text As String)"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "Empty :"
+msgstr "<bosh>"
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"hd_id3149457\n"
-"6\n"
+"03101000.xhp\n"
+"par_id3155306\n"
+"17\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "String without any characters."
+msgstr ""
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"par_id3153381\n"
-"7\n"
+"03101000.xhp\n"
+"par_id3149260\n"
+"18\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "Any :"
+msgstr "Çfardo regjistrimi"
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"hd_id3148798\n"
-"8\n"
+"03101000.xhp\n"
+"par_id3152938\n"
+"19\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Corresponding number as string."
+msgstr "Vlera të interpretohet si një numër."
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"par_id3151380\n"
-"9\n"
+"03101000.xhp\n"
+"par_id3155738\n"
+"20\n"
"help.text"
-msgid "<emph>Text: </emph>Any string expression."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "Zeros at the end of a floating-point number are not included in the returned string."
+msgstr ""
-#: 03120309.xhp
+#: 03101000.xhp
msgctxt ""
-"03120309.xhp\n"
-"hd_id3151041\n"
-"10\n"
+"03101000.xhp\n"
+"hd_id3154729\n"
+"21\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03080500.xhp
-msgctxt ""
-"03080500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Integers"
-msgstr "Grupi integer"
-
-#: 03080500.xhp
-msgctxt ""
-"03080500.xhp\n"
-"hd_id3153345\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080500.xhp\" name=\"Integers\">Integers</link>"
-msgstr ""
-
-#: 03080500.xhp
-msgctxt ""
-"03080500.xhp\n"
-"par_id3156152\n"
-"2\n"
-"help.text"
-msgid "The following functions round values to integers."
-msgstr ""
-
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
+"03101100.xhp\n"
"tit\n"
"help.text"
-msgid "Chr Function [Runtime]"
+msgid "DefBool Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"bm_id3149205\n"
+"03101100.xhp\n"
+"bm_id3145759\n"
"help.text"
-msgid "<bookmark_value>Chr function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>DefBool statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"hd_id3149205\n"
+"03101100.xhp\n"
+"hd_id3145759\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120102.xhp\" name=\"Chr Function [Runtime]\">Chr Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03101100.xhp\" name=\"DefBool Statement [Runtime]\">DefBool Statement [Runtime]</link>"
msgstr ""
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3153311\n"
+"03101100.xhp\n"
+"par_id3153089\n"
"2\n"
"help.text"
-msgid "Returns the character that corresponds to the specified character code."
+msgid "If no type-declaration character or keyword is specified, the DefBool statement sets the default data type for variables, according to a letter range."
msgstr ""
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"hd_id3149514\n"
+"03101100.xhp\n"
+"hd_id3149495\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3150669\n"
+"03101100.xhp\n"
+"par_id3150682\n"
"4\n"
"help.text"
-msgid "Chr(Expression As Integer)"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr ""
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"hd_id3143228\n"
+"03101100.xhp\n"
+"hd_id3159201\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3153824\n"
+"03101100.xhp\n"
+"par_id3147226\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr ""
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"hd_id3148944\n"
+"03101100.xhp\n"
+"par_id3149178\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr ""
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3149295\n"
+"03101100.xhp\n"
+"par_id3150669\n"
"8\n"
"help.text"
-msgid "<emph>Expression:</emph> Numeric variables that represent a valid 8 bit ASCII value (0-255) or a 16 bit Unicode value."
-msgstr ""
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "**Ndryshorja nuk u gjet**"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3159414\n"
+"03101100.xhp\n"
+"par_id3149233\n"
"9\n"
"help.text"
-msgid "Use the <emph>Chr$</emph> function to send special control sequences to a printer or to another output source. You can also use it to insert quotation marks in a string expression."
+msgid "<emph>DefBool:</emph> Boolean"
msgstr ""
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"hd_id3154366\n"
+"03101100.xhp\n"
+"hd_id3149762\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3154909\n"
+"03101100.xhp\n"
+"par_id3156152\n"
"12\n"
"help.text"
-msgid "' This example inserts quotation marks (ASCII value 34) in a string."
+msgid "' Prefix definition for variable types:"
msgstr ""
-#: 03120102.xhp
+#: 03101100.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3151380\n"
-"13\n"
+"03101100.xhp\n"
+"par_id3151381\n"
+"22\n"
"help.text"
-msgid "MsgBox \"A \"+ Chr$(34)+\"short\" + Chr$(34)+\" trip.\""
+msgid "bOK=TRUE ' bOK is an implicit boolean variable"
msgstr ""
-#: 03120102.xhp
+#: 03101110.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_id3145174\n"
-"14\n"
+"03101110.xhp\n"
+"tit\n"
"help.text"
-msgid "' The printout appears in the dialog as: A \"short\" trip."
-msgstr ""
+msgid "DefCur Statement [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03120102.xhp
+#: 03101110.xhp
msgctxt ""
-"03120102.xhp\n"
-"par_idN10668\n"
+"03101110.xhp\n"
+"bm_id9555345\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120101.xhp\">ASC</link>"
-msgstr ""
+msgid "<bookmark_value>DefCur statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"tit\n"
+"03101110.xhp\n"
+"par_idN1057D\n"
"help.text"
-msgid "GetProcessServiceManager Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "<link href=\"text/sbasic/shared/03101110.xhp\">DefCur Statement [Runtime]</link>"
+msgstr ""
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"bm_id3153255\n"
+"03101110.xhp\n"
+"par_idN1058D\n"
"help.text"
-msgid "<bookmark_value>GetProcessServiceManager function</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
+msgid "If no type-declaration character or keyword is specified, the DefCur statement sets the default variable type, according to a letter range."
msgstr ""
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"hd_id3153255\n"
-"1\n"
+"03101110.xhp\n"
+"par_idN10590\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceManager Function [Runtime]\">GetProcessServiceManager Function [Runtime]</link>"
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3156414\n"
-"2\n"
+"03101110.xhp\n"
+"par_idN10594\n"
"help.text"
-msgid "Returns the ProcessServiceManager (central Uno ServiceManager)."
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
msgstr ""
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3145136\n"
-"3\n"
+"03101110.xhp\n"
+"par_idN10597\n"
"help.text"
-msgid "This function is required when you want to instantiate a service using CreateInstanceWithArguments."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"hd_id3153681\n"
-"4\n"
+"03101110.xhp\n"
+"par_idN1059B\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr ""
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3151110\n"
-"5\n"
+"03101110.xhp\n"
+"par_idN105A2\n"
"help.text"
-msgid "oServiceManager = GetProcessServiceManager()"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
msgstr ""
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"hd_id3149516\n"
-"6\n"
+"03101110.xhp\n"
+"par_idN105A9\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "**Ndryshorja nuk u gjet**"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3143270\n"
-"7\n"
+"03101110.xhp\n"
+"par_idN105B0\n"
"help.text"
-msgid "oServiceManager = GetProcessServiceManager()"
-msgstr ""
+msgid "<emph>DefCur:</emph> Currency"
+msgstr "Formati numerik: Valuta"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3153825\n"
-"8\n"
+"03101110.xhp\n"
+"par_idN105B7\n"
"help.text"
-msgid "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Introspection\");"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3148473\n"
-"9\n"
+"03101110.xhp\n"
+"par_idN105BB\n"
"help.text"
-msgid "this is the same as the following statement:"
+msgid "REM Prefix definitions for variable types:"
msgstr ""
-#: 03131700.xhp
+#: 03101110.xhp
msgctxt ""
-"03131700.xhp\n"
-"par_id3145609\n"
-"10\n"
+"03101110.xhp\n"
+"par_idN105D9\n"
"help.text"
-msgid "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
+msgid "cCur=Currency REM cCur is an implicit currency variable"
msgstr ""
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
+"03101120.xhp\n"
"tit\n"
"help.text"
-msgid "Asc Function [Runtime]"
+msgid "DefErr Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"bm_id3150499\n"
+"03101120.xhp\n"
+"bm_id8177739\n"
"help.text"
-msgid "<bookmark_value>Asc function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>DefErr statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"hd_id3150499\n"
-"1\n"
+"03101120.xhp\n"
+"par_idN1057D\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120101.xhp\" name=\"Asc Function [Runtime]\">Asc Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03101120.xhp\">DefErr Statement [Runtime]</link>"
msgstr ""
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3151384\n"
-"2\n"
+"03101120.xhp\n"
+"par_idN1058D\n"
"help.text"
-msgid "Returns the ASCII (American Standard Code for Information Interchange) value of the first character in a string expression."
+msgid "If no type-declaration character or keyword is specified, the DefErr statement sets the default variable type, according to a letter range."
msgstr ""
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"hd_id3155555\n"
-"3\n"
+"03101120.xhp\n"
+"par_idN10590\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"par_id3143267\n"
-"4\n"
-"help.text"
-msgid "Asc (Text As String)"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
-
-#: 03120101.xhp
-msgctxt ""
-"03120101.xhp\n"
-"hd_id3147242\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
-
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3150669\n"
-"6\n"
+"03101120.xhp\n"
+"par_idN10594\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr ""
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"hd_id3148473\n"
-"7\n"
+"03101120.xhp\n"
+"par_idN10597\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3149415\n"
-"8\n"
+"03101120.xhp\n"
+"par_idN1059B\n"
"help.text"
-msgid "<emph>Text:</emph> Any valid string expression. Only the first character in the string is relevant."
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
msgstr ""
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3145609\n"
-"9\n"
+"03101120.xhp\n"
+"par_idN105A2\n"
"help.text"
-msgid "Use the Asc function to replace keys with values. If the Asc function encounters a blank string, $[officename] Basic reports a run-time error. In addition to 7 bit ASCII characters (Codes 0-127), the ASCII function can also detect non-printable key codes in ASCII code. This function can also handle 16 bit unicode characters."
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
msgstr ""
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"hd_id3159413\n"
-"10\n"
+"03101120.xhp\n"
+"par_idN105A9\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "**Ndryshorja nuk u gjet**"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3150792\n"
-"12\n"
+"03101120.xhp\n"
+"par_idN105B0\n"
"help.text"
-msgid "Print ASC(\"A\") ' returns 65"
-msgstr ""
+msgid "<emph>DefErr:</emph> Error"
+msgstr "Ka ndodhur një gabim i panjohur"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3148797\n"
-"13\n"
+"03101120.xhp\n"
+"par_idN105B7\n"
"help.text"
-msgid "Print ASC(\"Z\") ' returns 90"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_id3163800\n"
-"14\n"
+"03101120.xhp\n"
+"par_idN105BB\n"
"help.text"
-msgid "Print ASC(\"Las Vegas\") ' returns 76, since only the first character is taken into account"
+msgid "' Prefix definitions for variable types:"
msgstr ""
-#: 03120101.xhp
+#: 03101120.xhp
msgctxt ""
-"03120101.xhp\n"
-"par_idN1067B\n"
+"03101120.xhp\n"
+"par_idN105D9\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120102.xhp\">CHR</link>"
+msgid "eErr=Error ' eErr is an implicit error variable"
msgstr ""
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
+"03101130.xhp\n"
"tit\n"
"help.text"
-msgid "CDbl Function [Runtime]"
+msgid "DefSng Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"bm_id3153750\n"
+"03101130.xhp\n"
+"bm_id2445142\n"
"help.text"
-msgid "<bookmark_value>CDbl function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>DefSng statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"hd_id3153750\n"
-"1\n"
+"03101130.xhp\n"
+"par_idN10577\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100400.xhp\" name=\"CDbl Function [Runtime]\">CDbl Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03101130.xhp\">DefSng Statement [Runtime]</link>"
msgstr ""
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"par_id3149233\n"
-"2\n"
+"03101130.xhp\n"
+"par_idN10587\n"
"help.text"
-msgid "Converts any numerical expression or string expression to a double type."
+msgid "If no type-declaration character or keyword is specified, the DefSng statement sets the default variable type, according to a letter range."
msgstr ""
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"hd_id3149516\n"
-"3\n"
+"03101130.xhp\n"
+"par_idN1058A\n"
"help.text"
-msgid "Syntax"
+msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"par_id3156152\n"
-"4\n"
-"help.text"
-msgid "CDbl (Expression)"
-msgstr "Shprehje e rezervuar"
-
-#: 03100400.xhp
-msgctxt ""
-"03100400.xhp\n"
-"hd_id3153061\n"
-"5\n"
-"help.text"
-msgid "Return value"
-msgstr "Vlerë absolute"
-
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"par_id3145068\n"
-"6\n"
+"03101130.xhp\n"
+"par_idN1058E\n"
"help.text"
-msgid "Double"
-msgstr "Dyfish"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr ""
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"hd_id3154760\n"
-"7\n"
+"03101130.xhp\n"
+"par_idN10591\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"par_id3153897\n"
-"8\n"
+"03101130.xhp\n"
+"par_idN10595\n"
"help.text"
-msgid "<emph>Expression:</emph> Any string or numeric expression that you want to convert. To convert a string expression, the number must be entered as normal text (\"123.5\") using the default number format of your operating system."
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
msgstr ""
-#: 03100400.xhp
+#: 03101130.xhp
msgctxt ""
-"03100400.xhp\n"
-"hd_id3148797\n"
-"9\n"
+"03101130.xhp\n"
+"par_idN1059C\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr ""
-#: 03080102.xhp
+#: 03101130.xhp
msgctxt ""
-"03080102.xhp\n"
-"tit\n"
+"03101130.xhp\n"
+"par_idN105A3\n"
"help.text"
-msgid "Cos Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "**Ndryshorja nuk u gjet**"
-#: 03080102.xhp
+#: 03101130.xhp
msgctxt ""
-"03080102.xhp\n"
-"bm_id3154923\n"
+"03101130.xhp\n"
+"par_idN105AA\n"
"help.text"
-msgid "<bookmark_value>Cos function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<emph>DefSng:</emph> Single"
+msgstr "Hapësirë me vetëm një rresht"
-#: 03080102.xhp
+#: 03101130.xhp
msgctxt ""
-"03080102.xhp\n"
-"hd_id3154923\n"
-"1\n"
+"03101130.xhp\n"
+"par_idN105B1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080102.xhp\" name=\"Cos Function [Runtime]\">Cos Function [Runtime]</link>"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03080102.xhp
+#: 03101130.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3159413\n"
-"2\n"
+"03101130.xhp\n"
+"par_idN105B5\n"
"help.text"
-msgid "Calculates the cosine of an angle. The angle is specified in radians. The result lies between -1 and 1."
+msgid "' Prefix definitions for variable types:"
msgstr ""
-#: 03080102.xhp
+#: 03101130.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3150358\n"
-"3\n"
+"03101130.xhp\n"
+"par_idN105D3\n"
"help.text"
-msgid "Using the angle Alpha, the Cos-Function calculates the ratio of the length of the side that is adjacent to the angle, divided by the length of the hypotenuse in a right-angled triangle."
+msgid "sSng=Single ' sSng is an implicit single variable"
msgstr ""
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3154141\n"
-"4\n"
+"03101140.xhp\n"
+"tit\n"
"help.text"
-msgid "Cos(Alpha) = Adjacent/Hypotenuse"
-msgstr ""
+msgid "DefStr Statement [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"hd_id3154125\n"
-"5\n"
+"03101140.xhp\n"
+"bm_id6161381\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "<bookmark_value>DefStr statement</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3145172\n"
-"6\n"
+"03101140.xhp\n"
+"par_idN10577\n"
"help.text"
-msgid "Cos (Number)"
-msgstr "Numri i faqes"
+msgid "<link href=\"text/sbasic/shared/03101140.xhp\">DefStr Statement [Runtime]</link>"
+msgstr ""
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"hd_id3156214\n"
-"7\n"
+"03101140.xhp\n"
+"par_idN10587\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "If no type-declaration character or keyword is specified, the DefStr statement sets the default variable type, according to a letter range."
+msgstr ""
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3150449\n"
-"8\n"
+"03101140.xhp\n"
+"par_idN1058A\n"
"help.text"
-msgid "Double"
-msgstr "Dyfish"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"hd_id3153969\n"
-"9\n"
+"03101140.xhp\n"
+"par_idN1058E\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr ""
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3153770\n"
-"10\n"
+"03101140.xhp\n"
+"par_idN10591\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that specifies an angle in radians that you want to calculate the cosine for."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3145749\n"
-"11\n"
+"03101140.xhp\n"
+"par_idN10595\n"
"help.text"
-msgid "To convert degrees to radians, multiply degrees by pi/180. To convert radians to degrees, multiply radians by 180/pi."
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
msgstr ""
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3149664\n"
-"12\n"
+"03101140.xhp\n"
+"par_idN1059C\n"
"help.text"
-msgid "degree=(radian*180)/pi"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
msgstr ""
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3146985\n"
-"13\n"
+"03101140.xhp\n"
+"par_idN105A3\n"
"help.text"
-msgid "radian=(degree*pi)/180"
-msgstr ""
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "**Ndryshorja nuk u gjet**"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3152885\n"
-"14\n"
+"03101140.xhp\n"
+"par_idN105AA\n"
"help.text"
-msgid "Pi is here the fixed circle constant with the rounded value 3.14159..."
-msgstr ""
+msgid "<emph>DefStr:</emph> String"
+msgstr "Modeli i lidhëses është i pavlefshëm"
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"hd_id3153951\n"
-"15\n"
+"03101140.xhp\n"
+"par_idN105B1\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3155855\n"
-"16\n"
-"help.text"
-msgid "' The following example allows for a right-angled triangle the input of"
-msgstr ""
-
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3149484\n"
-"17\n"
-"help.text"
-msgid "' secant and angle (in degrees) and calculates the length of the hypotenuse:"
-msgstr ""
-
-#: 03080102.xhp
-msgctxt ""
-"03080102.xhp\n"
-"par_id3150010\n"
-"19\n"
-"help.text"
-msgid "' rounded Pi = 3.14159"
-msgstr ""
-
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3144764\n"
-"21\n"
+"03101140.xhp\n"
+"par_idN105B5\n"
"help.text"
-msgid "d1 = InputBox$ (\"\"Enter the length of the adjacent side: \",\"Adjacent\")"
+msgid "' Prefix definitions for variable types:"
msgstr ""
-#: 03080102.xhp
+#: 03101140.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3154491\n"
-"22\n"
+"03101140.xhp\n"
+"par_idN105D3\n"
"help.text"
-msgid "dAngle = InputBox$ (\"Enter the angle Alpha (in degrees): \",\"Alpha\")"
+msgid "sStr=String ' sStr is an implicit string variable"
msgstr ""
-#: 03080102.xhp
+#: 03101300.xhp
msgctxt ""
-"03080102.xhp\n"
-"par_id3151074\n"
-"23\n"
+"03101300.xhp\n"
+"tit\n"
"help.text"
-msgid "Print \"The length of the hypothenuse is\"; (d1 / cos (dAngle * Pi / 180))"
-msgstr ""
+msgid "DefDate Statement [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"tit\n"
+"03101300.xhp\n"
+"bm_id3150504\n"
"help.text"
-msgid "Manage Breakpoints"
-msgstr "Trajto pikat ndërprerëse"
+msgid "<bookmark_value>DefDate statement</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3154927\n"
+"03101300.xhp\n"
+"hd_id3150504\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
+msgid "<link href=\"text/sbasic/shared/03101300.xhp\" name=\"DefDate Statement [Runtime]\">DefDate Statement [Runtime]</link>"
msgstr ""
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"par_id3148550\n"
+"03101300.xhp\n"
+"par_id3145069\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_BRKPROPS\">Specifies the options for breakpoints.</ahelp>"
+msgid "If no type-declaration character or keyword is specified, the DefDate statement sets the default variable type, according to a letter range."
msgstr ""
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3149670\n"
+"03101300.xhp\n"
+"hd_id3154758\n"
"3\n"
"help.text"
-msgid "Breakpoints"
-msgstr "Pikat e ndërprerjes"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"par_id3150398\n"
+"03101300.xhp\n"
+"par_id3148664\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_COMBOBOX_RID_BASICIDE_BREAKPOINTDLG_RID_CB_BRKPOINTS\">Enter the line number for a new breakpoint, then click <emph>New</emph>.</ahelp>"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
msgstr ""
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3156280\n"
+"03101300.xhp\n"
+"hd_id3150541\n"
+"5\n"
+"help.text"
+msgid "Parameters:"
+msgstr "Parametrat animues"
+
+#: 03101300.xhp
+msgctxt ""
+"03101300.xhp\n"
+"par_id3156709\n"
"6\n"
"help.text"
-msgid "Active"
-msgstr "Aktiv"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr ""
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"par_id3154910\n"
+"03101300.xhp\n"
+"par_id3150869\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_ACTIV\">Activates or deactivates the current breakpoint.</ahelp>"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
msgstr ""
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3144500\n"
+"03101300.xhp\n"
+"par_id3145171\n"
"8\n"
"help.text"
-msgid "Pass Count"
-msgstr "Numwrimi i kalimeve:"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "**Ndryshorja nuk u gjet**"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"par_id3161831\n"
+"03101300.xhp\n"
+"par_id3150767\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_NUMERICFIELD_RID_BASICIDE_BREAKPOINTDLG_RID_FLD_PASS\">Specify the number of loops to perform before the breakpoint takes effect.</ahelp>"
-msgstr ""
+msgid "<emph>DefDate:</emph> Date"
+msgstr "Formati numerik: datë"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3152579\n"
+"03101300.xhp\n"
+"hd_id3153768\n"
"10\n"
"help.text"
-msgid "New"
-msgstr "E re"
-
-#: 01050300.xhp
-msgctxt ""
-"01050300.xhp\n"
-"par_id3148575\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_NEW\">Creates a breakpoint on the line number specified.</ahelp>"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"hd_id3147319\n"
+"03101300.xhp\n"
+"par_id3145785\n"
"12\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "' Prefix definitions for variable types:"
+msgstr ""
-#: 01050300.xhp
+#: 03101300.xhp
msgctxt ""
-"01050300.xhp\n"
-"par_id3153363\n"
-"13\n"
+"03101300.xhp\n"
+"par_id3152462\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_BASICIDE_BREAKPOINTDLG_RID_PB_DEL\">Deletes the selected breakpoint.</ahelp>"
+msgid "tDate=Date ' tDate is an implicit date variable"
msgstr ""
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
+"03101400.xhp\n"
"tit\n"
"help.text"
-msgid "Array Function [Runtime]"
+msgid "DefDbl Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"bm_id3150499\n"
+"03101400.xhp\n"
+"bm_id3147242\n"
"help.text"
-msgid "<bookmark_value>Array function</bookmark_value>"
-msgstr "E kthen funksionin gabim plotwsues"
+msgid "<bookmark_value>DefDbl statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"hd_id3150499\n"
+"03101400.xhp\n"
+"hd_id3147242\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function [Runtime]\">Array Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"DefDbl Statement [Runtime]\">DefDbl Statement [Runtime]</link>"
msgstr ""
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3155555\n"
+"03101400.xhp\n"
+"par_id3153126\n"
"2\n"
"help.text"
-msgid "Returns the type Variant with a data field."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
msgstr ""
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"hd_id3148538\n"
+"03101400.xhp\n"
+"hd_id3155420\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3153126\n"
+"03101400.xhp\n"
+"par_id3147530\n"
"4\n"
"help.text"
-msgid "Array ( Argument list)"
-msgstr "Zgjedhni listën e adresave"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr ""
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3155419\n"
+"03101400.xhp\n"
+"hd_id3145069\n"
"5\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"hd_id3150669\n"
+"03101400.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr ""
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3145609\n"
+"03101400.xhp\n"
+"par_id3150791\n"
"7\n"
"help.text"
-msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
msgstr ""
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"hd_id3156343\n"
+"03101400.xhp\n"
+"par_id3151210\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "**Ndryshorja nuk u gjet**"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3153897\n"
+"03101400.xhp\n"
+"par_id3154123\n"
"9\n"
"help.text"
-msgid "Dim A As Variant"
-msgstr "Eksporto si PDF..."
+msgid "<emph>DefDbl:</emph> Double"
+msgstr "Shigjetë e dyfishtë majtas"
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3153525\n"
+"03101400.xhp\n"
+"hd_id3153192\n"
"10\n"
"help.text"
-msgid "A = Array(\"Fred\",\"Tom\",\"Bill\")"
+msgid "Example:"
+msgstr "Shembull"
+
+#: 03101400.xhp
+msgctxt ""
+"03101400.xhp\n"
+"par_id3156281\n"
+"12\n"
+"help.text"
+msgid "' Prefix definitions for variable types:"
msgstr ""
-#: 03104200.xhp
+#: 03101400.xhp
msgctxt ""
-"03104200.xhp\n"
-"par_id3150792\n"
-"11\n"
+"03101400.xhp\n"
+"par_id3153144\n"
+"22\n"
"help.text"
-msgid "Msgbox A(2)"
+msgid "dValue=1.23e43 ' dValue is an implicit double variable type"
msgstr ""
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
+"03101500.xhp\n"
"tit\n"
"help.text"
-msgid "Val Function [Runtime]"
+msgid "DefInt Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"bm_id3149205\n"
+"03101500.xhp\n"
+"bm_id3149811\n"
"help.text"
-msgid "<bookmark_value>Val function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>DefInt statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"hd_id3149205\n"
+"03101500.xhp\n"
+"hd_id3149811\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Val Function [Runtime]\">Val Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"DefInt Statement [Runtime]\">DefInt Statement [Runtime]</link>"
msgstr ""
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"par_id3153345\n"
+"03101500.xhp\n"
+"par_id3149762\n"
"2\n"
"help.text"
-msgid "Converts a string to a numeric expression."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
msgstr ""
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"hd_id3159157\n"
+"03101500.xhp\n"
+"hd_id3148686\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"par_id3149514\n"
+"03101500.xhp\n"
+"par_id3156023\n"
"4\n"
"help.text"
-msgid "Val (Text As String)"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr ""
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"hd_id3150669\n"
+"03101500.xhp\n"
+"hd_id3156344\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"par_id3143228\n"
+"03101500.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Dyfish"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgstr ""
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"hd_id3156024\n"
+"03101500.xhp\n"
+"par_id3150398\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr ""
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"par_id3154348\n"
+"03101500.xhp\n"
+"par_id3154365\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> String that represents a number."
-msgstr ""
+msgid "<emph>Keyword:</emph> Default variable type"
+msgstr "**Ndryshorja nuk u gjet**"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"par_id3149670\n"
+"03101500.xhp\n"
+"par_id3125863\n"
"9\n"
"help.text"
-msgid "Using the Val function, you can convert a string that represents numbers into numeric expressions. This is the inverse of the <emph>Str</emph> function. If only part of the string contains numbers, only the first appropriate characters of the string are converted. If the string does not contain any numbers, the <emph>Val</emph> function returns the value 0."
-msgstr ""
+msgid "<emph>DefInt:</emph> Integer"
+msgstr "Numri i plotë për orë"
-#: 03120104.xhp
+#: 03101500.xhp
msgctxt ""
-"03120104.xhp\n"
-"hd_id3154365\n"
+"03101500.xhp\n"
+"hd_id3154123\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03010200.xhp
-msgctxt ""
-"03010200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Functions for Screen Input"
-msgstr ""
-
-#: 03010200.xhp
+#: 03101500.xhp
msgctxt ""
-"03010200.xhp\n"
-"hd_id3149456\n"
-"1\n"
+"03101500.xhp\n"
+"par_id3151042\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010200.xhp\" name=\"Functions for Screen Input\">Functions for Screen Input</link>"
+msgid "' Prefix definitions for variable types"
msgstr ""
-#: 03010200.xhp
+#: 03101500.xhp
msgctxt ""
-"03010200.xhp\n"
-"par_id3150398\n"
-"2\n"
+"03101500.xhp\n"
+"par_id3153728\n"
+"22\n"
"help.text"
-msgid "This section describes Runtime functions used to control screen input."
+msgid "iCount=200 ' iCount is an implicit integer variable"
msgstr ""
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
+"03101600.xhp\n"
"tit\n"
"help.text"
-msgid "MkDir Statement [Runtime]"
+msgid "DefLng Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"bm_id3156421\n"
+"03101600.xhp\n"
+"bm_id3148538\n"
"help.text"
-msgid "<bookmark_value>MkDir statement</bookmark_value>"
+msgid "<bookmark_value>DefLng statement</bookmark_value>"
msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"hd_id3156421\n"
+"03101600.xhp\n"
+"hd_id3148538\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020411.xhp\" name=\"MkDir Statement [Runtime]\">MkDir Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03101600.xhp\" name=\"DefLng Statement [Runtime]\">DefLng Statement [Runtime]</link>"
msgstr ""
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3147000\n"
+"03101600.xhp\n"
+"par_id3149514\n"
"2\n"
"help.text"
-msgid "Creates a new directory on a data medium."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
msgstr ""
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"hd_id3148520\n"
+"03101600.xhp\n"
+"hd_id3150504\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3155150\n"
+"03101600.xhp\n"
+"par_id3145609\n"
"4\n"
"help.text"
-msgid "MkDir Text As String"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgstr ""
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"hd_id3156027\n"
+"03101600.xhp\n"
+"hd_id3154760\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3153750\n"
+"03101600.xhp\n"
+"par_id3145069\n"
"6\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory to be created. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
msgstr ""
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3153311\n"
+"03101600.xhp\n"
+"par_id3150791\n"
"7\n"
"help.text"
-msgid "If the path is not determined, the directory is created in the current directory."
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
msgstr ""
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"hd_id3155388\n"
+"03101600.xhp\n"
+"par_id3148798\n"
"8\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3149762\n"
-"10\n"
-"help.text"
-msgid "' Example for functions of the file organization"
-msgstr ""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3149669\n"
-"13\n"
-"help.text"
-msgid "Const sSubDir1 As String =\"Test\""
-msgstr ""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3148663\n"
-"14\n"
-"help.text"
-msgid "Const sFile2 As String = \"Copied.tmp\""
-msgstr ""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3154071\n"
-"15\n"
-"help.text"
-msgid "Const sFile3 As String = \"Renamed.tmp\""
-msgstr ""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3154217\n"
-"19\n"
-"help.text"
-msgid "If Dir(sSubDir1,16)=\"\" Then ' Does the directory exist?"
-msgstr ""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3147228\n"
-"21\n"
-"help.text"
-msgid "MsgBox sFile,0,\"Create directory\""
-msgstr ""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3153770\n"
-"26\n"
-"help.text"
-msgid "MsgBox fSysURL(CurDir()),0,\"Current directory\""
-msgstr ""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3159154\n"
-"27\n"
-"help.text"
-msgid "MsgBox sFile & Chr(13) & FileDateTime( sFile ),0,\"Creation time\""
-msgstr ""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3149484\n"
-"28\n"
-"help.text"
-msgid "MsgBox sFile & Chr(13)& FileLen( sFile ),0,\"File length\""
-msgstr ""
-
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3152885\n"
-"29\n"
-"help.text"
-msgid "MsgBox sFile & Chr(13)& GetAttr( sFile ),0,\"File attributes\""
-msgstr ""
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "**Ndryshorja nuk u gjet**"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3153952\n"
-"31\n"
+"03101600.xhp\n"
+"par_id3154686\n"
+"9\n"
"help.text"
-msgid "' Rename in the same directory"
-msgstr "Duke kontrolluar ${DRIVE} (në ${DIRECTORY})..."
+msgid "<emph>DefLng:</emph> Long"
+msgstr "Nënvizo (vija të gjata lidhëse)"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3147426\n"
-"34\n"
+"03101600.xhp\n"
+"hd_id3153192\n"
+"10\n"
"help.text"
-msgid "SetAttr( sFile, 0 ) 'Delete all attributes"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3148647\n"
-"35\n"
+"03101600.xhp\n"
+"par_id3154124\n"
+"12\n"
"help.text"
-msgid "MsgBox sFile & Chr(13) & GetAttr( sFile ),0,\"New file attributes\""
+msgid "' Prefix definitions for variable types:"
msgstr ""
-#: 03020411.xhp
+#: 03101600.xhp
msgctxt ""
-"03020411.xhp\n"
-"par_id3150092\n"
-"40\n"
+"03101600.xhp\n"
+"par_id3145273\n"
+"22\n"
"help.text"
-msgid "' Converts a system path in URL"
+msgid "lCount=123456789 ' lCount is an implicit long integer variable"
msgstr ""
-#: 03020411.xhp
-msgctxt ""
-"03020411.xhp\n"
-"par_id3156276\n"
-"49\n"
-"help.text"
-msgid "' the colon with DOS"
-msgstr "Pamja më e mirë me"
-
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
+"03101700.xhp\n"
"tit\n"
"help.text"
-msgid "On Error GoTo ... Resume Statement [Runtime]"
-msgstr ""
+msgid "DefObj Statement [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"bm_id3146795\n"
+"03101700.xhp\n"
+"bm_id3149811\n"
"help.text"
-msgid "<bookmark_value>Resume Next parameter</bookmark_value><bookmark_value>On Error GoTo ... Resume statement</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>DefObj statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"hd_id3146795\n"
+"03101700.xhp\n"
+"hd_id3149811\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050500.xhp\" name=\"On Error GoTo ... Resume Statement [Runtime]\">On Error GoTo ... Resume Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03101700.xhp\" name=\"DefObj Statement [Runtime]\">DefObj Statement [Runtime]</link>"
msgstr ""
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3150358\n"
+"03101700.xhp\n"
+"par_id3147573\n"
"2\n"
"help.text"
-msgid "Enables an error-handling routine after an error occurs, or resumes program execution."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
msgstr ""
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"hd_id3151212\n"
+"03101700.xhp\n"
+"hd_id3150504\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3145173\n"
+"03101700.xhp\n"
+"par_id3147530\n"
"4\n"
"help.text"
-msgid "On {[Local] Error GoTo Labelname | GoTo 0 | Resume Next}"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
msgstr ""
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"hd_id3154125\n"
+"03101700.xhp\n"
+"hd_id3153896\n"
"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3150869\n"
-"7\n"
+"03101700.xhp\n"
+"par_id3148552\n"
+"6\n"
"help.text"
-msgid "<emph>GoTo Labelname:</emph> If an error occurs, enables the error-handling routine that starts at the line \"Labelname\"."
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
msgstr ""
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3150439\n"
-"8\n"
+"03101700.xhp\n"
+"par_id3150358\n"
+"7\n"
"help.text"
-msgid "<emph>Resume Next:</emph> If an error occurs, program execution continues with the statement that follows the statement in which the error occurred."
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
msgstr ""
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3149482\n"
-"9\n"
+"03101700.xhp\n"
+"par_id3148798\n"
+"8\n"
"help.text"
-msgid "<emph>GoTo 0:</emph> Disables the error handler in the current procedure."
-msgstr ""
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "**Ndryshorja nuk u gjet**"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3149483\n"
+"03101700.xhp\n"
+"par_id3150769\n"
"9\n"
"help.text"
-msgid "<emph>Local:</emph> \"On error\" is global in scope, and remains active until canceled by another \"On error\" statement. \"On Local error\" is local to the routine which invokes it. Local error handling overrides any previous global setting. When the invoking routine exits, the local error handling is canceled automatically, and any previous global setting is restored."
-msgstr ""
+msgid "<emph>DefObj:</emph> Object"
+msgstr "Shiriti i Objektit Tekst"
-#: 03050500.xhp
+#: 03101700.xhp
msgctxt ""
-"03050500.xhp\n"
-"par_id3148619\n"
+"03101700.xhp\n"
+"hd_id3156212\n"
"10\n"
"help.text"
-msgid "The On Error GoTo statement is used to react to errors that occur in a macro."
-msgstr ""
-
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"hd_id3146985\n"
-"11\n"
-"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"par_id3153876\n"
-"52\n"
-"help.text"
-msgid "Print #iNumber, \"This is a line of text\""
-msgstr "Nga kreu në fund"
-
-#: 03050500.xhp
-msgctxt ""
-"03050500.xhp\n"
-"par_id3146916\n"
-"67\n"
-"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"tit\n"
-"help.text"
-msgid "$[officename] Basic Glossary"
-msgstr "Hijëzimi i Sintaksës Themelore"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3145068\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/00000002.xhp\" name=\"$[officename] Basic Glossary\">$[officename] Basic Glossary</link>"
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3150792\n"
-"2\n"
-"help.text"
-msgid "This glossary explains some technical terms that you may come across when working with $[officename] Basic."
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3155133\n"
-"7\n"
-"help.text"
-msgid "Decimal Point"
-msgstr "Shëni pikën"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3156443\n"
-"8\n"
-"help.text"
-msgid "When converting numbers, $[officename] Basic uses the locale settings of the system for determining the type of decimal and thousand separator."
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3153092\n"
-"9\n"
-"help.text"
-msgid "The behavior has an effect on both the implicit conversion ( 1 + \"2.3\" = 3.3 ) as well as the runtime function <link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric\">IsNumeric</link>."
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3155854\n"
-"29\n"
-"help.text"
-msgid "Colors"
-msgstr "Ngjyrat"
-
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3145366\n"
-"30\n"
+"03101700.xhp\n"
+"par_id3153969\n"
+"12\n"
"help.text"
-msgid "In $[officename] Basic, colors are treated as long integer value. The return value of color queries is also always a long integer value. When defining properties, colors can be specified using their RGB code that is converted to a long integer value using the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB function\">RGB function</link>."
+msgid "REM Prefix definitions for variable types:"
msgstr ""
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3146119\n"
-"32\n"
-"help.text"
-msgid "Measurement Units"
-msgstr "Njësi matëse"
-
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3154013\n"
-"33\n"
+"03101700.xhp\n"
+"par_id3156424\n"
+"13\n"
"help.text"
-msgid "In $[officename] Basic, a <emph>method parameter</emph> or a <emph>property</emph> expecting unit information can be specified either as integer or long integer expression without a unit, or as a character string containing a unit. If no unit is passed to the method the default unit defined for the active document type will be used. If the parameter is passed as a character string containing a measurement unit, the default setting will be ignored. The default measurement unit for a document type can be set under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - (Document Type) - General</emph>."
+msgid "DefBool b"
msgstr ""
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3145801\n"
-"help.text"
-msgid "<bookmark_value>twips; definition</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3145801\n"
-"5\n"
+"03101700.xhp\n"
+"par_id3159254\n"
+"14\n"
"help.text"
-msgid "Twips"
-msgstr ""
+msgid "DefDate t"
+msgstr "Data"
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3154731\n"
-"6\n"
+"03101700.xhp\n"
+"par_id3150440\n"
+"15\n"
"help.text"
-msgid "A twip is a screen-independent unit which is used to define the uniform position and size of screen elements on all display systems. A twip is 1/1440th of an inch or 1/20 of a printer's point. There are 1440 twips to an inch or about 567 twips to a centimeter."
+msgid "DefDbL d"
msgstr ""
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3153159\n"
-"106\n"
-"help.text"
-msgid "URL Notation"
-msgstr "URL njohje"
-
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3153415\n"
-"108\n"
+"03101700.xhp\n"
+"par_id3161832\n"
+"16\n"
"help.text"
-msgid "URLs (<emph>Uniform Resource Locators</emph>) are used to determine the location of a resource like a file in a file system, typically inside a network environment. A URL consists of a protocol specifier, a host specifier and a file and path specifier:"
+msgid "DefInt i"
msgstr ""
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3149121\n"
-"107\n"
+"03101700.xhp\n"
+"par_id3145365\n"
+"17\n"
"help.text"
-msgid "<emph>protocol</emph>://<emph>host.name</emph>/<emph>path/to/the/file.html</emph>"
+msgid "DefLng l"
msgstr ""
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3168612\n"
-"109\n"
+"03101700.xhp\n"
+"par_id3149481\n"
+"18\n"
"help.text"
-msgid "The most common usage of URLs is on the internet when specifying web pages. Example for protocols are <emph>http</emph>, <emph>ftp</emph>, or <emph>file</emph>. The <emph>file</emph> protocol specifier is used when referring to a file on the local file system."
+msgid "DefObj o"
msgstr ""
-#: 00000002.xhp
+#: 03101700.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3150324\n"
-"110\n"
+"03101700.xhp\n"
+"par_id3152886\n"
+"19\n"
"help.text"
-msgid "URL notation does not allow certain special characters to be used. These are either replaced by other characters or encoded. A slash (<emph>/</emph>) is used as a path separator. For example, a file referred to as <emph>C:\\My File.sxw</emph> on the local host in \"Windows notation\" becomes <emph>file:///C|/My%20File.sxw</emph> in URL notation."
+msgid "DefVar v"
msgstr ""
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
+"03102000.xhp\n"
"tit\n"
"help.text"
-msgid "Join Function [Runtime]"
+msgid "DefVar Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"bm_id3149416\n"
+"03102000.xhp\n"
+"bm_id3143267\n"
"help.text"
-msgid "<bookmark_value>Join function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>DefVar statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"hd_id3149416\n"
+"03102000.xhp\n"
+"hd_id3143267\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join Function [Runtime]\">Join Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03102000.xhp\" name=\"DefVar Statement [Runtime]\">DefVar Statement [Runtime]</link>"
msgstr ""
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"par_id3149670\n"
+"03102000.xhp\n"
+"par_id3153825\n"
"2\n"
"help.text"
-msgid "Returns a string from a number of substrings in a string array."
+msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
msgstr ""
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"hd_id3159414\n"
+"03102000.xhp\n"
+"hd_id3154143\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"par_id3156344\n"
+"03102000.xhp\n"
+"par_id3149514\n"
"4\n"
"help.text"
-msgid "Join (Text As String Array, delimiter)"
+msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
msgstr ""
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"hd_id3150400\n"
+"03102000.xhp\n"
+"hd_id3156024\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"par_id3150359\n"
+"03102000.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
+msgstr ""
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"hd_id3148798\n"
+"03102000.xhp\n"
+"par_id3148552\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgstr ""
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"par_id3145171\n"
+"03102000.xhp\n"
+"par_id3153524\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> A string array."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "<emph>Keyword: </emph>Default variable type"
+msgstr "**Ndryshorja nuk u gjet**"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"par_id3154908\n"
+"03102000.xhp\n"
+"par_id3150767\n"
"9\n"
"help.text"
-msgid "<emph>delimiter (optional):</emph> A string character that is used to separate the substrings in the resulting string. The default delimiter is the space character. If delimiter is a string of length zero \"\", the substrings are joined without separator."
-msgstr ""
+msgid "<emph>DefVar:</emph> Variant"
+msgstr "variant-formulari kanji (itaiji)"
-#: 03120315.xhp
+#: 03102000.xhp
msgctxt ""
-"03120315.xhp\n"
-"hd_id3154218\n"
+"03102000.xhp\n"
+"hd_id3151041\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"tit\n"
-"help.text"
-msgid "DateValue Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"bm_id3156344\n"
-"help.text"
-msgid "<bookmark_value>DateValue function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3156344\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03030102.xhp\" name=\"DateValue Function [Runtime]\">DateValue Function [Runtime]</link>"
-msgstr ""
-
-#: 03030102.xhp
+#: 03102000.xhp
msgctxt ""
-"03030102.xhp\n"
-"par_id3150542\n"
-"2\n"
+"03102000.xhp\n"
+"par_id3156214\n"
+"11\n"
"help.text"
-msgid "Returns a date value from a date string. The date string is a complete date in a single numeric value. You can also use this serial number to determine the difference between two dates."
+msgid "' Prefix definitions for variable types:"
msgstr ""
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3148799\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3154910\n"
-"4\n"
-"help.text"
-msgid "DateValue [(date)]"
-msgstr "Data (caktuar)"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3150870\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3153194\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr "Data"
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3153969\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03030102.xhp
+#: 03102000.xhp
msgctxt ""
-"03030102.xhp\n"
-"par_id3153770\n"
-"8\n"
+"03102000.xhp\n"
+"par_id3154012\n"
+"21\n"
"help.text"
-msgid "<emph>Date:</emph> String expression that contains the date that you want to calculate. The date can be specified in almost any format."
+msgid "vDiv=99 ' vDiv is an implicit variant"
msgstr ""
-#: 03030102.xhp
+#: 03102000.xhp
msgctxt ""
-"03030102.xhp\n"
-"par_id3153189\n"
+"03102000.xhp\n"
+"par_id3146121\n"
"22\n"
"help.text"
-msgid "You can use this function to convert a date that occurs between December 1, 1582 and December 31, 9999 into a single integer value. You can then use this value to calculate the difference between two dates. If the date argument lies outside the acceptable range, $[officename] Basic returns an error message."
-msgstr ""
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"par_id3146974\n"
-"23\n"
-"help.text"
-msgid "In contrast to the DateSerial function that passes years, months, and days as separate numeric values, the DateValue function passes the date using the format \"month.[,]day.[,]year\"."
-msgstr ""
-
-#: 03030102.xhp
-msgctxt ""
-"03030102.xhp\n"
-"hd_id3153142\n"
-"24\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Editing String Contents"
-msgstr "Tabela e përmbajtjeve të sllajdit"
-
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"bm_id7499008\n"
-"help.text"
-msgid "<bookmark_value>ampersand symbol in StarBasic</bookmark_value>"
-msgstr ""
-
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"hd_id3153894\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Editing String Contents\">Editing String Contents</link>"
-msgstr ""
-
-#: 03120300.xhp
-msgctxt ""
-"03120300.xhp\n"
-"par_id3149178\n"
-"2\n"
-"help.text"
-msgid "The following functions edit, format, and align the contents of strings. Use the & operator to concatenate strings."
+msgid "vDiv=\"Hello world\""
msgstr ""
-#: 03132400.xhp
+#: 03102100.xhp
msgctxt ""
-"03132400.xhp\n"
+"03102100.xhp\n"
"tit\n"
"help.text"
-msgid "CreateObject Function [Runtime]"
+msgid "Dim Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"bm_id659810\n"
-"help.text"
-msgid "<bookmark_value>CreateObject function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN10580\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function [Runtime]</link>"
-msgstr ""
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "<ahelp hid=\".\">Creates a UNO object. On Windows, can also create OLE objects.</ahelp>"
-msgstr ""
-
-#: 03132400.xhp
+#: 03102100.xhp
msgctxt ""
-"03132400.xhp\n"
-"par_idN1059F\n"
+"03102100.xhp\n"
+"bm_id3149812\n"
"help.text"
-msgid "This method creates instances of the type that is passed as parameter."
+msgid "<bookmark_value>Dim statement</bookmark_value><bookmark_value>arrays; dimensioning</bookmark_value><bookmark_value>dimensioning arrays</bookmark_value>"
msgstr ""
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN105A2\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN105A6\n"
-"help.text"
-msgid "oObj = CreateObject( type )"
-msgstr "Zgjedh tipin e dokumentit"
-
-#: 03132400.xhp
-msgctxt ""
-"03132400.xhp\n"
-"par_idN105A9\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"tit\n"
-"help.text"
-msgid "Reset Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"bm_id3154141\n"
-"help.text"
-msgid "<bookmark_value>Reset statement</bookmark_value>"
-msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
-
-#: 03020104.xhp
+#: 03102100.xhp
msgctxt ""
-"03020104.xhp\n"
-"hd_id3154141\n"
+"03102100.xhp\n"
+"hd_id3149812\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020104.xhp\">Reset Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03102100.xhp\" name=\"Dim Statement [Runtime]\">Dim Statement [Runtime]</link>"
msgstr ""
-#: 03020104.xhp
+#: 03102100.xhp
msgctxt ""
-"03020104.xhp\n"
-"par_id3156423\n"
+"03102100.xhp\n"
+"par_id3143271\n"
"2\n"
"help.text"
-msgid "Closes all open files and writes the contents of all file buffers to the harddisk."
-msgstr ""
+msgid "Declares a variable or an array."
+msgstr "Grupi ose intervali për referencë."
-#: 03020104.xhp
+#: 03102100.xhp
msgctxt ""
-"03020104.xhp\n"
-"hd_id3154124\n"
+"03102100.xhp\n"
+"par_id3154686\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"hd_id3161831\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"par_id3148455\n"
-"47\n"
-"help.text"
-msgid "Print #iNumber, \"This is a new line of text\""
-msgstr "Nga kreu në fund"
-
-#: 03020104.xhp
-msgctxt ""
-"03020104.xhp\n"
-"par_id3163805\n"
-"62\n"
-"help.text"
-msgid "MsgBox \"All files will be closed\",0,\"Error\""
-msgstr ""
-
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"tit\n"
-"help.text"
-msgid "Red Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"bm_id3148947\n"
-"help.text"
-msgid "<bookmark_value>Red function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3148947\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010303.xhp\" name=\"Red Function [Runtime]\">Red Function [Runtime]</link>"
+msgid "If the variables are separated by commas (for example, DIM sPar1, sPar2, sPar3 AS STRING), only Variant variables can be defined. Use a separate definition line for each variable."
msgstr ""
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3149656\n"
-"2\n"
+"03102100.xhp\n"
+"par_id3152576\n"
+"7\n"
"help.text"
-msgid "Returns the Red component of the specified color code."
+msgid "Dim declares local variables within subroutines. Global variables are declared with the PUBLIC or the PRIVATE statement."
msgstr ""
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"hd_id3148799\n"
-"3\n"
+"03102100.xhp\n"
+"hd_id3156443\n"
+"8\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3150448\n"
-"4\n"
+"03102100.xhp\n"
+"par_id3149412\n"
+"9\n"
"help.text"
-msgid "Red (ColorNumber As Long)"
+msgid "[ReDim]Dim VarName [(start To end)] [As VarType][, VarName2 [(start To end)] [As VarType][,...]]"
msgstr ""
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3151042\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
-
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3145173\n"
-"6\n"
+"03102100.xhp\n"
+"hd_id3147397\n"
+"10\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"hd_id3154685\n"
-"7\n"
+"03102100.xhp\n"
+"par_id3154730\n"
+"11\n"
"help.text"
-msgid "Parameter:"
-msgstr "Parametri i sllajdit"
+msgid "<emph>VarName:</emph> Any variable or array name."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3150440\n"
-"8\n"
+"03102100.xhp\n"
+"par_id3147125\n"
+"12\n"
"help.text"
-msgid "<emph>ColorNumber</emph>: Long integer expression that specifies any <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the Red component."
+msgid "<emph>Start, End:</emph> Numerical values or constants that define the number of elements (NumberElements=(end-start)+1) and the index range."
msgstr ""
-#: 03010303.xhp
-msgctxt ""
-"03010303.xhp\n"
-"hd_id3148575\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3147435\n"
+"03102100.xhp\n"
+"par_id3153877\n"
"13\n"
"help.text"
-msgid "MsgBox \"The color \" & lVar & \" consists of:\" & Chr(13) &_"
+msgid "Start and End can be numerical expressions if ReDim is applied at the procedure level."
msgstr ""
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3155306\n"
+"03102100.xhp\n"
+"par_id3153510\n"
"14\n"
"help.text"
-msgid "\"red= \" & red(lVar) & Chr(13)&_"
+msgid "<emph>VarType:</emph> Key word that declares the data type of a variable."
msgstr ""
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3149262\n"
+"03102100.xhp\n"
+"par_id3154015\n"
"15\n"
"help.text"
-msgid "\"green= \" & green(lVar) & Chr(13)&_"
-msgstr ""
+msgid "<emph>Keyword:</emph> Variable type"
+msgstr "variant-formulari kanji (itaiji)"
-#: 03010303.xhp
+#: 03102100.xhp
msgctxt ""
-"03010303.xhp\n"
-"par_id3147397\n"
+"03102100.xhp\n"
+"par_id3153949\n"
"16\n"
"help.text"
-msgid "\"blue= \" & blue(lVar) & Chr(13) , 64,\"colors\""
-msgstr ""
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"tit\n"
-"help.text"
-msgid "Split Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>Split function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3156027\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Split Function [Runtime]\">Split Function [Runtime]</link>"
+msgid "<emph>Bool:</emph> Boolean variable (True, False)"
msgstr ""
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"par_id3155805\n"
-"2\n"
+"03102100.xhp\n"
+"par_id3156275\n"
+"17\n"
"help.text"
-msgid "Returns an array of substrings from a string expression."
+msgid "<emph>Currency:</emph> Currency-Variable (Currency with 4 Decimal places)"
msgstr ""
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"hd_id3149177\n"
-"3\n"
+"03102100.xhp\n"
+"par_id3156057\n"
+"18\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "<emph>Date:</emph> Date variable"
+msgstr "**Ndryshorja nuk u gjet**"
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"par_id3153824\n"
-"4\n"
+"03102100.xhp\n"
+"par_id3148405\n"
+"19\n"
"help.text"
-msgid "Split (Text As String, delimiter, number)"
+msgid "<emph>Double:</emph> Double-precision floating-point variable (1,79769313486232 x 10E308 - 4,94065645841247 x 10E-324)"
msgstr ""
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3149763\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"par_id3154285\n"
-"6\n"
-"help.text"
-msgid "String"
-msgstr "Varg"
-
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3145315\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"par_id3156023\n"
-"8\n"
+"03102100.xhp\n"
+"par_id3148916\n"
+"20\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "<emph>Integer:</emph> Integer variable (-32768 - 32767)"
+msgstr "**Ndryshorja nuk u gjet**"
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"par_id3147560\n"
-"9\n"
+"03102100.xhp\n"
+"par_id3150045\n"
+"21\n"
"help.text"
-msgid "<emph>delimiter (optional):</emph> A string of one or more characters length that is used to delimit the Text. The default is the space character."
+msgid "<emph>Long:</emph> Long integer variable (-2.147.483.648 - 2.147.483.647)"
msgstr ""
-#: 03120314.xhp
+#: 03102100.xhp
msgctxt ""
-"03120314.xhp\n"
-"par_id3145069\n"
-"12\n"
+"03102100.xhp\n"
+"par_id3149255\n"
+"22\n"
"help.text"
-msgid "<emph>number (optional):</emph> The number of substrings that you want to return."
+msgid "<emph>Object:</emph> Object variable (Note: this variable can only subsequently be defined with Set!)"
msgstr ""
-#: 03120314.xhp
-msgctxt ""
-"03120314.xhp\n"
-"hd_id3150398\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"tit\n"
+"03102100.xhp\n"
+"par_id3155937\n"
+"23\n"
"help.text"
-msgid "Input# Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "<emph>Single:</emph> Single-precision floating-point variable (3,402823 x 10E38 - 1,401298 x 10E-45)."
+msgstr ""
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"bm_id3154908\n"
+"03102100.xhp\n"
+"par_id3151251\n"
+"24\n"
"help.text"
-msgid "<bookmark_value>Input statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+msgid "<emph>String:</emph> String variable consisting of a maximum of 64,000 ASCII characters."
+msgstr ""
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"hd_id3154908\n"
-"1\n"
+"03102100.xhp\n"
+"par_id3154704\n"
+"25\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020202.xhp\" name=\"Input# Statement [Runtime]\">Input# Statement [Runtime]</link>"
+msgid "<emph>[Variant]:</emph> Variant variable type (contains all types, specified by definition). If a key word is not specified, variables are automatically defined as Variant Type, unless a statement from DefBool to DefVar is used."
msgstr ""
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3156424\n"
-"2\n"
+"03102100.xhp\n"
+"par_id3146316\n"
+"26\n"
"help.text"
-msgid "Reads data from an open sequential file."
+msgid "In $[officename] Basic, you do not need to declare variables explicitly. However, you need to declare an array before you can use them. You can declare a variable with the Dim statement, using commas to separate multiple declarations. To declare a variable type, enter a type-declaration character following the name or use a corresponding key word."
msgstr ""
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"hd_id3125863\n"
-"3\n"
+"03102100.xhp\n"
+"par_id3149924\n"
+"27\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "$[officename] Basic supports single or multi-dimensional arrays that are defined by a specified variable type. Arrays are suitable if the program contains lists or tables that you want to edit. The advantage of arrays is that it is possible to address individual elements according to indexes, which can be formulated as numeric expressions or variables."
+msgstr ""
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3150440\n"
-"4\n"
+"03102100.xhp\n"
+"par_id3148488\n"
+"28\n"
"help.text"
-msgid "Input #FileNumber As Integer; var1[, var2[, var3[,...]]]"
+msgid "Arrays are declared with the Dim statement. There are two methods to define the index range:"
msgstr ""
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"hd_id3146121\n"
-"5\n"
+"03102100.xhp\n"
+"par_id3154662\n"
+"29\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "DIM text(20) as String REM 21 elements numbered from 0 to 20"
+msgstr ""
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3145749\n"
-"6\n"
+"03102100.xhp\n"
+"par_id3155604\n"
+"30\n"
"help.text"
-msgid "<emph>FileNumber:</emph> Number of the file that contains the data that you want to read. The file must be opened with the Open statement using the key word INPUT."
+msgid "DIM text(5 to 25) as String REM 21 elements numbered from 5 to 25"
msgstr ""
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3150011\n"
-"7\n"
+"03102100.xhp\n"
+"par_id3151274\n"
+"31\n"
"help.text"
-msgid "<emph>var:</emph> A numeric or string variable that you assign the values read from the opened file to."
+msgid "DIM text(-15 to 5) as String REM 21 elements (including 0)"
msgstr ""
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3159153\n"
-"8\n"
+"03102100.xhp\n"
+"par_id3152774\n"
+"32\n"
"help.text"
-msgid "The <emph>Input#</emph> statement reads numeric values or strings from an open file and assigns the data to one or more variables. A numeric variable is read up to the first carriage return (Asc=13), line feed (Asc=10), space, or comma. String variables are read to up to the first carriage return (Asc=13), line feed (Asc=10), or comma."
+msgid "REM numbered from -15 to 5"
msgstr ""
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3146984\n"
-"9\n"
+"03102100.xhp\n"
+"par_id3150829\n"
+"33\n"
"help.text"
-msgid "Data and data types in the opened file must appear in the same order as the variables that are passed in the \"var\" parameter. If you assign non-numeric values to a numeric variable, \"var\" is assigned a value of \"0\"."
-msgstr ""
+msgid "Two-dimensional data field"
+msgstr "Të dhëna të Adresës - Fusha e Caktuar"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3156442\n"
-"10\n"
+"03102100.xhp\n"
+"par_id3149529\n"
+"34\n"
"help.text"
-msgid "Records that are separated by commas cannot be assigned to a string variable. Quotation marks (\") in the file are disregarded as well. If you want to read these characters from the file, use the <emph>Line Input#</emph> statement to read pure text files (files containing only printable characters) line by line."
+msgid "DIM text(20,2) as String REM 63 elements; form 0 to 20 level 1, from 0 to 20 level 2 and from 0 to 20 level 3."
msgstr ""
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id3147349\n"
-"11\n"
+"03102100.xhp\n"
+"par_id3159239\n"
+"35\n"
"help.text"
-msgid "If the end of the file is reached while reading a data element, an error occurs and the process is aborted."
+msgid "You can declare an array types as dynamic if a ReDim statement defines the number of dimensions in the subroutine or the function that contains the array. Generally, you can only define an array dimension once, and you cannot modify it. Within a subroutine, you can declare an array with ReDim. You can only define dimensions with numeric expressions. This ensures that the fields are only as large as necessary."
msgstr ""
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"hd_id3152578\n"
-"12\n"
+"03102100.xhp\n"
+"hd_id3150344\n"
+"36\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id4144765\n"
+"03102100.xhp\n"
+"par_id3154657\n"
+"40\n"
"help.text"
-msgid "' Write data ( which we will read later with Input ) to file"
-msgstr ""
+msgid "sVar = \"Office\""
+msgstr "Shiriti i Office"
-#: 03020202.xhp
+#: 03102100.xhp
msgctxt ""
-"03020202.xhp\n"
-"par_id4144766\n"
+"03102100.xhp\n"
+"par_id3149036\n"
+"44\n"
"help.text"
-msgid "' Read data file using Input"
+msgid "' Two-dimensional data field"
+msgstr "Të dhëna të Adresës - Fusha e Caktuar"
+
+#: 03102100.xhp
+msgctxt ""
+"03102100.xhp\n"
+"par_id3153782\n"
+"46\n"
+"help.text"
+msgid "Const sDim As String = \" Dimension:\""
msgstr ""
#: 03102101.xhp
@@ -24515,5013 +27063,4115 @@ msgctxt ""
msgid "Example:"
msgstr "Shembull"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
+"03102200.xhp\n"
"tit\n"
"help.text"
-msgid "Day Function [Runtime]"
+msgid "IsArray Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"bm_id3153345\n"
+"03102200.xhp\n"
+"bm_id3154346\n"
"help.text"
-msgid "<bookmark_value>Day function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>IsArray function</bookmark_value>"
+msgstr "E kthen funksionin gabim plotwsues"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"hd_id3153345\n"
+"03102200.xhp\n"
+"hd_id3154346\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030103.xhp\" name=\"Day Function [Runtime]\">Day Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03102200.xhp\" name=\"IsArray Function [Runtime]\">IsArray Function [Runtime]</link>"
msgstr ""
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"par_id3147560\n"
+"03102200.xhp\n"
+"par_id3159413\n"
"2\n"
"help.text"
-msgid "Returns a value that represents the day of the month based on a serial date number generated by <emph>DateSerial</emph> or <emph>DateValue</emph>."
+msgid "Determines if a variable is a data field in an array."
msgstr ""
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"hd_id3149456\n"
+"03102200.xhp\n"
+"hd_id3150792\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"par_id3150358\n"
+"03102200.xhp\n"
+"par_id3153379\n"
"4\n"
"help.text"
-msgid "Day (Number)"
-msgstr "Numri i faqes"
+msgid "IsArray (Var)"
+msgstr "Var (mostër)"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"hd_id3148798\n"
+"03102200.xhp\n"
+"hd_id3154365\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"par_id3125865\n"
+"03102200.xhp\n"
+"par_id3154685\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "Bool"
+msgstr "JO logjike"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"hd_id3150448\n"
+"03102200.xhp\n"
+"hd_id3153969\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"par_id3156423\n"
+"03102200.xhp\n"
+"par_id3145172\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> A numeric expression that contains a serial date number from which you can determine the day of the month."
+msgid "<emph>Var:</emph> Any variable that you want to test if it is declared as an array. If the variable is an array, then the function returns <emph>True</emph>, otherwise <emph>False </emph>is returned."
msgstr ""
-#: 03030103.xhp
+#: 03102200.xhp
msgctxt ""
-"03030103.xhp\n"
-"par_id3145786\n"
+"03102200.xhp\n"
+"hd_id3155131\n"
"9\n"
"help.text"
-msgid "This function is basically the opposite of the DateSerial function, returning the day of the month from a serial date number generated by the <emph>DateSerial</emph> or the <emph>DateValue</emph> function. For example, the expression"
-msgstr ""
-
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3153190\n"
-"11\n"
-"help.text"
-msgid "returns the value 20."
-msgstr "Kthen vlerën llogjike SAKTË."
-
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"hd_id3149481\n"
-"12\n"
-"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03030103.xhp
-msgctxt ""
-"03030103.xhp\n"
-"par_id3149260\n"
-"14\n"
-"help.text"
-msgid "Print \"Day \" & Day(DateSerial(1994, 12, 20)) & \" of the month\""
-msgstr ""
-
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
+"03102300.xhp\n"
"tit\n"
"help.text"
-msgid "IsUnoStruct Function [Runtime]"
+msgid "IsDate Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"bm_id3146117\n"
+"03102300.xhp\n"
+"bm_id3145090\n"
"help.text"
-msgid "<bookmark_value>IsUnoStruct function</bookmark_value>"
-msgstr "E kthen funksionin gabim plotwsues"
+msgid "<bookmark_value>IsDate function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"hd_id3146117\n"
+"03102300.xhp\n"
+"hd_id3145090\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"IsUnoStruct Function [Runtime]\">IsUnoStruct Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate Function [Runtime]\">IsDate Function [Runtime]</link>"
msgstr ""
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"par_id3146957\n"
+"03102300.xhp\n"
+"par_id3153311\n"
"2\n"
"help.text"
-msgid "Returns True if the given object is a Uno struct."
+msgid "Tests if a numeric or string expression can be converted to a <emph>Date</emph> variable."
msgstr ""
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"hd_id3148538\n"
+"03102300.xhp\n"
+"hd_id3153824\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"par_id3155341\n"
+"03102300.xhp\n"
+"par_id3147573\n"
"4\n"
"help.text"
-msgid "IsUnoStruct( Uno type )"
-msgstr "Zgjedh tipin e dokumentit"
+msgid "IsDate (Expression)"
+msgstr "Shprehje e rezervuar"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"hd_id3148473\n"
+"03102300.xhp\n"
+"hd_id3143270\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"par_id3145315\n"
+"03102300.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
msgid "Bool"
msgstr "JO logjike"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"hd_id3145609\n"
+"03102300.xhp\n"
+"hd_id3148947\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"par_id3148947\n"
+"03102300.xhp\n"
+"par_id3145069\n"
"8\n"
"help.text"
-msgid "Uno type : A UnoObject"
-msgstr "Zgjedh tipin e dokumentit"
+msgid "<emph>Expression:</emph> Any numeric or string expression that you want to test. If the expression can be converted to a date, the function returns <emph>True</emph>, otherwise the function returns <emph>False</emph>."
+msgstr ""
-#: 03104500.xhp
+#: 03102300.xhp
msgctxt ""
-"03104500.xhp\n"
-"hd_id3156343\n"
+"03102300.xhp\n"
+"hd_id3150447\n"
"9\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10638\n"
-"help.text"
-msgid "' Instantiate a service"
-msgstr ""
-
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10644\n"
-"help.text"
-msgid "MsgBox bIsStruct ' Displays False because oSimpleFileAccess Is NO struct"
-msgstr ""
-
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10649\n"
-"help.text"
-msgid "' Instantiate a Property struct"
-msgstr "Vlerë jokorrekte e tiparit"
-
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN10653\n"
-"help.text"
-msgid "MsgBox bIsStruct ' Displays True because aProperty is a struct"
-msgstr ""
-
-#: 03104500.xhp
-msgctxt ""
-"03104500.xhp\n"
-"par_idN1065B\n"
-"help.text"
-msgid "MsgBox bIsStruct ' Displays False because 42 is NO struct"
-msgstr ""
-
-#: 03030100.xhp
-msgctxt ""
-"03030100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Date Values"
-msgstr "Ndrysho vlerat standarde"
-
-#: 03030100.xhp
+#: 03102300.xhp
msgctxt ""
-"03030100.xhp\n"
-"hd_id3147573\n"
-"1\n"
+"03102300.xhp\n"
+"par_id3150869\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030100.xhp\" name=\"Converting Date Values\">Converting Date Values</link>"
+msgid "Print IsDate(sDateVar) ' Returns True"
msgstr ""
-#: 03030100.xhp
+#: 03102300.xhp
msgctxt ""
-"03030100.xhp\n"
-"par_id3154760\n"
-"2\n"
+"03102300.xhp\n"
+"par_id3147288\n"
+"15\n"
"help.text"
-msgid "The following functions convert date values to calculable numbers and back."
+msgid "Print IsDate(sDateVar) ' Returns False"
msgstr ""
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
+"03102400.xhp\n"
"tit\n"
"help.text"
-msgid "MsgBox Function [Runtime]"
+msgid "IsEmpty Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"bm_id3153379\n"
+"03102400.xhp\n"
+"bm_id3153394\n"
"help.text"
-msgid "<bookmark_value>MsgBox function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>IsEmpty function</bookmark_value>"
+msgstr "E kthen funksionin gabim plotwsues"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"hd_id3153379\n"
+"03102400.xhp\n"
+"hd_id3153394\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010102.xhp\" name=\"MsgBox Function [Runtime]\">MsgBox Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03102400.xhp\" name=\"IsEmpty Function [Runtime]\">IsEmpty Function [Runtime]</link>"
msgstr ""
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3145171\n"
+"03102400.xhp\n"
+"par_id3163045\n"
"2\n"
"help.text"
-msgid "Displays a dialog box containing a message and returns a value."
+msgid "Tests if a Variant variable contains the Empty value. The Empty value indicates that the variable is not initialized."
msgstr ""
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"hd_id3156281\n"
+"03102400.xhp\n"
+"hd_id3159158\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3154685\n"
+"03102400.xhp\n"
+"par_id3153126\n"
"4\n"
"help.text"
-msgid "MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]])"
-msgstr ""
+msgid "IsEmpty (Var)"
+msgstr "Var (mostër)"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"hd_id3153771\n"
+"03102400.xhp\n"
+"hd_id3148685\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3146985\n"
+"03102400.xhp\n"
+"par_id3156344\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "Bool"
+msgstr "JO logjike"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"hd_id3153363\n"
+"03102400.xhp\n"
+"hd_id3148947\n"
"7\n"
"help.text"
-msgid "Parameter:"
-msgstr "Parametri i sllajdit"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3153727\n"
+"03102400.xhp\n"
+"par_id3154347\n"
"8\n"
"help.text"
-msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
+msgid "<emph>Var:</emph> Any variable that you want to test. If the Variant contains the Empty value, the function returns True, otherwise the function returns False."
msgstr ""
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3147317\n"
+"03102400.xhp\n"
+"hd_id3154138\n"
"9\n"
"help.text"
-msgid "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialog. If omitted, the name of the respective application is displayed."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03010102.xhp
+#: 03102400.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3153954\n"
-"10\n"
+"03102400.xhp\n"
+"par_id3154863\n"
+"13\n"
"help.text"
-msgid "<emph>Type</emph>: Any integer expression that specifies the dialog type and defines the number and type of buttons or icons displayed. <emph>Type</emph> represents a combination of bit patterns (dialog elements defined by adding the respective values):"
+msgid "Print IsEmpty(sVar) ' Returns True"
msgstr ""
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3154319\n"
-"11\n"
+"03102450.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Values</emph>"
-msgstr "Vlerat e dalluara"
+msgid "IsError Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3147397\n"
-"12\n"
+"03102450.xhp\n"
+"bm_id4954680\n"
"help.text"
-msgid "0 : Display OK button only."
-msgstr ""
+msgid "<bookmark_value>IsError function</bookmark_value>"
+msgstr "E kthen funksionin gabim plotwsues"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3145646\n"
-"13\n"
+"03102450.xhp\n"
+"par_idN1054E\n"
"help.text"
-msgid "1 : Display OK and Cancel buttons."
+msgid "<link href=\"text/sbasic/shared/03102450.xhp\">IsError Function [Runtime]</link>"
msgstr ""
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3149410\n"
-"14\n"
+"03102450.xhp\n"
+"par_idN1055E\n"
"help.text"
-msgid "2 : Display Abort, Retry, and Ignore buttons."
+msgid "Tests if a variable contains an error value."
msgstr ""
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3151075\n"
-"15\n"
+"03102450.xhp\n"
+"par_idN10561\n"
"help.text"
-msgid "3 : Display Yes, No, and Cancel buttons."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3153878\n"
-"16\n"
+"03102450.xhp\n"
+"par_idN10565\n"
"help.text"
-msgid "4 : Display Yes and No buttons."
-msgstr ""
+msgid "IsError (Var)"
+msgstr "Var (mostër)"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3155601\n"
-"17\n"
+"03102450.xhp\n"
+"par_idN10568\n"
"help.text"
-msgid "5 : Display Retry and Cancel buttons."
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3150716\n"
-"18\n"
+"03102450.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "16 : Add the Stop icon to the dialog."
-msgstr ""
+msgid "Bool"
+msgstr "JO logjike"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3153837\n"
-"19\n"
+"03102450.xhp\n"
+"par_idN1056F\n"
"help.text"
-msgid "32 : Add the Question icon to the dialog."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03010102.xhp
+#: 03102450.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3150751\n"
-"20\n"
+"03102450.xhp\n"
+"par_idN10573\n"
"help.text"
-msgid "48 : Add the Exclamation Point icon to the dialog."
+msgid "<emph>Var:</emph> Any variable that you want to test. If the variable contains an error value, the function returns True, otherwise the function returns False."
msgstr ""
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3146915\n"
-"21\n"
+"03102600.xhp\n"
+"tit\n"
"help.text"
-msgid "64 : Add the Information icon to the dialog."
-msgstr ""
+msgid "IsNull Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3145640\n"
-"22\n"
+"03102600.xhp\n"
+"bm_id3155555\n"
"help.text"
-msgid "128 : First button in the dialog as default button."
+msgid "<bookmark_value>IsNull function</bookmark_value><bookmark_value>Null value</bookmark_value>"
msgstr ""
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3153765\n"
-"23\n"
+"03102600.xhp\n"
+"hd_id3155555\n"
+"1\n"
"help.text"
-msgid "256 : Second button in the dialog as default button."
+msgid "<link href=\"text/sbasic/shared/03102600.xhp\" name=\"IsNull Function [Runtime]\">IsNull Function [Runtime]</link>"
msgstr ""
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3153715\n"
-"24\n"
+"03102600.xhp\n"
+"par_id3146957\n"
+"2\n"
"help.text"
-msgid "512 : Third button in the dialog as default button."
+msgid "Tests if a Variant contains the special Null value, indicating that the variable does not contain data."
msgstr ""
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3159267\n"
-"25\n"
-"help.text"
-msgid "<emph>Return value:</emph>"
-msgstr "Veprimi përfundoi [Time]: [1]. Vlera kthyese [2]."
-
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3145230\n"
-"26\n"
-"help.text"
-msgid "1 : OK"
-msgstr "OK"
-
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id3149567\n"
-"27\n"
-"help.text"
-msgid "2 : Cancel"
-msgstr "Anulo"
-
-#: 03010102.xhp
-msgctxt ""
-"03010102.xhp\n"
-"par_id4056825\n"
-"help.text"
-msgid "3 : Abort"
-msgstr "Ndërprerje"
-
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3155335\n"
-"28\n"
+"03102600.xhp\n"
+"hd_id3150670\n"
+"3\n"
"help.text"
-msgid "4 : Retry"
-msgstr "&Riprovo"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3146918\n"
-"29\n"
+"03102600.xhp\n"
+"par_id3150984\n"
+"4\n"
"help.text"
-msgid "5 : Ignore"
-msgstr "Injoro"
+msgid "IsNull (Var)"
+msgstr "Var (mostër)"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3155961\n"
-"30\n"
+"03102600.xhp\n"
+"hd_id3149514\n"
+"5\n"
"help.text"
-msgid "6 : Yes"
-msgstr "Po"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3148488\n"
-"31\n"
+"03102600.xhp\n"
+"par_id3145609\n"
+"6\n"
"help.text"
-msgid "7 : No"
-msgstr "No"
+msgid "Bool"
+msgstr "JO logjike"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"hd_id3150090\n"
-"40\n"
+"03102600.xhp\n"
+"hd_id3149669\n"
+"7\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3151278\n"
-"43\n"
+"03102600.xhp\n"
+"par_id3159414\n"
+"8\n"
"help.text"
-msgid "sVar = MsgBox(\"Las Vegas\")"
+msgid "<emph>Var:</emph> Any variable that you want to test. This function returns True if the Variant contains the Null value, or False if the Variant does not contain the Null value."
msgstr ""
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3149034\n"
-"44\n"
+"03102600.xhp\n"
+"par_idN1062A\n"
"help.text"
-msgid "sVar = MsgBox(\"Las Vegas\",1)"
+msgid "<emph>Null</emph> - This value is used for a variant data sub type without valid contents."
msgstr ""
-#: 03010102.xhp
+#: 03102600.xhp
msgctxt ""
-"03010102.xhp\n"
-"par_id3166424\n"
-"45\n"
+"03102600.xhp\n"
+"hd_id3153381\n"
+"9\n"
"help.text"
-msgid "sVar = MsgBox( \"Las Vegas\",256 + 16 + 2,\"Dialog title\")"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
+"03102700.xhp\n"
"tit\n"
"help.text"
-msgid "LCase Function [Runtime]"
+msgid "IsNumeric Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"bm_id3152363\n"
+"03102700.xhp\n"
+"bm_id3145136\n"
"help.text"
-msgid "<bookmark_value>LCase function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>IsNumeric function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"hd_id3152363\n"
+"03102700.xhp\n"
+"hd_id3145136\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function [Runtime]\">LCase Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric Function [Runtime]\">IsNumeric Function [Runtime]</link>"
msgstr ""
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3145609\n"
+"03102700.xhp\n"
+"par_id3149177\n"
"2\n"
"help.text"
-msgid "Converts all uppercase letters in a string to lowercase."
+msgid "Tests if an expression is a number. If the expression is a <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"number\">number</link>, the function returns True, otherwise the function returns False."
msgstr ""
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3154347\n"
+"03102700.xhp\n"
+"hd_id3149415\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link> Function"
-msgstr ""
-
-#: 03120302.xhp
-msgctxt ""
-"03120302.xhp\n"
-"hd_id3149456\n"
-"4\n"
-"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3150791\n"
-"5\n"
+"03102700.xhp\n"
+"par_id3150771\n"
+"4\n"
"help.text"
-msgid "LCase (Text As String)"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "IsNumeric (Var)"
+msgstr "Var (mostër)"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"hd_id3154940\n"
-"6\n"
+"03102700.xhp\n"
+"hd_id3148685\n"
+"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3144760\n"
-"7\n"
+"03102700.xhp\n"
+"par_id3148944\n"
+"6\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "Bool"
+msgstr "JO logjike"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"hd_id3151043\n"
-"8\n"
+"03102700.xhp\n"
+"hd_id3148947\n"
+"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3153193\n"
-"9\n"
+"03102700.xhp\n"
+"par_id3154760\n"
+"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to convert."
+msgid "<emph>Var:</emph> Any expression that you want to test."
msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"hd_id3148451\n"
-"10\n"
+"03102700.xhp\n"
+"hd_id3149656\n"
+"9\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3146121\n"
-"14\n"
+"03102700.xhp\n"
+"par_id3147230\n"
+"13\n"
"help.text"
-msgid "Print LCase(sVar) ' Returns \"las vegas\""
+msgid "Print IsNumeric(vVar) ' Returns False"
msgstr ""
-#: 03120302.xhp
+#: 03102700.xhp
msgctxt ""
-"03120302.xhp\n"
-"par_id3146986\n"
+"03102700.xhp\n"
+"par_id3154910\n"
"15\n"
"help.text"
-msgid "Print UCase(sVar) ' Returns \"LAS VEGAS\""
+msgid "Print IsNumeric(vVar) ' Returns True"
msgstr ""
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
+"03102800.xhp\n"
"tit\n"
"help.text"
-msgid "ThisComponent Statement [Runtime]"
+msgid "IsObject Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"bm_id3155342\n"
+"03102800.xhp\n"
+"bm_id3149346\n"
"help.text"
-msgid "<bookmark_value>ThisComponent property</bookmark_value><bookmark_value>components;addressing</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>IsObject function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"hd_id3155342\n"
+"03102800.xhp\n"
+"hd_id3149346\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ThisComponent [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03102800.xhp\" name=\"IsObject Function [Runtime]\">IsObject Function [Runtime]</link>"
msgstr ""
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"par_id3154923\n"
+"03102800.xhp\n"
+"par_id3148538\n"
"2\n"
"help.text"
-msgid "Addresses the active component so that its properties can be read and set. ThisComponent is used from document Basic, where it represents the document the Basic belongs to. The type of object accessed by ThisComponent depends on the document type."
+msgid "Tests if an object variable is an OLE object. The function returns True if the variable is an OLE object, otherwise it returns False."
msgstr ""
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"hd_id3154346\n"
+"03102800.xhp\n"
+"hd_id3149234\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"par_id3151056\n"
+"03102800.xhp\n"
+"par_id3154285\n"
"4\n"
"help.text"
-msgid "ThisComponent"
+msgid "IsObject (ObjectVar)"
msgstr ""
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"hd_id3154940\n"
+"03102800.xhp\n"
+"hd_id3148685\n"
"5\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"par_id3154123\n"
-"7\n"
+"03102800.xhp\n"
+"par_id3156024\n"
+"6\n"
"help.text"
-msgid "' updates the \"Table of Contents\" in a text doc"
-msgstr ""
+msgid "Bool"
+msgstr "JO logjike"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"par_id3153194\n"
-"10\n"
+"03102800.xhp\n"
+"hd_id3148947\n"
+"7\n"
"help.text"
-msgid "index = allindexes.getByName(\"Table of Contents1\")"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03132200.xhp
+#: 03102800.xhp
msgctxt ""
-"03132200.xhp\n"
-"par_id3156422\n"
-"11\n"
+"03102800.xhp\n"
+"par_id3148552\n"
+"8\n"
"help.text"
-msgid "' use the default name for Table of Contents and a 1"
+msgid "<emph>ObjectVar:</emph> Any variable that you want to test. If the Object variable contains an OLE object, the function returns True."
msgstr ""
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
+"03102900.xhp\n"
"tit\n"
"help.text"
-msgid "Second Function [Runtime]"
+msgid "LBound Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"bm_id3153346\n"
+"03102900.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "<bookmark_value>Second function</bookmark_value>"
+msgid "<bookmark_value>LBound function</bookmark_value>"
msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"hd_id3153346\n"
+"03102900.xhp\n"
+"hd_id3156027\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030204.xhp\" name=\"Second Function [Runtime]\">Second Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03102900.xhp\" name=\"LBound Function [Runtime]\">LBound Function [Runtime]</link>"
msgstr ""
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3156023\n"
+"03102900.xhp\n"
+"par_id3147226\n"
"2\n"
"help.text"
-msgid "Returns an integer that represents the seconds of the serial time number that is generated by the TimeSerial or the TimeValue function."
-msgstr ""
+msgid "Returns the lower boundary of an array."
+msgstr "Shumëzimi i grupeve. Kthen prodhimin e dy grupeve."
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"hd_id3147264\n"
+"03102900.xhp\n"
+"hd_id3148538\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3146795\n"
+"03102900.xhp\n"
+"par_id3150503\n"
"4\n"
"help.text"
-msgid "Second (Number)"
-msgstr "Numri i dytw"
+msgid "LBound (ArrayName [, Dimension])"
+msgstr "Hapësira e vijës së dimensionit"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"hd_id3150792\n"
+"03102900.xhp\n"
+"hd_id3150984\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3154140\n"
+"03102900.xhp\n"
+"par_id3153126\n"
"6\n"
"help.text"
msgid "Integer"
msgstr "Numër i plotë"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"hd_id3156280\n"
+"03102900.xhp\n"
+"hd_id3144500\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3154124\n"
+"03102900.xhp\n"
+"par_id3145069\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that contains the serial time number that is used to calculate the number of seconds."
+msgid "<emph>ArrayName:</emph> Name of the array for which you want to return the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary of the array dimension."
msgstr ""
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3125864\n"
+"03102900.xhp\n"
+"par_id3149457\n"
"9\n"
"help.text"
-msgid "This function is the opposite of the <emph>TimeSerial </emph>function. It returns the seconds of a serial time value that is generated by the <emph>TimeSerial</emph> or <emph>TimeValue </emph>functions. For example, the expression:"
+msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary for. If a value is not specified, the first dimension is assumed."
msgstr ""
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3153951\n"
+"03102900.xhp\n"
+"hd_id3145171\n"
"10\n"
"help.text"
-msgid "Print Second(TimeSerial(12,30,41))"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3151117\n"
-"11\n"
+"03102900.xhp\n"
+"par_id3145365\n"
+"18\n"
"help.text"
-msgid "returns the value 41."
-msgstr "Kthen vlerën llogjike SAKTË."
+msgid "Print LBound(sVar()) ' Returns 10"
+msgstr "Shtyp dookumentet me bashkangjitje të të dhënave"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"hd_id3147426\n"
-"12\n"
+"03102900.xhp\n"
+"par_id3150486\n"
+"19\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Print UBound(sVar()) ' Returns 20"
+msgstr "Shtyp dookumentet me bashkangjitje të të dhënave"
-#: 03030204.xhp
+#: 03102900.xhp
msgctxt ""
-"03030204.xhp\n"
-"par_id3156441\n"
-"14\n"
+"03102900.xhp\n"
+"par_id3149665\n"
+"20\n"
"help.text"
-msgid "MsgBox \"The exact second of the current time is \"& Second( Now )"
-msgstr ""
+msgid "Print LBound(sVar(),2) ' Returns 5"
+msgstr "Shtyp dookumentet me bashkangjitje të të dhënave"
-#: 03102300.xhp
+#: 03102900.xhp
msgctxt ""
-"03102300.xhp\n"
+"03102900.xhp\n"
+"par_id3159154\n"
+"21\n"
+"help.text"
+msgid "Print UBound(sVar(),2) ' Returns 70"
+msgstr "Shtyp dookumentet me bashkangjitje të të dhënave"
+
+#: 03103000.xhp
+msgctxt ""
+"03103000.xhp\n"
"tit\n"
"help.text"
-msgid "IsDate Function [Runtime]"
+msgid "UBound Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"bm_id3145090\n"
+"03103000.xhp\n"
+"bm_id3148538\n"
"help.text"
-msgid "<bookmark_value>IsDate function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>UBound function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"hd_id3145090\n"
+"03103000.xhp\n"
+"hd_id3148538\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102300.xhp\" name=\"IsDate Function [Runtime]\">IsDate Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103000.xhp\" name=\"UBound Function [Runtime]\">UBound Function [Runtime]</link>"
msgstr ""
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"par_id3153311\n"
+"03103000.xhp\n"
+"par_id3147573\n"
"2\n"
"help.text"
-msgid "Tests if a numeric or string expression can be converted to a <emph>Date</emph> variable."
-msgstr ""
+msgid "Returns the upper boundary of an array."
+msgstr "Shumëzimi i grupeve. Kthen prodhimin e dy grupeve."
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"hd_id3153824\n"
+"03103000.xhp\n"
+"hd_id3150984\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"par_id3147573\n"
+"03103000.xhp\n"
+"par_id3149415\n"
"4\n"
"help.text"
-msgid "IsDate (Expression)"
-msgstr "Shprehje e rezervuar"
+msgid "UBound (ArrayName [, Dimension])"
+msgstr "Hapësira e vijës së dimensionit"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"hd_id3143270\n"
+"03103000.xhp\n"
+"hd_id3153897\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"par_id3147560\n"
+"03103000.xhp\n"
+"par_id3149670\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "JO logjike"
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"hd_id3148947\n"
+"03103000.xhp\n"
+"hd_id3154347\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"par_id3145069\n"
+"03103000.xhp\n"
+"par_id3153381\n"
"8\n"
"help.text"
-msgid "<emph>Expression:</emph> Any numeric or string expression that you want to test. If the expression can be converted to a date, the function returns <emph>True</emph>, otherwise the function returns <emph>False</emph>."
+msgid "<emph>ArrayName:</emph> Name of the array for which you want to determine the upper (<emph>Ubound</emph>) or the lower (<emph>LBound</emph>) boundary."
msgstr ""
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"hd_id3150447\n"
+"03103000.xhp\n"
+"par_id3148797\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "<emph>[Dimension]:</emph> Integer that specifies which dimension to return the upper(<emph>Ubound</emph>) or lower (<emph>LBound</emph>) boundary for. If no value is specified, the boundary of the first dimension is returned."
+msgstr ""
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"par_id3150869\n"
-"13\n"
+"03103000.xhp\n"
+"hd_id3153192\n"
+"10\n"
"help.text"
-msgid "Print IsDate(sDateVar) ' Returns True"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03102300.xhp
+#: 03103000.xhp
msgctxt ""
-"03102300.xhp\n"
-"par_id3147288\n"
-"15\n"
+"03103000.xhp\n"
+"par_id3152596\n"
+"18\n"
"help.text"
-msgid "Print IsDate(sDateVar) ' Returns False"
-msgstr ""
+msgid "Print LBound(sVar()) ' Returns 10"
+msgstr "Shtyp dookumentet me bashkangjitje të të dhënave"
-#: 03020400.xhp
+#: 03103000.xhp
msgctxt ""
-"03020400.xhp\n"
-"tit\n"
+"03103000.xhp\n"
+"par_id3153138\n"
+"19\n"
"help.text"
-msgid "Managing Files"
-msgstr "Të gjithë fajllat (*.*)"
+msgid "Print UBound(sVar()) ' Returns 20"
+msgstr "Shtyp dookumentet me bashkangjitje të të dhënave"
-#: 03020400.xhp
+#: 03103000.xhp
msgctxt ""
-"03020400.xhp\n"
-"hd_id3145136\n"
-"1\n"
+"03103000.xhp\n"
+"par_id3149665\n"
+"20\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020400.xhp\" name=\"Managing Files\">Managing Files</link>"
-msgstr ""
+msgid "Print LBound(sVar(),2) ' Returns 5"
+msgstr "Shtyp dookumentet me bashkangjitje të të dhënave"
-#: 03020400.xhp
+#: 03103000.xhp
msgctxt ""
-"03020400.xhp\n"
-"par_id3147264\n"
-"2\n"
+"03103000.xhp\n"
+"par_id3147214\n"
+"21\n"
"help.text"
-msgid "The functions and statements for managing files are described here."
-msgstr ""
+msgid "Print UBound(sVar(),2) ' Returns 70"
+msgstr "Shtyp dookumentet me bashkangjitje të të dhënave"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
+"03103100.xhp\n"
"tit\n"
"help.text"
-msgid "CBool Function [Runtime]"
+msgid "Let Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"bm_id3150616\n"
+"03103100.xhp\n"
+"bm_id3147242\n"
"help.text"
-msgid "<bookmark_value>CBool function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>Let statement</bookmark_value>"
+msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"hd_id3150616\n"
+"03103100.xhp\n"
+"hd_id3147242\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03100100.xhp\" name=\"CBool Function [Runtime]\">CBool Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103100.xhp\" name=\"Let Statement [Runtime]\">Let Statement [Runtime]</link>"
msgstr ""
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3145136\n"
+"03103100.xhp\n"
+"par_id3149233\n"
"2\n"
"help.text"
-msgid "Converts a string comparison or numeric comparison to a Boolean expression, or converts a single numeric expression to a Boolean expression."
-msgstr ""
+msgid "Assigns a value to a variable."
+msgstr "Shëndron një ndryshore të rastësishme në një vlerë të normalizuar."
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"hd_id3153345\n"
+"03103100.xhp\n"
+"hd_id3153127\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3149514\n"
+"03103100.xhp\n"
+"par_id3154285\n"
"4\n"
"help.text"
-msgid "CBool (Expression1 {= | <> | < | > | <= | >=} Expression2) or CBool (Number)"
-msgstr ""
+msgid "[Let] VarName=Expression"
+msgstr "**Fraza është e gabueshme**"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"hd_id3156152\n"
+"03103100.xhp\n"
+"hd_id3148944\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3155419\n"
+"03103100.xhp\n"
+"par_id3147560\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "JO logjike"
+msgid "<emph>VarName:</emph> Variable that you want to assign a value to. Value and variable type must be compatible."
+msgstr ""
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"hd_id3147530\n"
+"03103100.xhp\n"
+"par_id3148451\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "As in most BASIC dialects, the keyword <emph>Let</emph> is optional."
+msgstr ""
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3156344\n"
+"03103100.xhp\n"
+"hd_id3145785\n"
"8\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any string or numeric expressions that you want to compare. If the expressions match, the <emph>CBool</emph> function returns <emph>True</emph>, otherwise <emph>False</emph> is returned."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03100100.xhp
+#: 03103100.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3149655\n"
-"9\n"
+"03103100.xhp\n"
+"par_id3152939\n"
+"12\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to convert. If the expression equals 0, <emph>False</emph> is returned, otherwise <emph>True</emph> is returned."
+msgid "MsgBox Len(sText) ' returns 9"
msgstr ""
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3145171\n"
-"10\n"
+"03103200.xhp\n"
+"tit\n"
"help.text"
-msgid "The following example uses the <emph>CBool</emph> function to evaluate the value that is returned by the <emph>Instr</emph> function. The function checks if the word \"and\" is found in the sentence that was entered by the user."
+msgid "Option Base Statement [Runtime]"
msgstr ""
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"hd_id3156212\n"
-"11\n"
+"03103200.xhp\n"
+"bm_id3155805\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "<bookmark_value>Option Base statement</bookmark_value>"
+msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3155132\n"
-"14\n"
+"03103200.xhp\n"
+"hd_id3155805\n"
+"1\n"
"help.text"
-msgid "sText = InputBox(\"Please enter a short sentence:\")"
+msgid "<link href=\"text/sbasic/shared/03103200.xhp\" name=\"Option Base Statement [Runtime]\">Option Base Statement [Runtime]</link>"
msgstr ""
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3155855\n"
-"15\n"
+"03103200.xhp\n"
+"par_id3147242\n"
+"2\n"
"help.text"
-msgid "' Proof if the word »and« appears in the sentence."
+msgid "Defines the default lower boundary for arrays as 0 or 1."
msgstr ""
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3146984\n"
-"16\n"
+"03103200.xhp\n"
+"hd_id3150771\n"
+"3\n"
"help.text"
-msgid "' Instead of the command line"
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3148576\n"
-"17\n"
+"03103200.xhp\n"
+"par_id3147573\n"
+"4\n"
"help.text"
-msgid "' If Instr(Input, \"and\")<>0 Then..."
-msgstr ""
+msgid "Option Base { 0 | 1}"
+msgstr "Madhësia e bazës"
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3154014\n"
-"18\n"
+"03103200.xhp\n"
+"hd_id3145315\n"
+"5\n"
"help.text"
-msgid "' the CBool function is applied as follows:"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3155413\n"
-"19\n"
+"03103200.xhp\n"
+"par_id3147229\n"
+"6\n"
"help.text"
-msgid "If CBool(Instr(sText, \"and\")) Then"
+msgid "This statement must be added before the executable program code in a module."
msgstr ""
-#: 03100100.xhp
+#: 03103200.xhp
msgctxt ""
-"03100100.xhp\n"
-"par_id3152940\n"
-"20\n"
+"03103200.xhp\n"
+"hd_id3150870\n"
+"7\n"
"help.text"
-msgid "MsgBox \"The word »and« appears in the sentence you entered!\""
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
+"03103300.xhp\n"
"tit\n"
"help.text"
-msgid "Get Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "Option Explicit Statement [Runtime]"
+msgstr ""
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"bm_id3154927\n"
+"03103300.xhp\n"
+"bm_id3145090\n"
"help.text"
-msgid "<bookmark_value>Get statement</bookmark_value>"
+msgid "<bookmark_value>Option Explicit statement</bookmark_value>"
msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"hd_id3154927\n"
+"03103300.xhp\n"
+"hd_id3145090\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020201.xhp\">Get Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option Explicit Statement [Runtime]</link>"
msgstr ""
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3145069\n"
+"03103300.xhp\n"
+"par_id3148538\n"
"2\n"
"help.text"
-msgid "Reads a record from a relative file, or a sequence of bytes from a binary file, into a variable."
+msgid "Specifies that every variable in the program code must be explicitly declared with the Dim statement."
msgstr ""
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3154346\n"
+"03103300.xhp\n"
+"hd_id3149763\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020204.xhp\" name=\"PUT\"><item type=\"literal\">PUT</item></link> Statement"
-msgstr ""
-
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"hd_id3150358\n"
-"4\n"
-"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3150792\n"
-"5\n"
+"03103300.xhp\n"
+"par_id3149514\n"
+"4\n"
"help.text"
-msgid "Get [#] FileNumber As Integer, [Position], Variable"
-msgstr ""
+msgid "Option Explicit"
+msgstr "Butoni opcional"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"hd_id3154138\n"
-"6\n"
+"03103300.xhp\n"
+"hd_id3145315\n"
+"5\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3150448\n"
-"7\n"
-"help.text"
-msgid "<emph>FileNumber:</emph> Any integer expression that determines the file number."
-msgstr ""
-
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3154684\n"
-"8\n"
-"help.text"
-msgid "<emph>Position:</emph> For files opened in Random mode, <emph>Position</emph> is the number of the record that you want to read."
-msgstr ""
-
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3153768\n"
-"9\n"
+"03103300.xhp\n"
+"par_id3145172\n"
+"6\n"
"help.text"
-msgid "For files opened in Binary mode, <emph>Position</emph> is the byte position in the file where the reading starts."
+msgid "This statement must be added before the executable program code in a module."
msgstr ""
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3147319\n"
-"10\n"
+"03103300.xhp\n"
+"hd_id3125864\n"
+"7\n"
"help.text"
-msgid "If <emph>Position</emph> is omitted, the current position or the current data record of the file is used."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03020201.xhp
+#: 03103300.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3149484\n"
-"11\n"
+"03103300.xhp\n"
+"par_id3145787\n"
+"12\n"
"help.text"
-msgid "Variable: Name of the variable to be read. With the exception of object variables, you can use any variable type."
+msgid "For i% = 1 To 10 ' This results in a run-time error"
msgstr ""
-#: 03020201.xhp
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"hd_id3153144\n"
-"12\n"
+"03103400.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Public Statement [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020201.xhp
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3155307\n"
-"15\n"
+"03103400.xhp\n"
+"bm_id3153311\n"
"help.text"
-msgid "Dim sText As Variant ' Must be a variant"
-msgstr ""
+msgid "<bookmark_value>Public statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03020201.xhp
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3149411\n"
-"21\n"
+"03103400.xhp\n"
+"hd_id3153311\n"
+"1\n"
"help.text"
-msgid "Seek #iNumber,1 ' Position at beginning"
+msgid "<link href=\"text/sbasic/shared/03103400.xhp\" name=\"Public Statement [Runtime]\">Public Statement [Runtime]</link>"
msgstr ""
-#: 03020201.xhp
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3153158\n"
-"22\n"
+"03103400.xhp\n"
+"par_id3150669\n"
+"2\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
+msgid "Dimensions a variable or an array at the module level (that is, not within a subroutine or function), so that the variable and the array are valid in all libraries and modules."
msgstr ""
-#: 03020201.xhp
-msgctxt ""
-"03020201.xhp\n"
-"par_id3148457\n"
-"23\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Nga kreu në fund"
-
-#: 03020201.xhp
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3150715\n"
-"24\n"
+"03103400.xhp\n"
+"hd_id3150772\n"
+"3\n"
"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Nga kreu në fund"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03020201.xhp
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3155938\n"
-"33\n"
+"03103400.xhp\n"
+"par_id3155341\n"
+"4\n"
"help.text"
-msgid "Put #iNumber,,\"This is a new text\""
-msgstr "Nga kreu në fund"
+msgid "Public VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+msgstr ""
-#: 03020201.xhp
+#: 03103400.xhp
msgctxt ""
-"03020201.xhp\n"
-"par_id3146916\n"
-"36\n"
+"03103400.xhp\n"
+"hd_id3145315\n"
+"5\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
+"03103450.xhp\n"
"tit\n"
"help.text"
-msgid "IsNumeric Function [Runtime]"
+msgid "Global Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
-"bm_id3145136\n"
+"03103450.xhp\n"
+"bm_id3159201\n"
"help.text"
-msgid "<bookmark_value>IsNumeric function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>Global statement</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
-"hd_id3145136\n"
+"03103450.xhp\n"
+"hd_id3159201\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102700.xhp\" name=\"IsNumeric Function [Runtime]\">IsNumeric Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103450.xhp\" name=\"Global Statement [Runtime]\">Global Statement [Runtime]</link>"
msgstr ""
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
+"03103450.xhp\n"
"par_id3149177\n"
"2\n"
"help.text"
-msgid "Tests if an expression is a number. If the expression is a <link href=\"text/sbasic/shared/00000002.xhp#dezimal\" name=\"number\">number</link>, the function returns True, otherwise the function returns False."
+msgid "Dimensions a variable or an array at the global level (that is, not within a subroutine or function), so that the variable and the array are valid in all libraries and modules for the current session."
msgstr ""
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
-"hd_id3149415\n"
+"03103450.xhp\n"
+"hd_id3143270\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
+"03103450.xhp\n"
"par_id3150771\n"
"4\n"
"help.text"
-msgid "IsNumeric (Var)"
-msgstr "Var (mostër)"
+msgid "Global VarName[(start To end)] [As VarType][, VarName2[(start To end)] [As VarType][,...]]"
+msgstr ""
-#: 03102700.xhp
+#: 03103450.xhp
msgctxt ""
-"03102700.xhp\n"
-"hd_id3148685\n"
+"03103450.xhp\n"
+"hd_id3156152\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
-
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3148944\n"
-"6\n"
-"help.text"
-msgid "Bool"
-msgstr "JO logjike"
-
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3148947\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3154760\n"
-"8\n"
-"help.text"
-msgid "<emph>Var:</emph> Any expression that you want to test."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
-
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"hd_id3149656\n"
-"9\n"
-"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3147230\n"
-"13\n"
-"help.text"
-msgid "Print IsNumeric(vVar) ' Returns False"
-msgstr ""
-
-#: 03102700.xhp
-msgctxt ""
-"03102700.xhp\n"
-"par_id3154910\n"
-"15\n"
-"help.text"
-msgid "Print IsNumeric(vVar) ' Returns True"
-msgstr ""
-
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
+"03103500.xhp\n"
"tit\n"
"help.text"
-msgid "Optional (in Function Statement) [Runtime]"
-msgstr ""
+msgid "Static Statement [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"bm_id3149205\n"
+"03103500.xhp\n"
+"bm_id3149798\n"
"help.text"
-msgid "<bookmark_value>Optional function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>Static statement</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"hd_id3149205\n"
+"03103500.xhp\n"
+"hd_id3149798\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement) [Runtime]\">Optional (in Function Statement) [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103500.xhp\" name=\"Static Statement [Runtime]\">Static Statement [Runtime]</link>"
msgstr ""
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"par_id3143267\n"
+"03103500.xhp\n"
+"par_id3153311\n"
"2\n"
"help.text"
-msgid "Allows you to define parameters that are passed to a function as optional."
+msgid "Declares a variable or an array at the procedure level within a subroutine or a function, so that the values of the variable or the array are retained after exiting the subroutine or function. Dim statement conventions are also valid."
msgstr ""
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"par_id3155419\n"
+"03103500.xhp\n"
+"par_id3147264\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
+msgid "The <emph>Static statement</emph> cannot be used to define variable arrays. Arrays must be specified according to a fixed size."
msgstr ""
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"hd_id3153824\n"
+"03103500.xhp\n"
+"hd_id3149657\n"
"4\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"par_id3159157\n"
+"03103500.xhp\n"
+"par_id3150400\n"
"5\n"
"help.text"
-msgid "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
+msgid "Static VarName[(start To end)] [As VarType], VarName2[(start To end)] [As VarType], ..."
msgstr ""
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"hd_id3145610\n"
-"7\n"
+"03103500.xhp\n"
+"hd_id3148452\n"
+"6\n"
"help.text"
-msgid "Examples:"
-msgstr "Shembuj:"
+msgid "Example:"
+msgstr "Shembull"
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"par_id3154347\n"
-"8\n"
+"03103500.xhp\n"
+"par_id3150870\n"
+"11\n"
"help.text"
-msgid "Result = MyFunction(\"Here\", 1, \"There\") ' all arguments are passed."
+msgid "MsgBox iResult,0,\"The answer is\""
msgstr ""
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"par_id3146795\n"
-"9\n"
+"03103500.xhp\n"
+"par_id3151115\n"
+"15\n"
"help.text"
-msgid "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
+msgid "' Function for initialization of the static variable"
msgstr ""
-#: 03104100.xhp
+#: 03103500.xhp
msgctxt ""
-"03104100.xhp\n"
-"par_id3153897\n"
-"10\n"
+"03103500.xhp\n"
+"par_id1057161\n"
"help.text"
-msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
+msgid "Const iMinimum As Integer = 40 ' minimum return value of this function"
msgstr ""
-#: 03090406.xhp
+#: 03103500.xhp
msgctxt ""
-"03090406.xhp\n"
+"03103500.xhp\n"
+"par_id580462\n"
+"help.text"
+msgid "If iInit = 0 Then ' check if initialized"
+msgstr ""
+
+#: 03103600.xhp
+msgctxt ""
+"03103600.xhp\n"
"tit\n"
"help.text"
-msgid "Function Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "TypeName Function; VarType Function[Runtime]"
+msgstr ""
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"bm_id3153346\n"
+"03103600.xhp\n"
+"bm_id3143267\n"
"help.text"
-msgid "<bookmark_value>Function statement</bookmark_value>"
-msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
+msgid "<bookmark_value>TypeName function</bookmark_value><bookmark_value>VarType function</bookmark_value>"
+msgstr ""
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"hd_id3153346\n"
+"03103600.xhp\n"
+"hd_id3143267\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090406.xhp\" name=\"Function Statement [Runtime]\">Function Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103600.xhp\" name=\"TypeName Function; VarType Function[Runtime]\">TypeName Function; VarType Function[Runtime]</link>"
msgstr ""
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3159158\n"
+"03103600.xhp\n"
+"par_id3159157\n"
"2\n"
"help.text"
-msgid "Defines a subroutine that can be used as an expression to determine a return type."
+msgid "Returns a string (TypeName) or a numeric value (VarType) that contains information for a variable."
msgstr ""
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"hd_id3145316\n"
+"03103600.xhp\n"
+"hd_id3153825\n"
"3\n"
"help.text"
-msgid "Syntax"
+msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3148944\n"
+"03103600.xhp\n"
+"par_id3155341\n"
"4\n"
"help.text"
-msgid "see Parameter"
-msgstr "Parametri i sllajdit"
+msgid "TypeName (Variable)VarType (Variable)"
+msgstr "**Ndryshorja nuk u gjet**"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"hd_id3154760\n"
+"03103600.xhp\n"
+"hd_id3145610\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3156344\n"
+"03103600.xhp\n"
+"par_id3148947\n"
"6\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "String; Integer"
+msgstr "Numri i plotë për orë"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3149457\n"
+"03103600.xhp\n"
+"hd_id3146795\n"
"7\n"
"help.text"
-msgid "Function Name[(VarName1 [As Type][, VarName2 [As Type][,...]]]) [As Type]"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3153360\n"
+"03103600.xhp\n"
+"par_id3148664\n"
"8\n"
"help.text"
-msgid "statement block"
-msgstr "Shigjetat e bllokut"
+msgid "<emph>Variable:</emph> The variable that you want to determine the type of. You can use the following values:"
+msgstr ""
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3148797\n"
+"03103600.xhp\n"
+"par_id3145171\n"
"9\n"
"help.text"
-msgid "[Exit Function]"
-msgstr "Funksion eksponencial"
+msgid "key word"
+msgstr "Zgjedh fjalën"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3145419\n"
+"03103600.xhp\n"
+"par_id3156212\n"
"10\n"
"help.text"
-msgid "statement block"
-msgstr "Shigjetat e bllokut"
+msgid "VarType"
+msgstr ""
-#: 03090406.xhp
-#, fuzzy
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3150449\n"
+"03103600.xhp\n"
+"par_id3154684\n"
"11\n"
"help.text"
-msgid "End Function"
-msgstr "Funksion eksponencial"
+msgid "Variable type"
+msgstr "Lloji i publikimit"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3156281\n"
+"03103600.xhp\n"
+"par_id3151041\n"
"12\n"
"help.text"
-msgid "Parameter"
-msgstr "Parametri i sllajdit"
+msgid "Boolean"
+msgstr "JO logjike"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3153193\n"
+"03103600.xhp\n"
+"par_id3153367\n"
"13\n"
"help.text"
-msgid "<emph>Name:</emph> Name of the subroutine to contain the value returned by the function."
-msgstr ""
+msgid "11"
+msgstr "1"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3147229\n"
+"03103600.xhp\n"
+"par_id3148645\n"
"14\n"
"help.text"
-msgid "<emph>VarName:</emph> Parameter to be passed to the subroutine."
-msgstr ""
+msgid "Boolean variable"
+msgstr "Data (e ndryshueshme)"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3147287\n"
+"03103600.xhp\n"
+"par_id3153138\n"
"15\n"
"help.text"
-msgid "<emph>Type:</emph> Type-declaration keyword."
-msgstr ""
+msgid "Date"
+msgstr "Data"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"hd_id3163710\n"
+"03103600.xhp\n"
+"par_id3153363\n"
"16\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3152939\n"
-"21\n"
-"help.text"
-msgid "For siStep = 0 To 10 ' Fill array with test data"
-msgstr ""
-
-#: 03090406.xhp
-msgctxt ""
-"03090406.xhp\n"
-"par_id3154943\n"
-"32\n"
-"help.text"
-msgid "' Linsearch searches a TextArray:sList() for a TextEntry:"
+msgid "7"
msgstr ""
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3155601\n"
-"33\n"
+"03103600.xhp\n"
+"par_id3155411\n"
+"17\n"
"help.text"
-msgid "' Return value Is the index of the entry Or 0 (Null)"
-msgstr ""
+msgid "Date variable"
+msgstr "Data (e ndryshueshme)"
-#: 03090406.xhp
+#: 03103600.xhp
msgctxt ""
-"03090406.xhp\n"
-"par_id3153707\n"
-"36\n"
+"03103600.xhp\n"
+"par_id3146975\n"
+"18\n"
"help.text"
-msgid "Exit For ' sItem found"
-msgstr ""
+msgid "Double"
+msgstr "Dyfish"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"tit\n"
+"03103600.xhp\n"
+"par_id3150486\n"
+"19\n"
"help.text"
-msgid "Using Procedures and Functions"
+msgid "5"
msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"bm_id3149456\n"
+"03103600.xhp\n"
+"par_id3148616\n"
+"20\n"
"help.text"
-msgid "<bookmark_value>procedures</bookmark_value><bookmark_value>functions;using</bookmark_value><bookmark_value>variables;passing to procedures and functions</bookmark_value><bookmark_value>parameters;for procedures and functions</bookmark_value><bookmark_value>parameters;passing by reference or value</bookmark_value><bookmark_value>variables;scope</bookmark_value><bookmark_value>scope of variables</bookmark_value><bookmark_value>GLOBAL variables</bookmark_value><bookmark_value>PUBLIC variables</bookmark_value><bookmark_value>PRIVATE variables</bookmark_value><bookmark_value>functions;return value type</bookmark_value><bookmark_value>return value type of functions</bookmark_value>"
-msgstr ""
+msgid "Double floating point variable"
+msgstr "Gabim: Operacion i pavlefshëm i pikës qarkulluese"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3149456\n"
-"1\n"
+"03103600.xhp\n"
+"par_id3148457\n"
+"21\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01020300.xhp\">Using Procedures and Functions</link>"
-msgstr ""
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3150767\n"
-"2\n"
+"03103600.xhp\n"
+"par_id3145647\n"
+"22\n"
"help.text"
-msgid "The following describes the basic use of procedures and functions in $[officename] Basic."
+msgid "2"
msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3151215\n"
-"56\n"
+"03103600.xhp\n"
+"par_id3154490\n"
+"23\n"
"help.text"
-msgid "When you create a new module, $[officename] Basic automatically inserts a SUB called \"Main\". This default name has nothing to do with the order or the starting point of a $[officename] Basic project. You can also safely rename this SUB."
-msgstr ""
+msgid "Integer variable"
+msgstr "Data (e ndryshueshme)"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id314756320\n"
+"03103600.xhp\n"
+"par_id3149960\n"
+"24\n"
"help.text"
-msgid "Some restrictions apply for the names of your public variables, subs, and functions. You must not use the same name as one of the modules of the same library."
-msgstr ""
+msgid "Long"
+msgstr "Standard (e gjatë)"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3154124\n"
-"3\n"
+"03103600.xhp\n"
+"par_id3154513\n"
+"25\n"
"help.text"
-msgid "Procedures (SUBS) and functions (FUNCTIONS) help you maintaining a structured overview by separating a program into logical pieces."
+msgid "3"
msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3153193\n"
-"4\n"
+"03103600.xhp\n"
+"par_id3151318\n"
+"26\n"
"help.text"
-msgid "One benefit of procedures and functions is that, once you have developed a program code containing task components, you can use this code in another project."
-msgstr ""
+msgid "Long integer variable"
+msgstr "**Ndryshorja nuk u gjet**"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3153770\n"
-"26\n"
+"03103600.xhp\n"
+"par_id3146972\n"
+"27\n"
"help.text"
-msgid "Passing Variables to Procedures (SUB) and Functions (FUNCTION)"
-msgstr ""
+msgid "Object"
+msgstr "Objekt"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3155414\n"
-"27\n"
+"03103600.xhp\n"
+"par_id3154482\n"
+"28\n"
"help.text"
-msgid "Variables can be passed to both procedures and functions. The SUB or FUNCTION must be declared to expect parameters:"
+msgid "9"
msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3151114\n"
+"03103600.xhp\n"
+"par_id3150323\n"
"29\n"
"help.text"
-msgid "Program code"
-msgstr "Kodi i karakterit"
+msgid "Object variable"
+msgstr "Variabla e objektit nuk është përcaktuar"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3152577\n"
-"31\n"
+"03103600.xhp\n"
+"par_id3148405\n"
+"30\n"
"help.text"
-msgid "The SUB is called using the following syntax:"
-msgstr ""
+msgid "Single"
+msgstr "E vetme"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3147124\n"
-"33\n"
+"03103600.xhp\n"
+"par_id3149020\n"
+"31\n"
"help.text"
-msgid "The parameters passed to a SUB must fit to those specified in the SUB declaration."
+msgid "4"
msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3147397\n"
-"34\n"
+"03103600.xhp\n"
+"par_id3147341\n"
+"32\n"
"help.text"
-msgid "The same process applies to FUNCTIONS. In addition, functions always return a function result. The result of a function is defined by assigning the return value to the function name:"
-msgstr ""
+msgid "Single floating-point variable"
+msgstr "Gabim: Operacion i pavlefshëm i pikës qarkulluese"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3156284\n"
-"36\n"
+"03103600.xhp\n"
+"par_id3155901\n"
+"33\n"
"help.text"
-msgid "Program code"
-msgstr "Kodi i karakterit"
+msgid "String"
+msgstr "Varg"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3145799\n"
-"37\n"
+"03103600.xhp\n"
+"par_id3155960\n"
+"34\n"
"help.text"
-msgid "FunctionName=Result"
+msgid "8"
msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3153839\n"
-"39\n"
+"03103600.xhp\n"
+"par_id3146313\n"
+"35\n"
"help.text"
-msgid "The FUNCTION is called using the following syntax:"
-msgstr ""
+msgid "String variable"
+msgstr "Data (e ndryshueshme)"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3146914\n"
-"40\n"
+"03103600.xhp\n"
+"par_id3145149\n"
+"36\n"
"help.text"
-msgid "Variable=FunctionName(Parameter1, Parameter2,...)"
-msgstr ""
+msgid "Variant"
+msgstr "Zgjedhni një variantë"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_idN107B3\n"
+"03103600.xhp\n"
+"par_id3154021\n"
+"37\n"
"help.text"
-msgid "You can also use the fully qualified name to call a procedure or function:<br/><item type=\"literal\">Library.Module.Macro()</item><br/> For example, to call the Autotext macro from the Gimmicks library, use the following command:<br/><item type=\"literal\">Gimmicks.AutoText.Main()</item>"
-msgstr ""
+msgid "12"
+msgstr "Yll 12-cepësh"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3156276\n"
-"45\n"
+"03103600.xhp\n"
+"par_id3145789\n"
+"38\n"
"help.text"
-msgid "Passing Variables by Value or Reference"
+msgid "Variant variable (can contain all types specified by the definition)"
msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3155765\n"
-"47\n"
+"03103600.xhp\n"
+"par_id3148630\n"
+"39\n"
"help.text"
-msgid "Parameters can be passed to a SUB or a FUNCTION either by reference or by value. Unless otherwise specified, a parameter is always passed by reference. That means that a SUB or a FUNCTION gets the parameter and can read and modify its value."
-msgstr ""
+msgid "Empty"
+msgstr "<bosh>"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3145640\n"
-"53\n"
+"03103600.xhp\n"
+"par_id3152584\n"
+"40\n"
"help.text"
-msgid "If you want to pass a parameter by value insert the key word \"ByVal\" in front of the parameter when you call a SUB or FUNCTION, for example:"
+msgid "0"
msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3150042\n"
-"54\n"
+"03103600.xhp\n"
+"par_id3151278\n"
+"41\n"
"help.text"
-msgid "Result = Function(<emph>ByVal</emph> Parameter)"
-msgstr ""
+msgid "Variable is not initialized"
+msgstr "Kontrollimi i drejtshkrimit nuk është në dispozicion"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3149258\n"
-"55\n"
+"03103600.xhp\n"
+"par_id3154576\n"
+"42\n"
"help.text"
-msgid "In this case, the original content of the parameter will not be modified by the FUNCTION since it only gets the value and not the parameter itself."
-msgstr ""
+msgid "Null"
+msgstr "Është e zbraztë"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3150982\n"
-"57\n"
+"03103600.xhp\n"
+"par_id3166424\n"
+"43\n"
"help.text"
-msgid "Scope of Variables"
+msgid "1"
msgstr ""
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3149814\n"
-"58\n"
+"03103600.xhp\n"
+"par_id3145131\n"
+"44\n"
"help.text"
-msgid "A variable defined within a SUB or FUNCTION, only remains valid until the procedure is exited. This is known as a \"local\" variable. In many cases, you need a variable to be valid in all procedures, in every module of all libraries, or after a SUB or FUNCTION is exited."
-msgstr ""
+msgid "No valid data"
+msgstr "jo, ruaj të dhënat ekzistuese"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3154186\n"
-"59\n"
+"03103600.xhp\n"
+"hd_id3149338\n"
+"45\n"
"help.text"
-msgid "Declaring Variables Outside a SUB or FUNCTION"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 01020300.xhp
+#: 03103600.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3150208\n"
-"111\n"
+"03103600.xhp\n"
+"par_id3148817\n"
+"58\n"
"help.text"
-msgid "Global VarName As TYPENAME"
+msgid "TypeName(lVar) & \" \" & VarType(lVar),0,\"Some types In $[officename] Basic\""
msgstr ""
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3145258\n"
-"112\n"
+"03103700.xhp\n"
+"tit\n"
"help.text"
-msgid "The variable is valid as long as the $[officename] session lasts."
-msgstr ""
+msgid "Set Statement[Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3153198\n"
-"60\n"
+"03103700.xhp\n"
+"bm_id3154422\n"
"help.text"
-msgid "Public VarName As TYPENAME"
+msgid "<bookmark_value>Set statement</bookmark_value><bookmark_value>Nothing object</bookmark_value>"
msgstr ""
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3150088\n"
-"61\n"
+"03103700.xhp\n"
+"hd_id3154422\n"
+"1\n"
"help.text"
-msgid "The variable is valid in all modules."
+msgid "<link href=\"text/sbasic/shared/03103700.xhp\" name=\"Set Statement[Runtime]\">Set Statement[Runtime]</link>"
msgstr ""
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3158212\n"
-"62\n"
+"03103700.xhp\n"
+"par_id3159149\n"
+"2\n"
"help.text"
-msgid "Private VarName As TYPENAME"
+msgid "Sets an object reference on a variable or a Property."
msgstr ""
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3152994\n"
-"63\n"
+"03103700.xhp\n"
+"hd_id3153105\n"
+"3\n"
"help.text"
-msgid "The variable is only valid in this module."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3150368\n"
-"65\n"
+"03103700.xhp\n"
+"par_id3154217\n"
+"4\n"
"help.text"
-msgid "The variable is only valid in this module."
-msgstr ""
+msgid "Set ObjectVar = Object"
+msgstr "Variabla e objektit nuk është përcaktuar"
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id5097506\n"
+"03103700.xhp\n"
+"hd_id3154685\n"
+"5\n"
"help.text"
-msgid "Example for private variables"
-msgstr "Duke caktuar të ndryshueshmen PROM për Arcboot"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id8738975\n"
+"03103700.xhp\n"
+"par_id3156281\n"
+"6\n"
"help.text"
-msgid "Enforce private variables to be private across modules by setting CompatibilityMode(true)."
+msgid "<emph>ObjectVar:</emph> a variable or a property that requires an object reference."
msgstr ""
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id9475997\n"
+"03103700.xhp\n"
+"par_id3159252\n"
+"7\n"
"help.text"
-msgid "myText = \"Hello\""
+msgid "<emph>Object:</emph> Object that the variable or the property refers to."
msgstr ""
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id6933500\n"
+"03103700.xhp\n"
+"par_idN10623\n"
"help.text"
-msgid "Print \"In module1 : \", myText"
+msgid "<emph>Nothing</emph> - Assign the <emph>Nothing</emph> object to a variable to remove a previous assignment."
msgstr ""
-#: 01020300.xhp
+#: 03103700.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id4104129\n"
+"03103700.xhp\n"
+"hd_id3159153\n"
+"8\n"
"help.text"
-msgid "' Now returns empty string"
-msgstr "Vargu i thatë është i PAVLEFSHËM"
+msgid "Example:"
+msgstr "Shembull"
-#: 01020300.xhp
+#: 03103800.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id7906125\n"
+"03103800.xhp\n"
+"tit\n"
"help.text"
-msgid "' (or rises error for Option Explicit)"
-msgstr ""
+msgid "FindObject Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01020300.xhp
+#: 03103800.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id8055970\n"
+"03103800.xhp\n"
+"bm_id3145136\n"
"help.text"
-msgid "Print \"Now in module2 : \", myText"
-msgstr ""
+msgid "<bookmark_value>FindObject function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 01020300.xhp
+#: 03103800.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3154368\n"
-"66\n"
+"03103800.xhp\n"
+"hd_id3145136\n"
+"1\n"
"help.text"
-msgid "Saving Variable Content after Exiting a SUB or FUNCTION"
+msgid "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function [Runtime]\">FindObject Function [Runtime]</link>"
msgstr ""
-#: 01020300.xhp
+#: 03103800.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3156288\n"
-"67\n"
+"03103800.xhp\n"
+"par_id3155341\n"
+"2\n"
"help.text"
-msgid "Static VarName As TYPENAME"
+msgid "Enables an object to be addressed at run-time as a string parameter through the object name."
msgstr ""
-#: 01020300.xhp
+#: 03103800.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3154486\n"
-"68\n"
+"03103800.xhp\n"
+"par_id3150669\n"
+"3\n"
"help.text"
-msgid "The variable retains its value until the next time the FUNCTION or SUB is entered. The declaration must exist inside a SUB or a FUNCTION."
+msgid "For example, the following command:"
msgstr ""
-#: 01020300.xhp
+#: 03103800.xhp
msgctxt ""
-"01020300.xhp\n"
-"hd_id3155809\n"
-"41\n"
+"03103800.xhp\n"
+"par_id3148473\n"
+"4\n"
"help.text"
-msgid "Specifying the Return Value Type of a FUNCTION"
-msgstr ""
+msgid "MyObj.Prop1.Command = 5"
+msgstr "Zgjidh njw linjw tw komandws"
-#: 01020300.xhp
+#: 03103800.xhp
msgctxt ""
-"01020300.xhp\n"
-"par_id3149404\n"
-"42\n"
+"03103800.xhp\n"
+"par_id3156023\n"
+"5\n"
"help.text"
-msgid "As with variables, include a type-declaration character after the function name, or the type indicated by \"As\" and the corresponding key word at the end of the parameter list to define the type of the function's return value, for example:"
-msgstr ""
+msgid "corresponds to the command block:"
+msgstr "Deri në bllok margjinë të epërme"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"tit\n"
+"03103800.xhp\n"
+"par_id3153896\n"
+"6\n"
"help.text"
-msgid "Eqv Operator [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "Dim ObjVar as Object"
+msgstr "Variabla e objektit nuk është përcaktuar"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"bm_id3156344\n"
+"03103800.xhp\n"
+"par_id3154760\n"
+"7\n"
"help.text"
-msgid "<bookmark_value>Eqv operator (logical)</bookmark_value>"
-msgstr ""
+msgid "Dim ObjProp as Object"
+msgstr "Variabla e objektit nuk është përcaktuar"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"hd_id3156344\n"
-"1\n"
+"03103800.xhp\n"
+"par_id3145069\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060200.xhp\" name=\"Eqv Operator [Runtime]\">Eqv Operator [Runtime]</link>"
-msgstr ""
+msgid "ObjName As String = \"MyObj\""
+msgstr "Modeli i lidhëses është i pavlefshëm"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3149656\n"
-"2\n"
+"03103800.xhp\n"
+"par_id3154939\n"
+"9\n"
"help.text"
-msgid "Calculates the logical equivalence of two expressions."
+msgid "ObjVar = FindObject( ObjName As String )"
msgstr ""
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"hd_id3154367\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"par_id3154910\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 Eqv Expression2"
-msgstr "Gabim: Pa rezultat"
-
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"hd_id3151043\n"
-"5\n"
+"03103800.xhp\n"
+"par_id3150793\n"
+"10\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "PropName As String = \"Prop1\""
+msgstr "Modeli i lidhëses është i pavlefshëm"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3150869\n"
-"6\n"
+"03103800.xhp\n"
+"par_id3154141\n"
+"11\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the comparison."
+msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
msgstr ""
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3150448\n"
-"7\n"
+"03103800.xhp\n"
+"par_id3156424\n"
+"12\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to compare."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "ObjProp.Command = 5"
+msgstr "DDE Komandë"
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3149562\n"
-"8\n"
+"03103800.xhp\n"
+"par_id3145420\n"
+"13\n"
"help.text"
-msgid "When testing for equivalence between Boolean expressions, the result is <emph>True</emph> if both expressions are either <emph>True</emph> or <emph>False</emph>."
+msgid "This allows names to be dynamically created at run-time. For example:"
msgstr ""
-#: 03060200.xhp
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3154319\n"
-"9\n"
+"03103800.xhp\n"
+"par_id3153104\n"
+"14\n"
"help.text"
-msgid "In a bit-wise comparison, the Eqv operator only sets the corresponding bit in the result if a bit is set in both expressions, or in neither expression."
+msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five control names."
msgstr ""
-#: 03060200.xhp
-msgctxt ""
-"03060200.xhp\n"
-"hd_id3159154\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03060200.xhp
-#, fuzzy
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3152462\n"
+"03103800.xhp\n"
+"par_id3150767\n"
"15\n"
"help.text"
-msgid "vOut = A > B Eqv B > C ' returns -1"
-msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
+msgid "See also: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
+msgstr ""
-#: 03060200.xhp
-#, fuzzy
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3153191\n"
+"03103800.xhp\n"
+"hd_id3150868\n"
"16\n"
"help.text"
-msgid "vOut = B > A Eqv B > C ' returns 0"
-msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03060200.xhp
-#, fuzzy
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3145799\n"
+"03103800.xhp\n"
+"par_id3151042\n"
"17\n"
"help.text"
-msgid "vOut = A > B Eqv B > D ' returns 0"
-msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
+msgid "FindObject( ObjName As String )"
+msgstr ""
-#: 03060200.xhp
-#, fuzzy
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3149412\n"
+"03103800.xhp\n"
+"hd_id3159254\n"
"18\n"
"help.text"
-msgid "vOut = (B > D Eqv B > A) ' returns -1"
-msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03060200.xhp
-#, fuzzy
+#: 03103800.xhp
msgctxt ""
-"03060200.xhp\n"
-"par_id3149959\n"
+"03103800.xhp\n"
+"par_id3150439\n"
"19\n"
"help.text"
-msgid "vOut = B Eqv A ' returns -3"
-msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
+msgid "<emph>ObjName: </emph>String that specifies the name of the object that you want to address at run-time."
+msgstr ""
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
+"03103900.xhp\n"
"tit\n"
"help.text"
-msgid "MsgBox Statement [Runtime]"
+msgid "FindPropertyObject Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"bm_id1807916\n"
+"03103900.xhp\n"
+"bm_id3146958\n"
"help.text"
-msgid "<bookmark_value>MsgBox statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+msgid "<bookmark_value>FindPropertyObject function</bookmark_value>"
+msgstr "E kthen funksionin gabim plotwsues"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"hd_id3154927\n"
+"03103900.xhp\n"
+"hd_id3146958\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010101.xhp\">MsgBox Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject Function [Runtime]\">FindPropertyObject Function [Runtime]</link>"
msgstr ""
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3148947\n"
+"03103900.xhp\n"
+"par_id3154285\n"
"2\n"
"help.text"
-msgid "Displays a dialog box containing a message."
+msgid "Enables objects to be addressed at run-time as a string parameter using the object name."
msgstr ""
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"hd_id3153897\n"
+"03103900.xhp\n"
+"par_id3147573\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "For instance, the command:"
+msgstr "Zgjidh njw linjw tw komandws"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3148664\n"
+"03103900.xhp\n"
+"par_id3145610\n"
"4\n"
"help.text"
-msgid "MsgBox Text As String [,Type As Integer [,Dialogtitle As String]] (As Statement) or MsgBox (Text As String [,Type As Integer [,Dialogtitle As String]]) (As Function)"
-msgstr ""
+msgid "MyObj.Prop1.Command = 5"
+msgstr "Zgjidh njw linjw tw komandws"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"hd_id3153361\n"
+"03103900.xhp\n"
+"par_id3147265\n"
"5\n"
"help.text"
-msgid "Parameter:"
-msgstr "Parametri i sllajdit"
+msgid "corresponds to the following command block:"
+msgstr "Deri në bllok margjinë të epërme"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3148798\n"
+"03103900.xhp\n"
+"par_id3153896\n"
"6\n"
"help.text"
-msgid "<emph>Text</emph>: String expression displayed as a message in the dialog box. Line breaks can be inserted with Chr$(13)."
-msgstr ""
+msgid "Dim ObjVar as Object"
+msgstr "Variabla e objektit nuk është përcaktuar"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3150769\n"
+"03103900.xhp\n"
+"par_id3148664\n"
"7\n"
"help.text"
-msgid "<emph>DialogTitle</emph>: String expression displayed in the title bar of the dialog. If omitted, the title bar displays the name of the respective application."
-msgstr ""
+msgid "Dim ObjProp as Object"
+msgstr "Variabla e objektit nuk është përcaktuar"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3147228\n"
+"03103900.xhp\n"
+"par_id3150792\n"
"8\n"
"help.text"
-msgid "<emph>Type</emph>: Any integer expression that specifies the dialog type, as well as the number and type of buttons to display, and the icon type. <emph>Type</emph> represents a combination of bit patterns, that is, a combination of elements can be defined by adding their respective values:"
-msgstr ""
+msgid "ObjName As String = \"MyObj\""
+msgstr "Modeli i lidhëses është i pavlefshëm"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3161832\n"
+"03103900.xhp\n"
+"par_id3154365\n"
"9\n"
"help.text"
-msgid "0 : Display OK button only."
+msgid "ObjVar = FindObject( ObjName As String )"
msgstr ""
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3153726\n"
+"03103900.xhp\n"
+"par_id3148453\n"
"10\n"
"help.text"
-msgid "1 : Display OK and Cancel buttons."
-msgstr ""
+msgid "PropName As String = \"Prop1\""
+msgstr "Modeli i lidhëses është i pavlefshëm"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3149665\n"
+"03103900.xhp\n"
+"par_id3150449\n"
"11\n"
"help.text"
-msgid "2 : Display Abort, Retry, and Ignore buttons."
+msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
msgstr ""
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3147318\n"
+"03103900.xhp\n"
+"par_id3159152\n"
"12\n"
"help.text"
-msgid "3 : Display Yes, No and Cancel buttons."
-msgstr ""
+msgid "ObjProp.Command = 5"
+msgstr "DDE Komandë"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3155412\n"
+"03103900.xhp\n"
+"par_id3156214\n"
"13\n"
"help.text"
-msgid "4 : Display Yes and No buttons."
+msgid "To dynamically create Names at run-time, use:"
msgstr ""
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3146119\n"
+"03103900.xhp\n"
+"par_id3154686\n"
"14\n"
"help.text"
-msgid "5 : Display Retry and Cancel buttons."
+msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five names."
msgstr ""
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3159155\n"
+"03103900.xhp\n"
+"par_id3150868\n"
"15\n"
"help.text"
-msgid "16 : Add the Stop icon to the dialog."
+msgid "See also: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
msgstr ""
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3145366\n"
+"03103900.xhp\n"
+"hd_id3147287\n"
"16\n"
"help.text"
-msgid "32 : Add the Question icon to the dialog."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3147350\n"
+"03103900.xhp\n"
+"par_id3149560\n"
"17\n"
"help.text"
-msgid "48 : Add the Exclamation icon to the dialog."
+msgid "FindPropertyObject( ObjVar, PropName As String )"
msgstr ""
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3149960\n"
+"03103900.xhp\n"
+"hd_id3150012\n"
"18\n"
"help.text"
-msgid "64 : Add the Information icon to the dialog."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3154944\n"
+"03103900.xhp\n"
+"par_id3109839\n"
"19\n"
"help.text"
-msgid "128 : First button in the dialog as default button."
+msgid "<emph>ObjVar:</emph> Object variable that you want to dynamically define at run-time."
msgstr ""
-#: 03010101.xhp
+#: 03103900.xhp
msgctxt ""
-"03010101.xhp\n"
-"par_id3155417\n"
+"03103900.xhp\n"
+"par_id3153363\n"
"20\n"
"help.text"
-msgid "256 : Second button in the dialog as default button."
-msgstr ""
-
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3153878\n"
-"21\n"
-"help.text"
-msgid "512 : Third button in the dialog as default button."
-msgstr ""
-
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"hd_id3150715\n"
-"22\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3150327\n"
-"24\n"
-"help.text"
-msgid "Const sText1 = \"An unexpected error occurred.\""
-msgstr "Ndodhi një gabim i papritur gjatë çmontimit të ndarjeve."
-
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3146912\n"
-"25\n"
-"help.text"
-msgid "Const sText2 = \"The program execution will continue, however.\""
+msgid "<emph>PropName:</emph> String that specifies the name of the property that you want to address at run-time."
msgstr ""
-#: 03010101.xhp
-msgctxt ""
-"03010101.xhp\n"
-"par_id3154757\n"
-"26\n"
-"help.text"
-msgid "Const sText3 = \"Error\""
-msgstr "Ka ndodhur një gabim i panjohur"
-
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
+"03104000.xhp\n"
"tit\n"
"help.text"
-msgid "Hex Function [Runtime]"
+msgid "IsMissing function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"bm_id3150616\n"
+"03104000.xhp\n"
+"bm_id3153527\n"
"help.text"
-msgid "<bookmark_value>Hex function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>IsMissing function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"hd_id3150616\n"
+"03104000.xhp\n"
+"hd_id3153527\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080801.xhp\" name=\"Hex Function [Runtime]\">Hex Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing function [Runtime]\">IsMissing function [Runtime]</link>"
msgstr ""
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"par_id3145136\n"
+"03104000.xhp\n"
+"par_id3153825\n"
"2\n"
"help.text"
-msgid "Returns a string that represents the hexadecimal value of a number."
+msgid "Tests if a function is called with an optional parameter."
msgstr ""
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"hd_id3147573\n"
+"03104000.xhp\n"
+"par_id3150669\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "See also: <link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional\">Optional</link>"
+msgstr ""
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"par_id3150771\n"
+"03104000.xhp\n"
+"hd_id3145611\n"
"4\n"
"help.text"
-msgid "Hex (Number)"
-msgstr "Numri i faqes"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"hd_id3147530\n"
+"03104000.xhp\n"
+"par_id3154924\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "IsMissing( ArgumentName )"
+msgstr ""
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"par_id3159414\n"
+"03104000.xhp\n"
+"hd_id3145069\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Varg"
-
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"hd_id3156344\n"
-"7\n"
-"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03080801.xhp
-#, fuzzy
-msgctxt ""
-"03080801.xhp\n"
-"par_id3148947\n"
-"8\n"
-"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to convert to a hexadecimal number."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
-
-#: 03080801.xhp
-msgctxt ""
-"03080801.xhp\n"
-"hd_id3154365\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"par_id3156214\n"
-"30\n"
+"03104000.xhp\n"
+"par_id3149457\n"
+"7\n"
"help.text"
-msgid "' uses BasicFormulas in $[officename] Calc"
+msgid "<emph>ArgumentName:</emph> the name of an optional argument."
msgstr ""
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"par_id3149262\n"
-"20\n"
+"03104000.xhp\n"
+"par_id3150398\n"
+"8\n"
"help.text"
-msgid "' Returns a long integer from a hexadecimal value."
+msgid "If the IsMissing function is called by the ArgumentName, then True is returned."
msgstr ""
-#: 03080801.xhp
+#: 03104000.xhp
msgctxt ""
-"03080801.xhp\n"
-"par_id3147215\n"
-"25\n"
+"03104000.xhp\n"
+"par_id3148798\n"
+"9\n"
"help.text"
-msgid "' Calculates a hexadecimal value in integer."
+msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
msgstr ""
-#: 03080800.xhp
+#: 03104100.xhp
msgctxt ""
-"03080800.xhp\n"
+"03104100.xhp\n"
"tit\n"
"help.text"
-msgid "Converting Numbers"
-msgstr "Numrat e faqeve"
-
-#: 03080800.xhp
-msgctxt ""
-"03080800.xhp\n"
-"hd_id3145315\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03080800.xhp\" name=\"Converting Numbers\">Converting Numbers</link>"
-msgstr ""
-
-#: 03080800.xhp
-msgctxt ""
-"03080800.xhp\n"
-"par_id3154760\n"
-"2\n"
-"help.text"
-msgid "The following functions convert numbers from one number format to another."
+msgid "Optional (in Function Statement) [Runtime]"
msgstr ""
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"tit\n"
-"help.text"
-msgid "InStr Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"bm_id3155934\n"
+"03104100.xhp\n"
+"bm_id3149205\n"
"help.text"
-msgid "<bookmark_value>InStr function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>Optional function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"hd_id3155934\n"
+"03104100.xhp\n"
+"hd_id3149205\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"InStr Function [Runtime]\">InStr Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03104100.xhp\" name=\"Optional (in Function Statement) [Runtime]\">Optional (in Function Statement) [Runtime]</link>"
msgstr ""
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"par_id3153990\n"
+"03104100.xhp\n"
+"par_id3143267\n"
"2\n"
"help.text"
-msgid "Returns the position of a string within another string."
+msgid "Allows you to define parameters that are passed to a function as optional."
msgstr ""
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"par_id3147303\n"
+"03104100.xhp\n"
+"par_id3155419\n"
"3\n"
"help.text"
-msgid "The Instr function returns the position at which the match was found. If the string was not found, the function returns 0."
+msgid "See also: <link href=\"text/sbasic/shared/03104000.xhp\" name=\"IsMissing\">IsMissing</link>"
msgstr ""
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"hd_id3145090\n"
+"03104100.xhp\n"
+"hd_id3153824\n"
"4\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"par_id3146957\n"
+"03104100.xhp\n"
+"par_id3159157\n"
"5\n"
"help.text"
-msgid "InStr ([Start As Long,] Text1 As String, Text2 As String[, Compare])"
+msgid "Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)"
msgstr ""
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3148538\n"
-"6\n"
-"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
-
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"par_id3149763\n"
+"03104100.xhp\n"
+"hd_id3145610\n"
"7\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "Examples:"
+msgstr "Shembuj:"
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"hd_id3148473\n"
+"03104100.xhp\n"
+"par_id3154347\n"
"8\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Result = MyFunction(\"Here\", 1, \"There\") ' all arguments are passed."
+msgstr ""
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"par_id3153126\n"
+"03104100.xhp\n"
+"par_id3146795\n"
"9\n"
"help.text"
-msgid "<emph>Start: </emph>A numeric expression that marks the position in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the first character of the string. The maximum allowed value is 65535."
+msgid "Result = MyFunction(\"Test\", ,1) ' second argument is missing."
msgstr ""
-#: 03120401.xhp
+#: 03104100.xhp
msgctxt ""
-"03120401.xhp\n"
-"par_id3145609\n"
+"03104100.xhp\n"
+"par_id3153897\n"
"10\n"
"help.text"
-msgid "<emph>Text1:</emph> The string expression that you want to search."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3147559\n"
-"11\n"
-"help.text"
-msgid "<emph>Text2:</emph> The string expression that you want to search for."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3154758\n"
-"12\n"
-"help.text"
-msgid "<emph>Compare:</emph> Optional numeric expression that defines the type of comparison. The value of this parameter can be 0 or 1. The default value of 1 specifies a text comparison that is not case-sensitive. The value of 0 specifies a binary comparison that is case-sensitive."
-msgstr ""
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3153361\n"
-"13\n"
-"help.text"
-msgid "To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted."
-msgstr ""
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"hd_id3154366\n"
-"14\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3144760\n"
-"19\n"
-"help.text"
-msgid "sInput = \"Office\""
-msgstr "Shiriti i Office"
-
-#: 03120401.xhp
-msgctxt ""
-"03120401.xhp\n"
-"par_id3154125\n"
-"20\n"
-"help.text"
-msgid "iPos = Instr(sInput,\"c\")"
+msgid "See also <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
msgstr ""
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
+"03104200.xhp\n"
"tit\n"
"help.text"
-msgid "DefDbl Statement [Runtime]"
+msgid "Array Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"bm_id3147242\n"
+"03104200.xhp\n"
+"bm_id3150499\n"
"help.text"
-msgid "<bookmark_value>DefDbl statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+msgid "<bookmark_value>Array function</bookmark_value>"
+msgstr "E kthen funksionin gabim plotwsues"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"hd_id3147242\n"
+"03104200.xhp\n"
+"hd_id3150499\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101400.xhp\" name=\"DefDbl Statement [Runtime]\">DefDbl Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array Function [Runtime]\">Array Function [Runtime]</link>"
msgstr ""
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3153126\n"
+"03104200.xhp\n"
+"par_id3155555\n"
"2\n"
"help.text"
-msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgid "Returns the type Variant with a data field."
msgstr ""
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"hd_id3155420\n"
+"03104200.xhp\n"
+"hd_id3148538\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3147530\n"
+"03104200.xhp\n"
+"par_id3153126\n"
"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
+msgid "Array ( Argument list)"
+msgstr "Zgjedhni listën e adresave"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"hd_id3145069\n"
+"03104200.xhp\n"
+"par_id3155419\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "See also <link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray\">DimArray</link>"
+msgstr ""
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3147560\n"
+"03104200.xhp\n"
+"hd_id3150669\n"
"6\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set the default data type for."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3150791\n"
+"03104200.xhp\n"
+"par_id3145609\n"
"7\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
msgstr ""
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3151210\n"
+"03104200.xhp\n"
+"hd_id3156343\n"
"8\n"
"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "**Ndryshorja nuk u gjet**"
+msgid "Example:"
+msgstr "Shembull"
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3154123\n"
+"03104200.xhp\n"
+"par_id3153897\n"
"9\n"
"help.text"
-msgid "<emph>DefDbl:</emph> Double"
-msgstr "Shigjetë e dyfishtë majtas"
+msgid "Dim A As Variant"
+msgstr "Eksporto si PDF..."
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"hd_id3153192\n"
+"03104200.xhp\n"
+"par_id3153525\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03101400.xhp
-msgctxt ""
-"03101400.xhp\n"
-"par_id3156281\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
+msgid "A = Array(\"Fred\",\"Tom\",\"Bill\")"
msgstr ""
-#: 03101400.xhp
+#: 03104200.xhp
msgctxt ""
-"03101400.xhp\n"
-"par_id3153144\n"
-"22\n"
+"03104200.xhp\n"
+"par_id3150792\n"
+"11\n"
"help.text"
-msgid "dValue=1.23e43 ' dValue is an implicit double variable type"
+msgid "Msgbox A(2)"
msgstr ""
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
+"03104300.xhp\n"
"tit\n"
"help.text"
-msgid "Green Function [Runtime]"
+msgid "DimArray Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"bm_id3148947\n"
+"03104300.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Green function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>DimArray function</bookmark_value>"
+msgstr "E kthen funksionin gabim plotwsues"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"hd_id3148947\n"
+"03104300.xhp\n"
+"hd_id3150616\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010302.xhp\" name=\"Green Function [Runtime]\">Green Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03104300.xhp\" name=\"DimArray Function [Runtime]\">DimArray Function [Runtime]</link>"
msgstr ""
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"par_id3153361\n"
+"03104300.xhp\n"
+"par_id3153527\n"
"2\n"
"help.text"
-msgid "Returns the Green component of the given color code."
-msgstr ""
+msgid "Returns a Variant array."
+msgstr "Kthen përcaktuesin e një grupi."
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"hd_id3154140\n"
+"03104300.xhp\n"
+"hd_id3149762\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"par_id3153969\n"
+"03104300.xhp\n"
+"par_id3148473\n"
"4\n"
"help.text"
-msgid "Green (Color As Long)"
-msgstr ""
+msgid "DimArray ( Argument list)"
+msgstr "Zgjedhni listën e adresave"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"hd_id3154124\n"
+"03104300.xhp\n"
+"par_id3154142\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "See also <link href=\"text/sbasic/shared/03104200.xhp\" name=\"Array\">Array</link>"
+msgstr ""
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"par_id3153194\n"
+"03104300.xhp\n"
+"par_id3156023\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "If no parameters are passed, an empty array is created (like Dim A() that is the same as a sequence of length 0 in Uno). If parameters are specified, a dimension is created for each parameter."
+msgstr ""
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"hd_id3154909\n"
+"03104300.xhp\n"
+"hd_id3154760\n"
"7\n"
"help.text"
-msgid "Parameter:"
-msgstr "Parametri i sllajdit"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"par_id3153770\n"
+"03104300.xhp\n"
+"par_id3159414\n"
"8\n"
"help.text"
-msgid "<emph>Color</emph>: Long integer expression that specifies a <link href=\"text/sbasic/shared/00000003.xhp#farbcodes\" name=\"color code\">color code</link> for which to return the Green component."
+msgid "<emph>Argument list:</emph> A list of any number of arguments that are separated by commas."
msgstr ""
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"hd_id3149664\n"
+"03104300.xhp\n"
+"hd_id3150358\n"
"9\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3151117\n"
-"13\n"
-"help.text"
-msgid "MsgBox \"The color \" & lVar & \" contains the components:\" & Chr(13) &_"
-msgstr ""
-
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3153951\n"
-"14\n"
-"help.text"
-msgid "\"red = \" & red(lVar) & Chr(13)&_"
-msgstr ""
-
-#: 03010302.xhp
-msgctxt ""
-"03010302.xhp\n"
-"par_id3152462\n"
-"15\n"
-"help.text"
-msgid "\"green = \" & green(lVar) & Chr(13)&_"
-msgstr ""
-
-#: 03010302.xhp
+#: 03104300.xhp
msgctxt ""
-"03010302.xhp\n"
-"par_id3154730\n"
-"16\n"
+"03104300.xhp\n"
+"par_id3154939\n"
+"10\n"
"help.text"
-msgid "\"blue = \" & blue(lVar) & Chr(13) , 64,\"colors\""
+msgid "DimArray( 2, 2, 4 ) is the same as DIM a( 2, 2, 4 )"
msgstr ""
-#: 01030000.xhp
+#: 03104400.xhp
msgctxt ""
-"01030000.xhp\n"
+"03104400.xhp\n"
"tit\n"
"help.text"
-msgid "Integrated Development Environment (IDE)"
-msgstr ""
+msgid "HasUnoInterfaces Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01030000.xhp
+#: 03104400.xhp
msgctxt ""
-"01030000.xhp\n"
-"bm_id3145090\n"
+"03104400.xhp\n"
+"bm_id3149987\n"
"help.text"
-msgid "<bookmark_value>Basic IDE;Integrated Development Environment</bookmark_value><bookmark_value>IDE;Integrated Development Environment</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>HasUnoInterfaces function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 01030000.xhp
+#: 03104400.xhp
msgctxt ""
-"01030000.xhp\n"
-"hd_id3145090\n"
+"03104400.xhp\n"
+"hd_id3149987\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01030000.xhp\" name=\"Integrated Development Environment (IDE)\">Integrated Development Environment (IDE)</link>"
+msgid "<link href=\"text/sbasic/shared/03104400.xhp\" name=\"HasUnoInterfaces Function [Runtime]\">HasUnoInterfaces Function [Runtime]</link>"
msgstr ""
-#: 01030000.xhp
+#: 03104400.xhp
msgctxt ""
-"01030000.xhp\n"
-"par_id3146795\n"
+"03104400.xhp\n"
+"par_id3151262\n"
"2\n"
"help.text"
-msgid "This section describes the Integrated Development Environment for $[officename] Basic."
-msgstr ""
-
-#: 03010100.xhp
-msgctxt ""
-"03010100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Display Functions"
-msgstr "Funksionet statistikore"
-
-#: 03010100.xhp
-msgctxt ""
-"03010100.xhp\n"
-"hd_id3151384\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03010100.xhp\" name=\"Display Functions\">Display Functions</link>"
+msgid "Tests if a Basic Uno object supports certain Uno interfaces."
msgstr ""
-#: 03010100.xhp
+#: 03104400.xhp
msgctxt ""
-"03010100.xhp\n"
-"par_id3149346\n"
-"2\n"
+"03104400.xhp\n"
+"par_id3154232\n"
+"3\n"
"help.text"
-msgid "This section describes Runtime functions used to output information to the screen display."
+msgid "Returns True, if <emph>all</emph> stated Uno interfaces are supported, otherwise False is returned."
msgstr ""
-#: 03102450.xhp
-msgctxt ""
-"03102450.xhp\n"
-"tit\n"
-"help.text"
-msgid "IsError Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"bm_id4954680\n"
+"03104400.xhp\n"
+"hd_id3150040\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>IsError function</bookmark_value>"
-msgstr "E kthen funksionin gabim plotwsues"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN1054E\n"
+"03104400.xhp\n"
+"par_id3155555\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03102450.xhp\">IsError Function [Runtime]</link>"
+msgid "HasUnoInterfaces( oTest, Uno-Interface-Name 1 [, Uno-Interface-Name 2, ...])"
msgstr ""
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN1055E\n"
+"03104400.xhp\n"
+"hd_id3153345\n"
+"6\n"
"help.text"
-msgid "Tests if a variable contains an error value."
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN10561\n"
+"03104400.xhp\n"
+"par_id3148538\n"
+"7\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Bool"
+msgstr "JO logjike"
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN10565\n"
+"03104400.xhp\n"
+"hd_id3159157\n"
+"8\n"
"help.text"
-msgid "IsError (Var)"
-msgstr "Var (mostër)"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN10568\n"
+"03104400.xhp\n"
+"par_id3155419\n"
+"9\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "<emph>oTest:</emph> the Basic Uno object that you want to test."
+msgstr ""
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN1056C\n"
+"03104400.xhp\n"
+"par_id3149236\n"
+"10\n"
"help.text"
-msgid "Bool"
-msgstr "JO logjike"
+msgid "<emph>Uno-Interface-Name:</emph> list of Uno interface names."
+msgstr ""
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN1056F\n"
+"03104400.xhp\n"
+"hd_id3147574\n"
+"11\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Example:"
+msgstr "Shembull"
-#: 03102450.xhp
+#: 03104400.xhp
msgctxt ""
-"03102450.xhp\n"
-"par_idN10573\n"
+"03104400.xhp\n"
+"par_id3149580\n"
+"12\n"
"help.text"
-msgid "<emph>Var:</emph> Any variable that you want to test. If the variable contains an error value, the function returns True, otherwise the function returns False."
+msgid "bHas = HasUnoInterfaces( oTest, \"com.sun.star.beans.XIntrospection\" )"
msgstr ""
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
+"03104500.xhp\n"
"tit\n"
"help.text"
-msgid "GetSolarVersion Function [Runtime]"
+msgid "IsUnoStruct Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"bm_id3157898\n"
+"03104500.xhp\n"
+"bm_id3146117\n"
"help.text"
-msgid "<bookmark_value>GetSolarVersion function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>IsUnoStruct function</bookmark_value>"
+msgstr "E kthen funksionin gabim plotwsues"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"hd_id3157898\n"
+"03104500.xhp\n"
+"hd_id3146117\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"GetSolarVersion Function [Runtime]\">GetSolarVersion Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03104500.xhp\" name=\"IsUnoStruct Function [Runtime]\">IsUnoStruct Function [Runtime]</link>"
msgstr ""
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"par_id3152801\n"
+"03104500.xhp\n"
+"par_id3146957\n"
"2\n"
"help.text"
-msgid "Returns the internal number of the current $[officename] version."
+msgid "Returns True if the given object is a Uno struct."
msgstr ""
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"hd_id3153311\n"
+"03104500.xhp\n"
+"hd_id3148538\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"par_id3155388\n"
+"03104500.xhp\n"
+"par_id3155341\n"
"4\n"
"help.text"
-msgid "s = GetSolarVersion"
-msgstr ""
+msgid "IsUnoStruct( Uno type )"
+msgstr "Zgjedh tipin e dokumentit"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"hd_id3149514\n"
+"03104500.xhp\n"
+"hd_id3148473\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"par_id3148685\n"
+"03104500.xhp\n"
+"par_id3145315\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "Bool"
+msgstr "JO logjike"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
-"hd_id3143270\n"
+"03104500.xhp\n"
+"hd_id3145609\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03131000.xhp
+#: 03104500.xhp
msgctxt ""
-"03131000.xhp\n"
+"03104500.xhp\n"
"par_id3148947\n"
-"11\n"
-"help.text"
-msgid "MsgBox sSep,64,\"Version number of the solar technology\""
-msgstr ""
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"tit\n"
-"help.text"
-msgid "CreateUnoListener Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"bm_id3155150\n"
-"help.text"
-msgid "<bookmark_value>CreateUnoListener function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"hd_id3155150\n"
-"53\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function [Runtime]\">CreateUnoListener Function [Runtime]</link>"
-msgstr ""
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3149346\n"
-"52\n"
-"help.text"
-msgid "Creates a Listener instance."
-msgstr ""
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3153681\n"
-"51\n"
-"help.text"
-msgid "Many Uno interfaces let you register listeners on a special listener interface. This allows you to listen for specific events and call up the appropriate listener method. The CreateUnoListener function waits for the called listener interface and then passes the interface an object that the interface supports. This object is then passed to the method to register the listener."
-msgstr ""
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"hd_id3148685\n"
-"50\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3143228\n"
-"49\n"
+"8\n"
"help.text"
-msgid "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )"
-msgstr ""
+msgid "Uno type : A UnoObject"
+msgstr "Zgjedh tipin e dokumentit"
-#: 03132000.xhp
+#: 03104500.xhp
msgctxt ""
-"03132000.xhp\n"
-"hd_id3147574\n"
-"48\n"
+"03104500.xhp\n"
+"hd_id3156343\n"
+"9\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3154046\n"
-"47\n"
-"help.text"
-msgid "The following example is based on a Basic library object."
-msgstr ""
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3149294\n"
-"44\n"
-"help.text"
-msgid "The CreateUnoListener method requires two parameters. The first is a prefix and is explained in detail below. The second parameter is the fully qualified name of the Listener interface that you want to use."
-msgstr ""
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3149670\n"
-"43\n"
-"help.text"
-msgid "The Listener must then be added to the Broadcaster Object. This is done by calling the appropriate method for adding a Listener. These methods always follow the pattern \"addFooListener\", where \"Foo\" is the Listener Interface Type, without the 'X'. In this example, the addContainerListener method is called to register the XContainerListener:"
-msgstr ""
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3154940\n"
-"41\n"
-"help.text"
-msgid "oLib = BasicLibraries.Library1 ' Library1 must exist!"
-msgstr ""
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3150359\n"
-"40\n"
-"help.text"
-msgid "oLib.addContainerListener( oListener ) ' Register the listener"
-msgstr ""
-
-#: 03132000.xhp
+#: 03104500.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3154138\n"
-"39\n"
+"03104500.xhp\n"
+"par_idN10638\n"
"help.text"
-msgid "The Listener is now registered. When an event occurs, the corresponding Listener calls the appropriate method from the com.sun.star.container.XContainerListener Interface."
+msgid "' Instantiate a service"
msgstr ""
-#: 03132000.xhp
+#: 03104500.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3148922\n"
-"38\n"
+"03104500.xhp\n"
+"par_idN10644\n"
"help.text"
-msgid "The prefix calls registered Listeners from Basic-subroutines. The Basic run-time system searches for Basic-subroutines or functions that have the name \"PrefixListenerMethode\" and calls them when found. Otherwise, a run-time error occurs."
+msgid "MsgBox bIsStruct ' Displays False because oSimpleFileAccess Is NO struct"
msgstr ""
-#: 03132000.xhp
+#: 03104500.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3150768\n"
-"37\n"
+"03104500.xhp\n"
+"par_idN10649\n"
"help.text"
-msgid "In this example, the Listener-Interface uses the following methods:"
-msgstr ""
+msgid "' Instantiate a Property struct"
+msgstr "Vlerë jokorrekte e tiparit"
-#: 03132000.xhp
+#: 03104500.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3151176\n"
-"36\n"
+"03104500.xhp\n"
+"par_idN10653\n"
"help.text"
-msgid "disposing:"
+msgid "MsgBox bIsStruct ' Displays True because aProperty is a struct"
msgstr ""
-#: 03132000.xhp
+#: 03104500.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3145173\n"
-"35\n"
+"03104500.xhp\n"
+"par_idN1065B\n"
"help.text"
-msgid "Listener base interface (com.sun.star.lang.XEventListener): base interface for all Listener Interfaces"
+msgid "MsgBox bIsStruct ' Displays False because 42 is NO struct"
msgstr ""
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3156212\n"
-"34\n"
+"03104600.xhp\n"
+"tit\n"
"help.text"
-msgid "elementInserted:"
-msgstr ""
+msgid "EqualUnoObjects Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3159254\n"
-"33\n"
+"03104600.xhp\n"
+"bm_id3149205\n"
"help.text"
-msgid "Method of the com.sun.star.container.XContainerListener interface"
-msgstr ""
+msgid "<bookmark_value>EqualUnoObjects function</bookmark_value>"
+msgstr "E kthen funksionin gabim plotwsues"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3147287\n"
-"32\n"
+"03104600.xhp\n"
+"hd_id3149205\n"
+"1\n"
"help.text"
-msgid "elementRemoved:"
+msgid "<link href=\"text/sbasic/shared/03104600.xhp\" name=\"EqualUnoObjects Function [Runtime]\">EqualUnoObjects Function [Runtime]</link>"
msgstr ""
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3146119\n"
-"31\n"
+"03104600.xhp\n"
+"par_id3145090\n"
+"2\n"
"help.text"
-msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgid "Returns True if the two specified Basic Uno objects represent the same Uno object instance."
msgstr ""
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3153951\n"
-"30\n"
+"03104600.xhp\n"
+"hd_id3148538\n"
+"3\n"
"help.text"
-msgid "elementReplaced:"
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3154013\n"
-"29\n"
+"03104600.xhp\n"
+"par_id3150669\n"
+"4\n"
"help.text"
-msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgid "EqualUnoObjects( oObj1, oObj2 )"
msgstr ""
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3147435\n"
-"28\n"
+"03104600.xhp\n"
+"hd_id3150984\n"
+"5\n"
"help.text"
-msgid "In this example, the prefix is ContListener_. The following subroutines must therefore be implemented in Basic:"
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3155411\n"
-"27\n"
+"03104600.xhp\n"
+"par_id3154285\n"
+"6\n"
"help.text"
-msgid "ContListener_disposing"
-msgstr ""
+msgid "Bool"
+msgstr "JO logjike"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3146923\n"
-"26\n"
+"03104600.xhp\n"
+"hd_id3145315\n"
+"7\n"
"help.text"
-msgid "ContListener_elementInserted"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3147318\n"
-"25\n"
+"03104600.xhp\n"
+"par_id3156024\n"
+"8\n"
"help.text"
-msgid "ContListener_elementRemoved"
+msgid "// Copy of objects -> same instance"
msgstr ""
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3152578\n"
-"24\n"
+"03104600.xhp\n"
+"par_id3154923\n"
+"9\n"
"help.text"
-msgid "ContListener_elementReplaced"
+msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
msgstr ""
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3150592\n"
-"23\n"
+"03104600.xhp\n"
+"par_id3147559\n"
+"10\n"
"help.text"
-msgid "An event structure type that contains information about an event exists for every Listener type. When a Listener method is called, an instance of this event is passed to the method as a parameter. Basic Listener methods can also call these event objects, so long as the appropriate parameter is passed in the Sub declaration. For example:"
+msgid "oIntro2 = oIntrospection"
msgstr ""
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3153876\n"
-"21\n"
+"03104600.xhp\n"
+"par_id3150541\n"
+"11\n"
"help.text"
-msgid "MsgBox \"disposing\""
+msgid "print EqualUnoObjects( oIntrospection, oIntro2 )"
msgstr ""
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3154098\n"
-"17\n"
+"03104600.xhp\n"
+"par_id3153525\n"
+"12\n"
"help.text"
-msgid "MsgBox \"elementInserted\""
+msgid "// Copy of structs as value -> new instance"
msgstr ""
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3153947\n"
+"03104600.xhp\n"
+"par_id3154366\n"
"13\n"
"help.text"
-msgid "MsgBox \"elementRemoved\""
-msgstr ""
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3148915\n"
-"9\n"
-"help.text"
-msgid "MsgBox \"elementReplaced\""
-msgstr ""
-
-#: 03132000.xhp
-msgctxt ""
-"03132000.xhp\n"
-"par_id3156056\n"
-"6\n"
-"help.text"
-msgid "You do not need to include the parameter of an event object if the object is not used:"
+msgid "Dim Struct1 as new com.sun.star.beans.Property"
msgstr ""
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3150042\n"
-"5\n"
+"03104600.xhp\n"
+"par_id3154348\n"
+"14\n"
"help.text"
-msgid "' Minimal implementation of Sub disposing"
+msgid "Struct2 = Struct1"
msgstr ""
-#: 03132000.xhp
+#: 03104600.xhp
msgctxt ""
-"03132000.xhp\n"
-"par_id3150940\n"
-"2\n"
+"03104600.xhp\n"
+"par_id3154125\n"
+"15\n"
"help.text"
-msgid "Listener methods must <emph>always</emph> be implemented to avoid Basic run-time errors."
+msgid "print EqualUnoObjects( Struct1, Struct2 )"
msgstr ""
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
+"03104700.xhp\n"
"tit\n"
"help.text"
-msgid "Write Statement [Runtime]"
+msgid "Erase Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"bm_id3147229\n"
+"03104700.xhp\n"
+"bm_id624713\n"
"help.text"
-msgid "<bookmark_value>Write statement</bookmark_value>"
-msgstr "Vlera #1 nuk mund të përdoret me LIKE!"
+msgid "<bookmark_value>Erase function</bookmark_value>"
+msgstr "E kthen funksionin gabim plotwsues"
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"hd_id3147229\n"
-"1\n"
+"03104700.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020205.xhp\" name=\"Write Statement [Runtime]\">Write Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03104700.xhp\">Erase Function [Runtime]</link>"
msgstr ""
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"par_id3154685\n"
-"2\n"
+"03104700.xhp\n"
+"par_idN10558\n"
"help.text"
-msgid "Writes data to a sequential file."
+msgid "Erases the contents of array elements of fixed size arrays, and releases the memory used by arrays of variable size."
msgstr ""
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"hd_id3150449\n"
-"3\n"
+"03104700.xhp\n"
+"par_idN1055D\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"par_id3145785\n"
-"4\n"
+"03104700.xhp\n"
+"par_idN105E6\n"
"help.text"
-msgid "Write [#FileName], [Expressionlist]"
-msgstr "Dispozitivi shkrues CTC:"
+msgid "Erase Arraylist"
+msgstr "Fshi të dhëna:"
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"hd_id3151116\n"
-"5\n"
+"03104700.xhp\n"
+"par_idN105E9\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id3153728\n"
-"6\n"
-"help.text"
-msgid "<emph>FileName:</emph> Any numeric expression that contains the file number that was set by the Open statement for the respective file."
-msgstr ""
-
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id3146120\n"
-"7\n"
-"help.text"
-msgid "<emph>Expressionlist:</emph> Variables or expressions that you want to enter in a file, separated by commas."
-msgstr ""
-
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"par_id3150010\n"
-"8\n"
-"help.text"
-msgid "If the expression list is omitted, the <emph>Write</emph> statement appends an empty line to the file."
-msgstr ""
-
-#: 03020205.xhp
+#: 03104700.xhp
msgctxt ""
-"03020205.xhp\n"
-"par_id3163713\n"
-"9\n"
+"03104700.xhp\n"
+"par_idN105ED\n"
"help.text"
-msgid "To add an expression list to a new or an existing file, the file must be opened in the <emph>Output</emph> or <emph>Append</emph> mode."
+msgid "<emph>Arraylist</emph> - The list of arrays to be erased."
msgstr ""
-#: 03020205.xhp
+#: 03110000.xhp
msgctxt ""
-"03020205.xhp\n"
-"par_id3147428\n"
-"10\n"
+"03110000.xhp\n"
+"tit\n"
"help.text"
-msgid "Strings that you write are enclosed by quotation marks and separated by commas. You do not need to enter these delimiters in the expression list."
-msgstr ""
+msgid "Comparison Operators"
+msgstr "Operatërot Unar/Binar"
-#: 03020205.xhp
+#: 03110000.xhp
msgctxt ""
-"03020205.xhp\n"
-"par_id1002838\n"
+"03110000.xhp\n"
+"hd_id3155555\n"
+"1\n"
"help.text"
-msgid "Each <emph>Write</emph> statement outputs a line end symbol as last entry."
+msgid "<link href=\"text/sbasic/shared/03110000.xhp\" name=\"Comparison Operators\">Comparison Operators</link>"
msgstr ""
-#: 03020205.xhp
+#: 03110000.xhp
msgctxt ""
-"03020205.xhp\n"
-"par_id6618854\n"
+"03110000.xhp\n"
+"par_id3153528\n"
+"2\n"
"help.text"
-msgid "Numbers with decimal delimiters are converted according to the locale settings."
+msgid "The available comparison operators are described here."
msgstr ""
-#: 03020205.xhp
-msgctxt ""
-"03020205.xhp\n"
-"hd_id3151073\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
+"03110100.xhp\n"
"tit\n"
"help.text"
-msgid "GetAttr Function [Runtime]"
+msgid "Comparison Operators [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"bm_id3150984\n"
+"03110100.xhp\n"
+"bm_id3150682\n"
"help.text"
-msgid "<bookmark_value>GetAttr function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>comparison operators;%PRODUCTNAME Basic</bookmark_value><bookmark_value>operators;comparisons</bookmark_value>"
+msgstr ""
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3150984\n"
+"03110100.xhp\n"
+"hd_id3150682\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020409.xhp\" name=\"GetAttr Function [Runtime]\">GetAttr Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03110100.xhp\" name=\"Comparison Operators [Runtime]\">Comparison Operators [Runtime]</link>"
msgstr ""
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3154347\n"
+"03110100.xhp\n"
+"par_id3156042\n"
"2\n"
"help.text"
-msgid "Returns a bit pattern that identifies the file type or the name of a volume or a directory."
+msgid "Comparison operators compare two expressions. The result is returned as a Boolean expression that determines if the comparison is True (-1) or False (0)."
msgstr ""
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3149457\n"
+"03110100.xhp\n"
+"hd_id3147291\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3150359\n"
+"03110100.xhp\n"
+"par_id3149177\n"
"4\n"
"help.text"
-msgid "GetAttr (Text As String)"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "Result = Expression1 { = | < | > | <= | >= } Expression2"
+msgstr "Gabim: Pa rezultat"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3151211\n"
+"03110100.xhp\n"
+"hd_id3145316\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3154909\n"
+"03110100.xhp\n"
+"par_id3147573\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "<emph>Result:</emph> Boolean expression that specifies the result of the comparison (True, or False)"
+msgstr ""
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3145172\n"
+"03110100.xhp\n"
+"par_id3148686\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "<emph>Expression1, Expression2:</emph> Any numeric values or strings that you want to compare."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3151042\n"
+"03110100.xhp\n"
+"hd_id3147531\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr ""
+msgid "Comparison operators"
+msgstr "Operatërot Unar/Binar"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3161831\n"
+"03110100.xhp\n"
+"par_id3147265\n"
"9\n"
"help.text"
-msgid "This function determines the attributes for a specified file and returns the bit pattern that can help you to identify the following file attributes:"
-msgstr ""
+msgid "= : Equal to"
+msgstr "e barabartë me"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3145364\n"
+"03110100.xhp\n"
+"par_id3154924\n"
"10\n"
"help.text"
-msgid "Value"
-msgstr "Vlerë"
+msgid "< : Less than"
+msgstr "më pak se"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3147349\n"
+"03110100.xhp\n"
+"par_id3146795\n"
"11\n"
"help.text"
-msgid "0 : Normal files."
-msgstr "Të gjithë fajllat (*.*)"
+msgid "> : Greater than"
+msgstr "më e madhe se"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3147434\n"
+"03110100.xhp\n"
+"par_id3150541\n"
"12\n"
"help.text"
-msgid "1 : Read-only files."
-msgstr "I editueshëm në dokument vetëm të lexueshëm"
-
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3159154\n"
-"15\n"
-"help.text"
-msgid "8 : Returns the name of the volume"
-msgstr "Emri i Grupit të Volumit:"
-
-#: 03020409.xhp
-msgctxt ""
-"03020409.xhp\n"
-"par_id3145271\n"
-"16\n"
-"help.text"
-msgid "16 : Returns the name of the directory only."
-msgstr "Emri i Grupit të Volumit:"
+msgid "<= : Less than or equal to"
+msgstr "më pak se ose barazi me"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3153953\n"
-"17\n"
+"03110100.xhp\n"
+"par_id3150400\n"
+"13\n"
"help.text"
-msgid "32 : File was changed since last backup (Archive bit)."
-msgstr ""
+msgid ">= : Greater than or equal to"
+msgstr "më e madhe se ose baraz me"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3156444\n"
-"18\n"
+"03110100.xhp\n"
+"par_id3148797\n"
+"14\n"
"help.text"
-msgid "If you want to know if a bit of the attribute byte is set, use the following query method:"
-msgstr ""
+msgid "<> : Not equal to"
+msgstr "jo e barabartë me"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"hd_id3153094\n"
-"19\n"
+"03110100.xhp\n"
+"hd_id3154686\n"
+"15\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03020409.xhp
+#: 03110100.xhp
msgctxt ""
-"03020409.xhp\n"
-"par_id3155415\n"
-"21\n"
+"03110100.xhp\n"
+"par_id3154909\n"
+"18\n"
"help.text"
-msgid "On Error GoTo ErrorHandler ' Define target for error handler"
+msgid "Dim sRoot As String ' Root directory for file in and output"
msgstr ""
-#: 03090102.xhp
+#: 03120000.xhp
msgctxt ""
-"03090102.xhp\n"
+"03120000.xhp\n"
"tit\n"
"help.text"
-msgid "Select...Case Statement [Runtime]"
-msgstr ""
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"bm_id3149416\n"
-"help.text"
-msgid "<bookmark_value>Select...Case statement</bookmark_value><bookmark_value>Case statement</bookmark_value>"
-msgstr ""
+msgid "Strings"
+msgstr "~Vargjet"
-#: 03090102.xhp
+#: 03120000.xhp
msgctxt ""
-"03090102.xhp\n"
-"hd_id3149416\n"
+"03120000.xhp\n"
+"hd_id3156153\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090102.xhp\" name=\"Select...Case Statement [Runtime]\">Select...Case Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">Strings</link>"
msgstr ""
-#: 03090102.xhp
+#: 03120000.xhp
msgctxt ""
-"03090102.xhp\n"
-"par_id3153896\n"
+"03120000.xhp\n"
+"par_id3159176\n"
"2\n"
"help.text"
-msgid "Defines one or more statement blocks depending on the value of an expression."
+msgid "The following functions and statements validate and return strings."
msgstr ""
-#: 03090102.xhp
+#: 03120000.xhp
msgctxt ""
-"03090102.xhp\n"
-"hd_id3147265\n"
+"03120000.xhp\n"
+"par_id3154285\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3150400\n"
-"4\n"
-"help.text"
-msgid "Select Case condition Case expression Statement Block [Case expression2 Statement Block][Case Else] Statement Block End Select"
+msgid "You can use strings to edit text within $[officename] Basic programs."
msgstr ""
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"hd_id3150767\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03090102.xhp
+#: 03120100.xhp
msgctxt ""
-"03090102.xhp\n"
-"par_id3156281\n"
-"6\n"
+"03120100.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Condition:</emph> Any expression that controls if the statement block that follows the respective Case clause is executed."
+msgid "ASCII/ANSI Conversion in Strings"
msgstr ""
-#: 03090102.xhp
+#: 03120100.xhp
msgctxt ""
-"03090102.xhp\n"
-"par_id3150448\n"
-"7\n"
+"03120100.xhp\n"
+"hd_id3147443\n"
+"1\n"
"help.text"
-msgid "<emph>Expression:</emph> Any expression that is compatible with the Condition type expression. The statement block that follows the Case clause is executed if <emph>Condition</emph> matches <emph>Expression</emph>."
+msgid "<link href=\"text/sbasic/shared/03120100.xhp\" name=\"ASCII/ANSI Conversion in Strings\">ASCII/ANSI Conversion in Strings</link>"
msgstr ""
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"hd_id3153768\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3152597\n"
-"14\n"
-"help.text"
-msgid "Print \"Number from 1 to 5\""
-msgstr "Nga kreu në fund"
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3147349\n"
-"16\n"
-"help.text"
-msgid "Print \"Number from 6 to 8\""
-msgstr "Nga kreu në fund"
-
-#: 03090102.xhp
-msgctxt ""
-"03090102.xhp\n"
-"par_id3152886\n"
-"18\n"
-"help.text"
-msgid "Print \"Greater than 8\""
-msgstr "Është më e madhe se"
-
-#: 03090102.xhp
+#: 03120100.xhp
msgctxt ""
-"03090102.xhp\n"
-"par_id3146975\n"
-"20\n"
+"03120100.xhp\n"
+"par_id3159201\n"
+"2\n"
"help.text"
-msgid "Print \"Out of range 1 to 10\""
-msgstr "Nga kreu në fund"
+msgid "The following functions convert strings to and from ASCII or ANSI code."
+msgstr ""
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
+"03120101.xhp\n"
"tit\n"
"help.text"
-msgid "ConvertFromURL Function [Runtime]"
+msgid "Asc Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"bm_id3153894\n"
+"03120101.xhp\n"
+"bm_id3150499\n"
"help.text"
-msgid "<bookmark_value>ConvertFromURL function</bookmark_value>"
-msgstr "E kthen funksionin gabim plotwsues"
+msgid "<bookmark_value>Asc function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"hd_id3153894\n"
+"03120101.xhp\n"
+"hd_id3150499\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Function [Runtime]\">ConvertFromURL Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120101.xhp\" name=\"Asc Function [Runtime]\">Asc Function [Runtime]</link>"
msgstr ""
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"par_id3147226\n"
+"03120101.xhp\n"
+"par_id3151384\n"
"2\n"
"help.text"
-msgid "Converts a file URL to a system file name."
+msgid "Returns the ASCII (American Standard Code for Information Interchange) value of the first character in a string expression."
msgstr ""
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"hd_id3143267\n"
+"03120101.xhp\n"
+"hd_id3155555\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"par_id3154142\n"
+"03120101.xhp\n"
+"par_id3143267\n"
"4\n"
"help.text"
-msgid "ConvertFromURL(filename)"
-msgstr ""
+msgid "Asc (Text As String)"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"hd_id3159157\n"
+"03120101.xhp\n"
+"hd_id3147242\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
+"03120101.xhp\n"
"par_id3150669\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"hd_id3143270\n"
+"03120101.xhp\n"
+"hd_id3148473\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"par_id3156023\n"
+"03120101.xhp\n"
+"par_id3149415\n"
"8\n"
"help.text"
-msgid "<emph>Filename:</emph> A file name as a string."
+msgid "<emph>Text:</emph> Any valid string expression. Only the first character in the string is relevant."
msgstr ""
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"hd_id3154760\n"
+"03120101.xhp\n"
+"par_id3145609\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Use the Asc function to replace keys with values. If the Asc function encounters a blank string, $[officename] Basic reports a run-time error. In addition to 7 bit ASCII characters (Codes 0-127), the ASCII function can also detect non-printable key codes in ASCII code. This function can also handle 16 bit unicode characters."
+msgstr ""
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"par_id3148664\n"
+"03120101.xhp\n"
+"hd_id3159413\n"
"10\n"
"help.text"
-msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
-msgstr "Tekst i thjeshtë (*.txt)"
-
-#: 03120313.xhp
-msgctxt ""
-"03120313.xhp\n"
-"par_id3150541\n"
-"11\n"
-"help.text"
-msgid "url$ = ConvertToURL( systemFile$ )"
-msgstr "Shto URL butonin"
+msgid "Example:"
+msgstr "Shembull"
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
+"03120101.xhp\n"
"par_id3150792\n"
"12\n"
"help.text"
-msgid "print url$"
-msgstr "URL njohje"
+msgid "Print ASC(\"A\") ' returns 65"
+msgstr ""
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"par_id3154367\n"
+"03120101.xhp\n"
+"par_id3148797\n"
"13\n"
"help.text"
-msgid "systemFileAgain$ = ConvertFromURL( url$ )"
-msgstr "Shto URL butonin"
+msgid "Print ASC(\"Z\") ' returns 90"
+msgstr ""
-#: 03120313.xhp
+#: 03120101.xhp
msgctxt ""
-"03120313.xhp\n"
-"par_id3153194\n"
+"03120101.xhp\n"
+"par_id3163800\n"
"14\n"
"help.text"
-msgid "print systemFileAgain$"
-msgstr "Opcionet e shtypjes"
+msgid "Print ASC(\"Las Vegas\") ' returns 76, since only the first character is taken into account"
+msgstr ""
-#: 03020408.xhp
+#: 03120101.xhp
msgctxt ""
-"03020408.xhp\n"
+"03120101.xhp\n"
+"par_idN1067B\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/03120102.xhp\">CHR</link>"
+msgstr ""
+
+#: 03120102.xhp
+msgctxt ""
+"03120102.xhp\n"
"tit\n"
"help.text"
-msgid "FileLen-Function [Runtime]"
+msgid "Chr Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"bm_id3153126\n"
+"03120102.xhp\n"
+"bm_id3149205\n"
"help.text"
-msgid "<bookmark_value>FileLen function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>Chr function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"hd_id3153126\n"
+"03120102.xhp\n"
+"hd_id3149205\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020408.xhp\" name=\"FileLen-Function [Runtime]\">FileLen Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120102.xhp\" name=\"Chr Function [Runtime]\">Chr Function [Runtime]</link>"
msgstr ""
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"par_id3145068\n"
+"03120102.xhp\n"
+"par_id3153311\n"
"2\n"
"help.text"
-msgid "Returns the length of a file in bytes."
+msgid "Returns the character that corresponds to the specified character code."
msgstr ""
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"hd_id3159414\n"
+"03120102.xhp\n"
+"hd_id3149514\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"par_id3149656\n"
+"03120102.xhp\n"
+"par_id3150669\n"
"4\n"
"help.text"
-msgid "FileLen (Text As String)"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "Chr(Expression As Integer)"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"hd_id3148798\n"
+"03120102.xhp\n"
+"hd_id3143228\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"par_id3156282\n"
+"03120102.xhp\n"
+"par_id3153824\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Standard (e gjatë)"
+msgid "String"
+msgstr "Varg"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"hd_id3150768\n"
+"03120102.xhp\n"
+"hd_id3148944\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"par_id3153193\n"
+"03120102.xhp\n"
+"par_id3149295\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "<emph>Expression:</emph> Numeric variables that represent a valid 8 bit ASCII value (0-255) or a 16 bit Unicode value."
msgstr ""
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"par_id3150439\n"
+"03120102.xhp\n"
+"par_id3159414\n"
"9\n"
"help.text"
-msgid "This function determines the length of a file. If the FileLen function is called for an open file, it returns the file length before it was opened. To determine the current file length of an open file, use the Lof function."
+msgid "Use the <emph>Chr$</emph> function to send special control sequences to a printer or to another output source. You can also use it to insert quotation marks in a string expression."
msgstr ""
-#: 03020408.xhp
+#: 03120102.xhp
msgctxt ""
-"03020408.xhp\n"
-"hd_id3163710\n"
+"03120102.xhp\n"
+"hd_id3154366\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"tit\n"
-"help.text"
-msgid "ChDrive Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"bm_id3145068\n"
-"help.text"
-msgid "<bookmark_value>ChDrive statement</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 03020402.xhp
+#: 03120102.xhp
msgctxt ""
-"03020402.xhp\n"
-"hd_id3145068\n"
-"1\n"
+"03120102.xhp\n"
+"par_id3154909\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020402.xhp\" name=\"ChDrive Statement [Runtime]\">ChDrive Statement [Runtime]</link>"
+msgid "' This example inserts quotation marks (ASCII value 34) in a string."
msgstr ""
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3149656\n"
-"2\n"
-"help.text"
-msgid "Changes the current drive."
-msgstr "Pajisje e CD-ROM"
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3154138\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"par_id3154685\n"
-"4\n"
-"help.text"
-msgid "ChDrive Text As String"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
-
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3156423\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03020402.xhp
+#: 03120102.xhp
msgctxt ""
-"03020402.xhp\n"
-"par_id3145172\n"
-"6\n"
+"03120102.xhp\n"
+"par_id3151380\n"
+"13\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that contains the drive letter of the new drive. If you want, you can use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "MsgBox \"A \"+ Chr$(34)+\"short\" + Chr$(34)+\" trip.\""
msgstr ""
-#: 03020402.xhp
+#: 03120102.xhp
msgctxt ""
-"03020402.xhp\n"
-"par_id3145785\n"
-"7\n"
+"03120102.xhp\n"
+"par_id3145174\n"
+"14\n"
"help.text"
-msgid "The drive must be assigned a capital letter. Under Windows, the letter that you assign the drive is restricted by the settings in LASTDRV. If the drive argument is a multiple-character string, only the first letter is relevant. If you attempt to access a non-existent drive, an error occurs that you can respond to with the OnError statement."
+msgid "' The printout appears in the dialog as: A \"short\" trip."
msgstr ""
-#: 03020402.xhp
-msgctxt ""
-"03020402.xhp\n"
-"hd_id3153188\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03020402.xhp
+#: 03120102.xhp
msgctxt ""
-"03020402.xhp\n"
-"par_id3152576\n"
-"10\n"
+"03120102.xhp\n"
+"par_idN10668\n"
"help.text"
-msgid "ChDrive \"D\" ' Only possible if a drive 'D' exists."
+msgid "<link href=\"text/sbasic/shared/03120101.xhp\">ASC</link>"
msgstr ""
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
+"03120103.xhp\n"
"tit\n"
"help.text"
-msgid "Kill Statement [Runtime]"
+msgid "Str Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"bm_id3153360\n"
+"03120103.xhp\n"
+"bm_id3143272\n"
"help.text"
-msgid "<bookmark_value>Kill statement</bookmark_value>"
-msgstr "Veprimi përfundoi [Time]: [1]. Vlera kthyese [2]."
+msgid "<bookmark_value>Str function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"hd_id3153360\n"
+"03120103.xhp\n"
+"hd_id3143272\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020410.xhp\" name=\"Kill Statement [Runtime]\">Kill Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120103.xhp\" name=\"Str Function [Runtime]\">Str Function [Runtime]</link>"
msgstr ""
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"par_id3151211\n"
+"03120103.xhp\n"
+"par_id3155100\n"
"2\n"
"help.text"
-msgid "Deletes a file from a disk."
-msgstr "Gjeneron emrin e fajllit nga"
+msgid "Converts a numeric expression into a string."
+msgstr ""
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"hd_id3150767\n"
+"03120103.xhp\n"
+"hd_id3109850\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"par_id3154685\n"
+"03120103.xhp\n"
+"par_id3149497\n"
"4\n"
"help.text"
-msgid "Kill File As String"
-msgstr "Fajlli nuk mund të përdoret si shabllon"
+msgid "Str (Expression)"
+msgstr "Shprehje e rezervuar"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"hd_id3153194\n"
+"03120103.xhp\n"
+"hd_id3150040\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"par_id3150440\n"
+"03120103.xhp\n"
+"par_id3146117\n"
"6\n"
"help.text"
-msgid "<emph>File:</emph> Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr ""
+msgid "String"
+msgstr "Varg"
-#: 03020410.xhp
+#: 03120103.xhp
msgctxt ""
-"03020410.xhp\n"
-"hd_id3148645\n"
+"03120103.xhp\n"
+"hd_id3155805\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03020410.xhp
-msgctxt ""
-"03020410.xhp\n"
-"par_id3163710\n"
-"9\n"
-"help.text"
-msgid "Kill \"C:\\datafile.dat\" ' File must be created in advance"
-msgstr ""
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"tit\n"
-"help.text"
-msgid "FileDateTime Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"bm_id3153361\n"
-"help.text"
-msgid "<bookmark_value>FileDateTime function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3153361\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020407.xhp\" name=\"FileDateTime Function [Runtime]\">FileDateTime Function [Runtime]</link>"
-msgstr ""
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"par_id3156423\n"
-"2\n"
-"help.text"
-msgid "Returns a string that contains the date and the time that a file was created or last modified."
-msgstr ""
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3154685\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"par_id3154124\n"
-"4\n"
-"help.text"
-msgid "FileDateTime (Text As String)"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
-
-#: 03020407.xhp
-msgctxt ""
-"03020407.xhp\n"
-"hd_id3150448\n"
-"5\n"
-"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03020407.xhp
+#: 03120103.xhp
msgctxt ""
-"03020407.xhp\n"
-"par_id3159153\n"
-"6\n"
+"03120103.xhp\n"
+"par_id3149178\n"
+"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that contains an unambiguous (no wildcards) file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr ""
+msgid "<emph>Expression: </emph>Any numeric expression."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03020407.xhp
+#: 03120103.xhp
msgctxt ""
-"03020407.xhp\n"
-"par_id3155306\n"
-"7\n"
+"03120103.xhp\n"
+"par_id3146958\n"
+"9\n"
"help.text"
-msgid "This function determines the exact time of creation or last modification of a file, returned in the format \"MM.DD.YYYY HH.MM.SS\"."
+msgid "The <emph>Str</emph> function converts a numeric variable, or the result of a calculation into a string. Negative numbers are preceded by a minus sign. Positive numbers are preceded by a space (instead of the plus sign)."
msgstr ""
-#: 03020407.xhp
+#: 03120103.xhp
msgctxt ""
-"03020407.xhp\n"
-"hd_id3146119\n"
-"8\n"
+"03120103.xhp\n"
+"hd_id3155419\n"
+"10\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
+"03120104.xhp\n"
"tit\n"
"help.text"
-msgid "Option Explicit Statement [Runtime]"
-msgstr ""
+msgid "Val Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"bm_id3145090\n"
+"03120104.xhp\n"
+"bm_id3149205\n"
"help.text"
-msgid "<bookmark_value>Option Explicit statement</bookmark_value>"
-msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
+msgid "<bookmark_value>Val function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"hd_id3145090\n"
+"03120104.xhp\n"
+"hd_id3149205\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103300.xhp\" name=\"Option Explicit Statement [Runtime]\">Option Explicit Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120104.xhp\" name=\"Val Function [Runtime]\">Val Function [Runtime]</link>"
msgstr ""
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"par_id3148538\n"
+"03120104.xhp\n"
+"par_id3153345\n"
"2\n"
"help.text"
-msgid "Specifies that every variable in the program code must be explicitly declared with the Dim statement."
+msgid "Converts a string to a numeric expression."
msgstr ""
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"hd_id3149763\n"
+"03120104.xhp\n"
+"hd_id3159157\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03103300.xhp
-#, fuzzy
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
+"03120104.xhp\n"
"par_id3149514\n"
"4\n"
"help.text"
-msgid "Option Explicit"
-msgstr "Butoni opcional"
+msgid "Val (Text As String)"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"hd_id3145315\n"
+"03120104.xhp\n"
+"hd_id3150669\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"par_id3145172\n"
+"03120104.xhp\n"
+"par_id3143228\n"
"6\n"
"help.text"
-msgid "This statement must be added before the executable program code in a module."
-msgstr ""
+msgid "Double"
+msgstr "Dyfish"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"hd_id3125864\n"
+"03120104.xhp\n"
+"hd_id3156024\n"
"7\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03103300.xhp
+#: 03120104.xhp
msgctxt ""
-"03103300.xhp\n"
-"par_id3145787\n"
-"12\n"
+"03120104.xhp\n"
+"par_id3154348\n"
+"8\n"
"help.text"
-msgid "For i% = 1 To 10 ' This results in a run-time error"
+msgid "<emph>Text:</emph> String that represents a number."
msgstr ""
-#: 03020100.xhp
+#: 03120104.xhp
msgctxt ""
-"03020100.xhp\n"
-"tit\n"
+"03120104.xhp\n"
+"par_id3149670\n"
+"9\n"
"help.text"
-msgid "Opening and Closing Files"
+msgid "Using the Val function, you can convert a string that represents numbers into numeric expressions. This is the inverse of the <emph>Str</emph> function. If only part of the string contains numbers, only the first appropriate characters of the string are converted. If the string does not contain any numbers, the <emph>Val</emph> function returns the value 0."
msgstr ""
-#: 03020100.xhp
+#: 03120104.xhp
msgctxt ""
-"03020100.xhp\n"
-"hd_id3152924\n"
-"1\n"
+"03120104.xhp\n"
+"hd_id3154365\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020100.xhp\" name=\"Opening and Closing Files\">Opening and Closing Files</link>"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
+"03120105.xhp\n"
"tit\n"
"help.text"
-msgid "Right Function [Runtime]"
+msgid "CByte Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"bm_id3153311\n"
+"03120105.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "<bookmark_value>Right function</bookmark_value>"
+msgid "<bookmark_value>CByte function</bookmark_value>"
msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"hd_id3153311\n"
+"03120105.xhp\n"
+"hd_id3156027\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Right Function [Runtime]\">Right Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120105.xhp\" name=\"CByte Function [Runtime]\">CByte Function [Runtime]</link>"
msgstr ""
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"par_id3150984\n"
+"03120105.xhp\n"
+"par_id3143267\n"
"2\n"
"help.text"
-msgid "Returns the rightmost \"n\" characters of a string expression."
+msgid "Converts a string or a numeric expression to the type Byte."
msgstr ""
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"par_id3149763\n"
+"03120105.xhp\n"
+"hd_id3149811\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>."
-msgstr ""
-
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3145315\n"
-"4\n"
-"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"par_id3153061\n"
-"5\n"
+"03120105.xhp\n"
+"par_id3147573\n"
+"4\n"
"help.text"
-msgid "Right (Text As String, n As Long)"
-msgstr ""
+msgid "Cbyte( expression )"
+msgstr "Shprehje e rezervuar"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"hd_id3145068\n"
-"6\n"
+"03120105.xhp\n"
+"hd_id3145315\n"
+"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"par_id3156344\n"
-"7\n"
+"03120105.xhp\n"
+"par_id3148473\n"
+"6\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "Byte"
+msgstr ""
-#: 03120307.xhp
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"hd_id3146795\n"
-"8\n"
+"03120105.xhp\n"
+"hd_id3147530\n"
+"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03120307.xhp
-#, fuzzy
+#: 03120105.xhp
msgctxt ""
-"03120307.xhp\n"
-"par_id3153526\n"
-"9\n"
+"03120105.xhp\n"
+"par_id3145068\n"
+"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that you want to return the rightmost characters of."
+msgid "<emph>Expression:</emph> A string or a numeric expression."
msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"par_id3151211\n"
-"10\n"
-"help.text"
-msgid "<emph>n:</emph> Numeric expression that defines the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
-msgstr ""
-
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"par_id3158410\n"
-"11\n"
-"help.text"
-msgid "The following example converts a date in YYYY-MM-DD format to the US date format (MM/DD/YYYY)."
-msgstr ""
-
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"hd_id3156212\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03120307.xhp
-msgctxt ""
-"03120307.xhp\n"
-"par_id3159252\n"
-"16\n"
-"help.text"
-msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
-msgstr ""
-
#: 03120200.xhp
msgctxt ""
"03120200.xhp\n"
@@ -29548,4208 +31198,3389 @@ msgctxt ""
msgid "The following functions repeat the contents of strings."
msgstr ""
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"tit\n"
-"help.text"
-msgid "\"/\" Operator [Runtime]"
-msgstr "Gabim nw kohw: #"
-
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"bm_id3150669\n"
-"help.text"
-msgid "<bookmark_value>\"/\" operator (mathematical)</bookmark_value>"
-msgstr ""
-
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"hd_id3150669\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03070400.xhp\">\"/\" Operator [Runtime]</link>"
-msgstr ""
-
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"par_id3149670\n"
-"2\n"
-"help.text"
-msgid "Divides two values."
-msgstr "Ndrysho vlerat standarde"
-
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"hd_id3148946\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"par_id3153360\n"
-"4\n"
-"help.text"
-msgid "Result = Expression1 / Expression2"
-msgstr "Gabim: Pa rezultat"
-
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"hd_id3150359\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"par_id3154141\n"
-"6\n"
-"help.text"
-msgid "<emph>Result:</emph> Any numerical value that contains the result of the division."
-msgstr ""
-
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"par_id3150448\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numerical expressions that you want to divide."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
-
-#: 03070400.xhp
-msgctxt ""
-"03070400.xhp\n"
-"hd_id3154684\n"
-"8\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03050100.xhp
+#: 03120201.xhp
msgctxt ""
-"03050100.xhp\n"
+"03120201.xhp\n"
"tit\n"
"help.text"
-msgid "Erl Function [Runtime]"
+msgid "Space Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03050100.xhp
+#: 03120201.xhp
msgctxt ""
-"03050100.xhp\n"
-"bm_id3157896\n"
+"03120201.xhp\n"
+"bm_id3150499\n"
"help.text"
-msgid "<bookmark_value>Erl function</bookmark_value>"
-msgstr "E kthen funksionin gabim plotwsues"
+msgid "<bookmark_value>Space function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03050100.xhp
+#: 03120201.xhp
msgctxt ""
-"03050100.xhp\n"
-"hd_id3157896\n"
+"03120201.xhp\n"
+"hd_id3150499\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050100.xhp\" name=\"Erl Function [Runtime]\">Erl Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Space Function [Runtime]\">Space Function [Runtime]</link>"
msgstr ""
-#: 03050100.xhp
+#: 03120201.xhp
msgctxt ""
-"03050100.xhp\n"
-"par_id3153394\n"
+"03120201.xhp\n"
+"par_id3154927\n"
"2\n"
"help.text"
-msgid "Returns the line number where an error occurred during program execution."
+msgid "Returns a string that consists of a specified amount of spaces."
msgstr ""
-#: 03050100.xhp
+#: 03120201.xhp
msgctxt ""
-"03050100.xhp\n"
-"hd_id3147574\n"
+"03120201.xhp\n"
+"hd_id3153394\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03050100.xhp
+#: 03120201.xhp
msgctxt ""
-"03050100.xhp\n"
-"par_id3146795\n"
+"03120201.xhp\n"
+"par_id3143267\n"
"4\n"
"help.text"
-msgid "Erl"
-msgstr ""
+msgid "Space (n As Long)"
+msgstr "Nënvizo (vija të gjata lidhëse)"
-#: 03050100.xhp
+#: 03120201.xhp
msgctxt ""
-"03050100.xhp\n"
-"hd_id3147265\n"
+"03120201.xhp\n"
+"hd_id3147242\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03050100.xhp
+#: 03120201.xhp
msgctxt ""
-"03050100.xhp\n"
-"par_id3154924\n"
+"03120201.xhp\n"
+"par_id3149233\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "String"
+msgstr "Varg"
-#: 03050100.xhp
+#: 03120201.xhp
msgctxt ""
-"03050100.xhp\n"
-"hd_id3150792\n"
+"03120201.xhp\n"
+"hd_id3156152\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03050100.xhp
+#: 03120201.xhp
msgctxt ""
-"03050100.xhp\n"
-"par_id3153771\n"
+"03120201.xhp\n"
+"par_id3143228\n"
"8\n"
"help.text"
-msgid "The Erl function only returns a line number, and not a line label."
+msgid "<emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of n is 65535."
msgstr ""
-#: 03050100.xhp
+#: 03120201.xhp
msgctxt ""
-"03050100.xhp\n"
-"hd_id3146921\n"
+"03120201.xhp\n"
+"hd_id3154760\n"
"9\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"par_id3150010\n"
-"11\n"
-"help.text"
-msgid "On Error GoTo ErrorHandler ' Set up error handler"
-msgstr ""
-
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"par_id3153188\n"
-"14\n"
-"help.text"
-msgid "' Error caused by non-existent file"
-msgstr ""
-
-#: 03050100.xhp
-msgctxt ""
-"03050100.xhp\n"
-"par_id3155416\n"
-"21\n"
-"help.text"
-msgid "MsgBox \"Error \" & err & \": \" & Error$ + chr(13) + \"In Line : \" + Erl + chr(13) + Now , 16 ,\"An error occurred\""
-msgstr ""
-
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Erase Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"bm_id624713\n"
-"help.text"
-msgid "<bookmark_value>Erase function</bookmark_value>"
-msgstr "E kthen funksionin gabim plotwsues"
-
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN10548\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03104700.xhp\">Erase Function [Runtime]</link>"
-msgstr ""
-
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN10558\n"
-"help.text"
-msgid "Erases the contents of array elements of fixed size arrays, and releases the memory used by arrays of variable size."
-msgstr ""
-
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN1055D\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN105E6\n"
-"help.text"
-msgid "Erase Arraylist"
-msgstr "Fshi të dhëna:"
-
-#: 03104700.xhp
-msgctxt ""
-"03104700.xhp\n"
-"par_idN105E9\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03104700.xhp
+#: 03120201.xhp
msgctxt ""
-"03104700.xhp\n"
-"par_idN105ED\n"
+"03120201.xhp\n"
+"par_id3154216\n"
+"18\n"
"help.text"
-msgid "<emph>Arraylist</emph> - The list of arrays to be erased."
-msgstr ""
+msgid "MsgBox sOut,0,\"Info:\""
+msgstr "Informata të shënimeve të dokumentit"
-#: 03080201.xhp
+#: 03120202.xhp
msgctxt ""
-"03080201.xhp\n"
+"03120202.xhp\n"
"tit\n"
"help.text"
-msgid "Exp Function [Runtime]"
+msgid "String Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03080201.xhp
+#: 03120202.xhp
msgctxt ""
-"03080201.xhp\n"
-"bm_id3150616\n"
+"03120202.xhp\n"
+"bm_id3147291\n"
"help.text"
-msgid "<bookmark_value>Exp function</bookmark_value>"
+msgid "<bookmark_value>String function</bookmark_value>"
msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03080201.xhp
+#: 03120202.xhp
msgctxt ""
-"03080201.xhp\n"
-"hd_id3150616\n"
+"03120202.xhp\n"
+"hd_id3147291\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080201.xhp\" name=\"Exp Function [Runtime]\">Exp Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"String Function [Runtime]\">String Function [Runtime]</link>"
msgstr ""
-#: 03080201.xhp
+#: 03120202.xhp
msgctxt ""
-"03080201.xhp\n"
-"par_id3155555\n"
+"03120202.xhp\n"
+"par_id3147242\n"
"2\n"
"help.text"
-msgid "Returns the base of the natural logarithm (e = 2.718282) raised to a power."
+msgid "Creates a string according to the specified character, or the first character of a string expression that is passed to the function."
msgstr ""
-#: 03080201.xhp
+#: 03120202.xhp
msgctxt ""
-"03080201.xhp\n"
-"hd_id3150984\n"
+"03120202.xhp\n"
+"hd_id3149516\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03080201.xhp
+#: 03120202.xhp
msgctxt ""
-"03080201.xhp\n"
-"par_id3145315\n"
+"03120202.xhp\n"
+"par_id3149233\n"
"4\n"
"help.text"
-msgid "Exp (Number)"
-msgstr "Numri i faqes"
+msgid "String (n As Long, {expression As Integer | character As String})"
+msgstr ""
-#: 03080201.xhp
+#: 03120202.xhp
msgctxt ""
-"03080201.xhp\n"
-"hd_id3154347\n"
+"03120202.xhp\n"
+"hd_id3143270\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03080201.xhp
+#: 03120202.xhp
msgctxt ""
-"03080201.xhp\n"
-"par_id3149670\n"
+"03120202.xhp\n"
+"par_id3147530\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Dyfish"
+msgid "String"
+msgstr "Varg"
-#: 03080201.xhp
+#: 03120202.xhp
msgctxt ""
-"03080201.xhp\n"
-"hd_id3154760\n"
+"03120202.xhp\n"
+"hd_id3154923\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03080201.xhp
+#: 03120202.xhp
msgctxt ""
-"03080201.xhp\n"
-"par_id3150793\n"
+"03120202.xhp\n"
+"par_id3154347\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that specifies the power that you want to raise \"e\" to (the base of natural logarithms). The power must be for both single-precision numbers less than or equal to 88.02969 and double-precision numbers less than or equal to 709.782712893, since $[officename] Basic returns an Overflow error for numbers exceeding these values."
+msgid "<emph>n:</emph> Numeric expression that indicates the number of characters to return in the string. The maximum allowed value of n is 65535."
msgstr ""
-#: 03080201.xhp
+#: 03120202.xhp
msgctxt ""
-"03080201.xhp\n"
-"hd_id3156280\n"
+"03120202.xhp\n"
+"par_id3148664\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "<emph>Expression:</emph> Numeric expression that defines the ASCII code for the character."
+msgstr ""
-#: 03080201.xhp
+#: 03120202.xhp
msgctxt ""
-"03080201.xhp\n"
-"par_id3159254\n"
-"13\n"
+"03120202.xhp\n"
+"par_id3150359\n"
+"10\n"
"help.text"
-msgid "Const b2=1.345e34"
+msgid "<emph>Character:</emph> Any single character used to build the return string, or any string of which only the first character will be used."
msgstr ""
-#: 03080201.xhp
+#: 03120202.xhp
msgctxt ""
-"03080201.xhp\n"
-"par_id3161832\n"
-"15\n"
+"03120202.xhp\n"
+"hd_id3152920\n"
+"11\n"
"help.text"
-msgid "MsgBox \"\" & dValue & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm\""
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 05060700.xhp
+#: 03120300.xhp
msgctxt ""
-"05060700.xhp\n"
+"03120300.xhp\n"
"tit\n"
"help.text"
-msgid "Macro"
-msgstr "Makro"
+msgid "Editing String Contents"
+msgstr "Tabela e përmbajtjeve të sllajdit"
-#: 05060700.xhp
+#: 03120300.xhp
msgctxt ""
-"05060700.xhp\n"
-"bm_id3153894\n"
+"03120300.xhp\n"
+"bm_id7499008\n"
"help.text"
-msgid "<bookmark_value>events;linked to objects</bookmark_value>"
+msgid "<bookmark_value>ampersand symbol in StarBasic</bookmark_value>"
msgstr ""
-#: 05060700.xhp
+#: 03120300.xhp
msgctxt ""
-"05060700.xhp\n"
+"03120300.xhp\n"
"hd_id3153894\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
+msgid "<link href=\"text/sbasic/shared/03120300.xhp\" name=\"Editing String Contents\">Editing String Contents</link>"
msgstr ""
-#: 05060700.xhp
+#: 03120300.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153748\n"
+"03120300.xhp\n"
+"par_id3149178\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Choose the macro that you want to execute when the selected graphic, frame, or OLE object is selected.</ahelp> Depending on the object that is selected, the function is either found on the <emph>Macro</emph> tab of the <emph>Object</emph> dialog, or in the <emph>Assign Macro</emph> dialog."
+msgid "The following functions edit, format, and align the contents of strings. Use the & operator to concatenate strings."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3150503\n"
-"3\n"
+"03120301.xhp\n"
+"tit\n"
"help.text"
-msgid "Event"
-msgstr "Ngjarje"
+msgid "Format Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3149763\n"
-"4\n"
+"03120301.xhp\n"
+"bm_id3153539\n"
"help.text"
-msgid "<ahelp hid=\"HID_MACRO_LB_EVENT\">Lists the events that are relevant to the macros that are currently assigned to the selected object.</ahelp>"
-msgstr ""
+msgid "<bookmark_value>Format function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150670\n"
-"23\n"
+"03120301.xhp\n"
+"hd_id3153539\n"
+"1\n"
"help.text"
-msgid "The following table describes the macros and the events that can by linked to objects in your document:"
+msgid "<link href=\"text/sbasic/shared/03120301.xhp\" name=\"Format Function [Runtime]\">Format Function [Runtime]</link>"
msgstr ""
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153360\n"
-"24\n"
-"help.text"
-msgid "Event"
-msgstr "Ngjarje"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3154365\n"
-"25\n"
-"help.text"
-msgid "Event trigger"
-msgstr "Hiperlinku shkrehës"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3159149\n"
-"26\n"
-"help.text"
-msgid "OLE object"
-msgstr "OLE objekt"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3148451\n"
-"27\n"
-"help.text"
-msgid "Graphics"
-msgstr "Grafikat"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3125863\n"
-"28\n"
-"help.text"
-msgid "Frame"
-msgstr "Kornizë"
-
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154216\n"
-"29\n"
+"03120301.xhp\n"
+"par_id3156042\n"
+"2\n"
"help.text"
-msgid "AutoText"
-msgstr "AutoText"
+msgid "Converts a number to a string, and then formats it according to the format that you specify."
+msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3145785\n"
-"30\n"
+"03120301.xhp\n"
+"hd_id3145090\n"
+"4\n"
"help.text"
-msgid "ImageMap area"
-msgstr "Zona e fundfaqes"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153138\n"
-"31\n"
+"03120301.xhp\n"
+"par_id3153527\n"
+"5\n"
"help.text"
-msgid "Hyperlink"
-msgstr "Hiperlink"
+msgid "Format (Number [, Format As String])"
+msgstr "Format Numerik: Shto Vendin Decimal"
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3155306\n"
-"32\n"
+"03120301.xhp\n"
+"hd_id3149178\n"
+"6\n"
"help.text"
-msgid "Click object"
-msgstr "Kliko në objekt"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3152460\n"
-"33\n"
+"03120301.xhp\n"
+"par_id3148474\n"
+"7\n"
"help.text"
-msgid "Object is selected."
-msgstr "Objekti nuk është folder"
+msgid "String"
+msgstr "Varg"
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147348\n"
-"34\n"
+"03120301.xhp\n"
+"hd_id3159176\n"
+"8\n"
"help.text"
-msgid "x"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147426\n"
-"35\n"
+"03120301.xhp\n"
+"par_id3149415\n"
+"9\n"
"help.text"
-msgid "x"
-msgstr ""
+msgid "<emph>Number:</emph> Numeric expression that you want to convert to a formatted string."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153951\n"
-"36\n"
+"03120301.xhp\n"
+"par_id3147531\n"
+"10\n"
"help.text"
-msgid "x"
+msgid "<emph>Format:</emph> String that specifies the format code for the number. If <emph>Format</emph> is omitted, the Format function works like the <emph>Str</emph> function."
msgstr ""
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150116\n"
-"37\n"
-"help.text"
-msgid "Mouse over object"
-msgstr "Miu mbi objektin"
-
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3145253\n"
-"38\n"
+"03120301.xhp\n"
+"hd_id3147561\n"
+"47\n"
"help.text"
-msgid "Mouse moves over the object."
-msgstr "Shiriti i objektit kyçur/çkyçur"
+msgid "Formatting Codes"
+msgstr "Kodet e fushës"
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3144765\n"
-"39\n"
+"03120301.xhp\n"
+"par_id3147265\n"
+"11\n"
"help.text"
-msgid "x"
+msgid "The following list describes the codes that you can use for formatting a number:"
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153418\n"
-"40\n"
+"03120301.xhp\n"
+"par_id3153380\n"
+"12\n"
"help.text"
-msgid "x"
+msgid "<emph>0:</emph> If <emph>Number</emph> has a digit at the position of the 0 in the format code, the digit is displayed, otherwise a zero is displayed."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153948\n"
-"41\n"
+"03120301.xhp\n"
+"par_id3151210\n"
+"13\n"
"help.text"
-msgid "x"
+msgid "If <emph>Number</emph> has fewer digits than the number of zeros in the format code, (on either side of the decimal), leading or trailing zeros are displayed. If the number has more digits to the left of the decimal separator than the amount of zeros in the format code, the additional digits are displayed without formatting."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3145652\n"
-"42\n"
+"03120301.xhp\n"
+"par_id3151176\n"
+"14\n"
"help.text"
-msgid "x"
+msgid "Decimal places in the number are rounded according to the number of zeros that appear after the decimal separator in the <emph>Format </emph>code."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3155066\n"
-"43\n"
+"03120301.xhp\n"
+"par_id3154123\n"
+"15\n"
"help.text"
-msgid "x"
+msgid "<emph>#:</emph> If <emph>Number</emph> contains a digit at the position of the # placeholder in the <emph>Format</emph> code, the digit is displayed, otherwise nothing is displayed at this position."
msgstr ""
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155446\n"
-"44\n"
-"help.text"
-msgid "Trigger Hyperlink"
-msgstr "Hiperlinku shkrehës"
-
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154756\n"
-"45\n"
+"03120301.xhp\n"
+"par_id3148452\n"
+"16\n"
"help.text"
-msgid "Hyperlink assigned to the object is clicked."
+msgid "This symbol works like the 0, except that leading or trailing zeroes are not displayed if there are more # characters in the format code than digits in the number. Only the relevant digits of the number are displayed."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150042\n"
-"46\n"
+"03120301.xhp\n"
+"par_id3159150\n"
+"17\n"
"help.text"
-msgid "x"
+msgid "<emph>.:</emph> The decimal placeholder determines the number of decimal places to the left and right of the decimal separator."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3151252\n"
-"47\n"
+"03120301.xhp\n"
+"par_id3159252\n"
+"18\n"
"help.text"
-msgid "x"
+msgid "If the format code contains only # placeholders to the left of this symbol, numbers less than 1 begin with a decimal separator. To always display a leading zero with fractional numbers, use 0 as a placeholder for the first digit to the left of the decimal separator."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147344\n"
-"48\n"
+"03120301.xhp\n"
+"par_id3153368\n"
+"19\n"
"help.text"
-msgid "x"
+msgid "<emph>%:</emph> Multiplies the number by 100 and inserts the percent sign (%) where the number appears in the format code."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3146920\n"
-"49\n"
+"03120301.xhp\n"
+"par_id3149481\n"
+"20\n"
"help.text"
-msgid "x"
+msgid "<emph>E- E+ e- e+ :</emph> If the format code contains at least one digit placeholder (0 or #) to the right of the symbol E-, E+, e-, or e+, the number is formatted in the scientific or exponential format. The letter E or e is inserted between the number and the exponent. The number of placeholders for digits to the right of the symbol determines the number of digits in the exponent."
msgstr ""
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3159333\n"
-"50\n"
-"help.text"
-msgid "Mouse leaves object"
-msgstr "Miu lëshon objektin"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147003\n"
-"51\n"
-"help.text"
-msgid "Mouse moves off of the object."
-msgstr "Shiriti i objektit kyçur/çkyçur"
-
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3151278\n"
-"52\n"
+"03120301.xhp\n"
+"par_id3149262\n"
+"21\n"
"help.text"
-msgid "x"
+msgid "If the exponent is negative, a minus sign is displayed directly before an exponent with E-, E+, e-, e+. If the exponent is positive, a plus sign is only displayed before exponents with E+ or e+."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3145257\n"
-"53\n"
+"03120301.xhp\n"
+"par_id3148617\n"
+"23\n"
"help.text"
-msgid "x"
+msgid "The thousands delimiter is displayed if the format code contains the delimiter enclosed by digit placeholders (0 or #)."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154122\n"
-"54\n"
+"03120301.xhp\n"
+"par_id3163713\n"
+"29\n"
"help.text"
-msgid "x"
+msgid "The use of a period as a thousands and decimal separator is dependent on the regional setting. When you enter a number directly in Basic source code, always use a period as decimal delimiter. The actual character displayed as a decimal separator depends on the number format in your system settings."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3156139\n"
-"55\n"
+"03120301.xhp\n"
+"par_id3152887\n"
+"24\n"
"help.text"
-msgid "x"
+msgid "<emph>- + $ ( ) space:</emph> A plus (+), minus (-), dollar ($), space, or brackets entered directly in the format code is displayed as a literal character."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3149036\n"
-"56\n"
+"03120301.xhp\n"
+"par_id3148576\n"
+"25\n"
"help.text"
-msgid "x"
+msgid "To display characters other than the ones listed here, you must precede it by a backslash (\\), or enclose it in quotation marks (\" \")."
msgstr ""
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150785\n"
-"57\n"
-"help.text"
-msgid "Graphics load successful"
-msgstr "Ngarkimi i grafikave i suksesshëm"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3153705\n"
-"58\n"
-"help.text"
-msgid "Graphics are loaded successfully."
-msgstr "Grafikat e zbrazëta nuk janë të mbështetura."
-
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150343\n"
-"59\n"
+"03120301.xhp\n"
+"par_id3153139\n"
+"26\n"
"help.text"
-msgid "x"
+msgid "\\ : The backslash displays the next character in the format code."
msgstr ""
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3150202\n"
-"60\n"
-"help.text"
-msgid "Graphics load terminated"
-msgstr "Ngarkimi i grafikave u ndërpre"
-
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3145584\n"
-"61\n"
+"03120301.xhp\n"
+"par_id3153366\n"
+"27\n"
"help.text"
-msgid "Loading of graphics is stopped by the user (for example, when downloading the page)."
+msgid "Characters in the format code that have a special meaning can only be displayed as literal characters if they are preceded by a backslash. The backslash itself is not displayed, unless you enter a double backslash (\\\\) in the format code."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154259\n"
-"62\n"
+"03120301.xhp\n"
+"par_id3155411\n"
+"28\n"
"help.text"
-msgid "x"
+msgid "Characters that must be preceded by a backslash in the format code in order to be displayed as literal characters are date- and time-formatting characters (a, c, d, h, m, n, p, q, s, t, w, y, /, :), numeric-formatting characters (#, 0, %, E, e, comma, period), and string-formatting characters (@, &, <, >, !)."
msgstr ""
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3155089\n"
-"63\n"
-"help.text"
-msgid "Graphics load faulty"
-msgstr "Ngarkimi i grafikave i gabueshëm"
-
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153307\n"
-"64\n"
+"03120301.xhp\n"
+"par_id3145749\n"
+"30\n"
"help.text"
-msgid "Graphics not successfully loaded, for example, if a graphic was not found."
+msgid "You can also use the following predefined number formats. Except for \"General Number\", all of the predefined format codes return the number as a decimal number with two decimal places."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3148840\n"
-"65\n"
+"03120301.xhp\n"
+"par_id3150113\n"
+"31\n"
"help.text"
-msgid "x"
+msgid "If you use predefined formats, the name of the format must be enclosed in quotation marks."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154533\n"
-"66\n"
+"03120301.xhp\n"
+"hd_id3149377\n"
+"32\n"
"help.text"
-msgid "Input of alpha characters"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Predefined format"
+msgstr "Format tjetër"
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3155266\n"
-"67\n"
+"03120301.xhp\n"
+"par_id3154730\n"
+"33\n"
"help.text"
-msgid "Text is entered from the keyboard."
+msgid "<emph>General Number:</emph> Numbers are displayed as entered."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3144768\n"
-"68\n"
+"03120301.xhp\n"
+"par_id3153158\n"
+"34\n"
"help.text"
-msgid "x"
+msgid "<emph>Currency:</emph> Inserts a dollar sign in front of the number and encloses negative numbers in brackets."
msgstr ""
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3145659\n"
-"69\n"
-"help.text"
-msgid "Input of non-alpha characters"
-msgstr "Futje e karaktereve jo-alfanumerike"
-
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3151131\n"
-"70\n"
+"03120301.xhp\n"
+"par_id3154490\n"
+"35\n"
"help.text"
-msgid "Nonprinting characters are entered from the keyboard, for example, tabs and line breaks."
+msgid "<emph>Fixed:</emph> Displays at least one digit in front of the decimal separator."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3159206\n"
-"71\n"
+"03120301.xhp\n"
+"par_id3153415\n"
+"36\n"
"help.text"
-msgid "x"
+msgid "<emph>Standard:</emph> Displays numbers with a thousands separator."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150405\n"
-"72\n"
+"03120301.xhp\n"
+"par_id3150715\n"
+"37\n"
"help.text"
-msgid "Resize frame"
-msgstr "Rivendos madhësinë e kornizës"
+msgid "<emph>Percent:</emph> Multiplies the number by 100 and appends a percent sign to the number."
+msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153972\n"
-"73\n"
+"03120301.xhp\n"
+"par_id3153836\n"
+"38\n"
"help.text"
-msgid "Frame is resized with the mouse."
+msgid "<emph>Scientific:</emph> Displays numbers in scientific format (for example, 1.00E+03 for 1000)."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3152873\n"
-"74\n"
+"03120301.xhp\n"
+"par_id3153707\n"
+"39\n"
"help.text"
-msgid "x"
+msgid "A format code can be divided into three sections that are separated by semicolons. The first part defines the format for positive values, the second part for negative values, and the third part for zero. If you only specify one format code, it applies to all numbers."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3148900\n"
-"75\n"
+"03120301.xhp\n"
+"hd_id3149019\n"
+"40\n"
"help.text"
-msgid "Move frame"
-msgstr "Lëviz kornizën"
+msgid "Example:"
+msgstr "Shembull"
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154767\n"
-"76\n"
+"03120301.xhp\n"
+"par_idN107A2\n"
"help.text"
-msgid "Frame is moved with the mouse."
+msgid "' always use a period as decimal delimiter when you enter numbers in Basic source code."
msgstr ""
-#: 05060700.xhp
+#: 03120301.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3155914\n"
-"77\n"
+"03120301.xhp\n"
+"par_id3147339\n"
+"46\n"
"help.text"
-msgid "x"
+msgid "' displays for example 6,328.20 in English locale, 6.328,20 in German locale."
msgstr ""
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3153010\n"
-"78\n"
+"03120302.xhp\n"
+"tit\n"
"help.text"
-msgid "Before inserting AutoText"
-msgstr "Para futjes së Auto Text"
+msgid "LCase Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147515\n"
-"79\n"
+"03120302.xhp\n"
+"bm_id3152363\n"
"help.text"
-msgid "Before a text block is inserted."
-msgstr ""
+msgid "<bookmark_value>LCase function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3151191\n"
-"80\n"
+"03120302.xhp\n"
+"hd_id3152363\n"
+"1\n"
"help.text"
-msgid "x"
+msgid "<link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function [Runtime]\">LCase Function [Runtime]</link>"
msgstr ""
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150956\n"
-"81\n"
+"03120302.xhp\n"
+"par_id3145609\n"
+"2\n"
"help.text"
-msgid "After inserting AutoText"
-msgstr "Pas futjes së Auto Text"
+msgid "Converts all uppercase letters in a string to lowercase."
+msgstr ""
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147502\n"
-"82\n"
+"03120302.xhp\n"
+"par_id3154347\n"
+"3\n"
"help.text"
-msgid "After a text block is inserted."
+msgid "See also: <link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase\">UCase</link> Function"
msgstr ""
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147555\n"
-"83\n"
+"03120302.xhp\n"
+"hd_id3149456\n"
+"4\n"
"help.text"
-msgid "x"
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3153958\n"
+"03120302.xhp\n"
+"par_id3150791\n"
"5\n"
"help.text"
-msgid "Macros"
-msgstr "Makrot"
+msgid "LCase (Text As String)"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3150432\n"
+"03120302.xhp\n"
+"hd_id3154940\n"
"6\n"
"help.text"
-msgid "Choose the macro that you want to execute when the selected event occurs."
-msgstr ""
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3147296\n"
-"84\n"
-"help.text"
-msgid "Frames allow you to link events to a function, so that the function can determine if it processes the event or $[officename] Writer."
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3155587\n"
+"03120302.xhp\n"
+"par_id3144760\n"
"7\n"
"help.text"
-msgid "Category"
-msgstr "Kategori"
+msgid "String"
+msgstr "Varg"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3154068\n"
+"03120302.xhp\n"
+"hd_id3151043\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_MACRO_GROUP\">Lists the open $[officename] documents and applications. Click the name of the location where you want to save the macros.</ahelp>"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3149744\n"
+"03120302.xhp\n"
+"par_id3153193\n"
"9\n"
"help.text"
-msgid "Macro name"
-msgstr "Makro emër"
+msgid "<emph>Text:</emph> Any string expression that you want to convert."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3151391\n"
+"03120302.xhp\n"
+"hd_id3148451\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"HID_MACRO_MACROS\">Lists the available macros. Click the macro that you want to assign to the selected object.</ahelp>"
-msgstr ""
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3159260\n"
-"11\n"
-"help.text"
-msgid "Assign"
-msgstr "Cakto"
+msgid "Example:"
+msgstr "Shembull"
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"par_id3147406\n"
-"12\n"
+"03120302.xhp\n"
+"par_id3146121\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">Assigns the selected macro to the specified event.</ahelp> The assigned macro's entries are set after the event."
+msgid "Print LCase(sVar) ' Returns \"las vegas\""
msgstr ""
-#: 05060700.xhp
+#: 03120302.xhp
msgctxt ""
-"05060700.xhp\n"
-"hd_id3150533\n"
+"03120302.xhp\n"
+"par_id3146986\n"
"15\n"
"help.text"
-msgid "Remove"
-msgstr "Largo"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3166456\n"
-"16\n"
-"help.text"
-msgid "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\">Removes the macro that is assigned to the selected item.</ahelp></variable>"
-msgstr ""
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"hd_id3159126\n"
-"85\n"
-"help.text"
-msgid "Macro selection"
-msgstr "Zgjedhja e databazës"
-
-#: 05060700.xhp
-msgctxt ""
-"05060700.xhp\n"
-"par_id3149149\n"
-"86\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Select the macro that you want to assign.</ahelp>"
+msgid "Print UCase(sVar) ' Returns \"LAS VEGAS\""
msgstr ""
-#: 01010210.xhp
+#: 03120303.xhp
msgctxt ""
-"01010210.xhp\n"
+"03120303.xhp\n"
"tit\n"
"help.text"
-msgid "Basics"
-msgstr ""
+msgid "Left Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01010210.xhp
+#: 03120303.xhp
msgctxt ""
-"01010210.xhp\n"
-"bm_id4488967\n"
+"03120303.xhp\n"
+"bm_id3149346\n"
"help.text"
-msgid "<bookmark_value>fundamentals</bookmark_value><bookmark_value>subroutines</bookmark_value><bookmark_value>variables;global and local</bookmark_value><bookmark_value>modules;subroutines and functions</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>Left function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 01010210.xhp
+#: 03120303.xhp
msgctxt ""
-"01010210.xhp\n"
-"hd_id3154927\n"
+"03120303.xhp\n"
+"hd_id3149346\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01010210.xhp\" name=\"Basics\">Basics</link>"
-msgstr ""
-
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id3156023\n"
-"14\n"
-"help.text"
-msgid "This section provides the fundamentals for working with $[officename] Basic."
+msgid "<link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function [Runtime]\">Left Function [Runtime]</link>"
msgstr ""
-#: 01010210.xhp
+#: 03120303.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3147560\n"
+"03120303.xhp\n"
+"par_id3147242\n"
"2\n"
"help.text"
-msgid "$[officename] Basic code is based on subroutines and functions that are specified between <emph>sub...end sub</emph> and <emph>function...end function</emph> sections. Each Sub or Function can call other Subs and Functions. If you take care to write generic code for a Sub or Function, you can probably re-use it in other programs. See also <link href=\"text/sbasic/shared/01020300.xhp\" name=\"Procedures and Functions\">Procedures and Functions</link>."
-msgstr ""
-
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id314756320\n"
-"help.text"
-msgid "Some restrictions apply for the names of your public variables, subs, and functions. You must not use the same name as one of the modules of the same library."
+msgid "Returns the number of leftmost characters that you specify of a string expression."
msgstr ""
-#: 01010210.xhp
+#: 03120303.xhp
msgctxt ""
-"01010210.xhp\n"
-"hd_id3150398\n"
+"03120303.xhp\n"
+"hd_id3156153\n"
"3\n"
"help.text"
-msgid "What is a Sub?"
-msgstr "Nuk është baraz me"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01010210.xhp
+#: 03120303.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3148797\n"
+"03120303.xhp\n"
+"par_id3150771\n"
"4\n"
"help.text"
-msgid "<emph>Sub</emph> is the short form of <emph>subroutine</emph>, that is used to handle a certain task within a program. Subs are used to split a task into individual procedures. Splitting a program into procedures and sub-procedures enhances readability and reduces the error-proneness. A sub possibly takes some arguments as parameters but does not return any values back to the calling sub or function, for example:"
-msgstr ""
-
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id3150868\n"
-"15\n"
-"help.text"
-msgid "DoSomethingWithTheValues(MyFirstValue,MySecondValue)"
+msgid "Left (Text As String, n As Long)"
msgstr ""
-#: 01010210.xhp
+#: 03120303.xhp
msgctxt ""
-"01010210.xhp\n"
-"hd_id3156282\n"
+"03120303.xhp\n"
+"hd_id3153824\n"
"5\n"
"help.text"
-msgid "What is a Function?"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 01010210.xhp
+#: 03120303.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3156424\n"
+"03120303.xhp\n"
+"par_id3147530\n"
"6\n"
"help.text"
-msgid "A <emph>function</emph> is essentially a sub, which returns a value. You may use a function at the right side of a variable declaration, or at other places where you normally use values, for example:"
-msgstr ""
+msgid "String"
+msgstr "Varg"
-#: 01010210.xhp
+#: 03120303.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3146985\n"
+"03120303.xhp\n"
+"hd_id3148946\n"
"7\n"
"help.text"
-msgid "MySecondValue = myFunction(MyFirstValue)"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01010210.xhp
+#: 03120303.xhp
msgctxt ""
-"01010210.xhp\n"
-"hd_id3153364\n"
+"03120303.xhp\n"
+"par_id3148552\n"
"8\n"
"help.text"
-msgid "Global and local variables"
-msgstr ""
+msgid "<emph>Text:</emph> Any string expression that you want to return the leftmost characters from."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 01010210.xhp
+#: 03120303.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3151112\n"
+"03120303.xhp\n"
+"par_id3149456\n"
"9\n"
"help.text"
-msgid "Global variables are valid for all subs and functions inside a module. They are declared at the beginning of a module before the first sub or function starts."
+msgid "<emph>n:</emph> Numeric expression that specifies the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
msgstr ""
-#: 01010210.xhp
+#: 03120303.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3154012\n"
+"03120303.xhp\n"
+"par_id3150791\n"
"10\n"
"help.text"
-msgid "Variables that you declare within a sub or function are valid only inside this sub or function. These variables override global variables with the same name and local variables with the same name coming from superordinate subs or functions."
+msgid "The following example converts a date in YYYY.MM.DD format to MM/DD/YYYY format."
msgstr ""
-#: 01010210.xhp
+#: 03120303.xhp
msgctxt ""
-"01010210.xhp\n"
-"hd_id3150010\n"
+"03120303.xhp\n"
+"hd_id3125863\n"
"11\n"
"help.text"
-msgid "Structuring"
-msgstr ""
-
-#: 01010210.xhp
-msgctxt ""
-"01010210.xhp\n"
-"par_id3153727\n"
-"12\n"
-"help.text"
-msgid "After separating your program into procedures and functions (Subs and Functions), you can save these procedures and functions as files for reuse in other projects. $[officename] Basic supports <link href=\"text/sbasic/shared/01020500.xhp\" name=\"Modules and Libraries\">Modules and Libraries</link>. Subs and functions are always contained in modules. You can define modules to be global or part of a document. Multiple modules can be combined to a library."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 01010210.xhp
+#: 03120303.xhp
msgctxt ""
-"01010210.xhp\n"
-"par_id3152578\n"
-"13\n"
+"03120303.xhp\n"
+"par_id3150448\n"
+"15\n"
"help.text"
-msgid "You can copy or move subs, functions, modules and libraries from one file to another by using the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog."
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
msgstr ""
-#: 03103900.xhp
+#: 03120304.xhp
msgctxt ""
-"03103900.xhp\n"
+"03120304.xhp\n"
"tit\n"
"help.text"
-msgid "FindPropertyObject Function [Runtime]"
+msgid "LSet Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03103900.xhp
+#: 03120304.xhp
msgctxt ""
-"03103900.xhp\n"
-"bm_id3146958\n"
+"03120304.xhp\n"
+"bm_id3143268\n"
"help.text"
-msgid "<bookmark_value>FindPropertyObject function</bookmark_value>"
-msgstr "E kthen funksionin gabim plotwsues"
+msgid "<bookmark_value>LSet statement</bookmark_value>"
+msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
-#: 03103900.xhp
+#: 03120304.xhp
msgctxt ""
-"03103900.xhp\n"
-"hd_id3146958\n"
+"03120304.xhp\n"
+"hd_id3143268\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject Function [Runtime]\">FindPropertyObject Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120304.xhp\" name=\"LSet Statement [Runtime]\">LSet Statement [Runtime]</link>"
msgstr ""
-#: 03103900.xhp
+#: 03120304.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3154285\n"
+"03120304.xhp\n"
+"par_id3155419\n"
"2\n"
"help.text"
-msgid "Enables objects to be addressed at run-time as a string parameter using the object name."
+msgid "Aligns a string to the left of a string variable, or copies a variable of a user-defined type to another variable of a different user-defined type."
msgstr ""
-#: 03103900.xhp
+#: 03120304.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3147573\n"
+"03120304.xhp\n"
+"hd_id3145317\n"
"3\n"
"help.text"
-msgid "For instance, the command:"
-msgstr "Zgjidh njw linjw tw komandws"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03103900.xhp
+#: 03120304.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3145610\n"
+"03120304.xhp\n"
+"par_id3150984\n"
"4\n"
"help.text"
-msgid "MyObj.Prop1.Command = 5"
-msgstr "Zgjidh njw linjw tw komandws"
+msgid "LSet Var As String = Text or LSet Var1 = Var2"
+msgstr ""
-#: 03103900.xhp
+#: 03120304.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3147265\n"
+"03120304.xhp\n"
+"hd_id3143271\n"
"5\n"
"help.text"
-msgid "corresponds to the following command block:"
-msgstr "Deri në bllok margjinë të epërme"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03103900.xhp
+#: 03120304.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3153896\n"
+"03120304.xhp\n"
+"par_id3145610\n"
"6\n"
"help.text"
-msgid "Dim ObjVar as Object"
-msgstr "Variabla e objektit nuk është përcaktuar"
+msgid "<emph>Var:</emph> Any String variable that contains the string that you want align to the left."
+msgstr ""
-#: 03103900.xhp
+#: 03120304.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3148664\n"
+"03120304.xhp\n"
+"par_id3154346\n"
"7\n"
"help.text"
-msgid "Dim ObjProp as Object"
-msgstr "Variabla e objektit nuk është përcaktuar"
-
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3150792\n"
-"8\n"
-"help.text"
-msgid "ObjName As String = \"MyObj\""
-msgstr "Modeli i lidhëses është i pavlefshëm"
-
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3154365\n"
-"9\n"
-"help.text"
-msgid "ObjVar = FindObject( ObjName As String )"
+msgid "<emph>Text:</emph> String that you want to align to the left of the string variable."
msgstr ""
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3148453\n"
-"10\n"
-"help.text"
-msgid "PropName As String = \"Prop1\""
-msgstr "Modeli i lidhëses është i pavlefshëm"
-
-#: 03103900.xhp
+#: 03120304.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3150449\n"
-"11\n"
+"03120304.xhp\n"
+"par_id3151054\n"
+"8\n"
"help.text"
-msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
+msgid "<emph>Var1:</emph> Name of the user-defined type variable that you want to copy to."
msgstr ""
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3159152\n"
-"12\n"
-"help.text"
-msgid "ObjProp.Command = 5"
-msgstr "DDE Komandë"
-
-#: 03103900.xhp
+#: 03120304.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3156214\n"
-"13\n"
+"03120304.xhp\n"
+"par_id3153361\n"
+"9\n"
"help.text"
-msgid "To dynamically create Names at run-time, use:"
+msgid "<emph>Var2:</emph> Name of the user-defined type variable that you want to copy from."
msgstr ""
-#: 03103900.xhp
+#: 03120304.xhp
msgctxt ""
-"03103900.xhp\n"
+"03120304.xhp\n"
"par_id3154686\n"
-"14\n"
-"help.text"
-msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five names."
-msgstr ""
-
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"par_id3150868\n"
-"15\n"
+"10\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject\">FindObject</link>"
+msgid "If the string is shorter than the string variable, <emph>LSet</emph> left-aligns the string within the string variable. Any remaining positions in the string variable are replaced by spaces. If the string is longer than the string variable, only the leftmost characters up to the length of the string variable are copied. With the <emph>LSet</emph> statement, you can also copy a user-defined type variable to another variable of the same type."
msgstr ""
-#: 03103900.xhp
-msgctxt ""
-"03103900.xhp\n"
-"hd_id3147287\n"
-"16\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03103900.xhp
+#: 03120304.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3149560\n"
-"17\n"
+"03120304.xhp\n"
+"hd_id3156282\n"
+"11\n"
"help.text"
-msgid "FindPropertyObject( ObjVar, PropName As String )"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03103900.xhp
+#: 03120304.xhp
msgctxt ""
-"03103900.xhp\n"
-"hd_id3150012\n"
+"03120304.xhp\n"
+"par_id3152940\n"
"18\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "' Align \"SBX\" within the 40-character reference string"
+msgstr ""
-#: 03103900.xhp
+#: 03120304.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3109839\n"
+"03120304.xhp\n"
+"par_id3148647\n"
"19\n"
"help.text"
-msgid "<emph>ObjVar:</emph> Object variable that you want to dynamically define at run-time."
+msgid "' Replace asterisks with spaces"
msgstr ""
-#: 03103900.xhp
+#: 03120304.xhp
msgctxt ""
-"03103900.xhp\n"
-"par_id3153363\n"
-"20\n"
+"03120304.xhp\n"
+"par_id3151075\n"
+"30\n"
"help.text"
-msgid "<emph>PropName:</emph> String that specifies the name of the property that you want to address at run-time."
+msgid "' Left-align \"SBX\" within the 40-character reference string"
msgstr ""
-#: 03090303.xhp
+#: 03120305.xhp
msgctxt ""
-"03090303.xhp\n"
+"03120305.xhp\n"
"tit\n"
"help.text"
-msgid "On...GoSub Statement; On...GoTo Statement [Runtime]"
-msgstr ""
+msgid "LTrim Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03090303.xhp
+#: 03120305.xhp
msgctxt ""
-"03090303.xhp\n"
-"bm_id3153897\n"
+"03120305.xhp\n"
+"bm_id3147574\n"
"help.text"
-msgid "<bookmark_value>On...GoSub statement</bookmark_value><bookmark_value>On...GoTo statement</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>LTrim function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03090303.xhp
+#: 03120305.xhp
msgctxt ""
-"03090303.xhp\n"
-"hd_id3153897\n"
+"03120305.xhp\n"
+"hd_id3147574\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090303.xhp\" name=\"On...GoSub Statement; On...GoTo Statement [Runtime]\">On...GoSub Statement; On...GoTo Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function [Runtime]\">LTrim Function [Runtime]</link>"
msgstr ""
-#: 03090303.xhp
+#: 03120305.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3150359\n"
+"03120305.xhp\n"
+"par_id3145316\n"
"2\n"
"help.text"
-msgid "Branches to one of several specified lines in the program code, depending on the value of a numeric expression."
+msgid "Removes all leading spaces at the start of a string expression."
msgstr ""
-#: 03090303.xhp
+#: 03120305.xhp
msgctxt ""
-"03090303.xhp\n"
-"hd_id3148798\n"
+"03120305.xhp\n"
+"hd_id3154924\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03090303.xhp
+#: 03120305.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3154366\n"
+"03120305.xhp\n"
+"par_id3148552\n"
"4\n"
"help.text"
-msgid "On N GoSub Label1[, Label2[, Label3[,...]]]"
-msgstr ""
+msgid "LTrim (Text As String)"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03090303.xhp
+#: 03120305.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3150769\n"
+"03120305.xhp\n"
+"hd_id3156344\n"
"5\n"
"help.text"
-msgid "On NumExpression GoTo Label1[, Label2[, Label3[,...]]]"
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03090303.xhp
+#: 03120305.xhp
msgctxt ""
-"03090303.xhp\n"
-"hd_id3156215\n"
+"03120305.xhp\n"
+"par_id3151056\n"
"6\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "String"
+msgstr "Varg"
-#: 03090303.xhp
+#: 03120305.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3148673\n"
+"03120305.xhp\n"
+"hd_id3150543\n"
"7\n"
"help.text"
-msgid "<emph>NumExpression:</emph> Any numeric expression between 0 and 255 that determines which of the lines the program branches to. If NumExpression is 0, the statement is not executed. If NumExpression is greater than 0, the program jumps to the label that has a position number that corresponds to the expression (1 = First label; 2 = Second label)"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03090303.xhp
+#: 03120305.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3153194\n"
+"03120305.xhp\n"
+"par_id3150792\n"
"8\n"
"help.text"
-msgid "<emph>Label:</emph> Target line according to<emph> GoTo </emph>or <emph>GoSub</emph> structure."
-msgstr ""
+msgid "<emph>Text:</emph> Any string expression."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03090303.xhp
+#: 03120305.xhp
msgctxt ""
-"03090303.xhp\n"
-"par_id3156442\n"
+"03120305.xhp\n"
+"par_id3125863\n"
"9\n"
"help.text"
-msgid "The <emph>GoTo</emph> or <emph>GoSub </emph>conventions are valid."
+msgid "Use this function to remove spaces at the beginning of a string expression."
msgstr ""
-#: 03090303.xhp
+#: 03120305.xhp
msgctxt ""
-"03090303.xhp\n"
-"hd_id3148645\n"
+"03120305.xhp\n"
+"hd_id3145419\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3153948\n"
-"21\n"
-"help.text"
-msgid "sVar =sVar & \" From Sub 1 to\" : Return"
-msgstr ""
-
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3153708\n"
-"23\n"
-"help.text"
-msgid "sVar =sVar & \" From Sub 2 to\" : Return"
-msgstr ""
-
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3150321\n"
-"25\n"
-"help.text"
-msgid "sVar =sVar & \" Label 1\" : GoTo Ende"
-msgstr ""
-
-#: 03090303.xhp
-msgctxt ""
-"03090303.xhp\n"
-"par_id3155764\n"
-"27\n"
-"help.text"
-msgid "sVar =sVar & \" Label 2\""
-msgstr "Teksti i etiketës"
-
-#: 03120202.xhp
+#: 03120306.xhp
msgctxt ""
-"03120202.xhp\n"
+"03120306.xhp\n"
"tit\n"
"help.text"
-msgid "String Function [Runtime]"
+msgid "Mid Function, Mid Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03120202.xhp
+#: 03120306.xhp
msgctxt ""
-"03120202.xhp\n"
-"bm_id3147291\n"
+"03120306.xhp\n"
+"bm_id3143268\n"
"help.text"
-msgid "<bookmark_value>String function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>Mid function</bookmark_value><bookmark_value>Mid statement</bookmark_value>"
+msgstr ""
-#: 03120202.xhp
+#: 03120306.xhp
msgctxt ""
-"03120202.xhp\n"
-"hd_id3147291\n"
+"03120306.xhp\n"
+"hd_id3143268\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120202.xhp\" name=\"String Function [Runtime]\">String Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120306.xhp\" name=\"Mid Function, Mid Statement [Runtime]\">Mid Function, Mid Statement [Runtime]</link>"
msgstr ""
-#: 03120202.xhp
+#: 03120306.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3147242\n"
+"03120306.xhp\n"
+"par_id3148473\n"
"2\n"
"help.text"
-msgid "Creates a string according to the specified character, or the first character of a string expression that is passed to the function."
+msgid "Returns the specified portion of a string expression (<emph>Mid function</emph>), or replaces the portion of a string expression with another string (<emph>Mid statement</emph>)."
msgstr ""
-#: 03120202.xhp
+#: 03120306.xhp
msgctxt ""
-"03120202.xhp\n"
-"hd_id3149516\n"
+"03120306.xhp\n"
+"hd_id3154285\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03120202.xhp
+#: 03120306.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3149233\n"
+"03120306.xhp\n"
+"par_id3147530\n"
"4\n"
"help.text"
-msgid "String (n As Long, {expression As Integer | character As String})"
+msgid "Mid (Text As String, Start As Long [, Length As Long]) or Mid (Text As String, Start As Long , Length As Long, Text As String)"
msgstr ""
-#: 03120202.xhp
+#: 03120306.xhp
msgctxt ""
-"03120202.xhp\n"
-"hd_id3143270\n"
+"03120306.xhp\n"
+"hd_id3145068\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03120202.xhp
+#: 03120306.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3147530\n"
+"03120306.xhp\n"
+"par_id3149295\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "String (only by Function)"
+msgstr ""
-#: 03120202.xhp
+#: 03120306.xhp
msgctxt ""
-"03120202.xhp\n"
-"hd_id3154923\n"
+"03120306.xhp\n"
+"hd_id3154347\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03120202.xhp
+#: 03120306.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3154347\n"
+"03120306.xhp\n"
+"par_id3148664\n"
"8\n"
"help.text"
-msgid "<emph>n:</emph> Numeric expression that indicates the number of characters to return in the string. The maximum allowed value of n is 65535."
-msgstr ""
+msgid "<emph>Text:</emph> Any string expression that you want to modify."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03120202.xhp
+#: 03120306.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3148664\n"
+"03120306.xhp\n"
+"par_id3150359\n"
"9\n"
"help.text"
-msgid "<emph>Expression:</emph> Numeric expression that defines the ASCII code for the character."
+msgid "<emph>Start: </emph>Numeric expression that indicates the character position within the string where the string portion that you want to replace or to return begins. The maximum allowed value is 65535."
msgstr ""
-#: 03120202.xhp
+#: 03120306.xhp
msgctxt ""
-"03120202.xhp\n"
-"par_id3150359\n"
+"03120306.xhp\n"
+"par_id3148451\n"
"10\n"
"help.text"
-msgid "<emph>Character:</emph> Any single character used to build the return string, or any string of which only the first character will be used."
+msgid "<emph>Length:</emph> Numeric expression that returns the number of characters that you want to replace or return. The maximum allowed value is 65535."
msgstr ""
-#: 03120202.xhp
+#: 03120306.xhp
msgctxt ""
-"03120202.xhp\n"
-"hd_id3152920\n"
+"03120306.xhp\n"
+"par_id3125864\n"
"11\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 01030100.xhp
-msgctxt ""
-"01030100.xhp\n"
-"tit\n"
-"help.text"
-msgid "IDE Overview"
-msgstr "IDE Bazike"
+msgid "If the Length parameter in the <emph>Mid function</emph> is omitted, all characters in the string expression from the start position to the end of the string are returned."
+msgstr ""
-#: 01030100.xhp
+#: 03120306.xhp
msgctxt ""
-"01030100.xhp\n"
-"hd_id3147291\n"
-"1\n"
+"03120306.xhp\n"
+"par_id3144762\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01030100.xhp\" name=\"IDE Overview\">IDE Overview</link>"
+msgid "If the Length parameter in the <emph>Mid statement</emph> is less than the length of the text that you want to replace, the text is reduced to the specified length."
msgstr ""
-#: 01030100.xhp
+#: 03120306.xhp
msgctxt ""
-"01030100.xhp\n"
-"par_id3156344\n"
-"3\n"
+"03120306.xhp\n"
+"par_id3150769\n"
+"13\n"
"help.text"
-msgid "The <link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\"><emph>Macro Toolbar</emph></link> in the IDE provides various icons for editing and testing programs."
+msgid "<emph>Text:</emph> The string to replace the string expression (<emph>Mid statement</emph>)."
msgstr ""
-#: 01030100.xhp
+#: 03120306.xhp
msgctxt ""
-"01030100.xhp\n"
-"par_id3151210\n"
-"4\n"
+"03120306.xhp\n"
+"hd_id3149560\n"
+"14\n"
"help.text"
-msgid "In the <link href=\"text/sbasic/shared/01030200.xhp\" name=\"Editor window\"><emph>Editor window</emph></link>, directly below the Macro toolbar, you can edit the Basic program code. The column on the left side is used to set breakpoints in the program code."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 01030100.xhp
+#: 03120306.xhp
msgctxt ""
-"01030100.xhp\n"
-"par_id3154686\n"
-"5\n"
+"03120306.xhp\n"
+"par_id3153189\n"
+"18\n"
"help.text"
-msgid "The <link href=\"text/sbasic/shared/01050100.xhp\" name=\"Watch\"><emph>Watch window</emph></link> (observer) is located below the Editor window at the left, and displays the contents of variables or arrays during a single step process."
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
msgstr ""
-#: 01030100.xhp
+#: 03120307.xhp
msgctxt ""
-"01030100.xhp\n"
-"par_id3145787\n"
-"8\n"
+"03120307.xhp\n"
+"tit\n"
"help.text"
-msgid "The <emph>Call Stack</emph> window to the right provides information about the call stack of SUBS and FUNCTIONS when a program runs."
-msgstr ""
+msgid "Right Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01030100.xhp
+#: 03120307.xhp
msgctxt ""
-"01030100.xhp\n"
-"par_id3147434\n"
-"6\n"
+"03120307.xhp\n"
+"bm_id3153311\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01050000.xhp\" name=\"Basic IDE\">Basic IDE</link>"
-msgstr ""
+msgid "<bookmark_value>Right function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 01050100.xhp
+#: 03120307.xhp
msgctxt ""
-"01050100.xhp\n"
-"tit\n"
+"03120307.xhp\n"
+"hd_id3153311\n"
+"1\n"
"help.text"
-msgid "Watch Window"
-msgstr "Dritarja aktive"
+msgid "<link href=\"text/sbasic/shared/03120307.xhp\" name=\"Right Function [Runtime]\">Right Function [Runtime]</link>"
+msgstr ""
-#: 01050100.xhp
+#: 03120307.xhp
msgctxt ""
-"01050100.xhp\n"
-"hd_id3149457\n"
-"1\n"
+"03120307.xhp\n"
+"par_id3150984\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01050100.xhp\">Watch Window</link>"
+msgid "Returns the rightmost \"n\" characters of a string expression."
msgstr ""
-#: 01050100.xhp
+#: 03120307.xhp
msgctxt ""
-"01050100.xhp\n"
-"par_id3154908\n"
-"9\n"
+"03120307.xhp\n"
+"par_id3149763\n"
+"3\n"
"help.text"
-msgid "The Watch window allows you to observe the value of variables during the execution of a program. Define the variable in the Watch text box. Click on <link href=\"text/sbasic/shared/02/11080000.xhp\">Enable Watch</link> to add the variable to the list box and to display its values."
+msgid "See also: <link href=\"text/sbasic/shared/03120303.xhp\" name=\"Left Function\">Left Function</link>."
msgstr ""
-#: 01050100.xhp
+#: 03120307.xhp
msgctxt ""
-"01050100.xhp\n"
-"hd_id3145173\n"
+"03120307.xhp\n"
+"hd_id3145315\n"
"4\n"
"help.text"
-msgid "Watch"
-msgstr "Ora"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01050100.xhp
+#: 03120307.xhp
msgctxt ""
-"01050100.xhp\n"
-"par_id3155132\n"
+"03120307.xhp\n"
+"par_id3153061\n"
"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_EDIT\">Enter the name of the variable whose value is to be monitored.</ahelp>"
+msgid "Right (Text As String, n As Long)"
msgstr ""
-#: 01050100.xhp
+#: 03120307.xhp
msgctxt ""
-"01050100.xhp\n"
-"hd_id3148645\n"
+"03120307.xhp\n"
+"hd_id3145068\n"
"6\n"
"help.text"
-msgid "Remove Watch"
-msgstr "Hiqe orwn"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 01050100.xhp
+#: 03120307.xhp
msgctxt ""
-"01050100.xhp\n"
-"par_id3148576\n"
+"03120307.xhp\n"
+"par_id3156344\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_REMOVEWATCH\">Removes the selected variable from the list of watched variables.</ahelp>"
-msgstr ""
+msgid "String"
+msgstr "Varg"
-#: 01050100.xhp
+#: 03120307.xhp
msgctxt ""
-"01050100.xhp\n"
-"par_id3147426\n"
+"03120307.xhp\n"
+"hd_id3146795\n"
+"8\n"
"help.text"
-msgid "<image id=\"img_id3152460\" src=\"res/baswatr.png\" width=\"0.25inch\" height=\"0.222inch\"><alt id=\"alt_id3152460\">Icon</alt></image>"
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01050100.xhp
+#: 03120307.xhp
msgctxt ""
-"01050100.xhp\n"
-"par_id3154012\n"
-"8\n"
+"03120307.xhp\n"
+"par_id3153526\n"
+"9\n"
"help.text"
-msgid "Remove Watch"
-msgstr "Hiqe orwn"
+msgid "<emph>Text:</emph> Any string expression that you want to return the rightmost characters of."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 01050100.xhp
+#: 03120307.xhp
msgctxt ""
-"01050100.xhp\n"
-"hd_id3154491\n"
+"03120307.xhp\n"
+"par_id3151211\n"
"10\n"
"help.text"
-msgid "Editing the Value of a Watched Variable"
-msgstr "Shëndron një ndryshore të rastësishme në një vlerë të normalizuar."
+msgid "<emph>n:</emph> Numeric expression that defines the number of characters that you want to return. If <emph>n</emph> = 0, a zero-length string is returned. The maximum allowed value is 65535."
+msgstr ""
-#: 01050100.xhp
+#: 03120307.xhp
msgctxt ""
-"01050100.xhp\n"
-"par_id3156283\n"
+"03120307.xhp\n"
+"par_id3158410\n"
"11\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_WATCHWINDOW_LIST\">Displays the list of watched variables. Click twice with a short pause in between on an entry to edit its value.</ahelp> The new value will be taken as the variable's value for the program."
+msgid "The following example converts a date in YYYY-MM-DD format to the US date format (MM/DD/YYYY)."
msgstr ""
-#: 03020301.xhp
+#: 03120307.xhp
msgctxt ""
-"03020301.xhp\n"
+"03120307.xhp\n"
+"hd_id3156212\n"
+"12\n"
+"help.text"
+msgid "Example:"
+msgstr "Shembull"
+
+#: 03120307.xhp
+msgctxt ""
+"03120307.xhp\n"
+"par_id3159252\n"
+"16\n"
+"help.text"
+msgid "sInput = InputBox(\"Please input a date in the international format 'YYYY-MM-DD'\")"
+msgstr ""
+
+#: 03120308.xhp
+msgctxt ""
+"03120308.xhp\n"
"tit\n"
"help.text"
-msgid "Eof Function [Runtime]"
+msgid "RSet Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020301.xhp
+#: 03120308.xhp
msgctxt ""
-"03020301.xhp\n"
-"bm_id3154598\n"
+"03120308.xhp\n"
+"bm_id3153345\n"
"help.text"
-msgid "<bookmark_value>Eof function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>RSet statement</bookmark_value>"
+msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
-#: 03020301.xhp
+#: 03120308.xhp
msgctxt ""
-"03020301.xhp\n"
-"hd_id3154598\n"
+"03120308.xhp\n"
+"hd_id3153345\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020301.xhp\" name=\"Eof Function [Runtime]\">Eof Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120308.xhp\" name=\"RSet Statement [Runtime]\">RSet Statement [Runtime]</link>"
msgstr ""
-#: 03020301.xhp
+#: 03120308.xhp
msgctxt ""
-"03020301.xhp\n"
-"par_id3147182\n"
+"03120308.xhp\n"
+"par_id3150503\n"
"2\n"
"help.text"
-msgid "Determines if the file pointer has reached the end of a file."
+msgid "Right-aligns a string within a string variable, or copies a user-defined variable type into another."
msgstr ""
-#: 03020301.xhp
+#: 03120308.xhp
msgctxt ""
-"03020301.xhp\n"
-"hd_id3149119\n"
+"03120308.xhp\n"
+"hd_id3149234\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03020301.xhp
+#: 03120308.xhp
msgctxt ""
-"03020301.xhp\n"
-"par_id3147399\n"
+"03120308.xhp\n"
+"par_id3150669\n"
"4\n"
"help.text"
-msgid "Eof (intexpression As Integer)"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "RSet Text As String = Text or RSet Variable1 = Variable2"
+msgstr ""
-#: 03020301.xhp
+#: 03120308.xhp
msgctxt ""
-"03020301.xhp\n"
-"hd_id3153539\n"
+"03120308.xhp\n"
+"hd_id3156024\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03020301.xhp
+#: 03120308.xhp
msgctxt ""
-"03020301.xhp\n"
-"par_id3156027\n"
+"03120308.xhp\n"
+"par_id3148552\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "JO logjike"
+msgid "<emph>Text:</emph> Any string variable."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03020301.xhp
+#: 03120308.xhp
msgctxt ""
-"03020301.xhp\n"
-"hd_id3152924\n"
+"03120308.xhp\n"
+"par_id3154924\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "<emph>Text</emph>: String that you want to right-align in the string variable."
+msgstr ""
-#: 03020301.xhp
+#: 03120308.xhp
msgctxt ""
-"03020301.xhp\n"
-"par_id3153990\n"
+"03120308.xhp\n"
+"par_id3149456\n"
"8\n"
"help.text"
-msgid "<emph>Intexpression:</emph> Any integer expression that evaluates to the number of an open file."
+msgid "<emph>Variable1:</emph> User-defined variable that is the target for the copied variable."
msgstr ""
-#: 03020301.xhp
+#: 03120308.xhp
msgctxt ""
-"03020301.xhp\n"
-"par_id3153527\n"
+"03120308.xhp\n"
+"par_id3153381\n"
"9\n"
"help.text"
-msgid "Use EOF to avoid errors when you attempt to get input past the end of a file. When you use the Input or Get statement to read from a file, the file pointer is advanced by the number of bytes read. When the end of a file is reached, EOF returns the value \"True\" (-1)."
+msgid "<emph>Variable2:</emph> User-defined variable that you want to copy to another variable."
msgstr ""
-#: 03020301.xhp
+#: 03120308.xhp
msgctxt ""
-"03020301.xhp\n"
-"hd_id3154046\n"
+"03120308.xhp\n"
+"par_id3154140\n"
"10\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "If the string is shorter than the string variable, <emph>RSet</emph> aligns the string to the right within the string variable. Any remaining characters in the string variable are replaced with spaces. If the string is longer than the string variable, characters exceeding the length of the variable are truncated, and only the remaining characters are right-aligned within the string variable."
+msgstr ""
-#: 03020301.xhp
+#: 03120308.xhp
msgctxt ""
-"03020301.xhp\n"
-"par_id3153360\n"
-"19\n"
+"03120308.xhp\n"
+"par_id3149202\n"
+"11\n"
"help.text"
-msgid "Print #iNumber, \"First line of text\""
-msgstr "Nga kreu në fund"
+msgid "You can also use the <emph>RSet statement</emph> to assign variables of one user-defined type to another."
+msgstr ""
-#: 03020301.xhp
+#: 03120308.xhp
msgctxt ""
-"03020301.xhp\n"
-"par_id3148797\n"
-"20\n"
+"03120308.xhp\n"
+"par_id3151042\n"
+"12\n"
"help.text"
-msgid "Print #iNumber, \"Another line of text\""
-msgstr "Nga kreu në fund"
+msgid "The following example uses the <emph>RSet</emph> and <emph>LSet</emph> statements to modify the left and right alignment of a string."
+msgstr ""
-#: 03120000.xhp
+#: 03120308.xhp
msgctxt ""
-"03120000.xhp\n"
-"tit\n"
+"03120308.xhp\n"
+"hd_id3154909\n"
+"13\n"
"help.text"
-msgid "Strings"
-msgstr "~Vargjet"
+msgid "Example:"
+msgstr "Shembull"
-#: 03120000.xhp
+#: 03120308.xhp
msgctxt ""
-"03120000.xhp\n"
-"hd_id3156153\n"
-"1\n"
+"03120308.xhp\n"
+"par_id3155856\n"
+"20\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120000.xhp\" name=\"Strings\">Strings</link>"
+msgid "' Right-align \"SBX\" in a 40-character string"
msgstr ""
-#: 03120000.xhp
+#: 03120308.xhp
msgctxt ""
-"03120000.xhp\n"
-"par_id3159176\n"
-"2\n"
+"03120308.xhp\n"
+"par_id3152577\n"
+"21\n"
"help.text"
-msgid "The following functions and statements validate and return strings."
+msgid "' Replace asterisks with spaces"
msgstr ""
-#: 03120000.xhp
+#: 03120308.xhp
msgctxt ""
-"03120000.xhp\n"
-"par_id3154285\n"
-"3\n"
+"03120308.xhp\n"
+"par_id3145801\n"
+"32\n"
"help.text"
-msgid "You can use strings to edit text within $[officename] Basic programs."
+msgid "' Left-align \"SBX\" in a 40-character string"
msgstr ""
-#: 03060400.xhp
+#: 03120309.xhp
msgctxt ""
-"03060400.xhp\n"
+"03120309.xhp\n"
"tit\n"
"help.text"
-msgid "Not-Operator [Runtime]"
+msgid "RTrim Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03060400.xhp
+#: 03120309.xhp
msgctxt ""
-"03060400.xhp\n"
-"bm_id3156024\n"
+"03120309.xhp\n"
+"bm_id3154286\n"
"help.text"
-msgid "<bookmark_value>Not operator (logical)</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>RTrim function</bookmark_value>"
+msgstr "E kthen funksionin gabim plotwsues"
-#: 03060400.xhp
+#: 03120309.xhp
msgctxt ""
-"03060400.xhp\n"
-"hd_id3156024\n"
+"03120309.xhp\n"
+"hd_id3154286\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060400.xhp\" name=\"Not-Operator [Runtime]\">Not-Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120309.xhp\" name=\"RTrim Function [Runtime]\">RTrim Function [Runtime]</link>"
msgstr ""
-#: 03060400.xhp
+#: 03120309.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3159414\n"
+"03120309.xhp\n"
+"par_id3153127\n"
"2\n"
"help.text"
-msgid "Negates an expression by inverting the bit values."
+msgid "Deletes the spaces at the end of a string expression."
msgstr ""
-#: 03060400.xhp
+#: 03120309.xhp
msgctxt ""
-"03060400.xhp\n"
-"hd_id3149457\n"
+"03120309.xhp\n"
+"par_id3153062\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "See also: <link href=\"text/sbasic/shared/03120305.xhp\" name=\"LTrim Function\">LTrim Function</link>"
+msgstr ""
-#: 03060400.xhp
+#: 03120309.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3150360\n"
+"03120309.xhp\n"
+"hd_id3154924\n"
"4\n"
"help.text"
-msgid "Result = Not Expression"
-msgstr "**Fraza është e gabueshme**"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03060400.xhp
+#: 03120309.xhp
msgctxt ""
-"03060400.xhp\n"
-"hd_id3151211\n"
+"03120309.xhp\n"
+"par_id3154347\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "RTrim (Text As String)"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03060400.xhp
+#: 03120309.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3147228\n"
+"03120309.xhp\n"
+"hd_id3149457\n"
"6\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the negation."
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03060400.xhp
+#: 03120309.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3154124\n"
+"03120309.xhp\n"
+"par_id3153381\n"
"7\n"
"help.text"
-msgid "<emph>Expression:</emph> Any expression that you want to negate."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "String"
+msgstr "Varg"
-#: 03060400.xhp
+#: 03120309.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3150868\n"
+"03120309.xhp\n"
+"hd_id3148798\n"
"8\n"
"help.text"
-msgid "When a Boolean expression is negated, the value True changes to False, and the value False changes to True."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03060400.xhp
+#: 03120309.xhp
msgctxt ""
-"03060400.xhp\n"
-"par_id3145785\n"
+"03120309.xhp\n"
+"par_id3151380\n"
"9\n"
"help.text"
-msgid "In a bitwise negation each individual bit is inverted."
-msgstr ""
+msgid "<emph>Text: </emph>Any string expression."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03060400.xhp
+#: 03120309.xhp
msgctxt ""
-"03060400.xhp\n"
-"hd_id3153093\n"
+"03120309.xhp\n"
+"hd_id3151041\n"
"10\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"par_id3145749\n"
-"15\n"
-"help.text"
-msgid "vOut = Not vA ' Returns -11"
-msgstr ""
-
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"par_id3148645\n"
-"16\n"
-"help.text"
-msgid "vOut = Not(vC > vD) ' Returns -1"
-msgstr ""
-
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"par_id3156441\n"
-"17\n"
-"help.text"
-msgid "vOut = Not(vB > vA) ' Returns -1"
-msgstr ""
-
-#: 03060400.xhp
-msgctxt ""
-"03060400.xhp\n"
-"par_id3152596\n"
-"18\n"
-"help.text"
-msgid "vOut = Not(vA > vB) ' Returns 0"
-msgstr ""
-
-#: 03090409.xhp
+#: 03120310.xhp
msgctxt ""
-"03090409.xhp\n"
+"03120310.xhp\n"
"tit\n"
"help.text"
-msgid "Sub Statement [Runtime]"
+msgid "UCase Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03090409.xhp
+#: 03120310.xhp
msgctxt ""
-"03090409.xhp\n"
-"bm_id3147226\n"
+"03120310.xhp\n"
+"bm_id3153527\n"
"help.text"
-msgid "<bookmark_value>Sub statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+msgid "<bookmark_value>UCase function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03090409.xhp
+#: 03120310.xhp
msgctxt ""
-"03090409.xhp\n"
-"hd_id3147226\n"
+"03120310.xhp\n"
+"hd_id3153527\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090409.xhp\" name=\"Sub Statement [Runtime]\">Sub Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120310.xhp\" name=\"UCase Function [Runtime]\">UCase Function [Runtime]</link>"
msgstr ""
-#: 03090409.xhp
+#: 03120310.xhp
msgctxt ""
-"03090409.xhp\n"
-"par_id3153311\n"
+"03120310.xhp\n"
+"par_id3155420\n"
"2\n"
"help.text"
-msgid "Defines a subroutine."
-msgstr "Definon llojin e të dhënës së një vlere."
+msgid "Converts lowercase characters in a string to uppercase."
+msgstr ""
-#: 03090409.xhp
+#: 03120310.xhp
msgctxt ""
-"03090409.xhp\n"
-"hd_id3149416\n"
+"03120310.xhp\n"
+"par_id3150771\n"
"3\n"
"help.text"
-msgid "Syntax"
+msgid "See also: <link href=\"text/sbasic/shared/03120302.xhp\" name=\"LCase Function\">LCase Function</link>"
+msgstr ""
+
+#: 03120310.xhp
+msgctxt ""
+"03120310.xhp\n"
+"par_id3149233\n"
+"4\n"
+"help.text"
+msgid "<emph>Syntax</emph>:"
msgstr "**Gabim Sintaksor**"
-#: 03090409.xhp
+#: 03120310.xhp
msgctxt ""
-"03090409.xhp\n"
-"par_id3147530\n"
+"03120310.xhp\n"
+"par_id3153061\n"
"5\n"
"help.text"
-msgid "statement block"
-msgstr "Shigjetat e bllokut"
+msgid "UCase (Text As String)"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03090409.xhp
+#: 03120310.xhp
msgctxt ""
-"03090409.xhp\n"
-"hd_id3153525\n"
-"9\n"
+"03120310.xhp\n"
+"par_id3159414\n"
+"6\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "<emph>Return value</emph>:"
+msgstr "Veprimi përfundoi [Time]: [1]. Vlera kthyese [2]."
-#: 03090409.xhp
+#: 03120310.xhp
msgctxt ""
-"03090409.xhp\n"
-"par_id3150792\n"
-"10\n"
+"03120310.xhp\n"
+"par_id3146795\n"
+"7\n"
"help.text"
-msgid "<emph>Name:</emph> Name of the subroutine ."
-msgstr "Shtegu/Emri i fajllit"
+msgid "String"
+msgstr "Varg"
-#: 03090409.xhp
+#: 03120310.xhp
msgctxt ""
-"03090409.xhp\n"
-"par_id3154138\n"
-"11\n"
+"03120310.xhp\n"
+"hd_id3149457\n"
+"8\n"
"help.text"
-msgid "<emph>VarName: </emph>Parameter that you want to pass to the subroutine."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03090409.xhp
+#: 03120310.xhp
msgctxt ""
-"03090409.xhp\n"
-"par_id3154908\n"
-"12\n"
+"03120310.xhp\n"
+"par_id3150791\n"
+"9\n"
"help.text"
-msgid "<emph>Type:</emph> Type-declaration key word."
-msgstr ""
+msgid "<emph>Text:</emph> Any string expression that you want to convert."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03090409.xhp
+#: 03120310.xhp
msgctxt ""
-"03090409.xhp\n"
-"hd_id3153770\n"
-"16\n"
+"03120310.xhp\n"
+"hd_id3154125\n"
+"10\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03090409.xhp
-#, fuzzy
-msgctxt ""
-"03090409.xhp\n"
-"par_idN1063F\n"
-"help.text"
-msgid "' some statements"
-msgstr "Kjo mund të kërkojë pak kohë."
-
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 01020000.xhp
+#: 03120310.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3148946\n"
-"1\n"
+"03120310.xhp\n"
+"par_id3149204\n"
+"14\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/01020000.xhp\" name=\"Syntax\">Syntax</link>"
+msgid "Print LCase(sVar) ' returns \"las vegas\""
msgstr ""
-#: 01020000.xhp
+#: 03120310.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3150793\n"
-"2\n"
+"03120310.xhp\n"
+"par_id3156280\n"
+"15\n"
"help.text"
-msgid "This section describes the basic syntax elements of $[officename] Basic. For a detailed description please refer to the $[officename] Basic Guide which is available separately."
+msgid "Print UCase(sVar) ' returns \"LAS VEGAS\""
msgstr ""
-#: 03090412.xhp
+#: 03120311.xhp
msgctxt ""
-"03090412.xhp\n"
+"03120311.xhp\n"
"tit\n"
"help.text"
-msgid "Exit Statement [Runtime]"
+msgid "Trim Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03090412.xhp
+#: 03120311.xhp
msgctxt ""
-"03090412.xhp\n"
-"bm_id3152924\n"
+"03120311.xhp\n"
+"bm_id3150616\n"
"help.text"
-msgid "<bookmark_value>Exit statement</bookmark_value>"
-msgstr "Vlera #1 nuk mund të përdoret me LIKE!"
+msgid "<bookmark_value>Trim function</bookmark_value>"
+msgstr "E kthen funksionin gabim plotwsues"
-#: 03090412.xhp
+#: 03120311.xhp
msgctxt ""
-"03090412.xhp\n"
-"hd_id3152924\n"
+"03120311.xhp\n"
+"hd_id3150616\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090412.xhp\" name=\"Exit Statement [Runtime]\">Exit Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120311.xhp\" name=\"Trim Function [Runtime]\">Trim Function [Runtime]</link>"
msgstr ""
-#: 03090412.xhp
+#: 03120311.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3153394\n"
+"03120311.xhp\n"
+"par_id3149177\n"
"2\n"
"help.text"
-msgid "Exits a <emph>Do...Loop</emph>, <emph>For...Next</emph>, a function, or a subroutine."
+msgid "Removes all leading and trailing spaces from a string expression."
msgstr ""
-#: 03090412.xhp
+#: 03120311.xhp
msgctxt ""
-"03090412.xhp\n"
-"hd_id3149763\n"
+"03120311.xhp\n"
+"hd_id3159157\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03090412.xhp
+#: 03120311.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3159157\n"
+"03120311.xhp\n"
+"par_id3155341\n"
"4\n"
"help.text"
-msgid "see Parameters"
-msgstr "Parametrat animues"
+msgid "Trim( Text As String )"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03090412.xhp
+#: 03120311.xhp
msgctxt ""
-"03090412.xhp\n"
-"hd_id3148943\n"
+"03120311.xhp\n"
+"hd_id3155388\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03090412.xhp
+#: 03120311.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3154760\n"
+"03120311.xhp\n"
+"par_id3143228\n"
"6\n"
"help.text"
-msgid "<emph>Exit Do</emph>"
-msgstr "Ruaj dokumentet"
+msgid "String"
+msgstr "Varg"
-#: 03090412.xhp
+#: 03120311.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3147559\n"
+"03120311.xhp\n"
+"hd_id3145609\n"
"7\n"
"help.text"
-msgid "Only valid within a <emph>Do...Loop</emph> statement to exit the loop. Program execution continues with the statement that follows the Loop statement. If <emph>Do...Loop</emph> statements are nested, the control is transferred to the loop in the next higher level."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03090412.xhp
+#: 03120311.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3150398\n"
+"03120311.xhp\n"
+"par_id3159414\n"
"8\n"
"help.text"
-msgid "<emph>Exit For</emph>"
-msgstr "Cakto drejtimin e daljes për %O"
-
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3148797\n"
-"9\n"
-"help.text"
-msgid "Only valid within a <emph>For...Next</emph> loop to exit the loop. Program execution continues with the first statement that follows the <emph>Next</emph> statement. In nested statements, the control is transferred to the loop in the next higher level."
-msgstr ""
+msgid "<emph>Text:</emph> Any string expression."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03090412.xhp
+#: 03120311.xhp
msgctxt ""
-"03090412.xhp\n"
-"par_id3147229\n"
+"03120311.xhp\n"
+"hd_id3148663\n"
"10\n"
"help.text"
-msgid "<emph>Exit Function</emph>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
-
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3154685\n"
-"11\n"
-"help.text"
-msgid "Exits the <emph>Function</emph> procedure immediately. Program execution continues with the statement that follows the <emph>Function</emph> call."
-msgstr ""
-
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3155132\n"
-"12\n"
-"help.text"
-msgid "<emph>Exit Sub</emph>"
-msgstr "Pozita relative e daljes"
-
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3149561\n"
-"13\n"
-"help.text"
-msgid "Exits the subroutine immediately. Program execution continues with the statement that follows the <emph>Sub</emph> call."
-msgstr ""
-
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3153143\n"
-"14\n"
-"help.text"
-msgid "The Exit statement does not define the end of a structure, and must not be confused with the End statement."
-msgstr ""
-
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"hd_id3147348\n"
-"15\n"
-"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3153158\n"
-"20\n"
-"help.text"
-msgid "For siStep = 0 To 10 ' Fill array with test data"
-msgstr ""
-
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3153764\n"
-"31\n"
-"help.text"
-msgid "' LinSearch searches a TextArray:sList() for a TextEntry:"
-msgstr ""
-
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3148995\n"
-"32\n"
-"help.text"
-msgid "' Returns the index of the entry or 0 (Null)"
-msgstr ""
-
-#: 03090412.xhp
-msgctxt ""
-"03090412.xhp\n"
-"par_id3149567\n"
-"35\n"
-"help.text"
-msgid "Exit For ' sItem found"
-msgstr ""
-
-#: 03020204.xhp
+#: 03120312.xhp
msgctxt ""
-"03020204.xhp\n"
+"03120312.xhp\n"
"tit\n"
"help.text"
-msgid "Put Statement [Runtime]"
+msgid "ConvertToURL Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020204.xhp
+#: 03120312.xhp
msgctxt ""
-"03020204.xhp\n"
-"bm_id3150360\n"
+"03120312.xhp\n"
+"bm_id3152801\n"
"help.text"
-msgid "<bookmark_value>Put statement</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>ConvertToURL function</bookmark_value>"
+msgstr "E kthen funksionin gabim plotwsues"
-#: 03020204.xhp
+#: 03120312.xhp
msgctxt ""
-"03020204.xhp\n"
-"hd_id3150360\n"
+"03120312.xhp\n"
+"hd_id3152801\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020204.xhp\" name=\"Put Statement [Runtime]\">Put Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120312.xhp\" name=\"ConvertToURL Function [Runtime]\">ConvertToURL Function [Runtime]</link>"
msgstr ""
-#: 03020204.xhp
+#: 03120312.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3154909\n"
+"03120312.xhp\n"
+"par_id3148538\n"
"2\n"
"help.text"
-msgid "Writes a record to a relative file or a sequence of bytes to a binary file."
+msgid "Converts a system file name to a file URL."
msgstr ""
-#: 03020204.xhp
+#: 03120312.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3156281\n"
+"03120312.xhp\n"
+"hd_id3150669\n"
"3\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020201.xhp\" name=\"Get\"><item type=\"literal\">Get</item></link> statement"
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03020204.xhp
+#: 03120312.xhp
msgctxt ""
-"03020204.xhp\n"
-"hd_id3125863\n"
+"03120312.xhp\n"
+"par_id3154285\n"
"4\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "ConvertToURL(filename)"
+msgstr ""
-#: 03020204.xhp
+#: 03120312.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3155132\n"
+"03120312.xhp\n"
+"hd_id3150984\n"
"5\n"
"help.text"
-msgid "Put [#] FileNumber As Integer, [position], Variable"
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03020204.xhp
+#: 03120312.xhp
msgctxt ""
-"03020204.xhp\n"
-"hd_id3153190\n"
+"03120312.xhp\n"
+"par_id3147530\n"
"6\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "String"
+msgstr "Varg"
-#: 03020204.xhp
+#: 03120312.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3146120\n"
+"03120312.xhp\n"
+"hd_id3148550\n"
"7\n"
"help.text"
-msgid "<emph>FileNumber:</emph> Any integer expression that defines the file that you want to write to."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03020204.xhp
+#: 03120312.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3155411\n"
+"03120312.xhp\n"
+"par_id3148947\n"
"8\n"
"help.text"
-msgid "<emph>Position: </emph>For relative files (random access files), the number of the record that you want to write."
+msgid "<emph>Filename:</emph> A file name as string."
msgstr ""
-#: 03020204.xhp
+#: 03120312.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3148576\n"
+"03120312.xhp\n"
+"hd_id3153361\n"
"9\n"
"help.text"
-msgid "For binary files (binary access), the position of the byte in the file where you want to start writing."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03020204.xhp
+#: 03120312.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3153729\n"
+"03120312.xhp\n"
+"par_id3150792\n"
"10\n"
"help.text"
-msgid "<emph>Variable:</emph> Name of the variable that you want to write to the file."
-msgstr ""
+msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
+msgstr "Tekst i thjeshtë (*.txt)"
-#: 03020204.xhp
+#: 03120312.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3146974\n"
+"03120312.xhp\n"
+"par_id3154365\n"
"11\n"
"help.text"
-msgid "Note for relative files: If the contents of this variable does not match the length of the record that is specified in the <emph>Len</emph> clause of the <emph>Open</emph> statement, the space between the end of the newly written record and the next record is padded with existing data from the file that you are writing to."
-msgstr ""
+msgid "url$ = ConvertToURL( systemFile$ )"
+msgstr "Shto URL butonin"
-#: 03020204.xhp
+#: 03120312.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3155855\n"
+"03120312.xhp\n"
+"par_id3151042\n"
"12\n"
"help.text"
-msgid "Note for binary files: The contents of the variables are written to the specified position, and the file pointer is inserted directly after the last byte. No space is left between the records."
-msgstr ""
+msgid "print url$"
+msgstr "URL njohje"
-#: 03020204.xhp
+#: 03120312.xhp
msgctxt ""
-"03020204.xhp\n"
-"hd_id3154491\n"
+"03120312.xhp\n"
+"par_id3154909\n"
"13\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3154729\n"
-"16\n"
-"help.text"
-msgid "Dim sText As Variant ' Must be a variant type"
-msgstr ""
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3156278\n"
-"22\n"
-"help.text"
-msgid "Seek #iNumber,1 ' Position To start writing"
-msgstr ""
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3153711\n"
-"23\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" ' Fill line with text"
-msgstr ""
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3155446\n"
-"24\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Nga kreu në fund"
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3154255\n"
-"25\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Nga kreu në fund"
-
-#: 03020204.xhp
-msgctxt ""
-"03020204.xhp\n"
-"par_id3150940\n"
-"34\n"
-"help.text"
-msgid "Put #iNumber,,\"This is new text\""
-msgstr "Nga kreu në fund"
+msgid "systemFileAgain$ = ConvertFromURL( url$ )"
+msgstr "Shto URL butonin"
-#: 03020204.xhp
+#: 03120312.xhp
msgctxt ""
-"03020204.xhp\n"
-"par_id3159102\n"
-"37\n"
+"03120312.xhp\n"
+"par_id3144762\n"
+"14\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
-msgstr ""
+msgid "print systemFileAgain$"
+msgstr "Opcionet e shtypjes"
-#: 03020415.xhp
+#: 03120313.xhp
msgctxt ""
-"03020415.xhp\n"
+"03120313.xhp\n"
"tit\n"
"help.text"
-msgid "FileExists Function [Runtime]"
+msgid "ConvertFromURL Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020415.xhp
+#: 03120313.xhp
msgctxt ""
-"03020415.xhp\n"
-"bm_id3148946\n"
+"03120313.xhp\n"
+"bm_id3153894\n"
"help.text"
-msgid "<bookmark_value>FileExists function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>ConvertFromURL function</bookmark_value>"
+msgstr "E kthen funksionin gabim plotwsues"
-#: 03020415.xhp
+#: 03120313.xhp
msgctxt ""
-"03020415.xhp\n"
-"hd_id3148946\n"
+"03120313.xhp\n"
+"hd_id3153894\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020415.xhp\" name=\"FileExists Function [Runtime]\">FileExists Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120313.xhp\" name=\"ConvertFromURL Function [Runtime]\">ConvertFromURL Function [Runtime]</link>"
msgstr ""
-#: 03020415.xhp
+#: 03120313.xhp
msgctxt ""
-"03020415.xhp\n"
-"par_id3153361\n"
+"03120313.xhp\n"
+"par_id3147226\n"
"2\n"
"help.text"
-msgid "Determines if a file or a directory is available on the data medium."
+msgid "Converts a file URL to a system file name."
msgstr ""
-#: 03020415.xhp
+#: 03120313.xhp
msgctxt ""
-"03020415.xhp\n"
-"hd_id3150447\n"
+"03120313.xhp\n"
+"hd_id3143267\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03020415.xhp
+#: 03120313.xhp
msgctxt ""
-"03020415.xhp\n"
-"par_id3154685\n"
+"03120313.xhp\n"
+"par_id3154142\n"
"4\n"
"help.text"
-msgid "FileExists(FileName As String | DirectoryName As String)"
+msgid "ConvertFromURL(filename)"
msgstr ""
-#: 03020415.xhp
+#: 03120313.xhp
msgctxt ""
-"03020415.xhp\n"
-"hd_id3154126\n"
+"03120313.xhp\n"
+"hd_id3159157\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03020415.xhp
+#: 03120313.xhp
msgctxt ""
-"03020415.xhp\n"
-"par_id3150769\n"
+"03120313.xhp\n"
+"par_id3150669\n"
"6\n"
"help.text"
-msgid "Bool"
-msgstr "JO logjike"
+msgid "String"
+msgstr "Varg"
-#: 03020415.xhp
+#: 03120313.xhp
msgctxt ""
-"03020415.xhp\n"
-"hd_id3153770\n"
+"03120313.xhp\n"
+"hd_id3143270\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03020415.xhp
+#: 03120313.xhp
msgctxt ""
-"03020415.xhp\n"
-"par_id3147349\n"
+"03120313.xhp\n"
+"par_id3156023\n"
"8\n"
"help.text"
-msgid "FileName | DirectoryName: Any string expression that contains an unambiguous file specification. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "<emph>Filename:</emph> A file name as a string."
msgstr ""
-#: 03020415.xhp
+#: 03120313.xhp
msgctxt ""
-"03020415.xhp\n"
-"hd_id3149664\n"
+"03120313.xhp\n"
+"hd_id3154760\n"
"9\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Organizing Libraries and Modules"
-msgstr ""
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"bm_id3148797\n"
-"help.text"
-msgid "<bookmark_value>libraries;organizing</bookmark_value><bookmark_value>modules;organizing</bookmark_value><bookmark_value>copying;modules</bookmark_value><bookmark_value>adding libraries</bookmark_value><bookmark_value>deleting;libraries/modules/dialogs</bookmark_value><bookmark_value>dialogs;organizing</bookmark_value><bookmark_value>moving;modules</bookmark_value><bookmark_value>organizing;modules/libraries/dialogs</bookmark_value><bookmark_value>renaming modules and dialogs</bookmark_value>"
-msgstr ""
-
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"hd_id3148797\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"01030400\"><link href=\"text/sbasic/shared/01030400.xhp\">Organizing Libraries and Modules</link></variable>"
-msgstr ""
-
-#: 01030400.xhp
+#: 03120313.xhp
msgctxt ""
-"01030400.xhp\n"
-"hd_id3150868\n"
-"4\n"
+"03120313.xhp\n"
+"par_id3148664\n"
+"10\n"
"help.text"
-msgid "Organizing Libraries"
-msgstr "Bashkangjitni biblotekat"
+msgid "systemFile$ = \"c:\\folder\\mytext.txt\""
+msgstr "Tekst i thjeshtë (*.txt)"
-#: 01030400.xhp
+#: 03120313.xhp
msgctxt ""
-"01030400.xhp\n"
-"hd_id3125864\n"
-"5\n"
+"03120313.xhp\n"
+"par_id3150541\n"
+"11\n"
"help.text"
-msgid "Creating a New Library"
-msgstr "$(ERR gjatë krijimit të dokumentit të ri."
+msgid "url$ = ConvertToURL( systemFile$ )"
+msgstr "Shto URL butonin"
-#: 01030400.xhp
+#: 03120313.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3152576\n"
-"6\n"
+"03120313.xhp\n"
+"par_id3150792\n"
+"12\n"
"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr ""
+msgid "print url$"
+msgstr "URL njohje"
-#: 01030400.xhp
+#: 03120313.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3153726\n"
-"8\n"
+"03120313.xhp\n"
+"par_id3154367\n"
+"13\n"
"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Largo nga adresa"
+msgid "systemFileAgain$ = ConvertFromURL( url$ )"
+msgstr "Shto URL butonin"
-#: 01030400.xhp
+#: 03120313.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3149664\n"
-"9\n"
+"03120313.xhp\n"
+"par_id3153194\n"
+"14\n"
"help.text"
-msgid "Select to where you want to attach the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be attached to this document and only available from there."
-msgstr ""
+msgid "print systemFileAgain$"
+msgstr "Opcionet e shtypjes"
-#: 01030400.xhp
+#: 03120314.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3153365\n"
-"10\n"
+"03120314.xhp\n"
+"tit\n"
"help.text"
-msgid "Click <emph>New</emph> and insert a name to create a new library."
-msgstr ""
+msgid "Split Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01030400.xhp
+#: 03120314.xhp
msgctxt ""
-"01030400.xhp\n"
-"hd_id3147394\n"
-"48\n"
+"03120314.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "Import a Library"
-msgstr ""
+msgid "<bookmark_value>Split function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 01030400.xhp
+#: 03120314.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3153157\n"
-"49\n"
+"03120314.xhp\n"
+"hd_id3156027\n"
+"1\n"
"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgid "<link href=\"text/sbasic/shared/03120314.xhp\" name=\"Split Function [Runtime]\">Split Function [Runtime]</link>"
msgstr ""
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3146972\n"
-"50\n"
-"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Largo nga adresa"
-
-#: 01030400.xhp
+#: 03120314.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3145640\n"
-"51\n"
+"03120314.xhp\n"
+"par_id3155805\n"
+"2\n"
"help.text"
-msgid "Select to where you want to import the library in the <emph>Location</emph> list. If you select %PRODUCTNAME Macros & Dialogs, the library will belong to the $[officename] application and will be available for all documents. If you select a document the library will be imported to this document and only available from there."
+msgid "Returns an array of substrings from a string expression."
msgstr ""
-#: 01030400.xhp
+#: 03120314.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3154253\n"
-"52\n"
+"03120314.xhp\n"
+"hd_id3149177\n"
+"3\n"
"help.text"
-msgid "Click <emph>Import...</emph> and select an external library to import."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01030400.xhp
+#: 03120314.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3154705\n"
-"53\n"
+"03120314.xhp\n"
+"par_id3153824\n"
+"4\n"
"help.text"
-msgid "Select all libraries to be imported in the <emph>Import Libraries</emph> dialog. The dialog displays all libraries that are contained in the selected file."
+msgid "Split (Text As String, delimiter, number)"
msgstr ""
-#: 01030400.xhp
+#: 03120314.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3163807\n"
-"54\n"
+"03120314.xhp\n"
+"hd_id3149763\n"
+"5\n"
"help.text"
-msgid "If you want to insert the library as a reference only check the <emph>Insert as reference (read-only)</emph> box. Read-only libraries are fully functional but cannot be modified in the Basic IDE."
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 01030400.xhp
+#: 03120314.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3145228\n"
-"55\n"
+"03120314.xhp\n"
+"par_id3154285\n"
+"6\n"
"help.text"
-msgid "Check the <emph>Replace existing libraries</emph> box if you want existing libraries of the same name to be overwritten."
-msgstr ""
+msgid "String"
+msgstr "Varg"
-#: 01030400.xhp
+#: 03120314.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147004\n"
-"56\n"
+"03120314.xhp\n"
+"hd_id3145315\n"
+"7\n"
"help.text"
-msgid "Click <emph>OK</emph> to import the library."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01030400.xhp
+#: 03120314.xhp
msgctxt ""
-"01030400.xhp\n"
-"hd_id3159099\n"
-"17\n"
+"03120314.xhp\n"
+"par_id3156023\n"
+"8\n"
"help.text"
-msgid "Export a Library"
-msgstr ""
+msgid "<emph>Text:</emph> Any string expression."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 01030400.xhp
+#: 03120314.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147005\n"
-"70\n"
+"03120314.xhp\n"
+"par_id3147560\n"
+"9\n"
"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgid "<emph>delimiter (optional):</emph> A string of one or more characters length that is used to delimit the Text. The default is the space character."
msgstr ""
-#: 01030400.xhp
-#, fuzzy
-msgctxt ""
-"01030400.xhp\n"
-"par_id3147006\n"
-"71\n"
-"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Largo nga adresa"
-
-#: 01030400.xhp
+#: 03120314.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147007\n"
-"72\n"
+"03120314.xhp\n"
+"par_id3145069\n"
+"12\n"
"help.text"
-msgid "In the <emph>Location</emph> list you specify where your library is stored. Select the library that you want to export. Note that you cannot export the <emph>Standard</emph> library."
+msgid "<emph>number (optional):</emph> The number of substrings that you want to return."
msgstr ""
-#: 01030400.xhp
+#: 03120314.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147008\n"
-"73\n"
+"03120314.xhp\n"
+"hd_id3150398\n"
+"10\n"
"help.text"
-msgid "Click <emph>Export...</emph>"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 01030400.xhp
+#: 03120315.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147009\n"
-"74\n"
+"03120315.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose whether you want to export the library as an extension or as a basic library."
-msgstr ""
+msgid "Join Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01030400.xhp
-#, fuzzy
+#: 03120315.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147010\n"
-"75\n"
+"03120315.xhp\n"
+"bm_id3149416\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Largo nga adresa"
+msgid "<bookmark_value>Join function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 01030400.xhp
+#: 03120315.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147011\n"
-"76\n"
+"03120315.xhp\n"
+"hd_id3149416\n"
+"1\n"
"help.text"
-msgid "Select where you want your library exported."
+msgid "<link href=\"text/sbasic/shared/03120315.xhp\" name=\"Join Function [Runtime]\">Join Function [Runtime]</link>"
msgstr ""
-#: 01030400.xhp
+#: 03120315.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147012\n"
-"77\n"
+"03120315.xhp\n"
+"par_id3149670\n"
+"2\n"
"help.text"
-msgid "Click <emph>Save</emph> to export the library."
+msgid "Returns a string from a number of substrings in a string array."
msgstr ""
-#: 01030400.xhp
+#: 03120315.xhp
msgctxt ""
-"01030400.xhp\n"
-"hd_id3159100\n"
-"17\n"
+"03120315.xhp\n"
+"hd_id3159414\n"
+"3\n"
"help.text"
-msgid "Deleting a Library"
-msgstr "Libraria e tanishme"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01030400.xhp
+#: 03120315.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3150086\n"
-"18\n"
+"03120315.xhp\n"
+"par_id3156344\n"
+"4\n"
"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgid "Join (Text As String Array, delimiter)"
msgstr ""
-#: 01030400.xhp
-msgctxt ""
-"01030400.xhp\n"
-"par_id3146808\n"
-"57\n"
-"help.text"
-msgid "Click the <emph>Libraries</emph> tab."
-msgstr "Largo nga adresa"
-
-#: 01030400.xhp
+#: 03120315.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3158212\n"
-"58\n"
+"03120315.xhp\n"
+"hd_id3150400\n"
+"5\n"
"help.text"
-msgid "Select the library to be deleted from the list."
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 01030400.xhp
+#: 03120315.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3150361\n"
-"20\n"
+"03120315.xhp\n"
+"par_id3150359\n"
+"6\n"
"help.text"
-msgid "Click <emph>Delete</emph>."
-msgstr "Fshije stilin e linjës"
+msgid "String"
+msgstr "Varg"
-#: 01030400.xhp
+#: 03120315.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3152986\n"
-"19\n"
+"03120315.xhp\n"
+"hd_id3148798\n"
+"7\n"
"help.text"
-msgid "Deleting a library permanently deletes all existing modules and corresponding procedures and functions."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01030400.xhp
+#: 03120315.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3148868\n"
-"59\n"
+"03120315.xhp\n"
+"par_id3145171\n"
+"8\n"
"help.text"
-msgid "You cannot delete the default library named \"Standard\"."
-msgstr ""
+msgid "<emph>Text:</emph> A string array."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 01030400.xhp
+#: 03120315.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3146869\n"
-"60\n"
+"03120315.xhp\n"
+"par_id3154908\n"
+"9\n"
"help.text"
-msgid "If you delete a library that was inserted as reference only the reference is deleted but not the library itself."
+msgid "<emph>delimiter (optional):</emph> A string character that is used to separate the substrings in the resulting string. The default delimiter is the space character. If delimiter is a string of length zero \"\", the substrings are joined without separator."
msgstr ""
-#: 01030400.xhp
+#: 03120315.xhp
msgctxt ""
-"01030400.xhp\n"
-"hd_id3147070\n"
-"21\n"
+"03120315.xhp\n"
+"hd_id3154218\n"
+"10\n"
"help.text"
-msgid "Organizing Modules and Dialogs"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 01030400.xhp
+#: 03120400.xhp
msgctxt ""
-"01030400.xhp\n"
-"hd_id3155265\n"
-"61\n"
+"03120400.xhp\n"
+"tit\n"
"help.text"
-msgid "Creating a New Module or Dialog"
-msgstr ""
+msgid "Editing String Length"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 01030400.xhp
+#: 03120400.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3154537\n"
-"62\n"
+"03120400.xhp\n"
+"hd_id3155150\n"
+"1\n"
"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgid "<link href=\"text/sbasic/shared/03120400.xhp\" name=\"Editing String Length\">Editing String Length</link>"
msgstr ""
-#: 01030400.xhp
+#: 03120400.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3146781\n"
-"63\n"
+"03120400.xhp\n"
+"par_id3159201\n"
+"2\n"
"help.text"
-msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
+msgid "The following functions determine string lengths and compare strings."
msgstr ""
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3159206\n"
-"64\n"
+"03120401.xhp\n"
+"tit\n"
"help.text"
-msgid "Select the library where the module will be inserted and click <emph>New</emph>."
-msgstr ""
+msgid "InStr Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3152389\n"
-"65\n"
+"03120401.xhp\n"
+"bm_id3155934\n"
"help.text"
-msgid "Enter a name for the module or the dialog and click <emph>OK</emph>."
-msgstr ""
+msgid "<bookmark_value>InStr function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"hd_id3152872\n"
-"25\n"
+"03120401.xhp\n"
+"hd_id3155934\n"
+"1\n"
"help.text"
-msgid "Renaming a Module or Dialog"
+msgid "<link href=\"text/sbasic/shared/03120401.xhp\" name=\"InStr Function [Runtime]\">InStr Function [Runtime]</link>"
msgstr ""
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3159230\n"
-"66\n"
+"03120401.xhp\n"
+"par_id3153990\n"
+"2\n"
"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
+msgid "Returns the position of a string within another string."
msgstr ""
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3150046\n"
-"67\n"
+"03120401.xhp\n"
+"par_id3147303\n"
+"3\n"
"help.text"
-msgid "Click the module to be renamed twice, with a pause between the clicks. Enter the new name."
+msgid "The Instr function returns the position at which the match was found. If the string was not found, the function returns 0."
msgstr ""
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3153801\n"
-"27\n"
+"03120401.xhp\n"
+"hd_id3145090\n"
+"4\n"
"help.text"
-msgid "In the Basic IDE, right-click the name of the module or dialog in the tabs at the bottom of the screen, choose <emph>Rename</emph> and type in the new name."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3155526\n"
-"28\n"
+"03120401.xhp\n"
+"par_id3146957\n"
+"5\n"
"help.text"
-msgid "Press Enter to confirm your changes."
+msgid "InStr ([Start As Long,] Text1 As String, Text2 As String[, Compare])"
msgstr ""
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"hd_id3146963\n"
-"29\n"
+"03120401.xhp\n"
+"hd_id3148538\n"
+"6\n"
"help.text"
-msgid "Deleting a Module or Dialog"
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147547\n"
-"68\n"
+"03120401.xhp\n"
+"par_id3149763\n"
+"7\n"
"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr ""
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3150958\n"
-"69\n"
+"03120401.xhp\n"
+"hd_id3148473\n"
+"8\n"
"help.text"
-msgid "Click the <emph>Modules</emph> tab or the <emph>Dialogs</emph> tab."
-msgstr ""
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3149870\n"
-"30\n"
+"03120401.xhp\n"
+"par_id3153126\n"
+"9\n"
"help.text"
-msgid "Select the module or dialog to be deleted from the list. Double-click an entry to reveal sub-entries, if required."
+msgid "<emph>Start: </emph>A numeric expression that marks the position in a string where the search for the specified substring starts. If you omit this parameter, the search starts at the first character of the string. The maximum allowed value is 65535."
msgstr ""
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3147248\n"
-"32\n"
+"03120401.xhp\n"
+"par_id3145609\n"
+"10\n"
"help.text"
-msgid "Click <emph>Delete</emph>."
-msgstr "Fshije stilin e linjës"
+msgid "<emph>Text1:</emph> The string expression that you want to search."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3151339\n"
-"31\n"
+"03120401.xhp\n"
+"par_id3147559\n"
+"11\n"
"help.text"
-msgid "Deleting a module permanently deletes all existing procedures and functions in that module."
-msgstr ""
+msgid "<emph>Text2:</emph> The string expression that you want to search for."
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"hd_id3151392\n"
-"33\n"
+"03120401.xhp\n"
+"par_id3154758\n"
+"12\n"
"help.text"
-msgid "Organizing Projects among Documents or Templates"
+msgid "<emph>Compare:</emph> Optional numeric expression that defines the type of comparison. The value of this parameter can be 0 or 1. The default value of 1 specifies a text comparison that is not case-sensitive. The value of 0 specifies a binary comparison that is case-sensitive."
msgstr ""
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"hd_id3156400\n"
-"36\n"
+"03120401.xhp\n"
+"par_id3153361\n"
+"13\n"
"help.text"
-msgid "Moving or copying modules between documents, templates and the application."
+msgid "To avoid a run-time error, do not set the Compare parameter if the first return parameter is omitted."
msgstr ""
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3146819\n"
-"37\n"
+"03120401.xhp\n"
+"hd_id3154366\n"
+"14\n"
"help.text"
-msgid "Open all documents or templates among which you want to move or copy the modules or dialogs."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3149319\n"
-"38\n"
+"03120401.xhp\n"
+"par_id3144760\n"
+"19\n"
"help.text"
-msgid "Choose <emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click <emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the Basic IDE to open the <emph>Macro Organizer</emph> dialog."
-msgstr ""
+msgid "sInput = \"Office\""
+msgstr "Shiriti i Office"
-#: 01030400.xhp
+#: 03120401.xhp
msgctxt ""
-"01030400.xhp\n"
-"par_id3145637\n"
-"39\n"
+"03120401.xhp\n"
+"par_id3154125\n"
+"20\n"
"help.text"
-msgid "To move a module or dialog to another document, click the corresponding object in the list and drag it to the desired position. A horizontal line indicates the target position of the current object while dragging. Hold the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while dragging to copy the object instead of moving it."
+msgid "iPos = Instr(sInput,\"c\")"
msgstr ""
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
+"03120402.xhp\n"
"tit\n"
"help.text"
-msgid "CurDir Function [Runtime]"
+msgid "Len Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"bm_id3153126\n"
+"03120402.xhp\n"
+"bm_id3154136\n"
"help.text"
-msgid "<bookmark_value>CurDir function</bookmark_value>"
-msgstr "E kthen funksionin gabim plotwsues"
+msgid "<bookmark_value>Len function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"hd_id3153126\n"
+"03120402.xhp\n"
+"hd_id3154136\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020403.xhp\">CurDir Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len Function [Runtime]\">Len Function [Runtime]</link>"
msgstr ""
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"par_id3156343\n"
+"03120402.xhp\n"
+"par_id3147576\n"
"2\n"
"help.text"
-msgid "Returns a variant string that represents the current path of the specified drive."
+msgid "Returns the number of characters in a string, or the number of bytes that are required to store a variable."
msgstr ""
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"hd_id3149457\n"
+"03120402.xhp\n"
+"hd_id3159177\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"par_id3153381\n"
+"03120402.xhp\n"
+"par_id3150669\n"
"4\n"
"help.text"
-msgid "CurDir [(Text As String)]"
+msgid "Len (Text As String)"
msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"hd_id3154366\n"
+"03120402.xhp\n"
+"hd_id3148473\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"par_id3156281\n"
+"03120402.xhp\n"
+"par_id3143270\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "Long"
+msgstr "Standard (e gjatë)"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"hd_id3156423\n"
+"03120402.xhp\n"
+"hd_id3147531\n"
"7\n"
"help.text"
msgid "Parameters:"
msgstr "Parametrat animues"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"par_id3153193\n"
+"03120402.xhp\n"
+"par_id3147265\n"
"8\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies an existing drive (for example, \"C\" for the first partition of the first hard drive)."
+msgid "<emph>Text:</emph> Any string expression or a variable of another type."
msgstr ""
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"par_id3155133\n"
+"03120402.xhp\n"
+"hd_id3153360\n"
"9\n"
"help.text"
-msgid "If no drive is specified or if the drive is a zero-length string (\"\"), CurDir returns the path for the current drive. $[officename] Basic reports an error if the syntax of the drive description is incorrect, the drive does not exist, or if the drive letter occurs after the letter defined in the CONFIG.SYS with the Lastdrive statement."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03020403.xhp
+#: 03120402.xhp
msgctxt ""
-"03020403.xhp\n"
-"par_id3150010\n"
-"10\n"
+"03120402.xhp\n"
+"par_id3156214\n"
+"13\n"
"help.text"
-msgid "This function is not case-sensitive."
+msgid "MsgBox Len(sText) REM Returns 9"
msgstr ""
-#: 03020403.xhp
-msgctxt ""
-"03020403.xhp\n"
-"hd_id3155411\n"
-"11\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
+"03120403.xhp\n"
"tit\n"
"help.text"
-msgid "Log Function [Runtime]"
+msgid "StrComp Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"bm_id3149416\n"
+"03120403.xhp\n"
+"bm_id3156027\n"
"help.text"
-msgid "<bookmark_value>Log function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>StrComp function</bookmark_value>"
+msgstr "E kthen funksionin gabim plotwsues"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"hd_id3149416\n"
+"03120403.xhp\n"
+"hd_id3156027\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080202.xhp\" name=\"Log Function [Runtime]\">Log Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"StrComp Function [Runtime]\">StrComp Function [Runtime]</link>"
msgstr ""
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3145066\n"
+"03120403.xhp\n"
+"par_id3155805\n"
"2\n"
"help.text"
-msgid "Returns the natural logarithm of a number."
-msgstr "E kthen logaritmin natyral tw numrit kompleks"
+msgid "Compares two strings and returns an integer value that represents the result of the comparison."
+msgstr ""
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"hd_id3159414\n"
+"03120403.xhp\n"
+"hd_id3153345\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3154760\n"
+"03120403.xhp\n"
+"par_id3150503\n"
"4\n"
"help.text"
-msgid "Log (Number)"
-msgstr "Numri i faqes"
+msgid "StrComp (Text1 As String, Text2 As String[, Compare])"
+msgstr ""
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"hd_id3149457\n"
+"03120403.xhp\n"
+"hd_id3147574\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3150791\n"
+"03120403.xhp\n"
+"par_id3156152\n"
"6\n"
"help.text"
-msgid "Double"
-msgstr "Dyfish"
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"hd_id3151211\n"
+"03120403.xhp\n"
+"hd_id3150984\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Parameter:"
+msgstr "Parametri i sllajdit"
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3151041\n"
+"03120403.xhp\n"
+"par_id3153061\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the natural logarithm for."
-msgstr ""
+msgid "<emph>Text1:</emph> Any string expression"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3150869\n"
+"03120403.xhp\n"
+"par_id3147560\n"
"9\n"
"help.text"
-msgid "The natural logarithm is the logarithm to the base e. Base e is a constant with an approximate value of 2.718282..."
-msgstr ""
+msgid "<emph>Text2:</emph> Any string expression"
+msgstr "Llogarit gjatësinë e një vargu tekstual."
-#: 03080202.xhp
+#: 03120403.xhp
msgctxt ""
-"03080202.xhp\n"
-"par_id3153968\n"
+"03120403.xhp\n"
+"par_id3146796\n"
"10\n"
"help.text"
-msgid "You can calculate logarithms to any base (n) for any number (x) by dividing the natural logarithm of x by the natural logarithm of n, as follows:"
-msgstr ""
-
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3145420\n"
-"11\n"
-"help.text"
-msgid "Log n(x) = Log(x) / Log(n)"
-msgstr "LOG"
-
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"hd_id3155131\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03080202.xhp
-msgctxt ""
-"03080202.xhp\n"
-"par_id3149262\n"
-"18\n"
-"help.text"
-msgid "MsgBox \"\" & a & chr(13) & (b1*b2) ,0,\"Multiplication by logarithm function\""
+msgid "<emph>Compare:</emph> This optional parameter sets the comparison method. If Compare = 1, the string comparison is case-sensitive. If Compare = 0, no distinction is made between uppercase and lowercase letters."
msgstr ""
-#: 03090103.xhp
-msgctxt ""
-"03090103.xhp\n"
-"tit\n"
-"help.text"
-msgid "IIf Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03090103.xhp
+#: 03120403.xhp
msgctxt ""
-"03090103.xhp\n"
-"bm_id3155420\n"
+"03120403.xhp\n"
+"hd_id3154940\n"
+"13\n"
"help.text"
-msgid "<bookmark_value>IIf statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+msgid "Return value"
+msgstr "Vlerë absolute"
-#: 03090103.xhp
+#: 03120403.xhp
msgctxt ""
-"03090103.xhp\n"
-"hd_id3155420\n"
-"1\n"
+"03120403.xhp\n"
+"par_id3150358\n"
+"27\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090103.xhp\" name=\"IIf Statement [Runtime]\">IIf Statement [Runtime]</link>"
-msgstr ""
+msgid "If Text1 < Text2 the function returns -1"
+msgstr "Rezultati i funksionit nëse një test llogjik përgjigjet SAKTË."
-#: 03090103.xhp
+#: 03120403.xhp
msgctxt ""
-"03090103.xhp\n"
-"par_id3145610\n"
-"2\n"
+"03120403.xhp\n"
+"par_id3151043\n"
+"28\n"
"help.text"
-msgid "Returns one of two possible function results, depending on the logical value of the evaluated expression."
-msgstr ""
+msgid "If Text1 = Text2 the function returns 0"
+msgstr "Rezultati i funksionit nëse një test llogjik përgjigjet SAKTË."
-#: 03090103.xhp
+#: 03120403.xhp
msgctxt ""
-"03090103.xhp\n"
-"hd_id3159413\n"
-"3\n"
+"03120403.xhp\n"
+"par_id3158410\n"
+"29\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "If Text1 > Text2 the function returns 1"
+msgstr "Rezultati i funksionit nëse një test llogjik përgjigjet SAKTË."
-#: 03090103.xhp
+#: 03120403.xhp
msgctxt ""
-"03090103.xhp\n"
-"par_id3147560\n"
-"4\n"
+"03120403.xhp\n"
+"hd_id3153968\n"
+"18\n"
"help.text"
-msgid "IIf (Expression, ExpressionTrue, ExpressionFalse)"
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03090103.xhp
+#: 03130000.xhp
msgctxt ""
-"03090103.xhp\n"
-"hd_id3150541\n"
-"5\n"
+"03130000.xhp\n"
+"tit\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Other Commands"
+msgstr "Format tjetër"
-#: 03090103.xhp
+#: 03130000.xhp
msgctxt ""
-"03090103.xhp\n"
-"par_id3153381\n"
-"6\n"
+"03130000.xhp\n"
+"hd_id3156027\n"
+"1\n"
"help.text"
-msgid "<emph>Expression:</emph> Any expression that you want to evaluate. If the expression evaluates to <emph>True</emph>, the function returns the result of ExpressionTrue, otherwise it returns the result of ExpressionFalse."
+msgid "<link href=\"text/sbasic/shared/03130000.xhp\" name=\"Other Commands\">Other Commands</link>"
msgstr ""
-#: 03090103.xhp
+#: 03130000.xhp
msgctxt ""
-"03090103.xhp\n"
-"par_id3150870\n"
-"7\n"
+"03130000.xhp\n"
+"par_id3153312\n"
+"2\n"
"help.text"
-msgid "<emph>ExpressionTrue, ExpressionFalse:</emph> Any expression, one of which will be returned as the function result, depending on the logical evaluation."
+msgid "This is a list of the functions and the statements that are not included in the other categories."
msgstr ""
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
+"03130100.xhp\n"
"tit\n"
"help.text"
-msgid "Switch Function [Runtime]"
+msgid "Beep Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"bm_id3148554\n"
+"03130100.xhp\n"
+"bm_id3143284\n"
"help.text"
-msgid "<bookmark_value>Switch function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>Beep statement</bookmark_value>"
+msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"hd_id3148554\n"
+"03130100.xhp\n"
+"hd_id3143284\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090410.xhp\" name=\"Switch Function [Runtime]\">Switch Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep Statement [Runtime]\">Beep Statement [Runtime]</link>"
msgstr ""
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"par_id3148522\n"
+"03130100.xhp\n"
+"par_id3159201\n"
"2\n"
"help.text"
-msgid "Evaluates a list of arguments, consisting of an expression followed by a value. The Switch function returns a value that is associated with the expression that is passed by this function."
+msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
msgstr ""
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"hd_id3154863\n"
+"03130100.xhp\n"
+"hd_id3153990\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"par_id3155934\n"
+"03130100.xhp\n"
+"par_id3147291\n"
"4\n"
"help.text"
-msgid "Switch (Expression1, Value1[, Expression2, Value2[..., Expression_n, Value_n]])"
+msgid "Beep"
msgstr ""
-#: 03090410.xhp
+#: 03130100.xhp
msgctxt ""
-"03090410.xhp\n"
-"hd_id3149119\n"
+"03130100.xhp\n"
+"hd_id3148538\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3153894\n"
-"6\n"
-"help.text"
-msgid "The <emph>Switch</emph> function evaluates the expressions from left to right, and then returns the value that is assigned to the function expression. If expression and value are not given as a pair, a runtime error occurs."
-msgstr ""
-
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3153990\n"
-"7\n"
-"help.text"
-msgid "<emph>Expression:</emph> The expression that you want to evaluate."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
-
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3153394\n"
-"8\n"
-"help.text"
-msgid "<emph>Value:</emph> The value that you want to return if the expression is True."
-msgstr ""
-
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3153346\n"
-"9\n"
-"help.text"
-msgid "In the following example, the <emph>Switch</emph> function assigns the appropriate gender to the name that is passed to the function:"
-msgstr ""
-
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"hd_id3159157\n"
-"10\n"
-"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03090410.xhp
-msgctxt ""
-"03090410.xhp\n"
-"par_id3149579\n"
-"13\n"
-"help.text"
-msgid "sGender = GetGenderIndex( \"John\" )"
-msgstr ""
-
-#: 03090410.xhp
+#: 03130500.xhp
msgctxt ""
-"03090410.xhp\n"
-"par_id3153361\n"
-"18\n"
+"03130500.xhp\n"
+"tit\n"
"help.text"
-msgid "GetGenderIndex = Switch(sName = \"Jane\", \"female\", sName = \"John\", \"male\")"
-msgstr ""
+msgid "Shell Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"tit\n"
+"03130500.xhp\n"
+"bm_id3150040\n"
"help.text"
-msgid "QBColor Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "<bookmark_value>Shell function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"hd_id3149670\n"
+"03130500.xhp\n"
+"hd_id3150040\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010304.xhp\" name=\"QBColor Function [Runtime]\">QBColor Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03130500.xhp\" name=\"Shell Function [Runtime]\">Shell Function [Runtime]</link>"
msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3150359\n"
+"03130500.xhp\n"
+"par_id3153394\n"
"2\n"
"help.text"
-msgid "Returns the <link href=\"text/sbasic/shared/03010305.xhp\" name=\"RGB\">RGB</link> color code of the color passed as a color value through an older MS-DOS based programming system."
+msgid "Starts another application and defines the respective window style, if necessary."
msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"hd_id3154140\n"
-"3\n"
+"03130500.xhp\n"
+"hd_id3153345\n"
+"4\n"
"help.text"
-msgid "Syntax:"
+msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3151042\n"
-"4\n"
+"03130500.xhp\n"
+"par_id3147576\n"
+"5\n"
"help.text"
-msgid "QBColor (ColorNumber As Integer)"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "Shell (Pathname As String[, Windowstyle As Integer][, Param As String][, bSync])"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"hd_id3145172\n"
-"5\n"
+"03130500.xhp\n"
+"hd_id3149235\n"
+"6\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameter"
+msgstr "Parametri i sllajdit"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3154685\n"
-"6\n"
+"03130500.xhp\n"
+"hd_id3154306\n"
+"23\n"
"help.text"
-msgid "Long"
-msgstr "Standard (e gjatë)"
+msgid "Pathname"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"hd_id3156560\n"
+"03130500.xhp\n"
+"par_id3155419\n"
"7\n"
"help.text"
-msgid "Parameter:"
-msgstr "Parametri i sllajdit"
+msgid "Complete path and program name of the program that you want to start."
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3161832\n"
-"8\n"
+"03130500.xhp\n"
+"hd_id3150771\n"
+"24\n"
"help.text"
-msgid "<emph>ColorNumber</emph>: Any integer expression that specifies the color value of the color passed from an older MS-DOS based programming system."
+msgid "Windowstyle"
msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3147318\n"
-"9\n"
+"03130500.xhp\n"
+"par_id3145609\n"
+"8\n"
"help.text"
-msgid "<emph>ColorNumber</emph> can be assigned the following values:"
+msgid "Optional integer expression that specifies the style of the window that the program is executed in. The following values are possible:"
msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3152576\n"
-"10\n"
+"03130500.xhp\n"
+"par_id3148663\n"
+"25\n"
"help.text"
-msgid "0 : Black"
-msgstr "Zi"
+msgid "0"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3146975\n"
-"11\n"
+"03130500.xhp\n"
+"par_id3153360\n"
+"10\n"
"help.text"
-msgid "1 : Blue"
-msgstr "Kaltër"
+msgid "The focus is on the hidden program window."
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3151116\n"
-"12\n"
+"03130500.xhp\n"
+"par_id3154123\n"
+"26\n"
"help.text"
-msgid "2 : Green"
-msgstr "Gjelbërt"
+msgid "1"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3155412\n"
-"13\n"
+"03130500.xhp\n"
+"par_id3144760\n"
+"11\n"
"help.text"
-msgid "3 : Cyan"
-msgstr "Cian"
+msgid "The focus is on the program window in standard size."
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3155306\n"
-"14\n"
+"03130500.xhp\n"
+"par_id3156422\n"
+"27\n"
"help.text"
-msgid "4 : Red"
-msgstr "Kuq"
+msgid "2"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3153364\n"
-"15\n"
+"03130500.xhp\n"
+"par_id3148451\n"
+"12\n"
"help.text"
-msgid "5 : Magenta"
-msgstr "Magjenta"
+msgid "The focus is on the minimized program window."
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3146119\n"
-"16\n"
+"03130500.xhp\n"
+"par_id3149561\n"
+"28\n"
"help.text"
-msgid "6 : Yellow"
-msgstr "Verdhë"
+msgid "3"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3154730\n"
-"17\n"
+"03130500.xhp\n"
+"par_id3146921\n"
+"13\n"
"help.text"
-msgid "7 : White"
-msgstr "Bardhë"
+msgid "focus is on the maximized program window."
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3153877\n"
-"18\n"
+"03130500.xhp\n"
+"par_id3149481\n"
+"29\n"
"help.text"
-msgid "8 : Gray"
-msgstr "Ngjyrë hiri"
+msgid "4"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3147124\n"
-"19\n"
+"03130500.xhp\n"
+"par_id3155854\n"
+"14\n"
"help.text"
-msgid "9 : Light Blue"
-msgstr "Kaltërt e çiltër"
+msgid "Standard size program window, without focus."
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3145646\n"
-"20\n"
+"03130500.xhp\n"
+"par_id3145271\n"
+"30\n"
"help.text"
-msgid "10 : Light Green"
-msgstr "Indeksi 10 i shfrytëzuesit"
+msgid "6"
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3149958\n"
-"21\n"
+"03130500.xhp\n"
+"par_id3152938\n"
+"15\n"
"help.text"
-msgid "11 : Light Cyan"
-msgstr "Mbushja e rezervuar për 11"
+msgid "Minimized program window, focus remains on the active window."
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3154943\n"
-"22\n"
+"03130500.xhp\n"
+"par_id3146119\n"
+"31\n"
"help.text"
-msgid "12 : Light Red"
-msgstr "Yll 12-cepësh"
+msgid "10"
+msgstr "Titullimi 10"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3150715\n"
-"23\n"
+"03130500.xhp\n"
+"par_id3151112\n"
+"16\n"
"help.text"
-msgid "13 : Light Magenta"
-msgstr "13:45;13:45:00;01:45 PM;01:45:00 PM"
+msgid "Full-screen display."
+msgstr "Shkallëzo Shfaqjen e Ekranit"
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3146970\n"
-"24\n"
+"03130500.xhp\n"
+"hd_id3150419\n"
+"33\n"
"help.text"
-msgid "14 : Light Yellow"
+msgid "Param"
msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3150750\n"
-"25\n"
+"03130500.xhp\n"
+"par_id3149412\n"
+"17\n"
"help.text"
-msgid "15 : Bright White"
-msgstr "Bardh e zi"
+msgid "Any string expression that specifies the command line that want to pass."
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3146914\n"
-"26\n"
+"03130500.xhp\n"
+"hd_id3148456\n"
+"32\n"
"help.text"
-msgid "This function is used only to convert from older MS-DOS based BASIC applications that use the above color codes. The function returns a long integer value indicating the color to be used in the $[officename] IDE."
+msgid "bSync"
msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"hd_id3148406\n"
-"27\n"
+"03130500.xhp\n"
+"par_id3154096\n"
+"18\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "If this value is set to <emph>true</emph>, the <emph>Shell</emph> command and all $[officename] tasks wait until the shell process completes. If the value is set to <emph>false</emph>, the shell returns directly. The default value is <emph>false</emph>."
+msgstr ""
-#: 03010304.xhp
+#: 03130500.xhp
msgctxt ""
-"03010304.xhp\n"
-"par_id3149566\n"
-"33\n"
+"03130500.xhp\n"
+"hd_id3154270\n"
+"19\n"
"help.text"
-msgid "MsgBox stext,0,\"Color \" & iColor"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
+"03130600.xhp\n"
"tit\n"
"help.text"
-msgid "WeekDay Function [Runtime]"
+msgid "Wait Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"bm_id3153127\n"
+"03130600.xhp\n"
+"bm_id3154136\n"
"help.text"
-msgid "<bookmark_value>WeekDay function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>Wait statement</bookmark_value>"
+msgstr "Vlera #1 nuk mund të përdoret me LIKE!"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"hd_id3153127\n"
+"03130600.xhp\n"
+"hd_id3154136\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030105.xhp\" name=\"WeekDay Function [Runtime]\">WeekDay Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait Statement [Runtime]\">Wait Statement [Runtime]</link>"
msgstr ""
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3146795\n"
+"03130600.xhp\n"
+"par_id3149236\n"
"2\n"
"help.text"
-msgid "Returns the number corresponding to the weekday represented by a serial date number that is generated by the DateSerial or the DateValue function."
+msgid "Interrupts the program execution for the amount of time that you specify in milliseconds."
msgstr ""
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"hd_id3145068\n"
+"03130600.xhp\n"
+"hd_id3143229\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3149655\n"
+"03130600.xhp\n"
+"par_id3150669\n"
"4\n"
"help.text"
-msgid "WeekDay (Number)"
-msgstr "Numri i faqes"
+msgid "Wait millisec"
+msgstr "Ju lutem pritni"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"hd_id3148799\n"
+"03130600.xhp\n"
+"hd_id3148943\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Parameters:"
+msgstr "Parametrat animues"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3154125\n"
+"03130600.xhp\n"
+"par_id3154924\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "<emph>millisec:</emph> Numeric expression that contains the amount of time (in milliseconds) to wait before the program is executed."
+msgstr ""
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"hd_id3150768\n"
+"03130600.xhp\n"
+"hd_id3150541\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03030105.xhp
-msgctxt ""
-"03030105.xhp\n"
-"par_id3151042\n"
-"8\n"
-"help.text"
-msgid "<emph>Number:</emph> Integer expression that contains the serial date number that is used to calculate the day of the week (1-7)."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03030105.xhp
+#: 03130600.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3159254\n"
-"9\n"
+"03130600.xhp\n"
+"par_id3156214\n"
+"13\n"
"help.text"
-msgid "The following example determines the day of the week using the WeekDay function when you enter a date."
+msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
msgstr ""
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"hd_id3148616\n"
-"10\n"
+"03130700.xhp\n"
+"tit\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "GetSystemTicks Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3148576\n"
-"13\n"
+"03130700.xhp\n"
+"bm_id3147143\n"
"help.text"
-msgid "' Return And display the day of the week"
-msgstr ""
+msgid "<bookmark_value>GetSystemTicks function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3151117\n"
-"16\n"
+"03130700.xhp\n"
+"hd_id3147143\n"
+"1\n"
"help.text"
-msgid "sDay=\"Sunday\""
+msgid "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"GetSystemTicks Function [Runtime]\">GetSystemTicks Function [Runtime]</link>"
msgstr ""
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3153952\n"
-"18\n"
+"03130700.xhp\n"
+"par_id3153750\n"
+"2\n"
"help.text"
-msgid "sDay=\"Monday\""
+msgid "Returns the number of system ticks provided by the operating system. You can use this function to optimize certain processes."
msgstr ""
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3153157\n"
-"20\n"
+"03130700.xhp\n"
+"hd_id3153311\n"
+"3\n"
"help.text"
-msgid "sDay=\"Tuesday\""
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3154942\n"
-"22\n"
+"03130700.xhp\n"
+"par_id3147242\n"
+"4\n"
"help.text"
-msgid "sDay=\"Wednesday\""
+msgid "GetSystemTicks()"
msgstr ""
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3155416\n"
-"24\n"
+"03130700.xhp\n"
+"hd_id3149233\n"
+"5\n"
"help.text"
-msgid "sDay=\"Thursday\""
-msgstr ""
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3154015\n"
-"26\n"
+"03130700.xhp\n"
+"par_id3149762\n"
+"6\n"
"help.text"
-msgid "sDay=\"Friday\""
-msgstr ""
+msgid "Long"
+msgstr "Standard (e gjatë)"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3153707\n"
-"28\n"
+"03130700.xhp\n"
+"hd_id3156152\n"
+"7\n"
"help.text"
-msgid "sDay=\"Saturday\""
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03030105.xhp
+#: 03130700.xhp
msgctxt ""
-"03030105.xhp\n"
-"par_id3148993\n"
-"30\n"
+"03130700.xhp\n"
+"par_id3154938\n"
+"13\n"
"help.text"
-msgid "MsgBox \"\" + sDay,64,\"Today Is\""
+msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
msgstr ""
#: 03130800.xhp
@@ -33858,3518 +34689,2608 @@ msgctxt ""
msgid "MsgBox \"'\" & sTemp & \"'\" ,64,\"Directory of temporary files:\""
msgstr ""
-#: 03020200.xhp
-msgctxt ""
-"03020200.xhp\n"
-"tit\n"
-"help.text"
-msgid "File Input/Output Functions"
-msgstr "Gabim i përgjithshëm në hyrje/dalje"
-
-#: 03020200.xhp
-msgctxt ""
-"03020200.xhp\n"
-"hd_id3150791\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03020200.xhp\" name=\"File Input/Output Functions\">File Input/Output Functions</link>"
-msgstr ""
-
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
+"03131000.xhp\n"
"tit\n"
"help.text"
-msgid "Error Function [Runtime]"
+msgid "GetSolarVersion Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"bm_id3159413\n"
+"03131000.xhp\n"
+"bm_id3157898\n"
"help.text"
-msgid "<bookmark_value>Error function</bookmark_value>"
-msgstr "E kthen funksionin gabim plotwsues"
+msgid "<bookmark_value>GetSolarVersion function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"hd_id3159413\n"
+"03131000.xhp\n"
+"hd_id3157898\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050300.xhp\" name=\"Error Function [Runtime]\">Error Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03131000.xhp\" name=\"GetSolarVersion Function [Runtime]\">GetSolarVersion Function [Runtime]</link>"
msgstr ""
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"par_id3148663\n"
+"03131000.xhp\n"
+"par_id3152801\n"
"2\n"
"help.text"
-msgid "Returns the error message that corresponds to a given error code."
+msgid "Returns the internal number of the current $[officename] version."
msgstr ""
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"hd_id3153379\n"
+"03131000.xhp\n"
+"hd_id3153311\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"par_id3154366\n"
+"03131000.xhp\n"
+"par_id3155388\n"
"4\n"
"help.text"
-msgid "Error (Expression)"
-msgstr "Shprehje e rezervuar"
+msgid "s = GetSolarVersion"
+msgstr ""
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"hd_id3145173\n"
+"03131000.xhp\n"
+"hd_id3149514\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"par_id3154125\n"
+"03131000.xhp\n"
+"par_id3148685\n"
"6\n"
"help.text"
msgid "String"
msgstr "Varg"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"hd_id3150869\n"
+"03131000.xhp\n"
+"hd_id3143270\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03050300.xhp
-msgctxt ""
-"03050300.xhp\n"
-"par_id3153193\n"
-"8\n"
-"help.text"
-msgid "<emph>Expression:</emph> Any numeric expression that contains the error code of the error message that you want to return."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03050300.xhp
+#: 03131000.xhp
msgctxt ""
-"03050300.xhp\n"
-"par_id3159254\n"
-"9\n"
+"03131000.xhp\n"
+"par_id3148947\n"
+"11\n"
"help.text"
-msgid "If no parameters are passed, the Error function returns the error message of the most recent error that occurred during program execution."
+msgid "MsgBox sSep,64,\"Version number of the solar technology\""
msgstr ""
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
+"03131300.xhp\n"
"tit\n"
"help.text"
-msgid "RmDir Statement [Runtime]"
+msgid "TwipsPerPixelX Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
-"bm_id3148947\n"
+"03131300.xhp\n"
+"bm_id3153539\n"
"help.text"
-msgid "<bookmark_value>RmDir statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+msgid "<bookmark_value>TwipsPerPixelX function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
-"hd_id3148947\n"
+"03131300.xhp\n"
+"hd_id3153539\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020413.xhp\" name=\"RmDir Statement [Runtime]\">RmDir Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03131300.xhp\" name=\"TwipsPerPixelX Function [Runtime]\">TwipsPerPixelX Function [Runtime]</link>"
msgstr ""
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
-"par_id3149457\n"
+"03131300.xhp\n"
+"par_id3153394\n"
"2\n"
"help.text"
-msgid "Deletes an existing directory from a data medium."
+msgid "Returns the number of twips that represent the width of a pixel."
msgstr ""
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
-"hd_id3153361\n"
+"03131300.xhp\n"
+"hd_id3153527\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
-"par_id3154367\n"
+"03131300.xhp\n"
+"par_id3151110\n"
"4\n"
"help.text"
-msgid "RmDir Text As String"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "n = TwipsPerPixelX"
+msgstr ""
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
-"hd_id3156281\n"
+"03131300.xhp\n"
+"hd_id3150669\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
-"par_id3151042\n"
+"03131300.xhp\n"
+"par_id3150503\n"
"6\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that specifies the name and path of the directory that you want to delete. You can also use <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
-msgstr ""
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
-"par_id3153192\n"
+"03131300.xhp\n"
+"hd_id3159176\n"
"7\n"
"help.text"
-msgid "If the path is not determined, the <emph>RmDir Statement</emph> searches for the directory that you want to delete in the current path. If it is not found there, an error message appears."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03020413.xhp
+#: 03131300.xhp
msgctxt ""
-"03020413.xhp\n"
-"hd_id3145271\n"
-"8\n"
+"03131300.xhp\n"
+"par_id3153061\n"
+"9\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
+msgstr ""
-#: 03020302.xhp
+#: 03131400.xhp
msgctxt ""
-"03020302.xhp\n"
+"03131400.xhp\n"
"tit\n"
"help.text"
-msgid "Loc Function [Runtime]"
+msgid "TwipsPerPixelY Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020302.xhp
+#: 03131400.xhp
msgctxt ""
-"03020302.xhp\n"
-"bm_id3148663\n"
+"03131400.xhp\n"
+"bm_id3150040\n"
"help.text"
-msgid "<bookmark_value>Loc function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>TwipsPerPixelY function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03020302.xhp
+#: 03131400.xhp
msgctxt ""
-"03020302.xhp\n"
-"hd_id3148663\n"
+"03131400.xhp\n"
+"hd_id3150040\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020302.xhp\" name=\"Loc Function [Runtime]\">Loc Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03131400.xhp\" name=\"TwipsPerPixelY Function [Runtime]\">TwipsPerPixelY Function [Runtime]</link>"
msgstr ""
-#: 03020302.xhp
+#: 03131400.xhp
msgctxt ""
-"03020302.xhp\n"
-"par_id3154138\n"
+"03131400.xhp\n"
+"par_id3154186\n"
"2\n"
"help.text"
-msgid "Returns the current position in an open file."
+msgid "Returns the number of twips that represent the height of a pixel."
msgstr ""
-#: 03020302.xhp
+#: 03131400.xhp
msgctxt ""
-"03020302.xhp\n"
-"hd_id3156422\n"
+"03131400.xhp\n"
+"hd_id3145090\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03020302.xhp
+#: 03131400.xhp
msgctxt ""
-"03020302.xhp\n"
-"par_id3150768\n"
+"03131400.xhp\n"
+"par_id3153681\n"
"4\n"
"help.text"
-msgid "Loc(FileNumber)"
-msgstr "~Kërkim i Qëllimit..."
+msgid "n = TwipsPerPixelY"
+msgstr ""
-#: 03020302.xhp
+#: 03131400.xhp
msgctxt ""
-"03020302.xhp\n"
-"hd_id3150440\n"
+"03131400.xhp\n"
+"hd_id3148473\n"
"5\n"
"help.text"
msgid "Return value:"
msgstr "Vlerë absolute"
-#: 03020302.xhp
+#: 03131400.xhp
msgctxt ""
-"03020302.xhp\n"
-"par_id3152578\n"
+"03131400.xhp\n"
+"par_id3154306\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Standard (e gjatë)"
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 03020302.xhp
+#: 03131400.xhp
msgctxt ""
-"03020302.xhp\n"
-"hd_id3152462\n"
+"03131400.xhp\n"
+"hd_id3149235\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"par_id3153363\n"
-"8\n"
-"help.text"
-msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is set by the Open statement for the respective file."
-msgstr ""
-
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"par_id3154320\n"
-"9\n"
-"help.text"
-msgid "If the Loc function is used for an open random access file, it returns the number of the last record that was last read or written."
-msgstr ""
-
-#: 03020302.xhp
-msgctxt ""
-"03020302.xhp\n"
-"par_id3151115\n"
-"10\n"
-"help.text"
-msgid "For a sequential file, the Loc function returns the position in a file divided by 128. For binary files, the position of the last read or written byte is returned."
-msgstr ""
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"tit\n"
-"help.text"
-msgid "DefErr Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"bm_id8177739\n"
-"help.text"
-msgid "<bookmark_value>DefErr statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN1057D\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101120.xhp\">DefErr Statement [Runtime]</link>"
-msgstr ""
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN1058D\n"
-"help.text"
-msgid "If no type-declaration character or keyword is specified, the DefErr statement sets the default variable type, according to a letter range."
-msgstr ""
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10594\n"
-"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN10597\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN1059B\n"
-"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
-msgstr ""
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105A2\n"
-"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
-msgstr ""
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105A9\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "**Ndryshorja nuk u gjet**"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105B0\n"
-"help.text"
-msgid "<emph>DefErr:</emph> Error"
-msgstr "Ka ndodhur një gabim i panjohur"
-
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105B7\n"
-"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03101120.xhp
-msgctxt ""
-"03101120.xhp\n"
-"par_idN105BB\n"
-"help.text"
-msgid "' Prefix definitions for variable types:"
-msgstr ""
-
-#: 03101120.xhp
+#: 03131400.xhp
msgctxt ""
-"03101120.xhp\n"
-"par_idN105D9\n"
+"03131400.xhp\n"
+"par_id3154142\n"
+"9\n"
"help.text"
-msgid "eErr=Error ' eErr is an implicit error variable"
+msgid "MsgBox \"\" & TwipsPerPixelX() & \" Twips * \" & TwipsPerPixelY() & \" Twips\",0,\"Pixel size\""
msgstr ""
-#: 03060300.xhp
+#: 03131500.xhp
msgctxt ""
-"03060300.xhp\n"
+"03131500.xhp\n"
"tit\n"
"help.text"
-msgid "Imp-Operator [Runtime]"
+msgid "CreateUnoStruct Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03060300.xhp
+#: 03131500.xhp
msgctxt ""
-"03060300.xhp\n"
-"bm_id3156024\n"
+"03131500.xhp\n"
+"bm_id3150499\n"
"help.text"
-msgid "<bookmark_value>Imp operator (logical)</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>CreateUnoStruct function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03060300.xhp
+#: 03131500.xhp
msgctxt ""
-"03060300.xhp\n"
-"hd_id3156024\n"
+"03131500.xhp\n"
+"hd_id3150499\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03060300.xhp\" name=\"Imp-Operator [Runtime]\">Imp Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03131500.xhp\" name=\"CreateUnoStruct Function [Runtime]\">CreateUnoStruct Function [Runtime]</link>"
msgstr ""
-#: 03060300.xhp
+#: 03131500.xhp
msgctxt ""
-"03060300.xhp\n"
-"par_id3148947\n"
+"03131500.xhp\n"
+"par_id3150713\n"
"2\n"
"help.text"
-msgid "Performs a logical implication on two expressions."
+msgid "<ahelp hid=\".\">Creates an instance of a Uno structure type.</ahelp>"
msgstr ""
-#: 03060300.xhp
+#: 03131500.xhp
msgctxt ""
-"03060300.xhp\n"
-"hd_id3148664\n"
+"03131500.xhp\n"
+"par_id3147226\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Use the following structure for your statement:"
+msgstr ""
-#: 03060300.xhp
+#: 03131500.xhp
msgctxt ""
-"03060300.xhp\n"
-"par_id3149656\n"
+"03131500.xhp\n"
+"par_id3149177\n"
"4\n"
"help.text"
-msgid "Result = Expression1 Imp Expression2"
-msgstr "Gabim: Pa rezultat"
+msgid "Dim oStruct as new com.sun.star.beans.Property"
+msgstr ""
-#: 03060300.xhp
+#: 03131500.xhp
msgctxt ""
-"03060300.xhp\n"
-"hd_id3151212\n"
+"03131500.xhp\n"
+"hd_id3156153\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03060300.xhp
+#: 03131500.xhp
msgctxt ""
-"03060300.xhp\n"
-"par_id3154910\n"
+"03131500.xhp\n"
+"par_id3155341\n"
"6\n"
"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the implication."
+msgid "oStruct = CreateUnoStruct( Uno type name )"
msgstr ""
-#: 03060300.xhp
+#: 03131500.xhp
msgctxt ""
-"03060300.xhp\n"
-"par_id3156281\n"
+"03131500.xhp\n"
+"hd_id3145316\n"
"7\n"
"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any expressions that you want to evaluate with the Imp operator."
-msgstr ""
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3150440\n"
-"8\n"
-"help.text"
-msgid "If you use the Imp operator in Boolean expressions, False is only returned if the first expression evaluates to True and the second expression to False."
-msgstr ""
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"par_id3163710\n"
-"9\n"
-"help.text"
-msgid "If you use the Imp operator in bit expressions, a bit is deleted from the result if the corresponding bit is set in the first expression and the corresponding bit is deleted in the second expression."
-msgstr ""
-
-#: 03060300.xhp
-msgctxt ""
-"03060300.xhp\n"
-"hd_id3147318\n"
-"10\n"
-"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03060300.xhp
-#, fuzzy
-msgctxt ""
-"03060300.xhp\n"
-"par_id3145750\n"
-"15\n"
-"help.text"
-msgid "vOut = A > B Imp B > C ' returns -1"
-msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-
-#: 03060300.xhp
-#, fuzzy
-msgctxt ""
-"03060300.xhp\n"
-"par_id3156441\n"
-"16\n"
-"help.text"
-msgid "vOut = B > A Imp B > C ' returns -1"
-msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-
-#: 03060300.xhp
-#, fuzzy
-msgctxt ""
-"03060300.xhp\n"
-"par_id3152596\n"
-"17\n"
-"help.text"
-msgid "vOut = A > B Imp B > D ' returns 0"
-msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-
-#: 03060300.xhp
-#, fuzzy
-msgctxt ""
-"03060300.xhp\n"
-"par_id3154942\n"
-"18\n"
-"help.text"
-msgid "vOut = (B > D Imp B > A) ' returns -1"
-msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-
-#: 03060300.xhp
-#, fuzzy
-msgctxt ""
-"03060300.xhp\n"
-"par_id3154492\n"
-"19\n"
-"help.text"
-msgid "vOut = B Imp A ' returns -1"
-msgstr "Kthen një numër të rastësishëm mes 0 dhe 1."
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"tit\n"
-"help.text"
-msgid "CVar Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"bm_id2338633\n"
-"help.text"
-msgid "<bookmark_value>CVar function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1054B\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03100070.xhp\">CVar Function [Runtime]</link>"
-msgstr ""
-
-#: 03100070.xhp
+#: 03131500.xhp
msgctxt ""
-"03100070.xhp\n"
-"par_idN1055B\n"
+"03131500.xhp\n"
+"par_id3149762\n"
+"8\n"
"help.text"
-msgid "Converts a string expression or numeric expression to a variant expression."
+msgid "oStruct = CreateUnoStruct( \"com.sun.star.beans.Property\" )"
msgstr ""
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1055E\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10562\n"
-"help.text"
-msgid "CVar(Expression)"
-msgstr "Shprehje e rezervuar"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10565\n"
-"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10569\n"
-"help.text"
-msgid "Variant."
-msgstr "Zgjedhni një variantë"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN1056C\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Parametri i sllajdit"
-
-#: 03100070.xhp
-msgctxt ""
-"03100070.xhp\n"
-"par_idN10570\n"
-"help.text"
-msgid "Expression: Any string or numeric expression that you want to convert."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
-
-#: 03070600.xhp
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
+"03131600.xhp\n"
"tit\n"
"help.text"
-msgid "Mod-Operator [Runtime]"
+msgid "CreateUnoService Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03070600.xhp
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
-"bm_id3150669\n"
+"03131600.xhp\n"
+"bm_id3150682\n"
"help.text"
-msgid "<bookmark_value>MOD operator (mathematical)</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>CreateUnoService function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03070600.xhp
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
-"hd_id3150669\n"
+"03131600.xhp\n"
+"hd_id3150682\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03070600.xhp\" name=\"Mod-Operator [Runtime]\">Mod Operator [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03131600.xhp\" name=\"CreateUnoService Function [Runtime]\">CreateUnoService Function [Runtime]</link>"
msgstr ""
-#: 03070600.xhp
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
-"par_id3148686\n"
+"03131600.xhp\n"
+"par_id3152924\n"
"2\n"
"help.text"
-msgid "Returns the integer remainder of a division."
-msgstr "E kthen pjeswn integjere tw pjeswtimit"
+msgid "Instantiates a Uno service with the ProcessServiceManager."
+msgstr ""
-#: 03070600.xhp
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
-"hd_id3146795\n"
+"03131600.xhp\n"
+"hd_id3152801\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03070600.xhp
+#: 03131600.xhp
msgctxt ""
-"03070600.xhp\n"
-"par_id3147560\n"
+"03131600.xhp\n"
+"par_id3153346\n"
"4\n"
"help.text"
-msgid "Result = Expression1 MOD Expression2"
-msgstr "Gabim: Pa rezultat"
-
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3149657\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
-
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3153380\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
-
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3154365\n"
-"7\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3145172\n"
-"8\n"
-"help.text"
-msgid "<emph>Result:</emph> Any numeric variable that contains the result of the MOD operation."
+msgid "oService = CreateUnoService( Uno service name )"
msgstr ""
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"par_id3151042\n"
-"9\n"
-"help.text"
-msgid "<emph>Expression1, Expression2:</emph> Any numeric expressions that you want to divide."
-msgstr "Llogarit gjatësinë e një vargu tekstual."
-
-#: 03070600.xhp
-msgctxt ""
-"03070600.xhp\n"
-"hd_id3147287\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03070600.xhp
-#, fuzzy
-msgctxt ""
-"03070600.xhp\n"
-"par_id3161832\n"
-"12\n"
-"help.text"
-msgid "Print 10 Mod 2.5 ' returns 0"
-msgstr "E kthen llogaritmin base-10 tw numrit kompleks"
-
-#: 03070600.xhp
-#, fuzzy
-msgctxt ""
-"03070600.xhp\n"
-"par_id3146922\n"
-"13\n"
-"help.text"
-msgid "Print 10 / 2.5 ' returns 4"
-msgstr "E kthen llogaritmin base-10 tw numrit kompleks"
-
-#: 03070600.xhp
-#, fuzzy
-msgctxt ""
-"03070600.xhp\n"
-"par_id3145273\n"
-"14\n"
-"help.text"
-msgid "Print 10 Mod 5 ' returns 0"
-msgstr "E kthen llogaritmin base-10 tw numrit kompleks"
-
-#: 03070600.xhp
-#, fuzzy
-msgctxt ""
-"03070600.xhp\n"
-"par_id3150011\n"
-"15\n"
-"help.text"
-msgid "Print 10 / 5 ' returns 2"
-msgstr "E kthen llogaritmin base-10 tw numrit kompleks"
-
-#: 03070600.xhp
-#, fuzzy
-msgctxt ""
-"03070600.xhp\n"
-"par_id3149483\n"
-"16\n"
-"help.text"
-msgid "Print 5 Mod 10 ' returns 5"
-msgstr "E kthen llogaritmin base-10 tw numrit kompleks"
-
-#: 03070600.xhp
-#, fuzzy
-msgctxt ""
-"03070600.xhp\n"
-"par_id3151114\n"
-"17\n"
-"help.text"
-msgid "Print 5 / 10 ' returns 0.5"
-msgstr "E kthen llogaritmin base-10 tw numrit kompleks"
-
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"tit\n"
-"help.text"
-msgid "FileCopy Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"bm_id3154840\n"
-"help.text"
-msgid "<bookmark_value>FileCopy statement</bookmark_value>"
-msgstr "Veprimi përfundoi [Time]: [1]. Vlera kthyese [2]."
-
-#: 03020406.xhp
+#: 03131600.xhp
msgctxt ""
-"03020406.xhp\n"
-"hd_id3154840\n"
-"1\n"
+"03131600.xhp\n"
+"par_idN1060F\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020406.xhp\" name=\"FileCopy Statement [Runtime]\">FileCopy Statement [Runtime]</link>"
+msgid "For a list of available services, go to: http://api.libreoffice.org/docs/common/ref/com/sun/star/module-ix.html"
msgstr ""
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"par_id3149497\n"
-"2\n"
-"help.text"
-msgid "Copies a file."
-msgstr "Emri i fajllit"
-
-#: 03020406.xhp
+#: 03131600.xhp
msgctxt ""
-"03020406.xhp\n"
-"hd_id3147443\n"
-"3\n"
+"03131600.xhp\n"
+"hd_id3151111\n"
+"5\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Examples:"
+msgstr "Shembuj:"
-#: 03020406.xhp
+#: 03131600.xhp
msgctxt ""
-"03020406.xhp\n"
-"par_id3146957\n"
-"4\n"
+"03131600.xhp\n"
+"par_id3154046\n"
+"6\n"
"help.text"
-msgid "FileCopy TextFrom As String, TextTo As String"
+msgid "oIntrospection = CreateUnoService( \"com.sun.star.beans.Introspection\" )"
msgstr ""
-#: 03020406.xhp
-msgctxt ""
-"03020406.xhp\n"
-"hd_id3153825\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03020406.xhp
+#: 03131600.xhp
msgctxt ""
-"03020406.xhp\n"
-"par_id3155390\n"
-"6\n"
+"03131600.xhp\n"
+"bm_id8334604\n"
"help.text"
-msgid "<emph>TextFrom:</emph> Any string expression that specifies the name of the file that you want to copy. The expression can contain optional path and drive information. If you want, you can enter a path in <link href=\"text/sbasic/shared/00000002.xhp\" name=\"URL notation\">URL notation</link>."
+msgid "<bookmark_value>filepicker;API service</bookmark_value>"
msgstr ""
-#: 03020406.xhp
+#: 03131600.xhp
msgctxt ""
-"03020406.xhp\n"
-"par_id3150669\n"
-"7\n"
+"03131600.xhp\n"
+"par_idN10625\n"
"help.text"
-msgid "<emph>TextTo:</emph> Any string expression that specifies where you want to copy the source file to. The expression can contain the destination drive, the path, and file name, or the path in URL notation."
+msgid "The following code uses a service to open a file open dialog:"
msgstr ""
-#: 03020406.xhp
+#: 03131600.xhp
msgctxt ""
-"03020406.xhp\n"
-"par_id3150791\n"
-"8\n"
+"03131600.xhp\n"
+"par_idN1062B\n"
"help.text"
-msgid "You can only use the FileCopy statement to copy files that are not opened."
+msgid "fName = FileOpenDialog (\"Please select a file\")"
msgstr ""
-#: 03020406.xhp
+#: 03131600.xhp
msgctxt ""
-"03020406.xhp\n"
-"hd_id3125863\n"
-"9\n"
+"03131600.xhp\n"
+"par_idN10630\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Print \"file chosen: \"+fName"
+msgstr ""
-#: 03101500.xhp
+#: 03131700.xhp
msgctxt ""
-"03101500.xhp\n"
+"03131700.xhp\n"
"tit\n"
"help.text"
-msgid "DefInt Statement [Runtime]"
+msgid "GetProcessServiceManager Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03101500.xhp
+#: 03131700.xhp
msgctxt ""
-"03101500.xhp\n"
-"bm_id3149811\n"
+"03131700.xhp\n"
+"bm_id3153255\n"
"help.text"
-msgid "<bookmark_value>DefInt statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+msgid "<bookmark_value>GetProcessServiceManager function</bookmark_value><bookmark_value>ProcessServiceManager</bookmark_value>"
+msgstr ""
-#: 03101500.xhp
+#: 03131700.xhp
msgctxt ""
-"03101500.xhp\n"
-"hd_id3149811\n"
+"03131700.xhp\n"
+"hd_id3153255\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03101500.xhp\" name=\"DefInt Statement [Runtime]\">DefInt Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03131700.xhp\" name=\"GetProcessServiceManager Function [Runtime]\">GetProcessServiceManager Function [Runtime]</link>"
msgstr ""
-#: 03101500.xhp
+#: 03131700.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3149762\n"
+"03131700.xhp\n"
+"par_id3156414\n"
"2\n"
"help.text"
-msgid "Sets the default variable type, according to a letter range, if no type-declaration character or keyword is specified."
+msgid "Returns the ProcessServiceManager (central Uno ServiceManager)."
msgstr ""
-#: 03101500.xhp
+#: 03131700.xhp
msgctxt ""
-"03101500.xhp\n"
-"hd_id3148686\n"
+"03131700.xhp\n"
+"par_id3145136\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "This function is required when you want to instantiate a service using CreateInstanceWithArguments."
+msgstr ""
-#: 03101500.xhp
+#: 03131700.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3156023\n"
+"03131700.xhp\n"
+"hd_id3153681\n"
"4\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03101500.xhp
+#: 03131700.xhp
msgctxt ""
-"03101500.xhp\n"
-"hd_id3156344\n"
+"03131700.xhp\n"
+"par_id3151110\n"
"5\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "oServiceManager = GetProcessServiceManager()"
+msgstr ""
-#: 03101500.xhp
+#: 03131700.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3147560\n"
+"03131700.xhp\n"
+"hd_id3149516\n"
"6\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
-msgstr ""
+msgid "Example:"
+msgstr "Shembull"
-#: 03101500.xhp
+#: 03131700.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3150398\n"
+"03131700.xhp\n"
+"par_id3143270\n"
"7\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgid "oServiceManager = GetProcessServiceManager()"
msgstr ""
-#: 03101500.xhp
+#: 03131700.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3154365\n"
+"03131700.xhp\n"
+"par_id3153825\n"
"8\n"
"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "**Ndryshorja nuk u gjet**"
+msgid "oIntrospection = oServiceManager.createInstance(\"com.sun.star.beans.Introspection\");"
+msgstr ""
-#: 03101500.xhp
+#: 03131700.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3125863\n"
+"03131700.xhp\n"
+"par_id3148473\n"
"9\n"
"help.text"
-msgid "<emph>DefInt:</emph> Integer"
-msgstr "Numri i plotë për orë"
-
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"hd_id3154123\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03101500.xhp
-msgctxt ""
-"03101500.xhp\n"
-"par_id3151042\n"
-"12\n"
-"help.text"
-msgid "' Prefix definitions for variable types"
+msgid "this is the same as the following statement:"
msgstr ""
-#: 03101500.xhp
+#: 03131700.xhp
msgctxt ""
-"03101500.xhp\n"
-"par_id3153728\n"
-"22\n"
+"03131700.xhp\n"
+"par_id3145609\n"
+"10\n"
"help.text"
-msgid "iCount=200 ' iCount is an implicit integer variable"
+msgid "oIntrospection = CreateUnoService(\"com.sun.star.beans.Introspection\")"
msgstr ""
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
+"03131800.xhp\n"
"tit\n"
"help.text"
-msgid "Seek Function [Runtime]"
+msgid "CreateUnoDialog Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"bm_id3154367\n"
+"03131800.xhp\n"
+"bm_id3150040\n"
"help.text"
-msgid "<bookmark_value>Seek function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>CreateUnoDialog function</bookmark_value>"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"hd_id3154367\n"
+"03131800.xhp\n"
+"hd_id3150040\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek Function [Runtime]\">Seek Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03131800.xhp\" name=\"CreateUnoDialog Function [Runtime]\">CreateUnoDialog Function [Runtime]</link>"
msgstr ""
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3156280\n"
+"03131800.xhp\n"
+"par_id3154186\n"
"2\n"
"help.text"
-msgid "Returns the position for the next writing or reading in a file that was opened with the open statement."
+msgid "Creates a Basic Uno object that represents a Uno dialog control during Basic runtime."
msgstr ""
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3153194\n"
+"03131800.xhp\n"
+"par_id3153750\n"
"3\n"
"help.text"
-msgid "For random access files, the Seek function returns the number of the next record to be read."
+msgid "Dialogs are defined in the dialog libraries. To display a dialog, a \"live\" dialog must be created from the library."
msgstr ""
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3161831\n"
+"03131800.xhp\n"
+"par_id3153681\n"
"4\n"
"help.text"
-msgid "For all other files, the function returns the byte position at which the next operation is to occur."
+msgid "See <link href=\"text/sbasic/guide/sample_code.xhp\" name=\"Examples\">Examples</link>."
msgstr ""
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3155854\n"
+"03131800.xhp\n"
+"hd_id3154286\n"
"5\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek\">Seek</link>."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"hd_id3152460\n"
+"03131800.xhp\n"
+"par_id3159176\n"
"6\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "CreateUnoDialog( oDlgDesc )"
+msgstr ""
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3145365\n"
+"03131800.xhp\n"
+"hd_id3143270\n"
"7\n"
"help.text"
-msgid "Seek (FileNumber)"
-msgstr "~Kërkim i Qëllimit..."
+msgid "Example:"
+msgstr "Shembull"
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"hd_id3148575\n"
+"03131800.xhp\n"
+"par_id3159157\n"
"8\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "' Get dialog description from the dialog library"
+msgstr ""
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3159156\n"
+"03131800.xhp\n"
+"par_id3149234\n"
"9\n"
"help.text"
-msgid "Long"
-msgstr "Standard (e gjatë)"
+msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
+msgstr ""
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"hd_id3149665\n"
+"03131800.xhp\n"
+"par_id3154923\n"
"10\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "' generate \"live\" dialog"
+msgstr "Gjeneron emrin e fajllit nga"
-#: 03020304.xhp
+#: 03131800.xhp
msgctxt ""
-"03020304.xhp\n"
-"par_id3148645\n"
+"03131800.xhp\n"
+"par_id3149670\n"
"11\n"
"help.text"
-msgid "<emph>FileNumber:</emph> The data channel number used in the Open statement."
+msgid "oDlgControl = CreateUnoDialog( oDlgDesc )"
msgstr ""
-#: 03030202.xhp
+#: 03131800.xhp
msgctxt ""
-"03030202.xhp\n"
+"03131800.xhp\n"
+"par_id3148550\n"
+"12\n"
+"help.text"
+msgid "' display \"live\" dialog"
+msgstr "Paraqit shkronjat e lëshuara"
+
+#: 03131800.xhp
+msgctxt ""
+"03131800.xhp\n"
+"par_id3154072\n"
+"13\n"
+"help.text"
+msgid "oDlgControl.execute"
+msgstr "Ekzektuto Makron"
+
+#: 03131900.xhp
+msgctxt ""
+"03131900.xhp\n"
"tit\n"
"help.text"
-msgid "Minute Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "GlobalScope [Runtime]"
+msgstr "Gabim nw kohw: #"
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"bm_id3155419\n"
+"03131900.xhp\n"
+"bm_id3150682\n"
"help.text"
-msgid "<bookmark_value>Minute function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>GlobalScope function</bookmark_value><bookmark_value>library systems</bookmark_value><bookmark_value>LibraryContainer</bookmark_value><bookmark_value>BasicLibraries (LibraryContainer)</bookmark_value><bookmark_value>DialogLibraries (LibraryContainer)</bookmark_value>"
+msgstr ""
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"hd_id3155419\n"
+"03131900.xhp\n"
+"hd_id3150682\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030202.xhp\" name=\"Minute Function [Runtime]\">Minute Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03131900.xhp\" name=\"GlobalScope [Runtime]\">GlobalScope [Runtime]</link>"
msgstr ""
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3156344\n"
+"03131900.xhp\n"
+"par_id3153345\n"
"2\n"
"help.text"
-msgid "Returns the minute of the hour that corresponds to the serial time value that is generated by the TimeSerial or the TimeValue function."
+msgid "Basic source code and dialogs are organized in a library system."
msgstr ""
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"hd_id3154758\n"
+"03131900.xhp\n"
+"par_id3145315\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "The LibraryContainer contains libraries"
+msgstr "Biblioteka themelore %PRODUCTNAME"
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3149656\n"
+"03131900.xhp\n"
+"par_id3149514\n"
"4\n"
"help.text"
-msgid "Minute (Number)"
-msgstr "Numri i faqes"
+msgid "Libraries can contain modules and dialogs"
+msgstr ""
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"hd_id3148798\n"
+"03131900.xhp\n"
+"hd_id3143271\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "In Basic:"
+msgstr "IDE Bazike"
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3150449\n"
+"03131900.xhp\n"
+"par_id3153061\n"
"6\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "The LibraryContainer is called <emph>BasicLibraries</emph>."
+msgstr ""
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"hd_id3153193\n"
+"03131900.xhp\n"
+"hd_id3154346\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "In dialogs:"
+msgstr "Organizo ~dialogjet"
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3153969\n"
+"03131900.xhp\n"
+"par_id3148663\n"
"8\n"
"help.text"
-msgid "<emph>Number:</emph> Numeric expression that contains the serial time value that is used to return the minute value."
+msgid "The LibraryContainer is called <emph>DialogLibraries</emph>."
msgstr ""
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3150869\n"
+"03131900.xhp\n"
+"par_id3150543\n"
"9\n"
"help.text"
-msgid "This function is the opposite of the <emph>TimeSerial </emph>function. It returns the minute of the serial time value that is generated by the <emph>TimeSerial</emph> or the <emph>TimeValue </emph>function. For example, the expression:"
+msgid "Both LibraryContainers exist in an application level and within every document. In the document Basic, the document's LibraryContainers are called automatically. If you want to call the global LibraryContainers from within a document, you must use the keyword <emph>GlobalScope</emph>."
msgstr ""
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3149262\n"
+"03131900.xhp\n"
+"hd_id3148920\n"
"10\n"
"help.text"
-msgid "Print Minute(TimeSerial(12,30,41))"
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3148576\n"
+"03131900.xhp\n"
+"par_id3149203\n"
"11\n"
"help.text"
-msgid "returns the value 30."
-msgstr "Indeksi i vlerës (1..30) së selektuar."
+msgid "GlobalScope"
+msgstr ""
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"hd_id3150010\n"
+"03131900.xhp\n"
+"hd_id3154685\n"
"12\n"
"help.text"
msgid "Example:"
msgstr "Shembull"
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3159154\n"
+"03131900.xhp\n"
+"par_id3154124\n"
"13\n"
"help.text"
-msgid "Sub ExampleMinute"
-msgstr "Nën~totalet..."
+msgid "Example in the document Basic"
+msgstr "$(ERR) duke ngarkuar BASIC të dokumentit $(ARG1)"
-#: 03030202.xhp
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3146119\n"
+"03131900.xhp\n"
+"par_id3158408\n"
"14\n"
"help.text"
-msgid "MsgBox \"The current minute is \"& Minute(Now)& \".\""
+msgid "' calling Dialog1 in the document library Standard"
msgstr ""
-#: 03030202.xhp
-#, fuzzy
+#: 03131900.xhp
msgctxt ""
-"03030202.xhp\n"
-"par_id3153726\n"
+"03131900.xhp\n"
+"par_id3125865\n"
"15\n"
"help.text"
-msgid "end sub"
-msgstr "Nën~totalet..."
-
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Option Base Statement [Runtime]"
-msgstr ""
-
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"bm_id3155805\n"
-"help.text"
-msgid "<bookmark_value>Option Base statement</bookmark_value>"
-msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
-
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"hd_id3155805\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03103200.xhp\" name=\"Option Base Statement [Runtime]\">Option Base Statement [Runtime]</link>"
+msgid "oDlgDesc = DialogLibraries.Standard.Dialog1"
msgstr ""
-#: 03103200.xhp
+#: 03131900.xhp
msgctxt ""
-"03103200.xhp\n"
-"par_id3147242\n"
-"2\n"
+"03131900.xhp\n"
+"par_id3154910\n"
+"16\n"
"help.text"
-msgid "Defines the default lower boundary for arrays as 0 or 1."
+msgid "' calling Dialog2 in the application library Library1"
msgstr ""
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"hd_id3150771\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"par_id3147573\n"
-"4\n"
-"help.text"
-msgid "Option Base { 0 | 1}"
-msgstr "Madhësia e bazës"
-
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"hd_id3145315\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03103200.xhp
+#: 03131900.xhp
msgctxt ""
-"03103200.xhp\n"
-"par_id3147229\n"
-"6\n"
+"03131900.xhp\n"
+"par_id3156424\n"
+"17\n"
"help.text"
-msgid "This statement must be added before the executable program code in a module."
+msgid "oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2"
msgstr ""
-#: 03103200.xhp
-msgctxt ""
-"03103200.xhp\n"
-"hd_id3150870\n"
-"7\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03080401.xhp
+#: 03132000.xhp
msgctxt ""
-"03080401.xhp\n"
+"03132000.xhp\n"
"tit\n"
"help.text"
-msgid "Sqr Function [Runtime]"
+msgid "CreateUnoListener Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03080401.xhp
+#: 03132000.xhp
msgctxt ""
-"03080401.xhp\n"
-"bm_id3156027\n"
+"03132000.xhp\n"
+"bm_id3155150\n"
"help.text"
-msgid "<bookmark_value>Sqr function</bookmark_value>"
+msgid "<bookmark_value>CreateUnoListener function</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03080401.xhp
+#: 03132000.xhp
msgctxt ""
-"03080401.xhp\n"
-"hd_id3156027\n"
-"1\n"
+"03132000.xhp\n"
+"hd_id3155150\n"
+"53\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03080401.xhp\" name=\"Sqr Function [Runtime]\">Sqr Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03132000.xhp\" name=\"CreateUnoListener Function [Runtime]\">CreateUnoListener Function [Runtime]</link>"
msgstr ""
-#: 03080401.xhp
+#: 03132000.xhp
msgctxt ""
-"03080401.xhp\n"
-"par_id3147226\n"
-"2\n"
+"03132000.xhp\n"
+"par_id3149346\n"
+"52\n"
"help.text"
-msgid "Calculates the square root of a numeric expression."
+msgid "Creates a Listener instance."
msgstr ""
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"hd_id3143267\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03080401.xhp
+#: 03132000.xhp
msgctxt ""
-"03080401.xhp\n"
-"par_id3149415\n"
-"4\n"
+"03132000.xhp\n"
+"par_id3153681\n"
+"51\n"
"help.text"
-msgid "Sqr (Number)"
-msgstr "Numri i faqes"
+msgid "Many Uno interfaces let you register listeners on a special listener interface. This allows you to listen for specific events and call up the appropriate listener method. The CreateUnoListener function waits for the called listener interface and then passes the interface an object that the interface supports. This object is then passed to the method to register the listener."
+msgstr ""
-#: 03080401.xhp
+#: 03132000.xhp
msgctxt ""
-"03080401.xhp\n"
-"hd_id3156023\n"
-"5\n"
+"03132000.xhp\n"
+"hd_id3148685\n"
+"50\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03080401.xhp
+#: 03132000.xhp
msgctxt ""
-"03080401.xhp\n"
-"par_id3156343\n"
-"6\n"
+"03132000.xhp\n"
+"par_id3143228\n"
+"49\n"
"help.text"
-msgid "Double"
-msgstr "Dyfish"
+msgid "oListener = CreateUnoListener( Prefixname, ListenerInterfaceName )"
+msgstr ""
-#: 03080401.xhp
+#: 03132000.xhp
msgctxt ""
-"03080401.xhp\n"
-"hd_id3147265\n"
-"7\n"
+"03132000.xhp\n"
+"hd_id3147574\n"
+"48\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Example:"
+msgstr "Shembull"
-#: 03080401.xhp
+#: 03132000.xhp
msgctxt ""
-"03080401.xhp\n"
-"par_id3149457\n"
-"8\n"
+"03132000.xhp\n"
+"par_id3154046\n"
+"47\n"
"help.text"
-msgid "<emph>Number:</emph> Any numeric expression that you want to calculate the square root for."
+msgid "The following example is based on a Basic library object."
msgstr ""
-#: 03080401.xhp
+#: 03132000.xhp
msgctxt ""
-"03080401.xhp\n"
-"par_id3154365\n"
-"9\n"
+"03132000.xhp\n"
+"par_id3149294\n"
+"44\n"
"help.text"
-msgid "A square root is the number that you multiply by itself to produce another number, for example, the square root of 36 is 6."
+msgid "The CreateUnoListener method requires two parameters. The first is a prefix and is explained in detail below. The second parameter is the fully qualified name of the Listener interface that you want to use."
msgstr ""
-#: 03080401.xhp
-msgctxt ""
-"03080401.xhp\n"
-"hd_id3153192\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03130700.xhp
-msgctxt ""
-"03130700.xhp\n"
-"tit\n"
-"help.text"
-msgid "GetSystemTicks Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"bm_id3147143\n"
+"03132000.xhp\n"
+"par_id3149670\n"
+"43\n"
"help.text"
-msgid "<bookmark_value>GetSystemTicks function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "The Listener must then be added to the Broadcaster Object. This is done by calling the appropriate method for adding a Listener. These methods always follow the pattern \"addFooListener\", where \"Foo\" is the Listener Interface Type, without the 'X'. In this example, the addContainerListener method is called to register the XContainerListener:"
+msgstr ""
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"hd_id3147143\n"
-"1\n"
+"03132000.xhp\n"
+"par_id3154940\n"
+"41\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03130700.xhp\" name=\"GetSystemTicks Function [Runtime]\">GetSystemTicks Function [Runtime]</link>"
+msgid "oLib = BasicLibraries.Library1 ' Library1 must exist!"
msgstr ""
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"par_id3153750\n"
-"2\n"
+"03132000.xhp\n"
+"par_id3150359\n"
+"40\n"
"help.text"
-msgid "Returns the number of system ticks provided by the operating system. You can use this function to optimize certain processes."
+msgid "oLib.addContainerListener( oListener ) ' Register the listener"
msgstr ""
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"hd_id3153311\n"
-"3\n"
+"03132000.xhp\n"
+"par_id3154138\n"
+"39\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "The Listener is now registered. When an event occurs, the corresponding Listener calls the appropriate method from the com.sun.star.container.XContainerListener Interface."
+msgstr ""
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"par_id3147242\n"
-"4\n"
+"03132000.xhp\n"
+"par_id3148922\n"
+"38\n"
"help.text"
-msgid "GetSystemTicks()"
+msgid "The prefix calls registered Listeners from Basic-subroutines. The Basic run-time system searches for Basic-subroutines or functions that have the name \"PrefixListenerMethode\" and calls them when found. Otherwise, a run-time error occurs."
msgstr ""
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"hd_id3149233\n"
-"5\n"
+"03132000.xhp\n"
+"par_id3150768\n"
+"37\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "In this example, the Listener-Interface uses the following methods:"
+msgstr ""
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"par_id3149762\n"
-"6\n"
+"03132000.xhp\n"
+"par_id3151176\n"
+"36\n"
"help.text"
-msgid "Long"
-msgstr "Standard (e gjatë)"
+msgid "disposing:"
+msgstr ""
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"hd_id3156152\n"
-"7\n"
+"03132000.xhp\n"
+"par_id3145173\n"
+"35\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Listener base interface (com.sun.star.lang.XEventListener): base interface for all Listener Interfaces"
+msgstr ""
-#: 03130700.xhp
+#: 03132000.xhp
msgctxt ""
-"03130700.xhp\n"
-"par_id3154938\n"
-"13\n"
+"03132000.xhp\n"
+"par_id3156212\n"
+"34\n"
"help.text"
-msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+msgid "elementInserted:"
msgstr ""
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"tit\n"
+"03132000.xhp\n"
+"par_id3159254\n"
+"33\n"
"help.text"
-msgid "If...Then...Else Statement [Runtime]"
+msgid "Method of the com.sun.star.container.XContainerListener interface"
msgstr ""
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"bm_id3154422\n"
+"03132000.xhp\n"
+"par_id3147287\n"
+"32\n"
"help.text"
-msgid "<bookmark_value>If statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+msgid "elementRemoved:"
+msgstr ""
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"hd_id3154422\n"
-"1\n"
+"03132000.xhp\n"
+"par_id3146119\n"
+"31\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090101.xhp\" name=\"If...Then...Else Statement [Runtime]\">If...Then...Else Statement [Runtime]</link>"
+msgid "Method of the com.sun.star.container.XContainerListener interface"
msgstr ""
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3155555\n"
-"2\n"
+"03132000.xhp\n"
+"par_id3153951\n"
+"30\n"
"help.text"
-msgid "Defines one or more statement blocks that you only want to execute if a given condition is True."
+msgid "elementReplaced:"
msgstr ""
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"hd_id3146957\n"
-"3\n"
+"03132000.xhp\n"
+"par_id3154013\n"
+"29\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Method of the com.sun.star.container.XContainerListener interface"
+msgstr ""
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3153126\n"
-"4\n"
+"03132000.xhp\n"
+"par_id3147435\n"
+"28\n"
"help.text"
-msgid "If condition=true Then Statement block [ElseIf condition=true Then] Statement block [Else] Statement block EndIf"
+msgid "In this example, the prefix is ContListener_. The following subroutines must therefore be implemented in Basic:"
msgstr ""
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3123476\n"
+"03132000.xhp\n"
+"par_id3155411\n"
+"27\n"
"help.text"
-msgid "Instead of Else If you can write ElseIf, instead of End If you can write EndIf."
+msgid "ContListener_disposing"
msgstr ""
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"hd_id3155419\n"
-"5\n"
+"03132000.xhp\n"
+"par_id3146923\n"
+"26\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "ContListener_elementInserted"
+msgstr ""
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3153062\n"
-"6\n"
+"03132000.xhp\n"
+"par_id3147318\n"
+"25\n"
"help.text"
-msgid "The <emph>If...Then</emph> statement executes program blocks depending on given conditions. When $[officename] Basic encounters an <emph>If</emph> statement, the condition is tested. If the condition is True, all subsequent statements up to the next <emph>Else</emph> or <emph>ElseIf</emph> statement are executed. If the condition is False, and an <emph>ElseIf</emph> statement follows, $[officename] Basic tests the next condition and executes the following statements if the condition is True. If False, the program continues either with the next <emph>ElseIf</emph> or <emph>Else</emph> statement. Statements following <emph>Else</emph> are executed only if none of the previously tested conditions were True. After all conditions are evaluated, and the corresponding statements executed, the program continues with the statement following <emph>EndIf</emph>."
+msgid "ContListener_elementRemoved"
msgstr ""
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3153192\n"
-"7\n"
+"03132000.xhp\n"
+"par_id3152578\n"
+"24\n"
"help.text"
-msgid "You can nest multiple <emph>If...Then</emph> statements."
+msgid "ContListener_elementReplaced"
msgstr ""
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3154684\n"
-"8\n"
+"03132000.xhp\n"
+"par_id3150592\n"
+"23\n"
"help.text"
-msgid "<emph>Else</emph> and <emph>ElseIf</emph> statements are optional."
+msgid "An event structure type that contains information about an event exists for every Listener type. When a Listener method is called, an instance of this event is passed to the method as a parameter. Basic Listener methods can also call these event objects, so long as the appropriate parameter is passed in the Sub declaration. For example:"
msgstr ""
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3152939\n"
-"9\n"
+"03132000.xhp\n"
+"par_id3153876\n"
+"21\n"
"help.text"
-msgid "You can use <emph>GoTo</emph> and <emph>GoSub</emph> to jump out of an <emph>If...Then</emph> block, but not to jump into an <emph>If...Then</emph> structure."
+msgid "MsgBox \"disposing\""
msgstr ""
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3153951\n"
-"10\n"
+"03132000.xhp\n"
+"par_id3154098\n"
+"17\n"
"help.text"
-msgid "The following example enables you to enter the expiration date of a product, and determines if the expiration date has passed."
+msgid "MsgBox \"elementInserted\""
msgstr ""
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"hd_id3152576\n"
-"11\n"
+"03132000.xhp\n"
+"par_id3153947\n"
+"13\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "MsgBox \"elementRemoved\""
+msgstr ""
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3154490\n"
-"16\n"
+"03132000.xhp\n"
+"par_id3148915\n"
+"9\n"
"help.text"
-msgid "sDate = InputBox(\"Enter the expiration date (MM.DD.YYYY)\")"
+msgid "MsgBox \"elementReplaced\""
msgstr ""
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3155601\n"
-"21\n"
+"03132000.xhp\n"
+"par_id3156056\n"
+"6\n"
"help.text"
-msgid "MsgBox \"The expiration date has passed\""
+msgid "You do not need to include the parameter of an event object if the object is not used:"
msgstr ""
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3146912\n"
-"23\n"
+"03132000.xhp\n"
+"par_id3150042\n"
+"5\n"
"help.text"
-msgid "MsgBox \"The expiration date has not yet passed\""
+msgid "' Minimal implementation of Sub disposing"
msgstr ""
-#: 03090101.xhp
+#: 03132000.xhp
msgctxt ""
-"03090101.xhp\n"
-"par_id3154754\n"
-"25\n"
+"03132000.xhp\n"
+"par_id3150940\n"
+"2\n"
"help.text"
-msgid "MsgBox \"The expiration date is today\""
+msgid "Listener methods must <emph>always</emph> be implemented to avoid Basic run-time errors."
msgstr ""
-#: 03120201.xhp
+#: 03132100.xhp
msgctxt ""
-"03120201.xhp\n"
+"03132100.xhp\n"
"tit\n"
"help.text"
-msgid "Space Function [Runtime]"
+msgid "GetGuiType Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03120201.xhp
+#: 03132100.xhp
msgctxt ""
-"03120201.xhp\n"
-"bm_id3150499\n"
+"03132100.xhp\n"
+"bm_id3147143\n"
"help.text"
-msgid "<bookmark_value>Space function</bookmark_value>"
+msgid "<bookmark_value>GetGuiType function</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03120201.xhp
+#: 03132100.xhp
msgctxt ""
-"03120201.xhp\n"
-"hd_id3150499\n"
+"03132100.xhp\n"
+"hd_id3155310\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120201.xhp\" name=\"Space Function [Runtime]\">Space Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function [Runtime]\">GetGuiType Function [Runtime]</link>"
msgstr ""
-#: 03120201.xhp
+#: 03132100.xhp
msgctxt ""
-"03120201.xhp\n"
-"par_id3154927\n"
+"03132100.xhp\n"
+"par_id3152459\n"
"2\n"
"help.text"
-msgid "Returns a string that consists of a specified amount of spaces."
+msgid "Returns a numerical value that specifies the graphical user interface."
msgstr ""
-#: 03120201.xhp
+#: 03132100.xhp
msgctxt ""
-"03120201.xhp\n"
-"hd_id3153394\n"
+"03132100.xhp\n"
+"par_id3153323\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "This runtime function is only provided for downward compatibility to previous versions. The return value is not defined in client-server environments."
+msgstr ""
-#: 03120201.xhp
+#: 03132100.xhp
msgctxt ""
-"03120201.xhp\n"
-"par_id3143267\n"
+"03132100.xhp\n"
+"hd_id3154894\n"
"4\n"
"help.text"
-msgid "Space (n As Long)"
-msgstr "Nënvizo (vija të gjata lidhëse)"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03120201.xhp
+#: 03132100.xhp
msgctxt ""
-"03120201.xhp\n"
-"hd_id3147242\n"
+"03132100.xhp\n"
+"par_id3147143\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "GetGUIType()"
+msgstr ""
-#: 03120201.xhp
+#: 03132100.xhp
msgctxt ""
-"03120201.xhp\n"
-"par_id3149233\n"
+"03132100.xhp\n"
+"hd_id3149346\n"
"6\n"
"help.text"
-msgid "String"
-msgstr "Varg"
+msgid "Return value:"
+msgstr "Vlerë absolute"
-#: 03120201.xhp
+#: 03132100.xhp
msgctxt ""
-"03120201.xhp\n"
-"hd_id3156152\n"
+"03132100.xhp\n"
+"par_id3153748\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Integer"
+msgstr "Numër i plotë"
-#: 03120201.xhp
+#: 03132100.xhp
msgctxt ""
-"03120201.xhp\n"
-"par_id3143228\n"
+"03132100.xhp\n"
+"hd_id3149177\n"
"8\n"
"help.text"
-msgid "<emph>n:</emph> Numeric expression that defines the number of spaces in the string. The maximum allowed value of n is 65535."
-msgstr ""
+msgid "Return values:"
+msgstr "Vlerat e dalluara"
-#: 03120201.xhp
+#: 03132100.xhp
msgctxt ""
-"03120201.xhp\n"
-"hd_id3154760\n"
+"03132100.xhp\n"
+"par_id3147242\n"
"9\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "1: Windows"
+msgstr "/windows"
-#: 03120201.xhp
-#, fuzzy
+#: 03132100.xhp
msgctxt ""
-"03120201.xhp\n"
-"par_id3154216\n"
-"18\n"
+"03132100.xhp\n"
+"par_id3156152\n"
+"11\n"
"help.text"
-msgid "MsgBox sOut,0,\"Info:\""
-msgstr "Informata të shënimeve të dokumentit"
+msgid "4: UNIX"
+msgstr ""
-#: 03030101.xhp
+#: 03132100.xhp
msgctxt ""
-"03030101.xhp\n"
+"03132100.xhp\n"
+"hd_id3148685\n"
+"12\n"
+"help.text"
+msgid "Example:"
+msgstr "Shembull"
+
+#: 03132200.xhp
+msgctxt ""
+"03132200.xhp\n"
"tit\n"
"help.text"
-msgid "DateSerial Function [Runtime]"
+msgid "ThisComponent Statement [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03030101.xhp
+#: 03132200.xhp
msgctxt ""
-"03030101.xhp\n"
-"bm_id3157896\n"
+"03132200.xhp\n"
+"bm_id3155342\n"
"help.text"
-msgid "<bookmark_value>DateSerial function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>ThisComponent property</bookmark_value><bookmark_value>components;addressing</bookmark_value>"
+msgstr ""
-#: 03030101.xhp
+#: 03132200.xhp
msgctxt ""
-"03030101.xhp\n"
-"hd_id3157896\n"
+"03132200.xhp\n"
+"hd_id3155342\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030101.xhp\" name=\"DateSerial Function [Runtime]\">DateSerial Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03132200.xhp\" name=\"ThisComponent [Runtime]\">ThisComponent [Runtime]</link>"
msgstr ""
-#: 03030101.xhp
+#: 03132200.xhp
msgctxt ""
-"03030101.xhp\n"
-"par_id3143267\n"
+"03132200.xhp\n"
+"par_id3154923\n"
"2\n"
"help.text"
-msgid "Returns a <emph>Date</emph> value for a specified year, month, or day."
+msgid "Addresses the active component so that its properties can be read and set. ThisComponent is used from document Basic, where it represents the document the Basic belongs to. The type of object accessed by ThisComponent depends on the document type."
msgstr ""
-#: 03030101.xhp
+#: 03132200.xhp
msgctxt ""
-"03030101.xhp\n"
-"hd_id3147264\n"
+"03132200.xhp\n"
+"hd_id3154346\n"
"3\n"
"help.text"
msgid "Syntax:"
msgstr "**Gabim Sintaksor**"
-#: 03030101.xhp
+#: 03132200.xhp
msgctxt ""
-"03030101.xhp\n"
-"par_id3149670\n"
+"03132200.xhp\n"
+"par_id3151056\n"
"4\n"
"help.text"
-msgid "DateSerial (year, month, day)"
-msgstr "Çfarwdo dite nw muajin e dwshiruar"
+msgid "ThisComponent"
+msgstr ""
-#: 03030101.xhp
+#: 03132200.xhp
msgctxt ""
-"03030101.xhp\n"
-"hd_id3150792\n"
+"03132200.xhp\n"
+"hd_id3154940\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3150398\n"
-"6\n"
-"help.text"
-msgid "Date"
-msgstr "Data"
+msgid "Example:"
+msgstr "Shembull"
-#: 03030101.xhp
+#: 03132200.xhp
msgctxt ""
-"03030101.xhp\n"
-"hd_id3154141\n"
+"03132200.xhp\n"
+"par_id3154123\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3147229\n"
-"8\n"
-"help.text"
-msgid "<emph>Year:</emph> Integer expression that indicates a year. All values between 0 and 99 are interpreted as the years 1900-1999. For years that fall outside this range, you must enter all four digits."
-msgstr ""
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3156280\n"
-"9\n"
-"help.text"
-msgid "<emph>Month:</emph> Integer expression that indicates the month of the specified year. The accepted range is from 1-12."
+msgid "' updates the \"Table of Contents\" in a text doc"
msgstr ""
-#: 03030101.xhp
+#: 03132200.xhp
msgctxt ""
-"03030101.xhp\n"
-"par_id3151043\n"
+"03132200.xhp\n"
+"par_id3153194\n"
"10\n"
"help.text"
-msgid "<emph>Day:</emph> Integer expression that indicates the day of the specified month. The accepted range is from 1-31. No error is returned when you enter a non-existing day for a month shorter than 31 days."
+msgid "index = allindexes.getByName(\"Table of Contents1\")"
msgstr ""
-#: 03030101.xhp
+#: 03132200.xhp
msgctxt ""
-"03030101.xhp\n"
-"par_id3161832\n"
+"03132200.xhp\n"
+"par_id3156422\n"
"11\n"
"help.text"
-msgid "The <emph>DateSerial function</emph> returns the number of days between December 30,1899 and the given date. You can use this function to calculate the difference between two dates."
-msgstr ""
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3155306\n"
-"12\n"
-"help.text"
-msgid "The <emph>DateSerial function</emph> returns the data type Variant with VarType 7 (Date). Internally, this value is stored as a Double value, so that when the given date is 1.1.1900, the returned value is 2. Negative values correspond to dates before December 30, 1899 (not inclusive)."
-msgstr ""
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3152576\n"
-"13\n"
-"help.text"
-msgid "If a date is defined that lies outside of the accepted range, $[officename] Basic returns an error message."
-msgstr ""
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3149481\n"
-"14\n"
-"help.text"
-msgid "Whereas you define the <emph>DateValue function</emph> as a string that contains the date, the <emph>DateSerial function</emph> evaluates each of the parameters (year, month, day) as separate numeric expressions."
-msgstr ""
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"hd_id3155411\n"
-"15\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3154942\n"
-"help.text"
-msgid "MsgBox lDate ' returns 23476"
-msgstr ""
-
-#: 03030101.xhp
-msgctxt ""
-"03030101.xhp\n"
-"par_id3151074\n"
-"help.text"
-msgid "MsgBox sDate ' returns 04/09/1964"
+msgid "' use the default name for Table of Contents and a 1"
msgstr ""
-#: 03020305.xhp
+#: 03132300.xhp
msgctxt ""
-"03020305.xhp\n"
+"03132300.xhp\n"
"tit\n"
"help.text"
-msgid "Seek Statement [Runtime]"
+msgid "CreateUnoValue Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03020305.xhp
+#: 03132300.xhp
msgctxt ""
-"03020305.xhp\n"
-"bm_id3159413\n"
+"03132300.xhp\n"
+"bm_id3150682\n"
"help.text"
-msgid "<bookmark_value>Seek statement</bookmark_value>"
-msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
+msgid "<bookmark_value>CreateUnoValue function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03020305.xhp
+#: 03132300.xhp
msgctxt ""
-"03020305.xhp\n"
-"hd_id3159413\n"
+"03132300.xhp\n"
+"hd_id3150682\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020305.xhp\" name=\"Seek Statement [Runtime]\">Seek Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03132300.xhp\" name=\"CreateUnoValue Function [Runtime]\">CreateUnoValue Function [Runtime]</link>"
msgstr ""
-#: 03020305.xhp
+#: 03132300.xhp
msgctxt ""
-"03020305.xhp\n"
-"par_id3153381\n"
+"03132300.xhp\n"
+"par_id3147291\n"
"2\n"
"help.text"
-msgid "Sets the position for the next writing or reading in a file that was opened with the Open statement."
+msgid "Returns an object that represents a strictly typed value referring to the Uno type system."
msgstr ""
-#: 03020305.xhp
+#: 03132300.xhp
msgctxt ""
-"03020305.xhp\n"
-"par_id2100589\n"
+"03132300.xhp\n"
+"par_id3143267\n"
+"3\n"
"help.text"
-msgid "For random access files, the Seek statement sets the number of the next record to be accessed."
+msgid "This object is automatically converted to an Any of the corresponding type when passed to Uno. The type must be specified by its fully qualified Uno type name."
msgstr ""
-#: 03020305.xhp
+#: 03132300.xhp
msgctxt ""
-"03020305.xhp\n"
-"par_id5444807\n"
+"03132300.xhp\n"
+"par_id3153626\n"
+"4\n"
"help.text"
-msgid "For all other files, the Seek statement sets the byte position at which the next operation is to occur."
+msgid "The $[officename] API frequently uses the Any type. It is the counterpart of the Variant type known from other environments. The Any type holds one arbitrary Uno type and is used in generic Uno interfaces."
msgstr ""
-#: 03020305.xhp
+#: 03132300.xhp
msgctxt ""
-"03020305.xhp\n"
-"par_id3156280\n"
+"03132300.xhp\n"
+"hd_id3147560\n"
"5\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03020103.xhp\" name=\"Open\">Open</link>, <link href=\"text/sbasic/shared/03020304.xhp\" name=\"Seek\">Seek</link>."
-msgstr ""
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03020305.xhp
+#: 03132300.xhp
msgctxt ""
-"03020305.xhp\n"
-"hd_id3145785\n"
+"03132300.xhp\n"
+"par_id3154760\n"
"6\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "oUnoValue = CreateUnoValue( \"[]byte\", MyBasicValue ) to get a byte sequence."
+msgstr ""
-#: 03020305.xhp
+#: 03132300.xhp
msgctxt ""
-"03020305.xhp\n"
-"par_id3145273\n"
+"03132300.xhp\n"
+"par_id3150541\n"
"7\n"
"help.text"
-msgid "Seek[#FileNumber], Position (As Long)"
+msgid "If CreateUnoValue cannot be converted to the specified Uno type, and error occurs. For the conversion, the TypeConverter service is used."
msgstr ""
-#: 03020305.xhp
+#: 03132300.xhp
msgctxt ""
-"03020305.xhp\n"
-"hd_id3154321\n"
+"03132300.xhp\n"
+"par_id3153524\n"
"8\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "This function is intended for use in situations where the default Basic to Uno type converting mechanism is insufficient. This can happen when you try to access generic Any based interfaces, such as XPropertySet::setPropertyValue( Name, Value ) or X???Container::insertBy???( ???, Value ), from $[officename] Basic. The Basic runtime does not recognize these types as they are only defined in the corresponding service."
+msgstr ""
-#: 03020305.xhp
+#: 03132300.xhp
msgctxt ""
-"03020305.xhp\n"
-"par_id3153952\n"
+"03132300.xhp\n"
+"par_id3154366\n"
"9\n"
"help.text"
-msgid "<emph>FileNumber: </emph>The data channel number used in the Open statement."
+msgid "In this type of situation, $[officename] Basic chooses the best matching type for the Basic type that you want to convert. However, if the wrong type is selected, an error occurs. You use the CreateUnoValue() function to create a value for the unknown Uno type."
msgstr ""
-#: 03020305.xhp
+#: 03132300.xhp
msgctxt ""
-"03020305.xhp\n"
-"par_id3145366\n"
+"03132300.xhp\n"
+"par_id3150769\n"
"10\n"
"help.text"
-msgid "<emph>Position: </emph>Position for the next writing or reading. Position can be a number between 1 and 2,147,483,647. According to the file type, the position indicates the number of the record (files in the Random mode) or the byte position (files in the Binary, Output, Append or Input mode). The first byte in a file is position 1, the second byte is position 2, and so on."
+msgid "You can also use this function to pass non-Any values, but this is not recommend. If Basic already knows the target type, using the CreateUnoValue() function will only lead to additional converting operations that slow down the Basic execution."
msgstr ""
-#: 03030206.xhp
+#: 03132400.xhp
msgctxt ""
-"03030206.xhp\n"
+"03132400.xhp\n"
"tit\n"
"help.text"
-msgid "TimeValue Function [Runtime]"
+msgid "CreateObject Function [Runtime]"
msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03030206.xhp
+#: 03132400.xhp
msgctxt ""
-"03030206.xhp\n"
-"bm_id3149670\n"
+"03132400.xhp\n"
+"bm_id659810\n"
"help.text"
-msgid "<bookmark_value>TimeValue function</bookmark_value>"
+msgid "<bookmark_value>CreateObject function</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03030206.xhp
+#: 03132400.xhp
msgctxt ""
-"03030206.xhp\n"
-"hd_id3149670\n"
-"1\n"
+"03132400.xhp\n"
+"par_idN10580\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03030206.xhp\" name=\"TimeValue Function [Runtime]\">TimeValue Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/03132400.xhp\">CreateObject Function [Runtime]</link>"
msgstr ""
-#: 03030206.xhp
+#: 03132400.xhp
msgctxt ""
-"03030206.xhp\n"
-"par_id3153361\n"
-"2\n"
+"03132400.xhp\n"
+"par_idN10590\n"
"help.text"
-msgid "Calculates a serial time value from the specified hour, minute, and second - parameters passed as strings - that represents the time in a single numeric value. This value can be used to calculate the difference between times."
+msgid "<ahelp hid=\".\">Creates a UNO object. On Windows, can also create OLE objects.</ahelp>"
msgstr ""
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"hd_id3154138\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03030206.xhp
+#: 03132400.xhp
msgctxt ""
-"03030206.xhp\n"
-"par_id3156282\n"
-"4\n"
+"03132400.xhp\n"
+"par_idN1059F\n"
"help.text"
-msgid "TimeValue (Text As String)"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "This method creates instances of the type that is passed as parameter."
+msgstr ""
-#: 03030206.xhp
+#: 03132400.xhp
msgctxt ""
-"03030206.xhp\n"
-"hd_id3153969\n"
-"5\n"
+"03132400.xhp\n"
+"par_idN105A2\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Syntax:"
+msgstr "**Gabim Sintaksor**"
-#: 03030206.xhp
+#: 03132400.xhp
msgctxt ""
-"03030206.xhp\n"
-"par_id3156424\n"
-"6\n"
+"03132400.xhp\n"
+"par_idN105A6\n"
"help.text"
-msgid "Date"
-msgstr "Data"
+msgid "oObj = CreateObject( type )"
+msgstr "Zgjedh tipin e dokumentit"
-#: 03030206.xhp
+#: 03132400.xhp
msgctxt ""
-"03030206.xhp\n"
-"hd_id3145172\n"
-"7\n"
+"03132400.xhp\n"
+"par_idN105A9\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Example:"
+msgstr "Shembull"
-#: 03030206.xhp
+#: 03132500.xhp
msgctxt ""
-"03030206.xhp\n"
-"par_id3145786\n"
-"8\n"
+"03132500.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression that contains the time that you want to calculate in the format \"HH:MM:SS\"."
-msgstr ""
+msgid "GetDefaultContext Function [Runtime]"
+msgstr "Gabim në afatin e ekzekutimit të BASIC"
-#: 03030206.xhp
+#: 03132500.xhp
msgctxt ""
-"03030206.xhp\n"
-"par_id3152578\n"
-"9\n"
+"03132500.xhp\n"
+"bm_id4761192\n"
"help.text"
-msgid "Use the TimeValue function to convert any time into a single value, so that you can calculate time differences."
-msgstr ""
+msgid "<bookmark_value>GetDefaultContext function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 03030206.xhp
+#: 03132500.xhp
msgctxt ""
-"03030206.xhp\n"
-"par_id3163710\n"
-"10\n"
+"03132500.xhp\n"
+"par_idN10580\n"
"help.text"
-msgid "This TimeValue function returns the type Variant with VarType 7 (Date), and stores this value internally as a double-precision number between 0 and 0.9999999999."
+msgid "<link href=\"text/sbasic/shared/03132500.xhp\">GetDefaultContext Function [Runtime]</link>"
msgstr ""
-#: 03030206.xhp
+#: 03132500.xhp
msgctxt ""
-"03030206.xhp\n"
-"par_id3151117\n"
-"11\n"
+"03132500.xhp\n"
+"par_idN10590\n"
"help.text"
-msgid "As opposed to the DateSerial or the DateValue function, where serial date values result in days relative to a fixed date, you can calculate with the values that are returned by the TimeValue function, but you cannot evaluate them."
+msgid "Returns the default context of the process service factory, if existent, else returns a null reference."
msgstr ""
-#: 03030206.xhp
+#: 03132500.xhp
msgctxt ""
-"03030206.xhp\n"
-"par_id3147426\n"
-"12\n"
+"03132500.xhp\n"
+"par_idN10593\n"
"help.text"
-msgid "In the TimeSerial function, you can pass individual parameters (hour, minute, second) as separate numeric expressions. For the TimeValue function, however, you can pass a string as a parameter containing the time."
+msgid "This runtime function returns the default component context to be used, if instantiating services via XmultiServiceFactory. See the <item type=\"literal\">Professional UNO</item> chapter in the <item type=\"literal\">Developer's Guide</item> on <link href=\"http://api.libreoffice.org\">api.libreoffice.org</link> for more information."
msgstr ""
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"hd_id3145271\n"
-"13\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3149378\n"
-"33\n"
-"help.text"
-msgid "a1 = \"start time\""
-msgstr "Veprimi filloi [Time]: [1]."
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3145800\n"
-"34\n"
-"help.text"
-msgid "b1 = \"end time\""
-msgstr "**Format i gabuar kohor**"
-
-#: 03030206.xhp
-msgctxt ""
-"03030206.xhp\n"
-"par_id3151074\n"
-"35\n"
-"help.text"
-msgid "c1 = \"total time\""
-msgstr "Koha totale e editimit:"
-
-#: 03120403.xhp
+#: 05060700.xhp
msgctxt ""
-"03120403.xhp\n"
+"05060700.xhp\n"
"tit\n"
"help.text"
-msgid "StrComp Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "Macro"
+msgstr "Makro"
-#: 03120403.xhp
+#: 05060700.xhp
msgctxt ""
-"03120403.xhp\n"
-"bm_id3156027\n"
+"05060700.xhp\n"
+"bm_id3153894\n"
"help.text"
-msgid "<bookmark_value>StrComp function</bookmark_value>"
-msgstr "E kthen funksionin gabim plotwsues"
+msgid "<bookmark_value>events;linked to objects</bookmark_value>"
+msgstr ""
-#: 03120403.xhp
+#: 05060700.xhp
msgctxt ""
-"03120403.xhp\n"
-"hd_id3156027\n"
+"05060700.xhp\n"
+"hd_id3153894\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120403.xhp\" name=\"StrComp Function [Runtime]\">StrComp Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/05060700.xhp\" name=\"Macro\">Macro</link>"
msgstr ""
-#: 03120403.xhp
+#: 05060700.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3155805\n"
+"05060700.xhp\n"
+"par_id3153748\n"
"2\n"
"help.text"
-msgid "Compares two strings and returns an integer value that represents the result of the comparison."
+msgid "<ahelp hid=\".\">Choose the macro that you want to execute when the selected graphic, frame, or OLE object is selected.</ahelp> Depending on the object that is selected, the function is either found on the <emph>Macro</emph> tab of the <emph>Object</emph> dialog, or in the <emph>Assign Macro</emph> dialog."
msgstr ""
-#: 03120403.xhp
+#: 05060700.xhp
msgctxt ""
-"03120403.xhp\n"
-"hd_id3153345\n"
+"05060700.xhp\n"
+"hd_id3150503\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Event"
+msgstr "Ngjarje"
-#: 03120403.xhp
+#: 05060700.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3150503\n"
+"05060700.xhp\n"
+"par_id3149763\n"
"4\n"
"help.text"
-msgid "StrComp (Text1 As String, Text2 As String[, Compare])"
+msgid "<ahelp hid=\"HID_MACRO_LB_EVENT\">Lists the events that are relevant to the macros that are currently assigned to the selected object.</ahelp>"
msgstr ""
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3147574\n"
-"5\n"
-"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
-
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"par_id3156152\n"
-"6\n"
-"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
-
-#: 03120403.xhp
-msgctxt ""
-"03120403.xhp\n"
-"hd_id3150984\n"
-"7\n"
-"help.text"
-msgid "Parameter:"
-msgstr "Parametri i sllajdit"
-
-#: 03120403.xhp
+#: 05060700.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3153061\n"
-"8\n"
+"05060700.xhp\n"
+"par_id3150670\n"
+"23\n"
"help.text"
-msgid "<emph>Text1:</emph> Any string expression"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "The following table describes the macros and the events that can by linked to objects in your document:"
+msgstr ""
-#: 03120403.xhp
+#: 05060700.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3147560\n"
-"9\n"
+"05060700.xhp\n"
+"par_id3153360\n"
+"24\n"
"help.text"
-msgid "<emph>Text2:</emph> Any string expression"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "Event"
+msgstr "Ngjarje"
-#: 03120403.xhp
+#: 05060700.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3146796\n"
-"10\n"
+"05060700.xhp\n"
+"par_id3154365\n"
+"25\n"
"help.text"
-msgid "<emph>Compare:</emph> This optional parameter sets the comparison method. If Compare = 1, the string comparison is case-sensitive. If Compare = 0, no distinction is made between uppercase and lowercase letters."
-msgstr ""
+msgid "Event trigger"
+msgstr "Hiperlinku shkrehës"
-#: 03120403.xhp
+#: 05060700.xhp
msgctxt ""
-"03120403.xhp\n"
-"hd_id3154940\n"
-"13\n"
+"05060700.xhp\n"
+"par_id3159149\n"
+"26\n"
"help.text"
-msgid "Return value"
-msgstr "Vlerë absolute"
+msgid "OLE object"
+msgstr "OLE objekt"
-#: 03120403.xhp
+#: 05060700.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3150358\n"
+"05060700.xhp\n"
+"par_id3148451\n"
"27\n"
"help.text"
-msgid "If Text1 < Text2 the function returns -1"
-msgstr "Rezultati i funksionit nëse një test llogjik përgjigjet SAKTË."
+msgid "Graphics"
+msgstr "Grafikat"
-#: 03120403.xhp
+#: 05060700.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3151043\n"
+"05060700.xhp\n"
+"par_id3125863\n"
"28\n"
"help.text"
-msgid "If Text1 = Text2 the function returns 0"
-msgstr "Rezultati i funksionit nëse një test llogjik përgjigjet SAKTË."
+msgid "Frame"
+msgstr "Kornizë"
-#: 03120403.xhp
+#: 05060700.xhp
msgctxt ""
-"03120403.xhp\n"
-"par_id3158410\n"
+"05060700.xhp\n"
+"par_id3154216\n"
"29\n"
"help.text"
-msgid "If Text1 > Text2 the function returns 1"
-msgstr "Rezultati i funksionit nëse një test llogjik përgjigjet SAKTË."
+msgid "AutoText"
+msgstr "AutoText"
-#: 03120403.xhp
+#: 05060700.xhp
msgctxt ""
-"03120403.xhp\n"
-"hd_id3153968\n"
-"18\n"
+"05060700.xhp\n"
+"par_id3145785\n"
+"30\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "ImageMap area"
+msgstr "Zona e fundfaqes"
-#: 03120402.xhp
+#: 05060700.xhp
msgctxt ""
-"03120402.xhp\n"
-"tit\n"
+"05060700.xhp\n"
+"par_id3153138\n"
+"31\n"
"help.text"
-msgid "Len Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "Hyperlink"
+msgstr "Hiperlink"
-#: 03120402.xhp
+#: 05060700.xhp
msgctxt ""
-"03120402.xhp\n"
-"bm_id3154136\n"
+"05060700.xhp\n"
+"par_id3155306\n"
+"32\n"
"help.text"
-msgid "<bookmark_value>Len function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "Click object"
+msgstr "Kliko në objekt"
-#: 03120402.xhp
+#: 05060700.xhp
msgctxt ""
-"03120402.xhp\n"
-"hd_id3154136\n"
-"1\n"
+"05060700.xhp\n"
+"par_id3152460\n"
+"33\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03120402.xhp\" name=\"Len Function [Runtime]\">Len Function [Runtime]</link>"
-msgstr ""
+msgid "Object is selected."
+msgstr "Objekti nuk është folder"
-#: 03120402.xhp
+#: 05060700.xhp
msgctxt ""
-"03120402.xhp\n"
-"par_id3147576\n"
-"2\n"
+"05060700.xhp\n"
+"par_id3147348\n"
+"34\n"
"help.text"
-msgid "Returns the number of characters in a string, or the number of bytes that are required to store a variable."
+msgid "x"
msgstr ""
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"hd_id3159177\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03120402.xhp
+#: 05060700.xhp
msgctxt ""
-"03120402.xhp\n"
-"par_id3150669\n"
-"4\n"
+"05060700.xhp\n"
+"par_id3147426\n"
+"35\n"
"help.text"
-msgid "Len (Text As String)"
-msgstr "Llogarit gjatësinë e një vargu tekstual."
+msgid "x"
+msgstr ""
-#: 03120402.xhp
+#: 05060700.xhp
msgctxt ""
-"03120402.xhp\n"
-"hd_id3148473\n"
-"5\n"
+"05060700.xhp\n"
+"par_id3153951\n"
+"36\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "x"
+msgstr ""
-#: 03120402.xhp
+#: 05060700.xhp
msgctxt ""
-"03120402.xhp\n"
-"par_id3143270\n"
-"6\n"
+"05060700.xhp\n"
+"par_id3150116\n"
+"37\n"
"help.text"
-msgid "Long"
-msgstr "Standard (e gjatë)"
+msgid "Mouse over object"
+msgstr "Miu mbi objektin"
-#: 03120402.xhp
+#: 05060700.xhp
msgctxt ""
-"03120402.xhp\n"
-"hd_id3147531\n"
-"7\n"
+"05060700.xhp\n"
+"par_id3145253\n"
+"38\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Mouse moves over the object."
+msgstr "Shiriti i objektit kyçur/çkyçur"
-#: 03120402.xhp
+#: 05060700.xhp
msgctxt ""
-"03120402.xhp\n"
-"par_id3147265\n"
-"8\n"
+"05060700.xhp\n"
+"par_id3144765\n"
+"39\n"
"help.text"
-msgid "<emph>Text:</emph> Any string expression or a variable of another type."
+msgid "x"
msgstr ""
-#: 03120402.xhp
-msgctxt ""
-"03120402.xhp\n"
-"hd_id3153360\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03120402.xhp
+#: 05060700.xhp
msgctxt ""
-"03120402.xhp\n"
-"par_id3156214\n"
-"13\n"
+"05060700.xhp\n"
+"par_id3153418\n"
+"40\n"
"help.text"
-msgid "MsgBox Len(sText) REM Returns 9"
+msgid "x"
msgstr ""
-#: 03130600.xhp
-msgctxt ""
-"03130600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Wait Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"bm_id3154136\n"
+"05060700.xhp\n"
+"par_id3153948\n"
+"41\n"
"help.text"
-msgid "<bookmark_value>Wait statement</bookmark_value>"
-msgstr "Vlera #1 nuk mund të përdoret me LIKE!"
+msgid "x"
+msgstr ""
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"hd_id3154136\n"
-"1\n"
+"05060700.xhp\n"
+"par_id3145652\n"
+"42\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03130600.xhp\" name=\"Wait Statement [Runtime]\">Wait Statement [Runtime]</link>"
+msgid "x"
msgstr ""
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"par_id3149236\n"
-"2\n"
+"05060700.xhp\n"
+"par_id3155066\n"
+"43\n"
"help.text"
-msgid "Interrupts the program execution for the amount of time that you specify in milliseconds."
+msgid "x"
msgstr ""
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"hd_id3143229\n"
-"3\n"
+"05060700.xhp\n"
+"par_id3155446\n"
+"44\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Trigger Hyperlink"
+msgstr "Hiperlinku shkrehës"
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"par_id3150669\n"
-"4\n"
+"05060700.xhp\n"
+"par_id3154756\n"
+"45\n"
"help.text"
-msgid "Wait millisec"
-msgstr "Ju lutem pritni"
+msgid "Hyperlink assigned to the object is clicked."
+msgstr ""
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"hd_id3148943\n"
-"5\n"
+"05060700.xhp\n"
+"par_id3150042\n"
+"46\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "x"
+msgstr ""
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"par_id3154924\n"
-"6\n"
+"05060700.xhp\n"
+"par_id3151252\n"
+"47\n"
"help.text"
-msgid "<emph>millisec:</emph> Numeric expression that contains the amount of time (in milliseconds) to wait before the program is executed."
+msgid "x"
msgstr ""
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"hd_id3150541\n"
-"7\n"
+"05060700.xhp\n"
+"par_id3147344\n"
+"48\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "x"
+msgstr ""
-#: 03130600.xhp
+#: 05060700.xhp
msgctxt ""
-"03130600.xhp\n"
-"par_id3156214\n"
-"13\n"
+"05060700.xhp\n"
+"par_id3146920\n"
+"49\n"
"help.text"
-msgid "MsgBox \"\" & lTick & \" Ticks\" ,0,\"The pause lasted\""
+msgid "x"
msgstr ""
-#: 03010300.xhp
+#: 05060700.xhp
msgctxt ""
-"03010300.xhp\n"
-"tit\n"
+"05060700.xhp\n"
+"par_id3159333\n"
+"50\n"
"help.text"
-msgid "Color Functions"
-msgstr "Funksionet statistikore"
+msgid "Mouse leaves object"
+msgstr "Miu lëshon objektin"
-#: 03010300.xhp
+#: 05060700.xhp
msgctxt ""
-"03010300.xhp\n"
-"hd_id3157896\n"
-"1\n"
+"05060700.xhp\n"
+"par_id3147003\n"
+"51\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03010300.xhp\" name=\"Color Functions\">Color Functions</link>"
-msgstr ""
+msgid "Mouse moves off of the object."
+msgstr "Shiriti i objektit kyçur/çkyçur"
-#: 03010300.xhp
+#: 05060700.xhp
msgctxt ""
-"03010300.xhp\n"
-"par_id3155555\n"
-"2\n"
+"05060700.xhp\n"
+"par_id3151278\n"
+"52\n"
"help.text"
-msgid "This section describes Runtime functions used to define colors."
+msgid "x"
msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"tit\n"
+"05060700.xhp\n"
+"par_id3145257\n"
+"53\n"
"help.text"
-msgid "GetGuiType Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "x"
+msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"bm_id3147143\n"
+"05060700.xhp\n"
+"par_id3154122\n"
+"54\n"
"help.text"
-msgid "<bookmark_value>GetGuiType function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "x"
+msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"hd_id3155310\n"
-"1\n"
+"05060700.xhp\n"
+"par_id3156139\n"
+"55\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03132100.xhp\" name=\"GetGuiType Function [Runtime]\">GetGuiType Function [Runtime]</link>"
+msgid "x"
msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"par_id3152459\n"
-"2\n"
+"05060700.xhp\n"
+"par_id3149036\n"
+"56\n"
"help.text"
-msgid "Returns a numerical value that specifies the graphical user interface."
+msgid "x"
msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"par_id3153323\n"
-"3\n"
+"05060700.xhp\n"
+"par_id3150785\n"
+"57\n"
"help.text"
-msgid "This runtime function is only provided for downward compatibility to previous versions. The return value is not defined in client-server environments."
-msgstr ""
+msgid "Graphics load successful"
+msgstr "Ngarkimi i grafikave i suksesshëm"
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"hd_id3154894\n"
-"4\n"
+"05060700.xhp\n"
+"par_id3153705\n"
+"58\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Graphics are loaded successfully."
+msgstr "Grafikat e zbrazëta nuk janë të mbështetura."
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"par_id3147143\n"
-"5\n"
+"05060700.xhp\n"
+"par_id3150343\n"
+"59\n"
"help.text"
-msgid "GetGUIType()"
+msgid "x"
msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"hd_id3149346\n"
-"6\n"
+"05060700.xhp\n"
+"par_id3150202\n"
+"60\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Graphics load terminated"
+msgstr "Ngarkimi i grafikave u ndërpre"
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"par_id3153748\n"
-"7\n"
+"05060700.xhp\n"
+"par_id3145584\n"
+"61\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "Loading of graphics is stopped by the user (for example, when downloading the page)."
+msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"hd_id3149177\n"
-"8\n"
+"05060700.xhp\n"
+"par_id3154259\n"
+"62\n"
"help.text"
-msgid "Return values:"
-msgstr "Vlerat e dalluara"
+msgid "x"
+msgstr ""
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"par_id3147242\n"
-"9\n"
+"05060700.xhp\n"
+"par_id3155089\n"
+"63\n"
"help.text"
-msgid "1: Windows"
-msgstr "/windows"
+msgid "Graphics load faulty"
+msgstr "Ngarkimi i grafikave i gabueshëm"
-#: 03132100.xhp
+#: 05060700.xhp
msgctxt ""
-"03132100.xhp\n"
-"par_id3156152\n"
-"11\n"
+"05060700.xhp\n"
+"par_id3153307\n"
+"64\n"
"help.text"
-msgid "4: UNIX"
+msgid "Graphics not successfully loaded, for example, if a graphic was not found."
msgstr ""
-#: 03132100.xhp
-msgctxt ""
-"03132100.xhp\n"
-"hd_id3148685\n"
-"12\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"tit\n"
+"05060700.xhp\n"
+"par_id3148840\n"
+"65\n"
"help.text"
-msgid "Err Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"bm_id3156343\n"
+"05060700.xhp\n"
+"par_id3154533\n"
+"66\n"
"help.text"
-msgid "<bookmark_value>Err function</bookmark_value>"
-msgstr "E kthen funksionin gabim plotwsues"
+msgid "Input of alpha characters"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"hd_id3156343\n"
-"1\n"
+"05060700.xhp\n"
+"par_id3155266\n"
+"67\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03050200.xhp\" name=\"Err Function [Runtime]\">Err Function [Runtime]</link>"
+msgid "Text is entered from the keyboard."
msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3150541\n"
-"2\n"
+"05060700.xhp\n"
+"par_id3144768\n"
+"68\n"
"help.text"
-msgid "Returns an error code that identifies the error that occurred during program execution."
+msgid "x"
msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"hd_id3149656\n"
-"3\n"
+"05060700.xhp\n"
+"par_id3145659\n"
+"69\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Input of non-alpha characters"
+msgstr "Futje e karaktereve jo-alfanumerike"
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3154123\n"
-"4\n"
+"05060700.xhp\n"
+"par_id3151131\n"
+"70\n"
"help.text"
-msgid "Err"
-msgstr "Err:"
+msgid "Nonprinting characters are entered from the keyboard, for example, tabs and line breaks."
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"hd_id3147229\n"
-"5\n"
+"05060700.xhp\n"
+"par_id3159206\n"
+"71\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "x"
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3150869\n"
-"6\n"
+"05060700.xhp\n"
+"par_id3150405\n"
+"72\n"
"help.text"
-msgid "Integer"
-msgstr "Numër i plotë"
+msgid "Resize frame"
+msgstr "Rivendos madhësinë e kornizës"
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"hd_id3153193\n"
-"7\n"
+"05060700.xhp\n"
+"par_id3153972\n"
+"73\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Frame is resized with the mouse."
+msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3149561\n"
-"8\n"
+"05060700.xhp\n"
+"par_id3152873\n"
+"74\n"
"help.text"
-msgid "The Err function is used in error-handling routines to determine the error and the corrective action."
+msgid "x"
msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"hd_id3147317\n"
-"9\n"
+"05060700.xhp\n"
+"par_id3148900\n"
+"75\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Move frame"
+msgstr "Lëviz kornizën"
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3147426\n"
-"11\n"
+"05060700.xhp\n"
+"par_id3154767\n"
+"76\n"
"help.text"
-msgid "On Error Goto ErrorHandler REM Set up error handler"
+msgid "Frame is moved with the mouse."
msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3149481\n"
-"14\n"
+"05060700.xhp\n"
+"par_id3155914\n"
+"77\n"
"help.text"
-msgid "REM Error occurs due to non-existent file"
+msgid "x"
msgstr ""
-#: 03050200.xhp
+#: 05060700.xhp
msgctxt ""
-"03050200.xhp\n"
-"par_id3145646\n"
-"21\n"
+"05060700.xhp\n"
+"par_id3153010\n"
+"78\n"
"help.text"
-msgid "MsgBox \"Error \" & Err & \": \" & Error$ + chr(13) + \"At line : \" + Erl + chr(13) + Now , 16 ,\"an error occurred\""
-msgstr ""
+msgid "Before inserting AutoText"
+msgstr "Para futjes së Auto Text"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"tit\n"
+"05060700.xhp\n"
+"par_id3147515\n"
+"79\n"
"help.text"
-msgid "FindObject Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "Before a text block is inserted."
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"bm_id3145136\n"
+"05060700.xhp\n"
+"par_id3151191\n"
+"80\n"
"help.text"
-msgid "<bookmark_value>FindObject function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "x"
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"hd_id3145136\n"
-"1\n"
+"05060700.xhp\n"
+"par_id3150956\n"
+"81\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03103800.xhp\" name=\"FindObject Function [Runtime]\">FindObject Function [Runtime]</link>"
-msgstr ""
+msgid "After inserting AutoText"
+msgstr "Pas futjes së Auto Text"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3155341\n"
-"2\n"
+"05060700.xhp\n"
+"par_id3147502\n"
+"82\n"
"help.text"
-msgid "Enables an object to be addressed at run-time as a string parameter through the object name."
+msgid "After a text block is inserted."
msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3150669\n"
-"3\n"
+"05060700.xhp\n"
+"par_id3147555\n"
+"83\n"
"help.text"
-msgid "For example, the following command:"
+msgid "x"
msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3148473\n"
-"4\n"
+"05060700.xhp\n"
+"hd_id3153958\n"
+"5\n"
"help.text"
-msgid "MyObj.Prop1.Command = 5"
-msgstr "Zgjidh njw linjw tw komandws"
+msgid "Macros"
+msgstr "Makrot"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3156023\n"
-"5\n"
+"05060700.xhp\n"
+"par_id3150432\n"
+"6\n"
"help.text"
-msgid "corresponds to the command block:"
-msgstr "Deri në bllok margjinë të epërme"
+msgid "Choose the macro that you want to execute when the selected event occurs."
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3153896\n"
-"6\n"
+"05060700.xhp\n"
+"par_id3147296\n"
+"84\n"
"help.text"
-msgid "Dim ObjVar as Object"
-msgstr "Variabla e objektit nuk është përcaktuar"
+msgid "Frames allow you to link events to a function, so that the function can determine if it processes the event or $[officename] Writer."
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3154760\n"
+"05060700.xhp\n"
+"hd_id3155587\n"
"7\n"
"help.text"
-msgid "Dim ObjProp as Object"
-msgstr "Variabla e objektit nuk është përcaktuar"
+msgid "Category"
+msgstr "Kategori"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3145069\n"
+"05060700.xhp\n"
+"par_id3154068\n"
"8\n"
"help.text"
-msgid "ObjName As String = \"MyObj\""
-msgstr "Modeli i lidhëses është i pavlefshëm"
+msgid "<ahelp hid=\"HID_MACRO_GROUP\">Lists the open $[officename] documents and applications. Click the name of the location where you want to save the macros.</ahelp>"
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3154939\n"
+"05060700.xhp\n"
+"hd_id3149744\n"
"9\n"
"help.text"
-msgid "ObjVar = FindObject( ObjName As String )"
-msgstr ""
+msgid "Macro name"
+msgstr "Makro emër"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3150793\n"
+"05060700.xhp\n"
+"par_id3151391\n"
"10\n"
"help.text"
-msgid "PropName As String = \"Prop1\""
-msgstr "Modeli i lidhëses është i pavlefshëm"
+msgid "<ahelp hid=\"HID_MACRO_MACROS\">Lists the available macros. Click the macro that you want to assign to the selected object.</ahelp>"
+msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3154141\n"
+"05060700.xhp\n"
+"hd_id3159260\n"
"11\n"
"help.text"
-msgid "ObjProp = FindPropertyObject( ObjVar, PropName As String )"
-msgstr ""
+msgid "Assign"
+msgstr "Cakto"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3156424\n"
+"05060700.xhp\n"
+"par_id3147406\n"
"12\n"
"help.text"
-msgid "ObjProp.Command = 5"
-msgstr "DDE Komandë"
-
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3145420\n"
-"13\n"
-"help.text"
-msgid "This allows names to be dynamically created at run-time. For example:"
-msgstr ""
-
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3153104\n"
-"14\n"
-"help.text"
-msgid "\"TextEdit1\" to TextEdit5\" in a loop to create five control names."
+msgid "<ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_ASSIGN\">Assigns the selected macro to the specified event.</ahelp> The assigned macro's entries are set after the event."
msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3150767\n"
+"05060700.xhp\n"
+"hd_id3150533\n"
"15\n"
"help.text"
-msgid "See also: <link href=\"text/sbasic/shared/03103900.xhp\" name=\"FindPropertyObject\">FindPropertyObject</link>"
-msgstr ""
+msgid "Remove"
+msgstr "Largo"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"hd_id3150868\n"
+"05060700.xhp\n"
+"par_id3166456\n"
"16\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03103800.xhp
-msgctxt ""
-"03103800.xhp\n"
-"par_id3151042\n"
-"17\n"
-"help.text"
-msgid "FindObject( ObjName As String )"
+msgid "<variable id=\"aufheb\"><ahelp hid=\"SFX2_PUSHBUTTON_RID_SFX_TP_MACROASSIGN_PB_DELETE\">Removes the macro that is assigned to the selected item.</ahelp></variable>"
msgstr ""
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"hd_id3159254\n"
-"18\n"
+"05060700.xhp\n"
+"hd_id3159126\n"
+"85\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Macro selection"
+msgstr "Zgjedhja e databazës"
-#: 03103800.xhp
+#: 05060700.xhp
msgctxt ""
-"03103800.xhp\n"
-"par_id3150439\n"
-"19\n"
+"05060700.xhp\n"
+"par_id3149149\n"
+"86\n"
"help.text"
-msgid "<emph>ObjName: </emph>String that specifies the name of the object that you want to address at run-time."
+msgid "<ahelp hid=\"SFX2_LISTBOX_RID_SFX_TP_MACROASSIGN_LB_SCRIPTTYPE\">Select the macro that you want to assign.</ahelp>"
msgstr ""
-#: 03020303.xhp
+#: keys.xhp
msgctxt ""
-"03020303.xhp\n"
+"keys.xhp\n"
"tit\n"
"help.text"
-msgid "Lof Function [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "Keyboard Shortcuts in the Basic IDE"
+msgstr ""
-#: 03020303.xhp
+#: keys.xhp
msgctxt ""
-"03020303.xhp\n"
-"bm_id3156024\n"
+"keys.xhp\n"
+"bm_id3154760\n"
"help.text"
-msgid "<bookmark_value>Lof function</bookmark_value>"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>keyboard;in IDE</bookmark_value><bookmark_value>shortcut keys;Basic IDE</bookmark_value><bookmark_value>IDE;keyboard shortcuts</bookmark_value>"
+msgstr ""
-#: 03020303.xhp
+#: keys.xhp
msgctxt ""
-"03020303.xhp\n"
-"hd_id3156024\n"
+"keys.xhp\n"
+"hd_id3154760\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03020303.xhp\" name=\"Lof Function [Runtime]\">Lof Function [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/keys.xhp\" name=\"Keyboard Shortcuts in the Basic IDE\">Keyboard Shortcuts in the Basic IDE</link>"
msgstr ""
-#: 03020303.xhp
+#: keys.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3146794\n"
+"keys.xhp\n"
+"par_id3149655\n"
"2\n"
"help.text"
-msgid "Returns the size of an open file in bytes."
+msgid "In the Basic IDE you can use the following keyboard shortcuts:"
msgstr ""
-#: 03020303.xhp
+#: keys.xhp
msgctxt ""
-"03020303.xhp\n"
-"hd_id3153380\n"
+"keys.xhp\n"
+"par_id3154908\n"
"3\n"
"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "Action"
+msgstr "Veprim"
-#: 03020303.xhp
+#: keys.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3150359\n"
+"keys.xhp\n"
+"par_id3153192\n"
"4\n"
"help.text"
-msgid "Lof (FileNumber)"
-msgstr "~Kërkim i Qëllimit..."
+msgid "Keyboard shortcut"
+msgstr "Tastet përshpejtuese"
-#: 03020303.xhp
+#: keys.xhp
msgctxt ""
-"03020303.xhp\n"
-"hd_id3154141\n"
+"keys.xhp\n"
+"par_id3159254\n"
"5\n"
"help.text"
-msgid "Return value:"
-msgstr "Vlerë absolute"
+msgid "Run code starting from the first line, or from the current breakpoint, if the program stopped there before"
+msgstr ""
-#: 03020303.xhp
+#: keys.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3147230\n"
+"keys.xhp\n"
+"par_id3163712\n"
"6\n"
"help.text"
-msgid "Long"
-msgstr "Standard (e gjatë)"
+msgid "F5"
+msgstr ""
-#: 03020303.xhp
+#: keys.xhp
msgctxt ""
-"03020303.xhp\n"
-"hd_id3156281\n"
+"keys.xhp\n"
+"par_id3150010\n"
"7\n"
"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
+msgid "Stop"
+msgstr "Ndal"
-#: 03020303.xhp
+#: keys.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3150869\n"
+"keys.xhp\n"
+"par_id3154319\n"
"8\n"
"help.text"
-msgid "<emph>FileNumber:</emph> Any numeric expression that contains the file number that is specified in the Open statement."
-msgstr ""
+msgid "Shift+F5"
+msgstr "Zhvendos djathtas"
-#: 03020303.xhp
+#: keys.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3147349\n"
-"9\n"
+"keys.xhp\n"
+"par_id3151073\n"
+"11\n"
"help.text"
-msgid "To obtain the length of a file that is not open, use the <emph>FileLen</emph> function."
+msgid "Add <link href=\"text/sbasic/shared/01050100.xhp\" name=\"watch\">watch</link> for the variable at the cursor"
msgstr ""
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"hd_id3155415\n"
-"10\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03020303.xhp
+#: keys.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3154730\n"
-"13\n"
+"keys.xhp\n"
+"par_id3154731\n"
+"12\n"
"help.text"
-msgid "Dim sText As Variant REM must be a Variant"
+msgid "F7"
msgstr ""
-#: 03020303.xhp
+#: keys.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3156276\n"
-"19\n"
+"keys.xhp\n"
+"par_id3148455\n"
+"13\n"
"help.text"
-msgid "Seek #iNumber,1 REM Position at start"
+msgid "Single step through each statement, starting at the first line or at that statement where the program execution stopped before."
msgstr ""
-#: 03020303.xhp
+#: keys.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3148405\n"
-"20\n"
+"keys.xhp\n"
+"par_id3150716\n"
+"14\n"
"help.text"
-msgid "Put #iNumber,, \"This is the first line of text\" REM Fill with text"
+msgid "F8"
msgstr ""
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3154756\n"
-"21\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the second line of text\""
-msgstr "Nga kreu në fund"
-
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3145643\n"
-"22\n"
-"help.text"
-msgid "Put #iNumber,, \"This is the third line of text\""
-msgstr "Nga kreu në fund"
-
-#: 03020303.xhp
-msgctxt ""
-"03020303.xhp\n"
-"par_id3150299\n"
-"31\n"
-"help.text"
-msgid "Put #iNumber,,\"This is a new line of text\""
-msgstr "Nga kreu në fund"
-
-#: 03020303.xhp
+#: keys.xhp
msgctxt ""
-"03020303.xhp\n"
-"par_id3166425\n"
-"34\n"
+"keys.xhp\n"
+"par_id3156275\n"
+"15\n"
"help.text"
-msgid "Put #iNumber,20,\"This is the text in record 20\""
+msgid "Single step as with F8, but a function call is considered to be only <emph>one</emph> statement"
msgstr ""
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"tit\n"
-"help.text"
-msgid "Call Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"bm_id3154422\n"
+"keys.xhp\n"
+"par_id3153764\n"
+"16\n"
"help.text"
-msgid "<bookmark_value>Call statement</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "Shift+F8"
+msgstr "Zhvendos djathtas"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"hd_id3154422\n"
-"1\n"
+"keys.xhp\n"
+"par_id3150323\n"
+"17\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03090401.xhp\" name=\"Call Statement [Runtime]\">Call Statement [Runtime]</link>"
+msgid "Set or remove a <link href=\"text/sbasic/shared/01030300.xhp\" name=\"breakpoint\">breakpoint</link> at the current line or all breakpoints in the current selection"
msgstr ""
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"par_id3153394\n"
-"2\n"
+"keys.xhp\n"
+"par_id3147339\n"
+"18\n"
"help.text"
-msgid "Transfers the control of the program to a subroutine, a function, or a DLL procedure."
+msgid "F9"
msgstr ""
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3153345\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"par_id3150984\n"
-"4\n"
-"help.text"
-msgid "[Call] Name [Parameter]"
-msgstr "Beta parametri i Beta shprëndarjes."
-
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3150771\n"
-"5\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"par_id3148473\n"
-"6\n"
+"keys.xhp\n"
+"par_id3153963\n"
+"19\n"
"help.text"
-msgid "<emph>Name:</emph> Name of the subroutine, the function, or the DLL that you want to call"
+msgid "Enable/disable the breakpoint at the current line or all breakpoints in the current selection"
msgstr ""
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"par_id3148946\n"
-"7\n"
+"keys.xhp\n"
+"par_id3155175\n"
+"20\n"
"help.text"
-msgid "<emph>Parameter:</emph> Parameters to pass to the procedure. The type and number of parameters is dependent on the routine that is executing."
-msgstr ""
+msgid "Shift+F9"
+msgstr "Zhvendos djathtas"
-#: 03090401.xhp
+#: keys.xhp
msgctxt ""
-"03090401.xhp\n"
-"par_id3154216\n"
-"8\n"
+"keys.xhp\n"
+"par_id3154702\n"
+"21\n"
"help.text"
-msgid "A keyword is optional when you call a procedure. If a function is executed as an expression, the parameters must be enclosed by brackets in the statement. If a DLL is called, it must first be specified in the <emph>Declare-Statement</emph>."
+msgid "A running macro can be aborted with Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q, also from outside of the Basic IDE. If you are inside the Basic IDE and the macro halts at a breakpoint, Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q stops execution of the macro, but you can recognize this only after the next F5, F8, or Shift+F8."
msgstr ""
-#: 03090401.xhp
-msgctxt ""
-"03090401.xhp\n"
-"hd_id3125865\n"
-"9\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03130100.xhp
+#: main0211.xhp
msgctxt ""
-"03130100.xhp\n"
+"main0211.xhp\n"
"tit\n"
"help.text"
-msgid "Beep Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
+msgid "Macro Toolbar"
+msgstr "Shiriti i makrove kyçur/çkyçur"
-#: 03130100.xhp
+#: main0211.xhp
msgctxt ""
-"03130100.xhp\n"
-"bm_id3143284\n"
+"main0211.xhp\n"
+"bm_id3150543\n"
"help.text"
-msgid "<bookmark_value>Beep statement</bookmark_value>"
-msgstr "Blloku i formulimit ende i hapur: $(ARG1) mungon"
+msgid "<bookmark_value>toolbars; Basic IDE</bookmark_value><bookmark_value>macro toolbar</bookmark_value>"
+msgstr ""
-#: 03130100.xhp
+#: main0211.xhp
msgctxt ""
-"03130100.xhp\n"
-"hd_id3143284\n"
+"main0211.xhp\n"
+"hd_id3150543\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/03130100.xhp\" name=\"Beep Statement [Runtime]\">Beep Statement [Runtime]</link>"
+msgid "<link href=\"text/sbasic/shared/main0211.xhp\" name=\"Macro Toolbar\">Macro Toolbar</link>"
msgstr ""
-#: 03130100.xhp
+#: main0211.xhp
msgctxt ""
-"03130100.xhp\n"
-"par_id3159201\n"
+"main0211.xhp\n"
+"par_id3147288\n"
"2\n"
"help.text"
-msgid "Plays a tone through the computer's speaker. The tone is system-dependent and you cannot modify its volume or pitch."
-msgstr ""
-
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3153990\n"
-"3\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
-
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"par_id3147291\n"
-"4\n"
-"help.text"
-msgid "Beep"
+msgid "<ahelp visibility=\"visible\" hid=\".uno:MacroBarVisible\">The <emph>Macro Toolbar </emph>contains commands to create, edit, and run macros.</ahelp>"
msgstr ""
-#: 03130100.xhp
-msgctxt ""
-"03130100.xhp\n"
-"hd_id3148538\n"
-"5\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03101110.xhp
+#: main0601.xhp
msgctxt ""
-"03101110.xhp\n"
+"main0601.xhp\n"
"tit\n"
"help.text"
-msgid "DefCur Statement [Runtime]"
-msgstr "Gabim në afatin e ekzekutimit të BASIC"
-
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"bm_id9555345\n"
-"help.text"
-msgid "<bookmark_value>DefCur statement</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN1057D\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/03101110.xhp\">DefCur Statement [Runtime]</link>"
-msgstr ""
-
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN1058D\n"
-"help.text"
-msgid "If no type-declaration character or keyword is specified, the DefCur statement sets the default variable type, according to a letter range."
-msgstr ""
-
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN10590\n"
-"help.text"
-msgid "Syntax:"
-msgstr "**Gabim Sintaksor**"
+msgid "$[officename] Basic Help"
+msgstr "%PRODUCTNAME ndihma për Writer"
-#: 03101110.xhp
+#: main0601.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN10594\n"
+"main0601.xhp\n"
+"hd_id3154232\n"
+"1\n"
"help.text"
-msgid "Defxxx Characterrange1[, Characterrange2[,...]]"
+msgid "<link href=\"text/sbasic/shared/main0601.xhp\" name=\"$[officename] Basic Help\">%PRODUCTNAME Basic Help</link>"
msgstr ""
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN10597\n"
-"help.text"
-msgid "Parameters:"
-msgstr "Parametrat animues"
-
-#: 03101110.xhp
+#: main0601.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN1059B\n"
+"main0601.xhp\n"
+"par_id3153894\n"
+"4\n"
"help.text"
-msgid "<emph>Characterrange:</emph> Letters that specify the range of variables that you want to set a default data type for."
+msgid "%PRODUCTNAME provides an Application Programming Interface (API) that allows controlling the $[officename] components with different programming languages by using the $[officename] Software Development Kit (SDK). For more information about the $[officename] API and the Software Development Kit, visit <link href=\"http://api.libreoffice.org/\" name=\"http://api.libreoffice.org\">http://api.libreoffice.org</link>"
msgstr ""
-#: 03101110.xhp
+#: main0601.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN105A2\n"
+"main0601.xhp\n"
+"par_id3147226\n"
+"10\n"
"help.text"
-msgid "<emph>xxx:</emph> Keyword that defines the default variable type:"
+msgid "This help section explains the most common runtime functions of %PRODUCTNAME Basic. For more in-depth information please refer to the <link href=\"http://wiki.documentfoundation.org/Documentation/BASIC_Guide\">OpenOffice.org BASIC Programming Guide</link> on the Wiki."
msgstr ""
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105A9\n"
-"help.text"
-msgid "<emph>Keyword:</emph> Default variable type"
-msgstr "**Ndryshorja nuk u gjet**"
-
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105B0\n"
-"help.text"
-msgid "<emph>DefCur:</emph> Currency"
-msgstr "Formati numerik: Valuta"
-
-#: 03101110.xhp
-msgctxt ""
-"03101110.xhp\n"
-"par_idN105B7\n"
-"help.text"
-msgid "Example:"
-msgstr "Shembull"
-
-#: 03101110.xhp
+#: main0601.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN105BB\n"
+"main0601.xhp\n"
+"hd_id3146957\n"
+"9\n"
"help.text"
-msgid "REM Prefix definitions for variable types:"
-msgstr ""
+msgid "Working with %PRODUCTNAME Basic"
+msgstr "%PRODUCTNAME Basic Macro Organizues"
-#: 03101110.xhp
+#: main0601.xhp
msgctxt ""
-"03101110.xhp\n"
-"par_idN105D9\n"
+"main0601.xhp\n"
+"hd_id3148473\n"
+"7\n"
"help.text"
-msgid "cCur=Currency REM cCur is an implicit currency variable"
-msgstr ""
+msgid "Help about the Help"
+msgstr "Ndihma për %PRODUCTNAME Writer"
diff --git a/source/sq/helpcontent2/source/text/sbasic/shared/01.po b/source/sq/helpcontent2/source/text/sbasic/shared/01.po
index ad1564b2168..86e285bffd3 100644
--- a/source/sq/helpcontent2/source/text/sbasic/shared/01.po
+++ b/source/sq/helpcontent2/source/text/sbasic/shared/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:05+0200\n"
"PO-Revision-Date: 2011-04-05 19:07+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,201 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Append libraries"
-msgstr "Bashkangjitni biblotekat"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"bm_id3150502\n"
-"help.text"
-msgid "<bookmark_value>libraries; adding</bookmark_value><bookmark_value>inserting;Basic libraries</bookmark_value>"
-msgstr ""
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3150502\n"
-"1\n"
-"help.text"
-msgid "Append libraries"
-msgstr "Bashkangjitni biblotekat"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"par_id3154840\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Locate that <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open.</ahelp>"
-msgstr ""
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3149119\n"
-"3\n"
-"help.text"
-msgid "File name:"
-msgstr "Emri i skedarit:"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"par_id3147102\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">Enter a name or the path to the library that you want to append.</ahelp> You can also select a library from the list."
-msgstr ""
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3147291\n"
-"5\n"
-"help.text"
-msgid "Options"
-msgstr "Opcionet"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3147226\n"
-"7\n"
-"help.text"
-msgid "Insert as reference (read-only)"
-msgstr "Fute si adresim (vetwm e lexueshme)"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"par_id3155892\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Adds the selected library as a read-only file. The library is reloaded each time you start <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
-msgstr ""
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3145071\n"
-"9\n"
-"help.text"
-msgid "Replace existing libraries"
-msgstr "Zwvwndwso biblotekat ekzistuese"
-
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"par_id3149812\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Replaces a library that has the same name with the current library.</ahelp>"
-msgstr ""
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Change Password"
-msgstr "Ndrysho mbrojtjen e fjalëkalimit"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3159399\n"
-"1\n"
-"help.text"
-msgid "Change Password"
-msgstr "Ndrysho mbrojtjen e fjalëkalimit"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"par_id3150276\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_PASSWORD\">Protects the selected library with a password.</ahelp> You can enter a new password, or change the current password."
-msgstr ""
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3154285\n"
-"3\n"
-"help.text"
-msgid "Old password"
-msgstr "Fjalëkalim i pavlefshëm"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3153665\n"
-"4\n"
-"help.text"
-msgid "Password"
-msgstr "Fjalëkalimi"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"par_id3155628\n"
-"5\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Enter the current password for the selected library.</ahelp>"
-msgstr ""
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3153126\n"
-"6\n"
-"help.text"
-msgid "New password"
-msgstr "Fjalëkalim i pavlefshëm"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3153628\n"
-"7\n"
-"help.text"
-msgid "Password"
-msgstr "Fjalëkalimi"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"par_id3159413\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Enter a new password for the selected library.</ahelp>"
-msgstr ""
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"hd_id3148947\n"
-"9\n"
-"help.text"
-msgid "Confirm"
-msgstr "Konfirmo"
-
-#: 06130100.xhp
-msgctxt ""
-"06130100.xhp\n"
-"par_id3149457\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Repeat the new password for the selected library.</ahelp>"
-msgstr ""
-
#: 06130000.xhp
msgctxt ""
"06130000.xhp\n"
@@ -612,3 +417,198 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\"BASCTL_PUSHBUTTON_RID_TP_LIBS_RID_PB_APPEND\">Locate that $[officename] Basic library that you want to add to the current list, and then click Open.</ahelp>"
msgstr ""
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Change Password"
+msgstr "Ndrysho mbrojtjen e fjalëkalimit"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3159399\n"
+"1\n"
+"help.text"
+msgid "Change Password"
+msgstr "Ndrysho mbrojtjen e fjalëkalimit"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3150276\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_PASSWORD\">Protects the selected library with a password.</ahelp> You can enter a new password, or change the current password."
+msgstr ""
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3154285\n"
+"3\n"
+"help.text"
+msgid "Old password"
+msgstr "Fjalëkalim i pavlefshëm"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3153665\n"
+"4\n"
+"help.text"
+msgid "Password"
+msgstr "Fjalëkalimi"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3155628\n"
+"5\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Enter the current password for the selected library.</ahelp>"
+msgstr ""
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3153126\n"
+"6\n"
+"help.text"
+msgid "New password"
+msgstr "Fjalëkalim i pavlefshëm"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3153628\n"
+"7\n"
+"help.text"
+msgid "Password"
+msgstr "Fjalëkalimi"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3159413\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Enter a new password for the selected library.</ahelp>"
+msgstr ""
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3148947\n"
+"9\n"
+"help.text"
+msgid "Confirm"
+msgstr "Konfirmo"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3149457\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Repeat the new password for the selected library.</ahelp>"
+msgstr ""
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Append libraries"
+msgstr "Bashkangjitni biblotekat"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"bm_id3150502\n"
+"help.text"
+msgid "<bookmark_value>libraries; adding</bookmark_value><bookmark_value>inserting;Basic libraries</bookmark_value>"
+msgstr ""
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3150502\n"
+"1\n"
+"help.text"
+msgid "Append libraries"
+msgstr "Bashkangjitni biblotekat"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3154840\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".\">Locate that <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open.</ahelp>"
+msgstr ""
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3149119\n"
+"3\n"
+"help.text"
+msgid "File name:"
+msgstr "Emri i skedarit:"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3147102\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">Enter a name or the path to the library that you want to append.</ahelp> You can also select a library from the list."
+msgstr ""
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3147291\n"
+"5\n"
+"help.text"
+msgid "Options"
+msgstr "Opcionet"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3147226\n"
+"7\n"
+"help.text"
+msgid "Insert as reference (read-only)"
+msgstr "Fute si adresim (vetwm e lexueshme)"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3155892\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Adds the selected library as a read-only file. The library is reloaded each time you start <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
+msgstr ""
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"hd_id3145071\n"
+"9\n"
+"help.text"
+msgid "Replace existing libraries"
+msgstr "Zwvwndwso biblotekat ekzistuese"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3149812\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Replaces a library that has the same name with the current library.</ahelp>"
+msgstr ""
diff --git a/source/sq/helpcontent2/source/text/sbasic/shared/02.po b/source/sq/helpcontent2/source/text/sbasic/shared/02.po
index b4c8e205025..7405145a7b0 100644
--- a/source/sq/helpcontent2/source/text/sbasic/shared/02.po
+++ b/source/sq/helpcontent2/source/text/sbasic/shared/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:05+0200\n"
"PO-Revision-Date: 2011-04-05 19:07+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,143 +15,134 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: 11150000.xhp
+#: 11010000.xhp
msgctxt ""
-"11150000.xhp\n"
+"11010000.xhp\n"
"tit\n"
"help.text"
-msgid "Save Source As"
-msgstr "Ruaj burimin si..."
+msgid "Library"
+msgstr "Biblioteka"
-#: 11150000.xhp
+#: 11010000.xhp
msgctxt ""
-"11150000.xhp\n"
-"hd_id3149497\n"
+"11010000.xhp\n"
+"hd_id3151100\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Save Source As\">Save Source As</link>"
+msgid "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">Library</link>"
msgstr ""
-#: 11150000.xhp
+#: 11010000.xhp
msgctxt ""
-"11150000.xhp\n"
-"par_id3147261\n"
-"3\n"
+"11010000.xhp\n"
+"par_id3154136\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:SaveBasicAs\">Saves the source code of the selected Basic macro.</ahelp>"
+msgid "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">Select the library that you want to edit.</ahelp> The first module of the library that you select is displayed in the Basic IDE."
msgstr ""
-#: 11150000.xhp
+#: 11010000.xhp
msgctxt ""
-"11150000.xhp\n"
-"par_id3145071\n"
+"11010000.xhp\n"
+"par_id3149095\n"
"help.text"
-msgid "<image id=\"img_id3149182\" src=\"cmd/sc_savebasicas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149182\">Icon</alt></image>"
+msgid "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">List box Library</alt></image>"
msgstr ""
-#: 11150000.xhp
+#: 11010000.xhp
msgctxt ""
-"11150000.xhp\n"
-"par_id3151110\n"
-"2\n"
+"11010000.xhp\n"
+"par_id3147654\n"
+"3\n"
"help.text"
-msgid "Save Source As"
-msgstr "Ruaj burimin si..."
+msgid "Library List Box"
+msgstr "AutoPilot Kuti Listë"
-#: 11140000.xhp
+#: 11020000.xhp
msgctxt ""
-"11140000.xhp\n"
+"11020000.xhp\n"
"tit\n"
"help.text"
-msgid "Insert Source Text"
-msgstr "Fute burimin e tekstit"
+msgid "Compile"
+msgstr "Kompajlo"
-#: 11140000.xhp
+#: 11020000.xhp
msgctxt ""
-"11140000.xhp\n"
-"hd_id3154044\n"
+"11020000.xhp\n"
+"hd_id3148983\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Insert Source Text\">Insert Source Text</link>"
+msgid "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">Compile</link>"
msgstr ""
-#: 11140000.xhp
+#: 11020000.xhp
msgctxt ""
-"11140000.xhp\n"
-"par_id3150702\n"
+"11020000.xhp\n"
+"par_id3159201\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>"
-msgstr ""
-
-#: 11140000.xhp
-msgctxt ""
-"11140000.xhp\n"
-"par_id3150445\n"
-"3\n"
-"help.text"
-msgid "Place the cursor in the code where you want to insert the source text, and then click the <emph>Insert source text</emph> icon. Locate the file that contains the Basic source text that you want to insert, and then click <emph>Open</emph>."
+msgid "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">Compiles the Basic macro.</ahelp> You need to compile a macro after you make changes to it, or if the macro uses single or procedure steps."
msgstr ""
-#: 11140000.xhp
+#: 11020000.xhp
msgctxt ""
-"11140000.xhp\n"
-"par_id3145136\n"
+"11020000.xhp\n"
+"par_id3156426\n"
"help.text"
-msgid "<image id=\"img_id3147571\" src=\"cmd/sc_loadbasic.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147571\">Icon</alt></image>"
+msgid "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"alt_id3147576\">Icon</alt></image>"
msgstr ""
-#: 11140000.xhp
+#: 11020000.xhp
msgctxt ""
-"11140000.xhp\n"
-"par_id3145346\n"
-"4\n"
+"11020000.xhp\n"
+"par_id3149399\n"
+"3\n"
"help.text"
-msgid "Insert source text"
-msgstr "Fute burimin e tekstit"
+msgid "Compile"
+msgstr "Kompajlo"
-#: 11190000.xhp
+#: 11030000.xhp
msgctxt ""
-"11190000.xhp\n"
+"11030000.xhp\n"
"tit\n"
"help.text"
-msgid "Export Dialog"
-msgstr ""
+msgid "Run"
+msgstr "Ekzekuto"
-#: 11190000.xhp
+#: 11030000.xhp
msgctxt ""
-"11190000.xhp\n"
-"hd_id3156183\n"
+"11030000.xhp\n"
+"hd_id3153255\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Export Dialog\">Export Dialog</link>"
+msgid "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Run</link>"
msgstr ""
-#: 11190000.xhp
+#: 11030000.xhp
msgctxt ""
-"11190000.xhp\n"
-"par_id3152363\n"
+"11030000.xhp\n"
+"par_id3159201\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">In the dialog editor, this command calls a \"Save as\" dialog to export the current BASIC dialog.</ahelp>"
+msgid "<ahelp hid=\".uno:RunBasic\">Runs the first macro of the current module.</ahelp>"
msgstr ""
-#: 11190000.xhp
+#: 11030000.xhp
msgctxt ""
-"11190000.xhp\n"
-"par_id3143267\n"
+"11030000.xhp\n"
+"par_id3156410\n"
"help.text"
-msgid "<image id=\"img_id3155339\" src=\"cmd/sc_exportdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
+msgid "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153311\">Icon</alt></image>"
msgstr ""
-#: 11190000.xhp
+#: 11030000.xhp
msgctxt ""
-"11190000.xhp\n"
-"par_id3145383\n"
+"11030000.xhp\n"
+"par_id3154750\n"
"3\n"
"help.text"
-msgid "Export Dialog"
-msgstr ""
+msgid "Run"
+msgstr "Ekzekuto"
#: 11040000.xhp
msgctxt ""
@@ -204,6 +195,311 @@ msgctxt ""
msgid "Stop"
msgstr "Ndal"
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Single Step"
+msgstr "Hap i vetëm nw procedurë"
+
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"hd_id3155934\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link>"
+msgstr ""
+
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3146117\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:BasicStepInto\">Runs the macro and stops it after the next command.</ahelp>"
+msgstr ""
+
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3152801\n"
+"4\n"
+"help.text"
+msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
+msgstr ""
+
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3157958\n"
+"help.text"
+msgid "<image id=\"img_id3153345\" src=\"cmd/sc_basicstepinto.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153345\">Icon</alt></image>"
+msgstr ""
+
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3147573\n"
+"3\n"
+"help.text"
+msgid "Single Step"
+msgstr "Hap i vetëm nw procedurë"
+
+#: 11050000.xhp
+msgctxt ""
+"11050000.xhp\n"
+"par_id3149235\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step function\">Procedure Step function</link>"
+msgstr ""
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Procedure Step"
+msgstr "Hap i procedurës"
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"hd_id3148520\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step\">Procedure Step</link>"
+msgstr ""
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3152363\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.</ahelp>"
+msgstr ""
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3153394\n"
+"4\n"
+"help.text"
+msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
+msgstr ""
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3147576\n"
+"help.text"
+msgid "<image id=\"img_id3143267\" src=\"cmd/sc_basicstepover.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143267\">Icon</alt></image>"
+msgstr ""
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3154307\n"
+"3\n"
+"help.text"
+msgid "Procedure Step"
+msgstr "Hap i procedurës"
+
+#: 11060000.xhp
+msgctxt ""
+"11060000.xhp\n"
+"par_id3153562\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step function\">Single Step function</link>"
+msgstr ""
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Breakpoint"
+msgstr "Pika ndërprerëse"
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"hd_id3154863\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Breakpoint\">Breakpoint</link>"
+msgstr ""
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"par_id3155364\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ToggleBreakPoint\">Inserts a breakpoint in the program line.</ahelp>"
+msgstr ""
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"par_id3149346\n"
+"4\n"
+"help.text"
+msgid "The breakpoint is inserted at the cursor position. Use a breakpoint to interrupt a program just before an error occurs. You can then troubleshoot the program by running it in <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link> mode until the error occurs. You can also use the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> icon to check the content of the relevant variables."
+msgstr ""
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"par_id3156346\n"
+"help.text"
+msgid "<image id=\"img_id3152780\" src=\"cmd/sc_togglebreakpoint.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3152780\">Icon</alt></image>"
+msgstr ""
+
+#: 11070000.xhp
+msgctxt ""
+"11070000.xhp\n"
+"par_id3149416\n"
+"3\n"
+"help.text"
+msgid "Breakpoint"
+msgstr "Pika ndërprerëse"
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Enable Watch"
+msgstr "Aftëso orën"
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"hd_id3154863\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Enable Watch\">Enable Watch</link>"
+msgstr ""
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3093440\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:AddWatch\">Click this icon to view the variables in a macro. The contents of the variable are displayed in a separate window.</ahelp>"
+msgstr ""
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3147399\n"
+"6\n"
+"help.text"
+msgid "Click the name of a variable to select it, then click the <emph>Enable Watch</emph> icon. The value that is assigned to the variable is displayed next to its name. This value is constantly updated."
+msgstr ""
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3155892\n"
+"help.text"
+msgid "<image id=\"img_id3147209\" src=\"cmd/sc_addwatch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147209\">Icon</alt></image>"
+msgstr ""
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3150276\n"
+"3\n"
+"help.text"
+msgid "Enable Watch"
+msgstr "Aftëso orën"
+
+#: 11080000.xhp
+msgctxt ""
+"11080000.xhp\n"
+"par_id3159158\n"
+"4\n"
+"help.text"
+msgid "To remove the variable watch, select the variable in the Watch window, and then click on the <emph>Remove Watch</emph> icon."
+msgstr ""
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Object Catalog"
+msgstr "Katalogu i objektit"
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"hd_id3153255\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Object Catalog\">Object Catalog</link>"
+msgstr ""
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3151384\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ObjectCatalog\">Opens the <emph>Objects</emph> pane, where you can view Basic objects.</ahelp>"
+msgstr ""
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3147576\n"
+"15\n"
+"help.text"
+msgid "Double click the name of a function or sub to load the module that contains that function or sub, and to position the cursor. Double click the name of a module or dialog to load and display that module or dialog."
+msgstr ""
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3148538\n"
+"help.text"
+msgid "<image id=\"img_id3163803\" src=\"cmd/sc_objectcatalog.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163803\">Icon</alt></image>"
+msgstr ""
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3154515\n"
+"3\n"
+"help.text"
+msgid "Object Catalog"
+msgstr "Katalogu i objektit"
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"hd_id3146794\n"
+"13\n"
+"help.text"
+msgid "Window Area"
+msgstr "Zona e fundfaqes"
+
+#: 11090000.xhp
+msgctxt ""
+"11090000.xhp\n"
+"par_id3149655\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">Displays a hierarchical view of the current $[officename] macro libraries, modules, and dialogs. To display the contents of an item in the window, double click its name.</ahelp>"
+msgstr ""
+
#: 11100000.xhp
msgctxt ""
"11100000.xhp\n"
@@ -247,48 +543,48 @@ msgctxt ""
msgid "Macros"
msgstr "Makrot"
-#: 11160000.xhp
+#: 11110000.xhp
msgctxt ""
-"11160000.xhp\n"
+"11110000.xhp\n"
"tit\n"
"help.text"
-msgid "Step Out"
-msgstr "Dil jashtë"
+msgid "Modules"
+msgstr "Modulet"
-#: 11160000.xhp
+#: 11110000.xhp
msgctxt ""
-"11160000.xhp\n"
-"hd_id3148983\n"
+"11110000.xhp\n"
+"hd_id3148520\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Step Out\">Step Out</link>"
+msgid "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">Modules</link>"
msgstr ""
-#: 11160000.xhp
+#: 11110000.xhp
msgctxt ""
-"11160000.xhp\n"
-"par_id3157898\n"
+"11110000.xhp\n"
+"par_id3156414\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">Jumps back to the previous routine in the current macro.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Click here to open the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog.</ahelp>"
msgstr ""
-#: 11160000.xhp
+#: 11110000.xhp
msgctxt ""
-"11160000.xhp\n"
-"par_id3156410\n"
+"11110000.xhp\n"
+"par_id3157958\n"
"help.text"
-msgid "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"alt_id3159233\">Icon</alt></image>"
+msgid "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr ""
-#: 11160000.xhp
+#: 11110000.xhp
msgctxt ""
-"11160000.xhp\n"
-"par_id3158421\n"
+"11110000.xhp\n"
+"par_id3145383\n"
"3\n"
"help.text"
-msgid "Step Out"
-msgstr "Dil jashtë"
+msgid "Modules"
+msgstr "Modulet"
#: 11120000.xhp
msgctxt ""
@@ -333,309 +629,329 @@ msgctxt ""
msgid "Find Parentheses"
msgstr "Gjej kllapat"
-#: 11110000.xhp
+#: 11140000.xhp
msgctxt ""
-"11110000.xhp\n"
+"11140000.xhp\n"
"tit\n"
"help.text"
-msgid "Modules"
-msgstr "Modulet"
+msgid "Insert Source Text"
+msgstr "Fute burimin e tekstit"
-#: 11110000.xhp
+#: 11140000.xhp
msgctxt ""
-"11110000.xhp\n"
-"hd_id3148520\n"
+"11140000.xhp\n"
+"hd_id3154044\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11110000.xhp\" name=\"Modules\">Modules</link>"
+msgid "<link href=\"text/sbasic/shared/02/11140000.xhp\" name=\"Insert Source Text\">Insert Source Text</link>"
msgstr ""
-#: 11110000.xhp
+#: 11140000.xhp
msgctxt ""
-"11110000.xhp\n"
-"par_id3156414\n"
+"11140000.xhp\n"
+"par_id3150702\n"
"2\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:ModuleDialog\">Click here to open the <link href=\"text/sbasic/shared/01/06130000.xhp\" name=\"Macro Organizer\"><emph>Macro Organizer</emph></link> dialog.</ahelp>"
+msgid "<ahelp hid=\".uno:LoadBasic\">Opens the Basic source text in the Basic IDE window.</ahelp>"
msgstr ""
-#: 11110000.xhp
+#: 11140000.xhp
msgctxt ""
-"11110000.xhp\n"
-"par_id3157958\n"
+"11140000.xhp\n"
+"par_id3150445\n"
+"3\n"
"help.text"
-msgid "<image src=\"cmd/sc_moduledialog.png\" id=\"img_id3155535\"><alt id=\"alt_id3155535\">Icon</alt></image>"
+msgid "Place the cursor in the code where you want to insert the source text, and then click the <emph>Insert source text</emph> icon. Locate the file that contains the Basic source text that you want to insert, and then click <emph>Open</emph>."
msgstr ""
-#: 11110000.xhp
+#: 11140000.xhp
msgctxt ""
-"11110000.xhp\n"
-"par_id3145383\n"
-"3\n"
+"11140000.xhp\n"
+"par_id3145136\n"
"help.text"
-msgid "Modules"
-msgstr "Modulet"
+msgid "<image id=\"img_id3147571\" src=\"cmd/sc_loadbasic.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3147571\">Icon</alt></image>"
+msgstr ""
-#: 11060000.xhp
+#: 11140000.xhp
msgctxt ""
-"11060000.xhp\n"
+"11140000.xhp\n"
+"par_id3145346\n"
+"4\n"
+"help.text"
+msgid "Insert source text"
+msgstr "Fute burimin e tekstit"
+
+#: 11150000.xhp
+msgctxt ""
+"11150000.xhp\n"
"tit\n"
"help.text"
-msgid "Procedure Step"
-msgstr "Hap i procedurës"
+msgid "Save Source As"
+msgstr "Ruaj burimin si..."
-#: 11060000.xhp
+#: 11150000.xhp
msgctxt ""
-"11060000.xhp\n"
-"hd_id3148520\n"
+"11150000.xhp\n"
+"hd_id3149497\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step\">Procedure Step</link>"
+msgid "<link href=\"text/sbasic/shared/02/11150000.xhp\" name=\"Save Source As\">Save Source As</link>"
msgstr ""
-#: 11060000.xhp
+#: 11150000.xhp
msgctxt ""
-"11060000.xhp\n"
-"par_id3152363\n"
-"2\n"
+"11150000.xhp\n"
+"par_id3147261\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".uno:BasicStepOver\">Runs the macro and stops it after the next procedure.</ahelp>"
+msgid "<ahelp hid=\".uno:SaveBasicAs\">Saves the source code of the selected Basic macro.</ahelp>"
msgstr ""
-#: 11060000.xhp
+#: 11150000.xhp
msgctxt ""
-"11060000.xhp\n"
-"par_id3153394\n"
-"4\n"
+"11150000.xhp\n"
+"par_id3145071\n"
"help.text"
-msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
+msgid "<image id=\"img_id3149182\" src=\"cmd/sc_savebasicas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149182\">Icon</alt></image>"
msgstr ""
-#: 11060000.xhp
+#: 11150000.xhp
msgctxt ""
-"11060000.xhp\n"
-"par_id3147576\n"
+"11150000.xhp\n"
+"par_id3151110\n"
+"2\n"
"help.text"
-msgid "<image id=\"img_id3143267\" src=\"cmd/sc_basicstepover.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3143267\">Icon</alt></image>"
-msgstr ""
+msgid "Save Source As"
+msgstr "Ruaj burimin si..."
-#: 11060000.xhp
+#: 11160000.xhp
msgctxt ""
-"11060000.xhp\n"
-"par_id3154307\n"
-"3\n"
+"11160000.xhp\n"
+"tit\n"
"help.text"
-msgid "Procedure Step"
-msgstr "Hap i procedurës"
+msgid "Step Out"
+msgstr "Dil jashtë"
-#: 11060000.xhp
+#: 11160000.xhp
msgctxt ""
-"11060000.xhp\n"
-"par_id3153562\n"
-"6\n"
+"11160000.xhp\n"
+"hd_id3148983\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step function\">Single Step function</link>"
+msgid "<link href=\"text/sbasic/shared/02/11160000.xhp\" name=\"Step Out\">Step Out</link>"
msgstr ""
-#: 11090000.xhp
+#: 11160000.xhp
msgctxt ""
-"11090000.xhp\n"
-"tit\n"
+"11160000.xhp\n"
+"par_id3157898\n"
+"2\n"
"help.text"
-msgid "Object Catalog"
-msgstr "Katalogu i objektit"
+msgid "<ahelp hid=\".uno:BasicStepOut\" visibility=\"visible\">Jumps back to the previous routine in the current macro.</ahelp>"
+msgstr ""
-#: 11090000.xhp
+#: 11160000.xhp
msgctxt ""
-"11090000.xhp\n"
-"hd_id3153255\n"
-"1\n"
+"11160000.xhp\n"
+"par_id3156410\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11090000.xhp\" name=\"Object Catalog\">Object Catalog</link>"
+msgid "<image src=\"cmd/sc_basicstepout.png\" id=\"img_id3159233\"><alt id=\"alt_id3159233\">Icon</alt></image>"
msgstr ""
-#: 11090000.xhp
+#: 11160000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3151384\n"
-"2\n"
+"11160000.xhp\n"
+"par_id3158421\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".uno:ObjectCatalog\">Opens the <emph>Objects</emph> dialog, where you can view Basic objects.</ahelp>"
+msgid "Step Out"
+msgstr "Dil jashtë"
+
+#: 11170000.xhp
+msgctxt ""
+"11170000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Manage Breakpoints"
+msgstr "Trajto pikat ndërprerëse"
+
+#: 11170000.xhp
+msgctxt ""
+"11170000.xhp\n"
+"hd_id3156183\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
msgstr ""
-#: 11090000.xhp
+#: 11170000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3147576\n"
-"15\n"
+"11170000.xhp\n"
+"par_id3152363\n"
+"2\n"
"help.text"
-msgid "Double click the name of a function or sub to load the module that contains that function or sub, and to position the cursor. Click the name of a module or dialog and then click the <emph>Show</emph> icon to load and display that module or dialog."
+msgid "<ahelp hid=\".\">Calls a dialog to manage breakpoints.</ahelp>"
msgstr ""
-#: 11090000.xhp
+#: 11170000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3148538\n"
+"11170000.xhp\n"
+"par_id3143267\n"
"help.text"
-msgid "<image id=\"img_id3163803\" src=\"cmd/sc_objectcatalog.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3163803\">Icon</alt></image>"
+msgid "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
msgstr ""
-#: 11090000.xhp
+#: 11170000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3154515\n"
+"11170000.xhp\n"
+"par_id3145383\n"
"3\n"
"help.text"
-msgid "Object Catalog"
-msgstr "Katalogu i objektit"
+msgid "Manage Breakpoints"
+msgstr "Trajto pikat ndërprerëse"
-#: 11090000.xhp
+#: 11170000.xhp
msgctxt ""
-"11090000.xhp\n"
-"hd_id3155388\n"
+"11170000.xhp\n"
+"par_id3154897\n"
"4\n"
"help.text"
-msgid "Show"
-msgstr "Shfaq"
+msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints dialog\"><emph>Manage Breakpoints</emph> dialog</link>"
+msgstr ""
-#: 11090000.xhp
+#: 11180000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3155630\n"
-"5\n"
+"11180000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_OBJCAT_SHOW\">Display the source text or dialog of a selected object.</ahelp>"
+msgid "Import Dialog"
msgstr ""
-#: 11090000.xhp
+#: 11180000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3153126\n"
+"11180000.xhp\n"
+"hd_id3156183\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3148474\" src=\"basctl/res/im01.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148474\">Icon</alt></image>"
+msgid "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\">Import Dialog</link>"
msgstr ""
-#: 11090000.xhp
+#: 11180000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3147560\n"
-"6\n"
+"11180000.xhp\n"
+"par_id3152363\n"
+"2\n"
"help.text"
-msgid "Show"
-msgstr "Shfaq"
+msgid "<ahelp hid=\".\">Calls an \"Open\" dialog to import a BASIC dialog file.</ahelp>"
+msgstr ""
-#: 11090000.xhp
+#: 11180000.xhp
msgctxt ""
-"11090000.xhp\n"
-"hd_id3146794\n"
-"13\n"
+"11180000.xhp\n"
+"par_id0929200903505211\n"
"help.text"
-msgid "Window Area"
-msgstr "Zona e fundfaqes"
+msgid "If the imported dialog has a name that already exists in the library, you see a message box where you can decide to rename the imported dialog. In this case the dialog will be renamed to the next free \"automatic\" name like when creating a new dialog. Or you can replace the existing dialog by the imported dialog. If you click Cancel the dialog is not imported."
+msgstr ""
-#: 11090000.xhp
+#: 11180000.xhp
msgctxt ""
-"11090000.xhp\n"
-"par_id3149655\n"
-"14\n"
+"11180000.xhp\n"
+"par_id0929200903505360\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_OBJECTCAT\">Displays a hierarchical view of the current $[officename] macro libraries, modules, and dialogs. To display the contents of an item in the window, double-click its name or select the name and click the <emph>Show</emph> icon.</ahelp>"
+msgid "Dialogs can contain localization data. When importing a dialog, a mismatch of the dialogs' localization status can occur."
msgstr ""
-#: 11070000.xhp
+#: 11180000.xhp
msgctxt ""
-"11070000.xhp\n"
-"tit\n"
+"11180000.xhp\n"
+"par_id0929200903505320\n"
"help.text"
-msgid "Breakpoint"
-msgstr "Pika ndërprerëse"
+msgid "If the library contains additional languages compared to the imported dialog, or if the imported dialog is not localized at all, then the additional languages will silently be added to the imported dialog using the strings of the dialog's default locale."
+msgstr ""
-#: 11070000.xhp
+#: 11180000.xhp
msgctxt ""
-"11070000.xhp\n"
-"hd_id3154863\n"
-"1\n"
+"11180000.xhp\n"
+"par_id0929200903505383\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11070000.xhp\" name=\"Breakpoint\">Breakpoint</link>"
+msgid "If the imported dialog contains additional languages compared to the library, or if the library is not localized at all, then you see a message box with Add, Omit, and Cancel buttons."
msgstr ""
-#: 11070000.xhp
+#: 11180000.xhp
msgctxt ""
-"11070000.xhp\n"
-"par_id3155364\n"
-"2\n"
+"11180000.xhp\n"
+"par_id0929200903505340\n"
"help.text"
-msgid "<ahelp hid=\".uno:ToggleBreakPoint\">Inserts a breakpoint in the program line.</ahelp>"
+msgid "Add: The additional languages from the imported dialog will be added to the already existing dialog. The resources from the library's default language will be used for the new languages. This is the same as if you add these languages manually."
msgstr ""
-#: 11070000.xhp
+#: 11180000.xhp
msgctxt ""
-"11070000.xhp\n"
-"par_id3149346\n"
-"4\n"
+"11180000.xhp\n"
+"par_id0929200903505367\n"
"help.text"
-msgid "The breakpoint is inserted at the cursor position. Use a breakpoint to interrupt a program just before an error occurs. You can then troubleshoot the program by running it in <link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link> mode until the error occurs. You can also use the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> icon to check the content of the relevant variables."
+msgid "Omit: The library's language settings will stay unchanged. The imported dialog's resources for the omitted languages are not copied into the library, but they remain in the imported dialog's source files."
msgstr ""
-#: 11070000.xhp
+#: 11180000.xhp
msgctxt ""
-"11070000.xhp\n"
-"par_id3156346\n"
+"11180000.xhp\n"
+"par_id3143267\n"
"help.text"
-msgid "<image id=\"img_id3152780\" src=\"cmd/sc_togglebreakpoint.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3152780\">Icon</alt></image>"
+msgid "<image id=\"img_id3155339\" src=\"cmd/sc_importdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
msgstr ""
-#: 11070000.xhp
+#: 11180000.xhp
msgctxt ""
-"11070000.xhp\n"
-"par_id3149416\n"
+"11180000.xhp\n"
+"par_id3145383\n"
"3\n"
"help.text"
-msgid "Breakpoint"
-msgstr "Pika ndërprerëse"
+msgid "Import Dialog"
+msgstr ""
-#: 11020000.xhp
+#: 11190000.xhp
msgctxt ""
-"11020000.xhp\n"
+"11190000.xhp\n"
"tit\n"
"help.text"
-msgid "Compile"
-msgstr "Kompajlo"
+msgid "Export Dialog"
+msgstr ""
-#: 11020000.xhp
+#: 11190000.xhp
msgctxt ""
-"11020000.xhp\n"
-"hd_id3148983\n"
+"11190000.xhp\n"
+"hd_id3156183\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11020000.xhp\" name=\"Compile\">Compile</link>"
+msgid "<link href=\"text/sbasic/shared/02/11190000.xhp\" name=\"Export Dialog\">Export Dialog</link>"
msgstr ""
-#: 11020000.xhp
+#: 11190000.xhp
msgctxt ""
-"11020000.xhp\n"
-"par_id3159201\n"
+"11190000.xhp\n"
+"par_id3152363\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:CompileBasic\" visibility=\"visible\">Compiles the Basic macro.</ahelp> You need to compile a macro after you make changes to it, or if the macro uses single or procedure steps."
+msgid "<ahelp hid=\".\">In the dialog editor, this command calls a \"Save as\" dialog to export the current BASIC dialog.</ahelp>"
msgstr ""
-#: 11020000.xhp
+#: 11190000.xhp
msgctxt ""
-"11020000.xhp\n"
-"par_id3156426\n"
+"11190000.xhp\n"
+"par_id3143267\n"
"help.text"
-msgid "<image src=\"cmd/sc_compilebasic.png\" id=\"img_id3147576\"><alt id=\"alt_id3147576\">Icon</alt></image>"
+msgid "<image id=\"img_id3155339\" src=\"cmd/sc_exportdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
msgstr ""
-#: 11020000.xhp
+#: 11190000.xhp
msgctxt ""
-"11020000.xhp\n"
-"par_id3149399\n"
+"11190000.xhp\n"
+"par_id3145383\n"
"3\n"
"help.text"
-msgid "Compile"
-msgstr "Kompajlo"
+msgid "Export Dialog"
+msgstr ""
#: 20000000.xhp
msgctxt ""
@@ -1404,354 +1720,3 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\".\">Adds a tree control that can show a hierarchical list. You can populate the list by your program, using API calls (XtreeControl).</ahelp>"
msgstr ""
-
-#: 11010000.xhp
-msgctxt ""
-"11010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Library"
-msgstr "Biblioteka"
-
-#: 11010000.xhp
-msgctxt ""
-"11010000.xhp\n"
-"hd_id3151100\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11010000.xhp\" name=\"Library\">Library</link>"
-msgstr ""
-
-#: 11010000.xhp
-msgctxt ""
-"11010000.xhp\n"
-"par_id3154136\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:LibSelector\" visibility=\"visible\">Select the library that you want to edit.</ahelp> The first module of the library that you select is displayed in the Basic IDE."
-msgstr ""
-
-#: 11010000.xhp
-msgctxt ""
-"11010000.xhp\n"
-"par_id3149095\n"
-"help.text"
-msgid "<image src=\"res/helpimg/feldalle.png\" id=\"img_id3147576\" localize=\"true\"><alt id=\"alt_id3147576\">List box Library</alt></image>"
-msgstr ""
-
-#: 11010000.xhp
-msgctxt ""
-"11010000.xhp\n"
-"par_id3147654\n"
-"3\n"
-"help.text"
-msgid "Library List Box"
-msgstr "AutoPilot Kuti Listë"
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Import Dialog"
-msgstr ""
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"hd_id3156183\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11180000.xhp\" name=\"Import Dialog\">Import Dialog</link>"
-msgstr ""
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id3152363\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Calls an \"Open\" dialog to import a BASIC dialog file.</ahelp>"
-msgstr ""
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id0929200903505211\n"
-"help.text"
-msgid "If the imported dialog has a name that already exists in the library, you see a message box where you can decide to rename the imported dialog. In this case the dialog will be renamed to the next free \"automatic\" name like when creating a new dialog. Or you can replace the existing dialog by the imported dialog. If you click Cancel the dialog is not imported."
-msgstr ""
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id0929200903505360\n"
-"help.text"
-msgid "Dialogs can contain localization data. When importing a dialog, a mismatch of the dialogs' localization status can occur."
-msgstr ""
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id0929200903505320\n"
-"help.text"
-msgid "If the library contains additional languages compared to the imported dialog, or if the imported dialog is not localized at all, then the additional languages will silently be added to the imported dialog using the strings of the dialog's default locale."
-msgstr ""
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id0929200903505383\n"
-"help.text"
-msgid "If the imported dialog contains additional languages compared to the library, or if the library is not localized at all, then you see a message box with Add, Omit, and Cancel buttons."
-msgstr ""
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id0929200903505340\n"
-"help.text"
-msgid "Add: The additional languages from the imported dialog will be added to the already existing dialog. The resources from the library's default language will be used for the new languages. This is the same as if you add these languages manually."
-msgstr ""
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id0929200903505367\n"
-"help.text"
-msgid "Omit: The library's language settings will stay unchanged. The imported dialog's resources for the omitted languages are not copied into the library, but they remain in the imported dialog's source files."
-msgstr ""
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id3143267\n"
-"help.text"
-msgid "<image id=\"img_id3155339\" src=\"cmd/sc_importdialog.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
-msgstr ""
-
-#: 11180000.xhp
-msgctxt ""
-"11180000.xhp\n"
-"par_id3145383\n"
-"3\n"
-"help.text"
-msgid "Import Dialog"
-msgstr ""
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Single Step"
-msgstr "Hap i vetëm nw procedurë"
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"hd_id3155934\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11050000.xhp\" name=\"Single Step\">Single Step</link>"
-msgstr ""
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"par_id3146117\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:BasicStepInto\">Runs the macro and stops it after the next command.</ahelp>"
-msgstr ""
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"par_id3152801\n"
-"4\n"
-"help.text"
-msgid "You can use this command in conjunction with the <link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Watch\">Watch</link> command to troubleshoot errors."
-msgstr ""
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"par_id3157958\n"
-"help.text"
-msgid "<image id=\"img_id3153345\" src=\"cmd/sc_basicstepinto.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153345\">Icon</alt></image>"
-msgstr ""
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"par_id3147573\n"
-"3\n"
-"help.text"
-msgid "Single Step"
-msgstr "Hap i vetëm nw procedurë"
-
-#: 11050000.xhp
-msgctxt ""
-"11050000.xhp\n"
-"par_id3149235\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11060000.xhp\" name=\"Procedure Step function\">Procedure Step function</link>"
-msgstr ""
-
-#: 11030000.xhp
-msgctxt ""
-"11030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Run"
-msgstr "Ekzekuto"
-
-#: 11030000.xhp
-msgctxt ""
-"11030000.xhp\n"
-"hd_id3153255\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11030000.xhp\" name=\"Run\">Run</link>"
-msgstr ""
-
-#: 11030000.xhp
-msgctxt ""
-"11030000.xhp\n"
-"par_id3159201\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:RunBasic\">Runs the first macro of the current module.</ahelp>"
-msgstr ""
-
-#: 11030000.xhp
-msgctxt ""
-"11030000.xhp\n"
-"par_id3156410\n"
-"help.text"
-msgid "<image id=\"img_id3153311\" src=\"cmd/sc_runbasic.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3153311\">Icon</alt></image>"
-msgstr ""
-
-#: 11030000.xhp
-msgctxt ""
-"11030000.xhp\n"
-"par_id3154750\n"
-"3\n"
-"help.text"
-msgid "Run"
-msgstr "Ekzekuto"
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Enable Watch"
-msgstr "Aftëso orën"
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"hd_id3154863\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11080000.xhp\" name=\"Enable Watch\">Enable Watch</link>"
-msgstr ""
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"par_id3093440\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:AddWatch\">Click this icon to view the variables in a macro. The contents of the variable are displayed in a separate window.</ahelp>"
-msgstr ""
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"par_id3147399\n"
-"6\n"
-"help.text"
-msgid "Click the name of a variable to select it, then click the <emph>Enable Watch</emph> icon. The value that is assigned to the variable is displayed next to its name. This value is constantly updated."
-msgstr ""
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"par_id3155892\n"
-"help.text"
-msgid "<image id=\"img_id3147209\" src=\"cmd/sc_addwatch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147209\">Icon</alt></image>"
-msgstr ""
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"par_id3150276\n"
-"3\n"
-"help.text"
-msgid "Enable Watch"
-msgstr "Aftëso orën"
-
-#: 11080000.xhp
-msgctxt ""
-"11080000.xhp\n"
-"par_id3159158\n"
-"4\n"
-"help.text"
-msgid "To remove the variable watch, select the variable in the Watch window, and then click on the <emph>Remove Watch</emph> icon."
-msgstr ""
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Manage Breakpoints"
-msgstr "Trajto pikat ndërprerëse"
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"hd_id3156183\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/02/11170000.xhp\" name=\"Manage Breakpoints\">Manage Breakpoints</link>"
-msgstr ""
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"par_id3152363\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Calls a dialog to manage breakpoints.</ahelp>"
-msgstr ""
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"par_id3143267\n"
-"help.text"
-msgid "<image id=\"img_id3155339\" src=\"cmd/sc_managebreakpoints.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155339\">Icon</alt></image>"
-msgstr ""
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"par_id3145383\n"
-"3\n"
-"help.text"
-msgid "Manage Breakpoints"
-msgstr "Trajto pikat ndërprerëse"
-
-#: 11170000.xhp
-msgctxt ""
-"11170000.xhp\n"
-"par_id3154897\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/sbasic/shared/01050300.xhp\" name=\"Manage Breakpoints dialog\"><emph>Manage Breakpoints</emph> dialog</link>"
-msgstr ""
diff --git a/source/sq/helpcontent2/source/text/scalc.po b/source/sq/helpcontent2/source/text/scalc.po
index c42cefa77d1..a4d0c72a99c 100644
--- a/source/sq/helpcontent2/source/text/scalc.po
+++ b/source/sq/helpcontent2/source/text/scalc.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 19:07+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,571 +15,312 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"tit\n"
-"help.text"
-msgid "Status Bar"
-msgstr "Shiriti i gjendjes"
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"hd_id3151385\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
-msgstr ""
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"par_id3149669\n"
-"2\n"
-"help.text"
-msgid "The <emph>Status Bar</emph> displays information about the current sheet."
-msgstr ""
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"hd_id0821200911024321\n"
-"help.text"
-msgid "Digital Signature"
-msgstr "Nënshkrimi digjital"
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"par_id0821200911024344\n"
-"help.text"
-msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
-msgstr ""
-
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
+"main0000.xhp\n"
"tit\n"
"help.text"
-msgid "Data"
-msgstr "Të dhëna"
+msgid "Welcome to the $[officename] Calc Help"
+msgstr "Duke publikuar veçoritë e produktit"
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
-"hd_id3153254\n"
+"main0000.xhp\n"
+"hd_id3147338\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Data</link>"
-msgstr ""
-
-#: main0112.xhp
-msgctxt ""
-"main0112.xhp\n"
-"par_id3147264\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Use the <emph>Data</emph> menu commands to edit the data in the current sheet. You can define ranges, sort and filter the data, calculate results, outline data, and create a pivot table.</ahelp>"
-msgstr ""
+msgid "Welcome to the $[officename] Calc Help"
+msgstr "Duke publikuar veçoritë e produktit"
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
-"hd_id3150400\n"
+"main0000.xhp\n"
+"hd_id3153965\n"
"3\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">Define Range</link>"
-msgstr ""
-
-#: main0112.xhp
-msgctxt ""
-"main0112.xhp\n"
-"hd_id3125863\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">Select Range</link>"
+msgid "How to Work With $[officename] Calc"
msgstr ""
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
-"hd_id3153726\n"
+"main0000.xhp\n"
+"par_id3147004\n"
"5\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">Sort</link>"
+msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Functions by Category\">List of Functions by Category</link>"
msgstr ""
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
-"hd_id3153142\n"
+"main0000.xhp\n"
+"hd_id3154659\n"
"6\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">Subtotals</link>"
-msgstr ""
-
-#: main0112.xhp
-msgctxt ""
-"main0112.xhp\n"
-"hd_id3151073\n"
-"10\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Validity</link>"
-msgstr ""
-
-#: main0112.xhp
-msgctxt ""
-"main0112.xhp\n"
-"hd_id3145254\n"
-"7\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple Operations\">Multiple Operations</link>"
-msgstr ""
-
-#: main0112.xhp
-msgctxt ""
-"main0112.xhp\n"
-"hd_id1387066\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
-msgstr ""
-
-#: main0112.xhp
-msgctxt ""
-"main0112.xhp\n"
-"hd_id3150717\n"
-"8\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Consolidate</link>"
+msgid "$[officename] Calc Menus, Toolbars, and Keys"
msgstr ""
-#: main0112.xhp
+#: main0000.xhp
msgctxt ""
-"main0112.xhp\n"
-"hd_id3154754\n"
-"9\n"
+"main0000.xhp\n"
+"hd_id3150883\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
-msgstr ""
+msgid "Help about the Help"
+msgstr "Ndihma për %PRODUCTNAME Writer"
-#: main0106.xhp
+#: main0100.xhp
msgctxt ""
-"main0106.xhp\n"
+"main0100.xhp\n"
"tit\n"
"help.text"
-msgid "Tools"
-msgstr "Veglat"
+msgid "Menus"
+msgstr ""
-#: main0106.xhp
+#: main0100.xhp
msgctxt ""
-"main0106.xhp\n"
-"hd_id3150769\n"
+"main0100.xhp\n"
+"hd_id3156023\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tools</link>"
+msgid "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
msgstr ""
-#: main0106.xhp
+#: main0100.xhp
msgctxt ""
-"main0106.xhp\n"
-"par_id3150440\n"
+"main0100.xhp\n"
+"par_id3154760\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">The <emph>Tools </emph>menu contains commands to check spelling, to trace sheet references, to find mistakes and to define scenarios.</ahelp>"
-msgstr ""
-
-#: main0106.xhp
-msgctxt ""
-"main0106.xhp\n"
-"par_id3152576\n"
-"10\n"
-"help.text"
-msgid "You can also create and assign macros and configure the look and feel of toolbars, menus, keyboard, and set the default options for $[officename] applications."
-msgstr ""
-
-#: main0106.xhp
-msgctxt ""
-"main0106.xhp\n"
-"hd_id3149122\n"
-"12\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
-msgstr ""
-
-#: main0106.xhp
-msgctxt ""
-"main0106.xhp\n"
-"hd_id3155768\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">Scenarios</link>"
-msgstr ""
-
-#: main0106.xhp
-msgctxt ""
-"main0106.xhp\n"
-"hd_id3154015\n"
-"9\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
-msgstr ""
-
-#: main0106.xhp
-msgctxt ""
-"main0106.xhp\n"
-"hd_id3150086\n"
-"8\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
+msgid "The following menu commands are available for spreadsheets."
msgstr ""
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
+"main0101.xhp\n"
"tit\n"
"help.text"
-msgid "$[officename] Calc Features"
-msgstr "Duke publikuar veçoritë e produktit"
+msgid "File"
+msgstr "Fajlli"
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3154758\n"
+"main0101.xhp\n"
+"hd_id3156023\n"
"1\n"
"help.text"
-msgid "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"$[officename] Calc Features\">$[officename] Calc Features</link></variable>"
+msgid "<link href=\"text/scalc/main0101.xhp\" name=\"File\">File</link>"
msgstr ""
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3149457\n"
+"main0101.xhp\n"
+"par_id3151112\n"
"2\n"
"help.text"
-msgid "$[officename] Calc is a spreadsheet application that you can use to calculate, analyze, and manage your data. You can also import and modify Microsoft Excel spreadsheets."
+msgid "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
msgstr ""
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3148797\n"
+"main0101.xhp\n"
+"hd_id3154684\n"
"4\n"
"help.text"
-msgid "Calculations"
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
msgstr ""
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3145172\n"
+"main0101.xhp\n"
+"hd_id3147434\n"
"5\n"
"help.text"
-msgid "$[officename] Calc provides you with <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">functions</link>, including statistical and banking functions, that you can use to create formulas to perform complex calculations on your data."
-msgstr ""
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3145271\n"
-"6\n"
-"help.text"
-msgid "You can also use the <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Function Wizard</link> to help you create your formulas."
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
msgstr ""
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3152596\n"
-"13\n"
-"help.text"
-msgid "What-If Calculations"
-msgstr "Tjetër/Fund nëse pa"
-
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3156444\n"
-"14\n"
+"main0101.xhp\n"
+"hd_id3147396\n"
+"11\n"
"help.text"
-msgid "An interesting feature is to be able to immediately view the results of changes made to one factor of calculations that are composed of several factors. For instance, you can see how changing the time period in a loan calculation affects the interest rates or repayment amounts. Furthermore, you can manage larger tables by using different predefined scenarios."
+msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
msgstr ""
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3148576\n"
+"main0101.xhp\n"
+"hd_id3149400\n"
"7\n"
"help.text"
-msgid "Database Functions"
-msgstr "Funksionet statistikore"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3154011\n"
-"8\n"
-"help.text"
-msgid "Use spreadsheets to arrange, store, and filter your data."
-msgstr ""
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3154942\n"
-"25\n"
-"help.text"
-msgid "$[officename] Calc lets you drag-and-drop tables from databases, or lets you use a spreadsheet as a data source for creating form letters in $[officename] Writer."
+msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
msgstr ""
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3145800\n"
+"main0101.xhp\n"
+"hd_id3155445\n"
"9\n"
"help.text"
-msgid "Arranging Data"
-msgstr "Të dhënat për ["
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3154490\n"
-"10\n"
-"help.text"
-msgid "With a few mouse-clicks, you can reorganize your spreadsheet to show or hide certain data ranges, or to format ranges according to special conditions, or to quickly calculate subtotals and totals."
-msgstr ""
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3155601\n"
-"16\n"
-"help.text"
-msgid "Dynamic Charts"
-msgstr "Azhuro diagramet"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3149121\n"
-"17\n"
-"help.text"
-msgid "$[officename] Calc lets you present spreadsheet data in dynamic charts that update automatically when the data changes."
-msgstr ""
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3153707\n"
-"18\n"
-"help.text"
-msgid "Opening and Saving Microsoft Files"
+msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
msgstr ""
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3157867\n"
-"19\n"
+"main0101.xhp\n"
+"hd_id3147339\n"
+"10\n"
"help.text"
-msgid "Use the $[officename] filters to convert Excel files, or to open and save in a variety of other <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">formats</link>."
+msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
msgstr ""
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
+"main0102.xhp\n"
"tit\n"
"help.text"
-msgid "Text Formatting Bar"
-msgstr "Shiriti i Objektit Tekst"
+msgid "Edit"
+msgstr "Edito"
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3156330\n"
+"main0102.xhp\n"
+"hd_id3156023\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">Text Formatting Bar</link>"
+msgid "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Edit</link>"
msgstr ""
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"par_id3151112\n"
+"main0102.xhp\n"
+"par_id3154758\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\">The <emph>Text Formatting</emph> Bar that is displayed when the cursor is in a text object, such as a text frame or a drawing object, contains formatting and alignment commands.</ahelp>"
-msgstr ""
-
-#: main0205.xhp
-msgctxt ""
-"main0205.xhp\n"
-"hd_id3148575\n"
-"7\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
-msgstr ""
-
-#: main0205.xhp
-msgctxt ""
-"main0205.xhp\n"
-"hd_id3154944\n"
-"8\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">Line Spacing: 1</link>"
-msgstr ""
-
-#: main0205.xhp
-msgctxt ""
-"main0205.xhp\n"
-"hd_id3146969\n"
-"9\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1.5\">Line Spacing: 1.5</link>"
-msgstr ""
-
-#: main0205.xhp
-msgctxt ""
-"main0205.xhp\n"
-"hd_id3153711\n"
-"10\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">Line Spacing: 2</link>"
+msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
msgstr ""
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3147345\n"
-"11\n"
+"main0102.xhp\n"
+"hd_id3146119\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">Align Left</link>"
+msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
msgstr ""
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3155337\n"
+"main0102.xhp\n"
+"hd_id3153728\n"
"12\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Centered</link>"
+msgid "<link href=\"text/shared/01/02240000.xhp\" name=\"Compare Document\">Compare Document</link>"
msgstr ""
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3147001\n"
-"13\n"
+"main0102.xhp\n"
+"hd_id3154492\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">Align Right</link>"
+msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
msgstr ""
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3155115\n"
-"14\n"
+"main0102.xhp\n"
+"hd_id3150715\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Justify</link>"
+msgid "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Headers & Footers</link>"
msgstr ""
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3150202\n"
-"15\n"
+"main0102.xhp\n"
+"hd_id3149018\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superscript</link>"
+msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link>"
msgstr ""
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3155531\n"
-"16\n"
+"main0102.xhp\n"
+"hd_id3156384\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subscript</link>"
+msgid "<link href=\"text/scalc/01/02160000.xhp\" name=\"Delete Cells\">Delete Cells</link>"
msgstr ""
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3145387\n"
-"17\n"
+"main0102.xhp\n"
+"hd_id3146919\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
msgstr ""
-#: main0205.xhp
+#: main0102.xhp
msgctxt ""
-"main0205.xhp\n"
-"hd_id3153067\n"
-"18\n"
+"main0102.xhp\n"
+"hd_id3148488\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
+msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
msgstr ""
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
+"main0103.xhp\n"
"tit\n"
"help.text"
-msgid "Drawing Object Properties Bar"
-msgstr "Shiriti i Objektit Tekst/Grafikat"
+msgid "View"
+msgstr "Pamja"
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
-"hd_id3154346\n"
+"main0103.xhp\n"
+"hd_id3151112\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties Bar\">Drawing Object Properties Bar</link>"
+msgid "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
msgstr ""
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
-"par_id3149656\n"
+"main0103.xhp\n"
+"par_id3149456\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">The <emph>Drawing Object Properties</emph> Bar for objects that you select in the sheet contains formatting and alignment commands.</ahelp>"
-msgstr ""
-
-#: main0203.xhp
-msgctxt ""
-"main0203.xhp\n"
-"hd_id3145748\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
+msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
msgstr ""
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
-"hd_id3151073\n"
-"4\n"
+"main0103.xhp\n"
+"par_idN105AB\n"
"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
-msgstr ""
+msgid "Normal"
+msgstr "Normal"
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
-"hd_id3153417\n"
-"5\n"
+"main0103.xhp\n"
+"par_idN105AF\n"
"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
+msgid "<ahelp hid=\".\">Displays the normal view of the sheet.</ahelp>"
msgstr ""
-#: main0203.xhp
+#: main0103.xhp
msgctxt ""
-"main0203.xhp\n"
-"hd_id3147338\n"
-"6\n"
+"main0103.xhp\n"
+"hd_id3125863\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">Background Color</link>"
+msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
msgstr ""
#: main0104.xhp
@@ -697,89 +438,6 @@ msgctxt ""
msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
msgstr ""
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"tit\n"
-"help.text"
-msgid "Tools Bar"
-msgstr "Shiriti i kontrollit"
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"hd_id3143268\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Tools Bar</link>"
-msgstr ""
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"par_id3151112\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Use the Tools bar to access commonly used commands.</ahelp>"
-msgstr ""
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"par_idN10610\n"
-"help.text"
-msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls\">Controls</link>"
-msgstr ""
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"hd_id3154730\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Choose Themes\">Choose Themes</link>"
-msgstr ""
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"par_idN10690\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced Filter\">Advanced Filter</link>"
-msgstr ""
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"par_idN106A8\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090100.xhp\">Start</link>"
-msgstr ""
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"par_idN106C0\n"
-"help.text"
-msgid "<link href=\"text/shared/autopi/01150000.xhp\" name=\"Euro Converter\">Euro Converter</link>"
-msgstr ""
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"par_idN106D8\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\">Define</link>"
-msgstr ""
-
-#: main0218.xhp
-msgctxt ""
-"main0218.xhp\n"
-"par_idN106F0\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
-msgstr ""
-
#: main0105.xhp
msgctxt ""
"main0105.xhp\n"
@@ -878,282 +536,233 @@ msgctxt ""
msgid "<link href=\"text/shared/02/01170200.xhp\" name=\"Form\">Form</link>"
msgstr ""
-#: main0107.xhp
-msgctxt ""
-"main0107.xhp\n"
-"tit\n"
-"help.text"
-msgid "Window"
-msgstr "Dritarja"
-
-#: main0107.xhp
-msgctxt ""
-"main0107.xhp\n"
-"hd_id3154758\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Window</link>"
-msgstr ""
-
-#: main0107.xhp
-msgctxt ""
-"main0107.xhp\n"
-"par_id3150398\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:WindowList\">Contains commands for manipulating and displaying document windows.</ahelp>"
-msgstr ""
-
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
+"main0106.xhp\n"
"tit\n"
"help.text"
-msgid "Page Preview Bar"
-msgstr "~Shikimi Paraprak i Thyerjes së Faqes"
+msgid "Tools"
+msgstr "Veglat"
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"hd_id3156023\n"
+"main0106.xhp\n"
+"hd_id3150769\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page Preview Bar\">Page Preview Bar</link>"
+msgid "<link href=\"text/scalc/main0106.xhp\" name=\"Tools\">Tools</link>"
msgstr ""
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"par_id3148663\n"
+"main0106.xhp\n"
+"par_id3150440\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_WIN_PREVIEW\">The <emph>Page Preview</emph> Bar is displayed when you choose <emph>File - Page Preview</emph>.</ahelp>"
-msgstr ""
-
-#: main0210.xhp
-msgctxt ""
-"main0210.xhp\n"
-"hd_id3147393\n"
-"3\n"
-"help.text"
-msgid "Full Screen"
+msgid "<ahelp hid=\".\">The <emph>Tools </emph>menu contains commands to check spelling, to trace sheet references, to find mistakes and to define scenarios.</ahelp>"
msgstr ""
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"par_id460828\n"
+"main0106.xhp\n"
+"par_id3152576\n"
+"10\n"
"help.text"
-msgid "Hides the menus and toolbars. To exit the full screen mode, click the <emph>Full Screen On/Off</emph> button."
+msgid "You can also create and assign macros and configure the look and feel of toolbars, menus, keyboard, and set the default options for $[officename] applications."
msgstr ""
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"hd_id3147394\n"
-"3\n"
+"main0106.xhp\n"
+"hd_id3149122\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">Format Page</link>"
+msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
msgstr ""
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"hd_id3147494\n"
-"3\n"
+"main0106.xhp\n"
+"hd_id3155768\n"
+"6\n"
"help.text"
-msgid "Margins"
+msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Scenarios\">Scenarios</link>"
msgstr ""
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"par_id460929\n"
+"main0106.xhp\n"
+"hd_id3154015\n"
+"9\n"
"help.text"
-msgid "Shows or hides margins of the page. Margins can be dragged by the mouse, and also can be set on <emph>Page</emph> tab of <emph>Page Style</emph> dialog."
+msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
msgstr ""
-#: main0210.xhp
+#: main0106.xhp
msgctxt ""
-"main0210.xhp\n"
-"hd_id3245494\n"
-"3\n"
+"main0106.xhp\n"
+"hd_id3150086\n"
+"8\n"
"help.text"
-msgid "Scaling Factor"
+msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
msgstr ""
-#: main0210.xhp
+#: main0107.xhp
msgctxt ""
-"main0210.xhp\n"
-"par_id460939\n"
+"main0107.xhp\n"
+"tit\n"
"help.text"
-msgid "This slide defines a page scale for the printed spreadsheet. Scaling factor can be set on <emph>Sheet</emph> tab of <emph>Page Style</emph> dialog, too."
-msgstr ""
+msgid "Window"
+msgstr "Dritarja"
-#: main0210.xhp
+#: main0107.xhp
msgctxt ""
-"main0210.xhp\n"
-"hd_id3147395\n"
-"3\n"
+"main0107.xhp\n"
+"hd_id3154758\n"
+"1\n"
"help.text"
-msgid "Close Preview"
+msgid "<link href=\"text/scalc/main0107.xhp\" name=\"Window\">Window</link>"
msgstr ""
-#: main0210.xhp
+#: main0107.xhp
msgctxt ""
-"main0210.xhp\n"
-"par_id460829\n"
+"main0107.xhp\n"
+"par_id3150398\n"
+"2\n"
"help.text"
-msgid "To exit the page preview, click the <emph>Close Preview</emph> button."
+msgid "<ahelp hid=\".uno:WindowList\">Contains commands for manipulating and displaying document windows.</ahelp>"
msgstr ""
-#: main0103.xhp
+#: main0112.xhp
msgctxt ""
-"main0103.xhp\n"
+"main0112.xhp\n"
"tit\n"
"help.text"
-msgid "View"
-msgstr "Pamja"
+msgid "Data"
+msgstr "Të dhëna"
-#: main0103.xhp
+#: main0112.xhp
msgctxt ""
-"main0103.xhp\n"
-"hd_id3151112\n"
+"main0112.xhp\n"
+"hd_id3153254\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0103.xhp\" name=\"View\">View</link>"
+msgid "<link href=\"text/scalc/main0112.xhp\" name=\"Data\">Data</link>"
msgstr ""
-#: main0103.xhp
+#: main0112.xhp
msgctxt ""
-"main0103.xhp\n"
-"par_id3149456\n"
+"main0112.xhp\n"
+"par_id3147264\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">This menu contains commands for controlling the on-screen display of the document.</ahelp>"
+msgid "<ahelp hid=\".\">Use the <emph>Data</emph> menu commands to edit the data in the current sheet. You can define ranges, sort and filter the data, calculate results, outline data, and create a pivot table.</ahelp>"
msgstr ""
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_idN105AB\n"
-"help.text"
-msgid "Normal"
-msgstr "Normal"
-
-#: main0103.xhp
+#: main0112.xhp
msgctxt ""
-"main0103.xhp\n"
-"par_idN105AF\n"
+"main0112.xhp\n"
+"hd_id3150400\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the normal view of the sheet.</ahelp>"
+msgid "<link href=\"text/scalc/01/12010000.xhp\" name=\"Define Range\">Define Range</link>"
msgstr ""
-#: main0103.xhp
+#: main0112.xhp
msgctxt ""
-"main0103.xhp\n"
+"main0112.xhp\n"
"hd_id3125863\n"
-"3\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
+msgid "<link href=\"text/scalc/01/12020000.xhp\" name=\"Select Range\">Select Range</link>"
msgstr ""
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"tit\n"
-"help.text"
-msgid "Edit"
-msgstr "Edito"
-
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3156023\n"
-"1\n"
+"main0112.xhp\n"
+"hd_id3153726\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/scalc/main0102.xhp\" name=\"Edit\">Edit</link>"
+msgid "<link href=\"text/scalc/01/12030000.xhp\" name=\"Sort\">Sort</link>"
msgstr ""
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"par_id3154758\n"
-"2\n"
+"main0112.xhp\n"
+"hd_id3153142\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\">This menu contains commands for editing the contents of the current document.</ahelp>"
+msgid "<link href=\"text/scalc/01/12050000.xhp\" name=\"Subtotals\">Subtotals</link>"
msgstr ""
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3146119\n"
-"3\n"
+"main0112.xhp\n"
+"hd_id3151073\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
+msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Validity\">Validity</link>"
msgstr ""
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3153728\n"
-"12\n"
+"main0112.xhp\n"
+"hd_id3145254\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/shared/01/02240000.xhp\" name=\"Compare Document\">Compare Document</link>"
+msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple Operations\">Multiple Operations</link>"
msgstr ""
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3154492\n"
-"4\n"
+"main0112.xhp\n"
+"hd_id1387066\n"
"help.text"
-msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
+msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
msgstr ""
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3150715\n"
-"5\n"
+"main0112.xhp\n"
+"hd_id3150717\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02120000.xhp\" name=\"Headers & Footers\">Headers & Footers</link>"
+msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Consolidate\">Consolidate</link>"
msgstr ""
-#: main0102.xhp
+#: main0112.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3149018\n"
-"6\n"
+"main0112.xhp\n"
+"hd_id3154754\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Delete Contents\">Delete Contents</link>"
+msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
msgstr ""
-#: main0102.xhp
+#: main0200.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3156384\n"
-"7\n"
+"main0200.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02160000.xhp\" name=\"Delete Cells\">Delete Cells</link>"
-msgstr ""
+msgid "Toolbars"
+msgstr "Shiriti i veglave"
-#: main0102.xhp
+#: main0200.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3146919\n"
-"10\n"
+"main0200.xhp\n"
+"hd_id3154758\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
+msgid "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
msgstr ""
-#: main0102.xhp
+#: main0200.xhp
msgctxt ""
-"main0102.xhp\n"
-"hd_id3148488\n"
-"11\n"
+"main0200.xhp\n"
+"par_id3148798\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
+msgid "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
msgstr ""
#: main0202.xhp
@@ -1382,83 +991,200 @@ msgctxt ""
msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the contents of the cell to the left and right cell borders.</ahelp>"
msgstr ""
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
+"main0203.xhp\n"
"tit\n"
"help.text"
-msgid "Welcome to the $[officename] Calc Help"
-msgstr "Duke publikuar veçoritë e produktit"
+msgid "Drawing Object Properties Bar"
+msgstr "Shiriti i Objektit Tekst/Grafikat"
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
-"hd_id3147338\n"
+"main0203.xhp\n"
+"hd_id3154346\n"
"1\n"
"help.text"
-msgid "Welcome to the $[officename] Calc Help"
-msgstr "Duke publikuar veçoritë e produktit"
+msgid "<link href=\"text/scalc/main0203.xhp\" name=\"Drawing Object Properties Bar\">Drawing Object Properties Bar</link>"
+msgstr ""
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
-"hd_id3153965\n"
+"main0203.xhp\n"
+"par_id3149656\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRAW\">The <emph>Drawing Object Properties</emph> Bar for objects that you select in the sheet contains formatting and alignment commands.</ahelp>"
+msgstr ""
+
+#: main0203.xhp
+msgctxt ""
+"main0203.xhp\n"
+"hd_id3145748\n"
"3\n"
"help.text"
-msgid "How to Work With $[officename] Calc"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
msgstr ""
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
-"par_id3147004\n"
-"5\n"
+"main0203.xhp\n"
+"hd_id3151073\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Functions by Category\">List of Functions by Category</link>"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
msgstr ""
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
-"hd_id3154659\n"
-"6\n"
+"main0203.xhp\n"
+"hd_id3153417\n"
+"5\n"
"help.text"
-msgid "$[officename] Calc Menus, Toolbars, and Keys"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
msgstr ""
-#: main0000.xhp
+#: main0203.xhp
msgctxt ""
-"main0000.xhp\n"
-"hd_id3150883\n"
-"4\n"
+"main0203.xhp\n"
+"hd_id3147338\n"
+"6\n"
"help.text"
-msgid "Help about the Help"
-msgstr "Ndihma për %PRODUCTNAME Writer"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Background Color\">Background Color</link>"
+msgstr ""
-#: main0100.xhp
+#: main0205.xhp
msgctxt ""
-"main0100.xhp\n"
+"main0205.xhp\n"
"tit\n"
"help.text"
-msgid "Menus"
-msgstr ""
+msgid "Text Formatting Bar"
+msgstr "Shiriti i Objektit Tekst"
-#: main0100.xhp
+#: main0205.xhp
msgctxt ""
-"main0100.xhp\n"
-"hd_id3156023\n"
+"main0205.xhp\n"
+"hd_id3156330\n"
"1\n"
"help.text"
-msgid "<variable id=\"main0100\"><link href=\"text/scalc/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
+msgid "<link href=\"text/scalc/main0205.xhp\" name=\"Text Formatting Bar\">Text Formatting Bar</link>"
msgstr ""
-#: main0100.xhp
+#: main0205.xhp
msgctxt ""
-"main0100.xhp\n"
-"par_id3154760\n"
+"main0205.xhp\n"
+"par_id3151112\n"
"2\n"
"help.text"
-msgid "The following menu commands are available for spreadsheets."
+msgid "<ahelp hid=\"HID_SC_TOOLBOX_DRTEXT\">The <emph>Text Formatting</emph> Bar that is displayed when the cursor is in a text object, such as a text frame or a drawing object, contains formatting and alignment commands.</ahelp>"
+msgstr ""
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3148575\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Color\">Font Color</link>"
+msgstr ""
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3154944\n"
+"8\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1\">Line Spacing: 1</link>"
+msgstr ""
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3146969\n"
+"9\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 1.5\">Line Spacing: 1.5</link>"
+msgstr ""
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3153711\n"
+"10\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Line Spacing: 2\">Line Spacing: 2</link>"
+msgstr ""
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3147345\n"
+"11\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Left\">Align Left</link>"
+msgstr ""
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3155337\n"
+"12\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Centered\">Centered</link>"
+msgstr ""
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3147001\n"
+"13\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Align Right\">Align Right</link>"
+msgstr ""
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3155115\n"
+"14\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Justify\">Justify</link>"
+msgstr ""
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3150202\n"
+"15\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Superscript\">Superscript</link>"
+msgstr ""
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3155531\n"
+"16\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Subscript\">Subscript</link>"
+msgstr ""
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3145387\n"
+"17\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020000.xhp\" name=\"Character\">Character</link>"
+msgstr ""
+
+#: main0205.xhp
+msgctxt ""
+"main0205.xhp\n"
+"hd_id3153067\n"
+"18\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030000.xhp\" name=\"Paragraph\">Paragraph</link>"
msgstr ""
#: main0206.xhp
@@ -1487,110 +1213,149 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SC_INPUTWIN\">Use this bar to enter formulas.</ahelp>"
msgstr ""
-#: main0200.xhp
+#: main0208.xhp
msgctxt ""
-"main0200.xhp\n"
+"main0208.xhp\n"
"tit\n"
"help.text"
-msgid "Toolbars"
-msgstr "Shiriti i veglave"
+msgid "Status Bar"
+msgstr "Shiriti i gjendjes"
-#: main0200.xhp
+#: main0208.xhp
msgctxt ""
-"main0200.xhp\n"
-"hd_id3154758\n"
+"main0208.xhp\n"
+"hd_id3151385\n"
"1\n"
"help.text"
-msgid "<variable id=\"main0200\"><link href=\"text/scalc/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
+msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status Bar\">Status Bar</link>"
msgstr ""
-#: main0200.xhp
+#: main0208.xhp
msgctxt ""
-"main0200.xhp\n"
-"par_id3148798\n"
+"main0208.xhp\n"
+"par_id3149669\n"
"2\n"
"help.text"
-msgid "This submenu lists the toolbars that are available in spreadsheets.<embedvar href=\"text/shared/00/00000007.xhp#symbolleistenneu\"/>"
+msgid "The <emph>Status Bar</emph> displays information about the current sheet."
msgstr ""
-#: main0101.xhp
+#: main0208.xhp
msgctxt ""
-"main0101.xhp\n"
+"main0208.xhp\n"
+"hd_id0821200911024321\n"
+"help.text"
+msgid "Digital Signature"
+msgstr "Nënshkrimi digjital"
+
+#: main0208.xhp
+msgctxt ""
+"main0208.xhp\n"
+"par_id0821200911024344\n"
+"help.text"
+msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
+msgstr ""
+
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
"tit\n"
"help.text"
-msgid "File"
-msgstr "Fajlli"
+msgid "Page Preview Bar"
+msgstr "~Shikimi Paraprak i Thyerjes së Faqes"
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
+"main0210.xhp\n"
"hd_id3156023\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/main0101.xhp\" name=\"File\">File</link>"
+msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page Preview Bar\">Page Preview Bar</link>"
msgstr ""
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"par_id3151112\n"
+"main0210.xhp\n"
+"par_id3148663\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">These commands apply to the current document, open a new document, or close the application.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_WIN_PREVIEW\">The <emph>Page Preview</emph> Bar is displayed when you choose <emph>File - Page Preview</emph>.</ahelp>"
msgstr ""
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3154684\n"
-"4\n"
+"main0210.xhp\n"
+"hd_id3147393\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
+msgid "Full Screen"
+msgstr "Ekrani i Plotë"
+
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"par_id460828\n"
+"help.text"
+msgid "Hides the menus and toolbars. To exit the full screen mode, click the <emph>Full Screen On/Off</emph> button."
msgstr ""
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3147434\n"
-"5\n"
+"main0210.xhp\n"
+"hd_id3147394\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
+msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format Page\">Format Page</link>"
msgstr ""
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3147396\n"
-"11\n"
+"main0210.xhp\n"
+"hd_id3147494\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
+msgid "Margins"
+msgstr "Margjinat"
+
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"par_id460929\n"
+"help.text"
+msgid "Shows or hides margins of the page. Margins can be dragged by the mouse, and also can be set on <emph>Page</emph> tab of <emph>Page Style</emph> dialog."
msgstr ""
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3149400\n"
-"7\n"
+"main0210.xhp\n"
+"hd_id3245494\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
+msgid "Scaling Factor"
msgstr ""
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3155445\n"
-"9\n"
+"main0210.xhp\n"
+"par_id460939\n"
"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
+msgid "This slide defines a page scale for the printed spreadsheet. Scaling factor can be set on <emph>Sheet</emph> tab of <emph>Page Style</emph> dialog, too."
msgstr ""
-#: main0101.xhp
+#: main0210.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3147339\n"
-"10\n"
+"main0210.xhp\n"
+"hd_id3147395\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link>"
+msgid "Close Preview"
+msgstr ""
+
+#: main0210.xhp
+msgctxt ""
+"main0210.xhp\n"
+"par_id460829\n"
+"help.text"
+msgid "To exit the page preview, click the <emph>Close Preview</emph> button."
msgstr ""
#: main0214.xhp
@@ -1618,3 +1383,238 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\".\">The <emph>Picture</emph> bar is displayed when you insert or select a picture in a sheet.</ahelp>"
msgstr ""
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"tit\n"
+"help.text"
+msgid "Tools Bar"
+msgstr "Shiriti i kontrollit"
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"hd_id3143268\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0218.xhp\" name=\"Tools Bar\">Tools Bar</link>"
+msgstr ""
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_id3151112\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_TOOLBOX_TOOLS\">Use the Tools bar to access commonly used commands.</ahelp>"
+msgstr ""
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_idN10610\n"
+"help.text"
+msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Controls\">Controls</link>"
+msgstr ""
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"hd_id3154730\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Choose Themes\">Choose Themes</link>"
+msgstr ""
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_idN10690\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced Filter\">Advanced Filter</link>"
+msgstr ""
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_idN106A8\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12090100.xhp\">Start</link>"
+msgstr ""
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_idN106C0\n"
+"help.text"
+msgid "<link href=\"text/shared/autopi/01150000.xhp\" name=\"Euro Converter\">Euro Converter</link>"
+msgstr ""
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_idN106D8\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070100.xhp\">Define</link>"
+msgstr ""
+
+#: main0218.xhp
+msgctxt ""
+"main0218.xhp\n"
+"par_idN106F0\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
+msgstr ""
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Calc Features"
+msgstr "Duke publikuar veçoritë e produktit"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3154758\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"main0503\"><link href=\"text/scalc/main0503.xhp\" name=\"$[officename] Calc Features\">$[officename] Calc Features</link></variable>"
+msgstr ""
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3149457\n"
+"2\n"
+"help.text"
+msgid "$[officename] Calc is a spreadsheet application that you can use to calculate, analyze, and manage your data. You can also import and modify Microsoft Excel spreadsheets."
+msgstr ""
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3148797\n"
+"4\n"
+"help.text"
+msgid "Calculations"
+msgstr ""
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3145172\n"
+"5\n"
+"help.text"
+msgid "$[officename] Calc provides you with <link href=\"text/scalc/01/04060100.xhp\" name=\"functions\">functions</link>, including statistical and banking functions, that you can use to create formulas to perform complex calculations on your data."
+msgstr ""
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3145271\n"
+"6\n"
+"help.text"
+msgid "You can also use the <link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilots\">Function Wizard</link> to help you create your formulas."
+msgstr ""
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3152596\n"
+"13\n"
+"help.text"
+msgid "What-If Calculations"
+msgstr "Tjetër/Fund nëse pa"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3156444\n"
+"14\n"
+"help.text"
+msgid "An interesting feature is to be able to immediately view the results of changes made to one factor of calculations that are composed of several factors. For instance, you can see how changing the time period in a loan calculation affects the interest rates or repayment amounts. Furthermore, you can manage larger tables by using different predefined scenarios."
+msgstr ""
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3148576\n"
+"7\n"
+"help.text"
+msgid "Database Functions"
+msgstr "Funksionet statistikore"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3154011\n"
+"8\n"
+"help.text"
+msgid "Use spreadsheets to arrange, store, and filter your data."
+msgstr ""
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3154942\n"
+"25\n"
+"help.text"
+msgid "$[officename] Calc lets you drag-and-drop tables from databases, or lets you use a spreadsheet as a data source for creating form letters in $[officename] Writer."
+msgstr ""
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3145800\n"
+"9\n"
+"help.text"
+msgid "Arranging Data"
+msgstr "Të dhënat për ["
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3154490\n"
+"10\n"
+"help.text"
+msgid "With a few mouse-clicks, you can reorganize your spreadsheet to show or hide certain data ranges, or to format ranges according to special conditions, or to quickly calculate subtotals and totals."
+msgstr ""
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3155601\n"
+"16\n"
+"help.text"
+msgid "Dynamic Charts"
+msgstr "Azhuro diagramet"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3149121\n"
+"17\n"
+"help.text"
+msgid "$[officename] Calc lets you present spreadsheet data in dynamic charts that update automatically when the data changes."
+msgstr ""
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3153707\n"
+"18\n"
+"help.text"
+msgid "Opening and Saving Microsoft Files"
+msgstr ""
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3157867\n"
+"19\n"
+"help.text"
+msgid "Use the $[officename] filters to convert Excel files, or to open and save in a variety of other <link href=\"text/shared/00/00000020.xhp\" name=\"formats\">formats</link>."
+msgstr ""
diff --git a/source/sq/helpcontent2/source/text/scalc/00.po b/source/sq/helpcontent2/source/text/scalc/00.po
index 73c4145d079..87cb3010b9a 100644
--- a/source/sq/helpcontent2/source/text/scalc/00.po
+++ b/source/sq/helpcontent2/source/text/scalc/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-11-26 04:02+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,866 +15,286 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: 00000407.xhp
+#: 00000004.xhp
msgctxt ""
-"00000407.xhp\n"
+"00000004.xhp\n"
"tit\n"
"help.text"
-msgid "Window Menu"
-msgstr "AutoPilot Meny"
+msgid "To access this function..."
+msgstr "Dërgo një kopje të këtij dokumenti tek:"
-#: 00000407.xhp
+#: 00000004.xhp
msgctxt ""
-"00000407.xhp\n"
-"hd_id3155628\n"
+"00000004.xhp\n"
+"hd_id3155535\n"
"1\n"
"help.text"
-msgid "Window Menu"
-msgstr "AutoPilot Meny"
+msgid "<variable id=\"wie\">To access this function... </variable>"
+msgstr ""
-#: 00000407.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000407.xhp\n"
-"par_id3147335\n"
-"2\n"
+"00000004.xhp\n"
+"par_idN1056E\n"
"help.text"
-msgid "<variable id=\"fete\">Choose <emph>Window - Split</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
+msgid "<variable id=\"moreontop\">More explanations on top of this page. </variable>"
+msgstr ""
-#: 00000407.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000407.xhp\n"
-"par_id3153663\n"
-"3\n"
+"00000004.xhp\n"
+"par_idN105AF\n"
"help.text"
-msgid "<variable id=\"fefix\">Choose <emph>Window - Freeze</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
+msgid "<variable id=\"optional\">In the %PRODUCTNAME Calc functions, parameters marked as \"optional\" can be left out only when no parameter follows. For example, in a function with four parameters, where the last two parameters are marked as \"optional\", you can leave out parameter 4 or parameters 3 and 4, but you cannot leave out parameter 3 alone. </variable>"
+msgstr ""
-#: 00000412.xhp
+#: 00000004.xhp
msgctxt ""
-"00000412.xhp\n"
+"00000004.xhp\n"
+"par_id9751884\n"
+"help.text"
+msgid "<variable id=\"codes\">Codes greater than 127 may depend on your system's character mapping (for example iso-8859-1, iso-8859-2, Windows-1252, Windows-1250), and hence may not be portable.</variable>"
+msgstr ""
+
+#: 00000402.xhp
+msgctxt ""
+"00000402.xhp\n"
"tit\n"
"help.text"
-msgid "Data Menu"
+msgid "Edit Menu"
msgstr "AutoPilot Meny"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"hd_id3145136\n"
+"00000402.xhp\n"
+"hd_id3147303\n"
"1\n"
"help.text"
-msgid "Data Menu"
+msgid "Edit Menu"
msgstr "AutoPilot Meny"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id8366954\n"
+"00000402.xhp\n"
+"par_id3155555\n"
+"2\n"
"help.text"
-msgid "<variable id=\"text2columns\">Choose <emph>Data - Text to Columns</emph></variable>"
+msgid "<variable id=\"kopffuss\">Choose <emph>Edit - Headers & Footers</emph></variable>"
msgstr ""
-#: 00000412.xhp
-#, fuzzy
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3147399\n"
+"00000402.xhp\n"
+"par_id3159233\n"
"3\n"
"help.text"
-msgid "<variable id=\"dbrbf\">Choose <emph>Data - Define Range</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
+msgid "<variable id=\"bkopfzeile\">Choose <emph>Edit - Headers & Footers - Header/Footer</emph> tabs</variable>"
+msgstr ""
-#: 00000412.xhp
-#, fuzzy
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3145345\n"
+"00000402.xhp\n"
+"par_id3150443\n"
"4\n"
"help.text"
-msgid "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph></variable>"
+msgid "<variable id=\"bausfullen\">Choose <emph>Edit - Fill</emph></variable>"
msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000412.xhp
-#, fuzzy
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3150443\n"
+"00000402.xhp\n"
+"par_id3143267\n"
"5\n"
"help.text"
-msgid "<variable id=\"dnsrt\">Choose <emph>Data - Sort</emph></variable>"
+msgid "<variable id=\"bausunten\">Choose <emph>Edit - Fill - Down</emph></variable>"
msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3148491\n"
+"00000402.xhp\n"
+"par_id3153880\n"
"6\n"
"help.text"
-msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
-msgstr ""
+msgid "<variable id=\"bausrechts\">Choose <emph>Edit - Fill - Right</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3154516\n"
+"00000402.xhp\n"
+"par_id3151245\n"
"7\n"
"help.text"
-msgid "On Standard bar, click"
-msgstr "Shiriti i Funksionit kyçur/çkyçur"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3148663\n"
-"help.text"
-msgid "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150543\">Icon</alt></image>"
-msgstr ""
+msgid "<variable id=\"bausoben\">Choose <emph>Edit - Fill - Up</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3150767\n"
+"00000402.xhp\n"
+"par_id3145068\n"
"8\n"
"help.text"
-msgid "Sort Ascending"
-msgstr "Klasifiko në Rritje"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3153969\n"
-"help.text"
-msgid "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701inch\" height=\"0.1701inch\"><alt id=\"alt_id3125863\">Icon</alt></image>"
-msgstr ""
+msgid "<variable id=\"bauslinks\">Choose <emph>Edit - Fill - Left</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3145364\n"
+"00000402.xhp\n"
+"par_id3150400\n"
"9\n"
"help.text"
-msgid "Sort Descending"
-msgstr "Klasifiko në Zbritje"
+msgid "<variable id=\"baustab\">Choose <emph>Edit - Fill - Sheet</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000412.xhp
-#, fuzzy
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3146984\n"
+"00000402.xhp\n"
+"par_id3154910\n"
"10\n"
"help.text"
-msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab</variable>"
+msgid "<variable id=\"bausreihe\">Choose <emph>Edit - Fill - Series</emph></variable>"
msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000412.xhp
-#, fuzzy
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3155308\n"
+"00000402.xhp\n"
+"par_id3154123\n"
"11\n"
"help.text"
-msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3148646\n"
-"12\n"
-"help.text"
-msgid "Choose <emph>Data - Filter - AutoFilter</emph>"
-msgstr ""
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3151113\n"
-"13\n"
-"help.text"
-msgid "On Tools bar or Table Data bar, click"
-msgstr ""
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3145799\n"
-"help.text"
-msgid "<image id=\"img_id3149413\" src=\"cmd/sc_datafilterautofilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149413\">Icon</alt></image>"
-msgstr ""
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3149401\n"
-"14\n"
-"help.text"
-msgid "AutoFilter"
-msgstr "AutoFiltër"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3156278\n"
-"17\n"
-"help.text"
-msgid "<variable id=\"dnfspz\">Choose <emph>Data - Filter - Advanced Filter</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3153764\n"
-"18\n"
-"help.text"
-msgid "Choose <emph>Data - Filter - Standard Filter - More>></emph> button"
-msgstr ""
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3155444\n"
-"19\n"
-"help.text"
-msgid "Choose <emph>Data - Filter - Advanced Filter - More>></emph> button"
+msgid "Choose <emph>Edit - Delete Contents</emph>"
msgstr ""
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3156382\n"
+"00000402.xhp\n"
+"par_id3145785\n"
"20\n"
"help.text"
-msgid "Choose <emph>Data - Filter - Remove Filter</emph>"
-msgstr ""
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3155961\n"
-"48\n"
-"help.text"
-msgid "On Table Data bar, click <emph>Remove Filter/Sort</emph>"
-msgstr ""
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3148485\n"
-"help.text"
-msgid "<image id=\"img_id3145792\" src=\"cmd/sc_removefilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145792\">Icon</alt></image>"
-msgstr ""
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3149207\n"
-"49\n"
-"help.text"
-msgid "Remove Filter/Sort"
-msgstr "Largo Filtrin/Klasifikimin"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3152778\n"
-"21\n"
-"help.text"
-msgid "<variable id=\"dnaftas\">Choose <emph>Data - Filter - Hide AutoFilter</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3166424\n"
-"22\n"
-"help.text"
-msgid "<variable id=\"dntegs\">Choose <emph>Data - Subtotals</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3154574\n"
-"23\n"
-"help.text"
-msgid "<variable id=\"dntezd\">Choose <emph>Data - Subtotals - 1st, 2nd, 3rd Group</emph> tabs</variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3151277\n"
-"24\n"
-"help.text"
-msgid "<variable id=\"dntopi\">Choose <emph>Data - Subtotals - Options</emph> tab</variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3145133\n"
-"25\n"
-"help.text"
-msgid "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3152992\n"
-"26\n"
-"help.text"
-msgid "<variable id=\"datengueltigwerte\">Menu <emph>Data - Validity - Criteria</emph> tab</variable>"
-msgstr ""
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3150367\n"
-"27\n"
-"help.text"
-msgid "<variable id=\"datengueltigeingabe\">Choose <emph>Data - Validity - Input Help</emph> tab</variable>"
-msgstr ""
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3154486\n"
-"28\n"
-"help.text"
-msgid "<variable id=\"datengueltigfehler\">Choose <emph>Data - Validity - Error Alert</emph> tab</variable>"
+msgid "Backspace"
msgstr ""
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3146978\n"
-"29\n"
-"help.text"
-msgid "<variable id=\"dnmfo\">Choose <emph>Data - Multiple Operations</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3155809\n"
-"30\n"
-"help.text"
-msgid "<variable id=\"dnksd\">Choose <emph>Data - Consolidate</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3148701\n"
-"31\n"
-"help.text"
-msgid "<variable id=\"dngld\">Choose <emph>Data - Group and Outline</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3153815\n"
-"32\n"
-"help.text"
-msgid "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000412.xhp
-#, fuzzy
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3159223\n"
-"33\n"
+"00000402.xhp\n"
+"par_id3150011\n"
+"12\n"
"help.text"
-msgid "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph></variable>"
+msgid "<variable id=\"bzelo\">Choose <emph>Edit - Delete Cells</emph></variable>"
msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3146870\n"
-"34\n"
-"help.text"
-msgid "Choose <emph>Data - Group and Outline - Group</emph>"
-msgstr ""
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3144507\n"
-"51\n"
-"help.text"
-msgid "F12"
-msgstr ""
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3144772\n"
-"35\n"
-"help.text"
-msgid "On <emph>Tools</emph> bar, click"
-msgstr "Shiriti i Funksionit kyçur/çkyçur"
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3149438\n"
-"help.text"
-msgid "<image id=\"img_id3153287\" src=\"cmd/sc_group.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153287\">Icon</alt></image>"
-msgstr ""
-
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3150214\n"
-"36\n"
-"help.text"
-msgid "Group"
-msgstr "Grupi"
-
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3146781\n"
-"37\n"
+"00000402.xhp\n"
+"par_id3153951\n"
+"13\n"
"help.text"
-msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>"
+msgid "Choose <emph>Edit – Sheet - Delete</emph>"
msgstr ""
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3150892\n"
-"52\n"
+"00000402.xhp\n"
+"par_id3155306\n"
+"18\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
+msgid "Open context menu for a sheet tab"
msgstr ""
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3155097\n"
-"38\n"
-"help.text"
-msgid "On <emph>Tools</emph> bar, click"
-msgstr "Shiriti i Funksionit kyçur/çkyçur"
-
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3150048\n"
+"00000402.xhp\n"
+"par_id3146119\n"
+"14\n"
"help.text"
-msgid "<image id=\"img_id3155914\" src=\"cmd/sc_ungroup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155914\">Icon</alt></image>"
+msgid "Choose <emph>Edit – Sheets – Move/Copy</emph>"
msgstr ""
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3153555\n"
-"39\n"
-"help.text"
-msgid "Ungroup"
-msgstr "Zhgrupo"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3153008\n"
-"40\n"
-"help.text"
-msgid "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3154709\n"
-"41\n"
-"help.text"
-msgid "<variable id=\"dnglef\">Choose <emph>Data - Group and Outline - Remove</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id1774346\n"
+"00000402.xhp\n"
+"par_id3148645\n"
+"19\n"
"help.text"
-msgid "<variable id=\"dngdrill\">Choose <emph>Data - Group and Outline - Show Details</emph> (for some pivot tables)</variable>"
+msgid "Open context menu for a sheet tab"
msgstr ""
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3155759\n"
-"42\n"
-"help.text"
-msgid "<variable id=\"dndtpt\">Choose <emph>Data - Pivot Table</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000412.xhp
-#, fuzzy
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3154625\n"
-"43\n"
+"00000402.xhp\n"
+"par_id3153093\n"
+"15\n"
"help.text"
-msgid "<variable id=\"dndpa\">Choose <emph>Data - Pivot Table - Create</emph></variable>"
+msgid "<variable id=\"bmaumloe\">Choose <emph>Edit - Delete Manual Break</emph></variable>"
msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000412.xhp
-msgctxt ""
-"00000412.xhp\n"
-"par_id3147558\n"
-"53\n"
-"help.text"
-msgid "<variable id=\"dndq\">Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>.</variable>"
-msgstr ""
-
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3153297\n"
-"50\n"
+"00000402.xhp\n"
+"par_id3153191\n"
+"16\n"
"help.text"
-msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Current selection</emph>."
+msgid "<variable id=\"bzeilum\">Choose <emph>Edit - Delete Manual Break - Row Break</emph></variable>"
msgstr ""
-#: 00000412.xhp
+#: 00000402.xhp
msgctxt ""
-"00000412.xhp\n"
-"par_id3145118\n"
-"54\n"
+"00000402.xhp\n"
+"par_id3145645\n"
+"17\n"
"help.text"
-msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>, click <emph>OK</emph> to see <emph>Select Data Source</emph> dialog."
+msgid "<variable id=\"bspaum\">Choose <emph>Edit - Delete Manual Break - Column Break</emph></variable>"
msgstr ""
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3153294\n"
-"44\n"
-"help.text"
-msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3151344\n"
-"45\n"
-"help.text"
-msgid "<variable id=\"dndploe\">Choose <emph>Data - Pivot Table - Delete</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_id3150397\n"
-"46\n"
-"help.text"
-msgid "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000412.xhp
-#, fuzzy
-msgctxt ""
-"00000412.xhp\n"
-"par_idN10B8F\n"
-"help.text"
-msgid "<variable id=\"grouping\">Choose <emph>Data - Group and Outline - Group</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000405.xhp
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
+"00000403.xhp\n"
"tit\n"
"help.text"
-msgid "Format Menu"
-msgstr "Menyja për formatim"
+msgid "View Menu"
+msgstr "AutoPilot Meny"
-#: 00000405.xhp
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
-"hd_id3150769\n"
+"00000403.xhp\n"
+"hd_id3145673\n"
"1\n"
"help.text"
-msgid "Format Menu"
-msgstr "Menyja për formatim"
+msgid "View Menu"
+msgstr "AutoPilot Meny"
-#: 00000405.xhp
-#, fuzzy
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
-"par_id3154685\n"
+"00000403.xhp\n"
+"par_id3150275\n"
"2\n"
"help.text"
-msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
+msgid "<variable id=\"aspze\">Choose <emph>View - Column & Row Headers</emph></variable>"
+msgstr ""
-#: 00000405.xhp
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
-"par_id3153194\n"
+"00000403.xhp\n"
+"par_id3154514\n"
"3\n"
"help.text"
-msgid "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab </variable>"
+msgid "<variable id=\"awehe\">Choose <emph>View - Value Highlighting</emph></variable>"
msgstr ""
-#: 00000405.xhp
-#, fuzzy
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
-"par_id3155854\n"
+"00000403.xhp\n"
+"par_id3148947\n"
"4\n"
"help.text"
-msgid "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3150012\n"
-"5\n"
-"help.text"
-msgid "<variable id=\"fozeiophoe\">Choose <emph>Format - Row - Optimal Height</emph></variable>"
-msgstr ""
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3148645\n"
-"6\n"
-"help.text"
-msgid "Choose <emph>Format - Row - Hide</emph>"
-msgstr ""
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3153728\n"
-"7\n"
-"help.text"
-msgid "Choose <emph>Format - Column - Hide</emph>"
-msgstr ""
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3151114\n"
-"8\n"
-"help.text"
-msgid "Choose <emph>Format - Sheet - Hide</emph>"
-msgstr ""
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3148576\n"
-"9\n"
-"help.text"
-msgid "Choose <emph>Format - Row - Show</emph>"
-msgstr ""
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3156286\n"
-"10\n"
-"help.text"
-msgid "Choose <emph>Format - Column - Show</emph>"
-msgstr ""
-
-#: 00000405.xhp
-#, fuzzy
-msgctxt ""
-"00000405.xhp\n"
-"par_id3145645\n"
-"11\n"
-"help.text"
-msgid "<variable id=\"fospa\">Choose <emph>Format - Column</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3145252\n"
-"12\n"
-"help.text"
-msgid "Choose <emph>Format - Column - Optimal Width</emph>"
-msgstr ""
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3146971\n"
-"36\n"
-"help.text"
-msgid "Double-click right column separator in column headers"
-msgstr ""
-
-#: 00000405.xhp
-#, fuzzy
-msgctxt ""
-"00000405.xhp\n"
-"par_id3147362\n"
-"15\n"
-"help.text"
-msgid "<variable id=\"fot\">Choose <emph>Format - Sheet</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000405.xhp
-#, fuzzy
-msgctxt ""
-"00000405.xhp\n"
-"par_id3163805\n"
-"16\n"
-"help.text"
-msgid "<variable id=\"fotu\">Choose <emph>Format - Sheet - Rename</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000405.xhp
-#, fuzzy
-msgctxt ""
-"00000405.xhp\n"
-"par_id3155333\n"
-"17\n"
-"help.text"
-msgid "<variable id=\"fotenb\">Choose <emph>Format - Sheet - Show</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000405.xhp
-#, fuzzy
-msgctxt ""
-"00000405.xhp\n"
-"par_idN1077A\n"
-"help.text"
-msgid "<variable id=\"foste\">Choose <emph>Format - Page</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000405.xhp
-#, fuzzy
-msgctxt ""
-"00000405.xhp\n"
-"par_id3155508\n"
-"25\n"
-"help.text"
-msgid "<variable id=\"fostel\">Choose <emph>Format - Page - Sheet</emph> tab </variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000405.xhp
-#, fuzzy
-msgctxt ""
-"00000405.xhp\n"
-"par_id3150883\n"
-"26\n"
-"help.text"
-msgid "<variable id=\"fodrbe\">Choose <emph>Format - Print Ranges</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000405.xhp
-#, fuzzy
-msgctxt ""
-"00000405.xhp\n"
-"par_id3156448\n"
-"27\n"
-"help.text"
-msgid "<variable id=\"fodrfe\">Choose <emph>Format - Print Ranges - Define</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000405.xhp
-#, fuzzy
-msgctxt ""
-"00000405.xhp\n"
-"par_id3156290\n"
-"35\n"
-"help.text"
-msgid "<variable id=\"fodrhin\">Choose <emph>Format - Print Ranges - Add</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000405.xhp
-#, fuzzy
-msgctxt ""
-"00000405.xhp\n"
-"par_id3155812\n"
-"28\n"
-"help.text"
-msgid "<variable id=\"fodbah\">Choose <emph>Format - Print Ranges - Remove</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000405.xhp
-#, fuzzy
-msgctxt ""
-"00000405.xhp\n"
-"par_id3153307\n"
-"29\n"
-"help.text"
-msgid "<variable id=\"fodbbe\">Choose <emph>Format - Print Ranges - Edit</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3153916\n"
-"31\n"
-"help.text"
-msgid "Choose <emph>Format - AutoFormat</emph>"
-msgstr ""
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3154532\n"
-"32\n"
-"help.text"
-msgid "On the Tools bar, click"
-msgstr "Shiriti i Funksionit kyçur/çkyçur"
-
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3149332\n"
-"help.text"
-msgid "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156020\">Icon</alt></image>"
+msgid "<variable id=\"rechenleiste\">Choose <emph>View - Toolbars - Formula Bar</emph></variable>"
msgstr ""
-#: 00000405.xhp
-msgctxt ""
-"00000405.xhp\n"
-"par_id3154060\n"
-"33\n"
-"help.text"
-msgid "AutoFormat"
-msgstr "AutoFormat"
-
-#: 00000405.xhp
+#: 00000403.xhp
msgctxt ""
-"00000405.xhp\n"
-"par_id3154618\n"
-"34\n"
+"00000403.xhp\n"
+"par_id3148663\n"
+"5\n"
"help.text"
-msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional Formatting</emph></variable>"
+msgid "<variable id=\"seumvo\">Choose <emph>View - Page Break Preview</emph></variable>"
msgstr ""
#: 00000404.xhp
@@ -895,7 +315,6 @@ msgid "Insert Menu"
msgstr "AutoPilot Meny"
#: 00000404.xhp
-#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3149095\n"
@@ -1026,7 +445,6 @@ msgid "Insert Columns"
msgstr "Futi Shtyllat"
#: 00000404.xhp
-#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3148485\n"
@@ -1036,7 +454,6 @@ msgid "<variable id=\"eizei\">Choose <emph>Insert - Rows</emph></variable>"
msgstr "Shto manualisht kornizën e kolonës së vetme"
#: 00000404.xhp
-#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3153200\n"
@@ -1046,7 +463,6 @@ msgid "<variable id=\"eispa\">Choose <emph>Insert - Columns</emph></variable>"
msgstr "Shto manualisht kornizën e kolonës së vetme"
#: 00000404.xhp
-#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3149033\n"
@@ -1056,7 +472,6 @@ msgid "<variable id=\"eitab\">Choose <emph>Insert - Sheet</emph></variable>"
msgstr "Shto manualisht kornizën e kolonës së vetme"
#: 00000404.xhp
-#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_idN1082F\n"
@@ -1226,7 +641,6 @@ msgid "<variable id=\"funktionsliste\">Choose <emph>Insert - Function List</emph
msgstr ""
#: 00000404.xhp
-#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3153250\n"
@@ -1263,7 +677,6 @@ msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinli
msgstr ""
#: 00000404.xhp
-#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3145214\n"
@@ -1273,7 +686,6 @@ msgid "<variable id=\"einaei\">Choose <emph>Insert - Names - Insert</emph></vari
msgstr "Shto manualisht kornizën e kolonës së vetme"
#: 00000404.xhp
-#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3153558\n"
@@ -1283,7 +695,6 @@ msgid "<variable id=\"einaueb\">Choose <emph>Insert - Names - Create</emph></var
msgstr "Shto manualisht kornizën e kolonës së vetme"
#: 00000404.xhp
-#, fuzzy
msgctxt ""
"00000404.xhp\n"
"par_id3153483\n"
@@ -1292,57 +703,262 @@ msgctxt ""
msgid "<variable id=\"einabesch\">Choose <emph>Insert - Names - Labels</emph></variable>"
msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
+"00000405.xhp\n"
"tit\n"
"help.text"
-msgid "View Menu"
-msgstr "AutoPilot Meny"
+msgid "Format Menu"
+msgstr "Menyja për formatim"
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
-"hd_id3145673\n"
+"00000405.xhp\n"
+"hd_id3150769\n"
"1\n"
"help.text"
-msgid "View Menu"
-msgstr "AutoPilot Meny"
+msgid "Format Menu"
+msgstr "Menyja për formatim"
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3150275\n"
+"00000405.xhp\n"
+"par_id3154685\n"
"2\n"
"help.text"
-msgid "<variable id=\"aspze\">Choose <emph>View - Column & Row Headers</emph></variable>"
-msgstr ""
+msgid "<variable id=\"fozelle\">Choose <emph>Format - Cells</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3154514\n"
+"00000405.xhp\n"
+"par_id3153194\n"
"3\n"
"help.text"
-msgid "<variable id=\"awehe\">Choose <emph>View - Value Highlighting</emph></variable>"
+msgid "<variable id=\"fozelstz\">Choose <emph>Format - Cells - Cell Protection</emph> tab </variable>"
msgstr ""
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3148947\n"
+"00000405.xhp\n"
+"par_id3155854\n"
"4\n"
"help.text"
-msgid "<variable id=\"rechenleiste\">Choose <emph>View - Toolbars - Formula Bar</emph></variable>"
-msgstr ""
+msgid "<variable id=\"fozei\">Choose <emph>Format - Row</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000403.xhp
+#: 00000405.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3148663\n"
+"00000405.xhp\n"
+"par_id3150012\n"
"5\n"
"help.text"
-msgid "<variable id=\"seumvo\">Choose <emph>View - Page Break Preview</emph></variable>"
+msgid "<variable id=\"fozeiophoe\">Choose <emph>Format - Row - Optimal Height</emph></variable>"
+msgstr ""
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3148645\n"
+"6\n"
+"help.text"
+msgid "Choose <emph>Format - Row - Hide</emph>"
+msgstr ""
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3153728\n"
+"7\n"
+"help.text"
+msgid "Choose <emph>Format - Column - Hide</emph>"
+msgstr ""
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3151114\n"
+"8\n"
+"help.text"
+msgid "Choose <emph>Format - Sheet - Hide</emph>"
+msgstr ""
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3148576\n"
+"9\n"
+"help.text"
+msgid "Choose <emph>Format - Row - Show</emph>"
+msgstr ""
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3156286\n"
+"10\n"
+"help.text"
+msgid "Choose <emph>Format - Column - Show</emph>"
+msgstr ""
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3145645\n"
+"11\n"
+"help.text"
+msgid "<variable id=\"fospa\">Choose <emph>Format - Column</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3145252\n"
+"12\n"
+"help.text"
+msgid "Choose <emph>Format - Column - Optimal Width</emph>"
+msgstr ""
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3146971\n"
+"36\n"
+"help.text"
+msgid "Double-click right column separator in column headers"
+msgstr ""
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3147362\n"
+"15\n"
+"help.text"
+msgid "<variable id=\"fot\">Choose <emph>Format - Sheet</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3163805\n"
+"16\n"
+"help.text"
+msgid "<variable id=\"fotu\">Choose <emph>Format - Sheet - Rename</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3155333\n"
+"17\n"
+"help.text"
+msgid "<variable id=\"fotenb\">Choose <emph>Format - Sheet - Show</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_idN1077A\n"
+"help.text"
+msgid "<variable id=\"foste\">Choose <emph>Format - Page</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3155508\n"
+"25\n"
+"help.text"
+msgid "<variable id=\"fostel\">Choose <emph>Format - Page - Sheet</emph> tab </variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3150883\n"
+"26\n"
+"help.text"
+msgid "<variable id=\"fodrbe\">Choose <emph>Format - Print Ranges</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3156448\n"
+"27\n"
+"help.text"
+msgid "<variable id=\"fodrfe\">Choose <emph>Format - Print Ranges - Define</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3156290\n"
+"35\n"
+"help.text"
+msgid "<variable id=\"fodrhin\">Choose <emph>Format - Print Ranges - Add</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3155812\n"
+"28\n"
+"help.text"
+msgid "<variable id=\"fodbah\">Choose <emph>Format - Print Ranges - Remove</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3153307\n"
+"29\n"
+"help.text"
+msgid "<variable id=\"fodbbe\">Choose <emph>Format - Print Ranges - Edit</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3153916\n"
+"31\n"
+"help.text"
+msgid "Choose <emph>Format - AutoFormat</emph>"
+msgstr ""
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3154532\n"
+"32\n"
+"help.text"
+msgid "On the Tools bar, click"
+msgstr "Shiriti i Funksionit kyçur/çkyçur"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3149332\n"
+"help.text"
+msgid "<image id=\"img_id3156020\" src=\"cmd/sc_autoformat.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156020\">Icon</alt></image>"
+msgstr ""
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3154060\n"
+"33\n"
+"help.text"
+msgid "AutoFormat"
+msgstr "AutoFormat"
+
+#: 00000405.xhp
+msgctxt ""
+"00000405.xhp\n"
+"par_id3154618\n"
+"34\n"
+"help.text"
+msgid "<variable id=\"bedingte\">Choose <emph>Format - Conditional Formatting</emph></variable>"
msgstr ""
#: 00000406.xhp
@@ -1363,7 +979,6 @@ msgid "Tools Menu"
msgstr "AutoPilot Meny"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3150541\n"
@@ -1445,7 +1060,6 @@ msgid "<variable id=\"exdase\">Choose <emph>Tools - Detective - Remove All Trace
msgstr ""
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3153188\n"
@@ -1455,7 +1069,6 @@ msgid "<variable id=\"exdszfe\">Choose <emph>Tools - Detective - Trace Error</em
msgstr "Shto manualisht kornizën e kolonës së vetme"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3149410\n"
@@ -1492,7 +1105,6 @@ msgid "<variable id=\"automatisch\">Choose <emph>Tools - Detective - AutoRefresh
msgstr ""
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3154018\n"
@@ -1518,7 +1130,6 @@ msgid "<variable id=\"solver_options\">Choose Tools - Solver, Options button</va
msgstr ""
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3156277\n"
@@ -1528,7 +1139,6 @@ msgid "<variable id=\"exsze\">Choose <emph>Tools - Scenarios</emph></variable>"
msgstr "Shto manualisht kornizën e kolonës së vetme"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3145640\n"
@@ -1600,240 +1210,567 @@ msgctxt ""
msgid "<variable id=\"autoeingabe\">Choose <emph>Tools - Cell Contents - AutoInput</emph></variable>"
msgstr ""
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
+"00000407.xhp\n"
"tit\n"
"help.text"
-msgid "To access this function..."
-msgstr "Dërgo një kopje të këtij dokumenti tek:"
+msgid "Window Menu"
+msgstr "AutoPilot Meny"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
-"hd_id3155535\n"
+"00000407.xhp\n"
+"hd_id3155628\n"
"1\n"
"help.text"
-msgid "<variable id=\"wie\">To access this function... </variable>"
-msgstr ""
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_idN1056E\n"
-"help.text"
-msgid "<variable id=\"moreontop\">More explanations on top of this page. </variable>"
-msgstr ""
+msgid "Window Menu"
+msgstr "AutoPilot Meny"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_idN105AF\n"
+"00000407.xhp\n"
+"par_id3147335\n"
+"2\n"
"help.text"
-msgid "<variable id=\"optional\">In the %PRODUCTNAME Calc functions, parameters marked as \"optional\" can be left out only when no parameter follows. For example, in a function with four parameters, where the last two parameters are marked as \"optional\", you can leave out parameter 4 or parameters 3 and 4, but you cannot leave out parameter 3 alone. </variable>"
-msgstr ""
+msgid "<variable id=\"fete\">Choose <emph>Window - Split</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id9751884\n"
+"00000407.xhp\n"
+"par_id3153663\n"
+"3\n"
"help.text"
-msgid "<variable id=\"codes\">Codes greater than 127 may depend on your system's character mapping (for example iso-8859-1, iso-8859-2, Windows-1252, Windows-1250), and hence may not be portable.</variable>"
-msgstr ""
+msgid "<variable id=\"fefix\">Choose <emph>Window - Freeze</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
+"00000412.xhp\n"
"tit\n"
"help.text"
-msgid "Edit Menu"
+msgid "Data Menu"
msgstr "AutoPilot Meny"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"hd_id3147303\n"
+"00000412.xhp\n"
+"hd_id3145136\n"
"1\n"
"help.text"
-msgid "Edit Menu"
+msgid "Data Menu"
msgstr "AutoPilot Meny"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3155555\n"
-"2\n"
+"00000412.xhp\n"
+"par_id8366954\n"
"help.text"
-msgid "<variable id=\"kopffuss\">Choose <emph>Edit - Headers & Footers</emph></variable>"
+msgid "<variable id=\"text2columns\">Choose <emph>Data - Text to Columns</emph></variable>"
msgstr ""
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3159233\n"
+"00000412.xhp\n"
+"par_id3147399\n"
"3\n"
"help.text"
-msgid "<variable id=\"bkopfzeile\">Choose <emph>Edit - Headers & Footers - Header/Footer</emph> tabs</variable>"
-msgstr ""
+msgid "<variable id=\"dbrbf\">Choose <emph>Data - Define Range</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000402.xhp
-#, fuzzy
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150443\n"
+"00000412.xhp\n"
+"par_id3145345\n"
"4\n"
"help.text"
-msgid "<variable id=\"bausfullen\">Choose <emph>Edit - Fill</emph></variable>"
+msgid "<variable id=\"dbrba\">Choose <emph>Data - Select Range</emph></variable>"
msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000402.xhp
-#, fuzzy
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3143267\n"
+"00000412.xhp\n"
+"par_id3150443\n"
"5\n"
"help.text"
-msgid "<variable id=\"bausunten\">Choose <emph>Edit - Fill - Down</emph></variable>"
+msgid "<variable id=\"dnsrt\">Choose <emph>Data - Sort</emph></variable>"
msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000402.xhp
-#, fuzzy
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153880\n"
+"00000412.xhp\n"
+"par_id3148491\n"
"6\n"
"help.text"
-msgid "<variable id=\"bausrechts\">Choose <emph>Edit - Fill - Right</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
+msgid "Choose <emph>Data - Sort - Sort Criteria</emph> tab"
+msgstr ""
-#: 00000402.xhp
-#, fuzzy
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3151245\n"
+"00000412.xhp\n"
+"par_id3154516\n"
"7\n"
"help.text"
-msgid "<variable id=\"bausoben\">Choose <emph>Edit - Fill - Up</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
+msgid "On Standard bar, click"
+msgstr "Shiriti i Funksionit kyçur/çkyçur"
-#: 00000402.xhp
-#, fuzzy
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3145068\n"
+"00000412.xhp\n"
+"par_id3148663\n"
+"help.text"
+msgid "<image id=\"img_id3150543\" src=\"cmd/sc_sortup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3150543\">Icon</alt></image>"
+msgstr ""
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150767\n"
"8\n"
"help.text"
-msgid "<variable id=\"bauslinks\">Choose <emph>Edit - Fill - Left</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
+msgid "Sort Ascending"
+msgstr "Klasifiko në Rritje"
-#: 00000402.xhp
-#, fuzzy
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150400\n"
+"00000412.xhp\n"
+"par_id3153969\n"
+"help.text"
+msgid "<image id=\"img_id3125863\" src=\"cmd/sc_sortdown.png\" width=\"0.1701inch\" height=\"0.1701inch\"><alt id=\"alt_id3125863\">Icon</alt></image>"
+msgstr ""
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3145364\n"
"9\n"
"help.text"
-msgid "<variable id=\"baustab\">Choose <emph>Edit - Fill - Sheet</emph></variable>"
-msgstr "Shto manualisht kornizën e kolonës së vetme"
+msgid "Sort Descending"
+msgstr "Klasifiko në Zbritje"
-#: 00000402.xhp
-#, fuzzy
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3154910\n"
+"00000412.xhp\n"
+"par_id3146984\n"
"10\n"
"help.text"
-msgid "<variable id=\"bausreihe\">Choose <emph>Edit - Fill - Series</emph></variable>"
+msgid "<variable id=\"dnstot\">Choose <emph>Data - Sort - Options</emph> tab</variable>"
msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3154123\n"
+"00000412.xhp\n"
+"par_id3155308\n"
"11\n"
"help.text"
-msgid "Choose <emph>Edit - Delete Contents</emph>"
+msgid "<variable id=\"dnftr\">Choose <emph>Data - Filter</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3148646\n"
+"12\n"
+"help.text"
+msgid "Choose <emph>Data - Filter - AutoFilter</emph>"
msgstr ""
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3145785\n"
+"00000412.xhp\n"
+"par_id3151113\n"
+"13\n"
+"help.text"
+msgid "On Tools bar or Table Data bar, click"
+msgstr ""
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3145799\n"
+"help.text"
+msgid "<image id=\"img_id3149413\" src=\"cmd/sc_datafilterautofilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149413\">Icon</alt></image>"
+msgstr ""
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3149401\n"
+"14\n"
+"help.text"
+msgid "AutoFilter"
+msgstr "AutoFiltër"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3156278\n"
+"17\n"
+"help.text"
+msgid "<variable id=\"dnfspz\">Choose <emph>Data - Filter - Advanced Filter</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153764\n"
+"18\n"
+"help.text"
+msgid "Choose <emph>Data - Filter - Standard Filter - More>></emph> button"
+msgstr ""
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3155444\n"
+"19\n"
+"help.text"
+msgid "Choose <emph>Data - Filter - Advanced Filter - More>></emph> button"
+msgstr ""
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3156382\n"
"20\n"
"help.text"
-msgid "Backspace"
+msgid "Choose <emph>Data - Filter - Remove Filter</emph>"
msgstr ""
-#: 00000402.xhp
-#, fuzzy
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150011\n"
-"12\n"
+"00000412.xhp\n"
+"par_id3155961\n"
+"48\n"
"help.text"
-msgid "<variable id=\"bzelo\">Choose <emph>Edit - Delete Cells</emph></variable>"
+msgid "On Table Data bar, click <emph>Remove Filter/Sort</emph>"
+msgstr ""
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3148485\n"
+"help.text"
+msgid "<image id=\"img_id3145792\" src=\"cmd/sc_removefilter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145792\">Icon</alt></image>"
+msgstr ""
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3149207\n"
+"49\n"
+"help.text"
+msgid "Remove Filter/Sort"
+msgstr "Largo Filtrin/Klasifikimin"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3152778\n"
+"21\n"
+"help.text"
+msgid "<variable id=\"dnaftas\">Choose <emph>Data - Filter - Hide AutoFilter</emph></variable>"
msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153951\n"
-"13\n"
+"00000412.xhp\n"
+"par_id3166424\n"
+"22\n"
"help.text"
-msgid "Choose <emph>Edit – Sheet - Delete</emph>"
+msgid "<variable id=\"dntegs\">Choose <emph>Data - Subtotals</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3154574\n"
+"23\n"
+"help.text"
+msgid "<variable id=\"dntezd\">Choose <emph>Data - Subtotals - 1st, 2nd, 3rd Group</emph> tabs</variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3151277\n"
+"24\n"
+"help.text"
+msgid "<variable id=\"dntopi\">Choose <emph>Data - Subtotals - Options</emph> tab</variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3145133\n"
+"25\n"
+"help.text"
+msgid "<variable id=\"datengueltig\">Choose <emph>Data - Validity</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3152992\n"
+"26\n"
+"help.text"
+msgid "<variable id=\"datengueltigwerte\">Menu <emph>Data - Validity - Criteria</emph> tab</variable>"
msgstr ""
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3155306\n"
-"18\n"
+"00000412.xhp\n"
+"par_id3150367\n"
+"27\n"
"help.text"
-msgid "Open context menu for a sheet tab"
+msgid "<variable id=\"datengueltigeingabe\">Choose <emph>Data - Validity - Input Help</emph> tab</variable>"
msgstr ""
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3146119\n"
-"14\n"
+"00000412.xhp\n"
+"par_id3154486\n"
+"28\n"
"help.text"
-msgid "Choose <emph>Edit – Sheets – Move/Copy</emph>"
+msgid "<variable id=\"datengueltigfehler\">Choose <emph>Data - Validity - Error Alert</emph> tab</variable>"
msgstr ""
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3148645\n"
-"19\n"
+"00000412.xhp\n"
+"par_id3146978\n"
+"29\n"
"help.text"
-msgid "Open context menu for a sheet tab"
+msgid "<variable id=\"dnmfo\">Choose <emph>Data - Multiple Operations</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3155809\n"
+"30\n"
+"help.text"
+msgid "<variable id=\"dnksd\">Choose <emph>Data - Consolidate</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3148701\n"
+"31\n"
+"help.text"
+msgid "<variable id=\"dngld\">Choose <emph>Data - Group and Outline</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153815\n"
+"32\n"
+"help.text"
+msgid "<variable id=\"dngda\">Choose <emph>Data - Group and Outline - Hide Details</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3159223\n"
+"33\n"
+"help.text"
+msgid "<variable id=\"dngde\">Choose <emph>Data - Group and Outline - Show Details</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3146870\n"
+"34\n"
+"help.text"
+msgid "Choose <emph>Data - Group and Outline - Group</emph>"
msgstr ""
-#: 00000402.xhp
-#, fuzzy
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153093\n"
-"15\n"
+"00000412.xhp\n"
+"par_id3144507\n"
+"51\n"
"help.text"
-msgid "<variable id=\"bmaumloe\">Choose <emph>Edit - Delete Manual Break</emph></variable>"
+msgid "F12"
+msgstr ""
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3144772\n"
+"35\n"
+"help.text"
+msgid "On <emph>Tools</emph> bar, click"
+msgstr "Shiriti i Funksionit kyçur/çkyçur"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3149438\n"
+"help.text"
+msgid "<image id=\"img_id3153287\" src=\"cmd/sc_group.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153287\">Icon</alt></image>"
+msgstr ""
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150214\n"
+"36\n"
+"help.text"
+msgid "Group"
+msgstr "Grupi"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3146781\n"
+"37\n"
+"help.text"
+msgid "Choose <emph>Data - Group and Outline - Ungroup</emph>"
+msgstr ""
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150892\n"
+"52\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F12"
+msgstr ""
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3155097\n"
+"38\n"
+"help.text"
+msgid "On <emph>Tools</emph> bar, click"
+msgstr "Shiriti i Funksionit kyçur/çkyçur"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150048\n"
+"help.text"
+msgid "<image id=\"img_id3155914\" src=\"cmd/sc_ungroup.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155914\">Icon</alt></image>"
+msgstr ""
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153555\n"
+"39\n"
+"help.text"
+msgid "Ungroup"
+msgstr "Zhgrupo"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153008\n"
+"40\n"
+"help.text"
+msgid "<variable id=\"dnglagl\">Choose <emph>Data - Group and Outline - AutoOutline</emph></variable>"
msgstr "Shto manualisht kornizën e kolonës së vetme"
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153191\n"
-"16\n"
+"00000412.xhp\n"
+"par_id3154709\n"
+"41\n"
"help.text"
-msgid "<variable id=\"bzeilum\">Choose <emph>Edit - Delete Manual Break - Row Break</emph></variable>"
+msgid "<variable id=\"dnglef\">Choose <emph>Data - Group and Outline - Remove</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id1774346\n"
+"help.text"
+msgid "<variable id=\"dngdrill\">Choose <emph>Data - Group and Outline - Show Details</emph> (for some pivot tables)</variable>"
msgstr ""
-#: 00000402.xhp
+#: 00000412.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3145645\n"
-"17\n"
+"00000412.xhp\n"
+"par_id3155759\n"
+"42\n"
"help.text"
-msgid "<variable id=\"bspaum\">Choose <emph>Edit - Delete Manual Break - Column Break</emph></variable>"
+msgid "<variable id=\"dndtpt\">Choose <emph>Data - Pivot Table</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3154625\n"
+"43\n"
+"help.text"
+msgid "<variable id=\"dndpa\">Choose <emph>Data - Pivot Table - Create</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3147558\n"
+"53\n"
+"help.text"
+msgid "<variable id=\"dndq\">Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>.</variable>"
msgstr ""
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153297\n"
+"50\n"
+"help.text"
+msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Current selection</emph>."
+msgstr ""
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3145118\n"
+"54\n"
+"help.text"
+msgid "Choose <emph>Data - Pivot Table - Create</emph>, in the Select Source dialog choose the option <emph>Data source registered in $[officename]</emph>, click <emph>OK</emph> to see <emph>Select Data Source</emph> dialog."
+msgstr ""
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3153294\n"
+"44\n"
+"help.text"
+msgid "<variable id=\"dndpak\">Choose <emph>Data - Pivot Table - Refresh</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3151344\n"
+"45\n"
+"help.text"
+msgid "<variable id=\"dndploe\">Choose <emph>Data - Pivot Table - Delete</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_id3150397\n"
+"46\n"
+"help.text"
+msgid "<variable id=\"dndakt\">Choose <emph>Data - Refresh Range</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
+
+#: 00000412.xhp
+msgctxt ""
+"00000412.xhp\n"
+"par_idN10B8F\n"
+"help.text"
+msgid "<variable id=\"grouping\">Choose <emph>Data - Group and Outline - Group</emph></variable>"
+msgstr "Shto manualisht kornizën e kolonës së vetme"
diff --git a/source/sq/helpcontent2/source/text/scalc/01.po b/source/sq/helpcontent2/source/text/scalc/01.po
index 4f566716681..2e903ebcc5b 100644
--- a/source/sq/helpcontent2/source/text/scalc/01.po
+++ b/source/sq/helpcontent2/source/text/scalc/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
-"PO-Revision-Date: 2012-07-04 18:42+0200\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"PO-Revision-Date: 2013-02-12 23:29+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sq\n"
@@ -14,195 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Link to External Data"
-msgstr "~Lidhi me të dhënat e jashtme..."
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"par_id3153192\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_LINKAREA_BTN_BROWSE\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
-msgstr ""
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"hd_id3145785\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">Link to External Data</link>"
-msgstr ""
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"par_id3149262\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\".uno:InsertExternalDataSourc\">Inserts data from an HTML, Calc, or Excel file into the current sheet as a link. The data must be located within a named range.</ahelp>"
-msgstr ""
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"hd_id3146984\n"
-"5\n"
-"help.text"
-msgid "URL of external data source."
-msgstr "URL e ~ burimit të jashtëm të të dhënave"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"par_id3145366\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SCDLG_LINKAREAURL\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp>"
-msgstr ""
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"hd_id3145251\n"
-"7\n"
-"help.text"
-msgid "Available tables/ranges"
-msgstr "~Intervalet/tabelat në dispozicion"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"par_id3147397\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC_MULTILISTBOX_RID_SCDLG_LINKAREA_LB_RANGES\">Select the table or the data range that you want to insert.</ahelp>"
-msgstr ""
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"hd_id3154492\n"
-"9\n"
-"help.text"
-msgid "Update every"
-msgstr "~Përditëso çdo:"
-
-#: 04090000.xhp
-msgctxt ""
-"04090000.xhp\n"
-"par_id3154017\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC_NUMERICFIELD_RID_SCDLG_LINKAREA_NF_DELAY\">Enter the number of seconds to wait before the external data are reloaded into the current document.</ahelp>"
-msgstr ""
-
-#: func_minute.xhp
-#, fuzzy
-msgctxt ""
-"func_minute.xhp\n"
-"tit\n"
-"help.text"
-msgid "MINUTE"
-msgstr "MINUTA"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"bm_id3149803\n"
-"help.text"
-msgid "<bookmark_value>MINUTE function</bookmark_value>"
-msgstr "Gabim: Vlera nuk është në dispozicion"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"hd_id3149803\n"
-"66\n"
-"help.text"
-msgid "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MINUTE</link></variable>"
-msgstr ""
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"par_id3148988\n"
-"67\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MINUTE\">Calculates the minute for an internal time value.</ahelp> The minute is returned as a number between 0 and 59."
-msgstr ""
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"hd_id3154343\n"
-"68\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"par_id3148660\n"
-"69\n"
-"help.text"
-msgid "MINUTE(Number)"
-msgstr "Numri i faqes"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"par_id3154611\n"
-"70\n"
-"help.text"
-msgid "<emph>Number</emph>, as a time value, is a decimal number where the number of the minute is to be returned."
-msgstr ""
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"hd_id3145374\n"
-"71\n"
-"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
-
-#: func_minute.xhp
-#, fuzzy
-msgctxt ""
-"func_minute.xhp\n"
-"par_id3148463\n"
-"72\n"
-"help.text"
-msgid "<item type=\"input\">=MINUTE(8.999)</item> returns 58"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: func_minute.xhp
-#, fuzzy
-msgctxt ""
-"func_minute.xhp\n"
-"par_id3149419\n"
-"73\n"
-"help.text"
-msgid "<item type=\"input\">=MINUTE(8.9999)</item> returns 59"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: func_minute.xhp
-msgctxt ""
-"func_minute.xhp\n"
-"par_id3144755\n"
-"74\n"
-"help.text"
-msgid "<item type=\"input\">=MINUTE(NOW())</item> returns the current minute value."
-msgstr ""
+"X-POOTLE-MTIME: 1360711744.0\n"
#: 01120000.xhp
msgctxt ""
@@ -268,10898 +80,5505 @@ msgctxt ""
msgid "<link href=\"text/scalc/main0210.xhp\" name=\"Page View Object Bar\">Page View Object Bar</link>"
msgstr ""
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
+"02110000.xhp\n"
"tit\n"
"help.text"
-msgid "Options"
-msgstr "Opcionet"
+msgid "Navigator"
+msgstr "Orientuesi"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"bm_id3147228\n"
+"02110000.xhp\n"
+"bm_id3150791\n"
"help.text"
-msgid "<bookmark_value>sorting; options for database ranges</bookmark_value><bookmark_value>sorting;Asian languages</bookmark_value><bookmark_value>Asian languages;sorting</bookmark_value><bookmark_value>phonebook sorting rules</bookmark_value><bookmark_value>natural sort algorithm</bookmark_value>"
+msgid "<bookmark_value>Navigator;for sheets</bookmark_value><bookmark_value>navigating;in spreadsheets</bookmark_value><bookmark_value>displaying; scenario names</bookmark_value><bookmark_value>scenarios;displaying names</bookmark_value>"
msgstr ""
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3147228\n"
+"02110000.xhp\n"
+"hd_id3150791\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> Options</link>"
+msgid "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>"
msgstr ""
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3153770\n"
+"02110000.xhp\n"
+"par_id3156422\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/SortOptionsPage\"> Sets additional sorting options.</ahelp>"
+msgid "<ahelp hid=\".uno:Navigator\">Activates and deactivates the Navigator.</ahelp> The Navigator is a <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>."
msgstr ""
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"hd_id3146976\n"
-"3\n"
-"help.text"
-msgid "Case Sensitivity"
-msgstr "Përputh shkronjat"
-
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3153091\n"
-"4\n"
+"02110000.xhp\n"
+"par_id3145271\n"
+"40\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\"> Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies.</ahelp>"
+msgid "Choose <emph>View - Navigator</emph> to display the Navigator."
msgstr ""
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_idN10637\n"
+"02110000.xhp\n"
+"hd_id3159155\n"
+"4\n"
"help.text"
-msgid "Note for Asian languages: Check <emph>Case Sensitivity</emph> to apply multi-level collation. With multi-level collation, entries are first compared in their primitive forms with their cases and diacritics ignored. If they evaluate as the same, their diacritics are taken into account for the second-level comparison. If they still evaluate as the same, their cases, character widths, and Japanese Kana difference are considered for the third-level comparison."
-msgstr ""
+msgid "Column"
+msgstr "Kolonë"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3155856\n"
+"02110000.xhp\n"
+"par_id3146984\n"
"5\n"
"help.text"
-msgid "Range contains column/row labels"
-msgstr "Intervali përmban emër~timet e shtyllës"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_COL\">Enter the column letter. Press Enter to reposition the cell cursor to the specified column in the same row.</ahelp>"
+msgstr ""
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3154014\n"
+"02110000.xhp\n"
+"hd_id3147126\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/header\"> Omits the first row or the first column in the selection from the sort.</ahelp> The <emph>Direction</emph> setting at the bottom of the dialog defines the name and function of this check box."
-msgstr ""
+msgid "Row"
+msgstr "Rresht"
-#: 12030200.xhp
-#, fuzzy
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3147436\n"
+"02110000.xhp\n"
+"par_id3149958\n"
"7\n"
"help.text"
-msgid "Include formats"
-msgstr "Përfshij ~formatet"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Enter a row number. Press Enter to reposition the cell cursor to the specified row in the same column.</ahelp>"
+msgstr ""
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3149377\n"
+"02110000.xhp\n"
+"hd_id3150717\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/formats\"> Preserves the current cell formatting.</ahelp>"
-msgstr ""
+msgid "Data Range"
+msgstr "Intervali i të Dhënave"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3147438\n"
+"02110000.xhp\n"
+"par_id3150752\n"
+"10\n"
"help.text"
-msgid "Enable natural sort"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Specifies the current data range denoted by the position of the cell cursor.</ahelp>"
msgstr ""
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3149378\n"
+"02110000.xhp\n"
+"par_id3159264\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/naturalsort\">Natural sort is a sort algorithm that sorts string-prefixed numbers based on the value of the numerical element in each sorted number, instead of the traditional way of sorting them as ordinary strings.</ahelp> For instance, let's assume you have a series of values such as, A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. When you put these values into a range of cells and run the sort, it will become A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9. While this sorting behavior may make sense to those who understand the underlying sorting mechanism, to the rest of the population it seems completely bizarre, if not outright inconvenient. With the natural sort feature enabled, values such as the ones in the above example get sorted \"properly\", which improves the convenience of sorting operations in general."
+msgid "<image id=\"img_id3147338\" src=\"cmd/sc_grid.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147338\">Icon</alt></image>"
msgstr ""
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"hd_id3153878\n"
-"10\n"
-"help.text"
-msgid "Copy sort results to:"
-msgstr "~Kopjo rezultatet e klasifikimit në:"
-
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3156286\n"
-"11\n"
+"02110000.xhp\n"
+"par_id3146919\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/copyresult\"> Copies the sorted list to the cell range that you specify.</ahelp>"
-msgstr ""
+msgid "Data Range"
+msgstr "Intervali i të Dhënave"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3153418\n"
-"12\n"
+"02110000.xhp\n"
+"hd_id3148488\n"
+"14\n"
"help.text"
-msgid "Sort results"
-msgstr "~Kopjo rezultatet e klasifikimit në:"
+msgid "Start"
+msgstr "Fillo"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3155602\n"
-"13\n"
+"02110000.xhp\n"
+"par_id3150086\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outarealb\"> Select a named <link href=\"text/scalc/01/12010000.xhp\" name=\"cell range\"> cell range</link> where you want to display the sorted list, or enter a cell range in the input box.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_UP\">Moves to the cell at the beginning of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
msgstr ""
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"hd_id3153707\n"
-"14\n"
-"help.text"
-msgid "Sort results"
-msgstr "~Kopjo rezultatet e klasifikimit në:"
-
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3145642\n"
-"15\n"
+"02110000.xhp\n"
+"par_id3152994\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outareaed\"> Enter the cell range where you want to display the sorted list, or select a named range from the list.</ahelp>"
+msgid "<image id=\"img_id3150515\" src=\"sw/imglst/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Icon</alt></image>"
msgstr ""
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3155445\n"
-"16\n"
+"02110000.xhp\n"
+"par_id3154372\n"
+"15\n"
"help.text"
-msgid "Custom sort order"
-msgstr "Renditja e klasifikimit e ~zgjedhur sipas dëshirës"
+msgid "Start"
+msgstr "Fillo"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3156385\n"
+"02110000.xhp\n"
+"hd_id3146982\n"
"17\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuser\"> Click here and then select the custom sort order that you want.</ahelp>"
-msgstr ""
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"hd_id3154704\n"
-"18\n"
-"help.text"
-msgid "Custom sort order"
-msgstr "Renditja e klasifikimit e ~zgjedhur sipas dëshirës"
+msgid "End"
+msgstr "Fund"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3155962\n"
+"02110000.xhp\n"
+"par_id3152985\n"
"19\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuserlb\"> Select the custom sort order that you want to apply. To define a custom sort order, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Sort Lists\">%PRODUCTNAME Calc - Sort Lists</link> .</ahelp>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Moves to the cell at the end of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
msgstr ""
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"hd_id3149257\n"
-"28\n"
-"help.text"
-msgid "Language"
-msgstr "Gjuhë"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"hd_id3147004\n"
-"29\n"
-"help.text"
-msgid "Language"
-msgstr "Gjuhë"
-
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3150787\n"
-"32\n"
+"02110000.xhp\n"
+"par_id3159170\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/language\"> Select the language for the sorting rules.</ahelp>"
+msgid "<image id=\"img_id3148871\" src=\"sw/imglst/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Icon</alt></image>"
msgstr ""
-#: 12030200.xhp
-#, fuzzy
-msgctxt ""
-"12030200.xhp\n"
-"hd_id3150344\n"
-"30\n"
-"help.text"
-msgid "Options"
-msgstr "Opcionet"
-
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3155113\n"
-"33\n"
+"02110000.xhp\n"
+"par_id3147072\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/algorithmlb\"> Select a sorting option for the language.</ahelp> For example, select the \"phonebook\" option for German to include the umlaut special character in the sorting."
-msgstr ""
+msgid "End"
+msgstr "Fund"
-#: 12030200.xhp
-#, fuzzy
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3152580\n"
+"02110000.xhp\n"
+"hd_id3150107\n"
"20\n"
"help.text"
-msgid "Direction"
-msgstr "Drejtim"
+msgid "Toggle"
+msgstr "Kapërce"
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"hd_id3154201\n"
+"02110000.xhp\n"
+"par_id3159098\n"
"22\n"
"help.text"
-msgid "Top to Bottom (Sort Rows)"
-msgstr "~Nga kreu në fund (klasifiko reshtat)"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"par_id3166430\n"
-"23\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/topdown\"> Sorts rows by the values in the active columns of the selected range.</ahelp>"
-msgstr ""
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"hd_id3145588\n"
-"24\n"
-"help.text"
-msgid "Left to Right (Sort Columns)"
-msgstr "Nga e m~ajta në të djathtë (klasifiko shtyllat)"
-
-#: 12030200.xhp
-msgctxt ""
-"12030200.xhp\n"
-"par_id3154370\n"
-"25\n"
-"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/leftright\"> Sorts columns by the values in the active rows of the selected range.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Toggles the content view. Only the selected Navigator element and its subelements are displayed.</ahelp> Click the icon again to restore all elements for viewing."
msgstr ""
-#: 12030200.xhp
-#, fuzzy
-msgctxt ""
-"12030200.xhp\n"
-"hd_id3156290\n"
-"26\n"
-"help.text"
-msgid "Data area"
-msgstr "Zona e të dhënave:"
-
-#: 12030200.xhp
+#: 02110000.xhp
msgctxt ""
-"12030200.xhp\n"
-"par_id3156446\n"
-"27\n"
+"02110000.xhp\n"
+"par_id3152869\n"
"help.text"
-msgid "Displays the cell range that you want to sort."
+msgid "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Icon</alt></image>"
msgstr ""
-#: 12100000.xhp
+#: 02110000.xhp
msgctxt ""
-"12100000.xhp\n"
-"tit\n"
+"02110000.xhp\n"
+"par_id3159229\n"
+"21\n"
"help.text"
-msgid "Refresh Range"
-msgstr "Rifresko brezin"
+msgid "Toggle"
+msgstr "Kapërce"
-#: 12100000.xhp
+#: 02110000.xhp
msgctxt ""
-"12100000.xhp\n"
-"bm_id3153662\n"
+"02110000.xhp\n"
+"hd_id3149381\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>database ranges; refreshing</bookmark_value>"
-msgstr ""
+msgid "Contents"
+msgstr "Përmbajtjet"
-#: 12100000.xhp
+#: 02110000.xhp
msgctxt ""
-"12100000.xhp\n"
-"hd_id3153662\n"
-"1\n"
+"02110000.xhp\n"
+"par_id3150051\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">Allows you to hide/show the contents.</ahelp>"
msgstr ""
-#: 12100000.xhp
+#: 02110000.xhp
msgctxt ""
-"12100000.xhp\n"
-"par_id3153088\n"
-"2\n"
+"02110000.xhp\n"
+"par_id3155597\n"
"help.text"
-msgid "<variable id=\"aktualisieren\"><ahelp hid=\".uno:DataAreaRefresh\" visibility=\"visible\">Updates a data range that was inserted from an external database. The data in the sheet is updated to match the data in the external database.</ahelp></variable>"
+msgid "<image id=\"img_id3154738\" src=\"sw/imglst/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Icon</alt></image>"
msgstr ""
-#: 12040500.xhp
-msgctxt ""
-"12040500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Hide AutoFilter"
-msgstr "Fshehe Filtrin Automatik"
-
-#: 12040500.xhp
+#: 02110000.xhp
msgctxt ""
-"12040500.xhp\n"
-"bm_id3150276\n"
+"02110000.xhp\n"
+"par_id3150955\n"
+"12\n"
"help.text"
-msgid "<bookmark_value>database ranges; hiding AutoFilter</bookmark_value>"
-msgstr ""
+msgid "Contents"
+msgstr "Përmbajtjet"
-#: 12040500.xhp
+#: 02110000.xhp
msgctxt ""
-"12040500.xhp\n"
-"hd_id3150276\n"
-"1\n"
+"02110000.xhp\n"
+"hd_id3147244\n"
+"23\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\">Hide AutoFilter</link>"
-msgstr ""
+msgid "Scenarios"
+msgstr "Plan-veprimet"
-#: 12040500.xhp
+#: 02110000.xhp
msgctxt ""
-"12040500.xhp\n"
-"par_id3156326\n"
-"2\n"
+"02110000.xhp\n"
+"par_id3153955\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">Hides the AutoFilter buttons in the selected cell range.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Displays all available scenarios. Double-click a name to apply that scenario.</ahelp> The result is shown in the sheet. For more information, choose <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Tools - Scenarios</emph></link>."
msgstr ""
-#: 04050000.xhp
-msgctxt ""
-"04050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Insert Sheet"
-msgstr "Fute Fletën"
-
-#: 04050000.xhp
-msgctxt ""
-"04050000.xhp\n"
-"bm_id4522232\n"
-"help.text"
-msgid "<bookmark_value>sheets;creating</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
-
-#: 04050000.xhp
-msgctxt ""
-"04050000.xhp\n"
-"hd_id3155629\n"
-"1\n"
-"help.text"
-msgid "Insert Sheet"
-msgstr "Fute Fletën"
-
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3147264\n"
-"2\n"
+"02110000.xhp\n"
+"par_id3148745\n"
"help.text"
-msgid "<variable id=\"tabelleeinfuegentext\"><ahelp hid=\".uno:Insert\">Defines the options to be used to insert a new sheet.</ahelp> You can create a new sheet, or insert an existing sheet from a file.</variable>"
+msgid "<image id=\"img_id3159256\" src=\"sc/imglst/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">Icon</alt></image>"
msgstr ""
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3154684\n"
-"19\n"
+"02110000.xhp\n"
+"par_id3166466\n"
+"24\n"
"help.text"
-msgid "Position"
-msgstr "Pozicion"
+msgid "Scenarios"
+msgstr "Plan-veprimet"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3156281\n"
-"20\n"
+"02110000.xhp\n"
+"par_idN10A6C\n"
"help.text"
-msgid "Specifies where the new sheet is to be inserted into your document."
+msgid "If the Navigator displays scenarios, you can access the following commands when you right-click a scenario entry:"
msgstr ""
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3154123\n"
-"21\n"
+"02110000.xhp\n"
+"par_idN10A77\n"
"help.text"
-msgid "Before current sheet"
-msgstr "P~ara fletës aktuale"
+msgid "Delete"
+msgstr "Fshije"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3145787\n"
-"22\n"
+"02110000.xhp\n"
+"par_idN10A7B\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSERT_TABLE:RB_BEFORE\">Inserts a new sheet directly before the current sheet.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Deletes the selected scenario.</ahelp>"
msgstr ""
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3155414\n"
-"23\n"
+"02110000.xhp\n"
+"par_idN10A92\n"
"help.text"
-msgid "After current sheet"
-msgstr "~Pas fletës aktuale"
+msgid "Properties"
+msgstr "Vetitë"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3145271\n"
-"24\n"
+"02110000.xhp\n"
+"par_idN10A96\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSERT_TABLE:RB_BEHIND\">Inserts a new sheet directly after the current sheet.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_SCENARIO_EDIT\">Opens the <link href=\"text/scalc/01/06050000.xhp\">Edit scenario</link> dialog, where you can edit the scenario properties.</ahelp>"
msgstr ""
-#: 04050000.xhp
-msgctxt ""
-"04050000.xhp\n"
-"hd_id3147428\n"
-"25\n"
-"help.text"
-msgid "Sheet"
-msgstr "Krijo"
-
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3154012\n"
+"02110000.xhp\n"
+"hd_id3150037\n"
"26\n"
"help.text"
-msgid "Specifies whether a new sheet or an existing sheet is inserted into the document."
-msgstr ""
+msgid "Drag Mode"
+msgstr "Modi i tërheqjes"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3147350\n"
-"3\n"
+"02110000.xhp\n"
+"par_id3157876\n"
+"28\n"
"help.text"
-msgid "New sheet"
-msgstr "Krijo"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created.</ahelp>"
+msgstr ""
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3149262\n"
-"4\n"
+"02110000.xhp\n"
+"par_id3149947\n"
"help.text"
-msgid "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_NEW\">Creates a new sheet. Enter a sheet name in the <emph>Name</emph> field. Allowed characters are letters, numbers, spaces, and the underline character.</ahelp>"
+msgid "<image id=\"img_id3159119\" src=\"cmd/sc_chainframes.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159119\">Icon</alt></image>"
msgstr ""
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3155418\n"
+"02110000.xhp\n"
+"par_id3150656\n"
"27\n"
"help.text"
-msgid "No. of sheets"
-msgstr ""
+msgid "Drag Mode"
+msgstr "Modi i tërheqjes"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3148457\n"
-"28\n"
+"02110000.xhp\n"
+"hd_id3149009\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCDLG_INSERT_TABLE:NF_COUNT\">Specifies the number of sheets to be created.</ahelp>"
-msgstr ""
+msgid "Insert as Hyperlink"
+msgstr "Shto si Hiperlink"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3149379\n"
-"7\n"
+"02110000.xhp\n"
+"par_id3146938\n"
+"30\n"
"help.text"
-msgid "Name"
-msgstr "Emri"
+msgid "<ahelp hid=\"HID_SC_DROPMODE_URL\">Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document.</ahelp> You can later click the created hyperlink to set the cursor and the view to the respective object."
+msgstr ""
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3150718\n"
-"8\n"
+"02110000.xhp\n"
+"par_id3880733\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_INSERT_TABLE:ED_TABNAME\">Specifies the name of the new sheet.</ahelp>"
+msgid "If you insert a hyperlink that links to an open document, you need to save the document before you can use the hyperlink."
msgstr ""
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3155066\n"
-"9\n"
+"02110000.xhp\n"
+"hd_id3154682\n"
+"31\n"
"help.text"
-msgid "From File"
-msgstr "Nga fajli..."
+msgid "Insert as Link"
+msgstr "Shto si link"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3153714\n"
-"10\n"
+"02110000.xhp\n"
+"par_id3150746\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\"SC_RADIOBUTTON_RID_SCDLG_INSERT_TABLE_RB_FROMFILE\">Inserts a sheet from an existing file into the current document.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_DROPMODE_LINK\">Creates a link when you drag-and-drop an object from the Navigator into a document.</ahelp>"
msgstr ""
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3149020\n"
-"15\n"
+"02110000.xhp\n"
+"hd_id3145824\n"
+"33\n"
"help.text"
-msgid "Browse"
-msgstr "Shfleto..."
+msgid "Insert as Copy"
+msgstr "Shto si kopje"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3159267\n"
-"16\n"
+"02110000.xhp\n"
+"par_id3147471\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_INSERT_TABLE:BTN_BROWSE\">Opens a dialog for selecting a file.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_DROPMODE_COPY\">Generates a copy when you drag-and-drop an object from the Navigator into a document.</ahelp>"
msgstr ""
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3149255\n"
-"29\n"
+"02110000.xhp\n"
+"hd_id3147423\n"
+"38\n"
"help.text"
-msgid "Available Sheets"
-msgstr "Selekto Fletët"
+msgid "Objects"
+msgstr "Objektet"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3155336\n"
-"30\n"
+"02110000.xhp\n"
+"par_id3150700\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_INSERT_TABLE:LB_TABLES\">If you selected a file by using the <emph>Browse</emph> button, the sheets contained in it are displayed in the list box. The file path is displayed below this box. Select the sheet to be inserted from the list box.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Displays all objects in your document.</ahelp>"
msgstr ""
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3145791\n"
-"17\n"
+"02110000.xhp\n"
+"hd_id3150860\n"
+"35\n"
"help.text"
-msgid "Link"
-msgstr "Link"
+msgid "Documents"
+msgstr "Dokumentet"
-#: 04050000.xhp
+#: 02110000.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3152580\n"
-"18\n"
+"02110000.xhp\n"
+"par_id3153929\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_INSERT_TABLE_CB_LINK\">Select to insert the sheet as a link instead as a copy. The links can be updated to show the current contents.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_NAVIPI_DOC\">Displays the names of all open documents.</ahelp> To switch to another open document in the Navigator, click the document name. The status (active, inactive) of the document is shown in brackets after the name. You can switch the active document in the <emph>Window</emph> menu."
msgstr ""
-#: 06060100.xhp
+#: 02120000.xhp
msgctxt ""
-"06060100.xhp\n"
+"02120000.xhp\n"
"tit\n"
"help.text"
-msgid "Protecting Sheet"
-msgstr "Largo mbrojtjen nga fleta"
+msgid "Headers & Footers"
+msgstr "~Krerët & Fundfaqet..."
-#: 06060100.xhp
+#: 02120000.xhp
msgctxt ""
-"06060100.xhp\n"
-"hd_id3153087\n"
+"02120000.xhp\n"
+"hd_id3145251\n"
"1\n"
"help.text"
-msgid "Protecting Sheet"
-msgstr "Largo mbrojtjen nga fleta"
+msgid "Headers & Footers"
+msgstr "~Krerët & Fundfaqet..."
-#: 06060100.xhp
+#: 02120000.xhp
msgctxt ""
-"06060100.xhp\n"
-"par_id3148664\n"
+"02120000.xhp\n"
+"par_id3151073\n"
"2\n"
"help.text"
-msgid "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protects the cells in the current sheet from being modified.</ahelp></variable> Choose <emph>Tools - Protect Document - Sheet</emph> to open the <emph>Protect Sheet</emph> dialog in which you then specify sheet protection with or without a password."
-msgstr ""
-
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"par_id3149664\n"
-"5\n"
-"help.text"
-msgid "To protect cells from further editing, the <emph>Protected</emph> check box must be checked on the <link href=\"text/scalc/01/05020600.xhp\" name=\"Format - Cells - Cell Protection\"><emph>Format - Cells - Cell Protection</emph></link> tab page or on the <emph>Format Cells</emph> context menu."
+msgid "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".uno:EditHeaderAndFooter\">Allows you to define and format headers and footers.</ahelp></variable>"
msgstr ""
-#: 06060100.xhp
+#: 02120000.xhp
msgctxt ""
-"06060100.xhp\n"
-"par_id3154490\n"
-"8\n"
+"02120000.xhp\n"
+"par_id3153415\n"
+"3\n"
"help.text"
-msgid "Unprotected cells or cell ranges can be set up on a protected sheet by using the <emph>Tools - Protect Document - Sheet</emph> and <emph>Format - Cells - Cell Protection</emph> menus:"
+msgid "The<emph> Headers/Footers </emph>dialog contains the tabs for defining headers and footers. There will be separate tabs for the left and right page headers and footers if the <emph>Same content left/right</emph> option was not marked in the <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">Page Style</link> dialog."
msgstr ""
-#: 06060100.xhp
+#: 02120100.xhp
msgctxt ""
-"06060100.xhp\n"
-"par_id3149123\n"
-"16\n"
+"02120100.xhp\n"
+"tit\n"
"help.text"
-msgid "Select the cells that will be unprotected"
-msgstr ""
+msgid "Header/Footer"
+msgstr "Mbititulli/Nëntitulli ka ndryshuar"
-#: 06060100.xhp
+#: 02120100.xhp
msgctxt ""
-"06060100.xhp\n"
-"par_id3150329\n"
-"17\n"
+"02120100.xhp\n"
+"bm_id3153360\n"
"help.text"
-msgid "Select <emph>Format - Cells - Cell Protection</emph>. Unmark the <emph>Protected</emph> box and click <emph>OK</emph>."
+msgid "<bookmark_value>page styles; headers</bookmark_value> <bookmark_value>page styles; footers</bookmark_value> <bookmark_value>headers; defining</bookmark_value> <bookmark_value>footers; defining</bookmark_value> <bookmark_value>file names in headers/footers</bookmark_value> <bookmark_value>changing;dates, automatically</bookmark_value> <bookmark_value>dates;updating automatically</bookmark_value> <bookmark_value>automatic date updates</bookmark_value>"
msgstr ""
-#: 06060100.xhp
+#: 02120100.xhp
msgctxt ""
-"06060100.xhp\n"
-"par_id3156384\n"
-"18\n"
+"02120100.xhp\n"
+"hd_id3153360\n"
+"1\n"
"help.text"
-msgid "On the <emph>Tools - Protect Document - Sheet</emph> menu, activate protection for the sheet. Effective immediately, only the cell range you selected in step 1 can be edited."
+msgid "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">Header/Footer</link>"
msgstr ""
-#: 06060100.xhp
+#: 02120100.xhp
msgctxt ""
-"06060100.xhp\n"
-"par_id3149566\n"
-"9\n"
+"02120100.xhp\n"
+"par_id3150768\n"
+"2\n"
"help.text"
-msgid "To later change an unprotected area to a protected area, select the range. Next, on the <emph>Format - Cells - Cell Protection</emph> tab page, check the <emph>Protected</emph> box. Finally, choose the <emph>Tools - Protect Document - Sheet </emph>menu. The previously editable range is now protected."
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/HeaderFooterContent\">Defines or formats a header or footer for a Page Style.</ahelp>"
msgstr ""
-#: 06060100.xhp
+#: 02120100.xhp
msgctxt ""
-"06060100.xhp\n"
-"par_id3153964\n"
-"10\n"
+"02120100.xhp\n"
+"hd_id3145748\n"
+"3\n"
"help.text"
-msgid "Sheet protection also affects the context menu of the sheet tabs at the bottom of the screen. The <emph>Delete</emph> and <emph>Rename</emph> commands cannot be selected."
-msgstr ""
+msgid "Left Area"
+msgstr "~Zona e majtë"
-#: 06060100.xhp
+#: 02120100.xhp
msgctxt ""
-"06060100.xhp\n"
-"par_id3150301\n"
-"19\n"
+"02120100.xhp\n"
+"par_id3147434\n"
+"4\n"
"help.text"
-msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles."
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_LEFT\">Enter the text to be displayed at the left side of the header or footer.</ahelp>"
msgstr ""
-#: 06060100.xhp
+#: 02120100.xhp
msgctxt ""
-"06060100.xhp\n"
-"par_id3154656\n"
-"3\n"
+"02120100.xhp\n"
+"hd_id3148648\n"
+"5\n"
"help.text"
-msgid "A protected sheet or cell range can no longer be modified until this protection is disabled. To disable the protection, choose the <emph>Tools - Protect Document - Sheet</emph> command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the <emph>Remove Protection</emph> dialog opens, where you must enter the password."
-msgstr ""
+msgid "Center Area"
+msgstr "~Zona qendrore"
-#: 06060100.xhp
+#: 02120100.xhp
msgctxt ""
-"06060100.xhp\n"
-"par_id3149815\n"
-"11\n"
+"02120100.xhp\n"
+"par_id3163710\n"
+"6\n"
"help.text"
-msgid "Once saved, protected sheets can only be saved again by using the <emph>File - Save As</emph> command."
+msgid "<ahelp hid=\".\">Enter the text to be displayed at the center of the header or footer.</ahelp>"
msgstr ""
-#: 06060100.xhp
-msgctxt ""
-"06060100.xhp\n"
-"hd_id3150206\n"
-"4\n"
-"help.text"
-msgid "Password (optional)"
-msgstr "Fjalëkalimi (opcional):"
-
-#: 06060100.xhp
+#: 02120100.xhp
msgctxt ""
-"06060100.xhp\n"
-"par_id3152990\n"
+"02120100.xhp\n"
+"hd_id3154942\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\".uno:Protect\">Allows you to enter a password to protect the sheet from unauthorized changes.</ahelp>"
-msgstr ""
+msgid "Right Area"
+msgstr "Zona e djathtë"
-#: 06060100.xhp
+#: 02120100.xhp
msgctxt ""
-"06060100.xhp\n"
-"par_id3148700\n"
-"12\n"
+"02120100.xhp\n"
+"par_id3147126\n"
+"8\n"
"help.text"
-msgid "Complete protection of your work can be achieved by combining both options on the <emph>Tools - Protect Document</emph> menu, including password protection. To prohibit opening the document altogether, in the <emph>Save</emph> dialog mark the <emph>Save with password</emph> box before you click the <emph>Save</emph> button."
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/textviewWND_RIGHT\">Enter the text to be displayed at the right side of the header or footer.</ahelp>"
msgstr ""
-#: 06030300.xhp
-msgctxt ""
-"06030300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trace Dependents"
-msgstr "Gjurmo Varësit"
-
-#: 06030300.xhp
+#: 02120100.xhp
msgctxt ""
-"06030300.xhp\n"
-"bm_id3153252\n"
+"02120100.xhp\n"
+"par_idN10811\n"
"help.text"
-msgid "<bookmark_value>cells; tracing dependents</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "Header/Footer"
+msgstr "Mbititulli/Nëntitulli ka ndryshuar"
-#: 06030300.xhp
+#: 02120100.xhp
msgctxt ""
-"06030300.xhp\n"
-"hd_id3153252\n"
-"1\n"
+"02120100.xhp\n"
+"par_idN10815\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\">Trace Dependents</link>"
+msgid "<ahelp hid=\".\">Select a predefined header or footer from the list.</ahelp>"
msgstr ""
-#: 06030300.xhp
+#: 02120100.xhp
msgctxt ""
-"06030300.xhp\n"
-"par_id3156024\n"
-"2\n"
+"02120100.xhp\n"
+"hd_id3154729\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">Draws tracer arrows to the active cell from formulas that depend on values in the active cell.</ahelp>"
-msgstr ""
+msgid "Text attributes"
+msgstr "Atributet e tekstit"
-#: 06030300.xhp
+#: 02120100.xhp
msgctxt ""
-"06030300.xhp\n"
-"par_id3148948\n"
-"4\n"
+"02120100.xhp\n"
+"par_id3150717\n"
+"10\n"
"help.text"
-msgid "The area of all cells that are used together with the active cell in a formula is highlighted by a blue frame."
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TEXT\">Opens a dialog to assign formats to new or selected text.</ahelp> The <emph>Text Attributes </emph>dialog contains the tab pages <link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Font Effects</link> and <link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Font Position</link>."
msgstr ""
-#: 06030300.xhp
+#: 02120100.xhp
msgctxt ""
-"06030300.xhp\n"
-"par_id3151112\n"
-"3\n"
+"02120100.xhp\n"
+"par_id3159266\n"
"help.text"
-msgid "This function works per level. For instance, if one level of traces has already been activated to show the precedents (or dependents), then you would see the next dependency level by activating the <emph>Trace</emph> function again."
+msgid "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.1874in\" height=\"0.1665in\"><alt id=\"alt_id3156386\">Icon</alt></image>"
msgstr ""
-#: 12060000.xhp
-msgctxt ""
-"12060000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Multiple Operations"
-msgstr "Operacione të Shumëfishta"
-
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"hd_id3153381\n"
-"1\n"
+"02120100.xhp\n"
+"par_id3155336\n"
+"25\n"
"help.text"
-msgid "Multiple Operations"
-msgstr "Operacione të Shumëfishta"
+msgid "Text Attributes"
+msgstr "Atributet e tekstit"
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"par_id3154140\n"
-"2\n"
+"02120100.xhp\n"
+"hd_id3145792\n"
+"11\n"
"help.text"
-msgid "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDialog\">Applies the same formula to different cells, but with different parameter values.</ahelp></variable>"
-msgstr ""
+msgid "File Name"
+msgstr "Emri i fajllit"
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"par_id3152598\n"
-"5\n"
+"02120100.xhp\n"
+"par_id3150206\n"
+"12\n"
"help.text"
-msgid "The <emph>Row</emph> or <emph>Column</emph> box must contain a reference to the first cell of the selected range."
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_FILE\">Inserts a file name placeholder in the selected area.</ahelp> Click to insert the title. Long-click to select either title, file name or path/file name from the submenu. If a title has not be assigned (see <emph>File - Properties</emph>), the file name will be inserted instead."
msgstr ""
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"par_id3154011\n"
-"16\n"
+"02120100.xhp\n"
+"par_id3150369\n"
"help.text"
-msgid "If you export a spreadsheet containing multiple operations to Microsoft Excel, the location of the cells containing the formula must be fully defined relative to the data range."
+msgid "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.1665in\" height=\"0.1252in\"><alt id=\"alt_id3150518\">Icon</alt></image>"
msgstr ""
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"hd_id3156441\n"
-"3\n"
+"02120100.xhp\n"
+"par_id3154487\n"
+"26\n"
"help.text"
-msgid "Defaults"
-msgstr "Standarde"
+msgid "File Name"
+msgstr "Emri i fajllit"
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"hd_id3154492\n"
-"6\n"
+"02120100.xhp\n"
+"hd_id3155812\n"
+"13\n"
"help.text"
-msgid "Formulas"
-msgstr "Formulat"
+msgid "Sheet Name"
+msgstr "Emri i Fletës"
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"par_id3151073\n"
-"7\n"
+"02120100.xhp\n"
+"par_id3148842\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_FORMULARANGE\">Enter the cell references for the cells containing the formulas that you want to use in the multiple operation.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TABLE\">Inserts a placeholder in the selected header/footer area, which is replaced by the sheet name in the header/footer of the actual document.</ahelp>"
msgstr ""
-#: 12060000.xhp
-msgctxt ""
-"12060000.xhp\n"
-"hd_id3154729\n"
-"8\n"
-"help.text"
-msgid "Row"
-msgstr "Rresht"
-
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"par_id3148456\n"
-"9\n"
+"02120100.xhp\n"
+"par_id3146870\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_ROWCELL\">Enter the input cell reference that you want to use as a variable for the rows in the data table.</ahelp>"
+msgid "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148870\">Icon</alt></image>"
msgstr ""
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"hd_id3150718\n"
-"14\n"
+"02120100.xhp\n"
+"par_id3147071\n"
+"27\n"
"help.text"
-msgid "Column"
-msgstr "Kolonë"
+msgid "Sheet Name"
+msgstr "Emri i Fletës"
-#: 12060000.xhp
+#: 02120100.xhp
msgctxt ""
-"12060000.xhp\n"
-"par_id3150327\n"
+"02120100.xhp\n"
+"hd_id3144768\n"
"15\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_COLCELL\">Enter the input cell reference that you want to use as a variable for the columns in the data table.</ahelp>"
-msgstr ""
-
-#: func_today.xhp
-msgctxt ""
-"func_today.xhp\n"
-"tit\n"
-"help.text"
-msgid "TODAY"
-msgstr "SOT"
-
-#: func_today.xhp
-msgctxt ""
-"func_today.xhp\n"
-"bm_id3145659\n"
-"help.text"
-msgid "<bookmark_value>TODAY function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "Page"
+msgstr "Faqe"
-#: func_today.xhp
+#: 02120100.xhp
msgctxt ""
-"func_today.xhp\n"
-"hd_id3145659\n"
-"29\n"
+"02120100.xhp\n"
+"par_id3154960\n"
+"16\n"
"help.text"
-msgid "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">TODAY</link></variable>"
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGE\">Inserts a placeholder in the selected header/footer area, which is replaced by page numbering. This allows continuous page numbering in a document.</ahelp>"
msgstr ""
-#: func_today.xhp
+#: 02120100.xhp
msgctxt ""
-"func_today.xhp\n"
-"par_id3153759\n"
-"30\n"
+"02120100.xhp\n"
+"par_id3151304\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_HEUTE\">Returns the current computer system date.</ahelp> The value is updated when you reopen the document or modify the values of the document."
+msgid "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155386\">Icon</alt></image>"
msgstr ""
-#: func_today.xhp
+#: 02120100.xhp
msgctxt ""
-"func_today.xhp\n"
-"hd_id3154051\n"
-"31\n"
+"02120100.xhp\n"
+"par_id3150048\n"
+"28\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Page"
+msgstr "Faqe"
-#: func_today.xhp
+#: 02120100.xhp
msgctxt ""
-"func_today.xhp\n"
-"par_id3153154\n"
-"32\n"
+"02120100.xhp\n"
+"hd_id3146962\n"
+"17\n"
"help.text"
-msgid "TODAY()"
-msgstr "Sot"
+msgid "Pages"
+msgstr "Faqet"
-#: func_today.xhp
+#: 02120100.xhp
msgctxt ""
-"func_today.xhp\n"
-"par_id3154741\n"
-"33\n"
+"02120100.xhp\n"
+"par_id3153812\n"
+"18\n"
"help.text"
-msgid "TODAY is a function without arguments."
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_PAGES\">Inserts a placeholder in the selected header/footer area, which is replaced by the total number of pages in the document.</ahelp>"
msgstr ""
-#: func_today.xhp
-msgctxt ""
-"func_today.xhp\n"
-"hd_id3153627\n"
-"34\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: func_today.xhp
+#: 02120100.xhp
msgctxt ""
-"func_today.xhp\n"
-"par_id3156106\n"
-"35\n"
+"02120100.xhp\n"
+"par_id3149315\n"
"help.text"
-msgid "<item type=\"input\">TODAY()</item> returns the current computer system date."
+msgid "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155757\">Icon</alt></image>"
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"tit\n"
-"help.text"
-msgid "Financial Functions Part One"
-msgstr "Funksionet statistikore"
-
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3143284\n"
+"02120100.xhp\n"
+"par_id3147499\n"
+"29\n"
"help.text"
-msgid "<bookmark_value>financial functions</bookmark_value> <bookmark_value>functions; financial functions</bookmark_value> <bookmark_value>Function Wizard; financial</bookmark_value> <bookmark_value>amortizations, see also depreciations</bookmark_value>"
-msgstr ""
+msgid "Pages"
+msgstr "Faqet"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3143284\n"
-"1\n"
+"02120100.xhp\n"
+"hd_id3149050\n"
+"19\n"
"help.text"
-msgid "Financial Functions Part One"
-msgstr "Funksionet statistikore"
+msgid "Date"
+msgstr "Data"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149095\n"
-"2\n"
+"02120100.xhp\n"
+"par_id3153960\n"
+"20\n"
"help.text"
-msgid "<variable id=\"finanztext\">This category contains the mathematical finance functions of <item type=\"productname\">%PRODUCTNAME</item> Calc. </variable>"
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_DATE\">Inserts a placeholder in the selected header/footer area, which is replaced by the current date which will be repeated in the header/footer on each page of the document.</ahelp>"
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3153366\n"
-"help.text"
-msgid "<bookmark_value>AMORDEGRC function</bookmark_value> <bookmark_value>depreciations;degressive amortizations</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
-
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3153366\n"
-"359\n"
+"02120100.xhp\n"
+"par_id3147299\n"
"help.text"
-msgid "AMORDEGRC"
+msgid "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150394\">Icon</alt></image>"
msgstr ""
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147434\n"
-"360\n"
+"02120100.xhp\n"
+"par_id3150540\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">Calculates the amount of depreciation for a settlement period as degressive amortization.</ahelp> Unlike AMORLINC, a depreciation coefficient that is independent of the depreciable life is used here."
-msgstr ""
+msgid "Date"
+msgstr "Data"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3155855\n"
-"361\n"
+"02120100.xhp\n"
+"hd_id3147610\n"
+"21\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Time"
+msgstr "Koha"
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147427\n"
-"362\n"
+"02120100.xhp\n"
+"par_id3145638\n"
+"22\n"
"help.text"
-msgid "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
+msgid "<ahelp hid=\"modules/scalc/ui/headerfootercontent/buttonBTN_TIME\">Inserts a placeholder in the selected header/footer area, which is replaced by the current time in the header/footer on each page of the document.</ahelp>"
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3147125\n"
-"363\n"
-"help.text"
-msgid "<emph>Cost</emph> is the acquisition costs."
-msgstr "Shpenzimet e përvetsimit. Shpenzimi fillestar i pasurisë."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3151074\n"
-"364\n"
-"help.text"
-msgid "<emph>DatePurchased</emph> is the date of acquisition."
-msgstr "Shpenzimet e përvetsimit. Shpenzimi fillestar i pasurisë."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3144765\n"
-"365\n"
-"help.text"
-msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156286\n"
-"366\n"
-"help.text"
-msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
-
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153415\n"
-"367\n"
+"02120100.xhp\n"
+"par_id3153122\n"
"help.text"
-msgid "<emph>Period</emph> is the settlement period to be considered."
-msgstr "Numri binar qw do tw shndwrrohet (si tekst)"
+msgid "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146884\">Icon</alt></image>"
+msgstr ""
-#: 04060103.xhp
+#: 02120100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3155064\n"
-"368\n"
+"02120100.xhp\n"
+"par_id3157904\n"
+"31\n"
"help.text"
-msgid "<emph>Rate</emph> is the rate of depreciation."
-msgstr "E kthen tarifwn efektive vjetore tw interesit"
+msgid "Time"
+msgstr "Koha"
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3153765\n"
+"02140000.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>AMORLINC function</bookmark_value> <bookmark_value>depreciations;linear amortizations</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
+msgid "Fill"
+msgstr "Mbush"
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3153765\n"
-"369\n"
+"02140000.xhp\n"
+"bm_id8473769\n"
"help.text"
-msgid "AMORLINC"
+msgid "<bookmark_value>filling;selection lists</bookmark_value> <bookmark_value>selection lists;filling cells</bookmark_value>"
msgstr ""
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3159264\n"
-"370\n"
+"02140000.xhp\n"
+"hd_id3153876\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Calculates the amount of depreciation for a settlement period as linear amortization. If the capital asset is purchased during the settlement period, the proportional amount of depreciation is considered.</ahelp>"
+msgid "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Fill</link>"
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3150044\n"
-"371\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147363\n"
-"372\n"
+"02140000.xhp\n"
+"par_id3156285\n"
+"2\n"
"help.text"
-msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
+msgid "<ahelp hid=\".\">Automatically fills cells with content.</ahelp>"
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3146920\n"
-"373\n"
-"help.text"
-msgid "<emph>Cost</emph> means the acquisition costs."
-msgstr "Shpenzimet e përvetsimit. Shpenzimi fillestar i pasurisë."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3163807\n"
-"374\n"
-"help.text"
-msgid "<emph>DatePurchased</emph> is the date of acquisition."
-msgstr "Shpenzimet e përvetsimit. Shpenzimi fillestar i pasurisë."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148488\n"
-"375\n"
-"help.text"
-msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149530\n"
-"376\n"
-"help.text"
-msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148633\n"
-"377\n"
-"help.text"
-msgid "<emph>Period</emph> is the settlement period to be considered."
-msgstr "Numri binar qw do tw shndwrrohet (si tekst)"
-
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150982\n"
-"378\n"
+"02140000.xhp\n"
+"par_id3147343\n"
+"9\n"
"help.text"
-msgid "<emph>Rate</emph> is the rate of depreciation."
-msgstr "E kthen tarifwn efektive vjetore tw interesit"
+msgid "The $[officename] Calc context menus have <link href=\"text/scalc/01/02140000.xhp\" name=\"other options\">additional options</link> for filling the cells."
+msgstr ""
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3145257\n"
+"02140000.xhp\n"
+"hd_id3149207\n"
+"7\n"
"help.text"
-msgid "<bookmark_value>ACCRINT function</bookmark_value>"
-msgstr "Vlera tanishme. Vlera e tanishme e investimit."
+msgid "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\">Sheet</link>"
+msgstr ""
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3145257\n"
-"335\n"
+"02140000.xhp\n"
+"hd_id3155111\n"
+"8\n"
"help.text"
-msgid "ACCRINT"
+msgid "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Series</link>"
msgstr ""
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3151276\n"
+"02140000.xhp\n"
+"par_id3152994\n"
+"3\n"
"help.text"
-msgid "<bookmark_value>accrued interests;periodic payments</bookmark_value>"
+msgid "<emph>Filling cells using context menus:</emph>"
msgstr ""
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3151276\n"
-"336\n"
+"02140000.xhp\n"
+"par_id3145384\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Calculates the accrued interest of a security in the case of periodic payments.</ahelp>"
+msgid "Call the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
msgstr ""
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3152581\n"
-"337\n"
+"02140000.xhp\n"
+"par_id3156450\n"
+"5\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<ahelp hid=\".uno:DataSelect\">A list box containing all text found in the current column is displayed.</ahelp> The text is sorted alphabetically and multiple entries are listed only once."
+msgstr ""
-#: 04060103.xhp
+#: 02140000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3159092\n"
-"338\n"
+"02140000.xhp\n"
+"par_id3148699\n"
+"6\n"
"help.text"
-msgid "ACCRINT(Issue; FirstInterest; Settlement; Rate; Par; Frequency; Basis)"
+msgid "Click one of the listed entries to copy it to the cell."
msgstr ""
-#: 04060103.xhp
+#: 02140100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150519\n"
-"339\n"
+"02140100.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Issue</emph> is the issue date of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+msgid "Down"
+msgstr "Down"
-#: 04060103.xhp
+#: 02140100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3155376\n"
-"340\n"
+"02140100.xhp\n"
+"hd_id3150792\n"
+"1\n"
"help.text"
-msgid "<emph>FirstInterest</emph> is the first interest date of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+msgid "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Down</link>"
+msgstr ""
-#: 04060103.xhp
+#: 02140100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3166431\n"
-"341\n"
+"02140100.xhp\n"
+"par_id3153969\n"
+"2\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
-msgstr "Vlera për të cilin do të llogaritet shprëndarja standarde normale."
+msgid "<ahelp hid=\".uno:FillDown\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the top cell of the range.</ahelp>"
+msgstr ""
-#: 04060103.xhp
-#, fuzzy
+#: 02140100.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154486\n"
-"342\n"
+"02140100.xhp\n"
+"par_id3145787\n"
+"3\n"
"help.text"
-msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
-msgstr "E kthen tarifwn efektive vjetore tw interesit"
+msgid "If a selected range has only one column, the contents of the top cell are copied to all others. If several columns are selected, the contents of the corresponding top cell will be copied down."
+msgstr ""
-#: 04060103.xhp
+#: 02140200.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3156445\n"
-"343\n"
+"02140200.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Par</emph> is the par value of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+msgid "Right"
+msgstr "Djathtas"
-#: 04060103.xhp
+#: 02140200.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149406\n"
-"344\n"
+"02140200.xhp\n"
+"hd_id3153896\n"
+"1\n"
"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+msgid "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">Right</link>"
+msgstr ""
-#: 04060103.xhp
+#: 02140200.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3148699\n"
-"345\n"
+"02140200.xhp\n"
+"par_id3153361\n"
+"2\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the left most cell.</ahelp>"
+msgstr ""
-#: 04060103.xhp
+#: 02140200.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3148599\n"
-"346\n"
+"02140200.xhp\n"
+"par_id3154684\n"
+"3\n"
"help.text"
-msgid "A security is issued on 2001-02-28. First interest is set for 2001-08-31. The settlement date is 2001-05-01. The Rate is 0.1 or 10% and Par is 1000 currency units. Interest is paid half-yearly (frequency is 2). The basis is the US method (0). How much interest has accrued?"
+msgid "If a range of only one row is selected, the contents of the far left cell are copied to all the other selected cells. If you have selected several rows, each of the far left cells is copied into those cells to the right."
msgstr ""
-#: 04060103.xhp
+#: 02140300.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3148840\n"
-"347\n"
+"02140300.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> returns 16.94444."
-msgstr ""
+msgid "Up"
+msgstr "Up"
-#: 04060103.xhp
+#: 02140300.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3151240\n"
+"02140300.xhp\n"
+"hd_id3147264\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>ACCRINTM function</bookmark_value> <bookmark_value>accrued interests;one-off payments</bookmark_value>"
+msgid "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\">Up</link>"
msgstr ""
-#: 04060103.xhp
+#: 02140300.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3151240\n"
-"348\n"
+"02140300.xhp\n"
+"par_id3150793\n"
+"2\n"
"help.text"
-msgid "ACCRINTM"
+msgid "<ahelp hid=\".uno:FillUp\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the bottom most cell.</ahelp>"
msgstr ""
-#: 04060103.xhp
+#: 02140300.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3157981\n"
-"349\n"
+"02140300.xhp\n"
+"par_id3150447\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Calculates the accrued interest of a security in the case of one-off payment at the settlement date.</ahelp>"
+msgid "If a selected range has only one column, the content of the bottom most cell is copied into the selected cells. If several columns are selected, the contents of the bottom most cells are copied into those selected above."
msgstr ""
-#: 04060103.xhp
+#: 02140400.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3159097\n"
-"350\n"
+"02140400.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Left"
+msgstr "Majtas"
-#: 04060103.xhp
+#: 02140400.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147074\n"
-"351\n"
+"02140400.xhp\n"
+"hd_id3153896\n"
+"1\n"
"help.text"
-msgid "ACCRINTM(Issue; Settlement; Rate; Par; Basis)"
+msgid "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\">Left</link>"
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3144773\n"
-"352\n"
-"help.text"
-msgid "<emph>Issue</emph> is the issue date of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-
-#: 04060103.xhp
+#: 02140400.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154956\n"
-"353\n"
+"02140400.xhp\n"
+"par_id3150793\n"
+"2\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
-msgstr "Vlera për të cilin do të llogaritet shprëndarja standarde normale."
+msgid "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the far right cell.</ahelp>"
+msgstr ""
-#: 04060103.xhp
+#: 02140400.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153972\n"
-"354\n"
+"02140400.xhp\n"
+"par_id3156280\n"
+"3\n"
"help.text"
-msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)."
-msgstr "E kthen tarifwn efektive vjetore tw interesit"
+msgid "If a selected range has only one row, the content of the far right cell is copied into all other cells of the range. If several rows are selected, the far right cells are copied into the cells to the left."
+msgstr ""
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3159204\n"
-"355\n"
+"02140500.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Par</emph> is the par value of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+msgid "Fill Sheet"
+msgstr "Mbush Fletën"
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3155384\n"
-"356\n"
+"02140500.xhp\n"
+"hd_id3153897\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Fill Sheet"
+msgstr "Mbush Fletën"
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154541\n"
-"357\n"
+"02140500.xhp\n"
+"par_id3150791\n"
+"2\n"
"help.text"
-msgid "A security is issued on 2001-04-01. The maturity date is set for 2001-06-15. The Rate is 0.1 or 10% and Par is 1000 currency units. The basis of the daily/annual calculation is the daily balance (3). How much interest has accrued?"
+msgid "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">Specifies the options for transferring sheets or ranges of a certain sheet.</ahelp></variable>"
msgstr ""
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149128\n"
-"358\n"
+"02140500.xhp\n"
+"par_id3150767\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=ACCRINTM(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> returns 20.54795."
+msgid "In contrast to copying an area to the clipboard, you can filter certain information and calculate values. This command is only visible if you have selected two sheets in the document. To select multiple sheets, click each sheet tab while pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> or Shift."
msgstr ""
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3145753\n"
+"02140500.xhp\n"
+"hd_id3155131\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>RECEIVED function</bookmark_value> <bookmark_value>amount received for fixed-interest securities</bookmark_value>"
+msgid "Filling a Sheet"
msgstr ""
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3145753\n"
-"390\n"
+"02140500.xhp\n"
+"par_id3146119\n"
+"5\n"
"help.text"
-msgid "RECEIVED"
+msgid "Select the entire sheet by clicking the empty gray box in the upper left of the sheet. You can also select an area of the sheet to be copied."
msgstr ""
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150051\n"
-"391\n"
+"02140500.xhp\n"
+"par_id3153726\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">Calculates the amount received that is paid for a fixed-interest security at a given point in time.</ahelp>"
+msgid "Press <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and click the tab of the sheet where you want to insert the contents."
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3149385\n"
-"392\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3145362\n"
-"393\n"
+"02140500.xhp\n"
+"par_id3147436\n"
+"7\n"
"help.text"
-msgid "RECEIVED(\"Settlement\"; \"Maturity\"; Investment; Discount; Basis)"
+msgid "Select the command <emph>Edit - Fill - Sheet</emph>. In the dialog which appears, the check box <emph>Numbers</emph> must be selected (or <emph>Paste All</emph>) if you want to combine operations with the values. You can also choose the desired operation here."
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154654\n"
-"394\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153011\n"
-"395\n"
+"02140500.xhp\n"
+"par_id3154942\n"
+"8\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+msgid "Click <emph>OK</emph>."
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-#: 04060103.xhp
+#: 02140500.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3155525\n"
-"396\n"
+"02140500.xhp\n"
+"par_id3156283\n"
+"9\n"
"help.text"
-msgid "<emph>Investment</emph> is the purchase sum."
+msgid "This dialog is similar to the <link href=\"text/shared/01/02070000.xhp\" name=\"Paste Contents\">Paste Contents</link> dialog, where you can find additional tips."
msgstr ""
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155760\n"
-"397\n"
-"help.text"
-msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3154710\n"
-"398\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154735\n"
-"399\n"
+"02140600.xhp\n"
+"tit\n"
"help.text"
-msgid "Settlement date: February 15 1999, maturity date: May 15 1999, investment sum: 1000 currency units, discount: 5.75 per cent, basis: Daily balance/360 = 2."
-msgstr ""
+msgid "Fill Series"
+msgstr "Mbushje e serive"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146108\n"
-"400\n"
+"02140600.xhp\n"
+"hd_id3148664\n"
+"1\n"
"help.text"
-msgid "The amount received on the maturity date is calculated as follows:"
-msgstr ""
+msgid "Fill Series"
+msgstr "Mbushje e serive"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147246\n"
-"401\n"
+"02140600.xhp\n"
+"par_id3148797\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=RECEIVED(\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> returns 1014.420266."
+msgid "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Automatically generate series with the options in this dialog. Determine direction, increment, time unit and series type.</ahelp></variable>"
msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3147556\n"
+"02140600.xhp\n"
+"par_id3146976\n"
+"41\n"
"help.text"
-msgid "<bookmark_value>PV function</bookmark_value> <bookmark_value>present values</bookmark_value> <bookmark_value>calculating; present values</bookmark_value>"
+msgid "Before filling a series, first select the cell range."
msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3147556\n"
+"02140600.xhp\n"
+"par_id3145748\n"
"3\n"
"help.text"
-msgid "PV"
-msgstr "PV"
+msgid "To automatically continue a series using the assumed completion rules, choose the <emph>AutoFill</emph> option after opening the <emph>Fill Series</emph> dialog."
+msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153301\n"
+"02140600.xhp\n"
+"hd_id3147435\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BW\">Returns the present value of an investment resulting from a series of regular payments.</ahelp>"
-msgstr ""
+msgid "Direction"
+msgstr "Drejtim"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146099\n"
+"02140600.xhp\n"
+"par_id3154729\n"
"5\n"
"help.text"
-msgid "Use this function to calculate the amount of money needed to be invested at a fixed rate today, to receive a specific amount, an annuity, over a specified number of periods. You can also determine how much money is to remain after the elapse of the period. Specify as well if the amount is to be paid out at the beginning or at the end of each period."
+msgid "Determines the direction of series creation."
msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153334\n"
+"02140600.xhp\n"
+"hd_id3145253\n"
"6\n"
"help.text"
-msgid "Enter these values either as numbers, expressions or references. If, for example, interest is paid annually at 8%, but you want to use month as your period, enter 8%/12 under <emph>Rate</emph> and <item type=\"productname\">%PRODUCTNAME</item> Calc with automatically calculate the correct factor."
-msgstr ""
+msgid "Down"
+msgstr "Down"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3147407\n"
+"02140600.xhp\n"
+"par_id3155418\n"
"7\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_BOTTOM\">Creates a downward series in the selected cell range for the column using the defined increment to the end value.</ahelp>"
+msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150395\n"
+"02140600.xhp\n"
+"hd_id3155738\n"
"8\n"
"help.text"
-msgid "PV(Rate; NPer; Pmt; FV; Type)"
-msgstr ""
+msgid "Right"
+msgstr "Djathtas"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3151341\n"
+"02140600.xhp\n"
+"par_id3149402\n"
"9\n"
"help.text"
-msgid "<emph>Rate</emph> defines the interest rate per period."
-msgstr "E kthen tarifwn e brendshme tw kthimit pwr pagesat e planifikuara jo-periodike"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_RIGHT\">Creates a series running from left to right within the selected cell range using the defined increment to the end value.</ahelp>"
+msgstr ""
-#: 04060103.xhp
-#, fuzzy
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153023\n"
+"02140600.xhp\n"
+"hd_id3146972\n"
"10\n"
"help.text"
-msgid "<emph>NPer</emph> is the total number of periods (payment period)."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+msgid "Up"
+msgstr "Up"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146323\n"
+"02140600.xhp\n"
+"par_id3153711\n"
"11\n"
"help.text"
-msgid "<emph>Pmt</emph> is the regular payment made per period."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_TOP\">Creates an upward series in the cell range of the column using the defined increment to the end value.</ahelp>"
msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150536\n"
+"02140600.xhp\n"
+"hd_id3153764\n"
"12\n"
"help.text"
-msgid "<emph>FV</emph> (optional) defines the future value remaining after the final installment has been made."
-msgstr ""
+msgid "Left"
+msgstr "Majtas"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146883\n"
+"02140600.xhp\n"
+"par_id3156382\n"
"13\n"
"help.text"
-msgid "<emph>Type</emph> (optional) denotes due date for payments. Type = 1 means due at the beginning of a period and Type = 0 (default) means due at the end of the period."
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_idN10B13\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_LEFT\">Creates a series running from right to left in the selected cell range using the defined increment to the end value.</ahelp>"
msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3150037\n"
+"02140600.xhp\n"
+"hd_id3147344\n"
"14\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Series Type"
+msgstr "Llojet e serive"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3145225\n"
+"02140600.xhp\n"
+"par_id3149257\n"
"15\n"
"help.text"
-msgid "What is the present value of an investment, if 500 currency units are paid out monthly and the annual interest rate is 8%? The payment period is 48 months and 20,000 currency units are to remain at the end of the payment period."
+msgid "Defines the series type. Choose between <emph>Linear, Growth, Date </emph>and <emph>AutoFill</emph>."
msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3155907\n"
+"02140600.xhp\n"
+"hd_id3148488\n"
"16\n"
"help.text"
-msgid "<item type=\"input\">=PV(8%/12;48;500;20000)</item> = -35,019.37 currency units. Under the named conditions, you must deposit 35,019.37 currency units today, if you want to receive 500 currency units per month for 48 months and have 20,000 currency units left over at the end. Cross-checking shows that 48 x 500 currency units + 20,000 currency units = 44,000 currency units. The difference between this amount and the 35,000 currency units deposited represents the interest paid."
-msgstr ""
+msgid "Linear"
+msgstr "Zbrapsje lineare"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149150\n"
+"02140600.xhp\n"
+"par_id3159238\n"
"17\n"
"help.text"
-msgid "If you enter references instead of these values into the formula, you can calculate any number of \"If-then\" scenarios. Please note: references to constants must be defined as absolute references. Examples of this type of application are found under the depreciation functions."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_ARITHMETIC\">Creates a linear number series using the defined increment and end value.</ahelp>"
msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3152978\n"
+"02140600.xhp\n"
+"hd_id3149210\n"
+"18\n"
"help.text"
-msgid "<bookmark_value>calculating; depreciations</bookmark_value> <bookmark_value>SYD function</bookmark_value> <bookmark_value>depreciations; arithmetic declining</bookmark_value> <bookmark_value>arithmetic declining depreciations</bookmark_value>"
-msgstr ""
+msgid "Growth"
+msgstr "GROWTH"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3152978\n"
+"02140600.xhp\n"
+"par_id3150364\n"
"19\n"
"help.text"
-msgid "SYD"
-msgstr "SYD"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_GEOMETRIC\">Creates a growth series using the defined increment and end value.</ahelp>"
+msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3148732\n"
+"02140600.xhp\n"
+"hd_id3149528\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DIA\">Returns the arithmetic-declining depreciation rate.</ahelp>"
-msgstr ""
+msgid "Date"
+msgstr "Data"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149886\n"
+"02140600.xhp\n"
+"par_id3150887\n"
"21\n"
"help.text"
-msgid "Use this function to calculate the depreciation amount for one period of the total depreciation span of an object. Arithmetic declining depreciation reduces the depreciation amount from period to period by a fixed sum."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DATE\">Creates a date series using the defined increment and end date.</ahelp>"
msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3149431\n"
+"02140600.xhp\n"
+"hd_id3150202\n"
"22\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "AutoFill"
+msgstr "AutoPërmbushje"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150483\n"
+"02140600.xhp\n"
+"par_id3156288\n"
"23\n"
"help.text"
-msgid "SYD(Cost; Salvage; Life; Period)"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_AUTOFILL\">Forms a series directly in the sheet.</ahelp> The AutoFill function takes account of customized lists. For example, by entering <emph>January</emph> in the first cell, the series is completed using the list defined under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</emph>."
msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146879\n"
+"02140600.xhp\n"
+"par_id3155811\n"
"24\n"
"help.text"
-msgid "<emph>Cost</emph> is the initial cost of an asset."
-msgstr "Shpenzimet e përvetsimit. Shpenzimi fillestar i pasurisë."
+msgid "AutoFill tries to complete a value series by using a defined pattern. The series 1,3,5 is automatically completed with 7,9,11,13, and so on. Date and time series are completed accordingly; for example, after 01.01.99 and 15.01.99, an interval of 14 days is used."
+msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147423\n"
+"02140600.xhp\n"
+"hd_id3148700\n"
"25\n"
"help.text"
-msgid "<emph>Salvage</emph> is the value of an asset after depreciation."
-msgstr "Vlera për të cilin do të përcaktohet rangimi."
+msgid "Unit of Time"
+msgstr "Njësia kohore"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3151229\n"
+"02140600.xhp\n"
+"par_id3153308\n"
"26\n"
"help.text"
-msgid "<emph>Life</emph> is the period fixing the time span over which an asset is depreciated."
+msgid "In this area you can specify the desired unit of time. This area is only active if the <emph>Date</emph> option has been chosen in the <emph>Series type</emph> area."
msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147473\n"
+"02140600.xhp\n"
+"hd_id3148868\n"
"27\n"
"help.text"
-msgid "<emph>Period</emph> defines the period for which the depreciation is to be calculated."
-msgstr "Vlera për të cilin do të llogaritet shprëndarja standarde normale."
+msgid "Day"
+msgstr "Dita"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3148434\n"
+"02140600.xhp\n"
+"par_id3148605\n"
"28\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY\">Use the <emph>Date</emph> series type and this option to create a series using seven days.</ahelp>"
+msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149688\n"
+"02140600.xhp\n"
+"hd_id3144771\n"
"29\n"
"help.text"
-msgid "A video system initially costing 50,000 currency units is to be depreciated annually for the next 5 years. The salvage value is to be 10,000 currency units. You want to calculate depreciation for the first year."
-msgstr ""
+msgid "Weekday"
+msgstr "WEEKDAY"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150900\n"
+"02140600.xhp\n"
+"par_id3150108\n"
"30\n"
"help.text"
-msgid "<item type=\"input\">=SYD(50000;10000;5;1)</item>=13,333.33 currency units. The depreciation amount for the first year is 13,333.33 currency units."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY_OF_WEEK\">Use the <emph>Date</emph> series type and this option to create a series of five day sets.</ahelp>"
msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146142\n"
+"02140600.xhp\n"
+"hd_id3154957\n"
"31\n"
"help.text"
-msgid "To have an overview of depreciation rates per period, it is best to define a depreciation table. By entering the different depreciation formulas available in <item type=\"productname\">%PRODUCTNAME</item> Calc next to each other, you can see which depreciation form is the most appropriate. Enter the table as follows:"
-msgstr ""
+msgid "Month"
+msgstr "Muaj"
-#: 04060103.xhp
-#, fuzzy
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3155258\n"
+"02140600.xhp\n"
+"par_id3149126\n"
"32\n"
"help.text"
-msgid "<emph>A</emph>"
-msgstr "Titullimi 10"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_MONTH\">Use the <emph>Date</emph> series type and this option to form a series from the names or abbreviations of the months.</ahelp>"
+msgstr ""
-#: 04060103.xhp
-#, fuzzy
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154558\n"
+"02140600.xhp\n"
+"hd_id3152870\n"
"33\n"
"help.text"
-msgid "<emph>B</emph>"
-msgstr "Titullimi 10"
+msgid "Year"
+msgstr "Viti"
-#: 04060103.xhp
-#, fuzzy
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3152372\n"
+"02140600.xhp\n"
+"par_id3151300\n"
"34\n"
"help.text"
-msgid "<emph>C</emph>"
-msgstr "Titullimi 10"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_YEAR\">Use the <emph>Date</emph> series type and this option to create a series of years.</ahelp>"
+msgstr ""
-#: 04060103.xhp
-#, fuzzy
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149949\n"
+"02140600.xhp\n"
+"hd_id3154762\n"
"35\n"
"help.text"
-msgid "<emph>D</emph>"
-msgstr "Titullimi 10"
+msgid "Start Value"
+msgstr "~Vlera fillestare"
-#: 04060103.xhp
-#, fuzzy
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3145123\n"
+"02140600.xhp\n"
+"par_id3149381\n"
"36\n"
"help.text"
-msgid "<emph>E</emph>"
-msgstr "Titullimi 10"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_START_VALUES\">Determines the start value for the series.</ahelp> Use numbers, dates or times."
+msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149504\n"
+"02140600.xhp\n"
+"hd_id3153013\n"
"37\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "End Value"
+msgstr "Vlerë ~përfundimtare"
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153778\n"
+"02140600.xhp\n"
+"par_id3153487\n"
"38\n"
"help.text"
-msgid "<item type=\"input\">Initial Cost</item>"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_END_VALUES\">Determines the end value for the series.</ahelp> Use numbers, dates or times."
msgstr ""
-#: 04060103.xhp
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3159083\n"
+"02140600.xhp\n"
+"hd_id3149312\n"
"39\n"
"help.text"
-msgid "<item type=\"input\">Salvage Value</item>"
-msgstr ""
+msgid "Increment"
+msgstr "Rritje linje"
-#: 04060103.xhp
-#, fuzzy
+#: 02140600.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150002\n"
+"02140600.xhp\n"
+"par_id3154739\n"
"40\n"
"help.text"
-msgid "<item type=\"input\">Useful Life</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153006\n"
-"41\n"
-"help.text"
-msgid "<item type=\"input\">Time Period</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154505\n"
-"42\n"
-"help.text"
-msgid "<item type=\"input\">Deprec. SYD</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150336\n"
-"43\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155926\n"
-"44\n"
-"help.text"
-msgid "<item type=\"input\">50,000 currency units</item>"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153736\n"
-"45\n"
-"help.text"
-msgid "<item type=\"input\">10,000 currency units</item>"
-msgstr ""
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150131\n"
-"46\n"
-"help.text"
-msgid "<item type=\"input\">5</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148766\n"
-"47\n"
-"help.text"
-msgid "<item type=\"input\">1</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3159136\n"
-"48\n"
-"help.text"
-msgid "<item type=\"input\">13,333.33 currency units</item>"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3151018\n"
-"49\n"
-"help.text"
-msgid "3"
-msgstr ""
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148397\n"
-"50\n"
-"help.text"
-msgid "<item type=\"input\">2</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3146907\n"
-"51\n"
-"help.text"
-msgid "<item type=\"input\">10,666.67 currency units</item>"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3147356\n"
-"52\n"
-"help.text"
-msgid "4"
-msgstr "Yll 24-cepësh"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150267\n"
-"53\n"
-"help.text"
-msgid "<item type=\"input\">3</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145628\n"
-"54\n"
-"help.text"
-msgid "<item type=\"input\">8,000.00 currency units</item>"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149004\n"
-"55\n"
-"help.text"
-msgid "5"
-msgstr "25%"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153545\n"
-"56\n"
-"help.text"
-msgid "<item type=\"input\">4</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154634\n"
-"57\n"
-"help.text"
-msgid "<item type=\"input\">5,333.33 currency units</item>"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3147537\n"
-"58\n"
-"help.text"
-msgid "6"
-msgstr ""
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155085\n"
-"59\n"
-"help.text"
-msgid "<item type=\"input\">5</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3158413\n"
-"60\n"
-"help.text"
-msgid "<item type=\"input\">2,666.67 currency units</item>"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154866\n"
-"61\n"
-"help.text"
-msgid "7"
-msgstr ""
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155404\n"
-"62\n"
-"help.text"
-msgid "<item type=\"input\">6</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148431\n"
-"63\n"
-"help.text"
-msgid "<item type=\"input\">0.00 currency units</item>"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156261\n"
-"64\n"
-"help.text"
-msgid "8"
-msgstr ""
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3083286\n"
-"65\n"
-"help.text"
-msgid "<item type=\"input\">7</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3083443\n"
-"67\n"
-"help.text"
-msgid "9"
-msgstr ""
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154815\n"
-"68\n"
-"help.text"
-msgid "<item type=\"input\">8</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145082\n"
-"70\n"
-"help.text"
-msgid "10"
-msgstr "Titullimi 10"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156307\n"
-"71\n"
-"help.text"
-msgid "<item type=\"input\">9</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3147564\n"
-"73\n"
-"help.text"
-msgid "11"
-msgstr "1"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3146856\n"
-"74\n"
-"help.text"
-msgid "<item type=\"input\">10</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3150880\n"
-"76\n"
-"help.text"
-msgid "12"
-msgstr "Yll 12-cepësh"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145208\n"
-"77\n"
-"help.text"
-msgid "13"
-msgstr "1"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156113\n"
-"78\n"
-"help.text"
-msgid "<item type=\"input\">>0</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153625\n"
-"79\n"
-"help.text"
-msgid "<item type=\"input\">Total</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3151297\n"
-"80\n"
-"help.text"
-msgid "<item type=\"input\">40,000.00 currency units</item>"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149979\n"
-"81\n"
-"help.text"
-msgid "The formula in E2 is as follows:"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155849\n"
-"82\n"
-"help.text"
-msgid "<item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156124\n"
-"83\n"
-"help.text"
-msgid "This formula is duplicated in column E down to E11 (select E2, then drag down the lower right corner with the mouse)."
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3147270\n"
-"84\n"
-"help.text"
-msgid "Cell E13 contains the formula used to check the total of the depreciation amounts. It uses the SUMIF function as the negative values in E8:E11 must not be considered. The condition >0 is contained in cell A13. The formula in E13 is as follows:"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3152811\n"
-"85\n"
-"help.text"
-msgid "<item type=\"input\">=SUMIF(E2:E11;A13)</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155998\n"
-"86\n"
-"help.text"
-msgid "Now view the depreciation for a 10 year period, or at a salvage value of 1 currency unit, or enter a different initial cost, and so on."
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3155104\n"
-"help.text"
-msgid "<bookmark_value>DISC function</bookmark_value> <bookmark_value>allowances</bookmark_value> <bookmark_value>discounts</bookmark_value>"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3155104\n"
-"379\n"
-"help.text"
-msgid "DISC"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153891\n"
-"380\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DISC\">Calculates the allowance (discount) of a security as a percentage.</ahelp>"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3153982\n"
-"381\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149756\n"
-"382\n"
-"help.text"
-msgid "DISC(\"Settlement\"; \"Maturity\"; Price; Redemption; Basis)"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3156014\n"
-"383\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154304\n"
-"384\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3159180\n"
-"385\n"
-"help.text"
-msgid "<emph>Price</emph> is the price of the security per 100 currency units of par value."
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3147253\n"
-"386\n"
-"help.text"
-msgid "<emph>Redemption</emph> is the redemption value of the security per 100 currency units of par value."
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3151174\n"
-"387\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155902\n"
-"388\n"
-"help.text"
-msgid "A security is purchased on 2001-01-25; the maturity date is 2001-11-15. The price (purchase price) is 97, the redemption value is 100. Using daily balance calculation (basis 3) how high is the settlement (discount)?"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3152797\n"
-"389\n"
-"help.text"
-msgid "<item type=\"input\">=DISC(\"2001-01-25\";\"2001-11-15\";97;100;3)</item> returns about 0.0372 or 3.72 per cent."
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3154695\n"
-"help.text"
-msgid "<bookmark_value>DURATION_ADD function</bookmark_value> <bookmark_value>Microsoft Excel functions</bookmark_value> <bookmark_value>durations;fixed interest securities</bookmark_value>"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3154695\n"
-"402\n"
-"help.text"
-msgid "DURATION_ADD"
-msgstr "Shto elementin"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145768\n"
-"403\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Calculates the duration of a fixed interest security in years.</ahelp>"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3153904\n"
-"404\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153373\n"
-"405\n"
-"help.text"
-msgid "DURATION_ADD(\"Settlement\"; \"Maturity\"; Coupon; Yield; Frequency; Basis)"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155397\n"
-"406\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148558\n"
-"407\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153096\n"
-"408\n"
-"help.text"
-msgid "<emph>Coupon</emph> is the annual coupon interest rate (nominal rate of interest)"
-msgstr ""
-
-#: 04060103.xhp
-#, fuzzy
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154594\n"
-"409\n"
-"help.text"
-msgid "<emph>Yield</emph> is the annual yield of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149906\n"
-"410\n"
-"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3146995\n"
-"411\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148834\n"
-"412\n"
-"help.text"
-msgid "A security is purchased on 2001-01-01; the maturity date is 2006-01-01. The Coupon rate of interest is 8%. The yield is 9.0%. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how long is the duration?"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154902\n"
-"413\n"
-"help.text"
-msgid "<item type=\"input\">=DURATION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item>"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"bm_id3159147\n"
-"help.text"
-msgid "<bookmark_value>annual net interest rates</bookmark_value> <bookmark_value>calculating; annual net interest rates</bookmark_value> <bookmark_value>net annual interest rates</bookmark_value> <bookmark_value>EFFECTIVE function</bookmark_value>"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3159147\n"
-"88\n"
-"help.text"
-msgid "EFFECTIVE"
-msgstr "EFFECTIVE"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154204\n"
-"89\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_EFFEKTIV\">Returns the net annual interest rate for a nominal interest rate.</ahelp>"
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3145417\n"
-"90\n"
-"help.text"
-msgid "Nominal interest refers to the amount of interest due at the end of a calculation period. Effective interest increases with the number of payments made. In other words, interest is often paid in installments (for example, monthly or quarterly) before the end of the calculation period."
-msgstr ""
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3150510\n"
-"91\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148805\n"
-"92\n"
-"help.text"
-msgid "EFFECTIVE(Nom; P)"
-msgstr "Tarifa efektive"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149768\n"
-"93\n"
-"help.text"
-msgid "<emph>Nom</emph> is the nominal interest."
+msgid "The term \"increment\" denotes the amount by which a given value increases.<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_INCREMENT\"> Determines the value by which the series of the selected type increases by each step.</ahelp> Entries can only be made if the linear, growth or date series types have been selected."
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3149334\n"
-"94\n"
-"help.text"
-msgid "<emph>P</emph> is the number of interest payment periods per year."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3154223\n"
-"95\n"
+"02150000.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Deleting Contents"
+msgstr "Tabela e përmbajtjeve"
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3144499\n"
-"96\n"
+"02150000.xhp\n"
+"bm_id3143284\n"
"help.text"
-msgid "If the annual nominal interest rate is 9.75% and four interest calculation periods are defined, what is the actual interest rate (effective rate)?"
+msgid "<bookmark_value>deleting; cell contents</bookmark_value><bookmark_value>cells; deleting contents</bookmark_value><bookmark_value>spreadsheets; deleting cell contents</bookmark_value><bookmark_value>cell contents; deleting</bookmark_value>"
msgstr ""
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150772\n"
-"97\n"
+"02150000.xhp\n"
+"hd_id3143284\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=EFFECTIVE(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
-msgstr ""
+msgid "Deleting Contents"
+msgstr "Tabela e përmbajtjeve"
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3147241\n"
+"02150000.xhp\n"
+"par_id3149456\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>effective interest rates</bookmark_value> <bookmark_value>EFFECT_ADD function</bookmark_value>"
+msgid "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Specifies the contents to be deleted from the active cell or from a selected cell range.</ahelp></variable> If several sheets are selected, all selected sheets will be affected."
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3147241\n"
-"414\n"
-"help.text"
-msgid "EFFECT_ADD"
-msgstr "Shto elementin"
-
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3147524\n"
-"415\n"
+"02150000.xhp\n"
+"par_id3159154\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Calculates the effective annual rate of interest on the basis of the nominal interest rate and the number of interest payments per annum.</ahelp>"
+msgid "This dialog is also called by pressing Backspace after the cell cursor has been activated on the sheet."
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3155364\n"
-"416\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3155118\n"
-"417\n"
+"02150000.xhp\n"
+"par_id3145367\n"
+"22\n"
"help.text"
-msgid "EFFECT_ADD(NominalRate; NPerY)"
+msgid "Pressing Delete deletes content without calling the dialog or changing formats."
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148907\n"
-"418\n"
-"help.text"
-msgid "<emph>NominalRate</emph> is the annual nominal rate of interest."
-msgstr "E kthen tarifwn efektive vjetore tw interesit"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3154274\n"
-"419\n"
-"help.text"
-msgid "<emph>NPerY </emph>is the number of interest payments per year."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3149156\n"
-"420\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3158426\n"
-"421\n"
+"02150000.xhp\n"
+"par_id3153951\n"
+"23\n"
"help.text"
-msgid "What is the effective annual rate of interest for a 5.25% nominal rate and quarterly payment."
+msgid "Use <emph>Cut</emph> on the Standard bar to delete contents and formats without the dialog."
msgstr ""
-#: 04060103.xhp
-#, fuzzy
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3148927\n"
-"422\n"
+"02150000.xhp\n"
+"hd_id3148575\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=EFFECT_ADD(0.0525;4)</item> returns 0.053543 or 5.3543%."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Selection"
+msgstr "Selektimet"
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3149998\n"
+"02150000.xhp\n"
+"par_id3149665\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>calculating; arithmetic-degressive depreciations</bookmark_value> <bookmark_value>arithmetic-degressive depreciations</bookmark_value> <bookmark_value>depreciations;arithmetic-degressive</bookmark_value> <bookmark_value>DDB function</bookmark_value>"
+msgid "This area lists the options for deleting contents."
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3149998\n"
-"99\n"
-"help.text"
-msgid "DDB"
-msgstr "DDB"
-
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3159190\n"
-"100\n"
+"02150000.xhp\n"
+"hd_id3146975\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GDA\">Returns the depreciation of an asset for a specified period using the arithmetic-declining method.</ahelp>"
-msgstr ""
+msgid "Delete All"
+msgstr "Fshij të gjitha"
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3152361\n"
-"101\n"
+"02150000.xhp\n"
+"par_id3154729\n"
+"6\n"
"help.text"
-msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
+msgid "<ahelp hid=\"modules/scalc/ui/deletecontents/deleteall\">Deletes all content from the selected cell range.</ahelp>"
msgstr ""
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3156038\n"
-"102\n"
+"02150000.xhp\n"
+"hd_id3156286\n"
+"7\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Text"
+msgstr "Tekst"
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3166452\n"
-"103\n"
+"02150000.xhp\n"
+"par_id3154015\n"
+"8\n"
"help.text"
-msgid "DDB(Cost; Salvage; Life; Period; Factor)"
+msgid "<ahelp hid=\"/modules/scalc/ui/deletecontents/text\">Deletes text only. Formats, formulas, numbers and dates are not affected.</ahelp>"
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153237\n"
-"104\n"
-"help.text"
-msgid "<emph>Cost</emph> fixes the initial cost of an asset."
-msgstr "Shpenzimet e përvetsimit. Shpenzimi fillestar i pasurisë."
-
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149787\n"
-"105\n"
+"02150000.xhp\n"
+"hd_id3153840\n"
+"9\n"
"help.text"
-msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
-msgstr "Vlera për të cilin do të përcaktohet rangimi."
+msgid "Numbers"
+msgstr "Numrat"
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3152945\n"
-"106\n"
+"02150000.xhp\n"
+"par_id3148405\n"
+"10\n"
"help.text"
-msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
+msgid "<ahelp hid=\"/modules/scalc/ui/deletecontents/numbers\">Deletes numbers only. Formats and formulas remain unchanged.</ahelp>"
msgstr ""
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149736\n"
-"107\n"
+"02150000.xhp\n"
+"hd_id3155764\n"
+"11\n"
"help.text"
-msgid "<emph>Period</emph> states the period for which the value is to be calculated."
-msgstr "Vlera për të cilin do të llogaritet shprëndarja standarde normale."
+msgid "Date & time"
+msgstr "<date/time>"
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150243\n"
-"108\n"
+"02150000.xhp\n"
+"par_id3149567\n"
+"12\n"
"help.text"
-msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
+msgid "<ahelp hid=\"/modules/scalc/ui/deletecontents/datetime\">Deletes date and time values. Formats, text, numbers and formulas remain unchanged.</ahelp>"
msgstr ""
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3159274\n"
-"109\n"
+"02150000.xhp\n"
+"hd_id3154703\n"
+"13\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Formulas"
+msgstr "Formulat"
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3152882\n"
-"110\n"
+"02150000.xhp\n"
+"par_id3148485\n"
+"14\n"
"help.text"
-msgid "A computer system with an initial cost of 75,000 currency units is to be depreciated monthly over 5 years. The value at the end of the depreciation is to be 1 currency unit. The factor is 2."
+msgid "<ahelp hid=\"/modules/scalc/ui/deletecontents/formulas\">Deletes formulas. Text, numbers, formats, dates and times remain unchanged.</ahelp>"
msgstr ""
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154106\n"
-"111\n"
+"02150000.xhp\n"
+"hd_id3150300\n"
+"15\n"
"help.text"
-msgid "<item type=\"input\">=DDB(75000;1;60;12;2) </item>= 1,721.81 currency units. Therefore, the double-declining depreciation in the twelfth month after purchase is 1,721.81 currency units."
-msgstr ""
+msgid "Comments"
+msgstr "Koment"
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3149962\n"
+"02150000.xhp\n"
+"par_id3154658\n"
+"16\n"
"help.text"
-msgid "<bookmark_value>calculating; geometric-degressive depreciations</bookmark_value> <bookmark_value>geometric-degressive depreciations</bookmark_value> <bookmark_value>depreciations;geometric-degressive</bookmark_value> <bookmark_value>DB function</bookmark_value>"
+msgid "<ahelp hid=\"/modules/scalc/ui/deletecontents/comments\">Deletes comments added to cells. All other elements remain unchanged.</ahelp>"
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3149962\n"
-"113\n"
-"help.text"
-msgid "DB"
-msgstr "DB"
-
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3148989\n"
-"114\n"
+"02150000.xhp\n"
+"hd_id3155112\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GDA2\">Returns the depreciation of an asset for a specified period using the double-declining balance method.</ahelp>"
-msgstr ""
+msgid "Formats"
+msgstr "Formate"
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3156213\n"
-"115\n"
+"02150000.xhp\n"
+"par_id3146134\n"
+"18\n"
"help.text"
-msgid "This form of depreciation is used if you want to get a higher depreciation value at the beginning of the depreciation (as opposed to linear depreciation). The depreciation value is reduced with every depreciation period by the depreciation already deducted from the initial cost."
+msgid "<ahelp hid=\"/modules/scalc/ui/deletecontents/formats\">Deletes format attributes applied to cells. All cell content remains unchanged.</ahelp>"
msgstr ""
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3149807\n"
-"116\n"
+"02150000.xhp\n"
+"hd_id3150088\n"
+"19\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Objects"
+msgstr "Objektet"
-#: 04060103.xhp
+#: 02150000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3153349\n"
-"117\n"
+"02150000.xhp\n"
+"par_id3152990\n"
+"20\n"
"help.text"
-msgid "DB(Cost; Salvage; Life; Period; Month)"
+msgid "<ahelp hid=\"/modules/scalc/ui/deletecontents/objects\">Deletes objects. All cell content remains unchanged.</ahelp>"
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3148462\n"
-"118\n"
-"help.text"
-msgid "<emph>Cost</emph> is the initial cost of an asset."
-msgstr "Shpenzimet e përvetsimit. Shpenzimi fillestar i pasurisë."
-
-#: 04060103.xhp
-#, fuzzy
+#: 02160000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3148658\n"
-"119\n"
+"02160000.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
-msgstr "Vlera për të cilin do të përcaktohet rangimi."
+msgid "Delete Cells"
+msgstr "Fshij Qelitë"
-#: 04060103.xhp
+#: 02160000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3145371\n"
-"120\n"
+"02160000.xhp\n"
+"bm_id3153726\n"
"help.text"
-msgid "<emph>Life</emph> defines the period over which an asset is depreciated."
+msgid "<bookmark_value>cells; deleting cells</bookmark_value><bookmark_value>columns; deleting</bookmark_value><bookmark_value>rows; deleting</bookmark_value><bookmark_value>spreadsheets; deleting cells</bookmark_value><bookmark_value>deleting;cells/rows/columns</bookmark_value>"
msgstr ""
-#: 04060103.xhp
+#: 02160000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154608\n"
-"121\n"
+"02160000.xhp\n"
+"hd_id3153726\n"
+"1\n"
"help.text"
-msgid "<emph>Period</emph> is the length of each period. The length must be entered in the same date unit as the depreciation period."
-msgstr ""
+msgid "Delete Cells"
+msgstr "Fshij Qelitë"
-#: 04060103.xhp
+#: 02160000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150829\n"
-"122\n"
+"02160000.xhp\n"
+"par_id3154490\n"
+"2\n"
"help.text"
-msgid "<emph>Month</emph> (optional) denotes the number of months for the first year of depreciation. If an entry is not defined, 12 is used as the default."
+msgid "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">Completely deletes selected cells, columns or rows. The cells below or to the right of the deleted cells will fill the space.</ahelp></variable> Note that the selected delete option is stored and reloaded when the dialog is next called."
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3151130\n"
-"123\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060103.xhp
+#: 02160000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3156147\n"
-"124\n"
+"02160000.xhp\n"
+"hd_id3149121\n"
+"3\n"
"help.text"
-msgid "A computer system with an initial cost of 25,000 currency units is to be depreciated over a three year period. The salvage value is to be 1,000 currency units. One period is 30 days."
-msgstr ""
+msgid "Selection"
+msgstr "Selektimet"
-#: 04060103.xhp
+#: 02160000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149513\n"
-"125\n"
+"02160000.xhp\n"
+"par_id3150751\n"
+"4\n"
"help.text"
-msgid "<item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1,075.00 currency units"
+msgid "This area contains options for specifying how sheets are displayed after deleting cells."
msgstr ""
-#: 04060103.xhp
+#: 02160000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3159242\n"
-"126\n"
+"02160000.xhp\n"
+"hd_id3155767\n"
+"5\n"
"help.text"
-msgid "The fixed-declining depreciation of the computer system is 1,075.00 currency units."
-msgstr ""
+msgid "Shift cells up"
+msgstr "Ndërro qelitë ~lartë"
-#: 04060103.xhp
+#: 02160000.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3153948\n"
+"02160000.xhp\n"
+"par_id3153714\n"
+"6\n"
"help.text"
-msgid "<bookmark_value>IRR function</bookmark_value> <bookmark_value>calculating;internal rates of return, regular payments</bookmark_value> <bookmark_value>internal rates of return;regular payments</bookmark_value>"
+msgid "<ahelp hid=\"modules/scalc/ui/deletecells/up\">Fills the space produced by the deleted cells with the cells underneath it.</ahelp>"
msgstr ""
-#: 04060103.xhp
+#: 02160000.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3153948\n"
-"128\n"
+"02160000.xhp\n"
+"hd_id3156382\n"
+"7\n"
"help.text"
-msgid "IRR"
-msgstr "IRR"
+msgid "Shift cells left"
+msgstr "Ndërro qelitë në të ~majtë"
-#: 04060103.xhp
+#: 02160000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3143282\n"
-"129\n"
+"02160000.xhp\n"
+"par_id3154702\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_IKV\">Calculates the internal rate of return for an investment.</ahelp> The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
+msgid "<ahelp hid=\"modules/scalc/ui/deletecells/left\">Fills the resulting space by the cells to the right of the deleted cells.</ahelp>"
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3150599\n"
-"130\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3155427\n"
-"131\n"
-"help.text"
-msgid "IRR(Values; Guess)"
-msgstr "Ndrysho vlerat standarde"
-
-#: 04060103.xhp
+#: 02160000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3144758\n"
-"132\n"
+"02160000.xhp\n"
+"hd_id3146918\n"
+"9\n"
"help.text"
-msgid "<emph>Values</emph> represents an array containing the values."
-msgstr ""
+msgid "Delete entire row(s)"
+msgstr "Fshiej tërë rreshtin(-at)"
-#: 04060103.xhp
+#: 02160000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149233\n"
-"133\n"
+"02160000.xhp\n"
+"par_id3148487\n"
+"10\n"
"help.text"
-msgid "<emph>Guess</emph> (optional) is the estimated value. An iterative method is used to calculate the internal rate of return. If you can provide only few values, you should provide an initial guess to enable the iteration."
+msgid "<ahelp hid=\".uno:DeleteRows\">After selecting at least one cell, deletes the entire row from the sheet.</ahelp>"
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3151258\n"
-"134\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060103.xhp
+#: 02160000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150630\n"
-"135\n"
+"02160000.xhp\n"
+"hd_id3155114\n"
+"11\n"
"help.text"
-msgid "Under the assumption that cell contents are A1=<item type=\"input\">-10000</item>, A2=<item type=\"input\">3500</item>, A3=<item type=\"input\">7600</item> and A4=<item type=\"input\">1000</item>, the formula <item type=\"input\">=IRR(A1:A4)</item> gives a result of 11,33%."
-msgstr ""
+msgid "Delete entire column(s)"
+msgstr "Fshiej tërë ~shtyllën(at)"
-#: 04060103.xhp
+#: 02160000.xhp
msgctxt ""
-"04060103.xhp\n"
-"bm_id3151012\n"
+"02160000.xhp\n"
+"par_id3150086\n"
+"12\n"
"help.text"
-msgid "<bookmark_value>calculating; interests for unchanged amortization installments</bookmark_value> <bookmark_value>interests for unchanged amortization installments</bookmark_value> <bookmark_value>ISPMT function</bookmark_value>"
+msgid "<ahelp hid=\".uno:DeleteColumns\">After selecting at least one cell, deletes the entire column from the sheet.</ahelp>"
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3151012\n"
-"314\n"
-"help.text"
-msgid "ISPMT"
-msgstr "ISPMT"
-
-#: 04060103.xhp
+#: 02160000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3148693\n"
-"315\n"
+"02160000.xhp\n"
+"par_id3166424\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISPMT\">Calculates the level of interest for unchanged amortization installments.</ahelp>"
+msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Deleting Contents\">Deleting Contents</link>"
msgstr ""
-#: 04060103.xhp
+#: 02170000.xhp
msgctxt ""
-"04060103.xhp\n"
-"hd_id3154661\n"
-"316\n"
+"02170000.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Delete Sheet"
+msgstr "Fshij Fletën"
-#: 04060103.xhp
+#: 02170000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146070\n"
-"317\n"
+"02170000.xhp\n"
+"bm_id3156424\n"
"help.text"
-msgid "ISPMT(Rate; Period; TotalPeriods; Invest)"
+msgid "<bookmark_value>spreadsheets; deleting</bookmark_value><bookmark_value>sheets; deleting</bookmark_value><bookmark_value>deleting; spreadsheets</bookmark_value>"
msgstr ""
-#: 04060103.xhp
+#: 02170000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3148672\n"
-"318\n"
+"02170000.xhp\n"
+"hd_id3156424\n"
+"1\n"
"help.text"
-msgid "<emph>Rate</emph> sets the periodic interest rate."
-msgstr "E kthen tarifwn efektive vjetore tw interesit"
+msgid "Delete Sheet"
+msgstr "Fshij Fletën"
-#: 04060103.xhp
+#: 02170000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3145777\n"
-"319\n"
+"02170000.xhp\n"
+"par_id3153193\n"
+"2\n"
"help.text"
-msgid "<emph>Period</emph> is the number of installments for calculation of interest."
+msgid "<variable id=\"tabelleloeschentext\"><ahelp hid=\".uno:Remove\">Deletes the current sheet after query confirmation.</ahelp></variable>"
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"par_id3153678\n"
-"320\n"
-"help.text"
-msgid "<emph>TotalPeriods</emph> is the total number of installment periods."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-
-#: 04060103.xhp
+#: 02170000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3159390\n"
-"321\n"
+"02170000.xhp\n"
+"par_id3145801\n"
+"7\n"
"help.text"
-msgid "<emph>Invest</emph> is the amount of the investment."
+msgid "You cannot delete a sheet while <emph>Edit - Changes - Record</emph> is activated."
msgstr ""
-#: 04060103.xhp
-msgctxt ""
-"04060103.xhp\n"
-"hd_id3156162\n"
-"322\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060103.xhp
+#: 02170000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3149558\n"
-"323\n"
+"02170000.xhp\n"
+"hd_id3147124\n"
+"3\n"
"help.text"
-msgid "For a credit amount of 120,000 currency units with a two-year term and monthly installments, at a yearly interest rate of 12% the level of interest after 1.5 years is required."
-msgstr ""
+msgid "Yes"
+msgstr "Po"
-#: 04060103.xhp
+#: 02170000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3150949\n"
-"324\n"
+"02170000.xhp\n"
+"par_id3154943\n"
+"4\n"
"help.text"
-msgid "<item type=\"input\">=ISPMT(1%;18;24;120000)</item> = -300 currency units. The monthly interest after 1.5 years amounts to 300 currency units."
+msgid "Deletes the current sheet."
msgstr ""
-#: 04060103.xhp
+#: 02170000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3146812\n"
-"426\n"
+"02170000.xhp\n"
+"hd_id3149412\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">Financial Functions Part Two</link>"
-msgstr ""
+msgid "No"
+msgstr "No"
-#: 04060103.xhp
+#: 02170000.xhp
msgctxt ""
-"04060103.xhp\n"
-"par_id3154411\n"
-"427\n"
+"02170000.xhp\n"
+"par_id3154510\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Financial Functions Part Three</link>"
+msgid "Cancels the dialog. No delete is performed."
msgstr ""
-#: 04060116.xhp
+#: 02180000.xhp
msgctxt ""
-"04060116.xhp\n"
+"02180000.xhp\n"
"tit\n"
"help.text"
-msgid "Add-in Functions, List of Analysis Functions Part Two"
+msgid "Move or Copy a Sheet"
msgstr ""
-#: 04060116.xhp
+#: 02180000.xhp
msgctxt ""
-"04060116.xhp\n"
-"bm_id3145074\n"
+"02180000.xhp\n"
+"bm_id3153360\n"
"help.text"
-msgid "<bookmark_value>imaginary numbers in analysis functions</bookmark_value> <bookmark_value>complex numbers in analysis functions</bookmark_value>"
+msgid "<bookmark_value>spreadsheets; moving</bookmark_value><bookmark_value>spreadsheets; copying</bookmark_value><bookmark_value>moving; spreadsheets</bookmark_value><bookmark_value>copying; spreadsheets</bookmark_value>"
msgstr ""
-#: 04060116.xhp
+#: 02180000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3154659\n"
+"02180000.xhp\n"
+"hd_id3153360\n"
"1\n"
"help.text"
-msgid "Add-in Functions, List of Analysis Functions Part Two"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151242\n"
-"174\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Category Statistics\">Category Statistics</link>"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148869\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060115.xhp\" name=\"Analysis Functions Part One\">Analysis Functions Part One</link>"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147072\n"
-"240\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3154959\n"
-"help.text"
-msgid "<bookmark_value>IMABS function</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154959\n"
-"44\n"
-"help.text"
-msgid "IMABS"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149895\n"
-"45\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMABS\">The result is the absolute value of a complex number.</ahelp>"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3155382\n"
-"46\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151302\n"
-"47\n"
-"help.text"
-msgid "IMABS(\"ComplexNumber\")"
-msgstr "Pjesa imagjinare"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153974\n"
-"48\n"
-"help.text"
-msgid "<variable id=\"complex\"><emph>ComplexNumber</emph> is a complex number that is entered in the form \"x+yi\" or \"x+yj\".</variable>"
+msgid "Move or Copy a Sheet"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149697\n"
-"49\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143222\n"
-"50\n"
-"help.text"
-msgid "<item type=\"input\">=IMABS(\"5+12j\")</item> returns 13."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3145357\n"
-"help.text"
-msgid "<bookmark_value>IMAGINARY function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060116.xhp
+#: 02180000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3145357\n"
-"51\n"
+"02180000.xhp\n"
+"par_id3154686\n"
+"2\n"
"help.text"
-msgid "IMAGINARY"
+msgid "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Moves or copies a sheet to a new location in the document or to a different document.</ahelp></variable>"
msgstr ""
-#: 04060116.xhp
+#: 02180000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3146965\n"
-"52\n"
+"02180000.xhp\n"
+"par_id2282479\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">The result is the imaginary coefficient of a complex number.</ahelp>"
+msgid "When you copy and paste cells containing <link href=\"text/scalc/01/04060102.xhp\">date values</link> between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153555\n"
-"53\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155522\n"
-"54\n"
-"help.text"
-msgid "IMAGINARY(\"ComplexNumber\")"
-msgstr "Pjesa imagjinare"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3151193\n"
-"56\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155592\n"
-"57\n"
-"help.text"
-msgid "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> returns 3."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3146106\n"
-"help.text"
-msgid "<bookmark_value>IMPOWER function</bookmark_value>"
-msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
-
-#: 04060116.xhp
+#: 02180000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3146106\n"
-"58\n"
+"02180000.xhp\n"
+"hd_id3163710\n"
+"3\n"
"help.text"
-msgid "IMPOWER"
-msgstr ""
+msgid "To Document"
+msgstr "Nga ~dokumenti"
-#: 04060116.xhp
+#: 02180000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3147245\n"
-"59\n"
+"02180000.xhp\n"
+"par_id3148645\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMPOWER\">The result is the integer power of a complex number.</ahelp>"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_DEST\">Indicates where the current sheet is to be moved or copied to.</ahelp> Select <emph>- new document -</emph> if you want to create a new location for the sheet to be moved or copied."
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150954\n"
-"60\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147501\n"
-"61\n"
-"help.text"
-msgid "IMPOWER(\"ComplexNumber\"; Number)"
-msgstr "Zona e numrit të sllajdit"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155743\n"
-"63\n"
-"help.text"
-msgid "<emph>Number</emph> is the exponent."
-msgstr "Kthen SAKTË nëse vlera është një numër."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149048\n"
-"64\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151393\n"
-"65\n"
-"help.text"
-msgid "<item type=\"input\">=IMPOWER(\"2+3i\";2)</item> returns -5+12i."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3148748\n"
-"help.text"
-msgid "<bookmark_value>IMARGUMENT function</bookmark_value>"
-msgstr "Vlera tanishme. Vlera e tanishme e investimit."
-
-#: 04060116.xhp
+#: 02180000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3148748\n"
-"66\n"
+"02180000.xhp\n"
+"hd_id3154012\n"
+"5\n"
"help.text"
-msgid "IMARGUMENT"
-msgstr ""
+msgid "Insert Before"
+msgstr "~Fute para"
-#: 04060116.xhp
+#: 02180000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3151341\n"
-"67\n"
+"02180000.xhp\n"
+"par_id3145366\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">The result is the argument (the phi angle) of a complex number.</ahelp>"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_INSERT\">The current sheet is moved or copied in front of the selected sheet.</ahelp> The <emph>- move to end position -</emph> option places the current sheet at the end."
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150533\n"
-"68\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3156402\n"
-"69\n"
-"help.text"
-msgid "IMARGUMENT(\"ComplexNumber\")"
-msgstr "Pjesa imagjinare"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153019\n"
-"71\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3159125\n"
-"72\n"
-"help.text"
-msgid "<item type=\"input\">=IMARGUMENT(\"3+4j\")</item> returns 0.927295."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3149146\n"
-"help.text"
-msgid "<bookmark_value>IMCOS function</bookmark_value>"
-msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
-
-#: 04060116.xhp
+#: 02180000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3149146\n"
-"73\n"
+"02180000.xhp\n"
+"hd_id3153726\n"
+"7\n"
"help.text"
-msgid "IMCOS"
-msgstr ""
+msgid "Copy"
+msgstr "Kopjo"
-#: 04060116.xhp
+#: 02180000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149725\n"
-"74\n"
+"02180000.xhp\n"
+"par_id3144764\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMCOS\">The result is the cosine of a complex number.</ahelp>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_MOVETAB:BTN_COPY\">Specifies that the sheet is to be copied. If the option is unmarked, the sheet is moved.</ahelp> Moving sheets is the default."
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3159116\n"
-"75\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147415\n"
-"76\n"
-"help.text"
-msgid "IMCOS(\"ComplexNumber\")"
-msgstr "Pjesa imagjinare"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3152980\n"
-"78\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-#, fuzzy
-msgctxt ""
-"04060116.xhp\n"
-"par_id3157901\n"
-"79\n"
-"help.text"
-msgid "<item type=\"input\">=IMCOS(\"3+4j\") </item>returns -27.03-3.85i (rounded)."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
+#: 02190000.xhp
msgctxt ""
-"04060116.xhp\n"
-"bm_id3150024\n"
+"02190000.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>IMDIV function</bookmark_value>"
-msgstr "Indeksi i vlerës (1..30) së selektuar."
+msgid "Delete Manual Breaks"
+msgstr "Fshiej të Gjitha Thyerjet Manuale"
-#: 04060116.xhp
+#: 02190000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3150024\n"
-"80\n"
+"02190000.xhp\n"
+"hd_id3150541\n"
+"1\n"
"help.text"
-msgid "IMDIV"
+msgid "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Manual Breaks\">Delete Manual Break</link>"
msgstr ""
-#: 04060116.xhp
+#: 02190000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3145825\n"
-"81\n"
+"02190000.xhp\n"
+"par_id3154365\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">The result is the division of two complex numbers.</ahelp>"
+msgid "<ahelp hid=\".\">Choose the type of manual break that you want to delete.</ahelp>"
msgstr ""
-#: 04060116.xhp
+#: 02190100.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3150465\n"
-"82\n"
+"02190100.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Row Break"
+msgstr "~Thyerja e Rreshtit"
-#: 04060116.xhp
+#: 02190100.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3146942\n"
-"83\n"
+"02190100.xhp\n"
+"bm_id3156326\n"
"help.text"
-msgid "IMDIV(\"Numerator\"; \"Denominator\")"
+msgid "<bookmark_value>spreadsheets; deleting row breaks</bookmark_value><bookmark_value>deleting;manual row breaks</bookmark_value><bookmark_value>row breaks; deleting</bookmark_value>"
msgstr ""
-#: 04060116.xhp
+#: 02190100.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3150741\n"
-"84\n"
+"02190100.xhp\n"
+"hd_id3156326\n"
+"1\n"
"help.text"
-msgid "<emph>Numerator</emph>, <emph>Denominator</emph> are complex numbers that are entered in the form \"x+yi\" or \"x+yj\"."
+msgid "<link href=\"text/scalc/01/02190100.xhp\" name=\"Row Break\">Row Break</link>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3151229\n"
-"85\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148440\n"
-"86\n"
-"help.text"
-msgid "<item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> returns 5+12i."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3153039\n"
-"help.text"
-msgid "<bookmark_value>IMEXP function</bookmark_value>"
-msgstr "Shndërron një vlerë në tekst."
-
-#: 04060116.xhp
+#: 02190100.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3153039\n"
-"87\n"
+"02190100.xhp\n"
+"par_id3154366\n"
+"2\n"
"help.text"
-msgid "IMEXP"
+msgid "<ahelp hid=\".uno:DeleteRowbreak\">Removes the manual row break above the active cell.</ahelp>"
msgstr ""
-#: 04060116.xhp
+#: 02190100.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3144741\n"
-"88\n"
+"02190100.xhp\n"
+"par_id3151041\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">The result is the power of e and the complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgid "Position the cursor in a cell directly below the row break indicated by a horizontal line and choose <emph>Edit - Delete Manual Break - Row Break</emph>. The manual row break is removed."
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3145591\n"
-"89\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154810\n"
-"90\n"
-"help.text"
-msgid "IMEXP(\"ComplexNumber\")"
-msgstr "Pjesa imagjinare"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148581\n"
-"92\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-#, fuzzy
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149253\n"
-"93\n"
-"help.text"
-msgid "<item type=\"input\">=IMEXP(\"1+j\") </item>returns 1.47+2.29j (rounded)."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
+#: 02190200.xhp
msgctxt ""
-"04060116.xhp\n"
-"bm_id3149955\n"
+"02190200.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>IMCONJUGATE function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "Column Break"
+msgstr "Thyerje e kolonës"
-#: 04060116.xhp
+#: 02190200.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3149955\n"
-"94\n"
+"02190200.xhp\n"
+"bm_id3151384\n"
"help.text"
-msgid "IMCONJUGATE"
+msgid "<bookmark_value>spreadsheets;deleting column breaks</bookmark_value><bookmark_value>deleting;manual column breaks</bookmark_value><bookmark_value>column breaks;deleting</bookmark_value>"
msgstr ""
-#: 04060116.xhp
+#: 02190200.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3155263\n"
-"95\n"
+"02190200.xhp\n"
+"hd_id3151384\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">The result is the conjugated complex complement to a complex number.</ahelp>"
+msgid "<link href=\"text/scalc/01/02190200.xhp\" name=\"Column Break\">Column Break</link>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148750\n"
-"96\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153082\n"
-"97\n"
-"help.text"
-msgid "IMCONJUGATE(\"ComplexNumber\")"
-msgstr "Pjesa imagjinare"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153326\n"
-"99\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149688\n"
-"100\n"
-"help.text"
-msgid "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> returns 1-j."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3150898\n"
-"help.text"
-msgid "<bookmark_value>IMLN function</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
-
-#: 04060116.xhp
+#: 02190200.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3150898\n"
-"101\n"
+"02190200.xhp\n"
+"par_id3154124\n"
+"2\n"
"help.text"
-msgid "IMLN"
+msgid "<ahelp hid=\".uno:DeleteColumnbreak\">Removes a manual column break to the left of the active cell.</ahelp>"
msgstr ""
-#: 04060116.xhp
+#: 02190200.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3146853\n"
-"102\n"
+"02190200.xhp\n"
+"par_id3145173\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMLN\">The result is the natural logarithm (to the base e) of a complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgid "Position the cursor in the cell to the right of the column break indicated by a vertical line and choose <emph>Edit - Delete Manual Break - Column Break</emph>. The manual column break is removed."
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150008\n"
-"103\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155954\n"
-"104\n"
-"help.text"
-msgid "IMLN(\"ComplexNumber\")"
-msgstr "Pjesa imagjinare"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153565\n"
-"106\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-#, fuzzy
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153736\n"
-"107\n"
-"help.text"
-msgid "<item type=\"input\">=IMLN(\"1+j\")</item> returns 0.35+0.79j (rounded)."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
+#: 02200000.xhp
msgctxt ""
-"04060116.xhp\n"
-"bm_id3155929\n"
+"02200000.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>IMLOG10 function</bookmark_value>"
-msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+msgid "Sheet"
+msgstr "Krijo"
-#: 04060116.xhp
+#: 02200000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3155929\n"
-"108\n"
+"02200000.xhp\n"
+"hd_id3146794\n"
+"1\n"
"help.text"
-msgid "IMLOG10"
+msgid "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">Sheet</link>"
msgstr ""
-#: 04060116.xhp
+#: 02200000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149882\n"
-"109\n"
+"02200000.xhp\n"
+"par_id3149456\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG10\">The result is the common logarithm (to the base 10) of a complex number.</ahelp>"
+msgid "<ahelp hid=\".\">Edit commands for entire sheets.</ahelp>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154327\n"
-"110\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150128\n"
-"111\n"
-"help.text"
-msgid "IMLOG10(\"ComplexNumber\")"
-msgstr "Pjesa imagjinare"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149003\n"
-"113\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-#, fuzzy
-msgctxt ""
-"04060116.xhp\n"
-"par_id3151021\n"
-"114\n"
-"help.text"
-msgid "<item type=\"input\">=IMLOG10(\"1+j\")</item> returns 0.15+0.34j (rounded)."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3155623\n"
-"help.text"
-msgid "<bookmark_value>IMLOG2 function</bookmark_value>"
-msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
-
-#: 04060116.xhp
+#: 02200000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3155623\n"
-"115\n"
+"02200000.xhp\n"
+"hd_id3150792\n"
+"3\n"
"help.text"
-msgid "IMLOG2"
+msgid "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Move/Copy</link>"
msgstr ""
-#: 04060116.xhp
+#: 02200000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3150932\n"
-"116\n"
+"02200000.xhp\n"
+"hd_id3153968\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">The result is the binary logarithm of a complex number.</ahelp>"
+msgid "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">Select</link>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153046\n"
-"117\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3145355\n"
-"118\n"
-"help.text"
-msgid "IMLOG2(\"ComplexNumber\")"
-msgstr "Pjesa imagjinare"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148768\n"
-"120\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-#, fuzzy
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149536\n"
-"121\n"
-"help.text"
-msgid "<item type=\"input\">=IMLOG2(\"1+j\")</item> returns 0.50+1.13j (rounded)."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3145626\n"
-"help.text"
-msgid "<bookmark_value>IMPRODUCT function</bookmark_value>"
-msgstr "Gabim: Vlera nuk është në dispozicion"
-
-#: 04060116.xhp
-#, fuzzy
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3145626\n"
-"122\n"
-"help.text"
-msgid "IMPRODUCT"
-msgstr "SUMPRODUCT"
-
-#: 04060116.xhp
+#: 02200000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3153545\n"
-"123\n"
+"02200000.xhp\n"
+"hd_id3163708\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\">The result is the product of up to 29 complex numbers.</ahelp>"
+msgid "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Delete</link>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149388\n"
-"124\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
+#: 02200000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149027\n"
-"125\n"
+"02200000.xhp\n"
+"hd_id3163733308\n"
"help.text"
-msgid "IMPRODUCT(\"ComplexNumber\"; \"ComplexNumber1\"; ...)"
+msgid "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Events</link>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3153228\n"
-"127\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155815\n"
-"128\n"
-"help.text"
-msgid "<item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> returns 27+11j."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
+#: 02210000.xhp
msgctxt ""
-"04060116.xhp\n"
-"bm_id3147539\n"
+"02210000.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>IMREAL function</bookmark_value>"
-msgstr "Veprimi përfundoi [Time]: [1]. Vlera kthyese [2]."
+msgid "Selecting Sheets"
+msgstr "Selekto Fletët"
-#: 04060116.xhp
+#: 02210000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3147539\n"
-"129\n"
+"02210000.xhp\n"
+"hd_id3156023\n"
+"5\n"
"help.text"
-msgid "IMREAL"
-msgstr ""
+msgid "Selecting Sheets"
+msgstr "Selekto Fletët"
-#: 04060116.xhp
+#: 02210000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3155372\n"
-"130\n"
+"02210000.xhp\n"
+"par_id3147265\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">The result is the real coefficient of a complex number.</ahelp>"
+msgid "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">Selects multiple sheets.</ahelp></variable>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154951\n"
-"131\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153927\n"
-"132\n"
-"help.text"
-msgid "IMREAL(\"ComplexNumber\")"
-msgstr "Pjesa imagjinare"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3155409\n"
-"134\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155986\n"
-"135\n"
-"help.text"
-msgid "<item type=\"input\">=IMREAL(\"1+3j\")</item> returns 1."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3148431\n"
-"help.text"
-msgid "<bookmark_value>IMSIN function</bookmark_value>"
-msgstr "Mjeti. Vlera e mjetit të shprëndarjes Poisson."
-
-#: 04060116.xhp
+#: 02210000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3148431\n"
-"136\n"
+"02210000.xhp\n"
+"hd_id3125863\n"
+"2\n"
"help.text"
-msgid "IMSIN"
-msgstr ""
+msgid "Selected Sheets"
+msgstr "~Fletët e selektuara"
-#: 04060116.xhp
+#: 02210000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3152591\n"
-"137\n"
+"02210000.xhp\n"
+"par_id3153969\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMSIN\">The result is the sine of a complex number.</ahelp>"
+msgid "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Lists the sheets in the current document. To select a sheet, press the up or down arrow keys to move to a sheet in the list. To add a sheet to the selection, hold down Ctrl (Mac: Command) while pressing the arrow keys and then press Spacebar. To select a range of sheets, hold down Shift and press the arrow keys. </ahelp>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149822\n"
-"138\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150387\n"
-"139\n"
-"help.text"
-msgid "IMSIN(\"ComplexNumber\")"
-msgstr "Pjesa imagjinare"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150613\n"
-"141\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-#, fuzzy
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154310\n"
-"142\n"
-"help.text"
-msgid "<item type=\"input\">=IMSIN(\"3+4j\")</item> returns 3.85+27.02j (rounded)."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3163826\n"
-"help.text"
-msgid "<bookmark_value>IMSUB function</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-
-#: 04060116.xhp
+#: 03070000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3163826\n"
-"143\n"
+"03070000.xhp\n"
+"tit\n"
"help.text"
-msgid "IMSUB"
-msgstr ""
+msgid "Column & Row Headers"
+msgstr "Krerët e Kolonave dhe Rreshtave"
-#: 04060116.xhp
+#: 03070000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149277\n"
-"144\n"
+"03070000.xhp\n"
+"bm_id3156024\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">The result is the subtraction of two complex numbers.</ahelp>"
+msgid "<bookmark_value>spreadsheets; displaying headers of columns/rows</bookmark_value><bookmark_value>displaying; headers of columns/rows</bookmark_value>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3149264\n"
-"145\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
+#: 03070000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149710\n"
-"146\n"
+"03070000.xhp\n"
+"hd_id3156024\n"
+"1\n"
"help.text"
-msgid "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
+msgid "<link href=\"text/scalc/01/03070000.xhp\" name=\"Column & Row Headers\">Column & Row Headers</link>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3155833\n"
-"148\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150963\n"
-"149\n"
-"help.text"
-msgid "<item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> returns 8+j."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3156312\n"
-"help.text"
-msgid "<bookmark_value>IMSUM function</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-
-#: 04060116.xhp
+#: 03070000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3156312\n"
-"150\n"
+"03070000.xhp\n"
+"par_id3147230\n"
+"2\n"
"help.text"
-msgid "IMSUM"
+msgid "<ahelp hid=\".uno:ViewRowColumnHeaders\">Shows column headers and row headers.</ahelp>"
msgstr ""
-#: 04060116.xhp
+#: 03070000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3153215\n"
-"151\n"
+"03070000.xhp\n"
+"par_id3156280\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">The result is the sum of up to 29 complex numbers.</ahelp>"
+msgid "To hide the column and row headers unmark this menu entry."
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3156095\n"
-"152\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
+#: 03070000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3152930\n"
-"153\n"
+"03070000.xhp\n"
+"par_id3156441\n"
+"3\n"
"help.text"
-msgid "IMSUM(\"ComplexNumber1\"; \"ComplexNumber2\"; ...)"
+msgid "You can also set the view of the column and row headers in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link></emph>."
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154640\n"
-"155\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147081\n"
-"156\n"
-"help.text"
-msgid "<item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> returns 18+7j."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
+#: 03080000.xhp
msgctxt ""
-"04060116.xhp\n"
-"bm_id3147570\n"
+"03080000.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>IMSQRT function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "Value Highlighting"
+msgstr "~Theksimi i Vlerës"
-#: 04060116.xhp
+#: 03080000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3147570\n"
-"167\n"
+"03080000.xhp\n"
+"bm_id3151384\n"
"help.text"
-msgid "IMSQRT"
+msgid "<bookmark_value>spreadsheets; value highlighting</bookmark_value><bookmark_value>values;highlighting</bookmark_value><bookmark_value>highlighting; values in sheets</bookmark_value><bookmark_value>colors;values</bookmark_value>"
msgstr ""
-#: 04060116.xhp
+#: 03080000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3156131\n"
-"168\n"
+"03080000.xhp\n"
+"hd_id3151384\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\">The result is the square root of a complex number.</ahelp>"
+msgid "<link href=\"text/scalc/01/03080000.xhp\" name=\"Value Highlighting\">Value Highlighting</link>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3145202\n"
-"169\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150760\n"
-"170\n"
-"help.text"
-msgid "IMSQRT(\"ComplexNumber\")"
-msgstr "Pjesa imagjinare"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3147268\n"
-"172\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3152807\n"
-"173\n"
-"help.text"
-msgid "<item type=\"input\">=IMSQRT(\"3+4i\")</item> returns 2+1i."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3154054\n"
-"help.text"
-msgid "<bookmark_value>COMPLEX function</bookmark_value>"
-msgstr "I kthen vlerat absolute tw njw numri kompleks"
-
-#: 04060116.xhp
+#: 03080000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3154054\n"
-"157\n"
+"03080000.xhp\n"
+"par_id3154366\n"
"help.text"
-msgid "COMPLEX"
+msgid "<ahelp hid=\".uno:ViewValueHighlighting\">Displays cell contents in different colors, depending on type.</ahelp>"
msgstr ""
-#: 04060116.xhp
+#: 03080000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3156111\n"
-"158\n"
+"03080000.xhp\n"
+"par_id3125863\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\">The result is a complex number which is returned from a real coefficient and an imaginary coefficient.</ahelp>"
+msgid "To remove the highlighting, unmark the menu entry."
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154744\n"
-"159\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
+#: 03080000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3155999\n"
-"160\n"
+"03080000.xhp\n"
+"par_id3145785\n"
"help.text"
-msgid "COMPLEX(RealNum; INum; Suffix)"
+msgid "Text cells are formatted in black, formulas in green, and number cells in blue, no matter how their display is formatted."
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153626\n"
-"161\n"
-"help.text"
-msgid "<emph>RealNum</emph> is the real coefficient of the complex number."
-msgstr "Kthen SAKTË nëse vlera është një numër."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149135\n"
-"162\n"
-"help.text"
-msgid "<emph>INum</emph> is the imaginary coefficient of the complex number."
-msgstr "Siguron një numër të mbrendshëm për datën e dhënë."
-
-#: 04060116.xhp
+#: 03080000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3155849\n"
-"163\n"
+"03080000.xhp\n"
+"par_id3153188\n"
"help.text"
-msgid "<emph>Suffix</emph> is a list of options, \"i\" or \"j\"."
+msgid "If this function is active, colors that you define in the document will not be displayed. When you deactivate the function, the user-defined colors are displayed again."
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3145659\n"
-"164\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3143229\n"
-"165\n"
-"help.text"
-msgid "<item type=\"input\">=COMPLEX(3;4;\"j\")</item> returns 3+4j."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3155103\n"
-"help.text"
-msgid "<bookmark_value>OCT2BIN function</bookmark_value> <bookmark_value>converting;octal numbers, into binary numbers</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060116.xhp
+#: 03090000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3155103\n"
-"217\n"
+"03090000.xhp\n"
+"tit\n"
"help.text"
-msgid "OCT2BIN"
-msgstr ""
+msgid "Formula Bar"
+msgstr "Shiriti i formulës"
-#: 04060116.xhp
+#: 03090000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3146898\n"
-"218\n"
+"03090000.xhp\n"
+"bm_id3147264\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">The result is the binary number for the octal number entered.</ahelp>"
+msgid "<bookmark_value>formula bar;spreadsheets</bookmark_value><bookmark_value>spreadsheets; formula bar</bookmark_value>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3146088\n"
-"219\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154303\n"
-"220\n"
-"help.text"
-msgid "OCT2BIN(Number; Places)"
-msgstr "Numri i vendeve tw pwrdorura"
-
-#: 04060116.xhp
+#: 03090000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3156013\n"
-"221\n"
+"03090000.xhp\n"
+"hd_id3147264\n"
+"1\n"
"help.text"
-msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgid "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">Formula Bar</link>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153984\n"
-"222\n"
-"help.text"
-msgid "<emph>Places</emph> is the number of places to be output."
-msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3147493\n"
-"223\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147260\n"
-"224\n"
-"help.text"
-msgid "<item type=\"input\">=OCT2BIN(3;3)</item> returns 011."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3152791\n"
-"help.text"
-msgid "<bookmark_value>OCT2DEC function</bookmark_value> <bookmark_value>converting;octal numbers, into decimal numbers</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060116.xhp
+#: 03090000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3152791\n"
-"225\n"
+"03090000.xhp\n"
+"par_id3156423\n"
+"2\n"
"help.text"
-msgid "OCT2DEC"
+msgid "<ahelp hid=\".uno:InputLineVisible\">Shows or hides the Formula Bar, which is used for entering and editing formulas.</ahelp> The Formula Bar is the most important tool when working with spreadsheets."
msgstr ""
-#: 04060116.xhp
+#: 03090000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149199\n"
-"226\n"
+"03090000.xhp\n"
+"par_id3154686\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">The result is the decimal number for the octal number entered.</ahelp>"
+msgid "To hide the Formula Bar, unmark the menu item."
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3159337\n"
-"227\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3153902\n"
-"228\n"
-"help.text"
-msgid "OCT2DEC(Number)"
-msgstr "Numri i faqes"
-
-#: 04060116.xhp
+#: 03090000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3155326\n"
-"229\n"
+"03090000.xhp\n"
+"par_id3145787\n"
+"3\n"
"help.text"
-msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgid "If the Formula Bar is hidden, you can still edit cells by activating the edit mode with F2. After editing cells, accept the changes by pressing Enter, or discard entries by pressing Esc. Esc is also used to exit the edit mode."
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154698\n"
-"230\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154930\n"
-"231\n"
-"help.text"
-msgid "<item type=\"input\">=OCT2DEC(144)</item> returns 100."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3155391\n"
-"help.text"
-msgid "<bookmark_value>OCT2HEX function</bookmark_value> <bookmark_value>converting;octal numbers, into hexadecimal numbers</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060116.xhp
+#: 03100000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3155391\n"
-"232\n"
+"03100000.xhp\n"
+"tit\n"
"help.text"
-msgid "OCT2HEX"
-msgstr ""
+msgid "Page Break Preview"
+msgstr "~Shikimi Paraprak i Thyerjes së Faqes"
-#: 04060116.xhp
+#: 03100000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3148831\n"
-"233\n"
+"03100000.xhp\n"
+"hd_id3151384\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\"> The result is the hexadecimal number for the octal number entered.</ahelp>"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"Page Break Preview\">Page Break Preview</link>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3146988\n"
-"234\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150523\n"
-"235\n"
-"help.text"
-msgid "OCT2HEX(Number; Places)"
-msgstr "Numri i vendeve tw pwrdorura"
-
-#: 04060116.xhp
+#: 03100000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3159162\n"
-"236\n"
+"03100000.xhp\n"
+"par_id3150792\n"
+"2\n"
"help.text"
-msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgid "<ahelp hid=\".uno:PagebreakMode\">Display the page breaks and print ranges in the sheet. Choose <emph>View - Normal</emph> to switch this mode off.</ahelp>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3145420\n"
-"237\n"
-"help.text"
-msgid "<emph>Places</emph> is the number of places to be output."
-msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3150504\n"
-"238\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148802\n"
-"239\n"
-"help.text"
-msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"bm_id3148446\n"
-"help.text"
-msgid "<bookmark_value>CONVERT_ADD function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3148446\n"
-"175\n"
-"help.text"
-msgid "CONVERT_ADD"
-msgstr "Shto elementin"
-
-#: 04060116.xhp
+#: 03100000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3154902\n"
-"176\n"
+"03100000.xhp\n"
+"par_id3153877\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Converts a value from one unit of measure to the corresponding value in another unit of measure.</ahelp> Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for liter) in a cell, enter the apostrophe ' immediately followed by l."
+msgid "The context menu of the page break preview contains functions for editing page breaks, including the following options:"
msgstr ""
-#: 04060116.xhp
+#: 03100000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3153055\n"
-"177\n"
+"03100000.xhp\n"
+"hd_id3154731\n"
+"14\n"
"help.text"
-msgid "Property"
-msgstr "Veti"
+msgid "Delete All Manual Breaks"
+msgstr "Fshiej të Gjitha Thyerjet Manuale"
-#: 04060116.xhp
+#: 03100000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3147234\n"
-"178\n"
+"03100000.xhp\n"
+"par_id3149400\n"
+"15\n"
"help.text"
-msgid "Units"
+msgid "<ahelp hid=\".uno:DeleteAllBreaks\">Deletes all manual breaks in the current sheet.</ahelp>"
msgstr ""
-#: 04060116.xhp
+#: 03100000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3147512\n"
-"179\n"
+"03100000.xhp\n"
+"hd_id3155067\n"
+"18\n"
"help.text"
-msgid "Weight"
-msgstr "Peshë"
+msgid "Add Print Range"
+msgstr "Shto Intervalin e Printimit"
-#: 04060116.xhp
+#: 03100000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3148476\n"
-"180\n"
+"03100000.xhp\n"
+"par_id3155764\n"
+"19\n"
"help.text"
-msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
+msgid "Adds the selected cells to print ranges."
msgstr ""
-#: 04060116.xhp
+#: 04010000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3155361\n"
-"181\n"
+"04010000.xhp\n"
+"tit\n"
"help.text"
-msgid "Length"
-msgstr "Gjatësi"
+msgid "Manual Break"
+msgstr "~Thyerje Manuale"
-#: 04060116.xhp
+#: 04010000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3148925\n"
-"182\n"
+"04010000.xhp\n"
+"bm_id3153192\n"
"help.text"
-msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
+msgid "<bookmark_value>spreadsheets; inserting breaks in</bookmark_value><bookmark_value>inserting; breaks</bookmark_value><bookmark_value>page breaks; inserting in spreadsheets</bookmark_value>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3158429\n"
-"183\n"
-"help.text"
-msgid "Time"
-msgstr "Koha"
-
-#: 04060116.xhp
+#: 04010000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3150707\n"
-"184\n"
+"04010000.xhp\n"
+"hd_id3153192\n"
+"1\n"
"help.text"
-msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
+msgid "<link href=\"text/scalc/01/04010000.xhp\" name=\"Manual Break\">Manual Break</link>"
msgstr ""
-#: 04060116.xhp
+#: 04010000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3153238\n"
-"185\n"
+"04010000.xhp\n"
+"par_id3125864\n"
+"2\n"
"help.text"
-msgid "Pressure"
+msgid "<ahelp hid=\".\">This command inserts manual row or column breaks to ensure that your data prints properly. You can insert a horizontal page break above, or a vertical page break to the left of, the active cell.</ahelp>"
msgstr ""
-#: 04060116.xhp
+#: 04010000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3166437\n"
-"186\n"
+"04010000.xhp\n"
+"par_id3155133\n"
+"3\n"
"help.text"
-msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
+msgid "Choose <link href=\"text/scalc/01/02190000.xhp\" name=\"Edit - Delete Manual Break\">Edit - Delete Manual Break</link> to remove breaks created manually."
msgstr ""
-#: 04060116.xhp
+#: 04010100.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3152944\n"
-"187\n"
+"04010100.xhp\n"
+"tit\n"
"help.text"
-msgid "Force"
-msgstr ""
+msgid "Row Break"
+msgstr "~Thyerja e Rreshtit"
-#: 04060116.xhp
+#: 04010100.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3155582\n"
-"188\n"
+"04010100.xhp\n"
+"bm_id3153821\n"
"help.text"
-msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
+msgid "<bookmark_value>sheets; inserting row breaks</bookmark_value><bookmark_value>row breaks; inserting</bookmark_value><bookmark_value>inserting; manual row breaks</bookmark_value><bookmark_value>manual row breaks</bookmark_value>"
msgstr ""
-#: 04060116.xhp
+#: 04010100.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3153686\n"
-"189\n"
+"04010100.xhp\n"
+"hd_id3153821\n"
+"1\n"
"help.text"
-msgid "Energy"
+msgid "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Row Break</link>"
msgstr ""
-#: 04060116.xhp
+#: 04010100.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3153386\n"
-"190\n"
+"04010100.xhp\n"
+"par_id3149656\n"
+"2\n"
"help.text"
-msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
+msgid "<ahelp hid=\".uno:InsertRowBreak\">Inserts a row break (horizontal page break) above the selected cell.</ahelp>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154100\n"
-"191\n"
-"help.text"
-msgid "Power"
-msgstr "Fuqi"
-
-#: 04060116.xhp
+#: 04010100.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149915\n"
-"192\n"
+"04010100.xhp\n"
+"par_id3156422\n"
+"3\n"
"help.text"
-msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
+msgid "The manual row break is indicated by a dark blue horizontal line."
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3148988\n"
-"193\n"
-"help.text"
-msgid "Field strength"
-msgstr "Emri i fushës"
-
-#: 04060116.xhp
+#: 04010200.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3148616\n"
-"194\n"
+"04010200.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>T</emph>, <emph>ga</emph>"
-msgstr ""
+msgid "Column Break"
+msgstr "Thyerje e kolonës"
-#: 04060116.xhp
+#: 04010200.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3151120\n"
-"195\n"
+"04010200.xhp\n"
+"bm_id3155923\n"
"help.text"
-msgid "Temperature"
+msgid "<bookmark_value>spreadsheets; inserting column breaks</bookmark_value><bookmark_value>column breaks; inserting</bookmark_value><bookmark_value>inserting; manual column breaks</bookmark_value><bookmark_value>manual column breaks</bookmark_value>"
msgstr ""
-#: 04060116.xhp
+#: 04010200.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3148659\n"
-"196\n"
+"04010200.xhp\n"
+"hd_id3155923\n"
+"1\n"
"help.text"
-msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
+msgid "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Column Break</link>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154610\n"
-"197\n"
-"help.text"
-msgid "Volume"
-msgstr "Volumi"
-
-#: 04060116.xhp
+#: 04010200.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149423\n"
-"198\n"
+"04010200.xhp\n"
+"par_id3150447\n"
+"2\n"
"help.text"
-msgid "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
+msgid "<ahelp hid=\".uno:InsertColumnBreak\">Inserts a column break (vertical page break) to the left of the active cell.</ahelp>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3149244\n"
-"199\n"
-"help.text"
-msgid "Area"
-msgstr "Hapësira"
-
-#: 04060116.xhp
+#: 04010200.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3150425\n"
-"200\n"
+"04010200.xhp\n"
+"par_id3145171\n"
+"3\n"
"help.text"
-msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
+msgid "The manual column break is indicated by a dark blue vertical line."
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3150629\n"
-"201\n"
-"help.text"
-msgid "Speed"
-msgstr "Shpejtësia e lavjerrësit"
-
-#: 04060116.xhp
+#: 04020000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3159246\n"
-"202\n"
+"04020000.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
-msgstr ""
+msgid "Insert Cells"
+msgstr "Futi Qelitë"
-#: 04060116.xhp
+#: 04020000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3150789\n"
-"201\n"
+"04020000.xhp\n"
+"bm_id3156023\n"
"help.text"
-msgid "Information"
+msgid "<bookmark_value>spreadsheets; inserting cells</bookmark_value><bookmark_value>cells; inserting</bookmark_value><bookmark_value>inserting; cells</bookmark_value>"
msgstr ""
-#: 04060116.xhp
+#: 04020000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3159899\n"
-"202\n"
+"04020000.xhp\n"
+"hd_id3156023\n"
+"1\n"
"help.text"
-msgid "<emph>bit</emph>, <emph>byte</emph>"
-msgstr ""
+msgid "Insert Cells"
+msgstr "Futi Qelitë"
-#: 04060116.xhp
+#: 04020000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3143277\n"
-"203\n"
+"04020000.xhp\n"
+"par_id3150542\n"
+"2\n"
"help.text"
-msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
+msgid "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">Opens the<emph> Insert Cells </emph>dialog, in which you can insert new cells according to the options that you specify.</ahelp></variable> You can delete cells by choosing <link href=\"text/scalc/01/02160000.xhp\" name=\"Edit - Delete Cells\"><emph>Edit - Delete Cells</emph></link>."
msgstr ""
-#: 04060116.xhp
+#: 04020000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3148422\n"
-"204\n"
+"04020000.xhp\n"
+"hd_id3153768\n"
+"3\n"
"help.text"
-msgid "Prefix"
-msgstr ""
+msgid "Selection"
+msgstr "Selektimet"
-#: 04060116.xhp
+#: 04020000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3148423\n"
+"04020000.xhp\n"
+"par_id3149262\n"
+"4\n"
"help.text"
-msgid "Multiplier"
+msgid "This area contains the options available for inserting cells into a sheet. The cell quantity and position is defined by selecting a cell range in the sheet beforehand."
msgstr ""
-#: 04060116.xhp
+#: 04020000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149490\n"
+"04020000.xhp\n"
+"hd_id3146120\n"
+"5\n"
"help.text"
-msgid "Y (yotta)"
-msgstr ""
+msgid "Shift cells down"
+msgstr "Ndërro qelitë ~teposhtë"
-#: 04060116.xhp
+#: 04020000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149931\n"
+"04020000.xhp\n"
+"par_id3152596\n"
+"6\n"
"help.text"
-msgid "10^24"
+msgid "<variable id=\"zellenuntentext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSDOWN\">Moves the contents of the selected range downward when cells are inserted.</ahelp></variable>"
msgstr ""
-#: 04060116.xhp
+#: 04020000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149491\n"
+"04020000.xhp\n"
+"hd_id3147434\n"
+"7\n"
"help.text"
-msgid "Z (zetta)"
-msgstr ""
+msgid "Shift cells right"
+msgstr "Ndërro qelitë ~djathtas"
-#: 04060116.xhp
+#: 04020000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149932\n"
+"04020000.xhp\n"
+"par_id3144764\n"
+"8\n"
"help.text"
-msgid "10^21"
+msgid "<variable id=\"zellenrechtstext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSRIGHT\">Moves the contents of the selected range to the right when cells are inserted.</ahelp></variable>"
msgstr ""
-#: 04060116.xhp
+#: 04020000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149492\n"
+"04020000.xhp\n"
+"hd_id3153877\n"
+"9\n"
"help.text"
-msgid "E (exa)"
-msgstr ""
+msgid "Entire row"
+msgstr "Fshiej tërë rreshtin(-at)"
-#: 04060116.xhp
+#: 04020000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149933\n"
+"04020000.xhp\n"
+"par_id3155417\n"
+"10\n"
"help.text"
-msgid "10^18"
+msgid "<variable id=\"zeilenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSROWS\">Inserts an entire row. The position of the row is determined by the selection on the sheet.</ahelp></variable> The number of rows inserted depends on how many rows are selected. The contents of the original rows are moved downward."
msgstr ""
-#: 04060116.xhp
+#: 04020000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149493\n"
+"04020000.xhp\n"
+"hd_id3146971\n"
+"11\n"
"help.text"
-msgid "P (peta)"
-msgstr ""
+msgid "Entire column"
+msgstr "Tërë ~shtylla"
-#: 04060116.xhp
+#: 04020000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149934\n"
+"04020000.xhp\n"
+"par_id3155068\n"
+"12\n"
"help.text"
-msgid "10^15"
+msgid "<variable id=\"spaltenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSCOLS\">Inserts an entire column. The number of columns to be inserted is determined by the selected number of columns.</ahelp></variable> The contents of the original columns are shifted to the right."
msgstr ""
-#: 04060116.xhp
+#: 04030000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149494\n"
+"04030000.xhp\n"
+"tit\n"
"help.text"
-msgid "T (tera)"
-msgstr ""
+msgid "Rows"
+msgstr "Rreshtat"
-#: 04060116.xhp
+#: 04030000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149935\n"
+"04030000.xhp\n"
+"bm_id3150541\n"
"help.text"
-msgid "10^12"
+msgid "<bookmark_value>spreadsheets; inserting rows</bookmark_value><bookmark_value>rows; inserting</bookmark_value><bookmark_value>inserting; rows</bookmark_value>"
msgstr ""
-#: 04060116.xhp
+#: 04030000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149495\n"
+"04030000.xhp\n"
+"hd_id3150541\n"
+"1\n"
"help.text"
-msgid "G (giga)"
+msgid "<link href=\"text/scalc/01/04030000.xhp\" name=\"Rows\">Rows</link>"
msgstr ""
-#: 04060116.xhp
+#: 04030000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149936\n"
+"04030000.xhp\n"
+"par_id3150767\n"
+"2\n"
"help.text"
-msgid "10^9"
+msgid "<ahelp hid=\".uno:InsertRows\" visibility=\"visible\">Inserts a new row above the active cell.</ahelp> The number of rows inserted correspond to the number of rows selected. The existing rows are moved downward."
msgstr ""
-#: 04060116.xhp
+#: 04040000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149496\n"
+"04040000.xhp\n"
+"tit\n"
"help.text"
-msgid "M (mega)"
-msgstr ""
+msgid "Columns"
+msgstr "Kolonat"
-#: 04060116.xhp
+#: 04040000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149937\n"
+"04040000.xhp\n"
+"bm_id3155628\n"
"help.text"
-msgid "10^6"
+msgid "<bookmark_value>spreadsheets; inserting columns</bookmark_value><bookmark_value>inserting; columns</bookmark_value><bookmark_value>columns; inserting</bookmark_value>"
msgstr ""
-#: 04060116.xhp
+#: 04040000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149497\n"
+"04040000.xhp\n"
+"hd_id3155628\n"
+"1\n"
"help.text"
-msgid "k (kilo)"
+msgid "<link href=\"text/scalc/01/04040000.xhp\" name=\"Columns\">Columns</link>"
msgstr ""
-#: 04060116.xhp
+#: 04040000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149938\n"
+"04040000.xhp\n"
+"par_id3150791\n"
+"2\n"
"help.text"
-msgid "10^3"
+msgid "<ahelp hid=\".uno:InsertColumns\">Inserts a new column to the left of the active cell.</ahelp> The number of columns inserted corresponds to the number of columns selected. The existing columns are moved to the right."
msgstr ""
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149498\n"
+"04050000.xhp\n"
+"tit\n"
"help.text"
-msgid "h (hecto)"
-msgstr ""
+msgid "Insert Sheet"
+msgstr "Fute Fletën"
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149939\n"
+"04050000.xhp\n"
+"bm_id4522232\n"
"help.text"
-msgid "10^2"
-msgstr ""
+msgid "<bookmark_value>sheets;creating</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149499\n"
+"04050000.xhp\n"
+"hd_id3155629\n"
+"1\n"
"help.text"
-msgid "e (deca)"
-msgstr ""
+msgid "Insert Sheet"
+msgstr "Fute Fletën"
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149940\n"
+"04050000.xhp\n"
+"par_id3147264\n"
+"2\n"
"help.text"
-msgid "10^1"
+msgid "<variable id=\"tabelleeinfuegentext\"><ahelp hid=\".uno:Insert\">Defines the options to be used to insert a new sheet.</ahelp> You can create a new sheet, or insert an existing sheet from a file.</variable>"
msgstr ""
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149500\n"
+"04050000.xhp\n"
+"hd_id3154684\n"
+"19\n"
"help.text"
-msgid "d (deci)"
-msgstr ""
+msgid "Position"
+msgstr "Pozicion"
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3143940\n"
+"04050000.xhp\n"
+"par_id3156281\n"
+"20\n"
"help.text"
-msgid "10^-1"
+msgid "Specifies where the new sheet is to be inserted into your document."
msgstr ""
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149501\n"
+"04050000.xhp\n"
+"hd_id3154123\n"
+"21\n"
"help.text"
-msgid "c (centi)"
-msgstr ""
+msgid "Before current sheet"
+msgstr "P~ara fletës aktuale"
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149941\n"
+"04050000.xhp\n"
+"par_id3145787\n"
+"22\n"
"help.text"
-msgid "10^-2"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/before\">Inserts a new sheet directly before the current sheet.</ahelp>"
msgstr ""
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149502\n"
+"04050000.xhp\n"
+"hd_id3155414\n"
+"23\n"
"help.text"
-msgid "m (milli)"
-msgstr ""
+msgid "After current sheet"
+msgstr "~Pas fletës aktuale"
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149942\n"
+"04050000.xhp\n"
+"par_id3145271\n"
+"24\n"
"help.text"
-msgid "10^-3"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/after\">Inserts a new sheet directly after the current sheet.</ahelp>"
msgstr ""
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149503\n"
+"04050000.xhp\n"
+"hd_id3147428\n"
+"25\n"
"help.text"
-msgid "u (micro)"
-msgstr ""
+msgid "Sheet"
+msgstr "Krijo"
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149943\n"
+"04050000.xhp\n"
+"par_id3154012\n"
+"26\n"
"help.text"
-msgid "10^-6"
+msgid "Specifies whether a new sheet or an existing sheet is inserted into the document."
msgstr ""
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149504\n"
+"04050000.xhp\n"
+"hd_id3147350\n"
+"3\n"
"help.text"
-msgid "n (nano)"
-msgstr ""
+msgid "New sheet"
+msgstr "Krijo"
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149944\n"
+"04050000.xhp\n"
+"par_id3149262\n"
+"4\n"
"help.text"
-msgid "10^-9"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/new\">Creates a new sheet. Enter a sheet name in the <emph>Name</emph> field. Allowed characters are letters, numbers, spaces, and the underline character.</ahelp>"
msgstr ""
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149505\n"
+"04050000.xhp\n"
+"hd_id3155418\n"
+"27\n"
"help.text"
-msgid "p (pico)"
+msgid "No. of sheets"
msgstr ""
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149945\n"
+"04050000.xhp\n"
+"par_id3148457\n"
+"28\n"
"help.text"
-msgid "10^-12"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/countnf\">Specifies the number of sheets to be created.</ahelp>"
msgstr ""
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149506\n"
+"04050000.xhp\n"
+"hd_id3149379\n"
+"7\n"
"help.text"
-msgid "f (femto)"
-msgstr ""
+msgid "Name"
+msgstr "Emri"
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149946\n"
+"04050000.xhp\n"
+"par_id3150718\n"
+"8\n"
"help.text"
-msgid "10^-15"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/nameed\">Specifies the name of the new sheet.</ahelp>"
msgstr ""
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149507\n"
+"04050000.xhp\n"
+"hd_id3155066\n"
+"9\n"
"help.text"
-msgid "a (atto)"
-msgstr ""
+msgid "From File"
+msgstr "Nga fajli..."
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149947\n"
+"04050000.xhp\n"
+"par_id3153714\n"
+"10\n"
"help.text"
-msgid "10^-18"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/fromfile\">Inserts a sheet from an existing file into the current document.</ahelp>"
msgstr ""
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149508\n"
+"04050000.xhp\n"
+"hd_id3149020\n"
+"15\n"
"help.text"
-msgid "z (zepto)"
-msgstr ""
+msgid "Browse"
+msgstr "Shfleto..."
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149948\n"
+"04050000.xhp\n"
+"par_id3159267\n"
+"16\n"
"help.text"
-msgid "10^-21"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/browse\">Opens a dialog for selecting a file.</ahelp>"
msgstr ""
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149509\n"
+"04050000.xhp\n"
+"hd_id3149255\n"
+"29\n"
"help.text"
-msgid "y (yocto)"
-msgstr ""
+msgid "Available Sheets"
+msgstr "Selekto Fletët"
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3149949\n"
+"04050000.xhp\n"
+"par_id3155336\n"
+"30\n"
"help.text"
-msgid "10^-24"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/tables\">If you selected a file by using the <emph>Browse</emph> button, the sheets contained in it are displayed in the list box. The file path is displayed below this box. Select the sheet to be inserted from the list box.</ahelp>"
msgstr ""
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903061174\n"
+"04050000.xhp\n"
+"hd_id3145791\n"
+"17\n"
"help.text"
-msgid "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
-msgstr ""
+msgid "Link"
+msgstr "Link"
-#: 04060116.xhp
+#: 04050000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090966\n"
+"04050000.xhp\n"
+"par_id3152580\n"
+"18\n"
"help.text"
-msgid "ki kibi 1024"
+msgid "<ahelp hid=\"modules/scalc/ui/insertsheet/link\">Select to insert the sheet as a link instead as a copy. The links can be updated to show the current contents.</ahelp>"
msgstr ""
-#: 04060116.xhp
+#: 04050100.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090958\n"
+"04050100.xhp\n"
+"tit\n"
"help.text"
-msgid "Mi mebi 1048576"
-msgstr ""
+msgid "Sheet from file"
+msgstr "Fle~të nga fajlli..."
-#: 04060116.xhp
+#: 04050100.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090936\n"
+"04050100.xhp\n"
+"par_idN105C1\n"
"help.text"
-msgid "Gi gibi 1073741824"
+msgid "<link href=\"text/scalc/01/04050100.xhp\">Sheet from file</link>"
msgstr ""
-#: 04060116.xhp
+#: 04050100.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090975\n"
+"04050100.xhp\n"
+"par_idN105D1\n"
"help.text"
-msgid "Ti tebi 1099511627776"
+msgid "<ahelp hid=\"26275\">Inserts a sheet from a different spreadsheet file.</ahelp>"
msgstr ""
-#: 04060116.xhp
+#: 04050100.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903090930\n"
+"04050100.xhp\n"
+"par_idN105F7\n"
"help.text"
-msgid "Pi pebi 1125899906842620"
+msgid "Use the <link href=\"text/shared/01/01020000.xhp\">File - Open</link> dialog to locate the spreadsheet."
msgstr ""
-#: 04060116.xhp
+#: 04050100.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091070\n"
+"04050100.xhp\n"
+"par_idN10609\n"
"help.text"
-msgid "Ei exbi 1152921504606850000"
+msgid "In the <link href=\"text/scalc/01/04050000.xhp\">Insert Sheet</link> dialog, select the sheet that you want to insert."
msgstr ""
-#: 04060116.xhp
+#: 04060000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091097\n"
+"04060000.xhp\n"
+"tit\n"
"help.text"
-msgid "Zi zebi 1180591620717410000000"
-msgstr ""
+msgid "Function Wizard"
+msgstr "Magjistari i formës..."
-#: 04060116.xhp
+#: 04060000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id0908200903091010\n"
+"04060000.xhp\n"
+"bm_id3147426\n"
"help.text"
-msgid "Yi yobi 1208925819614630000000000"
+msgid "<bookmark_value>inserting functions; Function Wizard</bookmark_value><bookmark_value>functions;Function Wizard</bookmark_value><bookmark_value>wizards; functions</bookmark_value>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3146125\n"
-"209\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
+#: 04060000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3153695\n"
-"210\n"
+"04060000.xhp\n"
+"hd_id3147426\n"
+"1\n"
"help.text"
-msgid "CONVERT_ADD(Number; \"FromUnit\"; \"ToUnit\")"
+msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3147522\n"
-"211\n"
-"help.text"
-msgid "<emph>Number</emph> is the number to be converted."
-msgstr "Numri binar qw do tw shndwrrohet (si tekst)"
-
-#: 04060116.xhp
+#: 04060000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3154472\n"
-"212\n"
+"04060000.xhp\n"
+"par_id3145271\n"
+"2\n"
"help.text"
-msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
+msgid "<variable id=\"funktionsautopilottext\"><ahelp hid=\".uno:FunctionDialog\">Opens the <emph>Function Wizard</emph>, which helps you to interactively create formulas.</ahelp></variable> Before you start the Wizard, select a cell or a range of cells from the current sheet, in order to determine the position at which the formula will be inserted."
msgstr ""
-#: 04060116.xhp
+#: 04060000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3153790\n"
-"213\n"
+"04060000.xhp\n"
+"par_id8007446\n"
"help.text"
-msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
+msgid "You can download the complete ODFF (OpenDocument Format Formula) specification from the <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link> web site."
msgstr ""
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3156270\n"
-"214\n"
-"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
-
-#: 04060116.xhp
+#: 04060000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3156336\n"
-"215\n"
+"04060000.xhp\n"
+"par_id3159153\n"
+"60\n"
"help.text"
-msgid "<item type=\"input\">=CONVERT_ADD(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
+msgid "The <emph>Function Wizard</emph> has two tabs: <emph>Functions</emph> is used to create formulas, and <emph>Structure</emph> is used to check the formula build."
msgstr ""
-#: 04060116.xhp
+#: 04060000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3154834\n"
-"216\n"
+"04060000.xhp\n"
+"hd_id3154490\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=CONVERT_ADD(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
-msgstr ""
+msgid "Functions Tab"
+msgstr "Ndalim i tabit"
-#: 04060116.xhp
+#: 04060000.xhp
msgctxt ""
-"04060116.xhp\n"
-"bm_id3147096\n"
+"04060000.xhp\n"
+"par_id3149378\n"
+"5\n"
"help.text"
-msgid "<bookmark_value>FACTDOUBLE function</bookmark_value> <bookmark_value>factorials;numbers with increments of two</bookmark_value>"
+msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
msgstr ""
-#: 04060116.xhp
+#: 04060000.xhp
msgctxt ""
-"04060116.xhp\n"
-"hd_id3147096\n"
+"04060000.xhp\n"
+"hd_id3154730\n"
"36\n"
"help.text"
-msgid "FACTDOUBLE"
-msgstr ""
+msgid "Category"
+msgstr "Kategori"
-#: 04060116.xhp
+#: 04060000.xhp
msgctxt ""
-"04060116.xhp\n"
-"par_id3151309\n"
+"04060000.xhp\n"
+"par_id3153417\n"
"37\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Returns the double factorial of a number.</ahelp>"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154666\n"
-"38\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3155121\n"
-"39\n"
-"help.text"
-msgid "FACTDOUBLE(Number)"
-msgstr "Numri i faqes"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3158440\n"
-"40\n"
-"help.text"
-msgid "Returns <emph>Number</emph> <emph>!!</emph>, the double factorial of <emph>Number</emph>, where <emph>Number</emph> is an integer greater than or equal to zero."
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id2480849\n"
-"help.text"
-msgid "For even numbers FACTDOUBLE(n) returns:"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id4181951\n"
-"help.text"
-msgid "2*4*6*8* ... *n"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id2927335\n"
-"help.text"
-msgid "For odd numbers FACTDOUBLE(n) returns:"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id2107303\n"
-"help.text"
-msgid "1*3*5*7* ... *n"
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id4071779\n"
-"help.text"
-msgid "FACTDOUBLE(0) returns 1 by definition."
-msgstr ""
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"hd_id3154622\n"
-"42\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id7844477\n"
-"help.text"
-msgid "<item type=\"input\">=FACTDOUBLE(5)</item> returns 15."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id3154116\n"
-"43\n"
-"help.text"
-msgid "<item type=\"input\">=FACTDOUBLE(6)</item> returns 48."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060116.xhp
-msgctxt ""
-"04060116.xhp\n"
-"par_id6478469\n"
-"help.text"
-msgid "<item type=\"input\">=FACTDOUBLE(0)</item> returns 1."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"tit\n"
-"help.text"
-msgid "Options"
-msgstr "Opcionet"
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"hd_id2794274\n"
-"help.text"
-msgid "Options"
-msgstr "Opcionet"
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id6776940\n"
-"help.text"
-msgid "The Options dialog for the <link href=\"text/scalc/01/solver.xhp\">Solver</link> is used to set some options."
-msgstr ""
-
-#: solver_options.xhp
-msgctxt ""
-"solver_options.xhp\n"
-"par_id393993\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a solver engine. The listbox is disabled if only one solver engine is installed. Solver engines can be installed as extensions.</ahelp>"
+msgid "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below.</ahelp> Select \"All\" to view all functions in alphabetical order, irrespective of category. \"Last Used\" lists the functions you have most recently used. </variable>"
msgstr ""
-#: solver_options.xhp
+#: 04060000.xhp
msgctxt ""
-"solver_options.xhp\n"
-"par_id5871761\n"
+"04060000.xhp\n"
+"hd_id3150749\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Configure the current solver.</ahelp>"
-msgstr ""
+msgid "Function"
+msgstr "Funksioni"
-#: solver_options.xhp
+#: 04060000.xhp
msgctxt ""
-"solver_options.xhp\n"
-"par_id6531266\n"
+"04060000.xhp\n"
+"par_id3155445\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">If the current entry in the Settings listbox allows to edit a value, you can click the Edit button. A dialog opens where you can change the value.</ahelp>"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_FUNCTION\">Displays the functions found under the selected category. Double-click to select a function.</ahelp> A single-click displays a short function description."
msgstr ""
-#: solver_options.xhp
+#: 04060000.xhp
msgctxt ""
-"solver_options.xhp\n"
-"par_id3912778\n"
+"04060000.xhp\n"
+"hd_id3159264\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or change the value.</ahelp>"
-msgstr ""
+msgid "Array"
+msgstr "Grup"
-#: solver_options.xhp
+#: 04060000.xhp
msgctxt ""
-"solver_options.xhp\n"
-"par_id3163853\n"
+"04060000.xhp\n"
+"par_id3149566\n"
+"9\n"
"help.text"
-msgid "Use the Options dialog to configure the current solver engine."
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FORMULA:BTN_MATRIX\">Specifies that the selected function is inserted into the selected cell range as an array formula. </ahelp> Array formulas operate on multiple cells. Each cell in the array contains the formula, not as a copy but as a common formula shared by all matrix cells."
msgstr ""
-#: solver_options.xhp
+#: 04060000.xhp
msgctxt ""
-"solver_options.xhp\n"
-"par_id121158\n"
+"04060000.xhp\n"
+"par_id3155959\n"
+"61\n"
"help.text"
-msgid "You can install more solver engines as extensions, if available. Open Tools - Extension Manager and browse to the Extensions web site to search for extensions."
+msgid "The <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter command, which is used to enter and confirm formulas in the sheet. The formula is inserted as a matrix formula indicated by two braces { }."
msgstr ""
-#: solver_options.xhp
+#: 04060000.xhp
msgctxt ""
-"solver_options.xhp\n"
-"par_id3806878\n"
+"04060000.xhp\n"
+"par_id3152993\n"
+"40\n"
"help.text"
-msgid "Select the solver engine to use and to configure from the listbox. The listbox is disabled if onle one solver engine is installed."
+msgid "The maximum size of an array range is 128 by 128 cells."
msgstr ""
-#: solver_options.xhp
+#: 04060000.xhp
msgctxt ""
-"solver_options.xhp\n"
-"par_id130619\n"
+"04060000.xhp\n"
+"hd_id3150367\n"
+"41\n"
"help.text"
-msgid "In the Settings box, check all settings that you want to use for the current goal seeking operation. If the current option offers different values, the Edit button is enabled. Click Edit to open a dialog where you can change the value."
-msgstr ""
+msgid "Argument Input Fields"
+msgstr "Azhuro fushat e hyrjeve"
-#: solver_options.xhp
+#: 04060000.xhp
msgctxt ""
-"solver_options.xhp\n"
-"par_id9999694\n"
+"04060000.xhp\n"
+"par_id3145587\n"
+"15\n"
"help.text"
-msgid "Click OK to accept the changes and to go back to the <link href=\"text/scalc/01/solver.xhp\">Solver</link> dialog."
+msgid "When you double-click a function, the argument input field(s) appear on the right side of the dialog. To select a cell reference as an argument, click directly into the cell, or drag across the required range on the sheet while holding down the mouse button. You can also enter numerical and other values or references directly into the corresponding fields in the dialog. When using <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\">date entries</link>, make sure you use the correct format. Click OK to insert the result into the spreadsheet."
msgstr ""
-#: 05080400.xhp
-msgctxt ""
-"05080400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Add"
-msgstr "Shto"
-
-#: 05080400.xhp
+#: 04060000.xhp
msgctxt ""
-"05080400.xhp\n"
-"hd_id3149457\n"
-"1\n"
+"04060000.xhp\n"
+"hd_id3149408\n"
+"18\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Add</link>"
-msgstr ""
+msgid "Function Result"
+msgstr "Rezultati i funksionit"
-#: 05080400.xhp
+#: 04060000.xhp
msgctxt ""
-"05080400.xhp\n"
-"par_id3156423\n"
-"2\n"
+"04060000.xhp\n"
+"par_id3155809\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\".uno:AddPrintArea\">Adds the current selection to the defined print areas.</ahelp>"
+msgid "As soon you enter arguments in the function, the result is calculated. This preview informs you if the calculation can be carried out with the arguments given. If the arguments result in an error, the corresponding <link href=\"text/scalc/05/02140000.xhp\" name=\"error code\">error code</link> is displayed."
msgstr ""
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Styles and Formatting"
-msgstr "Struktura dhe formatimi"
-
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"bm_id3150447\n"
+"04060000.xhp\n"
+"par_id3148700\n"
+"23\n"
"help.text"
-msgid "<bookmark_value>Stylist, see Styles and Formatting window</bookmark_value> <bookmark_value>Styles and Formatting window</bookmark_value> <bookmark_value>formats; Styles and Formatting window</bookmark_value> <bookmark_value>formatting; Styles and Formatting window</bookmark_value> <bookmark_value>paint can for applying styles</bookmark_value>"
+msgid "The required arguments are indicated by names in bold print."
msgstr ""
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"hd_id3150447\n"
-"1\n"
+"04060000.xhp\n"
+"hd_id3153064\n"
+"22\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
-msgstr ""
+msgid "f(x) (depending on the selected function)"
+msgstr "Shiriti i Funksionit kyçur/çkyçur"
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3147434\n"
-"2\n"
+"04060000.xhp\n"
+"par_id3157980\n"
+"24\n"
"help.text"
-msgid "Use the Styles and Formatting window to assign styles to objects and text sections. You can update Styles, modify existing Styles or create new Styles."
+msgid "<ahelp hid=\"HID_SC_FAP_BTN_FX4\">Allows you to access a subordinate level of the <emph>Function Wizard</emph> in order to nest another function within the function, instead of a value or reference.</ahelp>"
msgstr ""
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3149665\n"
-"30\n"
+"04060000.xhp\n"
+"hd_id3145076\n"
+"25\n"
"help.text"
-msgid "The Styles and Formatting <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link> can remain open while editing the document."
+msgid "Argument/Parameter/Cell Reference (depending on the selected function)"
msgstr ""
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"hd_id3150012\n"
-"36\n"
-"help.text"
-msgid "How to apply a cell style:"
-msgstr "Aplikon një Stil në qelinë e formulës."
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3159155\n"
-"37\n"
-"help.text"
-msgid "Select the cell or cell range."
-msgstr "Referenca në një qeli ose një interval."
-
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3145749\n"
-"38\n"
+"04060000.xhp\n"
+"par_id3159097\n"
+"26\n"
"help.text"
-msgid "Double-click the style in the Styles and Formatting window."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">The number of visible text fields depends on the function. Enter arguments either directly into the argument fields or by clicking a cell in the table.</ahelp>"
msgstr ""
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"hd_id3153877\n"
-"4\n"
-"help.text"
-msgid "Cell Styles"
-msgstr "Stilet e Qelive"
-
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3145801\n"
-"6\n"
+"04060000.xhp\n"
+"hd_id3154957\n"
+"51\n"
"help.text"
-msgid "<ahelp hid=\".uno:ParaStyle\">Displays the list of the available Cell Styles for <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"indirect cell formatting\">indirect cell formatting</link>.</ahelp>"
-msgstr ""
+msgid "Result"
+msgstr "Rezultat"
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3150751\n"
+"04060000.xhp\n"
+"par_id3150211\n"
+"52\n"
"help.text"
-msgid "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153714\">Icon</alt></image>"
+msgid "Displays the calculation result or an error message."
msgstr ""
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3154255\n"
-"5\n"
-"help.text"
-msgid "Cell Styles"
-msgstr "Stilet e Qelive"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"hd_id3153963\n"
-"7\n"
-"help.text"
-msgid "Page Styles"
-msgstr "Stilet e faqes"
-
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3147003\n"
-"9\n"
+"04060000.xhp\n"
+"hd_id3151304\n"
+"43\n"
"help.text"
-msgid "<ahelp hid=\".uno:PageStyle\">Displays the Page Styles available for indirect page formatting.</ahelp>"
-msgstr ""
+msgid "Formula"
+msgstr "Formula"
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3159100\n"
+"04060000.xhp\n"
+"par_id3149898\n"
+"44\n"
"help.text"
-msgid "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149814\">Icon</alt></image>"
+msgid "<ahelp hid=\"HID_SC_FAP_FORMULA\">Displays the created formula. Type your entries directly, or create the formula using the wizard.</ahelp>"
msgstr ""
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3150361\n"
-"8\n"
-"help.text"
-msgid "Page Styles"
-msgstr "Stilet e faqes"
-
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"hd_id3150202\n"
-"10\n"
+"04060000.xhp\n"
+"hd_id3153249\n"
+"45\n"
"help.text"
-msgid "Fill Format Mode"
-msgstr "Plotëso modin për formatim"
+msgid "Back"
+msgstr "Prapa"
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3155531\n"
-"12\n"
+"04060000.xhp\n"
+"par_id3152869\n"
+"53\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\">Turns the Fill Format mode on and off. Use the paint can to assign the Style selected in the Styles and Formatting window.</ahelp>"
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">Moves the focus back through the formula components, marking them as it does so.</ahelp>"
msgstr ""
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3155087\n"
+"04060000.xhp\n"
+"par_id3146966\n"
+"56\n"
"help.text"
-msgid "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153068\">Icon</alt></image>"
+msgid "To select a single function from a complex formula consisting of several functions, double-click the function in the formula window."
msgstr ""
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3156198\n"
-"11\n"
-"help.text"
-msgid "Fill Format Mode"
-msgstr "Plotëso modin për formatim"
-
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"hd_id3148870\n"
-"13\n"
+"04060000.xhp\n"
+"hd_id3155762\n"
+"54\n"
"help.text"
-msgid "How to apply a new style with the paint can:"
-msgstr ""
+msgid "Next"
+msgstr "I ardhshmi"
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3145078\n"
-"27\n"
+"04060000.xhp\n"
+"par_id3149316\n"
+"55\n"
"help.text"
-msgid "Select the desired style from the Styles and Formatting window."
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">Moves forward through the formula components in the formula window.</ahelp> This button can also be used to assign functions to the formula. If you select a function and click the <emph>Next </emph>button, the selection appears in the formula window."
msgstr ""
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3159098\n"
-"28\n"
+"04060000.xhp\n"
+"par_id3159262\n"
+"57\n"
"help.text"
-msgid "Click the <emph>Fill Format Mode</emph> icon."
+msgid "Double-click a function in the selection window to transfer it to the formula window."
msgstr ""
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3148609\n"
-"15\n"
+"04060000.xhp\n"
+"hd_id3148745\n"
+"58\n"
"help.text"
-msgid "Click a cell to format it, or drag your mouse over a certain range to format the whole range. Repeat this action for other cells and ranges."
-msgstr ""
+msgid "Cancel"
+msgstr "Anulo"
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3149438\n"
-"29\n"
+"04060000.xhp\n"
+"par_id3147402\n"
+"59\n"
"help.text"
-msgid "Click the <emph>Fill Format Mode</emph> again to exit this mode."
+msgid "Closes the dialog without implementing the formula."
msgstr ""
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"hd_id3153975\n"
-"16\n"
+"04060000.xhp\n"
+"hd_id3150534\n"
+"32\n"
"help.text"
-msgid "New Style from Selection"
-msgstr "Stili i ri nga përzgjedhja"
+msgid "OK"
+msgstr "OK"
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3149499\n"
-"18\n"
+"04060000.xhp\n"
+"par_id3153029\n"
+"33\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\">Creates a new style based on the formatting of a selected object.</ahelp> Assign a name for the style in the <link href=\"text/shared/01/05140100.xhp\" name=\"Create Style\">Create Style</link> dialog."
+msgid "Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells."
msgstr ""
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3150050\n"
+"04060000.xhp\n"
+"par_id3156400\n"
+"34\n"
"help.text"
-msgid "<image id=\"img_id3154649\" src=\"cmd/sc_stylenewbyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154649\">Icon</alt></image>"
+msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
msgstr ""
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3146963\n"
-"17\n"
-"help.text"
-msgid "New Style from Selection"
-msgstr "Stili i ri nga përzgjedhja"
-
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"hd_id3153813\n"
-"19\n"
+"04060000.xhp\n"
+"hd_id3147610\n"
+"47\n"
"help.text"
-msgid "Update Style"
-msgstr "Stili i azhurimit"
+msgid "Structure tab"
+msgstr "Ndalim i tabit"
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3154707\n"
-"21\n"
+"04060000.xhp\n"
+"par_id3153122\n"
+"48\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles and Formatting window with the current formatting of the selected object.</ahelp>"
+msgid "On this page, you can view the structure of the function."
msgstr ""
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3145118\n"
+"04060000.xhp\n"
+"par_id3149350\n"
+"4\n"
"help.text"
-msgid "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155754\">Icon</alt></image>"
+msgid "If you start the <emph>Function Wizard</emph> while the cell cursor is positioned in a cell that already contains a function, the <emph>Structure</emph> tab is opened and shows the composition of the current formula."
msgstr ""
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_id3147501\n"
-"20\n"
-"help.text"
-msgid "Update Style"
-msgstr "Stili i azhurimit"
-
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"par_idN109BE\n"
-"help.text"
-msgid "Style List"
-msgstr "Kryerresht i listës"
-
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_idN109C2\n"
+"04060000.xhp\n"
+"hd_id3149014\n"
+"49\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
-msgstr ""
+msgid "Structure"
+msgstr "Strukturë"
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_idN109D1\n"
+"04060000.xhp\n"
+"par_id3150481\n"
+"50\n"
"help.text"
-msgid "In the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
+msgid "<ahelp hid=\"HID_SC_FAP_STRUCT\">Displays a hierarchical representation of the current function.</ahelp> You can hide or show the arguments by a click on the plus or minus sign in front."
msgstr ""
-#: 05100000.xhp
-msgctxt ""
-"05100000.xhp\n"
-"hd_id3149053\n"
-"24\n"
-"help.text"
-msgid "Style Groups"
-msgstr "Grupe volumi:"
-
-#: 05100000.xhp
+#: 04060000.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3147299\n"
-"25\n"
+"04060000.xhp\n"
+"par_id3148886\n"
+"63\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
+msgid "Blue dots denote correctly entered arguments. Red dots indicate incorrect data types. For example: if the SUM function has one argument entered as text, this is highlighted in red as SUM only permits number entries."
msgstr ""
-#: 04070300.xhp
+#: 04060100.xhp
msgctxt ""
-"04070300.xhp\n"
+"04060100.xhp\n"
"tit\n"
"help.text"
-msgid "Creating Names"
-msgstr "Emrat e Objekteve"
+msgid "Functions by Category"
+msgstr "Ketegoria dhe Numri"
-#: 04070300.xhp
+#: 04060100.xhp
msgctxt ""
-"04070300.xhp\n"
-"bm_id3147264\n"
+"04060100.xhp\n"
+"bm_id3148575\n"
"help.text"
-msgid "<bookmark_value>cell ranges;creating names automatically</bookmark_value><bookmark_value>names; for cell ranges</bookmark_value>"
+msgid "<bookmark_value>functions;listed by category</bookmark_value> <bookmark_value>categories of functions</bookmark_value> <bookmark_value>list of functions</bookmark_value>"
msgstr ""
-#: 04070300.xhp
+#: 04060100.xhp
msgctxt ""
-"04070300.xhp\n"
-"hd_id3147264\n"
-"1\n"
+"04060100.xhp\n"
+"hd_id3154944\n"
+"16\n"
"help.text"
-msgid "Creating Names"
-msgstr "Emrat e Objekteve"
+msgid "Functions by Category"
+msgstr "Ketegoria dhe Numri"
-#: 04070300.xhp
+#: 04060100.xhp
msgctxt ""
-"04070300.xhp\n"
-"par_id3153969\n"
+"04060100.xhp\n"
+"par_id3149378\n"
"2\n"
"help.text"
-msgid "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">Allows you to automatically name multiple cell ranges.</ahelp></variable>"
+msgid "This section describes the functions of $[officename] Calc. The various functions are divided into categories in the Function Wizard."
msgstr ""
-#: 04070300.xhp
+#: 04060100.xhp
msgctxt ""
-"04070300.xhp\n"
-"par_id3156280\n"
-"13\n"
+"04060100.xhp\n"
+"par_id0120200910234570\n"
"help.text"
-msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgid "You can find detailed explanations, illustrations, and examples of Calc functions <link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">in the LibreOffice WikiHelp</link>."
msgstr ""
-#: 04070300.xhp
+#: 04060100.xhp
msgctxt ""
-"04070300.xhp\n"
-"hd_id3151116\n"
+"04060100.xhp\n"
+"hd_id3146972\n"
"3\n"
"help.text"
-msgid "Create names from"
-msgstr "Krijo emra nga"
+msgid "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\">Database</link>"
+msgstr ""
-#: 04070300.xhp
+#: 04060100.xhp
msgctxt ""
-"04070300.xhp\n"
-"par_id3152597\n"
+"04060100.xhp\n"
+"hd_id3155443\n"
"4\n"
"help.text"
-msgid "Defines which part of the spreadsheet is to be used for creating the name."
+msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\">Date & Time</link>"
msgstr ""
-#: 04070300.xhp
+#: 04060100.xhp
msgctxt ""
-"04070300.xhp\n"
-"hd_id3153729\n"
+"04060100.xhp\n"
+"hd_id3147339\n"
"5\n"
"help.text"
-msgid "Top row"
-msgstr "~Rreshti më i lartë"
+msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\">Financial</link>"
+msgstr ""
-#: 04070300.xhp
+#: 04060100.xhp
msgctxt ""
-"04070300.xhp\n"
-"par_id3149263\n"
+"04060100.xhp\n"
+"hd_id3153963\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_TOP\">Creates the range names from the header row of the selected range.</ahelp> Each column receives a separated name and cell reference."
+msgid "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\">Information</link>"
msgstr ""
-#: 04070300.xhp
+#: 04060100.xhp
msgctxt ""
-"04070300.xhp\n"
-"hd_id3146984\n"
+"04060100.xhp\n"
+"hd_id3146316\n"
"7\n"
"help.text"
-msgid "Left Column"
-msgstr "~Shtylla e majtë"
+msgid "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\">Logical</link>"
+msgstr ""
-#: 04070300.xhp
+#: 04060100.xhp
msgctxt ""
-"04070300.xhp\n"
-"par_id3153190\n"
+"04060100.xhp\n"
+"hd_id3148485\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_LEFT\">Creates the range names from the entries in the first column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
+msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\">Mathematical</link>"
msgstr ""
-#: 04070300.xhp
+#: 04060100.xhp
msgctxt ""
-"04070300.xhp\n"
-"hd_id3156284\n"
+"04060100.xhp\n"
+"hd_id3150363\n"
"9\n"
"help.text"
-msgid "Bottom row"
-msgstr "~Rreshti i fundit"
+msgid "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\">Array</link>"
+msgstr ""
-#: 04070300.xhp
+#: 04060100.xhp
msgctxt ""
-"04070300.xhp\n"
-"par_id3147124\n"
+"04060100.xhp\n"
+"hd_id3150208\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_BOTTOM\">Creates the range names from the entries in the last row of the selected sheet range.</ahelp> Each column receives a separated name and cell reference."
+msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\">Statistical</link>"
msgstr ""
-#: 04070300.xhp
+#: 04060100.xhp
msgctxt ""
-"04070300.xhp\n"
-"hd_id3154731\n"
+"04060100.xhp\n"
+"hd_id3166428\n"
"11\n"
"help.text"
-msgid "Right Column"
-msgstr "~Shtylla e djathtë"
-
-#: 04070300.xhp
-msgctxt ""
-"04070300.xhp\n"
-"par_id3153158\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES_CREATE:BTN_RIGHT\">Creates the range names from the entries in the last column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
-msgstr ""
-
-#: 02170000.xhp
-#, fuzzy
-msgctxt ""
-"02170000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Delete Sheet"
-msgstr "Fshij Fletën"
-
-#: 02170000.xhp
-msgctxt ""
-"02170000.xhp\n"
-"bm_id3156424\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; deleting</bookmark_value><bookmark_value>sheets; deleting</bookmark_value><bookmark_value>deleting; spreadsheets</bookmark_value>"
+msgid "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\">Spreadsheet</link>"
msgstr ""
-#: 02170000.xhp
-#, fuzzy
-msgctxt ""
-"02170000.xhp\n"
-"hd_id3156424\n"
-"1\n"
-"help.text"
-msgid "Delete Sheet"
-msgstr "Fshij Fletën"
-
-#: 02170000.xhp
+#: 04060100.xhp
msgctxt ""
-"02170000.xhp\n"
-"par_id3153193\n"
-"2\n"
+"04060100.xhp\n"
+"hd_id3145585\n"
+"12\n"
"help.text"
-msgid "<variable id=\"tabelleloeschentext\"><ahelp hid=\".uno:Remove\">Deletes the current sheet after query confirmation.</ahelp></variable>"
+msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Text</link>"
msgstr ""
-#: 02170000.xhp
+#: 04060100.xhp
msgctxt ""
-"02170000.xhp\n"
-"par_id3145801\n"
-"7\n"
+"04060100.xhp\n"
+"hd_id3156449\n"
+"13\n"
"help.text"
-msgid "You cannot delete a sheet while <emph>Edit - Changes - Record</emph> is activated."
+msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in\">Add-in</link>"
msgstr ""
-#: 02170000.xhp
-msgctxt ""
-"02170000.xhp\n"
-"hd_id3147124\n"
-"3\n"
-"help.text"
-msgid "Yes"
-msgstr "Po"
-
-#: 02170000.xhp
+#: 04060100.xhp
msgctxt ""
-"02170000.xhp\n"
-"par_id3154943\n"
-"4\n"
+"04060100.xhp\n"
+"par_id3150715\n"
+"14\n"
"help.text"
-msgid "Deletes the current sheet."
+msgid "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operators</link> are also available."
msgstr ""
-#: 02170000.xhp
-msgctxt ""
-"02170000.xhp\n"
-"hd_id3149412\n"
-"5\n"
-"help.text"
-msgid "No"
-msgstr "No"
-
-#: 02170000.xhp
+#: 04060100.xhp
msgctxt ""
-"02170000.xhp\n"
-"par_id3154510\n"
-"6\n"
+"04060100.xhp\n"
+"par_id0902200809540918\n"
"help.text"
-msgid "Cancels the dialog. No delete is performed."
+msgid "<variable id=\"drking\"><link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">Calc Functions By Category</link> in the LibreOffice WikiHelp</variable>"
msgstr ""
-#: 12050200.xhp
+#: 04060101.xhp
msgctxt ""
-"12050200.xhp\n"
+"04060101.xhp\n"
"tit\n"
"help.text"
-msgid "Options"
-msgstr "Opcionet"
+msgid "Database Functions"
+msgstr "Funksionet statistikore"
-#: 12050200.xhp
+#: 04060101.xhp
msgctxt ""
-"12050200.xhp\n"
-"bm_id3154758\n"
+"04060101.xhp\n"
+"bm_id3148946\n"
"help.text"
-msgid "<bookmark_value>subtotals; sorting options</bookmark_value>"
+msgid "<bookmark_value>Function Wizard; databases</bookmark_value> <bookmark_value>functions; database functions</bookmark_value> <bookmark_value>databases; functions in $[officename] Calc</bookmark_value>"
msgstr ""
-#: 12050200.xhp
+#: 04060101.xhp
msgctxt ""
-"12050200.xhp\n"
-"hd_id3154758\n"
+"04060101.xhp\n"
+"hd_id3148946\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Options</link>"
-msgstr ""
+msgid "Database Functions"
+msgstr "Funksionet statistikore"
-#: 12050200.xhp
+#: 04060101.xhp
msgctxt ""
-"12050200.xhp\n"
-"par_id3154124\n"
+"04060101.xhp\n"
+"par_id3145173\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Specify the settings for calculating and presenting subtotals.</ahelp>"
-msgstr ""
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"hd_id3156422\n"
-"3\n"
-"help.text"
-msgid "Page break between groups"
-msgstr "~Theyrjet e faqeve në mes të grupeve"
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"par_id3147317\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK\">Inserts a new page after each group of subtotaled data.</ahelp>"
-msgstr ""
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"hd_id3146985\n"
-"5\n"
-"help.text"
-msgid "Case sensitive"
-msgstr "I ndjeshëm në madhësinë e shkronjave"
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"par_id3153190\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE\">Recalculates subtotals when you change the case of a data label.</ahelp>"
-msgstr ""
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"hd_id3151119\n"
-"7\n"
-"help.text"
-msgid "Pre-sort area according to groups"
-msgstr "Zona e para~klasifikuar sipas grupeve"
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"par_id3149664\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT\">Sorts the area that you selected in the <emph>Group by</emph> box of the Group tabs according to the columns that you selected.</ahelp>"
-msgstr ""
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"hd_id3153951\n"
-"9\n"
-"help.text"
-msgid "Sort"
-msgstr "Rendit"
-
-#: 12050200.xhp
-#, fuzzy
-msgctxt ""
-"12050200.xhp\n"
-"hd_id3145252\n"
-"11\n"
-"help.text"
-msgid "Include formats"
-msgstr "Përfshij ~formatet"
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"par_id3147125\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS\">Considers formatting attributes when sorting.</ahelp>"
-msgstr ""
-
-#: 12050200.xhp
-#, fuzzy
-msgctxt ""
-"12050200.xhp\n"
-"hd_id3155418\n"
-"13\n"
-"help.text"
-msgid "Custom sort order"
-msgstr "Renditja e klasifikimit e ~zgjedhur sipas dëshirës"
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"par_id3149400\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF\">Uses a custom sorting order that you defined in the Options dialog box at <emph>%PRODUCTNAME Calc - Sort Lists</emph>.</ahelp>"
-msgstr ""
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"hd_id3149121\n"
-"15\n"
-"help.text"
-msgid "Ascending"
-msgstr "Në rritje"
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"par_id3155068\n"
-"16\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING\">Sorts beginning with the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
-msgstr ""
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"hd_id3155443\n"
-"17\n"
-"help.text"
-msgid "Descending"
-msgstr "Në zvogëlim"
-
-#: 12050200.xhp
-msgctxt ""
-"12050200.xhp\n"
-"par_id3153766\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING\">Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"tit\n"
-"help.text"
-msgid "Add-in for Programming in $[officename] Calc"
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"bm_id3151076\n"
-"help.text"
-msgid "<bookmark_value>programming; add-ins</bookmark_value><bookmark_value>shared libraries; programming</bookmark_value><bookmark_value>external DLL functions</bookmark_value><bookmark_value>functions; $[officename] Calc add-in DLL</bookmark_value><bookmark_value>add-ins; for programming</bookmark_value>"
+msgid "<variable id=\"datenbanktext\">This section deals with functions used with data organized as one row of data for one record. </variable>"
msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3151076\n"
-"1\n"
+"04060101.xhp\n"
+"par_id3154016\n"
+"186\n"
"help.text"
-msgid "Add-in for Programming in $[officename] Calc"
+msgid "The Database category may be confused with a database integrated in $[officename]. However, there is no connection between a database in $[officename] and the Database category in $[officename] Calc."
msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147001\n"
-"220\n"
+"04060101.xhp\n"
+"hd_id3150329\n"
+"190\n"
"help.text"
-msgid "The method of extending Calc by Add-Ins that is described in the following is outdated. The interfaces are still valid and supported, to ensure compatibility with existing Add-Ins, but for programming new Add-Ins you should use the new <link href=\"text/shared/guide/integratinguno.xhp\" name=\"API functions\">API functions</link>."
-msgstr ""
+msgid "Example Data:"
+msgstr "Të dhënat për ["
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150361\n"
-"2\n"
+"04060101.xhp\n"
+"par_id3153713\n"
+"191\n"
"help.text"
-msgid "$[officename] Calc can be expanded by Add-Ins, which are external programming modules providing additional functions for working with spreadsheets. These are listed in the <emph>Function Wizard</emph> in the <emph>Add-In</emph> category. If you would like to program an Add-In yourself, you can learn here which functions must be exported by the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>external DLL</defaultinline></switchinline> so that the Add-In can be successfully attached."
+msgid "The following data will be used in some of the function description examples:"
msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149211\n"
+"04060101.xhp\n"
+"par_id3155766\n"
"3\n"
"help.text"
-msgid "$[officename] searches the Add-in folder defined in the configuration for a suitable <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline>. To be recognized by $[officename], the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline> must have certain properties, as explained in the following. This information allows you to program your own Add-In for <emph>Function Wizard</emph> of $[officename] Calc."
+msgid "The range A1:E10 lists the children invited to Joe's birthday party. The following information is given for each entry: column A shows the name, B the grade, then age in years, distance to school in meters and weight in kilograms."
msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3146981\n"
+"04060101.xhp\n"
+"par_id3145232\n"
"4\n"
"help.text"
-msgid "The Add-In Concept"
-msgstr "Gabim: Nuk është gjetur Add-in"
+msgid "A"
+msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3156292\n"
+"04060101.xhp\n"
+"par_id3146316\n"
"5\n"
"help.text"
-msgid "Each Add-In library provides several functions. Some functions are used for administrative purposes. You can choose almost any name for your own functions. However, they must also follow certain rules regarding parameter passing. The exact naming and calling conventions vary for different platforms."
+msgid "B"
msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3152890\n"
+"04060101.xhp\n"
+"par_id3150297\n"
"6\n"
"help.text"
-msgid "Functions of <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>AddIn DLL</defaultinline></switchinline>"
+msgid "C"
msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148837\n"
+"04060101.xhp\n"
+"par_id3150344\n"
"7\n"
"help.text"
-msgid "At a minimum, the administrative functions <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> must exist. Using these, the functions as well as parameter types and return values can be determined. As return values, the Double and String types are supported. As parameters, additionally the cell areas <link href=\"text/scalc/01/04060112.xhp\" name=\"Double Array\">Double Array</link>, <link href=\"text/scalc/01/04060112.xhp\" name=\"String Array\">String Array</link>, and <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\">Cell Array</link> are supported."
+msgid "D"
msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148604\n"
+"04060101.xhp\n"
+"par_id3150785\n"
"8\n"
"help.text"
-msgid "Parameters are passed using references. Therefore, a change of these values is basically possible. However, this is not supported in $[officename] Calc because it does not make sense within spreadsheets."
+msgid "E"
msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150112\n"
+"04060101.xhp\n"
+"par_id3150090\n"
"9\n"
"help.text"
-msgid "Libraries can be reloaded during runtime and their contents can be analyzed by the administrative functions. For each function, information is available about count and type of parameters, internal and external function names and an administrative number."
+msgid "1"
msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155269\n"
+"04060101.xhp\n"
+"par_id3152992\n"
"10\n"
"help.text"
-msgid "The functions are called synchronously and return their results immediately. Real time functions (asynchronous functions) are also possible; however, they are not explained in detail because of their complexity."
-msgstr ""
+msgid "<item type=\"input\">Name</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3145077\n"
+"04060101.xhp\n"
+"par_id3155532\n"
"11\n"
"help.text"
-msgid "General information about the interface"
-msgstr ""
+msgid "<item type=\"input\">Grade</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3146776\n"
+"04060101.xhp\n"
+"par_id3156448\n"
"12\n"
"help.text"
-msgid "The maximum number of parameters in an Add-In function attached to $[officename] Calc is 16: one return value and a maximum of 15 function input parameters."
-msgstr ""
+msgid "<item type=\"input\">Age</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149899\n"
+"04060101.xhp\n"
+"par_id3154486\n"
"13\n"
"help.text"
-msgid "The data types are defined as follows:"
-msgstr ""
+msgid "<item type=\"input\">Distance to School</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151302\n"
+"04060101.xhp\n"
+"par_id3152899\n"
"14\n"
"help.text"
-msgid "<emph>Data types</emph>"
-msgstr "Shto të dhënat si:"
+msgid "<item type=\"input\">Weight</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3143222\n"
+"04060101.xhp\n"
+"par_id3153816\n"
"15\n"
"help.text"
-msgid "<emph>Definition</emph>"
-msgstr "Dyfisho definicionin"
+msgid "2"
+msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149384\n"
+"04060101.xhp\n"
+"par_id3151240\n"
"16\n"
"help.text"
-msgid "CALLTYPE"
-msgstr ""
+msgid "<item type=\"input\">Andy</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3146963\n"
+"04060101.xhp\n"
+"par_id3156016\n"
"17\n"
"help.text"
-msgid "Under Windows: FAR PASCAL (_far _pascal)"
-msgstr ""
+msgid "<item type=\"input\">3</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153809\n"
+"04060101.xhp\n"
+"par_id3145073\n"
"18\n"
"help.text"
-msgid "Other: default (operating system specific default)"
-msgstr ""
+msgid "<item type=\"input\">9</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154734\n"
+"04060101.xhp\n"
+"par_id3154956\n"
"19\n"
"help.text"
-msgid "USHORT"
-msgstr ""
+msgid "<item type=\"input\">150</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155760\n"
+"04060101.xhp\n"
+"par_id3153976\n"
"20\n"
"help.text"
-msgid "2 Byte unsigned Integer"
-msgstr "Numri i plotë për orë"
+msgid "<item type=\"input\">40</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145320\n"
+"04060101.xhp\n"
+"par_id3150894\n"
"21\n"
"help.text"
-msgid "DOUBLE"
-msgstr "Dyfish"
+msgid "3"
+msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150956\n"
+"04060101.xhp\n"
+"par_id3152870\n"
"22\n"
"help.text"
-msgid "8 byte platform-dependent format"
-msgstr ""
+msgid "<item type=\"input\">Betty</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3146097\n"
+"04060101.xhp\n"
+"par_id3149692\n"
"23\n"
"help.text"
-msgid "Paramtype"
-msgstr ""
+msgid "<item type=\"input\">4</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150432\n"
+"04060101.xhp\n"
+"par_id3154652\n"
"24\n"
"help.text"
-msgid "Platform-dependent like int"
-msgstr ""
+msgid "<item type=\"input\">10</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153955\n"
+"04060101.xhp\n"
+"par_id3149381\n"
"25\n"
"help.text"
-msgid "PTR_DOUBLE =0 pointer to a double"
-msgstr "Kliko-dyherë të editosh tekstin"
+msgid "<item type=\"input\">1000</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159262\n"
+"04060101.xhp\n"
+"par_id3153812\n"
"26\n"
"help.text"
-msgid "PTR_STRING =1 pointer to a zero-terminated string"
-msgstr ""
+msgid "<item type=\"input\">42</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148747\n"
+"04060101.xhp\n"
+"par_id3146965\n"
"27\n"
"help.text"
-msgid "PTR_DOUBLE_ARR =2 pointer to a double array"
+msgid "4"
msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147406\n"
+"04060101.xhp\n"
+"par_id3155596\n"
"28\n"
"help.text"
-msgid "PTR_STRING_ARR =3 pointer to a string array"
-msgstr ""
+msgid "<item type=\"input\">Charles</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151392\n"
+"04060101.xhp\n"
+"par_id3147244\n"
"29\n"
"help.text"
-msgid "PTR_CELL_ARR =4 pointer to a cell array"
-msgstr ""
+msgid "<item type=\"input\">3</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153028\n"
+"04060101.xhp\n"
+"par_id3149871\n"
"30\n"
"help.text"
-msgid "NONE =5"
-msgstr "Asnjë"
+msgid "<item type=\"input\">10</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3156396\n"
+"04060101.xhp\n"
+"par_id3155752\n"
"31\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions"
-msgstr ""
+msgid "<item type=\"input\">300</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153019\n"
+"04060101.xhp\n"
+"par_id3149052\n"
"32\n"
"help.text"
-msgid "Following you will find a description of those functions, which are called at the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>external DLL</defaultinline></switchinline>."
-msgstr ""
+msgid "<item type=\"input\">51</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150038\n"
+"04060101.xhp\n"
+"par_id3146097\n"
"33\n"
"help.text"
-msgid "For all <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions, the following applies:"
+msgid "5"
msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3157876\n"
+"04060101.xhp\n"
+"par_id3147296\n"
"34\n"
"help.text"
-msgid "void CALLTYPE fn(out, in1, in2, ...)"
-msgstr ""
+msgid "<item type=\"input\">Daniel</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147616\n"
+"04060101.xhp\n"
+"par_id3150393\n"
"35\n"
"help.text"
-msgid "Output: Resulting value"
-msgstr "Vlerë në zvoglim e kryerreshtit"
+msgid "<item type=\"input\">5</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159119\n"
+"04060101.xhp\n"
+"par_id3145236\n"
"36\n"
"help.text"
-msgid "Input: Any number of types (double&, char*, double*, char**, Cell area), where the <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell area\">Cell area</link> is an array of types double array, string array, or cell array."
-msgstr ""
+msgid "<item type=\"input\">11</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3150653\n"
+"04060101.xhp\n"
+"par_id3150534\n"
"37\n"
"help.text"
-msgid "GetFunctionCount()"
-msgstr ""
+msgid "<item type=\"input\">1200</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3152981\n"
+"04060101.xhp\n"
+"par_id3150375\n"
"38\n"
"help.text"
-msgid "Returns the number of functions without the management functions of the reference parameter. Each function has a unique number between 0 and nCount-1. This number will be needed for the <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link> functions later."
-msgstr ""
+msgid "<item type=\"input\">48</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150742\n"
+"04060101.xhp\n"
+"par_id3159121\n"
"39\n"
"help.text"
-msgid "<emph>Syntax</emph>"
-msgstr "**Gabim Sintaksor**"
+msgid "6"
+msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148728\n"
+"04060101.xhp\n"
+"par_id3150456\n"
"40\n"
"help.text"
-msgid "void CALLTYPE GetFunctionCount(USHORT& nCount)"
-msgstr ""
+msgid "<item type=\"input\">Eva</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154677\n"
+"04060101.xhp\n"
+"par_id3146886\n"
"41\n"
"help.text"
-msgid "<emph>Parameter</emph>"
-msgstr "Parametri i sllajdit"
+msgid "<item type=\"input\">2</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3146940\n"
+"04060101.xhp\n"
+"par_id3149945\n"
"42\n"
"help.text"
-msgid "USHORT &nCount:"
-msgstr ""
+msgid "<item type=\"input\">8</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149893\n"
+"04060101.xhp\n"
+"par_id3157904\n"
"43\n"
"help.text"
-msgid "Output: Reference to a variable, which is supposed to contain the number of Add-In functions. For example: If the Add-In provides 5 functions for $[officename] Calc, then nCount=5."
-msgstr ""
+msgid "<item type=\"input\">650</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3147476\n"
+"04060101.xhp\n"
+"par_id3149352\n"
"44\n"
"help.text"
-msgid "GetFunctionData()"
-msgstr ""
+msgid "<item type=\"input\">33</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154841\n"
+"04060101.xhp\n"
+"par_id3150028\n"
"45\n"
"help.text"
-msgid "Determines all the important information about an Add-In function."
+msgid "7"
msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148888\n"
+"04060101.xhp\n"
+"par_id3145826\n"
"46\n"
"help.text"
-msgid "<emph>Syntax</emph>"
-msgstr "**Gabim Sintaksor**"
+msgid "<item type=\"input\">F</item><item type=\"input\">rank</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148434\n"
+"04060101.xhp\n"
+"par_id3150743\n"
"47\n"
"help.text"
-msgid "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
-msgstr ""
+msgid "<item type=\"input\">2</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149253\n"
+"04060101.xhp\n"
+"par_id3154844\n"
"48\n"
"help.text"
-msgid "<emph>Parameter</emph>"
-msgstr "Parametri i sllajdit"
+msgid "<item type=\"input\">7</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149686\n"
+"04060101.xhp\n"
+"par_id3148435\n"
"49\n"
"help.text"
-msgid "USHORT& nNo:"
-msgstr ""
+msgid "<item type=\"input\">3</item><item type=\"input\">00</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149949\n"
+"04060101.xhp\n"
+"par_id3148882\n"
"50\n"
"help.text"
-msgid "Input: Function number between 0 and nCount-1, inclusively."
-msgstr ""
+msgid "<item type=\"input\">4</item><item type=\"input\">2</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149546\n"
+"04060101.xhp\n"
+"par_id3150140\n"
"51\n"
"help.text"
-msgid "char* pFuncName:"
+msgid "8"
msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148579\n"
+"04060101.xhp\n"
+"par_id3146137\n"
"52\n"
"help.text"
-msgid "Output: Function name as seen by the programmer, as it is named in the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline>. This name does not determine the name used in the <emph>Function Wizard</emph>."
-msgstr ""
+msgid "<item type=\"input\">Greta</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153935\n"
+"04060101.xhp\n"
+"par_id3148739\n"
"53\n"
"help.text"
-msgid "USHORT& nParamCount:"
-msgstr ""
+msgid "<item type=\"input\">1</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150142\n"
+"04060101.xhp\n"
+"par_id3148583\n"
"54\n"
"help.text"
-msgid "Output: Number of parameters in AddIn function. This number must be greater than 0, because there is always a result value; the maximum value is 16."
-msgstr ""
+msgid "<item type=\"input\">7</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145143\n"
+"04060101.xhp\n"
+"par_id3154556\n"
"55\n"
"help.text"
-msgid "Paramtype* peType:"
-msgstr ""
+msgid "<item type=\"input\">200</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148750\n"
+"04060101.xhp\n"
+"par_id3155255\n"
"56\n"
"help.text"
-msgid "Output: Pointer to an array of exactly 16 variables of type Paramtype. The first nParamCount entries are filled with the suitable type of parameter."
-msgstr ""
+msgid "<item type=\"input\">36</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153078\n"
+"04060101.xhp\n"
+"par_id3145141\n"
"57\n"
"help.text"
-msgid "char* pInternalName:"
+msgid "9"
msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155261\n"
+"04060101.xhp\n"
+"par_id3153078\n"
"58\n"
"help.text"
-msgid "Output: Function name as seen by the user, as it appears in the <emph>Function Wizard</emph>. May contain umlauts."
-msgstr ""
+msgid "<item type=\"input\">Harry</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153327\n"
+"04060101.xhp\n"
+"par_id3149955\n"
"59\n"
"help.text"
-msgid "The pFuncName and pInternalName parameters are char arrays, which are implemented with size 256 in $[officename] Calc."
-msgstr ""
+msgid "<item type=\"input\">3</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"hd_id3148567\n"
+"04060101.xhp\n"
+"par_id3150005\n"
"60\n"
"help.text"
-msgid "GetParameterDescription()"
-msgstr ""
+msgid "<item type=\"input\">9</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153000\n"
+"04060101.xhp\n"
+"par_id3155951\n"
"61\n"
"help.text"
-msgid "Provides a brief description of the Add-In function and its parameters. As an option, this function can be used to show a function and parameter description in the <emph>Function Wizard</emph>."
-msgstr ""
+msgid "<item type=\"input\">1200</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154501\n"
+"04060101.xhp\n"
+"par_id3145169\n"
"62\n"
"help.text"
-msgid "<emph>Syntax</emph>"
-msgstr "**Gabim Sintaksor**"
+msgid "<item type=\"input\">44</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153564\n"
+"04060101.xhp\n"
+"par_id3153571\n"
"63\n"
"help.text"
-msgid "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
-msgstr ""
+msgid "10"
+msgstr "Titullimi 10"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3157995\n"
+"04060101.xhp\n"
+"par_id3148761\n"
"64\n"
"help.text"
-msgid "<emph>Parameter</emph>"
-msgstr "Parametri i sllajdit"
+msgid "<item type=\"input\">Irene</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155925\n"
+"04060101.xhp\n"
+"par_id3149877\n"
"65\n"
"help.text"
-msgid "USHORT& nNo:"
-msgstr ""
+msgid "<item type=\"input\">2</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149883\n"
+"04060101.xhp\n"
+"par_id3154327\n"
"66\n"
"help.text"
-msgid "Input: Number of the function in the library; between 0 and nCount-1."
-msgstr ""
+msgid "<item type=\"input\">8</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3154326\n"
+"04060101.xhp\n"
+"par_id3155435\n"
"67\n"
"help.text"
-msgid "USHORT& nParam:"
-msgstr ""
+msgid "<item type=\"input\">1000</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3159139\n"
+"04060101.xhp\n"
+"par_id3145353\n"
"68\n"
"help.text"
-msgid "Input: Indicates, for which parameter the description is provided; parameters start at 1. If nParam is 0, the description itself is supposed to be provided in pDesc; in this case, pName does not have any meaning."
-msgstr ""
+msgid "<item type=\"input\">42</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147374\n"
+"04060101.xhp\n"
+"par_id3150662\n"
"69\n"
"help.text"
-msgid "char* pName:"
-msgstr ""
+msgid "11"
+msgstr "1"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145245\n"
+"04060101.xhp\n"
+"par_id3150568\n"
"70\n"
"help.text"
-msgid "Output: Takes up the parameter name or type, for example, the word \"Number\" or \"String\" or \"Date\", and so on. Implemented in $[officename] Calc as char[256]."
-msgstr ""
+msgid "12"
+msgstr "Yll 12-cepësh"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151020\n"
+"04060101.xhp\n"
+"par_id3149393\n"
"71\n"
"help.text"
-msgid "char* pDesc:"
-msgstr ""
+msgid "13"
+msgstr "1"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148389\n"
+"04060101.xhp\n"
+"par_id3153544\n"
"72\n"
"help.text"
-msgid "Output: Takes up the description of the parameter, for example, \"Value, at which the universe is to be calculated.\" Implemented in $[officename] Calc as char[256]."
-msgstr ""
+msgid "<item type=\"input\">Name</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145303\n"
+"04060101.xhp\n"
+"par_id3158414\n"
"73\n"
"help.text"
-msgid "pName and pDesc are char arrays; implemented in $[officename] Calc with size 256. Please note that the space available in the <emph>Function Wizard</emph> is limited and that the 256 characters cannot be fully used."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"hd_id3148874\n"
-"76\n"
-"help.text"
-msgid "Cell areas"
-msgstr "Zona të lidhura"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150265\n"
-"77\n"
-"help.text"
-msgid "The following tables contain information about which data structures must be provided by an external program module in order to pass cell areas. $[officename] Calc distinguishes between three different arrays, depending on the data type."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"hd_id3156060\n"
-"78\n"
-"help.text"
-msgid "Double Array"
-msgstr "Formula e vargut %1 R x %2 C"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149540\n"
-"79\n"
-"help.text"
-msgid "As a parameter, a cell area with values of the Number/Double type can be passed. A double array in $[officename] Calc is defined as follows:"
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149388\n"
-"80\n"
-"help.text"
-msgid "<emph>Offset</emph>"
-msgstr "Vija e kompensimit 1"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154636\n"
-"81\n"
-"help.text"
-msgid "<emph>Name</emph>"
-msgstr "Emri i grupit"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153228\n"
-"82\n"
-"help.text"
-msgid "<emph>Description</emph>"
-msgstr "Vetëm përshkrimi"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150685\n"
-"83\n"
-"help.text"
-msgid "0"
-msgstr "Titullimi 10"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154869\n"
-"84\n"
-"help.text"
-msgid "Col1"
-msgstr "Col"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3147541\n"
-"85\n"
-"help.text"
-msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149783\n"
-"86\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3155986\n"
-"87\n"
-"help.text"
-msgid "Row1"
-msgstr "Rresht"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3147483\n"
-"88\n"
-"help.text"
-msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153721\n"
-"89\n"
-"help.text"
-msgid "4"
-msgstr "Yll 24-cepësh"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154317\n"
-"90\n"
-"help.text"
-msgid "Tab1"
-msgstr "Tab"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149820\n"
-"91\n"
-"help.text"
-msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3163820\n"
-"92\n"
-"help.text"
-msgid "6"
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149710\n"
-"93\n"
-"help.text"
-msgid "Col2"
-msgstr "Col"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154819\n"
-"94\n"
-"help.text"
-msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3145083\n"
-"95\n"
-"help.text"
-msgid "8"
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3156310\n"
-"96\n"
-"help.text"
-msgid "Row2"
-msgstr "Rresht"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150968\n"
-"97\n"
-"help.text"
-msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3156133\n"
-"98\n"
-"help.text"
-msgid "10"
-msgstr "Titullimi 10"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153218\n"
-"99\n"
-"help.text"
-msgid "Tab2"
-msgstr "Tab"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3147086\n"
-"100\n"
-"help.text"
-msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
-msgstr ""
+msgid "<item type=\"input\">Grade</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151270\n"
-"101\n"
+"04060101.xhp\n"
+"par_id3152820\n"
+"74\n"
"help.text"
-msgid "12"
-msgstr "Yll 12-cepësh"
+msgid "<item type=\"input\">Age</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3152934\n"
-"102\n"
+"04060101.xhp\n"
+"par_id3154866\n"
+"75\n"
"help.text"
-msgid "Count"
-msgstr "Numëro"
+msgid "<item type=\"input\">Distance to School</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3145202\n"
-"103\n"
+"04060101.xhp\n"
+"par_id3150471\n"
+"76\n"
"help.text"
-msgid "Number of the following elements. Empty cells are not counted or passed."
-msgstr ""
+msgid "<item type=\"input\">Weight</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3150879\n"
-"104\n"
+"04060101.xhp\n"
+"par_id3153920\n"
+"77\n"
"help.text"
msgid "14"
msgstr "1"
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3156002\n"
-"105\n"
-"help.text"
-msgid "Col"
-msgstr "Col"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3147276\n"
-"106\n"
-"help.text"
-msgid "Column number of the element. Numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3151295\n"
-"107\n"
-"help.text"
-msgid "16"
-msgstr "1"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150261\n"
-"108\n"
-"help.text"
-msgid "Row"
-msgstr "Rresht"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3155851\n"
-"109\n"
-"help.text"
-msgid "Row number of the element; numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153150\n"
-"110\n"
-"help.text"
-msgid "18"
-msgstr "1"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153758\n"
-"111\n"
-"help.text"
-msgid "Tab"
-msgstr "Tab"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150154\n"
-"112\n"
-"help.text"
-msgid "Table number of the element; numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149289\n"
-"113\n"
-"help.text"
-msgid "20"
-msgstr "{120}{70}{70}{70}{70}"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3156010\n"
-"114\n"
-"help.text"
-msgid "Error"
-msgstr "Gabim"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3159181\n"
-"115\n"
-"help.text"
-msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3147493\n"
-"116\n"
-"help.text"
-msgid "22"
-msgstr "2"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149200\n"
-"117\n"
-"help.text"
-msgid "Value"
-msgstr "Vlerë"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3151174\n"
-"118\n"
-"help.text"
-msgid "8 byte IEEE variable of type double/floating point"
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154688\n"
-"119\n"
-"help.text"
-msgid "30"
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3159337\n"
-"120\n"
-"help.text"
-msgid "..."
-msgstr "..."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3155388\n"
-"121\n"
-"help.text"
-msgid "Next element"
-msgstr "Emri i elementit"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"hd_id3154935\n"
-"122\n"
-"help.text"
-msgid "String Array"
-msgstr "Formula e vargut %1 R x %2 C"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153105\n"
-"123\n"
-"help.text"
-msgid "A cell area, which contains values of data type Text and is passed as a string array. A string array in $[officename] Calc is defined as follows:"
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149908\n"
-"124\n"
-"help.text"
-msgid "<emph>Offset</emph>"
-msgstr "Vija e kompensimit 1"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3159165\n"
-"125\n"
-"help.text"
-msgid "<emph>Name</emph>"
-msgstr "Emri i grupit"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3159150\n"
-"126\n"
-"help.text"
-msgid "<emph>Description</emph>"
-msgstr "Vetëm përshkrimi"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149769\n"
-"127\n"
-"help.text"
-msgid "0"
-msgstr "Titullimi 10"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150509\n"
-"128\n"
-"help.text"
-msgid "Col1"
-msgstr "Col"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3148447\n"
-"129\n"
-"help.text"
-msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3145418\n"
-"130\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3147512\n"
-"131\n"
-"help.text"
-msgid "Row1"
-msgstr "Rresht"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3147235\n"
-"132\n"
-"help.text"
-msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3155362\n"
-"133\n"
-"help.text"
-msgid "4"
-msgstr "Yll 24-cepësh"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3151051\n"
-"134\n"
-"help.text"
-msgid "Tab1"
-msgstr "Tab"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3148923\n"
-"135\n"
-"help.text"
-msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149158\n"
-"136\n"
-"help.text"
-msgid "6"
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3166437\n"
-"137\n"
-"help.text"
-msgid "Col2"
-msgstr "Col"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149788\n"
-"138\n"
-"help.text"
-msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3166450\n"
-"139\n"
-"help.text"
-msgid "8"
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3152877\n"
-"140\n"
-"help.text"
-msgid "Row2"
-msgstr "Rresht"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3152949\n"
-"141\n"
-"help.text"
-msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3159270\n"
-"142\n"
-"help.text"
-msgid "10"
-msgstr "Titullimi 10"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154107\n"
-"143\n"
-"help.text"
-msgid "Tab2"
-msgstr "Tab"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153747\n"
-"144\n"
-"help.text"
-msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149924\n"
-"145\n"
-"help.text"
-msgid "12"
-msgstr "Yll 12-cepësh"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154858\n"
-"146\n"
-"help.text"
-msgid "Count"
-msgstr "Numëro"
-
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148621\n"
-"147\n"
+"04060101.xhp\n"
+"par_id3148429\n"
+"78\n"
"help.text"
-msgid "Number of the following elements. Empty cells are not counted or passed."
-msgstr ""
+msgid "<item type=\"input\">>600</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148467\n"
-"148\n"
+"04060101.xhp\n"
+"par_id3152588\n"
+"79\n"
"help.text"
-msgid "14"
+msgid "15"
msgstr "1"
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3151126\n"
-"149\n"
-"help.text"
-msgid "Col"
-msgstr "Col"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154334\n"
-"150\n"
-"help.text"
-msgid "Column number of the element. Numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149416\n"
-"151\n"
+"04060101.xhp\n"
+"par_id3083286\n"
+"80\n"
"help.text"
msgid "16"
msgstr "1"
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150631\n"
-"152\n"
-"help.text"
-msgid "Row"
-msgstr "Rresht"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150424\n"
-"153\n"
-"help.text"
-msgid "Row number of the element; numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154797\n"
-"154\n"
-"help.text"
-msgid "18"
-msgstr "1"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3143274\n"
-"155\n"
-"help.text"
-msgid "Tab"
-msgstr "Tab"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149513\n"
-"156\n"
-"help.text"
-msgid "Table number of the element; numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3145306\n"
-"157\n"
-"help.text"
-msgid "20"
-msgstr "{120}{70}{70}{70}{70}"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153948\n"
-"158\n"
-"help.text"
-msgid "Error"
-msgstr "Gabim"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153534\n"
-"159\n"
-"help.text"
-msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153311\n"
-"160\n"
-"help.text"
-msgid "22"
-msgstr "2"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3148695\n"
-"161\n"
-"help.text"
-msgid "Len"
-msgstr "LEN"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3152769\n"
-"162\n"
-"help.text"
-msgid "Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153772\n"
-"163\n"
-"help.text"
-msgid "24"
-msgstr "Yll 24-cepësh"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153702\n"
-"164\n"
-"help.text"
-msgid "String"
-msgstr "Varg"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154474\n"
-"165\n"
-"help.text"
-msgid "String with closing zero byte"
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3156269\n"
-"166\n"
-"help.text"
-msgid "24+Len"
-msgstr "Yll 24-cepësh"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154825\n"
-"167\n"
-"help.text"
-msgid "..."
-msgstr "..."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3147097\n"
-"168\n"
-"help.text"
-msgid "Next element"
-msgstr "Emri i elementit"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"hd_id3159091\n"
-"169\n"
-"help.text"
-msgid "Cell Array"
-msgstr "Formula e vargut %1 R x %2 C"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3156140\n"
-"170\n"
-"help.text"
-msgid "Cell arrays are used to call cell areas containing text as well as numbers. A cell array in $[officename] Calc is defined as follows:"
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154664\n"
-"171\n"
-"help.text"
-msgid "<emph>Offset</emph>"
-msgstr "Vija e kompensimit 1"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154566\n"
-"172\n"
-"help.text"
-msgid "<emph>Name</emph>"
-msgstr "Emri i grupit"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3146073\n"
-"173\n"
-"help.text"
-msgid "<emph>Description</emph>"
-msgstr "Vetëm përshkrimi"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154117\n"
-"174\n"
-"help.text"
-msgid "0"
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150988\n"
-"175\n"
-"help.text"
-msgid "Col1"
-msgstr "Col"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3146783\n"
-"176\n"
-"help.text"
-msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153666\n"
-"177\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149560\n"
-"178\n"
-"help.text"
-msgid "Row1"
-msgstr "Rresht"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3156156\n"
-"179\n"
-"help.text"
-msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150408\n"
-"180\n"
-"help.text"
-msgid "4"
-msgstr "Yll 24-cepësh"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150593\n"
-"181\n"
-"help.text"
-msgid "Tab1"
-msgstr "Tab"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150357\n"
-"182\n"
-"help.text"
-msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3146912\n"
-"183\n"
-"help.text"
-msgid "6"
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153352\n"
-"184\n"
-"help.text"
-msgid "Col2"
-msgstr "Col"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3155893\n"
-"185\n"
-"help.text"
-msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150827\n"
-"186\n"
-"help.text"
-msgid "8"
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3148406\n"
-"187\n"
-"help.text"
-msgid "Row2"
-msgstr "Rresht"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150673\n"
-"188\n"
-"help.text"
-msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3155864\n"
-"189\n"
+"04060101.xhp\n"
+"par_id3163823\n"
+"81\n"
"help.text"
-msgid "10"
-msgstr "Titullimi 10"
+msgid "<item type=\"input\">DCOUNT</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3153197\n"
-"190\n"
+"04060101.xhp\n"
+"par_id3145083\n"
+"82\n"
"help.text"
-msgid "Tab2"
-msgstr "Tab"
+msgid "<item type=\"input\">5</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149329\n"
-"191\n"
+"04060101.xhp\n"
+"par_id3149282\n"
+"83\n"
"help.text"
-msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgid "The formula in cell B16 is =DCOUNT(A1:E10;0;A13:E14)"
msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3147360\n"
+"04060101.xhp\n"
+"hd_id3150962\n"
"192\n"
"help.text"
-msgid "12"
-msgstr "Yll 12-cepësh"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154520\n"
-"193\n"
-"help.text"
-msgid "Count"
-msgstr "Numëro"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150647\n"
-"194\n"
-"help.text"
-msgid "Number of the following elements. Empty cells are not counted or passed."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149747\n"
-"195\n"
-"help.text"
-msgid "14"
-msgstr "1"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3147579\n"
-"196\n"
-"help.text"
-msgid "Col"
-msgstr "Col"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3154188\n"
-"197\n"
-"help.text"
-msgid "Column number of the element. Numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3159209\n"
-"198\n"
-"help.text"
-msgid "16"
-msgstr "1"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153265\n"
-"199\n"
-"help.text"
-msgid "Row"
-msgstr "Rresht"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150095\n"
-"200\n"
-"help.text"
-msgid "Row number of the element; numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3151276\n"
-"201\n"
-"help.text"
-msgid "18"
-msgstr "1"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149177\n"
-"202\n"
-"help.text"
-msgid "Tab"
-msgstr "Tab"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3146925\n"
-"203\n"
-"help.text"
-msgid "Table number of the element; numbering starts at 0."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3150488\n"
-"204\n"
-"help.text"
-msgid "20"
-msgstr "{120}{70}{70}{70}{70}"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3149441\n"
-"205\n"
-"help.text"
-msgid "Error"
-msgstr "Gabim"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3156048\n"
-"206\n"
-"help.text"
-msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
-msgstr ""
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3163813\n"
-"207\n"
-"help.text"
-msgid "22"
-msgstr "2"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3159102\n"
-"208\n"
-"help.text"
-msgid "Type"
-msgstr "Tipi"
+msgid "Database Function Parameters:"
+msgstr "Parametrat e shprëndarjes eksponenciale."
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149581\n"
-"209\n"
+"04060101.xhp\n"
+"par_id3155837\n"
+"84\n"
"help.text"
-msgid "Type of cell content, 0 == Double, 1 == String"
+msgid "The following items are the parameter definitions for all database functions:"
msgstr ""
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3155182\n"
-"210\n"
-"help.text"
-msgid "24"
-msgstr "Yll 24-cepësh"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3153291\n"
-"211\n"
-"help.text"
-msgid "Value or Len"
-msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
-
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148560\n"
-"212\n"
+"04060101.xhp\n"
+"par_id3149453\n"
+"85\n"
"help.text"
-msgid "If type == 0: 8 byte IEEE variable of type double/floating point"
+msgid "<emph>Database</emph> is the cell range defining the database."
msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3148901\n"
-"213\n"
+"04060101.xhp\n"
+"par_id3151272\n"
+"86\n"
"help.text"
-msgid "If type == 1: Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
+msgid "<emph>DatabaseField</emph> specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. Use the number 0 to specify the whole data range. <variable id=\"quotes\">To reference a column by means of the column header name, place quotation marks around the header name. </variable>"
msgstr ""
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3145215\n"
-"214\n"
-"help.text"
-msgid "26 if type==1"
-msgstr "Zgjedh tipin e dokumentit"
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3155143\n"
-"215\n"
-"help.text"
-msgid "String"
-msgstr "Varg"
-
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3149298\n"
-"216\n"
+"04060101.xhp\n"
+"par_id3147083\n"
+"87\n"
"help.text"
-msgid "If type == 1: String with closing zero byte"
+msgid "<emph>SearchCriteria</emph> is the cell range containing search criteria. If you write several criteria in one row they are connected by AND. If you write the criteria in different rows they are connected by OR. Empty cells in the search criteria range will be ignored."
msgstr ""
-#: 04060112.xhp
+#: 04060101.xhp
msgctxt ""
-"04060112.xhp\n"
-"par_id3151322\n"
-"217\n"
+"04060101.xhp\n"
+"par_id3151188\n"
+"188\n"
"help.text"
-msgid "32 or 26+Len"
+msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\">%PRODUCTNAME Calc - Calculate</link> to define how $[officename] Calc acts when searching for identical entries."
msgstr ""
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3163722\n"
-"218\n"
-"help.text"
-msgid "..."
-msgstr "..."
-
-#: 04060112.xhp
-msgctxt ""
-"04060112.xhp\n"
-"par_id3151059\n"
-"219\n"
-"help.text"
-msgid "Next element"
-msgstr "Emri i elementit"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"tit\n"
-"help.text"
-msgid "Statistical Functions Part Four"
-msgstr "Funksionet statistikore"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153415\n"
-"1\n"
+"04060101.xhp\n"
+"par_id3882869\n"
"help.text"
-msgid "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Statistical Functions Part Four\">Statistical Functions Part Four</link></variable>"
+msgid "See also the Wiki page about <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Conditional_Counting_and_Summation\">Conditional Counting and Summation</link>."
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3154511\n"
-"help.text"
-msgid "<bookmark_value>MAX function</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3154511\n"
-"2\n"
+"04060101.xhp\n"
+"bm_id3150882\n"
"help.text"
-msgid "MAX"
-msgstr "MAX"
+msgid "<bookmark_value>DCOUNT function</bookmark_value> <bookmark_value>counting rows;with numeric values</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153709\n"
-"3\n"
+"04060101.xhp\n"
+"hd_id3150882\n"
+"88\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MAX\">Returns the maximum value in a list of arguments.</ahelp>"
-msgstr ""
+msgid "DCOUNT"
+msgstr "DCOUNT"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id9282509\n"
+"04060101.xhp\n"
+"par_id3156133\n"
+"89\n"
"help.text"
-msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
+msgid "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT counts the number of rows (records) in a database that match the specified search criteria and contain numerical values.</ahelp>"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3154256\n"
-"4\n"
+"04060101.xhp\n"
+"hd_id3156099\n"
+"90\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3147340\n"
-"5\n"
+"04060101.xhp\n"
+"par_id3153218\n"
+"91\n"
"help.text"
-msgid "MAX(Number1; Number2; ...Number30)"
+msgid "DCOUNT(Database; DatabaseField; SearchCriteria)"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149568\n"
-"6\n"
+"04060101.xhp\n"
+"par_id3153273\n"
+"187\n"
"help.text"
-msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
+msgid "For the DatabaseField parameter you can enter a cell to specify the column, or enter the number 0 for the entire database. The parameter cannot be empty. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153963\n"
-"7\n"
+"04060101.xhp\n"
+"hd_id3154743\n"
+"92\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3147343\n"
-"8\n"
+"04060101.xhp\n"
+"par_id3153623\n"
+"93\n"
"help.text"
-msgid "<item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> returns the largest value from the list."
+msgid "In the example above (scroll up, please), we want to know how many children have to travel more than 600 meters to school. The result is to be stored in cell B16. Set the cursor in cell B16. Enter the formula <item type=\"input\">=DCOUNT(A1:E10;0;A13:E14)</item> in B16. The <emph>Function Wizard</emph> helps you to input ranges."
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3148485\n"
-"9\n"
+"04060101.xhp\n"
+"par_id3149142\n"
+"94\n"
"help.text"
-msgid "<item type=\"input\">=MAX(A1:B100)</item> returns the largest value from the list."
+msgid "<emph>Database</emph> is the range of data to be evaluated, including its headers: in this case A1:E10. <emph>DatabaseField</emph> specifies the column for the search criteria: in this case, the whole database. <emph>SearchCriteria</emph> is the range where you can enter the search parameters: in this case, A13:E14."
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3166426\n"
+"04060101.xhp\n"
+"par_id3145652\n"
+"95\n"
"help.text"
-msgid "<bookmark_value>MAXA function</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
+msgid "To learn how many children in second grade are over 7 years of age, delete the entry >600 in cell D14 and enter <item type=\"input\">2</item> in cell B14 under Grade, and enter <item type=\"input\">>7</item> in cell C14 to the right. The result is 2. Two children are in second grade and over 7 years of age. As both criteria are in the same row, they are connected by AND."
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3166426\n"
-"139\n"
+"04060101.xhp\n"
+"bm_id3156123\n"
"help.text"
-msgid "MAXA"
-msgstr "MAXA"
+msgid "<bookmark_value>DCOUNTA function</bookmark_value> <bookmark_value>records;counting in Calc databases</bookmark_value> <bookmark_value>counting rows;with numeric or alphanumeric values</bookmark_value>"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150363\n"
-"140\n"
+"04060101.xhp\n"
+"hd_id3156123\n"
+"97\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MAXA\">Returns the maximum value in a list of arguments. In opposite to MAX, here you can enter text. The value of the text is 0.</ahelp>"
-msgstr ""
+msgid "DCOUNTA"
+msgstr "DCOUNTA"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id7689443\n"
+"04060101.xhp\n"
+"par_id3156110\n"
+"98\n"
"help.text"
-msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
+msgid "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA counts the number of rows (records) in a database that match the specified search conditions, and contain numeric or alphanumeric values.</ahelp>"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3150516\n"
-"141\n"
+"04060101.xhp\n"
+"hd_id3143228\n"
+"99\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3166431\n"
-"142\n"
-"help.text"
-msgid "MAXA(Value1; Value2; ... Value30)"
-msgstr ""
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150202\n"
-"143\n"
+"04060101.xhp\n"
+"par_id3146893\n"
+"100\n"
"help.text"
-msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+msgid "DCOUNTA(Database; DatabaseField; SearchCriteria)"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3156290\n"
-"144\n"
+"04060101.xhp\n"
+"hd_id3149751\n"
+"101\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3156446\n"
-"145\n"
+"04060101.xhp\n"
+"par_id3153982\n"
+"102\n"
"help.text"
-msgid "<item type=\"input\">=MAXA(A1;A2;A3;50;100;200;\"Text\")</item> returns the largest value from the list."
+msgid "In the example above (scroll up, please), you can search for the number of children whose name starts with an E or a subsequent letter. Edit the formula in B16 to read <item type=\"input\">=DCOUNTA(A1:E10;\"Name\";A13:E14)</item>. Delete the old search criteria and enter <item type=\"input\">>=E</item> under Name in field A14. The result is 5. If you now delete all number values for Greta in row 8, the result changes to 4. Row 8 is no longer included in the count because it does not contain any values. The name Greta is text, not a value. Note that the DatabaseField parameter must point to a column that can contain values."
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149404\n"
-"146\n"
+"04060101.xhp\n"
+"bm_id3147256\n"
"help.text"
-msgid "<item type=\"input\">=MAXA(A1:B100)</item> returns the largest value from the list."
+msgid "<bookmark_value>DGET function</bookmark_value> <bookmark_value>cell contents;searching in Calc databases</bookmark_value> <bookmark_value>searching;cell contents in Calc databases</bookmark_value>"
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3153820\n"
-"help.text"
-msgid "<bookmark_value>MEDIAN function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153820\n"
-"11\n"
+"04060101.xhp\n"
+"hd_id3147256\n"
+"104\n"
"help.text"
-msgid "MEDIAN"
-msgstr "MEDIAN"
+msgid "DGET"
+msgstr "DGET"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3151241\n"
-"12\n"
+"04060101.xhp\n"
+"par_id3152801\n"
+"105\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MEDIAN\">Returns the median of a set of numbers. In a set containing an uneven number of values, the median will be the number in the middle of the set and in a set containing an even number of values, it will be the mean of the two values in the middle of the set.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET returns the contents of the referenced cell in a database which matches the specified search criteria.</ahelp> In case of an error, the function returns either #VALUE! for no row found, or Err502 for more than one cell found."
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3148871\n"
-"13\n"
+"04060101.xhp\n"
+"hd_id3159344\n"
+"106\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3155264\n"
-"14\n"
-"help.text"
-msgid "MEDIAN(Number1; Number2; ...Number30)"
-msgstr ""
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150109\n"
-"15\n"
+"04060101.xhp\n"
+"par_id3154696\n"
+"107\n"
"help.text"
-msgid "<emph>Number1; Number2;...Number30</emph> are values or ranges, which represent a sample. Each number can also be replaced by a reference."
+msgid "DGET(Database; DatabaseField; SearchCriteria)"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3144506\n"
-"16\n"
+"04060101.xhp\n"
+"hd_id3153909\n"
+"108\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3145078\n"
-"17\n"
+"04060101.xhp\n"
+"par_id3155388\n"
+"109\n"
"help.text"
-msgid "for an odd number: <item type=\"input\">=MEDIAN(1;5;9;20;21)</item> returns 9 as the median value."
+msgid "In the above example (scroll up, please), we want to determine what grade a child is in, whose name was entered in cell A14. The formula is entered in cell B16 and differs slightly from the earlier examples because only one column (one database field) can be entered for <emph>DatabaseField</emph>. Enter the following formula:"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149126\n"
-"165\n"
+"04060101.xhp\n"
+"par_id3153096\n"
+"110\n"
"help.text"
-msgid "for an even number: <item type=\"input\">=MEDIAN(1;5;9;20)</item> returns the average of the two middle values 5 and 9, thus 7."
+msgid "<item type=\"input\">=DGET(A1:E10;\"Grade\";A13:E14)</item>"
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3154541\n"
-"help.text"
-msgid "<bookmark_value>MIN function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3154541\n"
-"19\n"
-"help.text"
-msgid "MIN"
-msgstr "MIN"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3143222\n"
-"20\n"
+"04060101.xhp\n"
+"par_id3150524\n"
+"111\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MIN\">Returns the minimum value in a list of arguments.</ahelp>"
+msgid "Enter the name <item type=\"input\">Frank</item> in A14, and you see the result 2. Frank is in second grade. Enter <item type=\"input\">\"Age\"</item> instead of \"Grade\" and you will get Frank's age."
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id2301400\n"
+"04060101.xhp\n"
+"par_id3148833\n"
+"112\n"
"help.text"
-msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
+msgid "Or enter the value <item type=\"input\">11</item> in cell C14 only, and delete the other entries in this row. Edit the formula in B16 as follows:"
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3154651\n"
-"21\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3146964\n"
-"22\n"
+"04060101.xhp\n"
+"par_id3149912\n"
+"113\n"
"help.text"
-msgid "MIN(Number1; Number2; ...Number30)"
+msgid "<item type=\"input\">=DGET(A1:E10;\"Name\";A13:E14)</item>"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153486\n"
-"23\n"
+"04060101.xhp\n"
+"par_id3148813\n"
+"114\n"
"help.text"
-msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
+msgid "Instead of the grade, the name is queried. The answer appears at once: Daniel is the only child aged 11."
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3155523\n"
-"24\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154734\n"
-"25\n"
+"04060101.xhp\n"
+"bm_id3149766\n"
"help.text"
-msgid "<item type=\"input\">=MIN(A1:B100)</item> returns the smallest value in the list."
+msgid "<bookmark_value>DMAX function</bookmark_value> <bookmark_value>maximum values in Calc databases</bookmark_value> <bookmark_value>searching;maximum values in columns</bookmark_value>"
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3147504\n"
-"help.text"
-msgid "<bookmark_value>MINA function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3147504\n"
-"148\n"
-"help.text"
-msgid "MINA"
-msgstr "MINA"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3147249\n"
-"149\n"
+"04060101.xhp\n"
+"hd_id3149766\n"
+"115\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MINA\">Returns the minimum value in a list of arguments. Here you can also enter text. The value of the text is 0.</ahelp>"
-msgstr ""
+msgid "DMAX"
+msgstr "DMAX"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id4294564\n"
+"04060101.xhp\n"
+"par_id3154903\n"
+"116\n"
"help.text"
-msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
+msgid "<ahelp hid=\"HID_FUNC_DBMAX\">DMAX returns the maximum content of a cell (field) in a database (all records) that matches the specified search conditions.</ahelp>"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3150435\n"
-"150\n"
+"04060101.xhp\n"
+"hd_id3150771\n"
+"117\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3153336\n"
-"151\n"
-"help.text"
-msgid "MINA(Value1; Value2; ... Value30)"
-msgstr ""
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3146098\n"
-"152\n"
+"04060101.xhp\n"
+"par_id3159157\n"
+"118\n"
"help.text"
-msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+msgid "DMAX(Database; DatabaseField; SearchCriteria)"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3148743\n"
-"153\n"
+"04060101.xhp\n"
+"hd_id3145420\n"
+"119\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060184.xhp
-#, fuzzy
-msgctxt ""
-"04060184.xhp\n"
-"par_id3147401\n"
-"154\n"
-"help.text"
-msgid "<item type=\"input\">=MINA(1;\"Text\";20)</item> returns 0."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3147295\n"
-"155\n"
+"04060101.xhp\n"
+"par_id3148442\n"
+"120\n"
"help.text"
-msgid "<item type=\"input\">=MINA(A1:B100)</item> returns the smallest value in the list."
+msgid "To find out how much the heaviest child in each grade weighed in the above example (scroll up, please), enter the following formula in B16:"
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3166465\n"
-"help.text"
-msgid "<bookmark_value>AVEDEV function</bookmark_value><bookmark_value>averages;statistical functions</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3166465\n"
-"27\n"
-"help.text"
-msgid "AVEDEV"
-msgstr "AVEDEV"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150373\n"
-"28\n"
+"04060101.xhp\n"
+"par_id3148804\n"
+"121\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MITTELABW\">Returns the average of the absolute deviations of data points from their mean.</ahelp> Displays the diffusion in a data set."
+msgid "<item type=\"input\">=DMAX(A1:E10;\"Weight\";A13:E14)</item>"
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3150038\n"
-"29\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3145636\n"
-"30\n"
+"04060101.xhp\n"
+"par_id3150510\n"
+"122\n"
"help.text"
-msgid "AVEDEV(Number1; Number2; ...Number30)"
+msgid "Under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. After entering a grade number, the weight of the heaviest child in that grade appears."
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3157871\n"
-"31\n"
+"04060101.xhp\n"
+"bm_id3159141\n"
"help.text"
-msgid "<emph>Number1, Number2,...Number30</emph> are values or ranges that represent a sample. Each number can also be replaced by a reference."
+msgid "<bookmark_value>DMIN function</bookmark_value> <bookmark_value>minimum values in Calc databases</bookmark_value> <bookmark_value>searching;minimum values in columns</bookmark_value>"
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3149725\n"
-"32\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3153122\n"
-"33\n"
-"help.text"
-msgid "<item type=\"input\">=AVEDEV(A1:A50)</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3145824\n"
-"help.text"
-msgid "<bookmark_value>AVERAGE function</bookmark_value>"
-msgstr "Kthen vlerën llogjike SAKTË."
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3145824\n"
-"35\n"
+"04060101.xhp\n"
+"hd_id3159141\n"
+"123\n"
"help.text"
-msgid "AVERAGE"
-msgstr "MESATARE"
+msgid "DMIN"
+msgstr "DMIN"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150482\n"
-"36\n"
+"04060101.xhp\n"
+"par_id3154261\n"
+"124\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MITTELWERT\">Returns the average of the arguments.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_DBMIN\">DMIN returns the minimum content of a cell (field) in a database that matches the specified search criteria.</ahelp>"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3146943\n"
-"37\n"
+"04060101.xhp\n"
+"hd_id3147238\n"
+"125\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3154679\n"
-"38\n"
-"help.text"
-msgid "AVERAGE(Number1; Number2; ...Number30)"
-msgstr ""
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150741\n"
-"39\n"
+"04060101.xhp\n"
+"par_id3148479\n"
+"126\n"
"help.text"
-msgid "<emph>Number1; Number2;...Number 0</emph> are numerical values or ranges."
+msgid "DMIN(Database; DatabaseField; SearchCriteria)"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153039\n"
-"40\n"
+"04060101.xhp\n"
+"hd_id3151050\n"
+"127\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060184.xhp
-#, fuzzy
-msgctxt ""
-"04060184.xhp\n"
-"par_id3151232\n"
-"41\n"
-"help.text"
-msgid "<item type=\"input\">=AVERAGE(A1:A50)</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3148754\n"
-"help.text"
-msgid "<bookmark_value>AVERAGEA function</bookmark_value>"
-msgstr "Kthen vlerën llogjike SAKTË."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3148754\n"
-"157\n"
-"help.text"
-msgid "AVERAGEA"
-msgstr "MESATAREA"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3145138\n"
-"158\n"
+"04060101.xhp\n"
+"par_id3148925\n"
+"128\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MITTELWERTA\">Returns the average of the arguments. The value of a text is 0.</ahelp>"
+msgid "To find the shortest distance to school for the children in each grade in the above example (scroll up, please), enter the following formula in B16:"
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3153326\n"
-"159\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149734\n"
-"160\n"
+"04060101.xhp\n"
+"par_id3149161\n"
+"129\n"
"help.text"
-msgid "AVERAGEA(Value1; Value2; ... Value30)"
+msgid "<item type=\"input\">=DMIN(A1:E10;\"Distance to School\";A13:E14)</item>"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3155260\n"
-"161\n"
+"04060101.xhp\n"
+"par_id3148917\n"
+"130\n"
"help.text"
-msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+msgid "In row 14, under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. The shortest distance to school for each grade appears."
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3149504\n"
-"162\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060184.xhp
-#, fuzzy
-msgctxt ""
-"04060184.xhp\n"
-"par_id3150864\n"
-"163\n"
-"help.text"
-msgid "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3153933\n"
+"04060101.xhp\n"
+"bm_id3154274\n"
"help.text"
-msgid "<bookmark_value>MODE function</bookmark_value><bookmark_value>most common value</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>DAVERAGE function</bookmark_value> <bookmark_value>averages; in Calc databases</bookmark_value> <bookmark_value>calculating;averages in Calc databases</bookmark_value>"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153933\n"
-"43\n"
+"04060101.xhp\n"
+"hd_id3154274\n"
+"131\n"
"help.text"
-msgid "MODE"
-msgstr "MODE"
+msgid "DAVERAGE"
+msgstr "DMESATARE"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153085\n"
-"44\n"
+"04060101.xhp\n"
+"par_id3166453\n"
+"132\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MODALWERT\">Returns the most common value in a data set.</ahelp> If there are several values with the same frequency, it returns the smallest value. An error occurs when a value doesn't appear twice."
+msgid "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">DAVERAGE returns the average of the values of all cells (fields) in all rows (database records) that match the specified search criteria.</ahelp>"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153003\n"
-"45\n"
+"04060101.xhp\n"
+"hd_id3146955\n"
+"133\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3155950\n"
-"46\n"
-"help.text"
-msgid "MODE(Number1; Number2; ...Number30)"
-msgstr ""
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150337\n"
-"47\n"
+"04060101.xhp\n"
+"par_id3150710\n"
+"134\n"
"help.text"
-msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
+msgid "DAVERAGE(Database; DatabaseField; SearchCriteria)"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153571\n"
-"48\n"
+"04060101.xhp\n"
+"hd_id3152943\n"
+"135\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060184.xhp
-#, fuzzy
-msgctxt ""
-"04060184.xhp\n"
-"par_id3153733\n"
-"49\n"
-"help.text"
-msgid "<item type=\"input\">=MODE(A1:A50)</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3149879\n"
-"help.text"
-msgid "<bookmark_value>NEGBINOMDIST function</bookmark_value><bookmark_value>negative binomial distribution</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3149879\n"
-"51\n"
-"help.text"
-msgid "NEGBINOMDIST"
-msgstr "NEGBINOMDIST"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3155437\n"
-"52\n"
+"04060101.xhp\n"
+"par_id3149104\n"
+"136\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Returns the negative binomial distribution.</ahelp>"
+msgid "To find the average weight of all children of the same age in the above example (scroll up, please), enter the following formula in B16:"
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3145351\n"
-"53\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3150935\n"
-"54\n"
-"help.text"
-msgid "NEGBINOMDIST(X; R; SP)"
-msgstr "Tabelë kalkuluese"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153044\n"
-"55\n"
+"04060101.xhp\n"
+"par_id3153688\n"
+"137\n"
"help.text"
-msgid "<emph>X</emph> represents the value returned for unsuccessful tests."
+msgid "<item type=\"input\">=DAVERAGE(A1:E10;\"Weight\";A13:E14)</item>"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3151018\n"
-"56\n"
+"04060101.xhp\n"
+"par_id3155587\n"
+"138\n"
"help.text"
-msgid "<emph>R</emph> represents the value returned for successful tests."
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The average weight of all children of the same age appears."
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3148878\n"
-"57\n"
+"04060101.xhp\n"
+"bm_id3159269\n"
"help.text"
-msgid "<emph>SP</emph> is the probability of the success of an attempt."
+msgid "<bookmark_value>DPRODUCT function</bookmark_value> <bookmark_value>multiplying;cell contents in Calc databases</bookmark_value>"
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3149539\n"
-"58\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060184.xhp
-#, fuzzy
-msgctxt ""
-"04060184.xhp\n"
-"par_id3148770\n"
-"59\n"
-"help.text"
-msgid "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> returns 0.25."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3155516\n"
-"help.text"
-msgid "<bookmark_value>NORMINV function</bookmark_value><bookmark_value>normal distribution;inverse of</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3155516\n"
-"61\n"
+"04060101.xhp\n"
+"hd_id3159269\n"
+"139\n"
"help.text"
-msgid "NORMINV"
-msgstr "NORMINV"
+msgid "DPRODUCT"
+msgstr "DPRODUCT"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154634\n"
-"62\n"
+"04060101.xhp\n"
+"par_id3152879\n"
+"140\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_NORMINV\">Returns the inverse of the normal cumulative distribution.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_DBPRODUKT\">DPRODUCT multiplies all cells of a data range where the cell contents match the search criteria.</ahelp>"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153227\n"
-"63\n"
+"04060101.xhp\n"
+"hd_id3149966\n"
+"141\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3147534\n"
-"64\n"
-"help.text"
-msgid "NORMINV(Number; Mean; StDev)"
-msgstr ""
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154950\n"
-"65\n"
+"04060101.xhp\n"
+"par_id3154854\n"
+"142\n"
"help.text"
-msgid "<emph>Number</emph> represents the probability value used to determine the inverse normal distribution."
+msgid "DPRODUCT(Database; DatabaseField; SearchCriteria)"
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3150690\n"
-"66\n"
-"help.text"
-msgid "<emph>Mean</emph> represents the mean value in the normal distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3148594\n"
-"67\n"
-"help.text"
-msgid "<emph>StDev</emph> represents the standard deviation of the normal distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3155822\n"
-"68\n"
+"04060101.xhp\n"
+"hd_id3149802\n"
+"143\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153921\n"
-"69\n"
+"04060101.xhp\n"
+"par_id3148986\n"
+"144\n"
"help.text"
-msgid "<item type=\"input\">=NORMINV(0.9;63;5)</item> returns 69.41. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams."
+msgid "With the birthday party example above (scroll up, please), there is no meaningful application of this function."
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3153722\n"
+"04060101.xhp\n"
+"bm_id3148462\n"
"help.text"
-msgid "<bookmark_value>NORMDIST function</bookmark_value><bookmark_value>density function</bookmark_value>"
+msgid "<bookmark_value>DSTDEV function</bookmark_value> <bookmark_value>standard deviations in databases;based on a sample</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153722\n"
-"71\n"
+"04060101.xhp\n"
+"hd_id3148462\n"
+"145\n"
"help.text"
-msgid "NORMDIST"
-msgstr "NORMDIST"
+msgid "DSTDEV"
+msgstr "DSTDEV"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150386\n"
-"72\n"
+"04060101.xhp\n"
+"par_id3154605\n"
+"146\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_NORMVERT\">Returns the density function or the normal cumulative distribution.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_DBSTDABW\">DSTDEV calculates the standard deviation of a population based on a sample, using the numbers in a database column that match the given conditions.</ahelp> The records are treated as a sample of data. That means that the children in the example represent a cross section of all children. Note that a representative result can not be obtained from a sample of less than one thousand."
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3083282\n"
-"73\n"
+"04060101.xhp\n"
+"hd_id3149427\n"
+"147\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3150613\n"
-"74\n"
-"help.text"
-msgid "NORMDIST(Number; Mean; StDev; C)"
-msgstr ""
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149820\n"
-"75\n"
+"04060101.xhp\n"
+"par_id3148661\n"
+"148\n"
"help.text"
-msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
+msgid "DSTDEV(Database; DatabaseField; SearchCriteria)"
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3146063\n"
-"76\n"
-"help.text"
-msgid "<emph>Mean</emph> is the mean value of the distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-
-#: 04060184.xhp
-#, fuzzy
-msgctxt ""
-"04060184.xhp\n"
-"par_id3156295\n"
-"77\n"
-"help.text"
-msgid "<emph>StDev</emph> is the standard deviation of the distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3145080\n"
-"78\n"
-"help.text"
-msgid "<emph>C</emph> is optional. <emph>C</emph> = 0 calculates the density function, <emph>C</emph> = 1 calculates the distribution."
-msgstr "Grumbulluar. C=0 llogarit funksionin e dendësisë, C=1 shprëndarjen."
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3152972\n"
-"79\n"
+"04060101.xhp\n"
+"hd_id3153945\n"
+"149\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060184.xhp
-#, fuzzy
-msgctxt ""
-"04060184.xhp\n"
-"par_id3149283\n"
-"80\n"
-"help.text"
-msgid "<item type=\"input\">=NORMDIST(70;63;5;0)</item> returns 0.03."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060184.xhp
-#, fuzzy
-msgctxt ""
-"04060184.xhp\n"
-"par_id3149448\n"
-"81\n"
-"help.text"
-msgid "<item type=\"input\">=NORMDIST(70;63;5;1)</item> returns 0.92."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3152934\n"
-"help.text"
-msgid "<bookmark_value>PEARSON function</bookmark_value>"
-msgstr "Mjeti. Vlera e mjetit të shprëndarjes Poisson."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3152934\n"
-"83\n"
-"help.text"
-msgid "PEARSON"
-msgstr "PEARSON"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153216\n"
-"84\n"
+"04060101.xhp\n"
+"par_id3149934\n"
+"150\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_PEARSON\">Returns the Pearson product moment correlation coefficient r.</ahelp>"
+msgid "To find the standard deviation of the weight for all children of the same age in the example (scroll up, please), enter the following formula in B16:"
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3147081\n"
-"85\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3156133\n"
-"86\n"
+"04060101.xhp\n"
+"par_id3150630\n"
+"151\n"
"help.text"
-msgid "PEARSON(Data1; Data2)"
+msgid "<item type=\"input\">=DSTDEV(A1:E10;\"Weight\";A13:E14)</item>"
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3151272\n"
-"87\n"
-"help.text"
-msgid "<emph>Data1</emph> represents the array of the first data set."
-msgstr "Grup të dhënash në file"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3153279\n"
-"88\n"
-"help.text"
-msgid "<emph>Data2</emph> represents the array of the second data set."
-msgstr "Grup të dhënash në file"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3147567\n"
-"89\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3151187\n"
-"90\n"
+"04060101.xhp\n"
+"par_id3153536\n"
+"152\n"
"help.text"
-msgid "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> returns the Pearson correlation coefficient of both data sets."
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result shown is the standard deviation of the weight of all children of this age."
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3152806\n"
+"04060101.xhp\n"
+"bm_id3150429\n"
"help.text"
-msgid "<bookmark_value>PHI function</bookmark_value>"
-msgstr "Kthen vlerën e numrit Pi."
+msgid "<bookmark_value>DSTDEVP function</bookmark_value> <bookmark_value>standard deviations in databases;based on populations</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3152806\n"
-"92\n"
+"04060101.xhp\n"
+"hd_id3150429\n"
+"153\n"
"help.text"
-msgid "PHI"
-msgstr "PHI"
+msgid "DSTDEVP"
+msgstr "DSTDEVP"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3150254\n"
-"93\n"
+"04060101.xhp\n"
+"par_id3145598\n"
+"154\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_PHI\">Returns the values of the distribution function for a standard normal distribution.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_DBSTDABWN\">DSTDEVP calculates the standard deviation of a population based on all cells of a data range which match the search criteria.</ahelp> The records from the example are treated as the whole population."
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3154748\n"
-"94\n"
+"04060101.xhp\n"
+"hd_id3145307\n"
+"155\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3149976\n"
-"95\n"
-"help.text"
-msgid "PHI(Number)"
-msgstr "Numri i faqes"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3156108\n"
-"96\n"
+"04060101.xhp\n"
+"par_id3149484\n"
+"156\n"
"help.text"
-msgid "<emph>Number</emph> represents the value based on which the standard normal distribution is calculated."
+msgid "DSTDEVP(Database; DatabaseField; SearchCriteria)"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153621\n"
-"97\n"
+"04060101.xhp\n"
+"hd_id3153322\n"
+"157\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060184.xhp
-#, fuzzy
-msgctxt ""
-"04060184.xhp\n"
-"par_id3155849\n"
-"98\n"
-"help.text"
-msgid "<item type=\"input\">=PHI(2.25) </item>= 0.03"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060184.xhp
-#, fuzzy
-msgctxt ""
-"04060184.xhp\n"
-"par_id3143236\n"
-"99\n"
-"help.text"
-msgid "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060184.xhp
-#, fuzzy
-msgctxt ""
-"04060184.xhp\n"
-"par_id3149286\n"
-"100\n"
-"help.text"
-msgid "<item type=\"input\">=PHI(0)</item> = 0.4"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3153985\n"
-"help.text"
-msgid "<bookmark_value>POISSON function</bookmark_value>"
-msgstr "Mjeti. Vlera e mjetit të shprëndarjes Poisson."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3153985\n"
-"102\n"
-"help.text"
-msgid "POISSON"
-msgstr "POISSON"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154298\n"
-"103\n"
+"04060101.xhp\n"
+"par_id3155431\n"
+"158\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_POISSON\">Returns the Poisson distribution.</ahelp>"
+msgid "To find the standard deviation of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3159183\n"
-"104\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3146093\n"
-"105\n"
-"help.text"
-msgid "POISSON(Number; Mean; C)"
-msgstr "Mjeti. Vlera e mjetit të shprëndarjes Poisson."
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3147253\n"
-"106\n"
+"04060101.xhp\n"
+"par_id3148411\n"
+"159\n"
"help.text"
-msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
+msgid "<item type=\"input\">=DSTDEVP(A1:E10;\"Weight\";A13:E14)</item>"
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3151177\n"
-"107\n"
-"help.text"
-msgid "<emph>Mean</emph> represents the middle value of the Poisson distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149200\n"
-"108\n"
+"04060101.xhp\n"
+"par_id3143271\n"
+"160\n"
"help.text"
-msgid "<emph>C</emph> (optional) = 0 or False calculates the density function; <emph>C</emph> = 1 or True calculates the distribution. When omitted, the default value True is inserted when you save the document, for best compatibility with other programs and older versions of %PRODUCTNAME."
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result is the standard deviation of the weight for all same-aged children whose weight was checked."
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3159347\n"
-"109\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060184.xhp
-#, fuzzy
-msgctxt ""
-"04060184.xhp\n"
-"par_id3150113\n"
-"110\n"
-"help.text"
-msgid "<item type=\"input\">=POISSON(60;50;1)</item> returns 0.93."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3153100\n"
+"04060101.xhp\n"
+"bm_id3154794\n"
"help.text"
-msgid "<bookmark_value>PERCENTILE function</bookmark_value>"
-msgstr "Vlera tanishme. Vlera e tanishme e investimit."
+msgid "<bookmark_value>DSUM function</bookmark_value> <bookmark_value>calculating;sums in Calc databases</bookmark_value> <bookmark_value>sums;cells in Calc databases</bookmark_value>"
+msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3153100\n"
-"112\n"
+"04060101.xhp\n"
+"hd_id3154794\n"
+"161\n"
"help.text"
-msgid "PERCENTILE"
-msgstr "PERCENTILE"
+msgid "DSUM"
+msgstr "DSUM"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154940\n"
-"113\n"
+"04060101.xhp\n"
+"par_id3149591\n"
+"162\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_QUANTIL\">Returns the alpha-percentile of data values in an array.</ahelp> A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (alpha=1) of a data series. For <item type=\"literal\">Alpha</item> = 25%, the percentile means the first quartile; <item type=\"literal\">Alpha</item> = 50% is the MEDIAN."
+msgid "<ahelp hid=\"HID_FUNC_DBSUMME\">DSUM returns the total of all cells in a database field in all rows (records) that match the specified search criteria.</ahelp>"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3150531\n"
-"114\n"
+"04060101.xhp\n"
+"hd_id3146128\n"
+"163\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3148813\n"
-"115\n"
-"help.text"
-msgid "PERCENTILE(Data; Alpha)"
-msgstr "Shto të dhënat si:"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3153054\n"
-"116\n"
-"help.text"
-msgid "<emph>Data</emph> represents the array of data."
-msgstr "Grup të dhënash në file"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3154212\n"
-"117\n"
+"04060101.xhp\n"
+"par_id3150989\n"
+"164\n"
"help.text"
-msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
+msgid "DSUM(Database; DatabaseField; SearchCriteria)"
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3154290\n"
-"118\n"
+"04060101.xhp\n"
+"hd_id3159079\n"
+"165\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3159147\n"
-"119\n"
-"help.text"
-msgid "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> represents the value in the data set, which equals 10% of the total data scale in A1:A50."
-msgstr ""
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"bm_id3148807\n"
-"help.text"
-msgid "<bookmark_value>PERCENTRANK function</bookmark_value>"
-msgstr "Vlera tanishme. Vlera e tanishme e investimit."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3148807\n"
-"121\n"
-"help.text"
-msgid "PERCENTRANK"
-msgstr "PERCENTRANK"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3153573\n"
-"122\n"
+"04060101.xhp\n"
+"par_id3152766\n"
+"166\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">Returns the percentage rank of a value in a sample.</ahelp>"
+msgid "To find the length of the combined distance to school of all children at Joe's birthday party (scroll up, please) who are in second grade, enter the following formula in B16:"
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3147512\n"
-"123\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3147238\n"
-"124\n"
-"help.text"
-msgid "PERCENTRANK(Data; Value)"
-msgstr "Definon llojin e të dhënës së një vlere."
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3154266\n"
-"125\n"
-"help.text"
-msgid "<emph>Data</emph> represents the array of data in the sample."
-msgstr "Grup të dhënash në file"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3148475\n"
-"126\n"
+"04060101.xhp\n"
+"par_id3151312\n"
+"167\n"
"help.text"
-msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
+msgid "<item type=\"input\">=DSUM(A1:E10;\"Distance to School\";A13:E14)</item>"
msgstr ""
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3155364\n"
-"127\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3149163\n"
-"128\n"
+"04060101.xhp\n"
+"par_id3150596\n"
+"168\n"
"help.text"
-msgid "<item type=\"input\">=PERCENTRANK(A1:A50;50)</item> returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear."
+msgid "Enter <item type=\"input\">2</item> in row 14 under Grade. The sum (1950) of the distances to school of all the children who are in second grade is displayed."
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"bm_id3166442\n"
+"04060101.xhp\n"
+"bm_id3155614\n"
"help.text"
-msgid "<bookmark_value>QUARTILE function</bookmark_value>"
+msgid "<bookmark_value>DVAR function</bookmark_value> <bookmark_value>variances;based on samples</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3166442\n"
-"130\n"
+"04060101.xhp\n"
+"hd_id3155614\n"
+"170\n"
"help.text"
-msgid "QUARTILE"
-msgstr "QUARTILE"
+msgid "DVAR"
+msgstr "DVAR"
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"par_id3146958\n"
-"131\n"
+"04060101.xhp\n"
+"par_id3154418\n"
+"171\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_QUARTILE\">Returns the quartile of a data set.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_DBVARIANZ\">DVAR returns the variance of all cells of a database field in all records that match the specified search criteria.</ahelp> The records from the example are treated as a sample of data. A representative result cannot be obtained from a sample population of less than one thousand."
msgstr ""
-#: 04060184.xhp
+#: 04060101.xhp
msgctxt ""
-"04060184.xhp\n"
-"hd_id3152942\n"
-"132\n"
+"04060101.xhp\n"
+"hd_id3154825\n"
+"172\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3153684\n"
-"133\n"
-"help.text"
-msgid "QUARTILE(Data; Type)"
-msgstr "Pwrzirje e tipit tw sw dhwnave"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3153387\n"
-"134\n"
-"help.text"
-msgid "<emph>Data</emph> represents the array of data in the sample."
-msgstr "Grup të dhënash në file"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3155589\n"
-"135\n"
-"help.text"
-msgid "<emph>Type</emph> represents the type of quartile. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
-msgstr ""
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"hd_id3149103\n"
-"136\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060184.xhp
-msgctxt ""
-"04060184.xhp\n"
-"par_id3159276\n"
-"137\n"
-"help.text"
-msgid "<item type=\"input\">=QUARTILE(A1:A50;2)</item> returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50."
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"tit\n"
-"help.text"
-msgid "Operators in $[officename] Calc"
-msgstr "~Burimi i të dhënave i regjistruar në %PRODUCTNAME"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"bm_id3156445\n"
-"help.text"
-msgid "<bookmark_value>formulas; operators</bookmark_value><bookmark_value>operators; formula functions</bookmark_value><bookmark_value>division sign, see also operators</bookmark_value><bookmark_value>multiplication sign, see also operators</bookmark_value><bookmark_value>minus sign, see also operators</bookmark_value><bookmark_value>plus sign, see also operators</bookmark_value><bookmark_value>text operators</bookmark_value><bookmark_value>comparisons;operators in Calc</bookmark_value><bookmark_value>arithmetical operators</bookmark_value><bookmark_value>reference operators</bookmark_value>"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"hd_id3156445\n"
-"1\n"
-"help.text"
-msgid "Operators in $[officename] Calc"
-msgstr "~Burimi i të dhënave i regjistruar në %PRODUCTNAME"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3155812\n"
-"2\n"
-"help.text"
-msgid "You can use the following operators in $[officename] Calc:"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"hd_id3153066\n"
-"3\n"
-"help.text"
-msgid "Arithmetical Operators"
-msgstr "Operatërot Unar/Binar"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3148601\n"
-"4\n"
-"help.text"
-msgid "These operators return numerical results."
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3144768\n"
-"5\n"
-"help.text"
-msgid "Operator"
-msgstr "Operator"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3157982\n"
-"6\n"
-"help.text"
-msgid "Name"
-msgstr "Emri"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3159096\n"
-"7\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149126\n"
-"8\n"
-"help.text"
-msgid "+ (Plus)"
-msgstr "Plus"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150892\n"
-"9\n"
-"help.text"
-msgid "Addition"
-msgstr "Mbledhja +"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153247\n"
-"10\n"
-"help.text"
-msgid "1+1"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3159204\n"
-"11\n"
-"help.text"
-msgid "- (Minus)"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3145362\n"
-"12\n"
-"help.text"
-msgid "Subtraction"
-msgstr "Zbritja -"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153554\n"
-"13\n"
-"help.text"
-msgid "2-1"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153808\n"
-"14\n"
-"help.text"
-msgid "- (Minus)"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3151193\n"
-"15\n"
-"help.text"
-msgid "Negation"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3154712\n"
-"16\n"
-"help.text"
-msgid "-5"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149873\n"
-"17\n"
-"help.text"
-msgid "* (asterisk)"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3147504\n"
-"18\n"
-"help.text"
-msgid "Multiplication"
-msgstr "Shumëzimi (x)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149055\n"
-"19\n"
-"help.text"
-msgid "2*2"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3151341\n"
-"20\n"
-"help.text"
-msgid "/ (Slash)"
-msgstr "Pjesëtim (/)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3159260\n"
-"21\n"
-"help.text"
-msgid "Division"
-msgstr "Pjesëtim (÷)"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153027\n"
-"22\n"
-"help.text"
-msgid "9/3"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3156396\n"
-"23\n"
-"help.text"
-msgid "% (Percent)"
-msgstr "Përqindja"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150372\n"
-"24\n"
-"help.text"
-msgid "Percent"
-msgstr "Përqindja"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3145632\n"
-"25\n"
-"help.text"
-msgid "15%"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149722\n"
-"26\n"
-"help.text"
-msgid "^ (Caret)"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3159127\n"
-"27\n"
-"help.text"
-msgid "Exponentiation"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3157873\n"
-"28\n"
-"help.text"
-msgid "3^2"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"hd_id3152981\n"
-"29\n"
-"help.text"
-msgid "Comparative operators"
-msgstr "Operatërot Unar/Binar"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3157902\n"
-"30\n"
-"help.text"
-msgid "These operators return either true or false."
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149889\n"
-"31\n"
-"help.text"
-msgid "Operator"
-msgstr "Operator"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150743\n"
-"32\n"
-"help.text"
-msgid "Name"
-msgstr "Emri"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3146877\n"
-"33\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3148888\n"
-"34\n"
-"help.text"
-msgid "= (equal sign)"
-msgstr "Është baraz me"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3154845\n"
-"35\n"
-"help.text"
-msgid "Equal"
-msgstr "Baraz"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3154546\n"
-"36\n"
-"help.text"
-msgid "A1=B1"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3154807\n"
-"37\n"
-"help.text"
-msgid "> (Greater than)"
-msgstr "më e madhe se"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3148580\n"
-"38\n"
-"help.text"
-msgid "Greater than"
-msgstr "më e madhe se"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3145138\n"
-"39\n"
-"help.text"
-msgid "A1>B1"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149507\n"
-"40\n"
-"help.text"
-msgid "< (Less than)"
-msgstr "më pak se"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150145\n"
-"41\n"
-"help.text"
-msgid "Less than"
-msgstr "më pak se"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150901\n"
-"42\n"
-"help.text"
-msgid "A1<B1"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153078\n"
-"43\n"
-"help.text"
-msgid ">= (Greater than or equal to)"
-msgstr "më e madhe se ose baraz me"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150866\n"
-"44\n"
-"help.text"
-msgid "Greater than or equal to"
-msgstr "më e madhe se ose baraz me"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153111\n"
-"45\n"
-"help.text"
-msgid "A1>=B1"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153004\n"
-"46\n"
-"help.text"
-msgid "<= (Less than or equal to)"
-msgstr "më pak se ose barazi me"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150335\n"
-"47\n"
-"help.text"
-msgid "Less than or equal to"
-msgstr "më pak se ose barazi me"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3148760\n"
-"48\n"
-"help.text"
-msgid "A1<=B1"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3157994\n"
-"49\n"
-"help.text"
-msgid "<> (Inequality)"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150019\n"
-"50\n"
-"help.text"
-msgid "Inequality"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149878\n"
-"51\n"
-"help.text"
-msgid "A1<>B1"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"hd_id3145241\n"
-"52\n"
-"help.text"
-msgid "Text operators"
-msgstr "Vizato tekstin"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3155438\n"
-"53\n"
-"help.text"
-msgid "The operator combines separate texts into one text."
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150566\n"
-"54\n"
-"help.text"
-msgid "Operator"
-msgstr "Operator"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153048\n"
-"55\n"
-"help.text"
-msgid "Name"
-msgstr "Emri"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149001\n"
-"56\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3148769\n"
-"57\n"
-"help.text"
-msgid "& (And)"
-msgstr "dhe"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"bm_id3157975\n"
-"help.text"
-msgid "<bookmark_value>text concatenation AND</bookmark_value>"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3157975\n"
-"58\n"
-"help.text"
-msgid "text concatenation AND"
-msgstr "Teksti Perëndimor dhe pikëzimi Aziatik"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3157993\n"
-"59\n"
-"help.text"
-msgid "\"Sun\" & \"day\" is \"Sunday\""
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"hd_id3153550\n"
-"60\n"
-"help.text"
-msgid "Reference operators"
-msgstr "Deri në referencë"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3149024\n"
-"61\n"
-"help.text"
-msgid "These operators return a cell range of zero, one or more cells."
-msgstr ""
-
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id2324900\n"
+"04060101.xhp\n"
+"par_id3156138\n"
+"173\n"
"help.text"
-msgid "Range has the highest precedence, then intersection, and then finally union."
+msgid "DVAR(Database; DatabaseField; SearchCriteria)"
msgstr ""
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3158416\n"
-"62\n"
-"help.text"
-msgid "Operator"
-msgstr "Operator"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3152822\n"
-"63\n"
-"help.text"
-msgid "Name"
-msgstr "Emri"
-
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3154949\n"
-"64\n"
+"04060101.xhp\n"
+"hd_id3151257\n"
+"174\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3156257\n"
-"65\n"
-"help.text"
-msgid ": (Colon)"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3153924\n"
-"66\n"
-"help.text"
-msgid "Range"
-msgstr "Brez"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3148432\n"
-"67\n"
-"help.text"
-msgid "A1:C108"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3152592\n"
-"68\n"
-"help.text"
-msgid "! (Exclamation point)"
-msgstr "Shëni pikën"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"bm_id3150606\n"
-"help.text"
-msgid "<bookmark_value>intersection operator</bookmark_value>"
-msgstr ""
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3150606\n"
-"69\n"
-"help.text"
-msgid "Intersection"
-msgstr "Prerje"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id3083445\n"
-"70\n"
-"help.text"
-msgid "SUM(A1:B6!B5:C12)"
-msgstr ""
-
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id3150385\n"
-"71\n"
+"04060101.xhp\n"
+"par_id3153701\n"
+"175\n"
"help.text"
-msgid "Calculates the sum of all cells in the intersection; in this example, the result yields the sum of cells B5 and B6."
+msgid "To find the variance of the weight of all children of the same age of the above example (scroll up, please), enter the following formula in B16:"
msgstr ""
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id4003723\n"
-"help.text"
-msgid "~ (Tilde)"
-msgstr "Karakteri ~"
-
-#: 04060199.xhp
-msgctxt ""
-"04060199.xhp\n"
-"par_id838953\n"
-"help.text"
-msgid "Concatenation or union"
-msgstr "~Prano ose Refuzo..."
-
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id2511978\n"
+"04060101.xhp\n"
+"par_id3153676\n"
+"176\n"
"help.text"
-msgid "Takes two references and returns a reference list, which is a concatenation of the left reference followed by the right reference. Double entries are referenced twice. See note below this table."
+msgid "<item type=\"input\">=DVAR(A1:E10;\"Weight\";A13:E14)</item>"
msgstr ""
-#: 04060199.xhp
+#: 04060101.xhp
msgctxt ""
-"04060199.xhp\n"
-"par_id181890\n"
+"04060101.xhp\n"
+"par_id3153798\n"
+"177\n"
"help.text"
-msgid "Reference concatenation using a tilde character was implemented lately. When a formula with the tilde operator exists in a document that is opened in old versions of the software, an error is returned. A reference list is not allowed inside an array expression."
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. You will see as a result the variance of the weight values for all children of this age."
msgstr ""
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"tit\n"
-"help.text"
-msgid "WEEKDAY"
-msgstr "WEEKDAY"
-
-#: func_weekday.xhp
+#: 04060101.xhp
msgctxt ""
-"func_weekday.xhp\n"
-"bm_id3154925\n"
+"04060101.xhp\n"
+"bm_id3153880\n"
"help.text"
-msgid "<bookmark_value>WEEKDAY function</bookmark_value>"
+msgid "<bookmark_value>DVARP function</bookmark_value> <bookmark_value>variances;based on populations</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: func_weekday.xhp
+#: 04060101.xhp
msgctxt ""
-"func_weekday.xhp\n"
-"hd_id3154925\n"
-"136\n"
+"04060101.xhp\n"
+"hd_id3153880\n"
+"178\n"
"help.text"
-msgid "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link></variable>"
-msgstr ""
+msgid "DVARP"
+msgstr "DVARP"
-#: func_weekday.xhp
+#: 04060101.xhp
msgctxt ""
-"func_weekday.xhp\n"
-"par_id3154228\n"
-"137\n"
+"04060101.xhp\n"
+"par_id3155119\n"
+"179\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Returns the day of the week for the given date value.</ahelp> The day is returned as an integer between 1 (Sunday) and 7 (Saturday) if no type or type=1 is specified. If type=2, numbering begins at Monday=1; and if type=3 numbering begins at Monday=0."
+msgid "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">DVARP calculates the variance of all cell values in a database field in all records that match the specified search criteria.</ahelp> The records are from the example are treated as an entire population."
msgstr ""
-#: func_weekday.xhp
+#: 04060101.xhp
msgctxt ""
-"func_weekday.xhp\n"
-"hd_id3147217\n"
-"138\n"
+"04060101.xhp\n"
+"hd_id3145774\n"
+"180\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3149033\n"
-"139\n"
-"help.text"
-msgid "WEEKDAY(Number; Type)"
-msgstr "Zgjedh tipin e dokumentit"
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3149046\n"
-"140\n"
-"help.text"
-msgid "<emph>Number</emph>, as a date value, is a decimal for which the weekday is to be returned."
-msgstr ""
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3154394\n"
-"141\n"
-"help.text"
-msgid "<emph>Type</emph> determines the type of calculation. For Type=1, the weekdays are counted starting from Sunday (this is the default even when the Type parameter is missing). For Type=2, the weekdays are counted starting from Monday=1. For Type=3, the weekdays are counted starting from Monday=0."
-msgstr ""
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3156188\n"
-"142\n"
-"help.text"
-msgid "These values apply only to the standard date format that you select under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph>."
-msgstr ""
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"hd_id3153836\n"
-"143\n"
-"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3150317\n"
-"144\n"
-"help.text"
-msgid "=WEEKDAY(\"2000-06-14\") returns 4 (the Type parameter is missing, therefore the standard count is used. The standard count starts with Sunday as day number 1. June 14, 2000 was a Wednesday and therefore day number 4)."
-msgstr ""
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3153174\n"
-"145\n"
-"help.text"
-msgid "=WEEKDAY(\"1996-07-24\";2) returns 3 (the Type parameter is 2, therefore Monday is day number 1. July 24, 1996 was a Wednesday and therefore day number 3)."
-msgstr ""
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3153525\n"
-"146\n"
-"help.text"
-msgid "=WEEKDAY(\"1996-07-24\";1) returns 4 (the Type parameter is 1, therefore Sunday is day number 1. July 24, 1996 was a Wednesday and therefore day number 4)."
-msgstr ""
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3150575\n"
-"147\n"
-"help.text"
-msgid "=WEEKDAY(NOW()) returns the number of the current day."
-msgstr ""
-
-#: func_weekday.xhp
-msgctxt ""
-"func_weekday.xhp\n"
-"par_id3150588\n"
-"171\n"
-"help.text"
-msgid "To obtain a function indicating whether a day in A1 is a business day, use the IF and WEEKDAY functions as follows: <br/>IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")"
-msgstr ""
-
-#: 12070100.xhp
-msgctxt ""
-"12070100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Consolidate by"
-msgstr "Konsoliduar nga"
-
-#: 12070100.xhp
-msgctxt ""
-"12070100.xhp\n"
-"hd_id3151210\n"
-"1\n"
-"help.text"
-msgid "Consolidate by"
-msgstr "Konsoliduar nga"
-
-#: 12070100.xhp
-msgctxt ""
-"12070100.xhp\n"
-"hd_id3125864\n"
-"2\n"
-"help.text"
-msgid "Consolidate by"
-msgstr "Konsoliduar nga"
-
-#: 12070100.xhp
-msgctxt ""
-"12070100.xhp\n"
-"par_id3154909\n"
-"3\n"
-"help.text"
-msgid "Use this section if the cell ranges that you want to consolidate contain labels. You only need to select these options if the consolidation ranges contain similar labels and the data arranged is arranged differently."
-msgstr ""
-
-#: 12070100.xhp
-msgctxt ""
-"12070100.xhp\n"
-"hd_id3153968\n"
-"4\n"
-"help.text"
-msgid "Row labels"
-msgstr "~Emërtimi i rreshtave"
-
-#: 12070100.xhp
-msgctxt ""
-"12070100.xhp\n"
-"par_id3150441\n"
-"5\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYROW\" visibility=\"visible\">Uses the row labels to arrange the consolidated data.</ahelp>"
-msgstr ""
-
-#: 12070100.xhp
-msgctxt ""
-"12070100.xhp\n"
-"hd_id3146976\n"
-"6\n"
-"help.text"
-msgid "Column labels"
-msgstr "Përmban ~emërtimet e shtyllave"
-
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"par_id3155411\n"
-"7\n"
+"04060101.xhp\n"
+"par_id3153776\n"
+"181\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYCOL\" visibility=\"visible\">Uses the column labels to arrange the consolidated data.</ahelp>"
+msgid "DVARP(Database; DatabaseField; SearchCriteria)"
msgstr ""
-#: 12070100.xhp
-msgctxt ""
-"12070100.xhp\n"
-"hd_id3153191\n"
-"12\n"
-"help.text"
-msgid "Options"
-msgstr "Opcionet"
-
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"hd_id3159154\n"
-"8\n"
+"04060101.xhp\n"
+"hd_id3151110\n"
+"182\n"
"help.text"
-msgid "Link to source data"
-msgstr "~Lidhi me të dhënat burimore"
+msgid "Example"
+msgstr "Shembull"
-#: 12070100.xhp
+#: 04060101.xhp
msgctxt ""
-"12070100.xhp\n"
-"par_id3146986\n"
-"9\n"
+"04060101.xhp\n"
+"par_id3147099\n"
+"183\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_REFS\" visibility=\"visible\">Links the data in the consolidation range to the source data, and automatically updates the results of the consolidation when the source data is changed.</ahelp>"
+msgid "To find the variance of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
msgstr ""
-#: 12070100.xhp
-msgctxt ""
-"12070100.xhp\n"
-"hd_id3163708\n"
-"10\n"
-"help.text"
-msgid "More <<"
-msgstr "Më shumë"
-
-#: 12070100.xhp
-msgctxt ""
-"12070100.xhp\n"
-"par_id3151118\n"
-"11\n"
-"help.text"
-msgid "Hides the additional options."
-msgstr "Shiriti i opcioneve /Grafikat"
-
-#: 05080100.xhp
-msgctxt ""
-"05080100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Define"
-msgstr "Përcakto"
-
-#: 05080100.xhp
+#: 04060101.xhp
msgctxt ""
-"05080100.xhp\n"
-"hd_id3145673\n"
-"1\n"
+"04060101.xhp\n"
+"par_id3147322\n"
+"184\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Define</link>"
+msgid "<item type=\"input\">=DVARP(A1:E10;\"Weight\";A13:E14)</item>"
msgstr ""
-#: 05080100.xhp
+#: 04060101.xhp
msgctxt ""
-"05080100.xhp\n"
-"par_id3153896\n"
-"2\n"
+"04060101.xhp\n"
+"par_id3146902\n"
+"185\n"
"help.text"
-msgid "<ahelp hid=\".uno:DefinePrintArea\">Defines an active cell or selected cell area as the print range.</ahelp>"
+msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The variance of the weight values for all children of this age attending Joe's birthday party appears."
msgstr ""
#: 04060102.xhp
@@ -11535,6066 +5954,2199 @@ msgctxt ""
msgid "<embedvar href=\"text/scalc/01/func_timevalue.xhp#timevalue\"/>"
msgstr ""
-#: 05030000.xhp
-msgctxt ""
-"05030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Row"
-msgstr "Rresht"
-
-#: 05030000.xhp
-msgctxt ""
-"05030000.xhp\n"
-"hd_id3147228\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Row</link>"
-msgstr ""
-
-#: 05030000.xhp
-msgctxt ""
-"05030000.xhp\n"
-"par_id3154685\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Sets the row height and hides or shows selected rows.</ahelp>"
-msgstr ""
-
-#: 05030000.xhp
-msgctxt ""
-"05030000.xhp\n"
-"hd_id3155132\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Height</link>"
-msgstr ""
-
-#: 05030000.xhp
-msgctxt ""
-"05030000.xhp\n"
-"hd_id3155854\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal Height\">Optimal Height</link>"
-msgstr ""
-
-#: func_days.xhp
+#: 04060103.xhp
msgctxt ""
-"func_days.xhp\n"
+"04060103.xhp\n"
"tit\n"
"help.text"
-msgid "DAYS"
-msgstr "DITËT"
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"bm_id3151328\n"
-"help.text"
-msgid "<bookmark_value>DAYS function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"hd_id3151328\n"
-"116\n"
-"help.text"
-msgid "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</link></variable>"
-msgstr ""
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"par_id3155139\n"
-"117\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TAGE\">Calculates the difference between two date values.</ahelp> The result returns the number of days between the two days."
-msgstr ""
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"hd_id3155184\n"
-"118\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"par_id3149578\n"
-"119\n"
-"help.text"
-msgid "DAYS(Date2; Date1)"
-msgstr "Offset në ditë:"
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"par_id3151376\n"
-"120\n"
-"help.text"
-msgid "<emph>Date1</emph> is the start date, <emph>Date2</emph> is the end date. If <emph>Date2</emph> is an earlier date than <emph>Date1</emph> the result is a negative number."
-msgstr ""
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"hd_id3151001\n"
-"121\n"
-"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
-
-#: func_days.xhp
-msgctxt ""
-"func_days.xhp\n"
-"par_id3159101\n"
-"123\n"
-"help.text"
-msgid "=DAYS(\"2010-01-01\"; NOW()) returns the number of days from today until January 1, 2010."
-msgstr ""
+msgid "Financial Functions Part One"
+msgstr "Funksionet statistikore"
-#: func_days.xhp
+#: 04060103.xhp
msgctxt ""
-"func_days.xhp\n"
-"par_id3163720\n"
-"172\n"
+"04060103.xhp\n"
+"bm_id3143284\n"
"help.text"
-msgid "=DAYS(\"1990-10-10\";\"1980-10-10\") returns 3652 days."
+msgid "<bookmark_value>financial functions</bookmark_value> <bookmark_value>functions; financial functions</bookmark_value> <bookmark_value>Function Wizard; financial</bookmark_value> <bookmark_value>amortizations, see also depreciations</bookmark_value>"
msgstr ""
-#: 07080000.xhp
-msgctxt ""
-"07080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Split"
-msgstr "Ndaje"
-
-#: 07080000.xhp
+#: 04060103.xhp
msgctxt ""
-"07080000.xhp\n"
-"hd_id3163800\n"
+"04060103.xhp\n"
+"hd_id3143284\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">Split</link>"
-msgstr ""
+msgid "Financial Functions Part One"
+msgstr "Funksionet statistikore"
-#: 07080000.xhp
+#: 04060103.xhp
msgctxt ""
-"07080000.xhp\n"
-"par_id3150084\n"
+"04060103.xhp\n"
+"par_id3149095\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:SplitWindow\" visibility=\"visible\">Divides the current window at the top left corner of the active cell.</ahelp>"
-msgstr ""
-
-#: 07080000.xhp
-msgctxt ""
-"07080000.xhp\n"
-"par_id3154910\n"
-"3\n"
-"help.text"
-msgid "You can also use the mouse to split the window horizontally or vertically. To do this, drag the thick black line located directly above the vertical scrollbar or directly to the right of the horizontal scrollbar into the window. A thick black line will show where the window is split."
-msgstr ""
-
-#: 07080000.xhp
-msgctxt ""
-"07080000.xhp\n"
-"par_id3149263\n"
-"4\n"
-"help.text"
-msgid "A split window has its own scrollbars in each partial section; by contrast, <link href=\"text/scalc/01/07090000.xhp\" name=\"fixed window sections\">fixed window sections</link> are not scrollable."
-msgstr ""
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"tit\n"
-"help.text"
-msgid "AutoOutline"
-msgstr "AutoPërvijimi"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"hd_id3150275\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">AutoOutline</link>"
+msgid "<variable id=\"finanztext\">This category contains the mathematical finance functions of <item type=\"productname\">%PRODUCTNAME</item> Calc. </variable>"
msgstr ""
-#: 12080500.xhp
+#: 04060103.xhp
msgctxt ""
-"12080500.xhp\n"
-"par_id3145069\n"
-"2\n"
+"04060103.xhp\n"
+"bm_id3153366\n"
"help.text"
-msgid "<ahelp hid=\".uno:AutoOutline\">If the selected cell range contains formulas or references, $[officename] automatically outlines the selection.</ahelp>"
-msgstr ""
+msgid "<bookmark_value>AMORDEGRC function</bookmark_value> <bookmark_value>depreciations;degressive amortizations</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
-#: 12080500.xhp
+#: 04060103.xhp
msgctxt ""
-"12080500.xhp\n"
-"par_id3148798\n"
-"10\n"
+"04060103.xhp\n"
+"hd_id3153366\n"
+"359\n"
"help.text"
-msgid "For example, consider the following table:"
+msgid "AMORDEGRC"
msgstr ""
-#: 12080500.xhp
+#: 04060103.xhp
msgctxt ""
-"12080500.xhp\n"
-"par_id3154123\n"
-"11\n"
+"04060103.xhp\n"
+"par_id3147434\n"
+"360\n"
"help.text"
-msgid "January"
+msgid "<ahelp hid=\"HID_AAI_FUNC_AMORDEGRC\">Calculates the amount of depreciation for a settlement period as degressive amortization.</ahelp> Unlike AMORLINC, a depreciation coefficient that is independent of the depreciable life is used here."
msgstr ""
-#: 12080500.xhp
+#: 04060103.xhp
msgctxt ""
-"12080500.xhp\n"
-"par_id3154011\n"
-"12\n"
+"04060103.xhp\n"
+"hd_id3155855\n"
+"361\n"
"help.text"
-msgid "February"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12080500.xhp
+#: 04060103.xhp
msgctxt ""
-"12080500.xhp\n"
-"par_id3152460\n"
-"13\n"
+"04060103.xhp\n"
+"par_id3147427\n"
+"362\n"
"help.text"
-msgid "March"
+msgid "AMORDEGRC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
msgstr ""
-#: 12080500.xhp
+#: 04060103.xhp
msgctxt ""
-"12080500.xhp\n"
-"par_id3146119\n"
-"14\n"
+"04060103.xhp\n"
+"par_id3147125\n"
+"363\n"
"help.text"
-msgid "1st Quarter"
-msgstr "Tasti i 1rë"
+msgid "<emph>Cost</emph> is the acquisition costs."
+msgstr "Shpenzimet e përvetsimit. Shpenzimi fillestar i pasurisë."
-#: 12080500.xhp
+#: 04060103.xhp
msgctxt ""
-"12080500.xhp\n"
-"par_id3155854\n"
-"15\n"
+"04060103.xhp\n"
+"par_id3151074\n"
+"364\n"
"help.text"
-msgid "April"
-msgstr ""
+msgid "<emph>DatePurchased</emph> is the date of acquisition."
+msgstr "Shpenzimet e përvetsimit. Shpenzimi fillestar i pasurisë."
-#: 12080500.xhp
+#: 04060103.xhp
msgctxt ""
-"12080500.xhp\n"
-"par_id3148575\n"
-"16\n"
+"04060103.xhp\n"
+"par_id3144765\n"
+"365\n"
"help.text"
-msgid "May"
-msgstr ""
+msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-#: 12080500.xhp
+#: 04060103.xhp
msgctxt ""
-"12080500.xhp\n"
-"par_id3145271\n"
-"17\n"
+"04060103.xhp\n"
+"par_id3156286\n"
+"366\n"
"help.text"
-msgid "June"
-msgstr ""
+msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
-#: 12080500.xhp
+#: 04060103.xhp
msgctxt ""
-"12080500.xhp\n"
-"par_id3145648\n"
-"18\n"
+"04060103.xhp\n"
+"par_id3153415\n"
+"367\n"
"help.text"
-msgid "2nd Quarter"
-msgstr "Tasti i 2të"
+msgid "<emph>Period</emph> is the settlement period to be considered."
+msgstr "Numri binar qw do tw shndwrrohet (si tekst)"
-#: 12080500.xhp
+#: 04060103.xhp
msgctxt ""
-"12080500.xhp\n"
-"par_id3153876\n"
-"19\n"
+"04060103.xhp\n"
+"par_id3155064\n"
+"368\n"
"help.text"
-msgid "100"
-msgstr "Pamja 100%"
+msgid "<emph>Rate</emph> is the rate of depreciation."
+msgstr "E kthen tarifwn efektive vjetore tw interesit"
-#: 12080500.xhp
+#: 04060103.xhp
msgctxt ""
-"12080500.xhp\n"
-"par_id3145251\n"
-"20\n"
+"04060103.xhp\n"
+"bm_id3153765\n"
"help.text"
-msgid "120"
-msgstr "{120}{70}{70}{70}{70}"
+msgid "<bookmark_value>AMORLINC function</bookmark_value> <bookmark_value>depreciations;linear amortizations</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
-#: 12080500.xhp
+#: 04060103.xhp
msgctxt ""
-"12080500.xhp\n"
-"par_id3149400\n"
-"21\n"
+"04060103.xhp\n"
+"hd_id3153765\n"
+"369\n"
"help.text"
-msgid "130"
+msgid "AMORLINC"
msgstr ""
-#: 12080500.xhp
+#: 04060103.xhp
msgctxt ""
-"12080500.xhp\n"
-"par_id3150328\n"
-"22\n"
+"04060103.xhp\n"
+"par_id3159264\n"
+"370\n"
"help.text"
-msgid "350"
+msgid "<ahelp hid=\"HID_AAI_FUNC_AMORLINC\">Calculates the amount of depreciation for a settlement period as linear amortization. If the capital asset is purchased during the settlement period, the proportional amount of depreciation is considered.</ahelp>"
msgstr ""
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3155443\n"
-"23\n"
-"help.text"
-msgid "100"
-msgstr "Pamja 100%"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3153713\n"
-"24\n"
-"help.text"
-msgid "100"
-msgstr "Pamja 100%"
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3156385\n"
-"25\n"
-"help.text"
-msgid "200"
-msgstr "Pamja 200%"
-
-#: 12080500.xhp
+#: 04060103.xhp
msgctxt ""
-"12080500.xhp\n"
-"par_id3145230\n"
-"26\n"
+"04060103.xhp\n"
+"hd_id3150044\n"
+"371\n"
"help.text"
-msgid "400"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12080500.xhp
+#: 04060103.xhp
msgctxt ""
-"12080500.xhp\n"
+"04060103.xhp\n"
"par_id3147363\n"
-"27\n"
-"help.text"
-msgid "The cells for the 1st and 2nd quarters each contain a sum formula for the three cells to their left. If you apply the <emph>AutoOutline</emph> command, the table is grouped into two quarters."
-msgstr ""
-
-#: 12080500.xhp
-msgctxt ""
-"12080500.xhp\n"
-"par_id3146918\n"
-"9\n"
-"help.text"
-msgid "To remove the outline, select the table, and then choose <link href=\"text/scalc/01/12080600.xhp\" name=\"Data - Group and Outline - Remove\">Data - Group and Outline - Remove</link>."
-msgstr ""
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Conditional Formatting"
-msgstr "Formatizim i Kushtëzuar"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3155132\n"
-"1\n"
-"help.text"
-msgid "Conditional Formatting"
-msgstr "Formatizim i Kushtëzuar"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3163710\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">Choose <emph>Conditional Formatting</emph> to define format styles depending on certain conditions.</ahelp></variable> If a style was already assigned to a cell, it remains unchanged. The style entered here is then evaluated. You can enter three conditions that query the contents of cell values or formulas. The conditions are evaluated from 1 to 3. If the condition 1 matches the condition, the defined style will be used. Otherwise, condition 2 is evaluated, and its defined style used. If this style does not match, condition 3 is evaluated."
-msgstr ""
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id2414014\n"
-"help.text"
-msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose Tools - Cell Contents - AutoCalculate (you see a check mark next to the command when AutoCalculate is enabled)."
-msgstr ""
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"bm_id3153189\n"
-"help.text"
-msgid "<bookmark_value>conditional formatting; conditions</bookmark_value>"
-msgstr ""
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3153189\n"
-"18\n"
-"help.text"
-msgid "Condition 1/2/3"
-msgstr "Kushti"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3149413\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONDFORMAT:CBX_COND3\">Mark the boxes corresponding to each condition and enter the corresponding condition.</ahelp> To close the dialog, click <emph>OK</emph>."
-msgstr ""
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3147394\n"
-"5\n"
-"help.text"
-msgid "Cell Value / Formula"
-msgstr "Kthen formulën e një qelie të formulës."
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3155602\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_1\">Specifies if conditional formatting is dependent on a cell value or a formula.</ahelp> If you select a formula as a reference, the <emph>Cell Value Condition</emph> box is displayed to the right of the <emph>Cell value/Formula</emph> field. If the condition is \"Formula is\", enter a cell reference. If the cell reference is a value other than zero, the condition matches."
-msgstr ""
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3153709\n"
-"7\n"
-"help.text"
-msgid "Cell Value Condition"
-msgstr "Vlera e qelisë është"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3153764\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_2\">Choose a condition for the format to be applied to the selected cells.</ahelp>"
-msgstr ""
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3156384\n"
-"9\n"
-"help.text"
-msgid "Cell Style"
-msgstr "Stili i qelisë"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3145228\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_TEMPLATE\">Choose the style to be applied if the specified condition matches.</ahelp>"
-msgstr ""
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id0509200913175331\n"
-"help.text"
-msgid "New Style"
-msgstr "Stili i qelisë"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id0509200913175368\n"
-"help.text"
-msgid "<ahelp hid=\".\">If you haven't already defined a style to be used, you can click New Style to open the Organizer tab page of the Cell Style dialog. Define a new style there and click OK.</ahelp>"
-msgstr ""
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"hd_id3146316\n"
-"11\n"
-"help.text"
-msgid "Parameter field"
-msgstr "Emri i fushës"
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3155114\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONDFORMAT:EDT_COND3_2\" visibility=\"hidden\">Enter a reference, value or formula.</ahelp> Enter a reference, value or formula in the parameter field, or in both parameter fields if you have selected a condition that requires two parameters. You can also enter formulas containing relative references."
-msgstr ""
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3145257\n"
-"13\n"
-"help.text"
-msgid "Once the parameters have been defined, the condition is complete. It may appear as:"
-msgstr ""
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3150784\n"
-"14\n"
-"help.text"
-msgid "Cell value is equal 0: Cell style Null value (You must have already defined a cell style with this name before assigning it to a condition)."
-msgstr ""
-
-#: 05120000.xhp
-msgctxt ""
-"05120000.xhp\n"
-"par_id3150365\n"
-"15\n"
+"372\n"
"help.text"
-msgid "Cell value is between $B$20 and $B$21: Cell style Result (The corresponding value limits must already exist in cells B20 and B21)."
+msgid "AMORLINC(Cost; DatePurchased; FirstPeriod; Salvage; Period; Rate; Basis)"
msgstr ""
-#: 05120000.xhp
+#: 04060103.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3152992\n"
-"16\n"
+"04060103.xhp\n"
+"par_id3146920\n"
+"373\n"
"help.text"
-msgid "Formula is SUM($A$1:$A$5)=10: Cell style Result (The selected cells are formatted with the Result style if the sum of the contents in cells A1 to A5 is equal to 10)."
-msgstr ""
+msgid "<emph>Cost</emph> means the acquisition costs."
+msgstr "Shpenzimet e përvetsimit. Shpenzimi fillestar i pasurisë."
-#: 05120000.xhp
+#: 04060103.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_idN107E1\n"
+"04060103.xhp\n"
+"par_id3163807\n"
+"374\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/guide/cellstyle_conditional.xhp#cellstyle_conditional\"/>"
-msgstr ""
+msgid "<emph>DatePurchased</emph> is the date of acquisition."
+msgstr "Shpenzimet e përvetsimit. Shpenzimi fillestar i pasurisë."
-#: 12080200.xhp
+#: 04060103.xhp
msgctxt ""
-"12080200.xhp\n"
-"tit\n"
+"04060103.xhp\n"
+"par_id3148488\n"
+"375\n"
"help.text"
-msgid "Show Details"
-msgstr "Trego hollësitë"
+msgid "<emph>FirstPeriod </emph>is the end date of the first settlement period."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-#: 12080200.xhp
+#: 04060103.xhp
msgctxt ""
-"12080200.xhp\n"
-"bm_id3153561\n"
+"04060103.xhp\n"
+"par_id3149530\n"
+"376\n"
"help.text"
-msgid "<bookmark_value>tables; showing details</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "<emph>Salvage</emph> is the salvage value of the capital asset at the end of the depreciable life."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
-#: 12080200.xhp
+#: 04060103.xhp
msgctxt ""
-"12080200.xhp\n"
-"hd_id3153561\n"
-"1\n"
+"04060103.xhp\n"
+"par_id3148633\n"
+"377\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">Show Details</link>"
-msgstr ""
+msgid "<emph>Period</emph> is the settlement period to be considered."
+msgstr "Numri binar qw do tw shndwrrohet (si tekst)"
-#: 12080200.xhp
+#: 04060103.xhp
msgctxt ""
-"12080200.xhp\n"
-"par_id3153822\n"
-"2\n"
+"04060103.xhp\n"
+"par_id3150982\n"
+"378\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowDetail\">Shows the details of the grouped row or column that contains the cursor. To show the details of all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
-msgstr ""
+msgid "<emph>Rate</emph> is the rate of depreciation."
+msgstr "E kthen tarifwn efektive vjetore tw interesit"
-#: 12080200.xhp
+#: 04060103.xhp
msgctxt ""
-"12080200.xhp\n"
-"par_id3155922\n"
-"3\n"
+"04060103.xhp\n"
+"bm_id3145257\n"
"help.text"
-msgid "To hide a selected group, choose <emph>Data -Outline – </emph><link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\"><emph>Hide Details</emph></link>."
-msgstr ""
+msgid "<bookmark_value>ACCRINT function</bookmark_value>"
+msgstr "Vlera tanishme. Vlera e tanishme e investimit."
-#: 12080200.xhp
+#: 04060103.xhp
msgctxt ""
-"12080200.xhp\n"
-"par_id6036561\n"
+"04060103.xhp\n"
+"hd_id3145257\n"
+"335\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details command in pivot tables</link>"
+msgid "ACCRINT"
msgstr ""
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"tit\n"
-"help.text"
-msgid "Statistical Functions Part Three"
-msgstr "Funksionet statistikore"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3166425\n"
-"1\n"
+"04060103.xhp\n"
+"bm_id3151276\n"
"help.text"
-msgid "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\">Statistical Functions Part Three</link></variable>"
+msgid "<bookmark_value>accrued interests;periodic payments</bookmark_value>"
msgstr ""
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"bm_id3149530\n"
-"help.text"
-msgid "<bookmark_value>LARGE function</bookmark_value>"
-msgstr "Kthen vlerën llogjike SAKTË."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3149530\n"
-"2\n"
-"help.text"
-msgid "LARGE"
-msgstr "LARGE"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3150518\n"
-"3\n"
+"04060103.xhp\n"
+"par_id3151276\n"
+"336\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KGROESSTE\">Returns the Rank_c-th largest value in a data set.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINT\">Calculates the accrued interest of a security in the case of periodic payments.</ahelp>"
msgstr ""
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3152990\n"
-"4\n"
+"04060103.xhp\n"
+"hd_id3152581\n"
+"337\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3154372\n"
-"5\n"
-"help.text"
-msgid "LARGE(Data; RankC)"
-msgstr "Shto të dhënat si:"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3152986\n"
-"6\n"
-"help.text"
-msgid "<emph>Data</emph> is the cell range of data."
-msgstr "Grup të dhënash në file"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3156448\n"
-"7\n"
-"help.text"
-msgid "<emph>RankC</emph> is the ranking of the value."
-msgstr ""
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3152889\n"
-"8\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3148702\n"
-"9\n"
+"04060103.xhp\n"
+"par_id3159092\n"
+"338\n"
"help.text"
-msgid "<item type=\"input\">=LARGE(A1:C50;2)</item> gives the second largest value in A1:C50."
+msgid "ACCRINT(Issue; FirstInterest; Settlement; Rate; Par; Frequency; Basis)"
msgstr ""
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"bm_id3154532\n"
-"help.text"
-msgid "<bookmark_value>SMALL function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3154532\n"
-"11\n"
+"04060103.xhp\n"
+"par_id3150519\n"
+"339\n"
"help.text"
-msgid "SMALL"
-msgstr "SMALL"
+msgid "<emph>Issue</emph> is the issue date of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3157981\n"
-"12\n"
+"04060103.xhp\n"
+"par_id3155376\n"
+"340\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KKLEINSTE\">Returns the Rank_c-th smallest value in a data set.</ahelp>"
-msgstr ""
+msgid "<emph>FirstInterest</emph> is the first interest date of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3154957\n"
-"13\n"
+"04060103.xhp\n"
+"par_id3166431\n"
+"341\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
+msgstr "Vlera për të cilin do të llogaritet shprëndarja standarde normale."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3153974\n"
-"14\n"
+"04060103.xhp\n"
+"par_id3154486\n"
+"342\n"
"help.text"
-msgid "SMALL(Data; RankC)"
-msgstr "Shto të dhënat si:"
+msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)"
+msgstr "E kthen tarifwn efektive vjetore tw interesit"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3154540\n"
-"15\n"
+"04060103.xhp\n"
+"par_id3156445\n"
+"343\n"
"help.text"
-msgid "<emph>Data</emph> is the cell range of data."
-msgstr "Grup të dhënash në file"
+msgid "<emph>Par</emph> is the par value of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3155094\n"
-"16\n"
+"04060103.xhp\n"
+"par_id3149406\n"
+"344\n"
"help.text"
-msgid "<emph>RankC</emph> is the rank of the value."
-msgstr ""
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3153247\n"
-"17\n"
+"04060103.xhp\n"
+"hd_id3148699\n"
+"345\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3149897\n"
-"18\n"
-"help.text"
-msgid "<item type=\"input\">=SMALL(A1:C50;2)</item> gives the second smallest value in A1:C50."
-msgstr ""
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"bm_id3153559\n"
-"help.text"
-msgid "<bookmark_value>CONFIDENCE function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3153559\n"
-"20\n"
-"help.text"
-msgid "CONFIDENCE"
-msgstr "CONFIDENCE"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3153814\n"
-"21\n"
+"04060103.xhp\n"
+"par_id3148599\n"
+"346\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Returns the (1-alpha) confidence interval for a normal distribution.</ahelp>"
+msgid "A security is issued on 2001-02-28. First interest is set for 2001-08-31. The settlement date is 2001-05-01. The Rate is 0.1 or 10% and Par is 1000 currency units. Interest is paid half-yearly (frequency is 2). The basis is the US method (0). How much interest has accrued?"
msgstr ""
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3149315\n"
-"22\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3147501\n"
-"23\n"
+"04060103.xhp\n"
+"par_id3148840\n"
+"347\n"
"help.text"
-msgid "CONFIDENCE(Alpha; StDev; Size)"
+msgid "<item type=\"input\">=ACCRINT(\"2001-02-28\";\"2001-08-31\";\"2001-05-01\";0.1;1000;2;0)</item> returns 16.94444."
msgstr ""
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3149872\n"
-"24\n"
+"04060103.xhp\n"
+"bm_id3151240\n"
"help.text"
-msgid "<emph>Alpha</emph> is the level of the confidence interval."
+msgid "<bookmark_value>ACCRINTM function</bookmark_value> <bookmark_value>accrued interests;one-off payments</bookmark_value>"
msgstr ""
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3145324\n"
-"25\n"
-"help.text"
-msgid "<emph>StDev</emph> is the standard deviation for the total population."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-
-#: 04060183.xhp
-#, fuzzy
-msgctxt ""
-"04060183.xhp\n"
-"par_id3153075\n"
-"26\n"
-"help.text"
-msgid "<emph>Size</emph> is the size of the total population."
-msgstr "Kthen SAKTË nëse vlera është një numër."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3150435\n"
-"27\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3153335\n"
-"28\n"
+"04060103.xhp\n"
+"hd_id3151240\n"
+"348\n"
"help.text"
-msgid "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> gives 0.29."
+msgid "ACCRINTM"
msgstr ""
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"bm_id3148746\n"
-"help.text"
-msgid "<bookmark_value>CORREL function</bookmark_value><bookmark_value>coefficient of correlation</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3148746\n"
-"30\n"
-"help.text"
-msgid "CORREL"
-msgstr "CORREL"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3147299\n"
-"31\n"
+"04060103.xhp\n"
+"par_id3157981\n"
+"349\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KORREL\">Returns the correlation coefficient between two data sets.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ACCRINTM\">Calculates the accrued interest of a security in the case of one-off payment at the settlement date.</ahelp>"
msgstr ""
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3156397\n"
-"32\n"
+"04060103.xhp\n"
+"hd_id3159097\n"
+"350\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3153023\n"
-"33\n"
-"help.text"
-msgid "CORREL(Data1; Data2)"
-msgstr ""
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3150036\n"
-"34\n"
-"help.text"
-msgid "<emph>Data1</emph> is the first data set."
-msgstr "Grup të dhënash në file"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3153021\n"
-"35\n"
-"help.text"
-msgid "<emph>Data2</emph> is the second data set."
-msgstr "Grup të dhënash në file"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3149720\n"
-"36\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3149941\n"
-"37\n"
-"help.text"
-msgid "<item type=\"input\">=CORREL(A1:A50;B1:B50)</item> calculates the correlation coefficient as a measure of the linear correlation of the two data sets."
-msgstr ""
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"bm_id3150652\n"
-"help.text"
-msgid "<bookmark_value>COVAR function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3150652\n"
-"39\n"
-"help.text"
-msgid "COVAR"
-msgstr "COVAR"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3146875\n"
-"40\n"
+"04060103.xhp\n"
+"par_id3147074\n"
+"351\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KOVAR\">Returns the covariance of the product of paired deviations.</ahelp>"
+msgid "ACCRINTM(Issue; Settlement; Rate; Par; Basis)"
msgstr ""
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3149013\n"
-"41\n"
+"04060103.xhp\n"
+"par_id3144773\n"
+"352\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<emph>Issue</emph> is the issue date of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3150740\n"
-"42\n"
+"04060103.xhp\n"
+"par_id3154956\n"
+"353\n"
"help.text"
-msgid "COVAR(Data1; Data2)"
-msgstr ""
+msgid "<emph>Settlement</emph> is the date at which the interest accrued up until then is to be calculated."
+msgstr "Vlera për të cilin do të llogaritet shprëndarja standarde normale."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3145827\n"
-"43\n"
+"04060103.xhp\n"
+"par_id3153972\n"
+"354\n"
"help.text"
-msgid "<emph>Data1</emph> is the first data set."
-msgstr "Grup të dhënash në file"
+msgid "<emph>Rate</emph> is the annual nominal rate of interest (coupon interest rate)."
+msgstr "E kthen tarifwn efektive vjetore tw interesit"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3150465\n"
-"44\n"
+"04060103.xhp\n"
+"par_id3159204\n"
+"355\n"
"help.text"
-msgid "<emph>Data2</emph> is the second data set."
-msgstr "Grup të dhënash në file"
+msgid "<emph>Par</emph> is the par value of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3154677\n"
-"45\n"
+"04060103.xhp\n"
+"hd_id3155384\n"
+"356\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060183.xhp
-#, fuzzy
-msgctxt ""
-"04060183.xhp\n"
-"par_id3144748\n"
-"46\n"
-"help.text"
-msgid "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"bm_id3147472\n"
-"help.text"
-msgid "<bookmark_value>CRITBINOM function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3147472\n"
-"48\n"
-"help.text"
-msgid "CRITBINOM"
-msgstr "CRITBINOM"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3149254\n"
-"49\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KRITBINOM\">Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value.</ahelp>"
-msgstr ""
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3153930\n"
-"50\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3148586\n"
-"51\n"
+"04060103.xhp\n"
+"par_id3154541\n"
+"357\n"
"help.text"
-msgid "CRITBINOM(Trials; SP; Alpha)"
+msgid "A security is issued on 2001-04-01. The maturity date is set for 2001-06-15. The Rate is 0.1 or 10% and Par is 1000 currency units. The basis of the daily/annual calculation is the daily balance (3). How much interest has accrued?"
msgstr ""
-#: 04060183.xhp
-#, fuzzy
-msgctxt ""
-"04060183.xhp\n"
-"par_id3145593\n"
-"52\n"
-"help.text"
-msgid "<emph>Trials</emph> is the total number of trials."
-msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3153084\n"
-"53\n"
+"04060103.xhp\n"
+"par_id3149128\n"
+"358\n"
"help.text"
-msgid "<emph>SP</emph> is the probability of success for one trial."
+msgid "<item type=\"input\">=ACCRINTM(\"2001-04-01\";\"2001-06-15\";0.1;1000;3)</item> returns 20.54795."
msgstr ""
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3149726\n"
-"54\n"
+"04060103.xhp\n"
+"bm_id3145753\n"
"help.text"
-msgid "<emph>Alpha</emph> is the threshold probability to be reached or exceeded."
+msgid "<bookmark_value>RECEIVED function</bookmark_value> <bookmark_value>amount received for fixed-interest securities</bookmark_value>"
msgstr ""
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3148752\n"
-"55\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3148740\n"
-"56\n"
+"04060103.xhp\n"
+"hd_id3145753\n"
+"390\n"
"help.text"
-msgid "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> yields 44."
+msgid "RECEIVED"
msgstr ""
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"bm_id3155956\n"
-"help.text"
-msgid "<bookmark_value>KURT function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3155956\n"
-"58\n"
-"help.text"
-msgid "KURT"
-msgstr "KURT"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3153108\n"
-"59\n"
+"04060103.xhp\n"
+"par_id3150051\n"
+"391\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KURT\">Returns the kurtosis of a data set (at least 4 values required).</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_RECEIVED\">Calculates the amount received that is paid for a fixed-interest security at a given point in time.</ahelp>"
msgstr ""
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3150334\n"
-"60\n"
+"04060103.xhp\n"
+"hd_id3149385\n"
+"392\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3154508\n"
-"61\n"
-"help.text"
-msgid "KURT(Number1; Number2; ...Number30)"
-msgstr ""
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3145167\n"
-"62\n"
-"help.text"
-msgid "<emph>Number1,Number2,...Number30</emph> are numeric arguments or ranges representing a random sample of distribution."
-msgstr ""
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3158000\n"
-"63\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3150016\n"
-"64\n"
+"04060103.xhp\n"
+"par_id3145362\n"
+"393\n"
"help.text"
-msgid "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
+msgid "RECEIVED(\"Settlement\"; \"Maturity\"; Investment; Discount; Basis)"
msgstr ""
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"bm_id3150928\n"
-"help.text"
-msgid "<bookmark_value>LOGINV function</bookmark_value><bookmark_value>inverse of lognormal distribution</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3150928\n"
-"66\n"
-"help.text"
-msgid "LOGINV"
-msgstr "LOGINV"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3145297\n"
-"67\n"
+"04060103.xhp\n"
+"par_id3154654\n"
+"394\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LOGINV\">Returns the inverse of the lognormal distribution.</ahelp>"
-msgstr ""
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3151016\n"
-"68\n"
+"04060103.xhp\n"
+"par_id3153011\n"
+"395\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3153049\n"
-"69\n"
+"04060103.xhp\n"
+"par_id3155525\n"
+"396\n"
"help.text"
-msgid "LOGINV(Number; Mean; StDev)"
+msgid "<emph>Investment</emph> is the purchase sum."
msgstr ""
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3148390\n"
-"70\n"
-"help.text"
-msgid "<emph>Number</emph> is the probability value for which the inverse standard logarithmic distribution is to be calculated."
-msgstr "Vlera e gjasës për të cilën do të llogaritet shprëndarja inverse standarde normale."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3149538\n"
-"71\n"
-"help.text"
-msgid "<emph>Mean</emph> is the arithmetic mean of the standard logarithmic distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3145355\n"
-"72\n"
+"04060103.xhp\n"
+"par_id3155760\n"
+"397\n"
"help.text"
-msgid "<emph>StDev</emph> is the standard deviation of the standard logarithmic distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<emph>Discount</emph> is the percentage discount on acquisition of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"hd_id3148768\n"
-"73\n"
+"04060103.xhp\n"
+"hd_id3154710\n"
+"398\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060183.xhp
-#, fuzzy
-msgctxt ""
-"04060183.xhp\n"
-"par_id3155623\n"
-"74\n"
-"help.text"
-msgid "<item type=\"input\">=LOGINV(0.05;0;1)</item> returns 0.19."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"bm_id3158417\n"
-"help.text"
-msgid "<bookmark_value>LOGNORMDIST function</bookmark_value><bookmark_value>cumulative lognormal distribution</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3158417\n"
-"76\n"
-"help.text"
-msgid "LOGNORMDIST"
-msgstr "LOGNORMDIST"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3154953\n"
-"77\n"
+"04060103.xhp\n"
+"par_id3154735\n"
+"399\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Returns the cumulative lognormal distribution.</ahelp>"
+msgid "Settlement date: February 15 1999, maturity date: May 15 1999, investment sum: 1000 currency units, discount: 5.75 per cent, basis: Daily balance/360 = 2."
msgstr ""
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3150474\n"
-"78\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060183.xhp
+#: 04060103.xhp
msgctxt ""
-"04060183.xhp\n"
-"par_id3150686\n"
-"79\n"
+"04060103.xhp\n"
+"par_id3146108\n"
+"400\n"
"help.text"
-msgid "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
+msgid "The amount received on the maturity date is calculated as follows:"
msgstr ""
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3154871\n"
-"80\n"
-"help.text"
-msgid "<emph>Number</emph> is the probability value for which the standard logarithmic distribution is to be calculated."
-msgstr "Vlera e gjasës për të cilën do të llogaritet shprëndarja inverse standarde normale."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3155820\n"
-"81\n"
-"help.text"
-msgid "<emph>Mean</emph> (optional) is the mean value of the standard logarithmic distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3155991\n"
-"82\n"
-"help.text"
-msgid "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"par_id3155992\n"
-"help.text"
-msgid "<emph>Cumulative</emph> (optional) = 0 calculates the density function, Cumulative = 1 calculates the distribution."
-msgstr "Grumbulluar. C=0 llogarit funksionin e dendësisë, C=1 shprëndarjen."
-
-#: 04060183.xhp
-msgctxt ""
-"04060183.xhp\n"
-"hd_id3153178\n"
-"83\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060183.xhp
-#, fuzzy
-msgctxt ""
-"04060183.xhp\n"
-"par_id3149778\n"
-"84\n"
-"help.text"
-msgid "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> returns 0.01."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04070000.xhp
-msgctxt ""
-"04070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Names"
-msgstr "Emrat"
-
-#: 04070000.xhp
+#: 04060103.xhp
msgctxt ""
-"04070000.xhp\n"
-"hd_id3153951\n"
-"1\n"
+"04060103.xhp\n"
+"par_id3147246\n"
+"401\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
+msgid "<item type=\"input\">=RECEIVED(\"1999-02-15\";\"1999-05-15\";1000;0.0575;2)</item> returns 1014.420266."
msgstr ""
-#: 04070000.xhp
+#: 04060103.xhp
msgctxt ""
-"04070000.xhp\n"
-"par_id3145801\n"
-"2\n"
+"04060103.xhp\n"
+"bm_id3147556\n"
"help.text"
-msgid "<ahelp hid=\".\">Allows you to name the different sections of your spreadsheet document.</ahelp> By naming the different sections, you can easily <link href=\"text/scalc/01/02110000.xhp\" name=\"navigate\">navigate</link> through the spreadsheet documents and find specific information."
+msgid "<bookmark_value>PV function</bookmark_value> <bookmark_value>present values</bookmark_value> <bookmark_value>calculating; present values</bookmark_value>"
msgstr ""
-#: 04070000.xhp
+#: 04060103.xhp
msgctxt ""
-"04070000.xhp\n"
-"hd_id3153878\n"
+"04060103.xhp\n"
+"hd_id3147556\n"
"3\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Define</link>"
-msgstr ""
+msgid "PV"
+msgstr "PV"
-#: 04070000.xhp
+#: 04060103.xhp
msgctxt ""
-"04070000.xhp\n"
-"hd_id3146969\n"
+"04060103.xhp\n"
+"par_id3153301\n"
"4\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">Insert</link>"
+msgid "<ahelp hid=\"HID_FUNC_BW\">Returns the present value of an investment resulting from a series of regular payments.</ahelp>"
msgstr ""
-#: 04070000.xhp
+#: 04060103.xhp
msgctxt ""
-"04070000.xhp\n"
-"hd_id3155764\n"
+"04060103.xhp\n"
+"par_id3146099\n"
"5\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Apply</link>"
-msgstr ""
-
-#: 04070000.xhp
-msgctxt ""
-"04070000.xhp\n"
-"hd_id3156382\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Labels</link>"
-msgstr ""
-
-#: 05050300.xhp
-msgctxt ""
-"05050300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Show Sheet"
-msgstr "Trego Fletën"
-
-#: 05050300.xhp
-msgctxt ""
-"05050300.xhp\n"
-"bm_id3148946\n"
-"help.text"
-msgid "<bookmark_value>sheets; displaying</bookmark_value><bookmark_value>displaying; sheets</bookmark_value>"
-msgstr ""
-
-#: 05050300.xhp
-msgctxt ""
-"05050300.xhp\n"
-"hd_id3148946\n"
-"1\n"
-"help.text"
-msgid "Show Sheet"
-msgstr "Trego Fletën"
-
-#: 05050300.xhp
-msgctxt ""
-"05050300.xhp\n"
-"par_id3148799\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"tabeintext\"><ahelp visibility=\"visible\" hid=\".uno:Show\">Displays sheets that were previously hidden with the <emph>Hide</emph> command.</ahelp></variable> Select one sheet only to call the command. The current sheet is always selected. If a sheet other than the current sheet is selected, you can deselect it by pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> while clicking the corresponding sheet tab at the bottom of the window."
-msgstr ""
-
-#: 05050300.xhp
-msgctxt ""
-"05050300.xhp\n"
-"hd_id3151112\n"
-"3\n"
-"help.text"
-msgid "Hidden sheets"
-msgstr "Fletët e fshehura"
-
-#: 05050300.xhp
-msgctxt ""
-"05050300.xhp\n"
-"par_id3145273\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_SHOW_TAB:LB_ENTRYLIST\" visibility=\"visible\">Displays a list of all hidden sheets in your spreadsheet document.</ahelp> To show a certain sheet, click the corresponding entry on the list and confirm with OK."
-msgstr ""
-
-#: 06990000.xhp
-msgctxt ""
-"06990000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Cell Contents"
-msgstr "Tabela e përmbajtjeve"
-
-#: 06990000.xhp
-msgctxt ""
-"06990000.xhp\n"
-"hd_id3153087\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06990000.xhp\" name=\"Cell Contents\">Cell Contents</link>"
-msgstr ""
-
-#: 06990000.xhp
-msgctxt ""
-"06990000.xhp\n"
-"par_id3145674\n"
-"2\n"
-"help.text"
-msgid "Opens a submenu with commands to calculate tables and activate AutoInput."
-msgstr ""
-
-#: 12090100.xhp
-msgctxt ""
-"12090100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Select Source"
-msgstr "Selekto Burimin"
-
-#: 12090100.xhp
-msgctxt ""
-"12090100.xhp\n"
-"hd_id3153663\n"
-"1\n"
-"help.text"
-msgid "Select Source"
-msgstr "Selekto Burimin"
-
-#: 12090100.xhp
-msgctxt ""
-"12090100.xhp\n"
-"par_id3145119\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DataDataPilotRun\">Opens a dialog where you can select the source for your pivot table, and then create your table.</ahelp>"
+msgid "Use this function to calculate the amount of money needed to be invested at a fixed rate today, to receive a specific amount, an annuity, over a specified number of periods. You can also determine how much money is to remain after the elapse of the period. Specify as well if the amount is to be paid out at the beginning or at the end of each period."
msgstr ""
-#: 12090100.xhp
-msgctxt ""
-"12090100.xhp\n"
-"hd_id3154760\n"
-"5\n"
-"help.text"
-msgid "Selection"
-msgstr "Selektimet"
-
-#: 12090100.xhp
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"par_id3150543\n"
+"04060103.xhp\n"
+"par_id3153334\n"
"6\n"
"help.text"
-msgid "Select a data source for the pivot table."
+msgid "Enter these values either as numbers, expressions or references. If, for example, interest is paid annually at 8%, but you want to use month as your period, enter 8%/12 under <emph>Rate</emph> and <item type=\"productname\">%PRODUCTNAME</item> Calc with automatically calculate the correct factor."
msgstr ""
-#: 12090100.xhp
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"hd_id3148799\n"
+"04060103.xhp\n"
+"hd_id3147407\n"
"7\n"
"help.text"
-msgid "Current Selection"
-msgstr "Zgjedhja e tanishme"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12090100.xhp
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"par_id3125865\n"
+"04060103.xhp\n"
+"par_id3150395\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\".\">Uses the selected cells as the data source for the pivot table.</ahelp>"
-msgstr ""
-
-#: 12090100.xhp
-msgctxt ""
-"12090100.xhp\n"
-"par_id3150011\n"
-"13\n"
-"help.text"
-msgid "The data columns in the pivot table use the same number format as the first data row in the current selection."
+msgid "PV(Rate; NPer; Pmt; FV; Type)"
msgstr ""
-#: 12090100.xhp
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"hd_id3147348\n"
+"04060103.xhp\n"
+"par_id3151341\n"
"9\n"
"help.text"
-msgid "Data source registered in $[officename]"
-msgstr "~Burimi i të dhënave i regjistruar në %PRODUCTNAME"
+msgid "<emph>Rate</emph> defines the interest rate per period."
+msgstr "E kthen tarifwn e brendshme tw kthimit pwr pagesat e planifikuara jo-periodike"
-#: 12090100.xhp
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"par_id3145271\n"
+"04060103.xhp\n"
+"par_id3153023\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\".\">Uses a table or query in a database that is registered in $[officename] as the data source for the pivot table.</ahelp>"
-msgstr ""
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-#: 12090100.xhp
+#: 04060103.xhp
msgctxt ""
-"12090100.xhp\n"
-"hd_id3146119\n"
+"04060103.xhp\n"
+"par_id3146323\n"
"11\n"
"help.text"
-msgid "External source/interface"
-msgstr "~Burim i jashtëm/interface"
-
-#: 12090100.xhp
-msgctxt ""
-"12090100.xhp\n"
-"par_id3145647\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the <emph>External Source</emph> dialog where you can select the OLAP data source for the pivot table.</ahelp>"
-msgstr ""
-
-#: 12090100.xhp
-msgctxt ""
-"12090100.xhp\n"
-"par_idN10670\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"tit\n"
-"help.text"
-msgid "Pivot Table"
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"bm_id2306894\n"
-"help.text"
-msgid "<bookmark_value>pivot table function;show details</bookmark_value><bookmark_value>pivot table function;drill down</bookmark_value>"
+msgid "<emph>Pmt</emph> is the regular payment made per period."
msgstr ""
-#: 12090102.xhp
+#: 04060103.xhp
msgctxt ""
-"12090102.xhp\n"
-"hd_id3149165\n"
-"1\n"
+"04060103.xhp\n"
+"par_id3150536\n"
+"12\n"
"help.text"
-msgid "Pivot Table"
+msgid "<emph>FV</emph> (optional) defines the future value remaining after the final installment has been made."
msgstr ""
-#: 12090102.xhp
+#: 04060103.xhp
msgctxt ""
-"12090102.xhp\n"
-"par_id3155922\n"
+"04060103.xhp\n"
+"par_id3146883\n"
"13\n"
"help.text"
-msgid "<ahelp hid=\".uno:DataPilotExec\">Specify the layout of the table that is generated by the pivot table.</ahelp>"
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3148798\n"
-"34\n"
-"help.text"
-msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table."
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3154908\n"
-"18\n"
-"help.text"
-msgid "Layout"
-msgstr "Formëdhënje"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3150768\n"
-"19\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SC_DPLAY_SELECT\">To define the layout of a pivot table, drag and drop data field buttons onto the <emph>Page Fields, Row Fields, Column Fields, </emph>and<emph> Data Fields </emph>areas.</ahelp> You can also use drag and drop to rearrange the data fields on a pivot table."
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3147229\n"
-"20\n"
-"help.text"
-msgid "$[officename] automatically adds a caption to buttons that are dragged into the <emph>Data Fields </emph>area. The caption contains the name of the data field as well as the formula that created the data."
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3145749\n"
-"21\n"
-"help.text"
-msgid "To change the function that is used by a data field, double-click a button in the <emph>Data Fields</emph> area to open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\">Data Field</link> dialog. You can also double-click buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> areas."
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3149260\n"
-"28\n"
-"help.text"
-msgid "Remove"
-msgstr "Largo"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3150010\n"
-"27\n"
-"help.text"
-msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_REMOVE\">Removes the selected data field from the table layout.</ahelp>"
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3145273\n"
-"26\n"
-"help.text"
-msgid "Options"
-msgstr "Opcionet"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3146120\n"
-"25\n"
-"help.text"
-msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_OPTIONS\">Opens the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog where you can change the function that is associated with the selected field.</ahelp>"
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3154944\n"
-"22\n"
-"help.text"
-msgid "More"
-msgstr "Më shumë"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3145647\n"
-"23\n"
-"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE\">Displays or hides additional options for defining the pivot table.</ahelp>"
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3151073\n"
-"2\n"
-"help.text"
-msgid "Result"
-msgstr "Rezultat"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3155417\n"
-"3\n"
-"help.text"
-msgid "Specify the settings for displaying the results of the pivot table."
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id0509200913025625\n"
-"help.text"
-msgid "Selection from"
-msgstr "Selektimet"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id0509200913025615\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the area that contains the data for the current pivot table.</ahelp>"
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3155603\n"
-"4\n"
-"help.text"
-msgid "Results to"
-msgstr "Rezulton në"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3153838\n"
-"5\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_PIVOT_LAYOUT:ED_OUTAREA\">Select the area where you want to display the results of the pivot table.</ahelp>"
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3155961\n"
-"6\n"
-"help.text"
-msgid "If the selected area contains data, the pivot table overwrites the data. To prevent the loss of existing data, let the pivot table automatically select the area to display the results."
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3147364\n"
-"7\n"
-"help.text"
-msgid "Ignore empty rows"
-msgstr "Injoro ~rreshtat e zbrazët"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3154022\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS\">Ignores empty fields in the data source.</ahelp>"
+msgid "<emph>Type</emph> (optional) denotes due date for payments. Type = 1 means due at the beginning of a period and Type = 0 (default) means due at the end of the period."
msgstr ""
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"hd_id3155114\n"
-"9\n"
-"help.text"
-msgid "Identify categories"
-msgstr "~Identifiko kategoritë"
-
-#: 12090102.xhp
+#: 04060103.xhp
msgctxt ""
-"12090102.xhp\n"
-"par_id3145257\n"
-"10\n"
+"04060103.xhp\n"
+"par_idN10B13\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_DETECTCAT\">Automatically assigns rows without labels to the category of the row above.</ahelp>"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
msgstr ""
-#: 12090102.xhp
+#: 04060103.xhp
msgctxt ""
-"12090102.xhp\n"
-"hd_id3149207\n"
+"04060103.xhp\n"
+"hd_id3150037\n"
"14\n"
"help.text"
-msgid "Total columns"
-msgstr "Gjithsejt shtylla"
+msgid "Example"
+msgstr "Shembull"
-#: 12090102.xhp
+#: 04060103.xhp
msgctxt ""
-"12090102.xhp\n"
-"par_id3166426\n"
+"04060103.xhp\n"
+"par_id3145225\n"
"15\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALCOL\">Calculates and displays the grand total of the column calculation.</ahelp>"
+msgid "What is the present value of an investment, if 500 currency units are paid out monthly and the annual interest rate is 8%? The payment period is 48 months and 20,000 currency units are to remain at the end of the payment period."
msgstr ""
-#: 12090102.xhp
+#: 04060103.xhp
msgctxt ""
-"12090102.xhp\n"
-"hd_id3150364\n"
+"04060103.xhp\n"
+"par_id3155907\n"
"16\n"
"help.text"
-msgid "Total rows"
-msgstr "~Gjithsejt rreshta"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3152583\n"
-"17\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALROW\">Calculates and displays the grand total of the row calculation.</ahelp>"
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN10897\n"
-"help.text"
-msgid "Add filter"
-msgstr "Filtër i grafikave"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN1089B\n"
-"help.text"
-msgid "<ahelp hid=\".\">Adds a Filter button to pivot tables that are based on spreadsheet data.</ahelp>"
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108B2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Filter dialog.</ahelp>"
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108C9\n"
-"help.text"
-msgid "Enable drill to details"
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108CD\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select this check box and double-click an item label in the table to show or hide details for the item. Clear this check box and double-click a cell in the table to edit the contents of the cell.</ahelp>"
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108DC\n"
-"help.text"
-msgid "To examine details inside a pivot table"
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108E0\n"
-"help.text"
-msgid "Do one of the following:"
-msgstr "Gabimi në vazhdim ka ndodhur:"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108E6\n"
-"help.text"
-msgid "Select a range of cells and choose <emph>Data - Group and Outline - Show Details</emph>."
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108EE\n"
-"help.text"
-msgid "Double-click a field in the table."
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN108F1\n"
-"help.text"
-msgid "If you double-click a field which has adjacent fields at the same level, the <emph>Show Detail</emph> dialog opens:"
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN10900\n"
-"help.text"
-msgid "Show Detail"
-msgstr "Shfaqje e sllajdeve"
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_idN10904\n"
-"help.text"
-msgid "<ahelp hid=\".\">Choose the field that you want to view the details for.</ahelp>"
-msgstr ""
-
-#: 12090102.xhp
-msgctxt ""
-"12090102.xhp\n"
-"par_id3149817\n"
-"35\n"
-"help.text"
-msgid "<link href=\"text/scalc/04/01020000.xhp\" name=\"Pivot table shortcut keys\">Pivot table shortcut keys</link>"
-msgstr ""
-
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Column & Row Headers"
-msgstr "Krerët e Kolonave dhe Rreshtave"
-
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"bm_id3156024\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; displaying headers of columns/rows</bookmark_value><bookmark_value>displaying; headers of columns/rows</bookmark_value>"
-msgstr ""
-
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"hd_id3156024\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/03070000.xhp\" name=\"Column & Row Headers\">Column & Row Headers</link>"
-msgstr ""
-
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"par_id3147230\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ViewRowColumnHeaders\">Shows column headers and row headers.</ahelp>"
-msgstr ""
-
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"par_id3156280\n"
-"4\n"
-"help.text"
-msgid "To hide the column and row headers unmark this menu entry."
-msgstr ""
-
-#: 03070000.xhp
-msgctxt ""
-"03070000.xhp\n"
-"par_id3156441\n"
-"3\n"
-"help.text"
-msgid "You can also set the view of the column and row headers in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link></emph>."
-msgstr ""
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Define Label Range"
-msgstr "Defino Intervalin e Emërtimit"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"bm_id3150791\n"
-"help.text"
-msgid "<bookmark_value>sheets; defining label ranges</bookmark_value><bookmark_value>label ranges in sheets</bookmark_value>"
-msgstr ""
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"hd_id3150791\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">Define Label Range</link></variable>"
-msgstr ""
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3150868\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">Opens a dialog in which you can define a label range.</ahelp></variable>"
-msgstr ""
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3155411\n"
-"13\n"
-"help.text"
-msgid "The cell contents of a label range can be used like names in formulas - $[officename] recognizes these names in the same manner that it does the predefined names of the weekdays and months. These names are automatically completed when typed into a formula. In addition, the names defined by label ranges will have priority over names defined by automatically generated ranges."
-msgstr ""
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3147435\n"
-"14\n"
-"help.text"
-msgid "You can set label ranges that contain the same labels on different sheets. $[officename] first searches the label ranges of the current sheet and, following a failed search, the ranges of other sheets."
-msgstr ""
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"hd_id3145801\n"
-"3\n"
-"help.text"
-msgid "Range"
-msgstr "Brez"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3154731\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_AREA\">Displays the cell reference of each label range.</ahelp> In order to remove a label range from the list box, select it and then click <emph>Delete</emph>."
-msgstr ""
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"hd_id3149121\n"
-"5\n"
-"help.text"
-msgid "Contains column labels"
-msgstr "Përmban ~emërtimet e shtyllave"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3150330\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_COLHEAD\">Includes column labels in the current label range.</ahelp>"
-msgstr ""
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"hd_id3149020\n"
-"7\n"
-"help.text"
-msgid "Contains row labels"
-msgstr "Përmban ~emërtimet e rreshtave"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3154754\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ROWHEAD\">Includes row labels in the current label range.</ahelp>"
-msgstr ""
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"hd_id3159264\n"
-"11\n"
-"help.text"
-msgid "For data range"
-msgstr "Për ~ intervalin e të dhënave"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3154703\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_DATA\">Sets the data range for which the selected label range is valid. To modify it, click in the sheet and select another range with the mouse.</ahelp>"
-msgstr ""
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"hd_id3145789\n"
-"9\n"
-"help.text"
-msgid "Add"
-msgstr "Shto"
-
-#: 04070400.xhp
-msgctxt ""
-"04070400.xhp\n"
-"par_id3147005\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ADD\">Adds the current label range to the list.</ahelp>"
-msgstr ""
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"tit\n"
-"help.text"
-msgid "Statistical Functions Part Two"
-msgstr "Funksionet statistikore"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3154372\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Statistical Functions Part Two\">Statistical Functions Part Two</link></variable>"
-msgstr ""
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"bm_id3145388\n"
-"help.text"
-msgid "<bookmark_value>FINV function</bookmark_value> <bookmark_value>inverse F probability distribution</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3145388\n"
-"2\n"
-"help.text"
-msgid "FINV"
-msgstr "FINV"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3155089\n"
-"3\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FINV\">Returns the inverse of the F probability distribution.</ahelp> The F distribution is used for F tests in order to set the relation between two differing data sets."
+msgid "<item type=\"input\">=PV(8%/12;48;500;20000)</item> = -35,019.37 currency units. Under the named conditions, you must deposit 35,019.37 currency units today, if you want to receive 500 currency units per month for 48 months and have 20,000 currency units left over at the end. Cross-checking shows that 48 x 500 currency units + 20,000 currency units = 44,000 currency units. The difference between this amount and the 35,000 currency units deposited represents the interest paid."
msgstr ""
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3153816\n"
-"4\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153068\n"
-"5\n"
+"04060103.xhp\n"
+"par_id3149150\n"
+"17\n"
"help.text"
-msgid "FINV(Number; DegreesFreedom1; DegreesFreedom2)"
+msgid "If you enter references instead of these values into the formula, you can calculate any number of \"If-then\" scenarios. Please note: references to constants must be defined as absolute references. Examples of this type of application are found under the depreciation functions."
msgstr ""
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3146866\n"
-"6\n"
-"help.text"
-msgid "<emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
-msgstr "Vlera e gjasës për të cilën do të llogaritet shprëndarja inverse standarde normale."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3153914\n"
-"7\n"
-"help.text"
-msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3148607\n"
-"8\n"
-"help.text"
-msgid "<emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3156021\n"
-"9\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3145073\n"
-"10\n"
-"help.text"
-msgid "<item type=\"input\">=FINV(0.5;5;10)</item> yields 0.93."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"bm_id3150888\n"
-"help.text"
-msgid "<bookmark_value>FISHER function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3150888\n"
-"12\n"
-"help.text"
-msgid "FISHER"
-msgstr "FISHER"
-
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3155384\n"
-"13\n"
+"04060103.xhp\n"
+"bm_id3152978\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FISHER\">Returns the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
+msgid "<bookmark_value>calculating; depreciations</bookmark_value> <bookmark_value>SYD function</bookmark_value> <bookmark_value>depreciations; arithmetic declining</bookmark_value> <bookmark_value>arithmetic declining depreciations</bookmark_value>"
msgstr ""
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3149898\n"
-"14\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3143220\n"
-"15\n"
-"help.text"
-msgid "FISHER(Number)"
-msgstr "Numri i faqes"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3159228\n"
-"16\n"
-"help.text"
-msgid "<emph>Number</emph> is the value to be transformed."
-msgstr "Vlera që do të transformohet prapa."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3154763\n"
-"17\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3149383\n"
-"18\n"
-"help.text"
-msgid "<item type=\"input\">=FISHER(0.5)</item> yields 0.55."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3155758\n"
+"04060103.xhp\n"
+"hd_id3152978\n"
+"19\n"
"help.text"
-msgid "<bookmark_value>FISHERINV function</bookmark_value> <bookmark_value>inverse of Fisher transformation</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "SYD"
+msgstr "SYD"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3155758\n"
+"04060103.xhp\n"
+"par_id3148732\n"
"20\n"
"help.text"
-msgid "FISHERINV"
-msgstr "FISHERINV"
+msgid "<ahelp hid=\"HID_FUNC_DIA\">Returns the arithmetic-declining depreciation rate.</ahelp>"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154734\n"
+"04060103.xhp\n"
+"par_id3149886\n"
"21\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FISHERINV\">Returns the inverse of the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
+msgid "Use this function to calculate the depreciation amount for one period of the total depreciation span of an object. Arithmetic declining depreciation reduces the depreciation amount from period to period by a fixed sum."
msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3155755\n"
+"04060103.xhp\n"
+"hd_id3149431\n"
"22\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3146108\n"
+"04060103.xhp\n"
+"par_id3150483\n"
"23\n"
"help.text"
-msgid "FISHERINV(Number)"
-msgstr "Numri i faqes"
+msgid "SYD(Cost; Salvage; Life; Period)"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3145115\n"
+"04060103.xhp\n"
+"par_id3146879\n"
"24\n"
"help.text"
-msgid "<emph>Number</emph> is the value that is to undergo reverse-transformation."
-msgstr "Vlera që do të transformohet prapa."
+msgid "<emph>Cost</emph> is the initial cost of an asset."
+msgstr "Shpenzimet e përvetsimit. Shpenzimi fillestar i pasurisë."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3155744\n"
+"04060103.xhp\n"
+"par_id3147423\n"
"25\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<emph>Salvage</emph> is the value of an asset after depreciation."
+msgstr "Vlera për të cilin do të përcaktohet rangimi."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150432\n"
+"04060103.xhp\n"
+"par_id3151229\n"
"26\n"
"help.text"
-msgid "<item type=\"input\">=FISHERINV(0.5)</item> yields 0.46."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<emph>Life</emph> is the period fixing the time span over which an asset is depreciated."
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3151390\n"
+"04060103.xhp\n"
+"par_id3147473\n"
+"27\n"
"help.text"
-msgid "<bookmark_value>FTEST function</bookmark_value>"
-msgstr "Shndërron një vlerë në tekst."
+msgid "<emph>Period</emph> defines the period for which the depreciation is to be calculated."
+msgstr "Vlera për të cilin do të llogaritet shprëndarja standarde normale."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3151390\n"
+"04060103.xhp\n"
+"hd_id3148434\n"
"28\n"
"help.text"
-msgid "FTEST"
-msgstr "FTEST"
+msgid "Example"
+msgstr "Shembull"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150534\n"
+"04060103.xhp\n"
+"par_id3149688\n"
"29\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FTEST\">Returns the result of an F test.</ahelp>"
+msgid "A video system initially costing 50,000 currency units is to be depreciated annually for the next 5 years. The salvage value is to be 10,000 currency units. You want to calculate depreciation for the first year."
msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3166466\n"
+"04060103.xhp\n"
+"par_id3150900\n"
"30\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<item type=\"input\">=SYD(50000;10000;5;1)</item>=13,333.33 currency units. The depreciation amount for the first year is 13,333.33 currency units."
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153024\n"
+"04060103.xhp\n"
+"par_id3146142\n"
"31\n"
"help.text"
-msgid "FTEST(Data1; Data2)"
+msgid "To have an overview of depreciation rates per period, it is best to define a depreciation table. By entering the different depreciation formulas available in <item type=\"productname\">%PRODUCTNAME</item> Calc next to each other, you can see which depreciation form is the most appropriate. Enter the table as follows:"
msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150032\n"
+"04060103.xhp\n"
+"par_id3155258\n"
"32\n"
"help.text"
-msgid "<emph>Data1</emph> is the first record array."
-msgstr "Data kur pwrfundon periudha e parw"
+msgid "<emph>A</emph>"
+msgstr "Titullimi 10"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153018\n"
+"04060103.xhp\n"
+"par_id3154558\n"
"33\n"
"help.text"
-msgid "<emph>Data2</emph> is the second record array."
-msgstr "Grup të dhënash në file"
+msgid "<emph>B</emph>"
+msgstr "Titullimi 10"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3153123\n"
+"04060103.xhp\n"
+"par_id3152372\n"
"34\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<emph>C</emph>"
+msgstr "Titullimi 10"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3159126\n"
+"04060103.xhp\n"
+"par_id3149949\n"
"35\n"
"help.text"
-msgid "<item type=\"input\">=FTEST(A1:A30;B1:B12)</item> calculates whether the two data sets are different in their variance and returns the probability that both sets could have come from the same total population."
-msgstr ""
+msgid "<emph>D</emph>"
+msgstr "Titullimi 10"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3150372\n"
+"04060103.xhp\n"
+"par_id3145123\n"
+"36\n"
"help.text"
-msgid "<bookmark_value>FDIST function</bookmark_value>"
-msgstr "Definon vlerën llogjike si PASAKTË."
+msgid "<emph>E</emph>"
+msgstr "Titullimi 10"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150372\n"
+"04060103.xhp\n"
+"par_id3149504\n"
"37\n"
"help.text"
-msgid "FDIST"
-msgstr "FDIST"
+msgid "1"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3152981\n"
+"04060103.xhp\n"
+"par_id3153778\n"
"38\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FVERT\">Calculates the values of an F distribution.</ahelp>"
-msgstr ""
+msgid "<item type=\"input\">Initial Cost</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150484\n"
+"04060103.xhp\n"
+"par_id3159083\n"
"39\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<item type=\"input\">Salvage Value</item>"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3145826\n"
+"04060103.xhp\n"
+"par_id3150002\n"
"40\n"
"help.text"
-msgid "FDIST(Number; DegreesFreedom1; DegreesFreedom2)"
-msgstr ""
+msgid "<item type=\"input\">Useful Life</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150461\n"
+"04060103.xhp\n"
+"par_id3153006\n"
"41\n"
"help.text"
-msgid "<emph>Number</emph> is the value for which the F distribution is to be calculated."
-msgstr "Vlera për të cilin do të llogaritet shprëndarja standarde normale."
+msgid "<item type=\"input\">Time Period</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150029\n"
+"04060103.xhp\n"
+"par_id3154505\n"
"42\n"
"help.text"
-msgid "<emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<item type=\"input\">Deprec. SYD</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3146877\n"
+"04060103.xhp\n"
+"par_id3150336\n"
"43\n"
"help.text"
-msgid "<emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "2"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3147423\n"
+"04060103.xhp\n"
+"par_id3155926\n"
"44\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<item type=\"input\">50,000 currency units</item>"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150696\n"
+"04060103.xhp\n"
+"par_id3153736\n"
"45\n"
"help.text"
-msgid "<item type=\"input\">=FDIST(0.8;8;12)</item> yields 0.61."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"bm_id0119200903223192\n"
-"help.text"
-msgid "<bookmark_value>GAMMA function</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id0119200903205393\n"
-"help.text"
-msgid "GAMMA"
-msgstr "GAMMALN"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id0119200903205379\n"
-"help.text"
-msgid "<ahelp hid=\".\">Returns the Gamma function value.</ahelp> Note that GAMMAINV is not the inverse of GAMMA, but of GAMMADIST."
+msgid "<item type=\"input\">10,000 currency units</item>"
msgstr ""
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id0119200903271613\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id0119200903271614\n"
-"help.text"
-msgid "<emph>Number</emph> is the number for which the Gamma function value is to be calculated."
-msgstr "Vlera e gjasës për të cilën do të llogaritet invers gama shprëndarja."
-
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3154841\n"
+"04060103.xhp\n"
+"par_id3150131\n"
+"46\n"
"help.text"
-msgid "<bookmark_value>GAMMAINV function</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
+msgid "<item type=\"input\">5</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3154841\n"
+"04060103.xhp\n"
+"par_id3148766\n"
"47\n"
"help.text"
-msgid "GAMMAINV"
-msgstr "GAMMAINV"
+msgid "<item type=\"input\">1</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153932\n"
+"04060103.xhp\n"
+"par_id3159136\n"
"48\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GAMMAINV\">Returns the inverse of the Gamma cumulative distribution GAMMADIST.</ahelp> This function allows you to search for variables with different distribution."
+msgid "<item type=\"input\">13,333.33 currency units</item>"
msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3149949\n"
+"04060103.xhp\n"
+"par_id3151018\n"
"49\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "3"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3155828\n"
+"04060103.xhp\n"
+"par_id3148397\n"
"50\n"
"help.text"
-msgid "GAMMAINV(Number; Alpha; Beta)"
-msgstr "Alfa parametri për Beta shprëndarje."
+msgid "<item type=\"input\">2</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3145138\n"
+"04060103.xhp\n"
+"par_id3146907\n"
"51\n"
"help.text"
-msgid "<emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
-msgstr "Vlera e gjasës për të cilën do të llogaritet shprëndarja inverse standarde normale."
+msgid "<item type=\"input\">10,666.67 currency units</item>"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3152785\n"
+"04060103.xhp\n"
+"par_id3147356\n"
"52\n"
"help.text"
-msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "4"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154561\n"
+"04060103.xhp\n"
+"par_id3150267\n"
"53\n"
"help.text"
-msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<item type=\"input\">3</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3148734\n"
+"04060103.xhp\n"
+"par_id3145628\n"
"54\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<item type=\"input\">8,000.00 currency units</item>"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153331\n"
+"04060103.xhp\n"
+"par_id3149004\n"
"55\n"
"help.text"
-msgid "<item type=\"input\">=GAMMAINV(0.8;1;1)</item> yields 1.61."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "5"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3154806\n"
+"04060103.xhp\n"
+"par_id3153545\n"
+"56\n"
"help.text"
-msgid "<bookmark_value>GAMMALN function</bookmark_value> <bookmark_value>natural logarithm of Gamma function</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
+msgid "<item type=\"input\">4</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3154806\n"
+"04060103.xhp\n"
+"par_id3154634\n"
"57\n"
"help.text"
-msgid "GAMMALN"
-msgstr "GAMMALN"
+msgid "<item type=\"input\">5,333.33 currency units</item>"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3148572\n"
+"04060103.xhp\n"
+"par_id3147537\n"
"58\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GAMMALN\">Returns the natural logarithm of the Gamma function: G(x).</ahelp>"
+msgid "6"
msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3152999\n"
+"04060103.xhp\n"
+"par_id3155085\n"
"59\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<item type=\"input\">5</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153112\n"
+"04060103.xhp\n"
+"par_id3158413\n"
"60\n"
"help.text"
-msgid "GAMMALN(Number)"
-msgstr "Numri i faqes"
+msgid "<item type=\"input\">2,666.67 currency units</item>"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154502\n"
+"04060103.xhp\n"
+"par_id3154866\n"
"61\n"
"help.text"
-msgid "<emph>Number</emph> is the value for which the natural logarithm of the Gamma function is to be calculated."
-msgstr "Vlera e gjasës për të cilën do të llogaritet invers gama shprëndarja."
+msgid "7"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3153568\n"
+"04060103.xhp\n"
+"par_id3155404\n"
"62\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3153730\n"
-"63\n"
-"help.text"
-msgid "<item type=\"input\">=GAMMALN(2)</item> yields 0."
+msgid "<item type=\"input\">6</item>"
msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"bm_id3150132\n"
-"help.text"
-msgid "<bookmark_value>GAMMADIST function</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
-
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150132\n"
-"65\n"
+"04060103.xhp\n"
+"par_id3148431\n"
+"63\n"
"help.text"
-msgid "GAMMADIST"
-msgstr "GAMMADIST"
+msgid "<item type=\"input\">0.00 currency units</item>"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3155931\n"
-"66\n"
+"04060103.xhp\n"
+"par_id3156261\n"
+"64\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Returns the values of a Gamma distribution.</ahelp>"
+msgid "8"
msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id0119200903333675\n"
+"04060103.xhp\n"
+"par_id3083286\n"
+"65\n"
"help.text"
-msgid "The inverse function is GAMMAINV."
-msgstr ""
+msgid "<item type=\"input\">7</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3147373\n"
+"04060103.xhp\n"
+"par_id3083443\n"
"67\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "9"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3155436\n"
+"04060103.xhp\n"
+"par_id3154815\n"
"68\n"
"help.text"
-msgid "GAMMADIST(Number; Alpha; Beta; C)"
-msgstr "Alfa parametri për Beta shprëndarje."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3150571\n"
-"69\n"
-"help.text"
-msgid "<emph>Number</emph> is the value for which the Gamma distribution is to be calculated."
-msgstr "Vlera e gjasës për të cilën do të llogaritet invers gama shprëndarja."
+msgid "<item type=\"input\">8</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3145295\n"
+"04060103.xhp\n"
+"par_id3145082\n"
"70\n"
"help.text"
-msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "10"
+msgstr "Titullimi 10"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3151015\n"
+"04060103.xhp\n"
+"par_id3156307\n"
"71\n"
"help.text"
-msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution"
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3157972\n"
-"72\n"
-"help.text"
-msgid "<emph>C</emph> (optional) = 0 or False calculates the density function <emph>C</emph> = 1 or True calculates the distribution."
-msgstr "Grumbulluar. C=0 llogarit funksionin e dendësisë, C=1 shprëndarjen."
+msgid "<item type=\"input\">9</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3149535\n"
+"04060103.xhp\n"
+"par_id3147564\n"
"73\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "11"
+msgstr "1"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3145354\n"
+"04060103.xhp\n"
+"par_id3146856\n"
"74\n"
"help.text"
-msgid "<item type=\"input\">=GAMMADIST(2;1;1;1)</item> yields 0.86."
+msgid "<item type=\"input\">10</item>"
msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"bm_id3150272\n"
-"help.text"
-msgid "<bookmark_value>GAUSS function</bookmark_value> <bookmark_value>normal distribution; standard</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150272\n"
+"04060103.xhp\n"
+"par_id3150880\n"
"76\n"
"help.text"
-msgid "GAUSS"
-msgstr "GAUSS"
+msgid "12"
+msgstr "Yll 12-cepësh"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3149030\n"
+"04060103.xhp\n"
+"par_id3145208\n"
"77\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GAUSS\">Returns the standard normal cumulative distribution.</ahelp>"
-msgstr ""
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id2059694\n"
-"help.text"
-msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
-msgstr ""
+msgid "13"
+msgstr "1"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3153551\n"
+"04060103.xhp\n"
+"par_id3156113\n"
"78\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<item type=\"input\">>0</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3155368\n"
+"04060103.xhp\n"
+"par_id3153625\n"
"79\n"
"help.text"
-msgid "GAUSS(Number)"
-msgstr "Numri i faqes"
+msgid "<item type=\"input\">Total</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153228\n"
+"04060103.xhp\n"
+"par_id3151297\n"
"80\n"
"help.text"
-msgid "<emph>Number</emph> is the value for which the value of the standard normal distribution is to be calculated."
-msgstr "Vlera e gjasës për të cilën do të llogaritet shprëndarja inverse standarde normale."
+msgid "<item type=\"input\">40,000.00 currency units</item>"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150691\n"
+"04060103.xhp\n"
+"par_id3149979\n"
"81\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "The formula in E2 is as follows:"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154867\n"
+"04060103.xhp\n"
+"par_id3155849\n"
"82\n"
"help.text"
-msgid "<item type=\"input\">=GAUSS(0.19)</item> = 0.08"
+msgid "<item type=\"input\">=SYD($A$2;$B$2;$C$2;D2)</item>"
msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3148594\n"
+"04060103.xhp\n"
+"par_id3156124\n"
"83\n"
"help.text"
-msgid "<item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "This formula is duplicated in column E down to E11 (select E2, then drag down the lower right corner with the mouse)."
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3148425\n"
+"04060103.xhp\n"
+"par_id3147270\n"
+"84\n"
"help.text"
-msgid "<bookmark_value>GEOMEAN function</bookmark_value> <bookmark_value>means;geometric</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
+msgid "Cell E13 contains the formula used to check the total of the depreciation amounts. It uses the SUMIF function as the negative values in E8:E11 must not be considered. The condition >0 is contained in cell A13. The formula in E13 is as follows:"
+msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3148425\n"
+"04060103.xhp\n"
+"par_id3152811\n"
"85\n"
"help.text"
-msgid "GEOMEAN"
-msgstr "GEOMEAN"
+msgid "<item type=\"input\">=SUMIF(E2:E11;A13)</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3156257\n"
+"04060103.xhp\n"
+"par_id3155998\n"
"86\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Returns the geometric mean of a sample.</ahelp>"
-msgstr ""
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3147167\n"
-"87\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3153720\n"
-"88\n"
-"help.text"
-msgid "GEOMEAN(Number1; Number2; ...Number30)"
+msgid "Now view the depreciation for a 10 year period, or at a salvage value of 1 currency unit, or enter a different initial cost, and so on."
msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3152585\n"
-"89\n"
+"04060103.xhp\n"
+"bm_id3155104\n"
"help.text"
-msgid "<emph>Number1, Number2,...Number30</emph> are numeric arguments or ranges that represent a random sample."
+msgid "<bookmark_value>DISC function</bookmark_value> <bookmark_value>allowances</bookmark_value> <bookmark_value>discounts</bookmark_value>"
msgstr ""
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3146146\n"
-"90\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3149819\n"
-"92\n"
+"04060103.xhp\n"
+"hd_id3155104\n"
+"379\n"
"help.text"
-msgid "<item type=\"input\">=GEOMEAN(23;46;69)</item> = 41.79. The geometric mean value of this random sample is therefore 41.79."
+msgid "DISC"
msgstr ""
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"bm_id3152966\n"
-"help.text"
-msgid "<bookmark_value>TRIMMEAN function</bookmark_value> <bookmark_value>means;of data set without margin data</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3152966\n"
-"94\n"
-"help.text"
-msgid "TRIMMEAN"
-msgstr "TRIMMEAN"
-
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3149716\n"
-"95\n"
+"04060103.xhp\n"
+"par_id3153891\n"
+"380\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">Returns the mean of a data set without the Alpha percent of data at the margins.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_DISC\">Calculates the allowance (discount) of a security as a percentage.</ahelp>"
msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3149281\n"
-"96\n"
+"04060103.xhp\n"
+"hd_id3153982\n"
+"381\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3154821\n"
-"97\n"
-"help.text"
-msgid "TRIMMEAN(Data; Alpha)"
-msgstr "Shto të dhënat si:"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3155834\n"
-"98\n"
-"help.text"
-msgid "<emph>Data</emph> is the array of data in the sample."
-msgstr "Grup të dhënash në file"
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3156304\n"
-"99\n"
-"help.text"
-msgid "<emph>Alpha</emph> is the percentage of the marginal data that will not be taken into consideration."
-msgstr ""
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3151180\n"
-"100\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3156130\n"
-"101\n"
+"04060103.xhp\n"
+"par_id3149756\n"
+"382\n"
"help.text"
-msgid "<item type=\"input\">=TRIMMEAN(A1:A50; 0.1)</item> calculates the mean value of numbers in A1:A50, without taking into consideration the 5 percent of the values representing the highest values and the 5 percent of the values representing the lowest ones. The percentage numbers refer to the amount of the untrimmed mean value, not to the number of summands."
+msgid "DISC(\"Settlement\"; \"Maturity\"; Price; Redemption; Basis)"
msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3153216\n"
+"04060103.xhp\n"
+"par_id3156014\n"
+"383\n"
"help.text"
-msgid "<bookmark_value>ZTEST function</bookmark_value>"
-msgstr "Shndërron një vlerë në tekst."
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3153216\n"
-"103\n"
+"04060103.xhp\n"
+"par_id3154304\n"
+"384\n"
"help.text"
-msgid "ZTEST"
-msgstr "ZTEST"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3150758\n"
-"104\n"
+"04060103.xhp\n"
+"par_id3159180\n"
+"385\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GTEST\">Calculates the probability of observing a z-statistic greater than the one computed based on a sample.</ahelp>"
+msgid "<emph>Price</emph> is the price of the security per 100 currency units of par value."
msgstr ""
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3150872\n"
-"105\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3153274\n"
-"106\n"
+"04060103.xhp\n"
+"par_id3147253\n"
+"386\n"
"help.text"
-msgid "ZTEST(Data; mu; Sigma)"
+msgid "<emph>Redemption</emph> is the redemption value of the security per 100 currency units of par value."
msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3156109\n"
-"107\n"
+"04060103.xhp\n"
+"hd_id3151174\n"
+"387\n"
"help.text"
-msgid "<emph>Data</emph> is the given sample, drawn from a normally distributed population."
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3149977\n"
-"108\n"
+"04060103.xhp\n"
+"par_id3155902\n"
+"388\n"
"help.text"
-msgid "<emph>mu</emph> is the known mean of the population."
+msgid "A security is purchased on 2001-01-25; the maturity date is 2001-11-15. The price (purchase price) is 97, the redemption value is 100. Using daily balance calculation (basis 3) how high is the settlement (discount)?"
msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154740\n"
-"109\n"
+"04060103.xhp\n"
+"par_id3152797\n"
+"389\n"
"help.text"
-msgid "<emph>Sigma</emph> (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
+msgid "<item type=\"input\">=DISC(\"2001-01-25\";\"2001-11-15\";97;100;3)</item> returns about 0.0372 or 3.72 per cent."
msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id0305200911372999\n"
+"04060103.xhp\n"
+"bm_id3154695\n"
"help.text"
-msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\">Wiki page</link>."
+msgid "<bookmark_value>DURATION_ADD function</bookmark_value> <bookmark_value>Microsoft Excel functions</bookmark_value> <bookmark_value>durations;fixed interest securities</bookmark_value>"
msgstr ""
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"bm_id3153623\n"
-"help.text"
-msgid "<bookmark_value>HARMEAN function</bookmark_value> <bookmark_value>means;harmonic</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
-
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3153623\n"
-"113\n"
+"04060103.xhp\n"
+"hd_id3154695\n"
+"402\n"
"help.text"
-msgid "HARMEAN"
-msgstr "HARMEAN"
+msgid "DURATION_ADD"
+msgstr "Shto elementin"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3155102\n"
-"114\n"
+"04060103.xhp\n"
+"par_id3145768\n"
+"403\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_HARMITTEL\">Returns the harmonic mean of a data set.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_DURATION\">Calculates the duration of a fixed interest security in years.</ahelp>"
msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3146900\n"
-"115\n"
+"04060103.xhp\n"
+"hd_id3153904\n"
+"404\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3149287\n"
-"116\n"
-"help.text"
-msgid "HARMEAN(Number1; Number2; ...Number30)"
-msgstr ""
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3154303\n"
-"117\n"
-"help.text"
-msgid "<emph>Number1,Number2,...Number30</emph> are up to 30 values or ranges, that can be used to calculate the harmonic mean."
-msgstr ""
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3159179\n"
-"118\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3146093\n"
-"120\n"
+"04060103.xhp\n"
+"par_id3153373\n"
+"405\n"
"help.text"
-msgid "<item type=\"input\">=HARMEAN(23;46;69)</item> = 37.64. The harmonic mean of this random sample is thus 37.64"
+msgid "DURATION_ADD(\"Settlement\"; \"Maturity\"; Coupon; Yield; Frequency; Basis)"
msgstr ""
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"bm_id3152801\n"
+"04060103.xhp\n"
+"par_id3155397\n"
+"406\n"
"help.text"
-msgid "<bookmark_value>HYPGEOMDIST function</bookmark_value> <bookmark_value>sampling without replacement</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3152801\n"
-"122\n"
+"04060103.xhp\n"
+"par_id3148558\n"
+"407\n"
"help.text"
-msgid "HYPGEOMDIST"
-msgstr "HYPGEOMDIST"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3159341\n"
-"123\n"
+"04060103.xhp\n"
+"par_id3153096\n"
+"408\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Returns the hypergeometric distribution.</ahelp>"
+msgid "<emph>Coupon</emph> is the annual coupon interest rate (nominal rate of interest)"
msgstr ""
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"hd_id3154697\n"
-"124\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3155388\n"
-"125\n"
+"04060103.xhp\n"
+"par_id3154594\n"
+"409\n"
"help.text"
-msgid "HYPGEOMDIST(X; NSample; Successes; NPopulation)"
-msgstr ""
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"par_id3154933\n"
-"126\n"
+"04060103.xhp\n"
+"par_id3149906\n"
+"410\n"
"help.text"
-msgid "<emph>X</emph> is the number of results achieved in the random sample."
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3153106\n"
-"127\n"
-"help.text"
-msgid "<emph>NSample</emph> is the size of the random sample."
-msgstr "Vlera që do të transformohet prapa."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3146992\n"
-"128\n"
-"help.text"
-msgid "<emph>Successes</emph> is the number of possible results in the total population."
-msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
-
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3148826\n"
-"129\n"
-"help.text"
-msgid "<emph>NPopulation </emph>is the size of the total population."
-msgstr "Kthen SAKTË nëse vlera është një numër."
-
-#: 04060182.xhp
+#: 04060103.xhp
msgctxt ""
-"04060182.xhp\n"
-"hd_id3150529\n"
-"130\n"
+"04060103.xhp\n"
+"hd_id3146995\n"
+"411\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060182.xhp
-msgctxt ""
-"04060182.xhp\n"
-"par_id3154904\n"
-"131\n"
-"help.text"
-msgid "<item type=\"input\">=HYPGEOMDIST(2;2;90;100)</item> yields 0.81. If 90 out of 100 pieces of buttered toast fall from the table and hit the floor with the buttered side first, then if 2 pieces of buttered toast are dropped from the table, the probability is 81%, that both will strike buttered side first."
-msgstr ""
-
-#: 12010100.xhp
-msgctxt ""
-"12010100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Options"
-msgstr "Opcionet"
-
-#: 12010100.xhp
-msgctxt ""
-"12010100.xhp\n"
-"hd_id3154760\n"
-"1\n"
-"help.text"
-msgid "Options"
-msgstr "Opcionet"
-
-#: 12010100.xhp
-msgctxt ""
-"12010100.xhp\n"
-"hd_id3153379\n"
-"3\n"
-"help.text"
-msgid "Contains column labels"
-msgstr "Përmban ~emërtimet e shtyllave"
-
-#: 12010100.xhp
-msgctxt ""
-"12010100.xhp\n"
-"par_id3148798\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_HEADER\" visibility=\"visible\">Selected cell ranges contains labels.</ahelp>"
-msgstr ""
-
-#: 12010100.xhp
-msgctxt ""
-"12010100.xhp\n"
-"hd_id3153970\n"
-"5\n"
-"help.text"
-msgid "Insert or delete cells"
-msgstr "Futi ose fshij ~qelitë"
-
-#: 12010100.xhp
-msgctxt ""
-"12010100.xhp\n"
-"par_id3154684\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_SIZE\" visibility=\"visible\">Automatically inserts new rows and columns into the database range in your document when new records are added to the database.</ahelp> To manually update the database range, choose <emph>Data - Refresh</emph> <emph>Range</emph>."
-msgstr ""
-
-#: 12010100.xhp
-msgctxt ""
-"12010100.xhp\n"
-"hd_id3153768\n"
-"7\n"
-"help.text"
-msgid "Keep formatting"
-msgstr "Ruaj ~formatimin"
-
-#: 12010100.xhp
-msgctxt ""
-"12010100.xhp\n"
-"par_id3147435\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_FORMAT\" visibility=\"visible\">Applies the existing cell format of headers and first data row to the whole database range.</ahelp>"
-msgstr ""
-
-#: 12010100.xhp
-msgctxt ""
-"12010100.xhp\n"
-"hd_id3155856\n"
-"9\n"
-"help.text"
-msgid "Don't save imported data"
-msgstr "Mos ruaj të ~dhënat e importuara"
-
-#: 12010100.xhp
-msgctxt ""
-"12010100.xhp\n"
-"par_id3153363\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_STRIPDATA\" visibility=\"visible\">Only saves a reference to the database, and not the contents of the cells.</ahelp>"
-msgstr ""
-
-#: 12010100.xhp
-msgctxt ""
-"12010100.xhp\n"
-"hd_id3147428\n"
-"11\n"
-"help.text"
-msgid "Source:"
-msgstr "Burimi:"
-
-#: 12010100.xhp
-msgctxt ""
-"12010100.xhp\n"
-"par_id3148576\n"
-"12\n"
-"help.text"
-msgid "Displays information about the current database source and any existing operators."
-msgstr ""
-
-#: 12010100.xhp
-msgctxt ""
-"12010100.xhp\n"
-"hd_id3146976\n"
-"13\n"
-"help.text"
-msgid "More <<"
-msgstr "Më shumë"
-
-#: 12010100.xhp
-msgctxt ""
-"12010100.xhp\n"
-"par_id3149664\n"
-"14\n"
-"help.text"
-msgid "Hides the additional options."
-msgstr "Shiriti i opcioneve /Grafikat"
-
-#: func_hour.xhp
-msgctxt ""
-"func_hour.xhp\n"
-"tit\n"
-"help.text"
-msgid "HOUR"
-msgstr "ORA"
-
-#: func_hour.xhp
-msgctxt ""
-"func_hour.xhp\n"
-"bm_id3154725\n"
-"help.text"
-msgid "<bookmark_value>HOUR function</bookmark_value>"
-msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
-
-#: func_hour.xhp
-msgctxt ""
-"func_hour.xhp\n"
-"hd_id3154725\n"
-"96\n"
-"help.text"
-msgid "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\">HOUR</link></variable>"
-msgstr ""
-
-#: func_hour.xhp
-msgctxt ""
-"func_hour.xhp\n"
-"par_id3149747\n"
-"97\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_STUNDE\">Returns the hour for a given time value.</ahelp> The hour is returned as an integer between 0 and 23."
-msgstr ""
-
-#: func_hour.xhp
-msgctxt ""
-"func_hour.xhp\n"
-"hd_id3149338\n"
-"98\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: func_hour.xhp
-msgctxt ""
-"func_hour.xhp\n"
-"par_id3150637\n"
-"99\n"
-"help.text"
-msgid "HOUR(Number)"
-msgstr "Numri i faqes"
-
-#: func_hour.xhp
-msgctxt ""
-"func_hour.xhp\n"
-"par_id3147547\n"
-"100\n"
-"help.text"
-msgid "<emph>Number</emph>, as a time value, is a decimal, for which the hour is to be returned."
-msgstr ""
-
-#: func_hour.xhp
-msgctxt ""
-"func_hour.xhp\n"
-"hd_id3153264\n"
-"101\n"
-"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
-
-#: func_hour.xhp
-msgctxt ""
-"func_hour.xhp\n"
-"par_id3159215\n"
-"103\n"
-"help.text"
-msgid "<item type=\"input\">=HOUR(NOW())</item> returns the current hour"
-msgstr ""
-
-#: func_hour.xhp
-msgctxt ""
-"func_hour.xhp\n"
-"par_id3145152\n"
-"104\n"
-"help.text"
-msgid "<item type=\"input\">=HOUR(C4)</item> returns 17 if the contents of C4 = <item type=\"input\">17:20:00</item>."
-msgstr ""
-
-#: func_hour.xhp
-msgctxt ""
-"func_hour.xhp\n"
-"par_id3154188\n"
-"105\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"YEAR\">YEAR</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NOW\">NOW</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTE\">MINUTE</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MONTH\">MONTH</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DAY\">DAY</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"WEEKDAY\">WEEKDAY</link>."
-msgstr ""
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"tit\n"
-"help.text"
-msgid "Add-in Functions, List of Analysis Functions Part One"
-msgstr ""
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3152871\n"
-"help.text"
-msgid "<bookmark_value>add-ins; analysis functions</bookmark_value><bookmark_value>analysis functions</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3152871\n"
-"1\n"
-"help.text"
-msgid "Add-in Functions, List of Analysis Functions Part One"
-msgstr ""
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149873\n"
-"102\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"General conversion function BASIS\">General conversion function BASIS</link>"
-msgstr ""
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3145324\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060116.xhp\" name=\"Analysis functions Part Two\">Analysis functions Part Two</link>"
-msgstr ""
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3155751\n"
-"156\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
-msgstr ""
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3153074\n"
-"help.text"
-msgid "<bookmark_value>Bessel functions</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153334\n"
-"111\n"
-"help.text"
-msgid "BESSELI"
-msgstr ""
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153960\n"
-"112\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calculates the modified Bessel function.</ahelp>"
-msgstr ""
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150392\n"
-"113\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3147295\n"
-"114\n"
-"help.text"
-msgid "BESSELI(X; N)"
-msgstr ""
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3151338\n"
-"115\n"
-"help.text"
-msgid "<emph>X</emph> is the value on which the function will be calculated."
-msgstr "Vlera X për të cilin do të llogaritet vlera Y në prapavajtjen lineare."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3151392\n"
-"116\n"
-"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
-msgstr "Kthen SAKTË nëse vlera është një numër."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153027\n"
-"103\n"
-"help.text"
-msgid "BESSELJ"
-msgstr ""
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153015\n"
-"104\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calculates the Bessel function (cylinder function).</ahelp>"
-msgstr ""
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3146884\n"
-"105\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150032\n"
-"106\n"
-"help.text"
-msgid "BESSELJ(X; N)"
-msgstr ""
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150378\n"
-"107\n"
-"help.text"
-msgid "<emph>X</emph> is the value on which the function will be calculated."
-msgstr "Vlera X për të cilin do të llogaritet vlera Y në prapavajtjen lineare."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3145638\n"
-"108\n"
-"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
-msgstr "Kthen SAKTË nëse vlera është një numër."
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3149946\n"
-"117\n"
+"04060103.xhp\n"
+"par_id3148834\n"
+"412\n"
"help.text"
-msgid "BESSELK"
+msgid "A security is purchased on 2001-01-01; the maturity date is 2006-01-01. The Coupon rate of interest is 8%. The yield is 9.0%. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how long is the duration?"
msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3159122\n"
-"118\n"
+"04060103.xhp\n"
+"par_id3154902\n"
+"413\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calculates the modified Bessel function.</ahelp>"
+msgid "<item type=\"input\">=DURATION_ADD(\"2001-01-01\";\"2006-01-01\";0.08;0.09;2;3)</item>"
msgstr ""
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150650\n"
-"119\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3149354\n"
-"120\n"
+"04060103.xhp\n"
+"bm_id3159147\n"
"help.text"
-msgid "BESSELK(X; N)"
+msgid "<bookmark_value>annual net interest rates</bookmark_value> <bookmark_value>calculating; annual net interest rates</bookmark_value> <bookmark_value>net annual interest rates</bookmark_value> <bookmark_value>EFFECTIVE function</bookmark_value>"
msgstr ""
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150481\n"
-"121\n"
-"help.text"
-msgid "<emph>X</emph> is the value on which the function will be calculated."
-msgstr "Vlera X për të cilin do të llogaritet vlera Y në prapavajtjen lineare."
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3150024\n"
-"122\n"
+"04060103.xhp\n"
+"hd_id3159147\n"
+"88\n"
"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
-msgstr "Kthen SAKTË nëse vlera është një numër."
+msgid "EFFECTIVE"
+msgstr "EFFECTIVE"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3145828\n"
-"123\n"
+"04060103.xhp\n"
+"par_id3154204\n"
+"89\n"
"help.text"
-msgid "BESSELY"
+msgid "<ahelp hid=\"HID_FUNC_EFFEKTIV\">Returns the net annual interest rate for a nominal interest rate.</ahelp>"
msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3146877\n"
-"124\n"
+"04060103.xhp\n"
+"par_id3145417\n"
+"90\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the modified Bessel function.</ahelp>"
+msgid "Nominal interest refers to the amount of interest due at the end of a calculation period. Effective interest increases with the number of payments made. In other words, interest is often paid in installments (for example, monthly or quarterly) before the end of the calculation period."
msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3146941\n"
-"125\n"
+"04060103.xhp\n"
+"hd_id3150510\n"
+"91\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3148884\n"
-"126\n"
-"help.text"
-msgid "BESSELY(X; N)"
-msgstr ""
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3147475\n"
-"127\n"
-"help.text"
-msgid "<emph>X</emph> is the value on which the function will be calculated."
-msgstr "Vlera X për të cilin do të llogaritet vlera Y në prapavajtjen lineare."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3147421\n"
-"128\n"
-"help.text"
-msgid "<emph>N</emph> is the order of the Bessel function"
-msgstr "Kthen SAKTË nëse vlera është një numër."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3153034\n"
-"help.text"
-msgid "<bookmark_value>BIN2DEC function</bookmark_value><bookmark_value>converting;binary numbers, into decimal numbers</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3153034\n"
-"17\n"
+"04060103.xhp\n"
+"par_id3148805\n"
+"92\n"
"help.text"
-msgid "BIN2DEC"
-msgstr ""
+msgid "EFFECTIVE(Nom; P)"
+msgstr "Tarifa efektive"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3144744\n"
-"18\n"
+"04060103.xhp\n"
+"par_id3149768\n"
+"93\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">The result is the decimal number for the binary number entered.</ahelp>"
+msgid "<emph>Nom</emph> is the nominal interest."
msgstr ""
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3145593\n"
-"19\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149726\n"
-"20\n"
-"help.text"
-msgid "BIN2DEC(Number)"
-msgstr "Numri i faqes"
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3150142\n"
-"21\n"
+"04060103.xhp\n"
+"par_id3149334\n"
+"94\n"
"help.text"
-msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
-msgstr ""
+msgid "<emph>P</emph> is the number of interest payment periods per year."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3149250\n"
-"22\n"
+"04060103.xhp\n"
+"hd_id3154223\n"
+"95\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060115.xhp
-#, fuzzy
-msgctxt ""
-"04060115.xhp\n"
-"par_id3145138\n"
-"23\n"
-"help.text"
-msgid "<item type=\"input\">=BIN2DEC(1100100)</item> returns 100."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3149954\n"
-"help.text"
-msgid "<bookmark_value>BIN2HEX function</bookmark_value><bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3149954\n"
-"24\n"
+"04060103.xhp\n"
+"par_id3144499\n"
+"96\n"
"help.text"
-msgid "BIN2HEX"
+msgid "If the annual nominal interest rate is 9.75% and four interest calculation periods are defined, what is the actual interest rate (effective rate)?"
msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3148585\n"
-"25\n"
+"04060103.xhp\n"
+"par_id3150772\n"
+"97\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">The result is the hexadecimal number for the binary number entered.</ahelp>"
+msgid "<item type=\"input\">=EFFECTIVE(9.75%;4)</item> = 10.11% The annual effective rate is therefore 10.11%."
msgstr ""
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153936\n"
-"26\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3148753\n"
-"27\n"
-"help.text"
-msgid "BIN2HEX(Number; Places)"
-msgstr "Numri i vendeve tw pwrdorura"
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3155255\n"
-"28\n"
+"04060103.xhp\n"
+"bm_id3147241\n"
"help.text"
-msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
+msgid "<bookmark_value>effective interest rates</bookmark_value> <bookmark_value>EFFECT_ADD function</bookmark_value>"
msgstr ""
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150860\n"
-"29\n"
-"help.text"
-msgid "Places means the number of places to be output."
-msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3155829\n"
-"30\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060115.xhp
-#, fuzzy
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149686\n"
-"31\n"
-"help.text"
-msgid "<item type=\"input\">=BIN2HEX(1100100;6)</item> returns 000064."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3153332\n"
-"help.text"
-msgid "<bookmark_value>BIN2OCT function</bookmark_value><bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3153332\n"
-"9\n"
+"04060103.xhp\n"
+"hd_id3147241\n"
+"414\n"
"help.text"
-msgid "BIN2OCT"
-msgstr ""
+msgid "EFFECT_ADD"
+msgstr "Shto elementin"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3155951\n"
-"10\n"
+"04060103.xhp\n"
+"par_id3147524\n"
+"415\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> The result is the octal number for the binary number entered.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_EFFECT\">Calculates the effective annual rate of interest on the basis of the nominal interest rate and the number of interest payments per annum.</ahelp>"
msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3153001\n"
-"11\n"
+"04060103.xhp\n"
+"hd_id3155364\n"
+"416\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3154508\n"
-"12\n"
-"help.text"
-msgid "BIN2OCT(Number; Places)"
-msgstr "Numri i vendeve tw pwrdorura"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153567\n"
-"13\n"
-"help.text"
-msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
-msgstr ""
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3155929\n"
-"14\n"
-"help.text"
-msgid "<emph>Places</emph> means the number of places to be output."
-msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150128\n"
-"15\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060115.xhp
-#, fuzzy
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153733\n"
-"16\n"
-"help.text"
-msgid "<item type=\"input\">=BIN2OCT(1100100;4)</item> returns 0144."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3150014\n"
-"help.text"
-msgid "<bookmark_value>DELTA function</bookmark_value><bookmark_value>recognizing;equal numbers</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150014\n"
-"129\n"
-"help.text"
-msgid "DELTA"
-msgstr "DELTA"
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3148760\n"
-"130\n"
+"04060103.xhp\n"
+"par_id3155118\n"
+"417\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DELTA\">The result is TRUE (1) if both numbers, which are delivered as an argument, are equal, otherwise it is FALSE (0).</ahelp>"
+msgid "EFFECT_ADD(NominalRate; NPerY)"
msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3155435\n"
-"131\n"
+"04060103.xhp\n"
+"par_id3148907\n"
+"418\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<emph>NominalRate</emph> is the annual nominal rate of interest."
+msgstr "E kthen tarifwn efektive vjetore tw interesit"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3145247\n"
-"132\n"
+"04060103.xhp\n"
+"par_id3154274\n"
+"419\n"
"help.text"
-msgid "DELTA(Number1; Number2)"
-msgstr ""
+msgid "<emph>NPerY </emph>is the number of interest payments per year."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3149002\n"
-"133\n"
+"04060103.xhp\n"
+"hd_id3149156\n"
+"420\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060115.xhp
-#, fuzzy
-msgctxt ""
-"04060115.xhp\n"
-"par_id3151020\n"
-"134\n"
-"help.text"
-msgid "<item type=\"input\">=DELTA(1;2)</item> returns 0."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3157971\n"
-"help.text"
-msgid "<bookmark_value>DEC2BIN function</bookmark_value><bookmark_value>converting;decimal numbers, into binary numbers</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3157971\n"
-"55\n"
-"help.text"
-msgid "DEC2BIN"
-msgstr ""
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3153043\n"
-"56\n"
+"04060103.xhp\n"
+"par_id3158426\n"
+"421\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\"> The result is the binary number for the decimal number entered between -512 and 511.</ahelp>"
+msgid "What is the effective annual rate of interest for a 5.25% nominal rate and quarterly payment."
msgstr ""
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3145349\n"
-"57\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3150569\n"
-"58\n"
+"04060103.xhp\n"
+"par_id3148927\n"
+"422\n"
"help.text"
-msgid "DEC2BIN(Number; Places)"
-msgstr "Numri i vendeve tw pwrdorura"
+msgid "<item type=\"input\">=EFFECT_ADD(0.0525;4)</item> returns 0.053543 or 5.3543%."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3148768\n"
-"59\n"
+"04060103.xhp\n"
+"bm_id3149998\n"
"help.text"
-msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a binary number with 10 characters. The most significant bit is the sign bit, the other 9 bits return the value."
+msgid "<bookmark_value>calculating; arithmetic-degressive depreciations</bookmark_value> <bookmark_value>arithmetic-degressive depreciations</bookmark_value> <bookmark_value>depreciations;arithmetic-degressive</bookmark_value> <bookmark_value>DDB function</bookmark_value>"
msgstr ""
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149537\n"
-"60\n"
-"help.text"
-msgid "<emph>Places</emph> means the number of places to be output."
-msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150265\n"
-"61\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060115.xhp
-#, fuzzy
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150662\n"
-"62\n"
-"help.text"
-msgid "<item type=\"input\">=DEC2BIN(100;8)</item> returns 01100100."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"bm_id3149388\n"
+"04060103.xhp\n"
+"hd_id3149998\n"
+"99\n"
"help.text"
-msgid "<bookmark_value>DEC2HEX function</bookmark_value><bookmark_value>converting;decimal numbers, into hexadecimal numbers</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "DDB"
+msgstr "DDB"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3149388\n"
-"71\n"
+"04060103.xhp\n"
+"par_id3159190\n"
+"100\n"
"help.text"
-msgid "DEC2HEX"
+msgid "<ahelp hid=\"HID_FUNC_GDA\">Returns the depreciation of an asset for a specified period using the arithmetic-declining method.</ahelp>"
msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3149030\n"
-"72\n"
+"04060103.xhp\n"
+"par_id3152361\n"
+"101\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">The result is the hexadecimal number for the decimal number entered.</ahelp>"
+msgid "Use this form of depreciation if you require a higher initial depreciation value as opposed to linear depreciation. The depreciation value gets less with each period and is usually used for assets whose value loss is higher shortly after purchase (for example, vehicles, computers). Please note that the book value will never reach zero under this calculation type."
msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3150691\n"
-"73\n"
+"04060103.xhp\n"
+"hd_id3156038\n"
+"102\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3147535\n"
-"74\n"
-"help.text"
-msgid "DEC2HEX(Number; Places)"
-msgstr "Numri i vendeve tw pwrdorura"
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3152820\n"
-"75\n"
+"04060103.xhp\n"
+"par_id3166452\n"
+"103\n"
"help.text"
-msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a hexadecimal number with 10 characters (40 bits). The most significant bit is the sign bit, the other 39 bits return the value."
+msgid "DDB(Cost; Salvage; Life; Period; Factor)"
msgstr ""
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153221\n"
-"76\n"
-"help.text"
-msgid "<emph>Places</emph> means the number of places to be output."
-msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154869\n"
-"77\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060115.xhp
-#, fuzzy
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150476\n"
-"78\n"
-"help.text"
-msgid "<item type=\"input\">=DEC2HEX(100;4)</item> returns 0064."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"bm_id3154948\n"
+"04060103.xhp\n"
+"par_id3153237\n"
+"104\n"
"help.text"
-msgid "<bookmark_value>DEC2OCT function</bookmark_value><bookmark_value>converting;decimal numbers, into octal numbers</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<emph>Cost</emph> fixes the initial cost of an asset."
+msgstr "Shpenzimet e përvetsimit. Shpenzimi fillestar i pasurisë."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3154948\n"
-"63\n"
+"04060103.xhp\n"
+"par_id3149787\n"
+"105\n"
"help.text"
-msgid "DEC2OCT"
-msgstr ""
+msgid "<emph>Salvage</emph> fixes the value of an asset at the end of its life."
+msgstr "Vlera për të cilin do të përcaktohet rangimi."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3153920\n"
-"64\n"
+"04060103.xhp\n"
+"par_id3152945\n"
+"106\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">The result is the octal number for the decimal number entered.</ahelp>"
+msgid "<emph>Life</emph> is the number of periods (for example, years or months) defining how long the asset is to be used."
msgstr ""
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3153178\n"
-"65\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3148427\n"
-"66\n"
+"04060103.xhp\n"
+"par_id3149736\n"
+"107\n"
"help.text"
-msgid "DEC2OCT(Number; Places)"
-msgstr "Numri i vendeve tw pwrdorura"
+msgid "<emph>Period</emph> states the period for which the value is to be calculated."
+msgstr "Vlera për të cilin do të llogaritet shprëndarja standarde normale."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3155991\n"
-"67\n"
+"04060103.xhp\n"
+"par_id3150243\n"
+"108\n"
"help.text"
-msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns an octal number with 10 characters (30 bits). The most significant bit is the sign bit, the other 29 bits return the value."
+msgid "<emph>Factor</emph> (optional) is the factor by which depreciation decreases. If a value is not entered, the default is factor 2."
msgstr ""
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3152587\n"
-"68\n"
-"help.text"
-msgid "<emph>Places</emph> means the number of places to be output."
-msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3147482\n"
-"69\n"
+"04060103.xhp\n"
+"hd_id3159274\n"
+"109\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060115.xhp
-#, fuzzy
-msgctxt ""
-"04060115.xhp\n"
-"par_id3154317\n"
-"70\n"
-"help.text"
-msgid "<item type=\"input\">=DEC2OCT(100;4)</item> returns 0144."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3083446\n"
-"help.text"
-msgid "<bookmark_value>ERF function</bookmark_value><bookmark_value>Gaussian error integral</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3083446\n"
-"135\n"
-"help.text"
-msgid "ERF"
-msgstr ""
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150381\n"
-"136\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ERF\">Returns values of the Gaussian error integral.</ahelp>"
-msgstr ""
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3152475\n"
-"137\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3163824\n"
-"138\n"
+"04060103.xhp\n"
+"par_id3152882\n"
+"110\n"
"help.text"
-msgid "ERF(LowerLimit; UpperLimit)"
+msgid "A computer system with an initial cost of 75,000 currency units is to be depreciated monthly over 5 years. The value at the end of the depreciation is to be 1 currency unit. The factor is 2."
msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3149715\n"
-"139\n"
+"04060103.xhp\n"
+"par_id3154106\n"
+"111\n"
"help.text"
-msgid "<emph>LowerLimit</emph> is the lower limit of the integral."
+msgid "<item type=\"input\">=DDB(75000;1;60;12;2) </item>= 1,721.81 currency units. Therefore, the double-declining depreciation in the twelfth month after purchase is 1,721.81 currency units."
msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3156294\n"
-"140\n"
+"04060103.xhp\n"
+"bm_id3149962\n"
"help.text"
-msgid "<emph>UpperLimit</emph> is optional. It is the upper limit of the integral. If this value is missing, the calculation takes places between 0 and the lower limit."
+msgid "<bookmark_value>calculating; geometric-degressive depreciations</bookmark_value> <bookmark_value>geometric-degressive depreciations</bookmark_value> <bookmark_value>depreciations;geometric-degressive</bookmark_value> <bookmark_value>DB function</bookmark_value>"
msgstr ""
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154819\n"
-"141\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060115.xhp
-#, fuzzy
-msgctxt ""
-"04060115.xhp\n"
-"par_id3152974\n"
-"142\n"
-"help.text"
-msgid "<item type=\"input\">=ERF(0;1)</item> returns 0.842701."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060115.xhp
-#, fuzzy
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"bm_id3145082\n"
+"04060103.xhp\n"
+"hd_id3149962\n"
+"113\n"
"help.text"
-msgid "<bookmark_value>ERFC function</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+msgid "DB"
+msgstr "DB"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3145082\n"
-"143\n"
+"04060103.xhp\n"
+"par_id3148989\n"
+"114\n"
"help.text"
-msgid "ERFC"
+msgid "<ahelp hid=\"HID_FUNC_GDA2\">Returns the depreciation of an asset for a specified period using the fixed-declining balance method.</ahelp>"
msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3149453\n"
-"144\n"
+"04060103.xhp\n"
+"par_id3156213\n"
+"115\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ERFC\">Returns complementary values of the Gaussian error integral between x and infinity.</ahelp>"
+msgid "This form of depreciation is used if you want to get a higher depreciation value at the beginning of the depreciation (as opposed to linear depreciation). The depreciation value is reduced with every depreciation period by the depreciation already deducted from the initial cost."
msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3155839\n"
-"145\n"
+"04060103.xhp\n"
+"hd_id3149807\n"
+"116\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3153220\n"
-"146\n"
+"04060103.xhp\n"
+"par_id3153349\n"
+"117\n"
"help.text"
-msgid "ERFC(LowerLimit)"
+msgid "DB(Cost; Salvage; Life; Period; Month)"
msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3147620\n"
-"147\n"
+"04060103.xhp\n"
+"par_id3148462\n"
+"118\n"
"help.text"
-msgid "<emph>LowerLimit</emph> is the lower limit of the integral"
-msgstr ""
+msgid "<emph>Cost</emph> is the initial cost of an asset."
+msgstr "Shpenzimet e përvetsimit. Shpenzimi fillestar i pasurisë."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3146861\n"
-"148\n"
+"04060103.xhp\n"
+"par_id3148658\n"
+"119\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr "Vlera për të cilin do të përcaktohet rangimi."
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3156102\n"
-"149\n"
+"04060103.xhp\n"
+"par_id3145371\n"
+"120\n"
"help.text"
-msgid "<item type=\"input\">=ERFC(1)</item> returns 0.157299."
+msgid "<emph>Life</emph> defines the period over which an asset is depreciated."
msgstr ""
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3152927\n"
-"help.text"
-msgid "<bookmark_value>GESTEP function</bookmark_value><bookmark_value>numbers;greater than or equal to</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3152927\n"
-"150\n"
+"04060103.xhp\n"
+"par_id3154608\n"
+"121\n"
"help.text"
-msgid "GESTEP"
+msgid "<emph>Period</emph> is the length of each period. The length must be entered in the same date unit as the depreciation period."
msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3150763\n"
-"151\n"
+"04060103.xhp\n"
+"par_id3150829\n"
+"122\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_GESTEP\">The result is 1 if <item type=\"literal\">Number</item> is greater than or equal to <item type=\"literal\">Step</item>.</ahelp>"
+msgid "<emph>Month</emph> (optional) denotes the number of months for the first year of depreciation. If an entry is not defined, 12 is used as the default."
msgstr ""
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3150879\n"
-"152\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3145212\n"
-"153\n"
-"help.text"
-msgid "GESTEP(Number; Step)"
-msgstr "Madhësia e hapit të lajverrësit"
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3153275\n"
-"154\n"
+"04060103.xhp\n"
+"hd_id3151130\n"
+"123\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060115.xhp
-#, fuzzy
-msgctxt ""
-"04060115.xhp\n"
-"par_id3156132\n"
-"155\n"
-"help.text"
-msgid "<item type=\"input\">=GESTEP(5;1)</item> returns 1."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3147276\n"
-"help.text"
-msgid "<bookmark_value>HEX2BIN function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into binary numbers</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3147276\n"
-"79\n"
-"help.text"
-msgid "HEX2BIN"
-msgstr ""
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3150258\n"
-"80\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">The result is the binary number for the hexadecimal number entered.</ahelp>"
-msgstr ""
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3156117\n"
-"81\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3155847\n"
-"82\n"
-"help.text"
-msgid "HEX2BIN(Number; Places)"
-msgstr "Numri i vendeve tw pwrdorura"
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3152810\n"
-"83\n"
+"04060103.xhp\n"
+"par_id3156147\n"
+"124\n"
"help.text"
-msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgid "A computer system with an initial cost of 25,000 currency units is to be depreciated over a three year period. The salvage value is to be 1,000 currency units. One period is 30 days."
msgstr ""
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3153758\n"
-"84\n"
-"help.text"
-msgid "<emph>Places</emph> is the number of places to be output."
-msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154052\n"
-"85\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060115.xhp
-#, fuzzy
-msgctxt ""
-"04060115.xhp\n"
-"par_id3156002\n"
-"86\n"
-"help.text"
-msgid "<item type=\"input\">=HEX2BIN(64;8)</item> returns 01100100."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3154742\n"
-"help.text"
-msgid "<bookmark_value>HEX2DEC function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into decimal numbers</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3154742\n"
-"87\n"
+"04060103.xhp\n"
+"par_id3149513\n"
+"125\n"
"help.text"
-msgid "HEX2DEC"
+msgid "<item type=\"input\">=DB(25000;1000;36;1;6)</item> = 1,075.00 currency units"
msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3153626\n"
-"88\n"
+"04060103.xhp\n"
+"par_id3159242\n"
+"126\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\">The result is the decimal number for the hexadecimal number entered.</ahelp>"
+msgid "The fixed-declining depreciation of the computer system is 1,075.00 currency units."
msgstr ""
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3143233\n"
-"89\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"par_id3149293\n"
-"90\n"
-"help.text"
-msgid "HEX2DEC(Number)"
-msgstr "Numri i faqes"
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3159176\n"
-"91\n"
+"04060103.xhp\n"
+"bm_id3153948\n"
"help.text"
-msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgid "<bookmark_value>IRR function</bookmark_value> <bookmark_value>calculating;internal rates of return, regular payments</bookmark_value> <bookmark_value>internal rates of return;regular payments</bookmark_value>"
msgstr ""
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"hd_id3154304\n"
-"92\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060115.xhp
-#, fuzzy
-msgctxt ""
-"04060115.xhp\n"
-"par_id3146093\n"
-"93\n"
-"help.text"
-msgid "<item type=\"input\">=HEX2DEC(64)</item> returns 100."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060115.xhp
-msgctxt ""
-"04060115.xhp\n"
-"bm_id3149750\n"
-"help.text"
-msgid "<bookmark_value>HEX2OCT function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into octal numbers</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3149750\n"
-"94\n"
+"04060103.xhp\n"
+"hd_id3153948\n"
+"128\n"
"help.text"
-msgid "HEX2OCT"
-msgstr ""
+msgid "IRR"
+msgstr "IRR"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3153983\n"
-"95\n"
+"04060103.xhp\n"
+"par_id3143282\n"
+"129\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\">The result is the octal number for the hexadecimal number entered.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_IKV\">Calculates the internal rate of return for an investment.</ahelp> The values represent cash flow values at regular intervals, at least one value must be negative (payments), and at least one value must be positive (income)."
msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3145660\n"
-"96\n"
+"04060103.xhp\n"
+"hd_id3150599\n"
+"130\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3151170\n"
-"97\n"
+"04060103.xhp\n"
+"par_id3155427\n"
+"131\n"
"help.text"
-msgid "HEX2OCT(Number; Places)"
-msgstr "Numri i vendeve tw pwrdorura"
+msgid "IRR(Values; Guess)"
+msgstr "Ndrysho vlerat standarde"
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3152795\n"
-"98\n"
+"04060103.xhp\n"
+"par_id3144758\n"
+"132\n"
"help.text"
-msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgid "<emph>Values</emph> represents an array containing the values."
msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"par_id3149204\n"
-"99\n"
+"04060103.xhp\n"
+"par_id3149233\n"
+"133\n"
"help.text"
-msgid "<emph>Places</emph> is the number of places to be output."
-msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
+msgid "<emph>Guess</emph> (optional) is the estimated value. An iterative method is used to calculate the internal rate of return. If you can provide only few values, you should provide an initial guess to enable the iteration."
+msgstr ""
-#: 04060115.xhp
+#: 04060103.xhp
msgctxt ""
-"04060115.xhp\n"
-"hd_id3153901\n"
-"100\n"
+"04060103.xhp\n"
+"hd_id3151258\n"
+"134\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060115.xhp
-#, fuzzy
-msgctxt ""
-"04060115.xhp\n"
-"par_id3159341\n"
-"101\n"
-"help.text"
-msgid "<item type=\"input\">=HEX2OCT(64;4)</item> returns 0144."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 12090300.xhp
-msgctxt ""
-"12090300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Delete"
-msgstr "Fshije"
-
-#: 12090300.xhp
-msgctxt ""
-"12090300.xhp\n"
-"hd_id3150276\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Delete</link>"
-msgstr ""
-
-#: 12090300.xhp
+#: 04060103.xhp
msgctxt ""
-"12090300.xhp\n"
-"par_id3159400\n"
-"2\n"
+"04060103.xhp\n"
+"par_id3150630\n"
+"135\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Deletes the selected pivot table.</ahelp>"
+msgid "Under the assumption that cell contents are A1=<item type=\"input\">-10000</item>, A2=<item type=\"input\">3500</item>, A3=<item type=\"input\">7600</item> and A4=<item type=\"input\">1000</item>, the formula <item type=\"input\">=IRR(A1:A4)</item> gives a result of 11,33%."
msgstr ""
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Page Style"
-msgstr "Stili i faqes"
-
-#: 05070000.xhp
-msgctxt ""
-"05070000.xhp\n"
-"hd_id3157910\n"
-"1\n"
-"help.text"
-msgid "Page Style"
-msgstr "Stili i faqes"
-
-#: 05070000.xhp
+#: 04060103.xhp
msgctxt ""
-"05070000.xhp\n"
-"par_id3156023\n"
-"2\n"
+"04060103.xhp\n"
+"bm_id3151012\n"
"help.text"
-msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\">Opens a dialog where you can define the appearance of all pages in your document.</ahelp></variable>"
+msgid "<bookmark_value>calculating; interests for unchanged amortization installments</bookmark_value> <bookmark_value>interests for unchanged amortization installments</bookmark_value> <bookmark_value>ISPMT function</bookmark_value>"
msgstr ""
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"tit\n"
-"help.text"
-msgid "SECOND"
-msgstr "SEKONDA"
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"bm_id3159390\n"
-"help.text"
-msgid "<bookmark_value>SECOND function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
-
-#: func_second.xhp
+#: 04060103.xhp
msgctxt ""
-"func_second.xhp\n"
-"hd_id3159390\n"
-"86\n"
+"04060103.xhp\n"
+"hd_id3151012\n"
+"314\n"
"help.text"
-msgid "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>"
-msgstr ""
+msgid "ISPMT"
+msgstr "ISPMT"
-#: func_second.xhp
+#: 04060103.xhp
msgctxt ""
-"func_second.xhp\n"
-"par_id3148974\n"
-"87\n"
+"04060103.xhp\n"
+"par_id3148693\n"
+"315\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SEKUNDE\">Returns the second for the given time value.</ahelp> The second is given as an integer between 0 and 59."
+msgid "<ahelp hid=\"HID_FUNC_ISPMT\">Calculates the level of interest for unchanged amortization installments.</ahelp>"
msgstr ""
-#: func_second.xhp
+#: 04060103.xhp
msgctxt ""
-"func_second.xhp\n"
-"hd_id3154362\n"
-"88\n"
+"04060103.xhp\n"
+"hd_id3154661\n"
+"316\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"par_id3148407\n"
-"89\n"
-"help.text"
-msgid "SECOND(Number)"
-msgstr "Numri i dytw"
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"par_id3155904\n"
-"90\n"
-"help.text"
-msgid "<emph>Number</emph>, as a time value, is a decimal, for which the second is to be returned."
-msgstr ""
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"hd_id3149992\n"
-"91\n"
-"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"par_id3153350\n"
-"93\n"
-"help.text"
-msgid "<item type=\"input\">=SECOND(NOW())</item> returns the current second"
-msgstr ""
-
-#: func_second.xhp
-msgctxt ""
-"func_second.xhp\n"
-"par_id3150831\n"
-"94\n"
-"help.text"
-msgid "<item type=\"input\">=SECOND(C4)</item> returns 17 if contents of C4 = <item type=\"input\">12:20:17</item>."
-msgstr ""
-
-#: 02190200.xhp
-msgctxt ""
-"02190200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Column Break"
-msgstr "Thyerje e kolonës"
-
-#: 02190200.xhp
-msgctxt ""
-"02190200.xhp\n"
-"bm_id3151384\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets;deleting column breaks</bookmark_value><bookmark_value>deleting;manual column breaks</bookmark_value><bookmark_value>column breaks;deleting</bookmark_value>"
-msgstr ""
-
-#: 02190200.xhp
-msgctxt ""
-"02190200.xhp\n"
-"hd_id3151384\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02190200.xhp\" name=\"Column Break\">Column Break</link>"
-msgstr ""
-
-#: 02190200.xhp
-msgctxt ""
-"02190200.xhp\n"
-"par_id3154124\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DeleteColumnbreak\">Removes a manual column break to the left of the active cell.</ahelp>"
-msgstr ""
-
-#: 02190200.xhp
-msgctxt ""
-"02190200.xhp\n"
-"par_id3145173\n"
-"3\n"
-"help.text"
-msgid "Position the cursor in the cell to the right of the column break indicated by a vertical line and choose <emph>Edit - Delete Manual Break - Column Break</emph>. The manual column break is removed."
-msgstr ""
-
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Hide Details"
-msgstr "Fsheh hollësitë"
-
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"bm_id3155628\n"
-"help.text"
-msgid "<bookmark_value>sheets; hiding details</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
-
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"hd_id3155628\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\">Hide Details</link>"
-msgstr ""
-
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"par_id3154515\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\">Hides the details of the grouped row or column that contains the cursor. To hide all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
-msgstr ""
-
-#: 12080100.xhp
-msgctxt ""
-"12080100.xhp\n"
-"par_id3153252\n"
-"3\n"
-"help.text"
-msgid "To show all hidden groups, select the outlined table, and then choose <emph>Data -Outline –</emph> <link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\"><emph>Show Details</emph></link>."
-msgstr ""
-
-#: 12090200.xhp
-msgctxt ""
-"12090200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Refresh"
-msgstr "Rifresko"
-
-#: 12090200.xhp
-msgctxt ""
-"12090200.xhp\n"
-"hd_id3151385\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresh\">Refresh</link>"
-msgstr ""
-
-#: 12090200.xhp
-msgctxt ""
-"12090200.xhp\n"
-"par_id3149456\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:RecalcPivotTable\">Updates the pivot table.</ahelp>"
-msgstr ""
-
-#: 12090200.xhp
-msgctxt ""
-"12090200.xhp\n"
-"par_id3150400\n"
-"3\n"
-"help.text"
-msgid "After you import an Excel spreadsheet that contains a pivot table, click in the table, and then choose <emph>Data - Pivot Table - Refresh</emph>."
-msgstr ""
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Print Ranges"
-msgstr "Edito Intervalet e Printimit"
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"hd_id3154013\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05080000.xhp\" name=\"Print Ranges\">Print Ranges</link>"
-msgstr ""
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"par_id3155855\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".\">Manages print ranges. Only cells within the print ranges will be printed.</ahelp>"
-msgstr ""
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"par_id3146119\n"
-"4\n"
-"help.text"
-msgid "If you do not define any print range manually, Calc assigns an automatic print range to include all the cells that are not empty."
-msgstr ""
-
-#: 05080000.xhp
-msgctxt ""
-"05080000.xhp\n"
-"hd_id3154729\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Edit\">Edit</link>"
-msgstr ""
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"tit\n"
-"help.text"
-msgid "EOMONTH"
-msgstr ""
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"bm_id3150991\n"
-"help.text"
-msgid "<bookmark_value>EOMONTH function</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"hd_id3150991\n"
-"231\n"
-"help.text"
-msgid "<variable id=\"eomonth\"><link href=\"text/scalc/01/func_eomonth.xhp\">EOMONTH</link></variable>"
-msgstr ""
-
-#: func_eomonth.xhp
+#: 04060103.xhp
msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3152766\n"
-"232\n"
+"04060103.xhp\n"
+"par_id3146070\n"
+"317\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">Returns the date of the last day of a month which falls m<emph>onths</emph> away from the s<emph>tart date</emph>.</ahelp>"
+msgid "ISPMT(Rate; Period; TotalPeriods; Invest)"
msgstr ""
-#: func_eomonth.xhp
+#: 04060103.xhp
msgctxt ""
-"func_eomonth.xhp\n"
-"hd_id3150597\n"
-"233\n"
+"04060103.xhp\n"
+"par_id3148672\n"
+"318\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<emph>Rate</emph> sets the periodic interest rate."
+msgstr "E kthen tarifwn efektive vjetore tw interesit"
-#: func_eomonth.xhp
+#: 04060103.xhp
msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3150351\n"
-"234\n"
+"04060103.xhp\n"
+"par_id3145777\n"
+"319\n"
"help.text"
-msgid "EOMONTH(StartDate; Months)"
+msgid "<emph>Period</emph> is the number of installments for calculation of interest."
msgstr ""
-#: func_eomonth.xhp
+#: 04060103.xhp
msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3146787\n"
-"235\n"
+"04060103.xhp\n"
+"par_id3153678\n"
+"320\n"
"help.text"
-msgid "<emph>StartDate</emph> is a date (the starting point of the calculation)."
-msgstr ""
+msgid "<emph>TotalPeriods</emph> is the total number of installment periods."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-#: func_eomonth.xhp
+#: 04060103.xhp
msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3155615\n"
-"236\n"
+"04060103.xhp\n"
+"par_id3159390\n"
+"321\n"
"help.text"
-msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
+msgid "<emph>Invest</emph> is the amount of the investment."
msgstr ""
-#: func_eomonth.xhp
+#: 04060103.xhp
msgctxt ""
-"func_eomonth.xhp\n"
-"hd_id3156335\n"
-"237\n"
+"04060103.xhp\n"
+"hd_id3156162\n"
+"322\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3154829\n"
-"238\n"
-"help.text"
-msgid "What is the last day of the month that falls 6 months after September 14 2001?"
-msgstr ""
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3156143\n"
-"239\n"
-"help.text"
-msgid "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> returns the serial number 37346. Formatted as a date, this is 2002-03-31."
-msgstr ""
-
-#: func_eomonth.xhp
-msgctxt ""
-"func_eomonth.xhp\n"
-"par_id3156144\n"
-"239\n"
-"help.text"
-msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If the date is given as string, it has to be in ISO format."
-msgstr ""
-
-#: 02120000.xhp
-msgctxt ""
-"02120000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Headers & Footers"
-msgstr "~Krerët & Fundfaqet..."
-
-#: 02120000.xhp
-msgctxt ""
-"02120000.xhp\n"
-"hd_id3145251\n"
-"1\n"
-"help.text"
-msgid "Headers & Footers"
-msgstr "~Krerët & Fundfaqet..."
-
-#: 02120000.xhp
-msgctxt ""
-"02120000.xhp\n"
-"par_id3151073\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"kopfundfusszeilentext\"><ahelp hid=\".uno:EditHeaderAndFooter\">Allows you to define and format headers and footers.</ahelp></variable>"
-msgstr ""
-
-#: 02120000.xhp
-msgctxt ""
-"02120000.xhp\n"
-"par_id3153415\n"
-"3\n"
-"help.text"
-msgid "The<emph> Headers/Footers </emph>dialog contains the tabs for defining headers and footers. There will be separate tabs for the left and right page headers and footers if the <emph>Same content left/right</emph> option was not marked in the <link href=\"text/scalc/01/05070000.xhp\" name=\"Page Style\">Page Style</link> dialog."
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"tit\n"
-"help.text"
-msgid "Statistics Functions"
-msgstr "Funksionet statistikore"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"bm_id3153018\n"
-"help.text"
-msgid "<bookmark_value>statistics functions</bookmark_value><bookmark_value>Function Wizard; statistics</bookmark_value><bookmark_value>functions; statistics functions</bookmark_value>"
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"hd_id3153018\n"
-"1\n"
-"help.text"
-msgid "Statistics Functions"
-msgstr "Funksionet statistikore"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3157874\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"statistiktext\">This category contains the <emph>Statistics</emph> functions. </variable>"
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149001\n"
-"9\n"
-"help.text"
-msgid "Some of the examples use the following data table:"
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3148775\n"
-"10\n"
-"help.text"
-msgid "C"
-msgstr "C"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3145297\n"
-"11\n"
-"help.text"
-msgid "D"
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3150661\n"
-"12\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3153551\n"
-"13\n"
-"help.text"
-msgid "x value"
-msgstr "Vlera"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3147536\n"
-"14\n"
-"help.text"
-msgid "y value"
-msgstr "Vlera"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3153224\n"
-"15\n"
-"help.text"
-msgid "3"
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3150475\n"
-"16\n"
-"help.text"
-msgid "-5"
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3155367\n"
-"17\n"
-"help.text"
-msgid "-3"
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149783\n"
-"18\n"
-"help.text"
-msgid "4"
-msgstr "Yll 24-cepësh"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3153181\n"
-"19\n"
-"help.text"
-msgid "-2"
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3148429\n"
-"20\n"
-"help.text"
-msgid "0"
-msgstr "Titullimi 10"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3152588\n"
-"21\n"
-"help.text"
-msgid "5"
-msgstr "25%"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3147483\n"
-"22\n"
-"help.text"
-msgid "-1"
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3083443\n"
-"23\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149826\n"
-"24\n"
-"help.text"
-msgid "6"
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3163820\n"
-"25\n"
-"help.text"
-msgid "0"
-msgstr "Titullimi 10"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3154816\n"
-"26\n"
-"help.text"
-msgid "3"
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149276\n"
-"27\n"
-"help.text"
-msgid "7"
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3149267\n"
-"28\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3156310\n"
-"29\n"
-"help.text"
-msgid "4"
-msgstr "Yll 24-cepësh"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3154639\n"
-"30\n"
-"help.text"
-msgid "8"
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3145205\n"
-"31\n"
-"help.text"
-msgid "4"
-msgstr "Yll 24-cepësh"
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3153276\n"
-"32\n"
-"help.text"
-msgid "6"
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3150756\n"
-"33\n"
-"help.text"
-msgid "9"
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3156095\n"
-"34\n"
-"help.text"
-msgid "6"
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3152929\n"
-"35\n"
-"help.text"
-msgid "8"
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3156324\n"
-"36\n"
-"help.text"
-msgid "The statistical functions are described in the following subsections."
-msgstr ""
-
-#: 04060108.xhp
-msgctxt ""
-"04060108.xhp\n"
-"par_id3150271\n"
-"37\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04060116.xhp\" name=\"Statistical Functions in the Analysis-AddIn.\">Statistical Functions in the Analysis-AddIn</link>"
-msgstr ""
-
-#: 02190100.xhp
-msgctxt ""
-"02190100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Row Break"
-msgstr "~Thyerja e Rreshtit"
-
-#: 02190100.xhp
-msgctxt ""
-"02190100.xhp\n"
-"bm_id3156326\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; deleting row breaks</bookmark_value><bookmark_value>deleting;manual row breaks</bookmark_value><bookmark_value>row breaks; deleting</bookmark_value>"
-msgstr ""
-
-#: 02190100.xhp
-msgctxt ""
-"02190100.xhp\n"
-"hd_id3156326\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02190100.xhp\" name=\"Row Break\">Row Break</link>"
-msgstr ""
-
-#: 02190100.xhp
-msgctxt ""
-"02190100.xhp\n"
-"par_id3154366\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:DeleteRowbreak\">Removes the manual row break above the active cell.</ahelp>"
-msgstr ""
-
-#: 02190100.xhp
-msgctxt ""
-"02190100.xhp\n"
-"par_id3151041\n"
-"3\n"
-"help.text"
-msgid "Position the cursor in a cell directly below the row break indicated by a horizontal line and choose <emph>Edit - Delete Manual Break - Row Break</emph>. The manual row break is removed."
-msgstr ""
-
-#: 02140300.xhp
-msgctxt ""
-"02140300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Up"
-msgstr "Up"
-
-#: 02140300.xhp
-msgctxt ""
-"02140300.xhp\n"
-"hd_id3147264\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/02140300.xhp\" name=\"Up\">Up</link>"
-msgstr ""
-
-#: 02140300.xhp
-msgctxt ""
-"02140300.xhp\n"
-"par_id3150793\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:FillUp\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the bottom most cell.</ahelp>"
-msgstr ""
-
-#: 02140300.xhp
-msgctxt ""
-"02140300.xhp\n"
-"par_id3150447\n"
-"3\n"
-"help.text"
-msgid "If a selected range has only one column, the content of the bottom most cell is copied into the selected cells. If several columns are selected, the contents of the bottom most cells are copied into those selected above."
-msgstr ""
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Optimal Row Heights"
-msgstr "Latrësia optimale e rendit"
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"bm_id3148491\n"
-"help.text"
-msgid "<bookmark_value>sheets; optimal row heights</bookmark_value><bookmark_value>rows; optimal heights</bookmark_value><bookmark_value>optimal row heights</bookmark_value>"
-msgstr ""
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"hd_id3148491\n"
-"1\n"
-"help.text"
-msgid "Optimal Row Heights"
-msgstr "Latrësia optimale e rendit"
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"par_id3154758\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Determines the optimal row height for the selected rows.</ahelp></variable> The optimal row height depends on the font size of the largest character in the row. You can use various <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"units of measure\">units of measure</link>."
-msgstr ""
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"hd_id3154908\n"
-"3\n"
-"help.text"
-msgid "Add"
-msgstr "Shto"
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"par_id3151044\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_ROW_OPT:ED_VALUE\">Sets additional spacing between the largest character in a row and the cell boundaries.</ahelp>"
-msgstr ""
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"hd_id3150439\n"
-"5\n"
-"help.text"
-msgid "Default value"
-msgstr "Mosparaqitje vlerash"
-
-#: 05030200.xhp
-msgctxt ""
-"05030200.xhp\n"
-"par_id3146984\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ROW_OPT:BTN_DEFVAL\">Restores the default value for the optimal row height.</ahelp>"
-msgstr ""
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Insert Name"
-msgstr "Fute Emrin"
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"bm_id3153195\n"
-"help.text"
-msgid "<bookmark_value>cell ranges; inserting named ranges</bookmark_value><bookmark_value>inserting; cell ranges</bookmark_value>"
-msgstr ""
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"hd_id3153195\n"
-"1\n"
-"help.text"
-msgid "Insert Name"
-msgstr "Fute Emrin"
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"par_id3150011\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\">Inserts a defined named cell range at the current cursor's position.</ahelp></variable>"
-msgstr ""
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"par_id3149412\n"
-"7\n"
-"help.text"
-msgid "You can only insert a cell area after having defined a name for the area."
-msgstr ""
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"hd_id3153160\n"
-"3\n"
-"help.text"
-msgid "Insert name"
-msgstr "Fute Emrin"
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"par_id3154944\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">Lists all defined cell areas. Double-click an entry to insert the named area into the active sheet at the current cursor position.</ahelp>"
-msgstr ""
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"hd_id3153418\n"
-"5\n"
-"help.text"
-msgid "Insert All"
-msgstr "Futi ~të Gjtha"
-
-#: 04070200.xhp
-msgctxt ""
-"04070200.xhp\n"
-"par_id3155066\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES_PASTE:BTN_ADD\">Inserts a list of all named areas and the corresponding cell references at the current cursor position.</ahelp>"
-msgstr ""
-
-#: 06030500.xhp
-msgctxt ""
-"06030500.xhp\n"
-"tit\n"
-"help.text"
-msgid "Remove All Traces"
-msgstr "Largo të Gjitha Gjurmët"
-
-#: 06030500.xhp
-msgctxt ""
-"06030500.xhp\n"
-"bm_id3153088\n"
-"help.text"
-msgid "<bookmark_value>cells; removing traces</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
-
-#: 06030500.xhp
-msgctxt ""
-"06030500.xhp\n"
-"hd_id3153088\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06030500.xhp\" name=\"Remove All Traces\">Remove All Traces</link>"
-msgstr ""
-
-#: 06030500.xhp
-msgctxt ""
-"06030500.xhp\n"
-"par_id3151246\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Removes all tracer arrows from the spreadsheet.</ahelp>"
-msgstr ""
-
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Selecting Sheets"
-msgstr "Selekto Fletët"
-
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"hd_id3156023\n"
-"5\n"
-"help.text"
-msgid "Selecting Sheets"
-msgstr "Selekto Fletët"
-
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"par_id3147265\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"tabellenauswaehlen\"><ahelp hid=\".uno:SelectTables\" visibility=\"visible\">Selects multiple sheets.</ahelp></variable>"
-msgstr ""
-
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"hd_id3125863\n"
-"2\n"
-"help.text"
-msgid "Selected Sheets"
-msgstr "~Fletët e selektuara"
-
-#: 02210000.xhp
-msgctxt ""
-"02210000.xhp\n"
-"par_id3153969\n"
-"3\n"
-"help.text"
-msgid "<ahelp hid=\"HID_SELECTTABLES\" visibility=\"visible\">Lists the sheets in the current document. To select a sheet, press the up or down arrow keys to move to a sheet in the list. To add a sheet to the selection, hold down Ctrl (Mac: Command) while pressing the arrow keys and then press Spacebar. To select a range of sheets, hold down Shift and press the arrow keys. </ahelp>"
-msgstr ""
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"tit\n"
-"help.text"
-msgid "TIMEVALUE"
-msgstr "TIMEVALUE"
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"bm_id3146755\n"
-"help.text"
-msgid "<bookmark_value>TIMEVALUE function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"hd_id3146755\n"
-"160\n"
-"help.text"
-msgid "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\">TIMEVALUE</link></variable>"
-msgstr ""
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3148502\n"
-"161\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZEITWERT\">TIMEVALUE returns the internal time number from a text enclosed by quotes and which may show a possible time entry format.</ahelp>"
-msgstr ""
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3150794\n"
-"162\n"
-"help.text"
-msgid "The internal number indicated as a decimal is the result of the date system used under $[officename] to calculate date entries."
-msgstr ""
-
-#: func_timevalue.xhp
+#: 04060103.xhp
msgctxt ""
-"func_timevalue.xhp\n"
-"par_id011920090347118\n"
+"04060103.xhp\n"
+"par_id3149558\n"
+"323\n"
"help.text"
-msgid "If the text string also includes a year, month, or day, TIMEVALUE only returns the fractional part of the conversion."
+msgid "For a credit amount of 120,000 currency units with a two-year term and monthly installments, at a yearly interest rate of 12% the level of interest after 1.5 years is required."
msgstr ""
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"hd_id3150810\n"
-"163\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3150823\n"
-"164\n"
-"help.text"
-msgid "TIMEVALUE(\"Text\")"
-msgstr "Vizato tekstin"
-
-#: func_timevalue.xhp
+#: 04060103.xhp
msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3152556\n"
-"165\n"
+"04060103.xhp\n"
+"par_id3150949\n"
+"324\n"
"help.text"
-msgid "<emph>Text</emph> is a valid time expression and must be entered in quotation marks."
+msgid "<item type=\"input\">=ISPMT(1%;18;24;120000)</item> = -300 currency units. The monthly interest after 1.5 years amounts to 300 currency units."
msgstr ""
-#: func_timevalue.xhp
-msgctxt ""
-"func_timevalue.xhp\n"
-"hd_id3146815\n"
-"166\n"
-"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
-
-#: func_timevalue.xhp
+#: 04060103.xhp
msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3146829\n"
-"167\n"
+"04060103.xhp\n"
+"par_id3146812\n"
+"426\n"
"help.text"
-msgid "<item type=\"input\">=TIMEVALUE(\"4PM\")</item> returns 0.67. When formatting in time format HH:MM:SS, you then get 16:00:00."
+msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Forward to Financial Functions Part Two\">Financial Functions Part Two</link>"
msgstr ""
-#: func_timevalue.xhp
+#: 04060103.xhp
msgctxt ""
-"func_timevalue.xhp\n"
-"par_id3153632\n"
-"168\n"
+"04060103.xhp\n"
+"par_id3154411\n"
+"427\n"
"help.text"
-msgid "<item type=\"input\">=TIMEVALUE(\"24:00\")</item> returns 1. If you use the HH:MM:SS time format, the value is 00:00:00."
+msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Financial Functions Part Three</link>"
msgstr ""
#: 04060104.xhp
@@ -17647,7 +8199,7 @@ msgctxt ""
"4\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: 04060104.xhp
msgctxt ""
@@ -17656,7 +8208,7 @@ msgctxt ""
"5\n"
"help.text"
msgid "D"
-msgstr "DB"
+msgstr ""
#: 04060104.xhp
msgctxt ""
@@ -17931,7 +8483,6 @@ msgid "Value for \"Type\""
msgstr "Vlera për koordinatën x."
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id8360850\n"
@@ -18319,7 +8870,6 @@ msgid "<item type=\"input\">=ISREF(\"abcdef\")</item> returns always FALSE becau
msgstr ""
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id2131544\n"
@@ -18635,7 +9185,6 @@ msgid "Example"
msgstr "Shembull"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id3153904\n"
@@ -19128,7 +9677,6 @@ msgid "Example"
msgstr "Shembull"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id3154793\n"
@@ -19232,7 +9780,7 @@ msgctxt ""
"119\n"
"help.text"
msgid "N"
-msgstr "N"
+msgstr ""
#: 04060104.xhp
msgctxt ""
@@ -19288,7 +9836,6 @@ msgid "Example"
msgstr "Shembull"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id3154117\n"
@@ -19298,7 +9845,6 @@ msgid "<item type=\"input\">=N(123)</item> returns 123"
msgstr "Hyrja e karaktereve alfanumerike"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id2337717\n"
@@ -19307,7 +9853,6 @@ msgid "<item type=\"input\">=N(TRUE)</item> returns 1"
msgstr "Hyrja e karaktereve alfanumerike"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id3153781\n"
@@ -19317,7 +9862,6 @@ msgid "<item type=\"input\">=N(FALSE)</item> returns 0"
msgstr "Hyrja e karaktereve alfanumerike"
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id3154670\n"
@@ -19545,7 +10089,7 @@ msgctxt ""
"166\n"
"help.text"
msgid "Meaning"
-msgstr ""
+msgstr "Kernimi"
#: 04060104.xhp
msgctxt ""
@@ -19566,7 +10110,6 @@ msgid "Returns the number of the referenced column."
msgstr "Kthen numrin e mbrendshëm të shtyllës së një reference."
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id3150094\n"
@@ -19594,7 +10137,6 @@ msgid "Returns the number of the referenced row."
msgstr "Kthen vlerën e numrit Pi."
#: 04060104.xhp
-#, fuzzy
msgctxt ""
"04060104.xhp\n"
"par_id3151222\n"
@@ -19628,7 +10170,7 @@ msgctxt ""
"164\n"
"help.text"
msgid "<item type=\"input\">=CELL(\"Sheet\";Sheet3.D2)</item> returns 3."
-msgstr ""
+msgstr "Hyrja e karaktereve alfanumerike"
#: 04060104.xhp
msgctxt ""
@@ -19655,7 +10197,7 @@ msgctxt ""
"175\n"
"help.text"
msgid "<item type=\"input\">=CELL(\"ADDRESS\";D2)</item> returns $D$2."
-msgstr ""
+msgstr "Hyrja e karaktereve alfanumerike"
#: 04060104.xhp
msgctxt ""
@@ -19664,7 +10206,7 @@ msgctxt ""
"176\n"
"help.text"
msgid "<item type=\"input\">=CELL(\"ADDRESS\";Sheet3.D2)</item> returns $Sheet3.$D$2."
-msgstr ""
+msgstr "Hyrja e karaktereve alfanumerike"
#: 04060104.xhp
msgctxt ""
@@ -19736,7 +10278,7 @@ msgctxt ""
"184\n"
"help.text"
msgid "<item type=\"input\">=CELL(\"COORD\"; D2)</item> returns $A:$D$2."
-msgstr ""
+msgstr "Hyrja e karaktereve alfanumerike"
#: 04060104.xhp
msgctxt ""
@@ -19745,7 +10287,7 @@ msgctxt ""
"185\n"
"help.text"
msgid "<item type=\"input\">=CELL(\"COORD\"; Sheet3.D2)</item> returns $C:$D$2."
-msgstr ""
+msgstr "Hyrja e karaktereve alfanumerike"
#: 04060104.xhp
msgctxt ""
@@ -20143,8104 +10685,6708 @@ msgctxt ""
msgid "<emph>Reference</emph> (list of options) is the position of the cell to be examined. If <emph>Reference</emph> is a range, the cell moves to the top left of the range. If <emph>Reference</emph> is missing, $[officename] Calc uses the position of the cell in which this formula is located. Microsoft Excel uses the reference of the cell in which the cursor is positioned."
msgstr ""
-#: func_yearfrac.xhp
+#: 04060105.xhp
msgctxt ""
-"func_yearfrac.xhp\n"
+"04060105.xhp\n"
"tit\n"
"help.text"
-msgid "YEARFRAC"
-msgstr ""
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"bm_id3148735\n"
-"help.text"
-msgid "<bookmark_value>YEARFRAC function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"hd_id3148735\n"
-"196\n"
-"help.text"
-msgid "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\">YEARFRAC</link></variable>"
-msgstr ""
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3150899\n"
-"197\n"
-"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_YEARFRAC\"> The result is a number between 0 and 1, representing the fraction of a year between <emph>StartDate</emph> and <emph>EndDate</emph>.</ahelp>"
-msgstr ""
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"hd_id3155259\n"
-"198\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3155823\n"
-"199\n"
-"help.text"
-msgid "YEARFRAC(StartDate; EndDate; Basis)"
-msgstr ""
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3145144\n"
-"200\n"
-"help.text"
-msgid "<emph>StartDate</emph> and <emph>EndDate</emph> are two date values."
-msgstr ""
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3149954\n"
-"201\n"
-"help.text"
-msgid "<emph>Basis</emph> is chosen from a list of options and indicates how the year is to be calculated."
-msgstr ""
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3146847\n"
-"202\n"
-"help.text"
-msgid "Basis"
-msgstr "Bazë"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3155956\n"
-"203\n"
-"help.text"
-msgid "Calculation"
-msgstr ""
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3154502\n"
-"204\n"
-"help.text"
-msgid "0 or missing"
-msgstr "OSE logjike"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3149877\n"
-"205\n"
-"help.text"
-msgid "US method (NASD), 12 months of 30 days each"
-msgstr ""
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3148766\n"
-"250\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3154326\n"
-"206\n"
-"help.text"
-msgid "Exact number of days in months, exact number of days in year"
-msgstr "Muajt: Numri i muajve në vitin e parë të amortizimit."
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3145245\n"
-"251\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3155620\n"
-"207\n"
-"help.text"
-msgid "Exact number of days in month, year has 360 days"
-msgstr ""
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3145297\n"
-"252\n"
-"help.text"
-msgid "3"
-msgstr ""
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3148394\n"
-"208\n"
-"help.text"
-msgid "Exact number of days in month, year has 365 days"
-msgstr ""
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3151022\n"
-"253\n"
-"help.text"
-msgid "4"
-msgstr ""
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3150931\n"
-"209\n"
-"help.text"
-msgid "European method, 12 months of 30 days each"
-msgstr ""
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"hd_id3145626\n"
-"210\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: func_yearfrac.xhp
-msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3149007\n"
-"211\n"
-"help.text"
-msgid "What fraction of the year 2008 lies between 2008-01-01 and 2008-07-01?"
-msgstr ""
+msgid "Logical Functions"
+msgstr "Funksionet statistikore"
-#: func_yearfrac.xhp
+#: 04060105.xhp
msgctxt ""
-"func_yearfrac.xhp\n"
-"par_id3154632\n"
-"212\n"
+"04060105.xhp\n"
+"bm_id3153484\n"
"help.text"
-msgid "=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) returns 0.50."
+msgid "<bookmark_value>logical functions</bookmark_value> <bookmark_value>Function Wizard; logical</bookmark_value> <bookmark_value>functions; logical functions</bookmark_value>"
msgstr ""
-#: 12040300.xhp
-msgctxt ""
-"12040300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Advanced Filter"
-msgstr "Filtri i Avancuar"
-
-#: 12040300.xhp
+#: 04060105.xhp
msgctxt ""
-"12040300.xhp\n"
-"hd_id3158394\n"
+"04060105.xhp\n"
+"hd_id3153484\n"
"1\n"
"help.text"
-msgid "Advanced Filter"
-msgstr "Filtri i Avancuar"
+msgid "Logical Functions"
+msgstr "Funksionet statistikore"
-#: 12040300.xhp
+#: 04060105.xhp
msgctxt ""
-"12040300.xhp\n"
-"par_id3156281\n"
+"04060105.xhp\n"
+"par_id3149312\n"
"2\n"
"help.text"
-msgid "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Defines an advanced filter.</ahelp></variable>"
-msgstr ""
-
-#: 12040300.xhp
-msgctxt ""
-"12040300.xhp\n"
-"par_idN105EB\n"
-"help.text"
-msgid "<embedvar href=\"text/scalc/guide/filters.xhp#filters\"/>"
+msgid "<variable id=\"logischtext\">This category contains the <emph>Logical</emph> functions. </variable>"
msgstr ""
-#: 12040300.xhp
+#: 04060105.xhp
msgctxt ""
-"12040300.xhp\n"
-"hd_id3153771\n"
-"25\n"
+"04060105.xhp\n"
+"bm_id3147505\n"
"help.text"
-msgid "Read filter criteria from"
-msgstr "Lexo ~kriteret e filtrimit nga"
+msgid "<bookmark_value>AND function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 12040300.xhp
+#: 04060105.xhp
msgctxt ""
-"12040300.xhp\n"
-"par_id3147426\n"
-"26\n"
+"04060105.xhp\n"
+"hd_id3147505\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_CRITERIA_AREA\">Select the named range, or enter the cell range that contains the filter criteria that you want to use.</ahelp>"
-msgstr ""
+msgid "AND"
+msgstr "DHE"
-#: 12040300.xhp
+#: 04060105.xhp
msgctxt ""
-"12040300.xhp\n"
-"hd_id3153188\n"
-"27\n"
+"04060105.xhp\n"
+"par_id3153959\n"
+"65\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
+msgid "<ahelp hid=\"HID_FUNC_UND\">Returns TRUE if all arguments are TRUE.</ahelp> If one of the elements is FALSE, this function returns the FALSE value."
msgstr ""
-#: 06030600.xhp
-msgctxt ""
-"06030600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trace Error"
-msgstr "Gjurmo Gabimin"
-
-#: 06030600.xhp
+#: 04060105.xhp
msgctxt ""
-"06030600.xhp\n"
-"bm_id3153561\n"
+"04060105.xhp\n"
+"par_id3146100\n"
+"66\n"
"help.text"
-msgid "<bookmark_value>cells; tracing errors</bookmark_value><bookmark_value>tracing errors</bookmark_value><bookmark_value>error tracing</bookmark_value>"
+msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
msgstr ""
-#: 06030600.xhp
+#: 04060105.xhp
msgctxt ""
-"06030600.xhp\n"
-"hd_id3153561\n"
-"1\n"
+"04060105.xhp\n"
+"par_id3150538\n"
+"67\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\">Trace Error</link>"
+msgid "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
msgstr ""
-#: 06030600.xhp
+#: 04060105.xhp
msgctxt ""
-"06030600.xhp\n"
-"par_id3148550\n"
-"2\n"
+"04060105.xhp\n"
+"par_id3149128\n"
+"68\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowErrors\" visibility=\"visible\">Draws tracer arrows to all precedent cells which cause an error value in a selected cell.</ahelp>"
+msgid "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!"
msgstr ""
-#: 02140200.xhp
-msgctxt ""
-"02140200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Right"
-msgstr "Djathtas"
-
-#: 02140200.xhp
+#: 04060105.xhp
msgctxt ""
-"02140200.xhp\n"
-"hd_id3153896\n"
-"1\n"
+"04060105.xhp\n"
+"hd_id3150374\n"
+"31\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140200.xhp\" name=\"Right\">Right</link>"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 02140200.xhp
+#: 04060105.xhp
msgctxt ""
-"02140200.xhp\n"
-"par_id3153361\n"
-"2\n"
+"04060105.xhp\n"
+"par_id3159123\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\".uno:FillRight\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the left most cell.</ahelp>"
+msgid "AND(LogicalValue1; LogicalValue2 ...LogicalValue30)"
msgstr ""
-#: 02140200.xhp
+#: 04060105.xhp
msgctxt ""
-"02140200.xhp\n"
-"par_id3154684\n"
-"3\n"
+"04060105.xhp\n"
+"par_id3150038\n"
+"33\n"
"help.text"
-msgid "If a range of only one row is selected, the contents of the far left cell are copied to all the other selected cells. If you have selected several rows, each of the far left cells is copied into those cells to the right."
+msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row. The result is TRUE if the logical value in all cells within the cell range is TRUE."
msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"tit\n"
+"04060105.xhp\n"
+"hd_id3149143\n"
+"34\n"
"help.text"
-msgid "Data field"
-msgstr "Fusha e të dhënave"
+msgid "Example"
+msgstr "Shembull"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"bm_id7292397\n"
+"04060105.xhp\n"
+"par_id3153123\n"
+"35\n"
"help.text"
-msgid "<bookmark_value>calculating;pivot table</bookmark_value>"
+msgid "The logical values of entries 12<13; 14>12, and 7<6 are to be checked:"
msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3150871\n"
-"1\n"
+"04060105.xhp\n"
+"par_id3145632\n"
+"36\n"
"help.text"
-msgid "Data field"
-msgstr "Fusha e të dhënave"
+msgid "<item type=\"input\">=AND(12<13;14>12;7<6)</item> returns FALSE."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3154124\n"
-"16\n"
+"04060105.xhp\n"
+"par_id3149946\n"
+"60\n"
"help.text"
-msgid "The contents of this dialog is different for data fields in the <emph>Data</emph> area, and data fields in the <emph>Row</emph> or <emph>Column</emph> area of the <link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table\">Pivot Table</link> dialog."
-msgstr ""
+msgid "<item type=\"input\">=AND (FALSE;TRUE)</item> returns FALSE."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3152596\n"
-"2\n"
+"04060105.xhp\n"
+"bm_id3149015\n"
"help.text"
-msgid "Subtotals"
-msgstr "Nëntotalet"
+msgid "<bookmark_value>FALSE function</bookmark_value>"
+msgstr "Definon vlerën llogjike si PASAKTË."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3151113\n"
+"04060105.xhp\n"
+"hd_id3149015\n"
"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_PIVOTSUBT\">Specify the subtotals that you want to calculate.</ahelp>"
-msgstr ""
+msgid "FALSE"
+msgstr "PASAKTË"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3145366\n"
+"04060105.xhp\n"
+"par_id3149890\n"
"4\n"
"help.text"
-msgid "None"
-msgstr "Asnjë"
+msgid "<ahelp hid=\"HID_FUNC_FALSCH\">Returns the logical value FALSE.</ahelp> The FALSE() function does not require any arguments, and always returns the logical value FALSE."
+msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3152576\n"
+"04060105.xhp\n"
+"hd_id3146939\n"
"5\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_NONE\">Does not calculate subtotals.</ahelp>"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3154012\n"
+"04060105.xhp\n"
+"par_id3150030\n"
"6\n"
"help.text"
-msgid "Automatic"
-msgstr "Automatike"
+msgid "FALSE()"
+msgstr "Pasaktë"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3155856\n"
+"04060105.xhp\n"
+"hd_id3150697\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_AUTO\">Automatically calculates subtotals.</ahelp>"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3155411\n"
+"04060105.xhp\n"
+"par_id3154842\n"
"8\n"
"help.text"
-msgid "User-defined"
-msgstr "Definuar nga shfrytëzuesi"
+msgid "<item type=\"input\">=FALSE()</item> returns FALSE"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3149581\n"
+"04060105.xhp\n"
+"par_id3147468\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_USER\">Select this option, and then click the type of subtotal that you want to calculate in the list.</ahelp>"
-msgstr ""
-
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"hd_id3147124\n"
-"10\n"
-"help.text"
-msgid "Function"
-msgstr "Funksioni"
+msgid "<item type=\"input\">=NOT(FALSE())</item> returns TRUE"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3154490\n"
-"11\n"
+"04060105.xhp\n"
+"bm_id3150141\n"
"help.text"
-msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_PIVOTSUBT:LB_FUNC\">Click the type of subtotal that you want to calculate. This option is only available if the <emph>User-defined</emph> option is selected.</ahelp>"
-msgstr ""
+msgid "<bookmark_value>IF function</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3154944\n"
-"14\n"
+"04060105.xhp\n"
+"hd_id3150141\n"
+"48\n"
"help.text"
-msgid "Show elements without data"
-msgstr "Trego ~elementet pa të dhëna"
+msgid "IF"
+msgstr "NËSE"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3149403\n"
-"15\n"
+"04060105.xhp\n"
+"par_id3148740\n"
+"49\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOTSUBT:CB_SHOWALL\">Includes empty columns and rows in the results table.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_WENN\">Specifies a logical test to be performed.</ahelp>"
msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"hd_id3149122\n"
-"12\n"
+"04060105.xhp\n"
+"hd_id3153325\n"
+"50\n"
"help.text"
-msgid "Name:"
-msgstr "Emri:"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_id3150749\n"
-"13\n"
+"04060105.xhp\n"
+"par_id3154558\n"
+"51\n"
"help.text"
-msgid "Lists the name of the selected data field."
+msgid "IF(Test; ThenValue; OtherwiseValue)"
msgstr ""
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN106EC\n"
-"help.text"
-msgid "More"
-msgstr "Më shumë"
-
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN106F0\n"
+"04060105.xhp\n"
+"par_id3149727\n"
+"52\n"
"help.text"
-msgid "<ahelp hid=\".\">Expands or reduces the dialog. The <emph>More</emph> button is visible for data fields only.</ahelp>"
+msgid "<emph>Test</emph> is any value or expression that can be TRUE or FALSE."
msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN106F3\n"
+"04060105.xhp\n"
+"par_id3155828\n"
+"53\n"
"help.text"
-msgid "Options"
-msgstr "Opcionet"
+msgid "<emph>ThenValue</emph> (optional) is the value that is returned if the logical test is TRUE."
+msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN106F7\n"
+"04060105.xhp\n"
+"par_id3154811\n"
+"54\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/scalc/01/12090106.xhp\">Data Field Options</link> dialog. The <emph>Options</emph> button is visible for column, row, or page fields only.</ahelp>"
+msgid "<emph>OtherwiseValue</emph> (optional) is the value that is returned if the logical test is FALSE."
msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10708\n"
+"04060105.xhp\n"
+"par_idN107FA\n"
"help.text"
-msgid "If the dialog is expanded by the <emph>More</emph> button, the following items are added to the dialog:"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1070B\n"
+"04060105.xhp\n"
+"hd_id3149507\n"
+"55\n"
"help.text"
-msgid "Displayed value"
-msgstr "Vlerë absolute"
+msgid "Examples"
+msgstr "Shembuj:"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1070F\n"
+"04060105.xhp\n"
+"par_id3150867\n"
+"57\n"
"help.text"
-msgid "<ahelp hid=\".\">For each data field, you can select the type of display.</ahelp> For some types you can select additional information for a base field and a base item."
+msgid "<item type=\"input\">=IF(A1>5;100;\"too small\")</item> If the value in A1 is higher than 5, the value 100 is entered in the current cell; otherwise, the text “too small” (without quotes) is entered."
msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10712\n"
+"04060105.xhp\n"
+"bm_id3155954\n"
"help.text"
-msgid "Type"
-msgstr "Tipi"
+msgid "<bookmark_value>NOT function</bookmark_value>"
+msgstr "Gabim: Vlera nuk është në dispozicion"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10716\n"
+"04060105.xhp\n"
+"hd_id3155954\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"1495371266\">Select the type of calculating of the displayed value for the data field.</ahelp>"
-msgstr ""
+msgid "NOT"
+msgstr "JO"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10724\n"
+"04060105.xhp\n"
+"par_id3153570\n"
+"13\n"
"help.text"
-msgid "Type"
-msgstr "Tipi"
+msgid "<ahelp hid=\"HID_FUNC_NICHT\">Complements (inverts) a logical value.</ahelp>"
+msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1072A\n"
+"04060105.xhp\n"
+"hd_id3147372\n"
+"14\n"
"help.text"
-msgid "Displayed value"
-msgstr "Vlerë absolute"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10731\n"
+"04060105.xhp\n"
+"par_id3157996\n"
+"15\n"
"help.text"
-msgid "Normal"
-msgstr "Normal"
+msgid "NOT(LogicalValue)"
+msgstr "JO logjike"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10737\n"
+"04060105.xhp\n"
+"par_id3148766\n"
+"16\n"
"help.text"
-msgid "Results are shown unchanged"
-msgstr ""
+msgid "<emph>LogicalValue</emph> is any value to be complemented."
+msgstr "Vlera që do të transformohet prapa."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1073E\n"
+"04060105.xhp\n"
+"hd_id3149884\n"
+"17\n"
"help.text"
-msgid "Difference from"
-msgstr "Nga fajli..."
+msgid "Example"
+msgstr "Shembull"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10744\n"
+"04060105.xhp\n"
+"par_id3150132\n"
+"18\n"
"help.text"
-msgid "From each result, its reference value (see below) is subtracted, and the difference is shown. Totals outside of the base field are shown as empty results."
+msgid "<item type=\"input\">=NOT(A)</item>. If A=TRUE then NOT(A) will evaluate FALSE."
msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10747\n"
+"04060105.xhp\n"
+"bm_id3148394\n"
"help.text"
-msgid "<emph>Named item</emph>"
-msgstr "Statuti i artikullit ka ndryshuar"
+msgid "<bookmark_value>OR function</bookmark_value>"
+msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1074C\n"
+"04060105.xhp\n"
+"hd_id3148394\n"
+"20\n"
"help.text"
-msgid "If a base item name is specified, the reference value for a combination of field items is the result where the item in the base field is replaced by the specified base item."
-msgstr ""
+msgid "OR"
+msgstr "OSE"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1074F\n"
+"04060105.xhp\n"
+"par_id3156060\n"
+"61\n"
"help.text"
-msgid "<emph>Previous item or Next item</emph>"
+msgid "<ahelp hid=\"HID_FUNC_ODER\">Returns TRUE if at least one argument is TRUE.</ahelp> This function returns the value FALSE, if all the arguments have the logical value FALSE."
msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10754\n"
+"04060105.xhp\n"
+"par_id3148771\n"
+"62\n"
"help.text"
-msgid "If \"previous item\" or \"next item\" is specified as the base item, the reference value is the result for the next visible member of the base field, in the base field's sort order."
+msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1075B\n"
+"04060105.xhp\n"
+"par_id3153546\n"
+"63\n"
"help.text"
-msgid "% Of"
+msgid "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10761\n"
+"04060105.xhp\n"
+"par_id3149027\n"
+"64\n"
"help.text"
-msgid "Each result is divided by its reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
+msgid "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!"
msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1076A\n"
+"04060105.xhp\n"
+"hd_id3155517\n"
+"22\n"
"help.text"
-msgid "% Difference from"
-msgstr "Nga fajli..."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10770\n"
+"04060105.xhp\n"
+"par_id3150468\n"
+"23\n"
"help.text"
-msgid "From each result, its reference value is subtracted, and the difference is divided by the reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
+msgid "OR(LogicalValue1; LogicalValue2 ...LogicalValue30)"
msgstr ""
-#: 12090105.xhp
-msgctxt ""
-"12090105.xhp\n"
-"par_idN10777\n"
-"help.text"
-msgid "Running total in"
-msgstr "Gabim në ekzekutimin e shell-it në /target"
-
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1077D\n"
+"04060105.xhp\n"
+"par_id3155819\n"
+"24\n"
"help.text"
-msgid "Each result is added to the sum of the results for preceding items in the base field, in the base field's sort order, and the total sum is shown."
+msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row."
msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10780\n"
+"04060105.xhp\n"
+"hd_id3153228\n"
+"25\n"
"help.text"
-msgid "Results are always summed, even if a different summary function was used to get each result."
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10787\n"
+"04060105.xhp\n"
+"par_id3154870\n"
+"26\n"
"help.text"
-msgid "% of row"
-msgstr "Rresht"
+msgid "The logical values of entries 12<11; 13>22, and 45=45 are to be checked."
+msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1078D\n"
+"04060105.xhp\n"
+"par_id3155371\n"
+"27\n"
"help.text"
-msgid "Each result is divided by the total result for its row in the pivot table. If there are several data fields, the total for the result's data field is used. If there are subtotals with manually selected summary functions, the total with the data field's summary function is still used."
-msgstr ""
+msgid "<item type=\"input\">=OR(12<11;13>22;45=45)</item> returns TRUE."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN10794\n"
+"04060105.xhp\n"
+"par_id3158412\n"
+"59\n"
"help.text"
-msgid "% of column"
-msgstr "Kolonë"
+msgid "<item type=\"input\">=OR(FALSE;TRUE)</item> returns TRUE."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN1079A\n"
+"04060105.xhp\n"
+"bm_id3156256\n"
"help.text"
-msgid "Same as \"% of row\", but the total for the result's column is used."
-msgstr ""
+msgid "<bookmark_value>TRUE function</bookmark_value>"
+msgstr "Kthen vlerën llogjike SAKTË."
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107A1\n"
+"04060105.xhp\n"
+"hd_id3156256\n"
+"38\n"
"help.text"
-msgid "% of total"
-msgstr "Gjithsejt"
+msgid "TRUE"
+msgstr "SAKTË"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107A7\n"
+"04060105.xhp\n"
+"par_id3155985\n"
+"39\n"
"help.text"
-msgid "Same as \"% of row\", but the grand total for the result's data field is used."
+msgid "<ahelp hid=\"HID_FUNC_WAHR\">The logical value is set to TRUE.</ahelp> The TRUE() function does not require any arguments, and always returns the logical value TRUE."
msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107AE\n"
+"04060105.xhp\n"
+"hd_id3153717\n"
+"40\n"
"help.text"
-msgid "Index"
-msgstr "Indeks"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107B4\n"
+"04060105.xhp\n"
+"par_id3152590\n"
+"41\n"
"help.text"
-msgid "The row and column totals and the grand total, following the same rules as above, are used to calculate the following expression:"
-msgstr ""
+msgid "TRUE()"
+msgstr "Saktë"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107B7\n"
+"04060105.xhp\n"
+"hd_id3147175\n"
+"42\n"
"help.text"
-msgid "( original result * grand total ) / ( row total * column total )"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107BA\n"
+"04060105.xhp\n"
+"par_id3146148\n"
+"43\n"
"help.text"
-msgid "Base field"
-msgstr "Emri i fushës"
+msgid "If A=TRUE and B=FALSE the following examples appear:"
+msgstr ""
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107BE\n"
+"04060105.xhp\n"
+"par_id3083285\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\"1495371267\">Select the field from which the respective value is taken as base for the calculation.</ahelp>"
-msgstr ""
+msgid "<item type=\"input\">=AND(A;B)</item> returns FALSE"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107C1\n"
+"04060105.xhp\n"
+"par_id3083444\n"
+"45\n"
"help.text"
-msgid "Base item"
-msgstr "Zgjedh artikullin:"
+msgid "<item type=\"input\">=OR(A;B)</item> returns TRUE"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 12090105.xhp
+#: 04060105.xhp
msgctxt ""
-"12090105.xhp\n"
-"par_idN107C5\n"
+"04060105.xhp\n"
+"par_id3154314\n"
+"46\n"
"help.text"
-msgid "<ahelp hid=\"1495371268\">Select the item of the base field from which the respective value is taken as base for the calculation.</ahelp>"
-msgstr ""
+msgid "<item type=\"input\">=NOT(AND(A;B))</item> returns TRUE"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
+"04060106.xhp\n"
"tit\n"
"help.text"
-msgid "Deleting Contents"
-msgstr "Tabela e përmbajtjeve"
+msgid "Mathematical Functions"
+msgstr "Funksionet statistikore"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"bm_id3143284\n"
+"04060106.xhp\n"
+"bm_id3147124\n"
"help.text"
-msgid "<bookmark_value>deleting; cell contents</bookmark_value><bookmark_value>cells; deleting contents</bookmark_value><bookmark_value>spreadsheets; deleting cell contents</bookmark_value><bookmark_value>cell contents; deleting</bookmark_value>"
+msgid "<bookmark_value>mathematical functions</bookmark_value><bookmark_value>Function Wizard; mathematical</bookmark_value><bookmark_value>functions; mathematical functions</bookmark_value><bookmark_value>trigonometric functions</bookmark_value>"
msgstr ""
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"hd_id3143284\n"
+"04060106.xhp\n"
+"hd_id3147124\n"
"1\n"
"help.text"
-msgid "Deleting Contents"
-msgstr "Tabela e përmbajtjeve"
+msgid "Mathematical Functions"
+msgstr "Funksionet statistikore"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3149456\n"
+"04060106.xhp\n"
+"par_id3154943\n"
"2\n"
"help.text"
-msgid "<variable id=\"inhalteloeschentext\"><ahelp hid=\".uno:Delete\">Specifies the contents to be deleted from the active cell or from a selected cell range.</ahelp></variable> If several sheets are selected, all selected sheets will be affected."
+msgid "<variable id=\"mathematiktext\">This category contains the <emph>Mathematical</emph> functions for Calc.</variable> To open the <emph>Function Wizard</emph>, choose <link href=\"text/scalc/01/04060000.xhp\" name=\"Insert - Function\"><emph>Insert - Function</emph></link>."
msgstr ""
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3159154\n"
-"21\n"
+"04060106.xhp\n"
+"bm_id3146944\n"
"help.text"
-msgid "This dialog is also called by pressing Backspace after the cell cursor has been activated on the sheet."
+msgid "<bookmark_value>ABS function</bookmark_value><bookmark_value>absolute values</bookmark_value><bookmark_value>values;absolute</bookmark_value>"
msgstr ""
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3145367\n"
-"22\n"
+"04060106.xhp\n"
+"hd_id3146944\n"
+"33\n"
"help.text"
-msgid "Pressing Delete deletes content without calling the dialog or changing formats."
-msgstr ""
+msgid "ABS"
+msgstr "ABS"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3153951\n"
-"23\n"
+"04060106.xhp\n"
+"par_id3154546\n"
+"34\n"
"help.text"
-msgid "Use <emph>Cut</emph> on the Standard bar to delete contents and formats without the dialog."
+msgid "<ahelp hid=\"HID_FUNC_ABS\">Returns the absolute value of a number.</ahelp>"
msgstr ""
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3148575\n"
-"3\n"
-"help.text"
-msgid "Selection"
-msgstr "Selektimet"
-
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3149665\n"
-"4\n"
+"04060106.xhp\n"
+"hd_id3154843\n"
+"35\n"
"help.text"
-msgid "This area lists the options for deleting contents."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"hd_id3146975\n"
-"5\n"
+"04060106.xhp\n"
+"par_id3147475\n"
+"36\n"
"help.text"
-msgid "Delete All"
-msgstr "Fshij të gjitha"
+msgid "ABS(Number)"
+msgstr "Numri i faqes"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3154729\n"
-"6\n"
+"04060106.xhp\n"
+"par_id3148438\n"
+"37\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELALL\">Deletes all content from the selected cell range.</ahelp>"
+msgid "<emph>Number</emph> is the number whose absolute value is to be calculated. The absolute value of a number is its value without the +/- sign."
msgstr ""
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3156286\n"
-"7\n"
-"help.text"
-msgid "Text"
-msgstr "Tekst"
-
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3154015\n"
-"8\n"
+"04060106.xhp\n"
+"hd_id3155823\n"
+"38\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELSTRINGS\">Deletes text only. Formats, formulas, numbers and dates are not affected.</ahelp>"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"hd_id3153840\n"
-"9\n"
+"04060106.xhp\n"
+"par_id3152787\n"
+"39\n"
"help.text"
-msgid "Numbers"
-msgstr "Numrat"
+msgid "<item type=\"input\">=ABS(-56)</item> returns 56."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3148405\n"
-"10\n"
+"04060106.xhp\n"
+"par_id3148752\n"
+"40\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNUMBERS\">Deletes numbers only. Formats and formulas remain unchanged.</ahelp>"
-msgstr ""
+msgid "<item type=\"input\">=ABS(12)</item> returns 12."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"hd_id3155764\n"
-"11\n"
+"04060106.xhp\n"
+"par_id320139\n"
"help.text"
-msgid "Date & time"
-msgstr "<date/time>"
+msgid "<item type=\"input\">=ABS(0)</item> returns 0."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3149567\n"
-"12\n"
+"04060106.xhp\n"
+"bm_id3150896\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELDATETIME\">Deletes date and time values. Formats, text, numbers and formulas remain unchanged.</ahelp>"
+msgid "<bookmark_value>COUNTBLANK function</bookmark_value><bookmark_value>counting;empty cells</bookmark_value><bookmark_value>empty cells;counting</bookmark_value>"
msgstr ""
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"hd_id3154703\n"
-"13\n"
+"04060106.xhp\n"
+"hd_id3150896\n"
+"42\n"
"help.text"
-msgid "Formulas"
-msgstr "Formulat"
+msgid "COUNTBLANK"
+msgstr "COUNTBLANK"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3148485\n"
-"14\n"
+"04060106.xhp\n"
+"par_id3155260\n"
+"43\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELFORMULAS\">Deletes formulas. Text, numbers, formats, dates and times remain unchanged.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ANZAHLLEEREZELLEN\">Returns the number of empty cells.</ahelp>"
msgstr ""
-#: 02150000.xhp
-msgctxt ""
-"02150000.xhp\n"
-"hd_id3150300\n"
-"15\n"
-"help.text"
-msgid "Comments"
-msgstr "Koment"
-
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3154658\n"
-"16\n"
+"04060106.xhp\n"
+"hd_id3145144\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELNOTES\">Deletes comments added to cells. All other elements remain unchanged.</ahelp>"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"hd_id3155112\n"
-"17\n"
+"04060106.xhp\n"
+"par_id3153931\n"
+"45\n"
"help.text"
-msgid "Formats"
-msgstr "Formate"
+msgid "COUNTBLANK(Range)"
+msgstr "Brezi i numrave"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3146134\n"
-"18\n"
+"04060106.xhp\n"
+"par_id3149512\n"
+"46\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELATTRS\">Deletes format attributes applied to cells. All cell content remains unchanged.</ahelp>"
+msgid "Returns the number of empty cells in the cell range <emph>Range</emph>."
msgstr ""
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"hd_id3150088\n"
-"19\n"
+"04060106.xhp\n"
+"hd_id3146139\n"
+"47\n"
"help.text"
-msgid "Objects"
-msgstr "Objektet"
+msgid "Example"
+msgstr "Shembull"
-#: 02150000.xhp
+#: 04060106.xhp
msgctxt ""
-"02150000.xhp\n"
-"par_id3152990\n"
-"20\n"
+"04060106.xhp\n"
+"par_id3148586\n"
+"48\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_DELCONT_BTN_DELOBJECTS\">Deletes objects. All cell content remains unchanged.</ahelp>"
+msgid "<item type=\"input\">=COUNTBLANK(A1:B2)</item> returns 4 if cells A1, A2, B1, and B2 are all empty."
msgstr ""
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"bm_id3153114\n"
"help.text"
-msgid "Ungroup"
-msgstr "Zhgrupo"
+msgid "<bookmark_value>ACOS function</bookmark_value>"
+msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"hd_id3148492\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3153114\n"
+"50\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
-msgstr ""
+msgid "ACOS"
+msgstr "ACOS"
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"par_id3151384\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3145163\n"
+"51\n"
"help.text"
-msgid "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">Ungroups the selection. In a nested group, the last rows or columns that were added are removed from the group.</ahelp></variable>"
+msgid "<ahelp hid=\"HID_FUNC_ARCCOS\">Returns the inverse trigonometric cosine of a number.</ahelp>"
msgstr ""
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"hd_id3151210\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3153565\n"
+"52\n"
"help.text"
-msgid "Deactivate for"
-msgstr "Deaktivizo për"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"hd_id3156280\n"
-"5\n"
+"04060106.xhp\n"
+"par_id3150020\n"
+"53\n"
"help.text"
-msgid "Rows"
-msgstr "Rreshtat"
+msgid "ACOS(Number)"
+msgstr "Numri i faqes"
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"par_id3125864\n"
-"6\n"
+"04060106.xhp\n"
+"par_id3159134\n"
+"54\n"
"help.text"
-msgid "Removes selected rows from a group."
+msgid "This function returns the inverse trigonometric cosine of <emph>Number</emph>, that is the angle (in radians) whose cosine is Number. The angle returned is between 0 and PI."
msgstr ""
-#: 12080400.xhp
-msgctxt ""
-"12080400.xhp\n"
-"hd_id3147230\n"
-"7\n"
-"help.text"
-msgid "Columns"
-msgstr "Kolonat"
-
-#: 12080400.xhp
+#: 04060106.xhp
msgctxt ""
-"12080400.xhp\n"
-"par_id3154685\n"
-"8\n"
+"04060106.xhp\n"
+"par_id679647\n"
"help.text"
-msgid "Removes selected columns from a group."
+msgid "To return the angle in degrees, use the DEGREES function."
msgstr ""
-#: 07090000.xhp
+#: 04060106.xhp
msgctxt ""
-"07090000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3149882\n"
+"55\n"
"help.text"
-msgid "Freeze"
-msgstr "~Ngrije"
+msgid "Example"
+msgstr "Shembull"
-#: 07090000.xhp
+#: 04060106.xhp
msgctxt ""
-"07090000.xhp\n"
-"hd_id3150517\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3150128\n"
+"56\n"
"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Freeze</link>"
+msgid "<item type=\"input\">=ACOS(-1)</item> returns 3.14159265358979 (PI radians)"
msgstr ""
-#: 07090000.xhp
+#: 04060106.xhp
msgctxt ""
-"07090000.xhp\n"
-"par_id3156289\n"
-"2\n"
+"04060106.xhp\n"
+"par_id8792382\n"
"help.text"
-msgid "<ahelp hid=\".uno:FreezePanes\" visibility=\"visible\">Divides the sheet at the top left corner of the active cell and the area to the top left is no longer scrollable.</ahelp>"
+msgid "<item type=\"input\">=DEGREES(ACOS(0.5))</item> returns 60. The cosine of 60 degrees is 0.5."
msgstr ""
-#: 12050000.xhp
-msgctxt ""
-"12050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Subtotals"
-msgstr "Nëntotalet"
-
-#: 12050000.xhp
+#: 04060106.xhp
msgctxt ""
-"12050000.xhp\n"
-"hd_id3153822\n"
-"1\n"
+"04060106.xhp\n"
+"bm_id3145355\n"
"help.text"
-msgid "Subtotals"
-msgstr "Nëntotalet"
+msgid "<bookmark_value>ACOSH function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
-#: 12050000.xhp
+#: 04060106.xhp
msgctxt ""
-"12050000.xhp\n"
-"par_id3145119\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3145355\n"
+"60\n"
"help.text"
-msgid "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibility=\"visible\">Calculates subtotals for the columns that you select.</ahelp></variable> $[officename] uses the SUM function to automatically calculate the subtotal and grand total values in a labeled range. You can also use other functions to perform the calculation. $[officename] automatically recognizes a defined database area when you place the cursor in it."
-msgstr ""
+msgid "ACOSH"
+msgstr "ACOSH"
-#: 12050000.xhp
+#: 04060106.xhp
msgctxt ""
-"12050000.xhp\n"
-"par_id3153896\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3157993\n"
+"61\n"
"help.text"
-msgid "For example, you can generate a sales summary for a certain postal code based on data from a client database."
+msgid "<ahelp hid=\"HID_FUNC_ARCOSHYP\">Returns the inverse hyperbolic cosine of a number.</ahelp>"
msgstr ""
-#: 12050000.xhp
-msgctxt ""
-"12050000.xhp\n"
-"hd_id3163708\n"
-"4\n"
-"help.text"
-msgid "Delete"
-msgstr "Fshije"
-
-#: 12050000.xhp
+#: 04060106.xhp
msgctxt ""
-"12050000.xhp\n"
-"par_id3154125\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3145295\n"
+"62\n"
"help.text"
-msgid "Deletes the subtotal rows in the selected area."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 06030800.xhp
+#: 04060106.xhp
msgctxt ""
-"06030800.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3151017\n"
+"63\n"
"help.text"
-msgid "Mark Invalid Data"
-msgstr "Shenjo të Dhënat e Pavlefshme"
+msgid "ACOSH(Number)"
+msgstr "Numri i faqes"
-#: 06030800.xhp
+#: 04060106.xhp
msgctxt ""
-"06030800.xhp\n"
-"bm_id3153821\n"
+"04060106.xhp\n"
+"par_id3149000\n"
+"64\n"
"help.text"
-msgid "<bookmark_value>cells; invalid data</bookmark_value><bookmark_value>data; showing invalid data</bookmark_value><bookmark_value>invalid data;marking</bookmark_value>"
+msgid "This function returns the inverse hyperbolic cosine of <emph>Number</emph>, that is the number whose hyperbolic cosine is Number."
msgstr ""
-#: 06030800.xhp
+#: 04060106.xhp
msgctxt ""
-"06030800.xhp\n"
-"hd_id3153821\n"
-"1\n"
+"04060106.xhp\n"
+"par_id6393932\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\">Mark Invalid Data</link>"
+msgid "Number must be greater than or equal to 1."
msgstr ""
-#: 06030800.xhp
+#: 04060106.xhp
msgctxt ""
-"06030800.xhp\n"
-"par_id3147264\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3150566\n"
+"65\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">Marks all cells in the sheet that contain values outside the validation rules.</ahelp>"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 06030800.xhp
+#: 04060106.xhp
msgctxt ""
-"06030800.xhp\n"
-"par_id3151211\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3145629\n"
+"66\n"
"help.text"
-msgid "The <link href=\"text/scalc/01/12120000.xhp\" name=\"validity rules\">validity rules</link> restrict the input of numbers, dates, time values and text to certain values. However, it is possible to enter invalid values or copy invalid values into the cells if the <emph>Stop</emph> option is not selected. When you assign a validity rule, existing values in a cell will not be modified."
-msgstr ""
+msgid "<item type=\"input\">=ACOSH(1)</item> returns 0."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id951567\n"
"help.text"
-msgid "EASTERSUNDAY"
-msgstr "EASTERSUNDAY"
+msgid "<item type=\"input\">=ACOSH(COSH(4))</item> returns 4."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"bm_id3152960\n"
+"04060106.xhp\n"
+"bm_id3149027\n"
"help.text"
-msgid "<bookmark_value>EASTERSUNDAY function</bookmark_value>"
-msgstr "Kthen vlerën llogjike SAKTË."
+msgid "<bookmark_value>ACOT function</bookmark_value>"
+msgstr "Gabim: Vlera nuk është në dispozicion"
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"hd_id3152960\n"
-"175\n"
+"04060106.xhp\n"
+"hd_id3149027\n"
+"70\n"
"help.text"
-msgid "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">EASTERSUNDAY</link></variable>"
-msgstr ""
+msgid "ACOT"
+msgstr "ACOT"
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3154570\n"
-"176\n"
+"04060106.xhp\n"
+"par_id3155818\n"
+"71\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Returns the date of Easter Sunday for the entered year.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ARCCOT\">Returns the inverse cotangent (the arccotangent) of the given number.</ahelp>"
msgstr ""
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"hd_id9460127\n"
+"04060106.xhp\n"
+"hd_id3153225\n"
+"72\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id2113711\n"
-"help.text"
-msgid "EASTERSUNDAY(Year)"
-msgstr ""
-
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3938413\n"
+"04060106.xhp\n"
+"par_id3158419\n"
+"73\n"
"help.text"
-msgid "<emph>Year</emph> is an integer between 1583 and 9956 or 0 and 99. You can also calculate other holidays by simple addition with this date."
-msgstr ""
+msgid "ACOT(Number)"
+msgstr "Numri i faqes"
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3156156\n"
-"177\n"
+"04060106.xhp\n"
+"par_id3154948\n"
+"74\n"
"help.text"
-msgid "Easter Monday = EASTERSUNDAY(Year) + 1"
+msgid "This function returns the inverse trigonometric cotangent of <emph>Number</emph>, that is the angle (in radians) whose cotangent is Number. The angle returned is between 0 and PI."
msgstr ""
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3147521\n"
-"178\n"
+"04060106.xhp\n"
+"par_id5834528\n"
"help.text"
-msgid "Good Friday = EASTERSUNDAY(Year) - 2"
+msgid "To return the angle in degrees, use the DEGREES function."
msgstr ""
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3146072\n"
-"179\n"
+"04060106.xhp\n"
+"hd_id3147538\n"
+"75\n"
"help.text"
-msgid "Pentecost Sunday = EASTERSUNDAY(Year) + 49"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3149553\n"
-"180\n"
+"04060106.xhp\n"
+"par_id3155375\n"
+"76\n"
"help.text"
-msgid "Pentecost Monday = EASTERSUNDAY(Year) + 50"
+msgid "<item type=\"input\">=ACOT(1)</item> returns 0.785398163397448 (PI/4 radians)."
msgstr ""
-#: func_eastersunday.xhp
-msgctxt ""
-"func_eastersunday.xhp\n"
-"hd_id3155120\n"
-"181\n"
-"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
-
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3154472\n"
-"182\n"
+"04060106.xhp\n"
+"par_id8589434\n"
"help.text"
-msgid "=EASTERSUNDAY(2000) returns 2000-04-23."
+msgid "<item type=\"input\">=DEGREES(ACOT(1))</item> returns 45. The tangent of 45 degrees is 1."
msgstr ""
-#: func_eastersunday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_eastersunday.xhp\n"
-"par_id3150940\n"
-"184\n"
+"04060106.xhp\n"
+"bm_id3148426\n"
"help.text"
-msgid "EASTERSUNDAY(2000)+49 returns the internal serial number 36688. The result is 2000-06-11. Format the serial date number as a date, for example in the format YYYY-MM-DD."
-msgstr ""
+msgid "<bookmark_value>ACOTH function</bookmark_value>"
+msgstr "Gabim: Vlera nuk është në dispozicion"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3148426\n"
+"80\n"
"help.text"
-msgid "Navigator"
-msgstr "Orientuesi"
+msgid "ACOTH"
+msgstr "ACOTH"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"bm_id3150791\n"
+"04060106.xhp\n"
+"par_id3147478\n"
+"81\n"
"help.text"
-msgid "<bookmark_value>Navigator;for sheets</bookmark_value><bookmark_value>navigating;in spreadsheets</bookmark_value><bookmark_value>displaying; scenario names</bookmark_value><bookmark_value>scenarios;displaying names</bookmark_value>"
+msgid "<ahelp hid=\"HID_FUNC_ARCOTHYP\">Returns the inverse hyperbolic cotangent of the given number.</ahelp>"
msgstr ""
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3150791\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3152585\n"
+"82\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3156422\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3147172\n"
+"83\n"
"help.text"
-msgid "<ahelp hid=\".uno:Navigator\">Activates and deactivates the Navigator.</ahelp> The Navigator is a <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>."
-msgstr ""
+msgid "ACOTH(Number)"
+msgstr "Numri i faqes"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3145271\n"
-"40\n"
+"04060106.xhp\n"
+"par_id3146155\n"
+"84\n"
"help.text"
-msgid "Choose <emph>View - Navigator</emph> to display the Navigator."
+msgid "This function returns the inverse hyperbolic cotangent of <emph>Number</emph>, that is the number whose hyperbolic cotangent is Number."
msgstr ""
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3159155\n"
-"4\n"
-"help.text"
-msgid "Column"
-msgstr "Kolonë"
-
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3146984\n"
-"5\n"
+"04060106.xhp\n"
+"par_id5818659\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_COL\">Enter the column letter. Press Enter to reposition the cell cursor to the specified column in the same row.</ahelp>"
+msgid "An error results if Number is between -1 and 1 inclusive."
msgstr ""
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3147126\n"
-"6\n"
+"04060106.xhp\n"
+"hd_id3083452\n"
+"85\n"
"help.text"
-msgid "Row"
-msgstr "Rresht"
+msgid "Example"
+msgstr "Shembull"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3149958\n"
-"7\n"
+"04060106.xhp\n"
+"par_id3150608\n"
+"86\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_ROW\">Enter a row number. Press Enter to reposition the cell cursor to the specified row in the same column.</ahelp>"
+msgid "<item type=\"input\">=ACOTH(1.1)</item> returns inverse hyperbolic cotangent of 1.1, approximately 1.52226."
msgstr ""
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3150717\n"
-"8\n"
+"04060106.xhp\n"
+"bm_id3145084\n"
"help.text"
-msgid "Data Range"
-msgstr "Intervali i të Dhënave"
+msgid "<bookmark_value>ASIN function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150752\n"
-"10\n"
+"04060106.xhp\n"
+"hd_id3145084\n"
+"90\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_DATA\">Specifies the current data range denoted by the position of the cell cursor.</ahelp>"
-msgstr ""
+msgid "ASIN"
+msgstr "ASIN"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3159264\n"
+"04060106.xhp\n"
+"par_id3156296\n"
+"91\n"
"help.text"
-msgid "<image id=\"img_id3147338\" src=\"cmd/sc_grid.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147338\">Icon</alt></image>"
+msgid "<ahelp hid=\"HID_FUNC_ARCSIN\">Returns the inverse trigonometric sine of a number.</ahelp>"
msgstr ""
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3146919\n"
-"9\n"
+"04060106.xhp\n"
+"hd_id3149716\n"
+"92\n"
"help.text"
-msgid "Data Range"
-msgstr "Intervali i të Dhënave"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3148488\n"
-"14\n"
+"04060106.xhp\n"
+"par_id3156305\n"
+"93\n"
"help.text"
-msgid "Start"
-msgstr "Fillo"
+msgid "ASIN(Number)"
+msgstr "Numri i faqes"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150086\n"
-"16\n"
+"04060106.xhp\n"
+"par_id3150964\n"
+"94\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_UP\">Moves to the cell at the beginning of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
+msgid "This function returns the inverse trigonometric sine of <emph>Number</emph>, that is the angle (in radians) whose sine is Number. The angle returned is between -PI/2 and +PI/2."
msgstr ""
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3152994\n"
+"04060106.xhp\n"
+"par_id203863\n"
"help.text"
-msgid "<image id=\"img_id3150515\" src=\"sw/imglst/sc20186.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150515\">Icon</alt></image>"
+msgid "To return the angle in degrees, use the DEGREES function."
msgstr ""
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3154372\n"
-"15\n"
+"04060106.xhp\n"
+"hd_id3149448\n"
+"95\n"
"help.text"
-msgid "Start"
-msgstr "Fillo"
+msgid "Example"
+msgstr "Shembull"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3146982\n"
-"17\n"
+"04060106.xhp\n"
+"par_id3156100\n"
+"96\n"
"help.text"
-msgid "End"
-msgstr "Fund"
+msgid "<item type=\"input\">=ASIN(0)</item> returns 0."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3152985\n"
-"19\n"
+"04060106.xhp\n"
+"par_id6853846\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_DOWN\">Moves to the cell at the end of the current data range, which you can highlight using the <emph>Data Range</emph> button.</ahelp>"
+msgid "<item type=\"input\">=ASIN(1)</item> returns 1.5707963267949 (PI/2 radians)."
msgstr ""
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3159170\n"
+"04060106.xhp\n"
+"par_id8772240\n"
"help.text"
-msgid "<image id=\"img_id3148871\" src=\"sw/imglst/sc20175.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148871\">Icon</alt></image>"
+msgid "<item type=\"input\">=DEGREES(ASIN(0.5))</item> returns 30. The sine of 30 degrees is 0.5."
msgstr ""
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3147072\n"
-"18\n"
-"help.text"
-msgid "End"
-msgstr "Fund"
-
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3150107\n"
-"20\n"
+"04060106.xhp\n"
+"bm_id3151266\n"
"help.text"
-msgid "Toggle"
-msgstr "Kapërce"
+msgid "<bookmark_value>ASINH function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3159098\n"
-"22\n"
+"04060106.xhp\n"
+"hd_id3151266\n"
+"100\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_ROOT\">Toggles the content view. Only the selected Navigator element and its subelements are displayed.</ahelp> Click the icon again to restore all elements for viewing."
-msgstr ""
+msgid "ASINH"
+msgstr "ASINH"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3152869\n"
+"04060106.xhp\n"
+"par_id3147077\n"
+"101\n"
"help.text"
-msgid "<image id=\"img_id3149126\" src=\"sw/imglst/sc20244.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149126\">Icon</alt></image>"
+msgid "<ahelp hid=\"HID_FUNC_ARSINHYP\">Returns the inverse hyperbolic sine of a number.</ahelp>"
msgstr ""
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3159229\n"
-"21\n"
-"help.text"
-msgid "Toggle"
-msgstr "Kapërce"
-
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3149381\n"
-"11\n"
+"04060106.xhp\n"
+"hd_id3150763\n"
+"102\n"
"help.text"
-msgid "Contents"
-msgstr "Përmbajtjet"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150051\n"
-"13\n"
+"04060106.xhp\n"
+"par_id3150882\n"
+"103\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_ZOOM\">Allows you to hide/show the contents.</ahelp>"
-msgstr ""
+msgid "ASINH(Number)"
+msgstr "Numri i faqes"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3155597\n"
+"04060106.xhp\n"
+"par_id3147621\n"
+"104\n"
"help.text"
-msgid "<image id=\"img_id3154738\" src=\"sw/imglst/sc20233.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154738\">Icon</alt></image>"
+msgid "This function returns the inverse hyperbolic sine of <emph>Number</emph>, that is the number whose hyperbolic sine is Number."
msgstr ""
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3150955\n"
-"12\n"
-"help.text"
-msgid "Contents"
-msgstr "Përmbajtjet"
-
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3147244\n"
-"23\n"
-"help.text"
-msgid "Scenarios"
-msgstr "Plan-veprimet"
-
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3153955\n"
-"25\n"
+"04060106.xhp\n"
+"hd_id3153212\n"
+"105\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_SCEN\">Displays all available scenarios. Double-click a name to apply that scenario.</ahelp> The result is shown in the sheet. For more information, choose <link href=\"text/scalc/01/06050000.xhp\" name=\"Tools - Scenarios\"><emph>Tools - Scenarios</emph></link>."
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3148745\n"
+"04060106.xhp\n"
+"par_id3156120\n"
+"106\n"
"help.text"
-msgid "<image id=\"img_id3159256\" src=\"sc/imglst/navipi/na07.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159256\">Icon</alt></image>"
+msgid "<item type=\"input\">=ASINH(-90)</item> returns approximately -5.1929877."
msgstr ""
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3166466\n"
-"24\n"
+"04060106.xhp\n"
+"par_id4808496\n"
"help.text"
-msgid "Scenarios"
-msgstr "Plan-veprimet"
+msgid "<item type=\"input\">=ASINH(SINH(4))</item> returns 4."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_idN10A6C\n"
+"04060106.xhp\n"
+"bm_id3155996\n"
"help.text"
-msgid "If the Navigator displays scenarios, you can access the following commands when you right-click a scenario entry:"
-msgstr ""
+msgid "<bookmark_value>ATAN function</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_idN10A77\n"
+"04060106.xhp\n"
+"hd_id3155996\n"
+"110\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "ATAN"
+msgstr "ATAN"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_idN10A7B\n"
+"04060106.xhp\n"
+"par_id3149985\n"
+"111\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENARIO_DELETE\">Deletes the selected scenario.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ARCTAN\">Returns the inverse trigonometric tangent of a number.</ahelp>"
msgstr ""
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_idN10A92\n"
-"help.text"
-msgid "Properties"
-msgstr "Vetitë"
-
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_idN10A96\n"
+"04060106.xhp\n"
+"hd_id3151294\n"
+"112\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENARIO_EDIT\">Opens the <link href=\"text/scalc/01/06050000.xhp\">Edit scenario</link> dialog, where you can edit the scenario properties.</ahelp>"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3150037\n"
-"26\n"
+"04060106.xhp\n"
+"par_id3150261\n"
+"113\n"
"help.text"
-msgid "Drag Mode"
-msgstr "Modi i tërheqjes"
+msgid "ATAN(Number)"
+msgstr "Numri i faqes"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3157876\n"
-"28\n"
+"04060106.xhp\n"
+"par_id3147267\n"
+"114\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_DROP\">Opens a submenu for selecting the drag mode. You decide which action is performed when dragging and dropping an object from the Navigator into a document. Depending on the mode you select, the icon indicates whether a hyperlink, link or a copy is created.</ahelp>"
+msgid "This function returns the inverse trigonometric tangent of <emph>Number</emph>, that is the angle (in radians) whose tangent is Number. The angle returned is between -PI/2 and PI/2."
msgstr ""
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3149947\n"
+"04060106.xhp\n"
+"par_id6293527\n"
"help.text"
-msgid "<image id=\"img_id3159119\" src=\"cmd/sc_chainframes.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159119\">Icon</alt></image>"
+msgid "To return the angle in degrees, use the DEGREES function."
msgstr ""
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"par_id3150656\n"
-"27\n"
-"help.text"
-msgid "Drag Mode"
-msgstr "Modi i tërheqjes"
-
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3149009\n"
-"29\n"
+"04060106.xhp\n"
+"hd_id3154054\n"
+"115\n"
"help.text"
-msgid "Insert as Hyperlink"
-msgstr "Shto si Hiperlink"
+msgid "Example"
+msgstr "Shembull"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3146938\n"
-"30\n"
+"04060106.xhp\n"
+"par_id3143229\n"
+"116\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_DROPMODE_URL\">Inserts a hyperlink when you drag-and-drop an object from the Navigator into a document.</ahelp> You can later click the created hyperlink to set the cursor and the view to the respective object."
+msgid "<item type=\"input\">=ATAN(1)</item> returns 0.785398163397448 (PI/4 radians)."
msgstr ""
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3880733\n"
+"04060106.xhp\n"
+"par_id8746299\n"
"help.text"
-msgid "If you insert a hyperlink that links to an open document, you need to save the document before you can use the hyperlink."
+msgid "<item type=\"input\">=DEGREES(ATAN(1))</item> returns 45. The tangent of 45 degrees is 1."
msgstr ""
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3154682\n"
-"31\n"
-"help.text"
-msgid "Insert as Link"
-msgstr "Shto si link"
-
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150746\n"
-"32\n"
+"04060106.xhp\n"
+"bm_id3153983\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_DROPMODE_LINK\">Creates a link when you drag-and-drop an object from the Navigator into a document.</ahelp>"
-msgstr ""
+msgid "<bookmark_value>ATAN2 function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3145824\n"
-"33\n"
+"04060106.xhp\n"
+"hd_id3153983\n"
+"120\n"
"help.text"
-msgid "Insert as Copy"
-msgstr "Shto si kopje"
+msgid "ATAN2"
+msgstr "ATAN2"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3147471\n"
-"34\n"
+"04060106.xhp\n"
+"par_id3154297\n"
+"121\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_DROPMODE_COPY\">Generates a copy when you drag-and-drop an object from the Navigator into a document.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ARCTAN2\">Returns the inverse trigonometric tangent of the specified x and y coordinates.</ahelp>"
msgstr ""
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3147423\n"
-"38\n"
+"04060106.xhp\n"
+"hd_id3149758\n"
+"122\n"
"help.text"
-msgid "Objects"
-msgstr "Objektet"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150700\n"
-"39\n"
+"04060106.xhp\n"
+"par_id3156013\n"
+"123\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_ENTRIES\">Displays all objects in your document.</ahelp>"
+msgid "ATAN2(NumberX; NumberY)"
msgstr ""
-#: 02110000.xhp
-msgctxt ""
-"02110000.xhp\n"
-"hd_id3150860\n"
-"35\n"
-"help.text"
-msgid "Documents"
-msgstr "Dokumentet"
-
-#: 02110000.xhp
+#: 04060106.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3153929\n"
-"36\n"
+"04060106.xhp\n"
+"par_id3151168\n"
+"124\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_NAVIPI_DOC\">Displays the names of all open documents.</ahelp> To switch to another open document in the Navigator, click the document name. The status (active, inactive) of the document is shown in brackets after the name. You can switch the active document in the <emph>Window</emph> menu."
-msgstr ""
+msgid "<emph>NumberX</emph> is the value of the x coordinate."
+msgstr "Kthen SAKTË nëse vlera është një numër."
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3152798\n"
+"125\n"
"help.text"
-msgid "Function List"
-msgstr "Kryerresht i listës"
+msgid "<emph>NumberY</emph> is the value of the y coordinate."
+msgstr "Kthen SAKTË nëse vlera është një numër."
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"bm_id3154126\n"
+"04060106.xhp\n"
+"par_id5036164\n"
"help.text"
-msgid "<bookmark_value>formula list window</bookmark_value><bookmark_value>function list window</bookmark_value><bookmark_value>inserting functions; function list window</bookmark_value>"
+msgid "ATAN2 returns the inverse trigonometric tangent, that is, the angle (in radians) between the x-axis and a line from point NumberX, NumberY to the origin. The angle returned is between -PI and PI."
msgstr ""
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"hd_id3154126\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3001800\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link>"
+msgid "To return the angle in degrees, use the DEGREES function."
msgstr ""
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"par_id3151118\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3145663\n"
+"126\n"
"help.text"
-msgid "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">This command opens the <emph>Function List</emph> window, which displays all functions that can be inserted into your document.</ahelp></variable> The <emph>Function List</emph> window is similar to the <emph>Functions</emph> tab page of the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link>. The functions are inserted with placeholders to be replaced with your own values."
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"par_id3152576\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3154692\n"
+"127\n"
"help.text"
-msgid "The <emph>Function List</emph> window is a resizable <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>. Use it to quickly enter functions in the spreadsheet. By double-clicking an entry in the functions list, the respective function is directly inserted with all parameters."
+msgid "<item type=\"input\">=ATAN2(20;20)</item> returns 0.785398163397448 (PI/4 radians)."
msgstr ""
-#: 04080000.xhp
-msgctxt ""
-"04080000.xhp\n"
-"hd_id3145799\n"
-"4\n"
-"help.text"
-msgid "Category List"
-msgstr "Kryerresht i listës"
-
-#: 04080000.xhp
-msgctxt ""
-"04080000.xhp\n"
-"hd_id3153160\n"
-"5\n"
-"help.text"
-msgid "Function List"
-msgstr "Kryerresht i listës"
-
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"par_id3149412\n"
-"6\n"
+"04060106.xhp\n"
+"par_id1477095\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Displays the available functions.</ahelp> When you select a function, the area below the list box displays a short description. To insert the selected function double-click it or click the <emph>Insert Function into calculation sheet</emph> icon."
+msgid "<item type=\"input\">=DEGREES(ATAN2(12.3;12.3))</item> returns 45. The tangent of 45 degrees is 1."
msgstr ""
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"hd_id3146971\n"
-"7\n"
+"04060106.xhp\n"
+"bm_id3155398\n"
"help.text"
-msgid "Insert Function into calculation sheet"
-msgstr "Fut Funksionin në fletën e kalkulimeve"
+msgid "<bookmark_value>ATANH function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"par_id3150043\n"
+"04060106.xhp\n"
+"hd_id3155398\n"
+"130\n"
"help.text"
-msgid "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Icon</alt></image>"
-msgstr ""
+msgid "ATANH"
+msgstr "ATANH"
-#: 04080000.xhp
+#: 04060106.xhp
msgctxt ""
-"04080000.xhp\n"
-"par_id3147345\n"
-"8\n"
+"04060106.xhp\n"
+"par_id3148829\n"
+"131\n"
"help.text"
-msgid "<ahelp hid=\"SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT\">Inserts the selected function into the document.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ARTANHYP\">Returns the inverse hyperbolic tangent of a number.</ahelp>"
msgstr ""
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Consolidate"
-msgstr "Konsolido"
-
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"hd_id3148946\n"
-"1\n"
-"help.text"
-msgid "Consolidate"
-msgstr "Konsolido"
-
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3148798\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3146997\n"
+"132\n"
"help.text"
-msgid "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">Combines data from one or more independent cell ranges and calculates a new range using the function that you specify.</ahelp></variable>"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"hd_id3150010\n"
-"8\n"
+"04060106.xhp\n"
+"par_id3149912\n"
+"133\n"
"help.text"
-msgid "Function"
-msgstr "Funksioni"
+msgid "ATANH(Number)"
+msgstr "Numri i faqes"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3149377\n"
-"9\n"
+"04060106.xhp\n"
+"par_id3150521\n"
+"134\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_FUNC\">Select the function that you want to use to consolidate the data.</ahelp>"
+msgid "This function returns the inverse hyperbolic tangent of <emph>Number</emph>, that is the number whose hyperbolic tangent is Number."
msgstr ""
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"hd_id3147127\n"
-"10\n"
-"help.text"
-msgid "Consolidation ranges"
-msgstr "~Intervalet e konsolidimit"
-
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3151075\n"
-"11\n"
+"04060106.xhp\n"
+"par_id9357280\n"
"help.text"
-msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS\">Displays the cell ranges that you want to consolidate.</ahelp>"
+msgid "Number must obey the condition -1 < number < 1."
msgstr ""
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"hd_id3147397\n"
-"12\n"
-"help.text"
-msgid "Source data range"
-msgstr "~Intervali i të dhënave burimore"
-
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3153836\n"
-"13\n"
+"04060106.xhp\n"
+"hd_id3148450\n"
+"135\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DATA_AREA\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"hd_id3155768\n"
-"15\n"
+"04060106.xhp\n"
+"par_id3145419\n"
+"136\n"
"help.text"
-msgid "Copy results to"
-msgstr "Kopjo rezultatet ~te"
+msgid "<item type=\"input\">=ATANH(0)</item> returns 0."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3147341\n"
-"16\n"
+"04060106.xhp\n"
+"bm_id3153062\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DEST_AREA\">Displays the first cell in the range where the consolidation results will be displayed.</ahelp>"
-msgstr ""
+msgid "<bookmark_value>COS function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"hd_id3147345\n"
-"17\n"
+"04060106.xhp\n"
+"hd_id3153062\n"
+"149\n"
"help.text"
-msgid "Add"
-msgstr "Shto"
+msgid "COS"
+msgstr "COS"
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3155335\n"
-"18\n"
+"04060106.xhp\n"
+"par_id3148803\n"
+"150\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_CONSOLIDATE:BTN_ADD\">Adds the cell range specified in the <emph>Source data range</emph> box to the <emph>Consolidation ranges </emph>box.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_COS\">Returns the cosine of the given angle (in radians).</ahelp>"
msgstr ""
-#: 12070000.xhp
-msgctxt ""
-"12070000.xhp\n"
-"hd_id3148630\n"
-"19\n"
-"help.text"
-msgid "More >>"
-msgstr "Më shumë >>"
-
-#: 12070000.xhp
+#: 04060106.xhp
msgctxt ""
-"12070000.xhp\n"
-"par_id3159239\n"
-"20\n"
+"04060106.xhp\n"
+"hd_id3150779\n"
+"151\n"
"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_CONSOLIDATE:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12070100.xhp\" name=\"options\">options</link>.</ahelp>"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 06070000.xhp
+#: 04060106.xhp
msgctxt ""
-"06070000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3154213\n"
+"152\n"
"help.text"
-msgid "AutoCalculate"
-msgstr ""
+msgid "COS(Number)"
+msgstr "Numri i faqes"
-#: 06070000.xhp
+#: 04060106.xhp
msgctxt ""
-"06070000.xhp\n"
-"bm_id3145673\n"
+"04060106.xhp\n"
+"par_id3154285\n"
+"153\n"
"help.text"
-msgid "<bookmark_value>calculating; auto calculating sheets</bookmark_value><bookmark_value>recalculating;auto calculating sheets</bookmark_value><bookmark_value>AutoCalculate function in sheets</bookmark_value><bookmark_value>correcting sheets automatically</bookmark_value><bookmark_value>formulas;AutoCalculate function</bookmark_value><bookmark_value>cell contents;AutoCalculate function</bookmark_value>"
+msgid "Returns the (trigonometric) cosine of <emph>Number</emph>, the angle in radians."
msgstr ""
-#: 06070000.xhp
+#: 04060106.xhp
msgctxt ""
-"06070000.xhp\n"
-"hd_id3145673\n"
-"1\n"
+"04060106.xhp\n"
+"par_id831019\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\">AutoCalculate</link>"
+msgid "To return the cosine of an angle in degrees, use the RADIANS function."
msgstr ""
-#: 06070000.xhp
+#: 04060106.xhp
msgctxt ""
-"06070000.xhp\n"
-"par_id3148798\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3153579\n"
+"154\n"
"help.text"
-msgid "<ahelp hid=\".uno:AutomaticCalculation\">Automatically recalculates all formulas in the document.</ahelp>"
-msgstr ""
+msgid "Examples"
+msgstr "Shembuj:"
-#: 06070000.xhp
+#: 04060106.xhp
msgctxt ""
-"06070000.xhp\n"
-"par_id3145173\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3147240\n"
+"155\n"
"help.text"
-msgid "All cells are recalculated after a sheet cell has been modified. Any charts in the sheet will also be refreshed."
+msgid "<item type=\"input\">=COS(PI()/2)</item> returns 0, the cosine of PI/2 radians."
msgstr ""
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3147516\n"
+"156\n"
"help.text"
-msgid "NETWORKDAYS"
+msgid "<item type=\"input\">=COS(RADIANS(60))</item> returns 0.5, the cosine of 60 degrees."
msgstr ""
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"bm_id3151254\n"
+"04060106.xhp\n"
+"bm_id3154277\n"
"help.text"
-msgid "<bookmark_value>NETWORKDAYS function</bookmark_value>"
-msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+msgid "<bookmark_value>COSH function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"hd_id3151254\n"
-"240\n"
+"04060106.xhp\n"
+"hd_id3154277\n"
+"159\n"
"help.text"
-msgid "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link></variable>"
-msgstr ""
+msgid "COSH"
+msgstr "COSH"
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3153788\n"
-"241\n"
+"04060106.xhp\n"
+"par_id3146946\n"
+"160\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Returns the number of workdays between a <emph>start date and an end date</emph>. Holidays can be deducted.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_COSHYP\">Returns the hyperbolic cosine of a number.</ahelp>"
msgstr ""
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"hd_id3148677\n"
-"242\n"
+"04060106.xhp\n"
+"hd_id3149792\n"
+"161\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3145775\n"
-"243\n"
-"help.text"
-msgid "NETWORKDAYS(StartDate; EndDate; Holidays)"
-msgstr ""
-
-#: func_networkdays.xhp
-msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3153885\n"
-"244\n"
-"help.text"
-msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
-msgstr ""
-
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3151110\n"
-"245\n"
+"04060106.xhp\n"
+"par_id3166440\n"
+"162\n"
"help.text"
-msgid "<emph>EndDate</emph> is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation."
-msgstr ""
+msgid "COSH(Number)"
+msgstr "Numri i faqes"
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3154115\n"
-"246\n"
+"04060106.xhp\n"
+"par_id3150710\n"
+"163\n"
"help.text"
-msgid "<emph>Holidays</emph> is an optional list of holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
-msgstr ""
+msgid "Returns the hyperbolic cosine of <emph>Number</emph>."
+msgstr "Kthen cosinusin hiperbolik invers të një numri."
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"hd_id3146902\n"
-"247\n"
+"04060106.xhp\n"
+"hd_id3153234\n"
+"164\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3154661\n"
-"248\n"
+"04060106.xhp\n"
+"par_id3154099\n"
+"165\n"
"help.text"
-msgid "How many workdays fall between 2001-12-15 and 2002-01-15? The start date is located in C3 and the end date in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
+msgid "<item type=\"input\">=COSH(0)</item> returns 1, the hyperbolic cosine of 0."
msgstr ""
-#: func_networkdays.xhp
+#: 04060106.xhp
msgctxt ""
-"func_networkdays.xhp\n"
-"par_id3147328\n"
-"249\n"
+"04060106.xhp\n"
+"bm_id3152888\n"
"help.text"
-msgid "=NETWORKDAYS(C3;D3;F3:J3) returns 17 workdays."
-msgstr ""
+msgid "<bookmark_value>COT function</bookmark_value>"
+msgstr "Gabim: Vlera nuk është në dispozicion"
-#: 05030400.xhp
+#: 04060106.xhp
msgctxt ""
-"05030400.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3152888\n"
+"169\n"
"help.text"
-msgid "Show"
-msgstr "Shfaq"
+msgid "COT"
+msgstr "COT"
-#: 05030400.xhp
+#: 04060106.xhp
msgctxt ""
-"05030400.xhp\n"
-"bm_id3147264\n"
+"04060106.xhp\n"
+"par_id3153679\n"
+"170\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; showing columns</bookmark_value><bookmark_value>showing; columns</bookmark_value><bookmark_value>showing; rows</bookmark_value>"
+msgid "<ahelp hid=\"HID_FUNC_COT\">Returns the cotangent of the given angle (in radians).</ahelp>"
msgstr ""
-#: 05030400.xhp
+#: 04060106.xhp
msgctxt ""
-"05030400.xhp\n"
-"hd_id3147264\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3152943\n"
+"171\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\">Show</link>"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 05030400.xhp
+#: 04060106.xhp
msgctxt ""
-"05030400.xhp\n"
-"par_id3150447\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3154856\n"
+"172\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowColumn\">Choose this command to show previously hidden rows or columns.</ahelp>"
-msgstr ""
+msgid "COT(Number)"
+msgstr "Numri i faqes"
-#: 05030400.xhp
+#: 04060106.xhp
msgctxt ""
-"05030400.xhp\n"
-"par_id3155131\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3149969\n"
+"173\n"
"help.text"
-msgid "To show a column or row, select the range of rows or columns containing the hidden elements, then choose <emph>Format - Row - Show</emph> or <emph>Format - Column - Show</emph>."
+msgid "Returns the (trigonometric) cotangent of <emph>Number</emph>, the angle in radians."
msgstr ""
-#: 05030400.xhp
+#: 04060106.xhp
msgctxt ""
-"05030400.xhp\n"
-"par_id3145748\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3444624\n"
"help.text"
-msgid "To show all hidden cells, first click in the field in the upper left corner. This selects all cells of the table."
+msgid "To return the cotangent of an angle in degrees, use the RADIANS function."
msgstr ""
-#: 06030100.xhp
-msgctxt ""
-"06030100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trace Precedents"
-msgstr "Gjurmo Parapraket"
-
-#: 06030100.xhp
+#: 04060106.xhp
msgctxt ""
-"06030100.xhp\n"
-"bm_id3155628\n"
+"04060106.xhp\n"
+"par_id6814477\n"
"help.text"
-msgid "<bookmark_value>cells; tracing precedents</bookmark_value><bookmark_value>formula cells;tracing precedents</bookmark_value>"
+msgid "The cotangent of an angle is equivalent to 1 divided by the tangent of that angle."
msgstr ""
-#: 06030100.xhp
+#: 04060106.xhp
msgctxt ""
-"06030100.xhp\n"
-"hd_id3155628\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3149800\n"
+"174\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedents\">Trace Precedents</link>"
-msgstr ""
+msgid "Examples:"
+msgstr "Shembuj:"
-#: 06030100.xhp
+#: 04060106.xhp
msgctxt ""
-"06030100.xhp\n"
-"par_id3153542\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3148616\n"
+"175\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowPrecedents\">This function shows the relationship between the current cell containing a formula and the cells used in the formula.</ahelp>"
+msgid "<item type=\"input\">=COT(PI()/4)</item> returns 1, the cotangent of PI/4 radians."
msgstr ""
-#: 06030100.xhp
+#: 04060106.xhp
msgctxt ""
-"06030100.xhp\n"
-"par_id3147265\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3148986\n"
+"176\n"
"help.text"
-msgid "Traces are displayed in the sheet with marking arrows. At the same time, the range of all the cells contained in the formula of the current cell is highlighted with a blue frame."
+msgid "<item type=\"input\">=COT(RADIANS(45))</item> returns 1, the cotangent of 45 degrees."
msgstr ""
-#: 06030100.xhp
+#: 04060106.xhp
msgctxt ""
-"06030100.xhp\n"
-"par_id3154321\n"
-"3\n"
+"04060106.xhp\n"
+"bm_id3154337\n"
"help.text"
-msgid "This function is based on a principle of layers. For example, if the precedent cell to a formula is already indicated with a tracer arrow, when you repeat this command, the tracer arrows are drawn to the precedent cells of this cell."
-msgstr ""
+msgid "<bookmark_value>COTH function</bookmark_value>"
+msgstr "Gabim: Vlera nuk është në dispozicion"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3154337\n"
+"178\n"
"help.text"
-msgid "Define Names"
-msgstr "Defino Emrat"
+msgid "COTH"
+msgstr "COTH"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3156330\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3149419\n"
+"179\n"
"help.text"
-msgid "Define Names"
-msgstr "Defino Emrat"
+msgid "<ahelp hid=\"HID_FUNC_COTHYP\">Returns the hyperbolic cotangent of a given number (angle).</ahelp>"
+msgstr ""
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3154366\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3149242\n"
+"180\n"
"help.text"
-msgid "<variable id=\"namenfestlegentext\"><ahelp hid=\".uno:DefineName\">Opens a dialog where you can specify a name for a selected area.</ahelp></variable>"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3154123\n"
-"31\n"
+"04060106.xhp\n"
+"par_id3143280\n"
+"181\n"
"help.text"
-msgid "Use the mouse to define ranges or type the reference into the <emph>Define Name </emph>dialog fields."
-msgstr ""
+msgid "COTH(Number)"
+msgstr "Numri i faqes"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3155131\n"
-"30\n"
+"04060106.xhp\n"
+"par_id3154799\n"
+"182\n"
"help.text"
-msgid "The <emph>Sheet Area</emph> box on the Formula bar contains a list of defined names for the ranges. Click a name from this box to highlight the corresponding reference on the spreadsheet. Names given formulas or parts of a formula are not listed here."
-msgstr ""
+msgid "Returns the hyperbolic cotangent of <emph>Number</emph>."
+msgstr "Kthen cotangentin hiperbolik invers të një numri."
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3151118\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3155422\n"
+"183\n"
"help.text"
-msgid "Name"
-msgstr "Emri"
+msgid "Example"
+msgstr "Shembull"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3163712\n"
-"29\n"
+"04060106.xhp\n"
+"par_id3144754\n"
+"184\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_NAMES:ED_NAME\">Enter the name of the area for which you want to define a reference. All area names already defined in the spreadsheet are listed in the text field below.</ahelp> If you click a name on the list, the corresponding reference in the document will be shown with a blue frame. If multiple cell ranges belong to the same area name, they are displayed with different colored frames."
+msgid "<item type=\"input\">=COTH(1)</item> returns the hyperbolic cotangent of 1, approximately 1.3130."
msgstr ""
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3153728\n"
-"9\n"
+"04060106.xhp\n"
+"bm_id6110552\n"
"help.text"
-msgid "Assigned to"
-msgstr "Caktuar"
+msgid "<bookmark_value>CSC function</bookmark_value>"
+msgstr "Definon vlerën llogjike si PASAKTË."
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3147435\n"
-"10\n"
+"04060106.xhp\n"
+"hd_id9523234\n"
+"149\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_NAMES:ED_ASSIGN\">The reference of the selected area name is shown here as an absolute value.</ahelp>"
+msgid "CSC"
msgstr ""
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3146986\n"
-"12\n"
+"04060106.xhp\n"
+"par_id4896433\n"
+"150\n"
"help.text"
-msgid "To insert a new area reference, place the cursor in this field and use your mouse to select the desired area in any sheet of your spreadsheet document."
+msgid "<ahelp hid=\"HID_FUNC_COSECANT\">Returns the cosecant of the given angle (in radians). The cosecant of an angle is equivalent to 1 divided by the sine of that angle</ahelp>"
msgstr ""
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3154729\n"
-"13\n"
+"04060106.xhp\n"
+"hd_id3534032\n"
+"151\n"
"help.text"
-msgid "More"
-msgstr "Më shumë"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3149958\n"
-"14\n"
+"04060106.xhp\n"
+"par_id4571344\n"
+"152\n"
"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_NAMES:BTN_MORE\">Allows you to specify the <emph>Area type </emph>(optional) for the reference.</ahelp>"
-msgstr ""
+msgid "CSC(Number)"
+msgstr "Numri i faqes"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3147394\n"
-"15\n"
+"04060106.xhp\n"
+"par_id9859164\n"
+"153\n"
"help.text"
-msgid "Area type"
-msgstr "Tipi i fushës"
+msgid "Returns the (trigonometric) cosecant of <emph>Number</emph>, the angle in radians."
+msgstr ""
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3155416\n"
-"16\n"
+"04060106.xhp\n"
+"par_id3428494\n"
"help.text"
-msgid "Defines additional options related to the type of reference area."
+msgid "To return the cosecant of an angle in degrees, use the RADIANS function."
msgstr ""
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3150716\n"
-"17\n"
+"04060106.xhp\n"
+"hd_id2577161\n"
+"154\n"
"help.text"
-msgid "Print range"
-msgstr "Intervali i shtypjes"
+msgid "Examples"
+msgstr "Shembuj:"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3150751\n"
-"18\n"
+"04060106.xhp\n"
+"par_id3736803\n"
+"155\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_PRINTAREA\">Defines the area as a print range.</ahelp>"
+msgid "<item type=\"input\">=CSC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the sine of PI/4 radians."
msgstr ""
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"hd_id3153764\n"
-"19\n"
-"help.text"
-msgid "Filter"
-msgstr "Filtër"
-
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3155766\n"
-"20\n"
+"04060106.xhp\n"
+"par_id6016818\n"
+"156\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_CRITERIA\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">advanced filter</link>.</ahelp>"
+msgid "<item type=\"input\">=CSC(RADIANS(30))</item> returns 2, the cosecant of 30 degrees."
msgstr ""
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3159267\n"
-"21\n"
+"04060106.xhp\n"
+"bm_id9288877\n"
"help.text"
-msgid "Repeat column"
-msgstr "Përsërit ~shtyllën"
+msgid "<bookmark_value>CSCH function</bookmark_value>"
+msgstr "Definon vlerën llogjike si PASAKTË."
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3149565\n"
-"22\n"
+"04060106.xhp\n"
+"hd_id4325650\n"
+"159\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_COLHEADER\">Defines the area as a repeating column.</ahelp>"
+msgid "CSCH"
msgstr ""
-#: 04070100.xhp
-msgctxt ""
-"04070100.xhp\n"
-"hd_id3153966\n"
-"23\n"
-"help.text"
-msgid "Repeat row"
-msgstr "Përsërit ~rreshtin"
-
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3150300\n"
-"24\n"
+"04060106.xhp\n"
+"par_id579916\n"
+"160\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NAMES:BTN_ROWHEADER\">Defines the area as a repeating row.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_COSECANTHYP\">Returns the hyperbolic cosecant of a number.</ahelp>"
msgstr ""
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"hd_id3155112\n"
-"27\n"
+"04060106.xhp\n"
+"hd_id5336768\n"
+"161\n"
"help.text"
-msgid "Add/Modify"
-msgstr "Ndrysho formëdhënien..."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04070100.xhp
+#: 04060106.xhp
msgctxt ""
-"04070100.xhp\n"
-"par_id3159236\n"
-"28\n"
+"04060106.xhp\n"
+"par_id3108851\n"
+"162\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES:BTN_ADD\">Click the <emph>Add</emph> button to add the defined name to the list. Click the <emph>Modify</emph> button to enter another name for an already existing name selected from the list.</ahelp>"
-msgstr ""
+msgid "CSCH(Number)"
+msgstr "Numri i faqes"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id1394188\n"
+"163\n"
"help.text"
-msgid "DATEVALUE"
-msgstr "DATEVALUE"
+msgid "Returns the hyperbolic cosecant of <emph>Number</emph>."
+msgstr "Kthen cosinusin hiperbolik invers të një numri."
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"bm_id3145621\n"
+"04060106.xhp\n"
+"hd_id6037477\n"
+"164\n"
"help.text"
-msgid "<bookmark_value>DATEVALUE function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "Example"
+msgstr "Shembull"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"hd_id3145621\n"
-"18\n"
+"04060106.xhp\n"
+"par_id5426085\n"
+"165\n"
"help.text"
-msgid "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DATEVALUE</link></variable>"
+msgid "<item type=\"input\">=CSCH(1)</item> returns approximately 0.8509181282, the hyperbolic cosecant of 1."
msgstr ""
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3145087\n"
-"19\n"
+"04060106.xhp\n"
+"bm_id3145314\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DATWERT\">Returns the internal date number for text in quotes.</ahelp>"
-msgstr ""
+msgid "<bookmark_value>DEGREES function</bookmark_value><bookmark_value>converting;radians, into degrees</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3149281\n"
-"20\n"
+"04060106.xhp\n"
+"hd_id3145314\n"
+"188\n"
"help.text"
-msgid "The internal date number is returned as a number. The number is determined by the date system that is used by $[officename] to calculate dates."
-msgstr ""
+msgid "DEGREES"
+msgstr "SHKALLËT"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"par_id0119200903491982\n"
+"04060106.xhp\n"
+"par_id3149939\n"
+"189\n"
"help.text"
-msgid "If the text string also includes a time value, DATEVALUE only returns the integer part of the conversion."
+msgid "<ahelp hid=\"HID_FUNC_DEG\">Converts radians into degrees.</ahelp>"
msgstr ""
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"hd_id3156294\n"
-"21\n"
+"04060106.xhp\n"
+"hd_id3150623\n"
+"190\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3149268\n"
-"22\n"
+"04060106.xhp\n"
+"par_id3145600\n"
+"191\n"
"help.text"
-msgid "DATEVALUE(\"Text\")"
-msgstr "Vizato tekstin"
+msgid "DEGREES(Number)"
+msgstr "Numri i faqes"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3154819\n"
-"23\n"
+"04060106.xhp\n"
+"par_id3149484\n"
+"192\n"
"help.text"
-msgid "<emph>Text</emph> is a valid date expression and must be entered with quotation marks."
+msgid "<emph>Number</emph> is the angle in radians to be converted to degrees."
msgstr ""
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"hd_id3156309\n"
-"24\n"
+"04060106.xhp\n"
+"hd_id3669545\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: func_datevalue.xhp
+#: 04060106.xhp
msgctxt ""
-"func_datevalue.xhp\n"
-"par_id3155841\n"
-"25\n"
+"04060106.xhp\n"
+"par_id3459578\n"
"help.text"
-msgid "<emph>=DATEVALUE(\"1954-07-20\")</emph> yields 19925."
+msgid "<item type=\"input\">=DEGREES(PI())</item> returns 180 degrees."
msgstr ""
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"bm_id3148698\n"
"help.text"
-msgid "Protecting document"
-msgstr "Ngarko dokumentin"
+msgid "<bookmark_value>EXP function</bookmark_value>"
+msgstr "Shndërron një vlerë në tekst."
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"hd_id3150541\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3148698\n"
+"198\n"
"help.text"
-msgid "Protecting document"
-msgstr "Ngarko dokumentin"
+msgid "EXP"
+msgstr "EXP"
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"par_id3145172\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3150592\n"
+"199\n"
"help.text"
-msgid "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Protects the sheet structure of your document from modifications. It is impossible to insert, delete, rename, move or copy sheets.</ahelp></variable> Open the <emph>Protect document</emph> dialog with <emph>Tools - Protect Document - Document</emph>. Optionally enter a password and click OK."
+msgid "<ahelp hid=\"HID_FUNC_EXP\">Returns e raised to the power of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
msgstr ""
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"par_id3153188\n"
-"6\n"
+"04060106.xhp\n"
+"hd_id3150351\n"
+"200\n"
"help.text"
-msgid "The structure of protected spreadsheet documents can be changed only if the <emph>Protect</emph> option is disabled. On the context menus for the spreadsheet tabs at the lower graphic border, only the menu item <emph>Select All Sheets</emph> can be activated. All other menu items are deactivated. To remove the protection, call up the command <emph>Tools - Protect Document - Document</emph> again. If no password is assigned, protection is immediately removed. If you were assigned a password, the <emph>Remove Spreadsheet Protection</emph> dialog appears, in which you must enter the password. Only then can you remove the check mark specifying that protection is active."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"par_id3145750\n"
-"7\n"
+"04060106.xhp\n"
+"par_id3146786\n"
+"201\n"
"help.text"
-msgid "A protected document, once saved, can only be saved again with the <emph>File - Save As</emph> menu command."
-msgstr ""
+msgid "EXP(Number)"
+msgstr "Numri i faqes"
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"hd_id3152596\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3155608\n"
+"202\n"
"help.text"
-msgid "Password (optional)"
-msgstr "Fjalëkalimi (opcional):"
+msgid "<emph>Number</emph> is the power to which e is to be raised."
+msgstr "Fuqia në të cilin do të ngritet numri."
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"par_id3155412\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3154418\n"
+"203\n"
"help.text"
-msgid "You can create a password to protect your document against unauthorized or accidental modifications."
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 06060200.xhp
+#: 04060106.xhp
msgctxt ""
-"06060200.xhp\n"
-"par_id3150717\n"
-"9\n"
+"04060106.xhp\n"
+"par_id3156340\n"
+"204\n"
"help.text"
-msgid "You can completely protect your work by combining both options from <emph>Tools - Protect Document</emph>, including password entry. If you want to prevent the document from being opened by other users, select <emph>Save With Password </emph>and click the <emph>Save</emph> button. The <emph>Enter Password</emph> dialog appears. Consider carefully when choosing a password; if you forget it after you close a document you will be unable to access the document."
+msgid "<item type=\"input\">=EXP(1)</item> returns 2.71828182845904, the mathematical constant e to Calc's accuracy."
msgstr ""
-#: 12040100.xhp
+#: 04060106.xhp
msgctxt ""
-"12040100.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"bm_id3145781\n"
"help.text"
-msgid "AutoFilter"
-msgstr "AutoFiltër"
+msgid "<bookmark_value>FACT function</bookmark_value><bookmark_value>factorials;numbers</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 12040100.xhp
+#: 04060106.xhp
msgctxt ""
-"12040100.xhp\n"
-"hd_id3153541\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3145781\n"
+"208\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
-msgstr ""
+msgid "FACT"
+msgstr "FAKT"
-#: 12040100.xhp
+#: 04060106.xhp
msgctxt ""
-"12040100.xhp\n"
-"par_id3148550\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3151109\n"
+"209\n"
"help.text"
-msgid "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_FAKULTAET\">Returns the factorial of a number.</ahelp>"
msgstr ""
-#: 12040100.xhp
+#: 04060106.xhp
msgctxt ""
-"12040100.xhp\n"
-"par_id3145171\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3146902\n"
+"210\n"
"help.text"
-msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Default filter\">Default filter</link>"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3154661\n"
+"211\n"
"help.text"
-msgid "Logical Functions"
-msgstr "Funksionet statistikore"
+msgid "FACT(Number)"
+msgstr "Numri i faqes"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"bm_id3153484\n"
+"04060106.xhp\n"
+"par_id3152952\n"
+"212\n"
"help.text"
-msgid "<bookmark_value>logical functions</bookmark_value> <bookmark_value>Function Wizard; logical</bookmark_value> <bookmark_value>functions; logical functions</bookmark_value>"
+msgid "Returns Number!, the factorial of <emph>Number</emph>, calculated as 1*2*3*4* ... * Number."
msgstr ""
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3153484\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3834650\n"
"help.text"
-msgid "Logical Functions"
-msgstr "Funksionet statistikore"
+msgid "=FACT(0) returns 1 by definition."
+msgstr ""
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3149312\n"
-"2\n"
+"04060106.xhp\n"
+"par_id8429517\n"
"help.text"
-msgid "<variable id=\"logischtext\">This category contains the <emph>Logical</emph> functions. </variable>"
+msgid "The factorial of a negative number returns the \"invalid argument\" error."
msgstr ""
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"bm_id3147505\n"
+"04060106.xhp\n"
+"hd_id3154569\n"
+"213\n"
"help.text"
-msgid "<bookmark_value>AND function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "Example"
+msgstr "Shembull"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3147505\n"
-"29\n"
+"04060106.xhp\n"
+"par_id3154476\n"
+"216\n"
"help.text"
-msgid "AND"
-msgstr "DHE"
+msgid "<item type=\"input\">=FACT(3)</item> returns 6."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3153959\n"
-"65\n"
+"04060106.xhp\n"
+"par_id3147525\n"
+"214\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_UND\">Returns TRUE if all arguments are TRUE.</ahelp> If one of the elements is FALSE, this function returns the FALSE value."
-msgstr ""
+msgid "<item type=\"input\">=FACT(0)</item> returns 1."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3146100\n"
-"66\n"
+"04060106.xhp\n"
+"bm_id3159084\n"
"help.text"
-msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
+msgid "<bookmark_value>INT function</bookmark_value><bookmark_value>numbers;rounding down to next integer</bookmark_value><bookmark_value>rounding;down to next integer</bookmark_value>"
msgstr ""
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3150538\n"
-"67\n"
+"04060106.xhp\n"
+"hd_id3159084\n"
+"218\n"
"help.text"
-msgid "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
-msgstr ""
+msgid "INT"
+msgstr "INT"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3149128\n"
-"68\n"
+"04060106.xhp\n"
+"par_id3158441\n"
+"219\n"
"help.text"
-msgid "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!"
+msgid "<ahelp hid=\"HID_FUNC_GANZZAHL\">Rounds a number down to the nearest integer.</ahelp>"
msgstr ""
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3150374\n"
-"31\n"
+"04060106.xhp\n"
+"hd_id3146132\n"
+"220\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3159123\n"
-"32\n"
+"04060106.xhp\n"
+"par_id3156146\n"
+"221\n"
"help.text"
-msgid "AND(LogicalValue1; LogicalValue2 ...LogicalValue30)"
-msgstr ""
+msgid "INT(Number)"
+msgstr "Numri i faqes"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3150038\n"
-"33\n"
+"04060106.xhp\n"
+"par_id3154117\n"
+"222\n"
"help.text"
-msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row. The result is TRUE if the logical value in all cells within the cell range is TRUE."
+msgid "Returns <emph>Number</emph> rounded down to the nearest integer."
msgstr ""
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3149143\n"
-"34\n"
+"04060106.xhp\n"
+"par_id153508\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Negative numbers round down to the integer below."
+msgstr ""
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3153123\n"
-"35\n"
+"04060106.xhp\n"
+"hd_id3155118\n"
+"223\n"
"help.text"
-msgid "The logical values of entries 12<13; 14>12, and 7<6 are to be checked:"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3145632\n"
-"36\n"
+"04060106.xhp\n"
+"par_id3156267\n"
+"224\n"
"help.text"
-msgid "<item type=\"input\">=AND(12<13;14>12;7<6)</item> returns FALSE."
+msgid "<item type=\"input\">=INT(5.7)</item> returns 5."
msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3149946\n"
-"60\n"
+"04060106.xhp\n"
+"par_id3147323\n"
+"225\n"
"help.text"
-msgid "<item type=\"input\">=AND (FALSE;TRUE)</item> returns FALSE."
+msgid "<item type=\"input\">=INT(-1.3)</item> returns -2."
msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"bm_id3149015\n"
+"04060106.xhp\n"
+"bm_id3150938\n"
"help.text"
-msgid "<bookmark_value>FALSE function</bookmark_value>"
-msgstr "Definon vlerën llogjike si PASAKTË."
+msgid "<bookmark_value>EVEN function</bookmark_value><bookmark_value>numbers;rounding up/down to even integers</bookmark_value><bookmark_value>rounding;up/down to even integers</bookmark_value>"
+msgstr ""
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3149015\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3150938\n"
+"227\n"
"help.text"
-msgid "FALSE"
-msgstr "PASAKTË"
+msgid "EVEN"
+msgstr "EVEN"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3149890\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3149988\n"
+"228\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FALSCH\">Returns the logical value FALSE.</ahelp> The FALSE() function does not require any arguments, and always returns the logical value FALSE."
+msgid "<ahelp hid=\"HID_FUNC_GERADE\">Rounds a positive number up to the next even integer and a negative number down to the next even integer.</ahelp>"
msgstr ""
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3146939\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3148401\n"
+"229\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3150030\n"
-"6\n"
-"help.text"
-msgid "FALSE()"
-msgstr "Pasaktë"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3150697\n"
-"7\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3154842\n"
-"8\n"
-"help.text"
-msgid "<item type=\"input\">=FALSE()</item> returns FALSE"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3147468\n"
-"9\n"
-"help.text"
-msgid "<item type=\"input\">=NOT(FALSE())</item> returns TRUE"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"bm_id3150141\n"
-"help.text"
-msgid "<bookmark_value>IF function</bookmark_value>"
-msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3150141\n"
-"48\n"
+"04060106.xhp\n"
+"par_id3150830\n"
+"230\n"
"help.text"
-msgid "IF"
-msgstr "NËSE"
+msgid "EVEN(Number)"
+msgstr "Numri i faqes"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3148740\n"
-"49\n"
+"04060106.xhp\n"
+"par_id3153350\n"
+"231\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WENN\">Specifies a logical test to be performed.</ahelp>"
+msgid "Returns <emph>Number</emph> rounded to the next even integer up, away from zero."
msgstr ""
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3153325\n"
-"50\n"
+"04060106.xhp\n"
+"hd_id3155508\n"
+"232\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Examples"
+msgstr "Shembuj:"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3154558\n"
-"51\n"
+"04060106.xhp\n"
+"par_id3154361\n"
+"233\n"
"help.text"
-msgid "IF(Test; ThenValue; OtherwiseValue)"
-msgstr ""
+msgid "<item type=\"input\">=EVEN(2.3)</item> returns 4."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3149727\n"
-"52\n"
+"04060106.xhp\n"
+"par_id8477736\n"
"help.text"
-msgid "<emph>Test</emph> is any value or expression that can be TRUE or FALSE."
-msgstr ""
+msgid "<item type=\"input\">=EVEN(2)</item> returns 2."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3155828\n"
-"53\n"
+"04060106.xhp\n"
+"par_id159611\n"
"help.text"
-msgid "<emph>ThenValue</emph> (optional) is the value that is returned if the logical test is TRUE."
-msgstr ""
+msgid "<item type=\"input\">=EVEN(0)</item> returns 0."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3154811\n"
-"54\n"
+"04060106.xhp\n"
+"par_id6097598\n"
"help.text"
-msgid "<emph>OtherwiseValue</emph> (optional) is the value that is returned if the logical test is FALSE."
-msgstr ""
+msgid "<item type=\"input\">=EVEN(-0.5)</item> returns -2."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_idN107FA\n"
+"04060106.xhp\n"
+"bm_id3147356\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr ""
+msgid "<bookmark_value>GCD function</bookmark_value><bookmark_value>greatest common divisor</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3149507\n"
-"55\n"
+"04060106.xhp\n"
+"hd_id3147356\n"
+"237\n"
"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
+msgid "GCD"
+msgstr "GCD"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3150867\n"
-"57\n"
+"04060106.xhp\n"
+"par_id3152465\n"
+"238\n"
"help.text"
-msgid "<item type=\"input\">=IF(A1>5;100;\"too small\")</item> If the value in A1 is higher than 5, the value 100 is entered in the current cell; otherwise, the text “too small” (without quotes) is entered."
+msgid "<ahelp hid=\"HID_FUNC_GGT\">Returns the greatest common divisor of two or more integers.</ahelp>"
msgstr ""
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"bm_id3155954\n"
-"help.text"
-msgid "<bookmark_value>NOT function</bookmark_value>"
-msgstr "Gabim: Vlera nuk është në dispozicion"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3155954\n"
-"12\n"
-"help.text"
-msgid "NOT"
-msgstr "JO"
-
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3153570\n"
-"13\n"
+"04060106.xhp\n"
+"par_id2769249\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_NICHT\">Complements (inverts) a logical value.</ahelp>"
+msgid "The greatest common divisor is the positive largest integer which will divide, without remainder, each of the given integers."
msgstr ""
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3147372\n"
-"14\n"
+"04060106.xhp\n"
+"hd_id3150643\n"
+"239\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3157996\n"
-"15\n"
+"04060106.xhp\n"
+"par_id3154524\n"
+"240\n"
"help.text"
-msgid "NOT(LogicalValue)"
-msgstr "JO logjike"
+msgid "GCD(Integer1; Integer2; ...; Integer30)"
+msgstr ""
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3148766\n"
-"16\n"
+"04060106.xhp\n"
+"par_id3149340\n"
+"241\n"
"help.text"
-msgid "<emph>LogicalValue</emph> is any value to be complemented."
-msgstr "Vlera që do të transformohet prapa."
+msgid "<emph>Integer1 To 30</emph> are up to 30 integers whose greatest common divisor is to be calculated."
+msgstr ""
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3149884\n"
-"17\n"
+"04060106.xhp\n"
+"hd_id3147317\n"
+"242\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3150132\n"
-"18\n"
+"04060106.xhp\n"
+"par_id3151285\n"
+"243\n"
"help.text"
-msgid "<item type=\"input\">=NOT(A)</item>. If A=TRUE then NOT(A) will evaluate FALSE."
+msgid "<item type=\"input\">=GCD(16;32;24) </item>gives the result 8, because 8 is the largest number that can divide 16, 24 and 32 without a remainder."
msgstr ""
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"bm_id3148394\n"
-"help.text"
-msgid "<bookmark_value>OR function</bookmark_value>"
-msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"hd_id3148394\n"
-"20\n"
-"help.text"
-msgid "OR"
-msgstr "OSE"
-
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3156060\n"
-"61\n"
+"04060106.xhp\n"
+"par_id1604663\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ODER\">Returns TRUE if at least one argument is TRUE.</ahelp> This function returns the value FALSE, if all the arguments have the logical value FALSE."
+msgid "<item type=\"input\">=GCD(B1:B3)</item> where cells B1, B2, B3 contain <item type=\"input\">9</item>, <item type=\"input\">12</item>, <item type=\"input\">9</item> gives 3."
msgstr ""
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3148771\n"
-"62\n"
+"04060106.xhp\n"
+"bm_id3151221\n"
"help.text"
-msgid "The arguments are either logical expressions themselves (TRUE, 1<5, 2+3=7, B8<10) that return logical values, or arrays (A1:C3) containing logical values."
-msgstr ""
+msgid "<bookmark_value>GCD_ADD function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3153546\n"
-"63\n"
+"04060106.xhp\n"
+"hd_id3151221\n"
+"677\n"
"help.text"
-msgid "When a function expects a single value, but you entered a cell range, then the value from the cell range is taken that is in the same column or row as the formula."
-msgstr ""
+msgid "GCD_ADD"
+msgstr "Shto elementin"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3149027\n"
-"64\n"
+"04060106.xhp\n"
+"par_id3153257\n"
+"678\n"
"help.text"
-msgid "If the entered range is outside of the current column or row of the formula, the function returns the error value #VALUE!"
+msgid "<ahelp hid=\"HID_AAI_FUNC_GCD\"> The result is the greatest common divisor of a list of numbers.</ahelp>"
msgstr ""
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3155517\n"
-"22\n"
+"04060106.xhp\n"
+"hd_id3147548\n"
+"679\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3150468\n"
-"23\n"
+"04060106.xhp\n"
+"par_id3156205\n"
+"680\n"
"help.text"
-msgid "OR(LogicalValue1; LogicalValue2 ...LogicalValue30)"
-msgstr ""
+msgid "GCD_ADD(Number(s))"
+msgstr "Format Numerik: Shto Vendin Decimal"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3155819\n"
-"24\n"
+"04060106.xhp\n"
+"par_id3145150\n"
+"681\n"
"help.text"
-msgid "<emph>LogicalValue1; LogicalValue2 ...LogicalValue30</emph> are conditions to be checked. All conditions can be either TRUE or FALSE. If a range is entered as a parameter, the function uses the value from the range that is in the current column or row."
-msgstr ""
+msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
+msgstr "Siguron një numër të mbrendshëm për datën e dhënë."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3153228\n"
-"25\n"
+"04060106.xhp\n"
+"hd_id3150239\n"
+"682\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3154870\n"
-"26\n"
-"help.text"
-msgid "The logical values of entries 12<11; 13>22, and 45=45 are to be checked."
-msgstr ""
-
-#: 04060105.xhp
-msgctxt ""
-"04060105.xhp\n"
-"par_id3155371\n"
-"27\n"
-"help.text"
-msgid "<item type=\"input\">=OR(12<11;13>22;45=45)</item> returns TRUE."
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3158412\n"
-"59\n"
+"04060106.xhp\n"
+"par_id3159192\n"
+"683\n"
"help.text"
-msgid "<item type=\"input\">=OR(FALSE;TRUE)</item> returns TRUE."
+msgid "<item type=\"input\">=GCD_ADD(5;15;25)</item> returns 5."
msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"bm_id3156256\n"
+"04060106.xhp\n"
+"bm_id3156048\n"
"help.text"
-msgid "<bookmark_value>TRUE function</bookmark_value>"
-msgstr "Kthen vlerën llogjike SAKTË."
+msgid "<bookmark_value>ISEVEN function</bookmark_value><bookmark_value>even integers</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3156256\n"
-"38\n"
+"04060106.xhp\n"
+"hd_id3156048\n"
+"245\n"
"help.text"
-msgid "TRUE"
-msgstr "SAKTË"
+msgid "ISEVEN"
+msgstr "ISEVEN"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3155985\n"
-"39\n"
+"04060106.xhp\n"
+"par_id3149169\n"
+"246\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WAHR\">The logical value is set to TRUE.</ahelp> The TRUE() function does not require any arguments, and always returns the logical value TRUE."
+msgid "<ahelp hid=\"HID_FUNC_ISTGERADE\">Returns TRUE if the value is an even integer, or FALSE if the value is odd.</ahelp>"
msgstr ""
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3153717\n"
-"40\n"
+"04060106.xhp\n"
+"hd_id3146928\n"
+"247\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3152590\n"
-"41\n"
+"04060106.xhp\n"
+"par_id3151203\n"
+"248\n"
"help.text"
-msgid "TRUE()"
-msgstr "Saktë"
+msgid "ISEVEN(Value)"
+msgstr "Vlerë absolute"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"hd_id3147175\n"
-"42\n"
+"04060106.xhp\n"
+"par_id3150491\n"
+"249\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<emph>Value</emph> is the value to be checked."
+msgstr "Vlera që do të transformohet prapa."
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3146148\n"
-"43\n"
+"04060106.xhp\n"
+"par_id3445844\n"
"help.text"
-msgid "If A=TRUE and B=FALSE the following examples appear:"
+msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
msgstr ""
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3083285\n"
-"44\n"
+"04060106.xhp\n"
+"hd_id3154136\n"
+"250\n"
"help.text"
-msgid "<item type=\"input\">=AND(A;B)</item> returns FALSE"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Example"
+msgstr "Shembull"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3083444\n"
-"45\n"
+"04060106.xhp\n"
+"par_id3163813\n"
+"251\n"
"help.text"
-msgid "<item type=\"input\">=OR(A;B)</item> returns TRUE"
+msgid "<item type=\"input\">=ISEVEN(48)</item> returns TRUE"
msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060105.xhp
+#: 04060106.xhp
msgctxt ""
-"04060105.xhp\n"
-"par_id3154314\n"
-"46\n"
+"04060106.xhp\n"
+"par_id8378856\n"
"help.text"
-msgid "<item type=\"input\">=NOT(AND(A;B))</item> returns TRUE"
+msgid "<item type=\"input\">=ISEVEN(33)</item> returns FALSE"
msgstr "Hyrja e karaktereve alfanumerike"
-#: 12080700.xhp
-msgctxt ""
-"12080700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Show Details (Pivot Table)"
-msgstr ""
-
-#: 12080700.xhp
-msgctxt ""
-"12080700.xhp\n"
-"hd_id3344523\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details (Pivot Table)</link>"
-msgstr ""
-
-#: 12080700.xhp
+#: 04060106.xhp
msgctxt ""
-"12080700.xhp\n"
-"par_id871303\n"
+"04060106.xhp\n"
+"par_id7154759\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts a new \"drill-down\" sheet with more information about the current pivot table cell. You can also double-click a pivot table cell to insert the \"drill-down\" sheet. The new sheet shows a subset of rows from the original data source that constitutes the result data displayed in the current cell.</ahelp>"
-msgstr ""
+msgid "<item type=\"input\">=ISEVEN(0)</item> returns TRUE"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 12080700.xhp
+#: 04060106.xhp
msgctxt ""
-"12080700.xhp\n"
-"par_id7132480\n"
+"04060106.xhp\n"
+"par_id1912289\n"
"help.text"
-msgid "Hidden items are not evaluated, the rows for the hidden items are included. Show Details is available only for pivot tables that are based on cell ranges or database data."
-msgstr ""
+msgid "<item type=\"input\">=ISEVEN(-2.1)</item> returns TRUE"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id5627307\n"
"help.text"
-msgid "DATE"
-msgstr "DATA"
+msgid "<item type=\"input\">=ISEVEN(3.999)</item> returns FALSE"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"bm_id3155511\n"
+"04060106.xhp\n"
+"bm_id3156034\n"
"help.text"
-msgid "<bookmark_value>DATE function</bookmark_value>"
+msgid "<bookmark_value>ISODD function</bookmark_value><bookmark_value>odd integers</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"hd_id3155511\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3156034\n"
+"255\n"
"help.text"
-msgid "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
-msgstr ""
+msgid "ISODD"
+msgstr "ISODD"
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"par_id3153551\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3155910\n"
+"256\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function calculates a date specified by year, month, day and displays it in the cell's formatting.</ahelp> The default format of a cell containing the DATE function is the date format, but you can format the cells with any other number format."
+msgid "<ahelp hid=\"HID_FUNC_ISTUNGERADE\">Returns TRUE if the value is odd, or FALSE if the number is even.</ahelp>"
msgstr ""
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"hd_id3148590\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3151006\n"
+"257\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3150474\n"
-"6\n"
-"help.text"
-msgid "DATE(Year; Month; Day)"
-msgstr "Çfarwdo dite nw muajin e dwshiruar"
-
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3152815\n"
-"7\n"
-"help.text"
-msgid "<emph>Year</emph> is an integer between 1583 and 9957 or between 0 and 99."
-msgstr ""
-
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3153222\n"
-"174\n"
-"help.text"
-msgid "In <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General </item>you can set from which year a two-digit number entry is recognized as 20xx."
-msgstr ""
-
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"par_id3155817\n"
-"8\n"
+"04060106.xhp\n"
+"par_id3151375\n"
+"258\n"
"help.text"
-msgid "<emph>Month</emph> is an integer indicating the month."
-msgstr ""
+msgid "ISODD(value)"
+msgstr "Vlerë absolute"
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"par_id3153183\n"
-"9\n"
+"04060106.xhp\n"
+"par_id3155139\n"
+"259\n"
"help.text"
-msgid "<emph>Day</emph> is an integer indicating the day of the month."
-msgstr ""
+msgid "<emph>Value</emph> is the value to be checked."
+msgstr "Vlera që do të transformohet prapa."
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"par_id3156260\n"
-"10\n"
+"04060106.xhp\n"
+"par_id9027680\n"
"help.text"
-msgid "If the values for month and day are out of bounds, they are carried over to the next digit. If you enter <item type=\"input\">=DATE(00;12;31)</item> the result will be 12/31/00. If, on the other hand, you enter <item type=\"input\">=DATE(00;13;31)</item> the result will be 1/31/01."
+msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
msgstr ""
-#: func_date.xhp
+#: 04060106.xhp
msgctxt ""
-"func_date.xhp\n"
-"hd_id3147477\n"
-"12\n"
+"04060106.xhp\n"
+"hd_id3163723\n"
+"260\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: func_date.xhp
-msgctxt ""
-"func_date.xhp\n"
-"par_id3152589\n"
-"16\n"
-"help.text"
-msgid "<item type=\"input\">=DATE(00;1;31)</item> yields 1/31/00 if the cell format setting is MM/DD/YY."
-msgstr ""
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Move or Copy a Sheet"
-msgstr ""
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"bm_id3153360\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; moving</bookmark_value><bookmark_value>spreadsheets; copying</bookmark_value><bookmark_value>moving; spreadsheets</bookmark_value><bookmark_value>copying; spreadsheets</bookmark_value>"
-msgstr ""
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"hd_id3153360\n"
-"1\n"
-"help.text"
-msgid "Move or Copy a Sheet"
-msgstr ""
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"par_id3154686\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"tabelleverschiebenkopierentext\"><ahelp hid=\".uno:Move\">Moves or copies a sheet to a new location in the document or to a different document.</ahelp></variable>"
-msgstr ""
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"par_id2282479\n"
-"help.text"
-msgid "When you copy and paste cells containing <link href=\"text/scalc/01/04060102.xhp\">date values</link> between different spreadsheets, both spreadsheet documents must be set to the same date base. If date bases differ, the displayed date values will change!"
-msgstr ""
-
-#: 02180000.xhp
-msgctxt ""
-"02180000.xhp\n"
-"hd_id3163710\n"
-"3\n"
-"help.text"
-msgid "To Document"
-msgstr "Nga ~dokumenti"
-
-#: 02180000.xhp
+#: 04060106.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3148645\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3155345\n"
+"261\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_DEST\">Indicates where the current sheet is to be moved or copied to.</ahelp> Select <emph>- new document -</emph> if you want to create a new location for the sheet to be moved or copied."
-msgstr ""
+msgid "<item type=\"input\">=ISODD(33)</item> returns TRUE"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02180000.xhp
+#: 04060106.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3154012\n"
-"5\n"
+"04060106.xhp\n"
+"par_id9392986\n"
"help.text"
-msgid "Insert Before"
-msgstr "~Fute para"
+msgid "<item type=\"input\">=ISODD(48)</item> returns FALSE"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02180000.xhp
+#: 04060106.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3145366\n"
-"6\n"
+"04060106.xhp\n"
+"par_id5971251\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_MOVETAB:LB_INSERT\">The current sheet is moved or copied in front of the selected sheet.</ahelp> The <emph>- move to end position -</emph> option places the current sheet at the end."
-msgstr ""
+msgid "<item type=\"input\">=ISODD(3.999)</item> returns TRUE"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02180000.xhp
+#: 04060106.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3153726\n"
-"7\n"
+"04060106.xhp\n"
+"par_id4136478\n"
"help.text"
-msgid "Copy"
-msgstr "Kopjo"
+msgid "<item type=\"input\">=ISODD(-3.1)</item> returns TRUE"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02180000.xhp
+#: 04060106.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3144764\n"
-"8\n"
+"04060106.xhp\n"
+"bm_id3145213\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_MOVETAB:BTN_COPY\">Specifies that the sheet is to be copied. If the option is unmarked, the sheet is moved.</ahelp> Moving sheets is the default."
+msgid "<bookmark_value>LCM function</bookmark_value><bookmark_value>least common multiples</bookmark_value><bookmark_value>lowest common multiples</bookmark_value>"
msgstr ""
-#: func_now.xhp
-msgctxt ""
-"func_now.xhp\n"
-"tit\n"
-"help.text"
-msgid "NOW"
-msgstr "TANI"
-
-#: func_now.xhp
-msgctxt ""
-"func_now.xhp\n"
-"bm_id3150521\n"
-"help.text"
-msgid "<bookmark_value>NOW function</bookmark_value>"
-msgstr "Gabim: Vlera nuk është në dispozicion"
-
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"hd_id3150521\n"
-"47\n"
+"04060106.xhp\n"
+"hd_id3145213\n"
+"265\n"
"help.text"
-msgid "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">NOW</link></variable>"
-msgstr ""
+msgid "LCM"
+msgstr "LCM"
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"par_id3148829\n"
-"48\n"
+"04060106.xhp\n"
+"par_id3146814\n"
+"266\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_JETZT\">Returns the computer system date and time.</ahelp> The value is updated when you recalculate the document or each time a cell value is modified."
+msgid "<ahelp hid=\"HID_FUNC_KGV\">Returns the least common multiple of one or more integers.</ahelp>"
msgstr ""
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"hd_id3146988\n"
-"49\n"
+"04060106.xhp\n"
+"hd_id3148632\n"
+"267\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"par_id3154897\n"
-"50\n"
+"04060106.xhp\n"
+"par_id3147279\n"
+"268\n"
"help.text"
-msgid "NOW()"
-msgstr "TANI"
+msgid "LCM(Integer1; Integer2; ...; Integer30)"
+msgstr ""
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"par_id4598529\n"
+"04060106.xhp\n"
+"par_id3156348\n"
+"269\n"
"help.text"
-msgid "NOW is a function without arguments."
+msgid "<emph>Integer1 to 30</emph> are up to 30 integers whose lowest common multiple is to be calculated."
msgstr ""
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"hd_id3154205\n"
-"51\n"
+"04060106.xhp\n"
+"hd_id3156431\n"
+"270\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: func_now.xhp
+#: 04060106.xhp
msgctxt ""
-"func_now.xhp\n"
-"par_id3150774\n"
-"52\n"
+"04060106.xhp\n"
+"par_id3154914\n"
+"271\n"
"help.text"
-msgid "<item type=\"input\">=NOW()-A1</item> returns the difference between the date in A1 and now. Format the result as a number."
+msgid "If you enter the numbers <item type=\"input\">512</item>;<item type=\"input\">1024</item> and <item type=\"input\">2000</item> in the Integer 1;2 and 3 text boxes, 128000 will be returned as the result."
msgstr ""
-#: 02140100.xhp
+#: 04060106.xhp
msgctxt ""
-"02140100.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"bm_id3154230\n"
"help.text"
-msgid "Down"
-msgstr "Down"
+msgid "<bookmark_value>LCM_ADD function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
-#: 02140100.xhp
+#: 04060106.xhp
msgctxt ""
-"02140100.xhp\n"
-"hd_id3150792\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3154230\n"
+"684\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140100.xhp\" name=\"Down\">Down</link>"
-msgstr ""
+msgid "LCM_ADD"
+msgstr "Shto elementin"
-#: 02140100.xhp
+#: 04060106.xhp
msgctxt ""
-"02140100.xhp\n"
-"par_id3153969\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3149036\n"
+"685\n"
"help.text"
-msgid "<ahelp hid=\".uno:FillDown\" visibility=\"visible\">Fills a selected range of at least two rows with the contents of the top cell of the range.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_LCM\"> The result is the lowest common multiple of a list of numbers.</ahelp>"
msgstr ""
-#: 02140100.xhp
+#: 04060106.xhp
msgctxt ""
-"02140100.xhp\n"
-"par_id3145787\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3153132\n"
+"686\n"
"help.text"
-msgid "If a selected range has only one column, the contents of the top cell are copied to all others. If several columns are selected, the contents of the corresponding top cell will be copied down."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3154395\n"
+"687\n"
"help.text"
-msgid "Graphic"
-msgstr "Grafikë"
+msgid "LCM_ADD(Number(s))"
+msgstr "Format Numerik: Shto Vendin Decimal"
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"par_idN10548\n"
+"04060106.xhp\n"
+"par_id3147377\n"
+"688\n"
"help.text"
-msgid "<link href=\"text/scalc/01/format_graphic.xhp\">Graphic</link>"
-msgstr ""
+msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
+msgstr "Siguron një numër të mbrendshëm për datën e dhënë."
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"par_idN10558\n"
+"04060106.xhp\n"
+"hd_id3145122\n"
+"689\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected object.</ahelp>"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"par_id1650440\n"
+"04060106.xhp\n"
+"par_id3145135\n"
+"690\n"
"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\">Define Text Attributes</link>"
-msgstr ""
+msgid "<item type=\"input\">=LCM_ADD(5;15;25)</item> returns 75."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"par_id363475\n"
+"04060106.xhp\n"
+"bm_id3155802\n"
"help.text"
-msgid "Sets the layout and anchoring properties for text in the selected drawing or text object."
-msgstr ""
+msgid "<bookmark_value>COMBIN function</bookmark_value><bookmark_value>number of combinations</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"par_id9746696\n"
+"04060106.xhp\n"
+"hd_id3155802\n"
+"273\n"
"help.text"
-msgid "Points"
-msgstr "Edito pikat"
+msgid "COMBIN"
+msgstr "COMBIN"
-#: format_graphic.xhp
+#: 04060106.xhp
msgctxt ""
-"format_graphic.xhp\n"
-"par_id2480544\n"
+"04060106.xhp\n"
+"par_id3156172\n"
+"274\n"
"help.text"
-msgid "<ahelp hid=\".\">Switches <emph>Edit Points</emph> mode for an inserted freeform line on and off.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN\">Returns the number of combinations for elements without repetition.</ahelp>"
msgstr ""
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3156193\n"
+"275\n"
"help.text"
-msgid "Refresh Traces"
-msgstr "Rifresko Gjurmët"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"bm_id3152349\n"
+"04060106.xhp\n"
+"par_id3150223\n"
+"276\n"
"help.text"
-msgid "<bookmark_value>cells; refreshing traces</bookmark_value><bookmark_value>traces; refreshing</bookmark_value><bookmark_value>updating;traces</bookmark_value>"
+msgid "COMBIN(Count1; Count2)"
msgstr ""
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"hd_id3152349\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3150313\n"
+"277\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030900.xhp\" name=\"Refresh Traces\">Refresh Traces</link>"
-msgstr ""
+msgid "<emph>Count1</emph> is the number of items in the set."
+msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"par_id3148947\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3153830\n"
+"278\n"
"help.text"
-msgid "<ahelp hid=\".uno:RefreshArrows\">Redraws all traces in the sheet. Formulas modified when traces are redrawn are taken into account.</ahelp>"
-msgstr ""
+msgid "<emph>Count2</emph> is the number of items to choose from the set."
+msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"par_id3148798\n"
-"3\n"
+"04060106.xhp\n"
+"par_id6807458\n"
"help.text"
-msgid "Detective arrows in the document are updated under the following circumstances:"
+msgid "COMBIN returns the number of ordered ways to choose these items. For example if there are 3 items A, B and C in a set, you can choose 2 items in 3 different ways, namely AB, AC and BC."
msgstr ""
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"par_id3153192\n"
-"4\n"
+"04060106.xhp\n"
+"par_id7414471\n"
"help.text"
-msgid "Starting <emph>Tools - Detective - Update Refresh Traces</emph>"
+msgid "COMBIN implements the formula: Count1!/(Count2!*(Count1-Count2)!)"
msgstr ""
-#: 06030900.xhp
+#: 04060106.xhp
msgctxt ""
-"06030900.xhp\n"
-"par_id3151041\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3153171\n"
+"279\n"
"help.text"
-msgid "If <emph>Tools - Detective - Update Automatically</emph> is turned on, every time formulas are changed in the document."
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3153517\n"
+"280\n"
"help.text"
-msgid "Edit Print Ranges"
-msgstr "Edito Intervalet e Printimit"
+msgid "<item type=\"input\">=COMBIN(3;2)</item> returns 3."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"hd_id3153088\n"
-"1\n"
+"04060106.xhp\n"
+"bm_id3150284\n"
"help.text"
-msgid "Edit Print Ranges"
-msgstr "Edito Intervalet e Printimit"
+msgid "<bookmark_value>COMBINA function</bookmark_value><bookmark_value>number of combinations with repetitions</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3159488\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3150284\n"
+"282\n"
"help.text"
-msgid "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">Opens a dialog where you can specify the print range.</ahelp></variable> You can also set the rows or columns which are to be repeated in every page."
-msgstr ""
+msgid "COMBINA"
+msgstr "COMBINA"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_idN105AE\n"
+"04060106.xhp\n"
+"par_id3157894\n"
+"283\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/guide/printranges.xhp#printranges\"/>"
+msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN2\">Returns the number of combinations of a subset of items including repetitions.</ahelp>"
msgstr ""
-#: 05080300.xhp
-msgctxt ""
-"05080300.xhp\n"
-"hd_id3156281\n"
-"3\n"
-"help.text"
-msgid "Print range"
-msgstr "Intervali i shtypjes"
-
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3147228\n"
-"4\n"
+"04060106.xhp\n"
+"hd_id3145752\n"
+"284\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_PRINTAREA\">Allows you to modify a defined print range.</ahelp>"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3145174\n"
-"5\n"
+"04060106.xhp\n"
+"par_id3145765\n"
+"285\n"
"help.text"
-msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgid "COMBINA(Count1; Count2)"
msgstr ""
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3145272\n"
-"6\n"
+"04060106.xhp\n"
+"par_id3153372\n"
+"286\n"
"help.text"
-msgid "In the right-hand text box, you can enter a print range by reference or by name. If the cursor is in the <emph>Print range</emph> text box, you can also select the print range in the spreadsheet with your mouse."
-msgstr ""
+msgid "<emph>Count1</emph> is the number of items in the set."
+msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"hd_id3149260\n"
-"7\n"
+"04060106.xhp\n"
+"par_id3155544\n"
+"287\n"
"help.text"
-msgid "Rows to repeat"
-msgstr "Rreshtat për t'u përsëritur"
+msgid "<emph>Count2</emph> is the number of items to choose from the set."
+msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3147426\n"
-"8\n"
+"04060106.xhp\n"
+"par_id1997131\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATROW\">Choose one or more rows to print on every page. In the right text box enter the row reference, for example, \"1\" or \"$1\" or \"$2:$3\".</ahelp> The list box displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating row."
+msgid "COMBINA returns the number of unique ways to choose these items, where the order of choosing is irrelevant, and repetition of items is allowed. For example if there are 3 items A, B and C in a set, you can choose 2 items in 6 different ways, namely AA, AB, AC, BB, BC and CC."
msgstr ""
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3155418\n"
-"9\n"
+"04060106.xhp\n"
+"par_id2052064\n"
"help.text"
-msgid "You can also define repeating rows by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Rows to repeat</emph> text field in the dialog."
+msgid "COMBINA implements the formula: (Count1+Count2-1)! / (Count2!(Count1-1)!)"
msgstr ""
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"hd_id3149581\n"
-"10\n"
+"04060106.xhp\n"
+"hd_id3154584\n"
+"288\n"
"help.text"
-msgid "Columns to repeat"
-msgstr "Shtyllat për tu përsëritur"
+msgid "Example"
+msgstr "Shembull"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3155602\n"
-"11\n"
+"04060106.xhp\n"
+"par_id3152904\n"
+"289\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATCOL\">Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\".</ahelp> The list box then displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating column."
-msgstr ""
+msgid "<item type=\"input\">=COMBINA(3;2)</item> returns 6."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 05080300.xhp
+#: 04060106.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3150749\n"
-"12\n"
+"04060106.xhp\n"
+"bm_id3156086\n"
"help.text"
-msgid "You can also define repeating columns by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Columns to repeat</emph> text field in the dialog."
-msgstr ""
+msgid "<bookmark_value>TRUNC function</bookmark_value><bookmark_value>decimal places;cutting off</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3156086\n"
+"291\n"
"help.text"
-msgid "Merge and Center Cells"
-msgstr ""
+msgid "TRUNC"
+msgstr "TRUNC"
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3149785\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3157866\n"
+"292\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05060000.xhp\" name=\"Merge and Center Cells\">Merge and Center Cells</link>"
+msgid "<ahelp hid=\"HID_FUNC_KUERZEN\">Truncates a number by removing decimal places.</ahelp>"
msgstr ""
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3151246\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3148499\n"
+"293\n"
"help.text"
-msgid "<ahelp hid=\".\">Combines the selected cells into a single cell or splits merged cells. Aligns cell content centered.</ahelp>"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3154020\n"
-"18\n"
+"04060106.xhp\n"
+"par_id3148511\n"
+"294\n"
"help.text"
-msgid "Choose <emph>Format - Merge Cells - Merge and Center Cells</emph>"
-msgstr ""
+msgid "TRUNC(Number; Count)"
+msgstr "Mos numëro rreshtat"
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3148552\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3150796\n"
+"295\n"
"help.text"
-msgid "The merged cell receives the name of the first cell of the original cell range. Merged cells cannot be merged a second time with other cells. The range must form a rectangle, multiple selection is not supported."
+msgid "Returns <emph>Number</emph> with at most <emph>Count</emph> decimal places. Excess decimal places are simply removed, irrespective of sign."
msgstr ""
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3149665\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3150816\n"
+"296\n"
"help.text"
-msgid "If the cells to be merged have any contents, a security dialog is shown."
+msgid "<item type=\"literal\">TRUNC(Number; 0)</item> behaves as <item type=\"literal\">INT(Number)</item> for positive numbers, but effectively rounds towards zero for negative numbers."
msgstr ""
-#: 05060000.xhp
+#: 04060106.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3153718\n"
+"04060106.xhp\n"
+"par_id3148548\n"
+"557\n"
"help.text"
-msgid "Merging cells can lead to calculation errors in formulas in the table."
+msgid "The <emph>visible</emph> decimal places of the result are specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>."
msgstr ""
-#: 12040000.xhp
+#: 04060106.xhp
msgctxt ""
-"12040000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3152555\n"
+"297\n"
"help.text"
-msgid "Filter"
-msgstr "Filtër"
+msgid "Example"
+msgstr "Shembull"
-#: 12040000.xhp
+#: 04060106.xhp
msgctxt ""
-"12040000.xhp\n"
-"hd_id3150767\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3152569\n"
+"298\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">Filter</link>"
+msgid "<item type=\"input\">=TRUNC(1.239;2)</item> returns 1.23. The 9 is lost."
msgstr ""
-#: 12040000.xhp
+#: 04060106.xhp
msgctxt ""
-"12040000.xhp\n"
-"par_id3155131\n"
-"2\n"
+"04060106.xhp\n"
+"par_id7050080\n"
"help.text"
-msgid "<ahelp hid=\".\">Shows commands to filter your data.</ahelp>"
+msgid "<item type=\"input\">=TRUNC(-1.234999;3)</item> returns -1.234. All the 9s are lost."
msgstr ""
-#: 12040000.xhp
+#: 04060106.xhp
msgctxt ""
-"12040000.xhp\n"
-"par_id3146119\n"
-"7\n"
+"04060106.xhp\n"
+"bm_id3153601\n"
"help.text"
-msgid "$[officename] automatically recognizes predefined database ranges."
-msgstr ""
+msgid "<bookmark_value>LN function</bookmark_value><bookmark_value>natural logarithm</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 12040000.xhp
+#: 04060106.xhp
msgctxt ""
-"12040000.xhp\n"
-"par_id3153363\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3153601\n"
+"301\n"
"help.text"
-msgid "The following filtering options are available:"
-msgstr "Shërbimi në vijues nuk është në dispozicion:"
+msgid "LN"
+msgstr "LN"
-#: 12040000.xhp
+#: 04060106.xhp
msgctxt ""
-"12040000.xhp\n"
-"hd_id3153728\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3154974\n"
+"302\n"
"help.text"
-msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Standard filter\">Standard filter</link>"
+msgid "<ahelp hid=\"HID_FUNC_LN\">Returns the natural logarithm based on the constant e of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
msgstr ""
-#: 12040000.xhp
+#: 04060106.xhp
msgctxt ""
-"12040000.xhp\n"
-"hd_id3159153\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3154993\n"
+"303\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced filter\">Advanced filter</link>"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3155284\n"
+"304\n"
"help.text"
-msgid "Options"
-msgstr "Opcionet"
+msgid "LN(Number)"
+msgstr "Numri i faqes"
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"hd_id3149119\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3155297\n"
+"305\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Options</link>"
+msgid "<emph>Number</emph> is the value whose natural logarithm is to be calculated."
msgstr ""
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3147102\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3153852\n"
+"306\n"
"help.text"
-msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\">Displays or hides additional filtering options.</ahelp></variable>"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"hd_id3147008\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3153866\n"
+"307\n"
"help.text"
-msgid "Options"
-msgstr "Opcionet"
+msgid "<item type=\"input\">=LN(3)</item> returns the natural logarithm of 3 (approximately 1.0986)."
+msgstr ""
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"hd_id3153662\n"
-"5\n"
+"04060106.xhp\n"
+"par_id5747245\n"
"help.text"
-msgid "Case sensitive"
-msgstr "I ndjeshëm në madhësinë e shkronjave"
+msgid "<item type=\"input\">=LN(EXP(321))</item> returns 321."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3145673\n"
-"6\n"
+"04060106.xhp\n"
+"bm_id3109813\n"
"help.text"
-msgid "Distinguishes between uppercase and lowercase letters."
-msgstr ""
+msgid "<bookmark_value>LOG function</bookmark_value><bookmark_value>logarithms</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"hd_id3156327\n"
-"7\n"
+"04060106.xhp\n"
+"hd_id3109813\n"
+"311\n"
"help.text"
-msgid "Regular Expression"
-msgstr "Shprehje e rregullt"
+msgid "LOG"
+msgstr "LOG"
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3151245\n"
-"8\n"
+"04060106.xhp\n"
+"par_id3109841\n"
+"312\n"
"help.text"
-msgid "Allows you to use wildcards in the filter definition."
+msgid "<ahelp hid=\"HID_FUNC_LOG\">Returns the logarithm of a number to the specified base.</ahelp>"
msgstr ""
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3147264\n"
-"29\n"
+"04060106.xhp\n"
+"hd_id3144719\n"
+"313\n"
"help.text"
-msgid "If the <emph>Regular Expression</emph> check box is selected, you can use EQUAL (=) and NOT EQUAL (<>) also in comparisons. You can also use the following functions: DCOUNTA, DGET, MATCH, COUNTIF, SUMIF, LOOKUP, VLOOKUP and HLOOKUP."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"hd_id3153379\n"
-"30\n"
+"04060106.xhp\n"
+"par_id3144732\n"
+"314\n"
"help.text"
-msgid "Unique records only"
-msgstr "Krijo vetëm rresht"
+msgid "LOG(Number; Base)"
+msgstr "Llogarit logaritmin me bazë 10 të një numri."
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3154138\n"
-"31\n"
+"04060106.xhp\n"
+"par_id3144746\n"
+"315\n"
"help.text"
-msgid "Excludes duplicate rows in the list of filtered data."
+msgid "<emph>Number</emph> is the value whose logarithm is to be calculated."
msgstr ""
-#: 12090104.xhp
-#, fuzzy
-msgctxt ""
-"12090104.xhp\n"
-"hd_id3156282\n"
-"32\n"
-"help.text"
-msgid "Data area"
-msgstr "Zona e të dhënave:"
-
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3150768\n"
-"33\n"
+"04060106.xhp\n"
+"par_id3152840\n"
+"316\n"
"help.text"
-msgid "Displays the name of the filtered data area in the table."
+msgid "<emph>Base</emph> (optional) is the base for the logarithm calculation. If omitted, Base 10 is assumed."
msgstr ""
-#: 12090104.xhp
-msgctxt ""
-"12090104.xhp\n"
-"hd_id3156424\n"
-"34\n"
-"help.text"
-msgid "More<<"
-msgstr "Më shumë"
-
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3125864\n"
-"35\n"
+"04060106.xhp\n"
+"hd_id3152860\n"
+"317\n"
"help.text"
-msgid "Hides the additional options."
-msgstr "Shiriti i opcioneve /Grafikat"
+msgid "Example"
+msgstr "Shembull"
-#: 12090104.xhp
+#: 04060106.xhp
msgctxt ""
-"12090104.xhp\n"
-"par_id3154011\n"
+"04060106.xhp\n"
+"par_id3154429\n"
+"318\n"
"help.text"
-msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"List of Regular Expressions\">List of Regular Expressions</link>"
+msgid "<item type=\"input\">=LOG(10;3)</item> returns the logarithm to base 3 of 10 (approximately 2.0959)."
msgstr ""
-#: 05040000.xhp
-msgctxt ""
-"05040000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Column"
-msgstr "Kolonë"
-
-#: 05040000.xhp
+#: 04060106.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3155628\n"
-"1\n"
+"04060106.xhp\n"
+"par_id5577562\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\">Column</link>"
-msgstr ""
+msgid "<item type=\"input\">=LOG(7^4;7)</item> returns 4."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 05040000.xhp
+#: 04060106.xhp
msgctxt ""
-"05040000.xhp\n"
-"par_id3148946\n"
-"2\n"
+"04060106.xhp\n"
+"bm_id3154187\n"
"help.text"
-msgid "<ahelp hid=\".\">Sets the column width and hides or shows selected columns.</ahelp>"
-msgstr ""
+msgid "<bookmark_value>LOG10 function</bookmark_value><bookmark_value>base-10 logarithm</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 05040000.xhp
+#: 04060106.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3150398\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3154187\n"
+"322\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\">Width</link>"
-msgstr ""
+msgid "LOG10"
+msgstr "LOG10"
-#: 05040000.xhp
+#: 04060106.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3145171\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3155476\n"
+"323\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal Width\">Optimal Width</link>"
+msgid "<ahelp hid=\"HID_FUNC_LOG10\">Returns the base-10 logarithm of a number.</ahelp>"
msgstr ""
-#: 02140000.xhp
-msgctxt ""
-"02140000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Fill"
-msgstr "Mbush"
-
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"bm_id8473769\n"
+"04060106.xhp\n"
+"hd_id3155494\n"
+"324\n"
"help.text"
-msgid "<bookmark_value>filling;selection lists</bookmark_value> <bookmark_value>selection lists;filling cells</bookmark_value>"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"hd_id3153876\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3159294\n"
+"325\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140000.xhp\" name=\"Fill\">Fill</link>"
-msgstr ""
+msgid "LOG10(Number)"
+msgstr "Numri i faqes"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3156285\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3159308\n"
+"326\n"
"help.text"
-msgid "<ahelp hid=\".\">Automatically fills cells with content.</ahelp>"
+msgid "Returns the logarithm to base 10 of <emph>Number</emph>."
msgstr ""
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3147343\n"
-"9\n"
+"04060106.xhp\n"
+"hd_id3159328\n"
+"327\n"
"help.text"
-msgid "The $[officename] Calc context menus have <link href=\"text/scalc/01/02140000.xhp\" name=\"other options\">additional options</link> for filling the cells."
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"hd_id3149207\n"
-"7\n"
+"04060106.xhp\n"
+"par_id3157916\n"
+"328\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140500.xhp\" name=\"Sheet\">Sheet</link>"
+msgid "<item type=\"input\">=LOG10(5)</item> returns the base-10 logarithm of 5 (approximately 0.69897)."
msgstr ""
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"hd_id3155111\n"
-"8\n"
+"04060106.xhp\n"
+"bm_id3152518\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140600.xhp\" name=\"Rows\">Series</link>"
+msgid "<bookmark_value>CEILING function</bookmark_value><bookmark_value>rounding;up to multiples of significance</bookmark_value>"
msgstr ""
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3152994\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3152518\n"
+"332\n"
"help.text"
-msgid "<emph>Filling cells using context menus:</emph>"
-msgstr ""
+msgid "CEILING"
+msgstr "CEILING"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3145384\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3153422\n"
+"558\n"
"help.text"
-msgid "Call the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> when positioned in a cell and choose <emph>Selection List</emph>."
+msgid "<ahelp hid=\"HID_FUNC_OBERGRENZE\">Rounds a number up to the nearest multiple of Significance.</ahelp>"
msgstr ""
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3156450\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3153440\n"
+"334\n"
"help.text"
-msgid "<ahelp hid=\".uno:DataSelect\">A list box containing all text found in the current column is displayed.</ahelp> The text is sorted alphabetically and multiple entries are listed only once."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 02140000.xhp
+#: 04060106.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3148699\n"
-"6\n"
+"04060106.xhp\n"
+"par_id3153454\n"
+"335\n"
"help.text"
-msgid "Click one of the listed entries to copy it to the cell."
+msgid "CEILING(Number; Significance; Mode)"
msgstr ""
-#: 06030000.xhp
-msgctxt ""
-"06030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Detective"
-msgstr "Zbulues"
-
-#: 06030000.xhp
+#: 04060106.xhp
msgctxt ""
-"06030000.xhp\n"
-"bm_id3151245\n"
+"04060106.xhp\n"
+"par_id3153467\n"
+"336\n"
"help.text"
-msgid "<bookmark_value>cell links search</bookmark_value> <bookmark_value>searching; links in cells</bookmark_value> <bookmark_value>traces;precedents and dependents</bookmark_value> <bookmark_value>Formula Auditing,see Detective</bookmark_value> <bookmark_value>Detective</bookmark_value>"
-msgstr ""
+msgid "<emph>Number</emph> is the number that is to be rounded up."
+msgstr "Numri i vendeve teposhtë deri tek të cili një numër do të rrumbulaksohet."
-#: 06030000.xhp
+#: 04060106.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3151245\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3155000\n"
+"337\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Detective</link>"
+msgid "<emph>Significance</emph> is the number to whose multiple the value is to be rounded up."
msgstr ""
-#: 06030000.xhp
+#: 04060106.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3151211\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3155020\n"
+"559\n"
"help.text"
-msgid "This command activates the Spreadsheet Detective. With the Detective, you can trace the dependencies from the current formula cell to the cells in the spreadsheet."
+msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
msgstr ""
-#: 06030000.xhp
+#: 04060106.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3150447\n"
-"3\n"
+"04060106.xhp\n"
+"par_id3163792\n"
+"629\n"
"help.text"
-msgid "Once you have defined a trace, you can point with the mouse cursor to the trace. The mouse cursor will change its shape. Double-click the trace with this cursor to select the referenced cell at the end of the trace."
+msgid "If both parameters Number and Significance are negative and the Mode value is equal to zero or is not given, the results in $[officename] and Excel will differ after the import has been completed. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
msgstr ""
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3145697\n"
+"338\n"
"help.text"
-msgid "Text to Columns"
-msgstr "Shtyllat për tu përsëritur"
+msgid "Example"
+msgstr "Shembull"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"bm_id8004394\n"
+"04060106.xhp\n"
+"par_id3145710\n"
+"339\n"
"help.text"
-msgid "<bookmark_value>text to columns</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "<item type=\"input\">=CEILING(-11;-2)</item> returns -10"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"hd_id2300180\n"
+"04060106.xhp\n"
+"par_id3145725\n"
+"340\n"
"help.text"
-msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
-msgstr ""
+msgid "<item type=\"input\">=CEILING(-11;-2;0)</item> returns -10"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id655232\n"
+"04060106.xhp\n"
+"par_id3145740\n"
+"341\n"
"help.text"
-msgid "<variable id=\"text2columns\">Opens the Text to Columns dialog, where you enter settings to expand the contents of selected cells to multiple cells. </variable>"
-msgstr ""
+msgid "<item type=\"input\">=CEILING(-11;-2;1)</item> returns -12"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"hd_id9599597\n"
+"04060106.xhp\n"
+"bm_id3157762\n"
"help.text"
-msgid "To expand cell contents to multiple cells"
-msgstr ""
+msgid "<bookmark_value>PI function</bookmark_value>"
+msgstr "Kthen vlerën e numrit Pi."
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id2021546\n"
+"04060106.xhp\n"
+"hd_id3157762\n"
+"343\n"
"help.text"
-msgid "You can expand cells that contain comma separated values (CSV) into multiple cells in the same row."
-msgstr ""
+msgid "PI"
+msgstr "PI"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id2623981\n"
+"04060106.xhp\n"
+"par_id3157790\n"
+"344\n"
"help.text"
-msgid "For example, cell A1 contains the comma separated values <item type=\"literal\">1,2,3,4</item>, and cell A2 contains the text <item type=\"literal\">A,B,C,D</item>."
+msgid "<ahelp hid=\"HID_FUNC_PI\">Returns 3.14159265358979, the value of the mathematical constant PI to 14 decimal places.</ahelp>"
msgstr ""
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id7242042\n"
+"04060106.xhp\n"
+"hd_id3157809\n"
+"345\n"
"help.text"
-msgid "Select the cell or cells that you want to expand."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id6999420\n"
+"04060106.xhp\n"
+"par_id3157822\n"
+"346\n"
"help.text"
-msgid "Choose <emph>Data - Text to Columns</emph>."
-msgstr ""
+msgid "PI()"
+msgstr "pi"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id6334116\n"
+"04060106.xhp\n"
+"hd_id3157836\n"
+"347\n"
"help.text"
-msgid "You see the Text to Columns dialog."
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id9276406\n"
+"04060106.xhp\n"
+"par_id3152370\n"
+"348\n"
"help.text"
-msgid "Select the separator options. The preview shows how the current cell contents will be transformed into multiple cells."
+msgid "<item type=\"input\">=PI()</item> returns 3.14159265358979."
msgstr ""
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id8523819\n"
+"04060106.xhp\n"
+"bm_id3152418\n"
"help.text"
-msgid "You can select a fixed width and then click the ruler on the preview to set cell breakup positions."
-msgstr ""
+msgid "<bookmark_value>MULTINOMIAL function</bookmark_value>"
+msgstr "Veprimi përfundoi [Time]: [1]. Vlera kthyese [2]."
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id1517380\n"
+"04060106.xhp\n"
+"hd_id3152418\n"
+"635\n"
"help.text"
-msgid "You can select or enter separator characters to define the positions of breaking points. The separator characters are removed from the resulting cell contents."
+msgid "MULTINOMIAL"
msgstr ""
-#: text2columns.xhp
+#: 04060106.xhp
msgctxt ""
-"text2columns.xhp\n"
-"par_id7110812\n"
+"04060106.xhp\n"
+"par_id3152454\n"
+"636\n"
"help.text"
-msgid "In the example, you select the comma as a delimiter character. Cells A1 and A2 will be expanded to four columns each. A1 contains 1, B1 contains 2, and so on."
+msgid "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\"> Returns the factorial of the sum of the arguments divided by the product of the factorials of the arguments.</ahelp>"
msgstr ""
-#: 06031000.xhp
+#: 04060106.xhp
msgctxt ""
-"06031000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3155646\n"
+"637\n"
"help.text"
-msgid "AutoRefresh"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 06031000.xhp
+#: 04060106.xhp
msgctxt ""
-"06031000.xhp\n"
-"bm_id3154515\n"
+"04060106.xhp\n"
+"par_id3155660\n"
+"638\n"
"help.text"
-msgid "<bookmark_value>cells; autorefreshing traces</bookmark_value><bookmark_value>traces; autorefreshing</bookmark_value>"
-msgstr ""
+msgid "MULTINOMIAL(Number(s))"
+msgstr "Numri i faqes"
-#: 06031000.xhp
+#: 04060106.xhp
msgctxt ""
-"06031000.xhp\n"
-"hd_id3154515\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3155673\n"
+"639\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\">AutoRefresh</link>"
-msgstr ""
+msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
+msgstr "Siguron një numër të mbrendshëm për datën e dhënë."
-#: 06031000.xhp
+#: 04060106.xhp
msgctxt ""
-"06031000.xhp\n"
-"par_id3147264\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3155687\n"
+"640\n"
"help.text"
-msgid "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">Automatically refreshes all the traces in the sheet whenever you modify a formula.</ahelp>"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id3155701\n"
+"641\n"
"help.text"
-msgid "WORKDAY"
+msgid "<item type=\"input\">=MULTINOMIAL(F11:H11)</item> returns 1260, if F11 to H11 contain the values <item type=\"input\">2</item>, <item type=\"input\">3</item> and <item type=\"input\">4</item>. This corresponds to the formula =(2+3+4)! / (2!*3!*4!)"
msgstr ""
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"bm_id3149012\n"
+"04060106.xhp\n"
+"bm_id3155717\n"
"help.text"
-msgid "<bookmark_value>WORKDAY function</bookmark_value>"
+msgid "<bookmark_value>POWER function</bookmark_value>"
msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"hd_id3149012\n"
-"186\n"
+"04060106.xhp\n"
+"hd_id3155717\n"
+"350\n"
"help.text"
-msgid "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
-msgstr ""
+msgid "POWER"
+msgstr "POWER"
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3149893\n"
-"187\n"
+"04060106.xhp\n"
+"par_id3159495\n"
+"351\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> The result is a date number that can be formatted as a date. You then see the date of a day that is a certain number of <emph>workdays</emph> away from the <emph>start date</emph>.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_POTENZ\">Returns a number raised to another number.</ahelp>"
msgstr ""
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"hd_id3146944\n"
-"188\n"
+"04060106.xhp\n"
+"hd_id3159513\n"
+"352\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3154844\n"
-"189\n"
+"04060106.xhp\n"
+"par_id3159526\n"
+"353\n"
"help.text"
-msgid "WORKDAY(StartDate; Days; Holidays)"
+msgid "POWER(Base; Exponent)"
msgstr ""
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3147469\n"
-"190\n"
+"04060106.xhp\n"
+"par_id3159540\n"
+"354\n"
"help.text"
-msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
-msgstr ""
+msgid "Returns <emph>Base</emph> raised to the power of <emph>Exponent</emph>."
+msgstr "E kthen njw numwr kompleks i cili wshtw i ngritur nw fuqi integjere"
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3153038\n"
-"191\n"
+"04060106.xhp\n"
+"par_id5081637\n"
"help.text"
-msgid "<emph>Days</emph> is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date."
+msgid "The same result may be achieved by using the exponentiation operator ^:"
msgstr ""
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3150693\n"
-"192\n"
+"04060106.xhp\n"
+"par_id9759514\n"
"help.text"
-msgid "<emph>Holidays</emph> is a list of optional holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
+msgid "<item type=\"literal\">Base^Exponent</item>"
msgstr ""
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"hd_id3150141\n"
-"193\n"
+"04060106.xhp\n"
+"hd_id3159580\n"
+"356\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: func_workday.xhp
-msgctxt ""
-"func_workday.xhp\n"
-"par_id3152782\n"
-"194\n"
-"help.text"
-msgid "What date came 17 workdays after 1 December 2001? Enter the start date \"2001-12-01\" in C3 and the number of workdays in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
-msgstr ""
-
-#: func_workday.xhp
+#: 04060106.xhp
msgctxt ""
-"func_workday.xhp\n"
-"par_id3146142\n"
-"195\n"
+"04060106.xhp\n"
+"par_id3159594\n"
+"357\n"
"help.text"
-msgid "=WORKDAY(C3;D3;F3:J3) returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD."
+msgid "<item type=\"input\">=POWER(4;3)</item> returns 64, which is 4 to the power of 3."
msgstr ""
-#: 12020000.xhp
-msgctxt ""
-"12020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Select Database Range"
-msgstr "Selekto Intervalin e Databazës"
-
-#: 12020000.xhp
+#: 04060106.xhp
msgctxt ""
-"12020000.xhp\n"
-"bm_id3145068\n"
+"04060106.xhp\n"
+"par_id1614429\n"
"help.text"
-msgid "<bookmark_value>databases; selecting (Calc)</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "=4^3 also returns 4 to the power of 3."
+msgstr "E kthen shumwn e serive tw fuqishme"
-#: 12020000.xhp
+#: 04060106.xhp
msgctxt ""
-"12020000.xhp\n"
-"hd_id3145068\n"
-"1\n"
+"04060106.xhp\n"
+"bm_id3152651\n"
"help.text"
-msgid "Select Database Range"
-msgstr "Selekto Intervalin e Databazës"
+msgid "<bookmark_value>SERIESSUM function</bookmark_value>"
+msgstr "Mjeti. Vlera e mjetit të shprëndarjes Poisson."
-#: 12020000.xhp
+#: 04060106.xhp
msgctxt ""
-"12020000.xhp\n"
-"par_id3149655\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3152651\n"
+"642\n"
"help.text"
-msgid "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Selects a database range that you defined under <link href=\"text/scalc/01/12010000.xhp\" name=\"Data - Define Range\">Data - Define Range</link>.</ahelp></variable>"
+msgid "SERIESSUM"
msgstr ""
-#: 12020000.xhp
-msgctxt ""
-"12020000.xhp\n"
-"hd_id3153192\n"
-"3\n"
-"help.text"
-msgid "Ranges"
-msgstr "Intervalet"
-
-#: 12020000.xhp
+#: 04060106.xhp
msgctxt ""
-"12020000.xhp\n"
-"par_id3154684\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3152688\n"
+"643\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SELENTRY_LIST\">Lists the available database ranges. To select a database range, click its name, and then click <emph>OK</emph>.</ahelp>"
+msgid "<ahelp hid=\".\">Sums the first terms of a power series.</ahelp>"
msgstr ""
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Delete Cells"
-msgstr "Fshij Qelitë"
-
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"bm_id3153726\n"
+"04060106.xhp\n"
+"par_id3152708\n"
+"644\n"
"help.text"
-msgid "<bookmark_value>cells; deleting cells</bookmark_value><bookmark_value>columns; deleting</bookmark_value><bookmark_value>rows; deleting</bookmark_value><bookmark_value>spreadsheets; deleting cells</bookmark_value><bookmark_value>deleting;cells/rows/columns</bookmark_value>"
+msgid "SERIESSUM(x;n;m;coefficients) = coefficient_1*x^n + coefficient_2*x^(n+m) + coefficient_3*x^(n+2m) +...+ coefficient_i*x^(n+(i-1)m)"
msgstr ""
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"hd_id3153726\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3152724\n"
+"645\n"
"help.text"
-msgid "Delete Cells"
-msgstr "Fshij Qelitë"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3154490\n"
-"2\n"
+"04060106.xhp\n"
+"par_idN11BD9\n"
"help.text"
-msgid "<variable id=\"zellenloeschentext\"><ahelp hid=\".uno:DeleteCell\">Completely deletes selected cells, columns or rows. The cells below or to the right of the deleted cells will fill the space.</ahelp></variable> Note that the selected delete option is stored and reloaded when the dialog is next called."
+msgid "SERIESSUM(X; N; M; Coefficients)"
msgstr ""
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"hd_id3149121\n"
-"3\n"
-"help.text"
-msgid "Selection"
-msgstr "Selektimet"
-
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3150751\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3152737\n"
+"646\n"
"help.text"
-msgid "This area contains options for specifying how sheets are displayed after deleting cells."
+msgid "<emph>X</emph> is the input value for the power series."
msgstr ""
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"hd_id3155767\n"
-"5\n"
-"help.text"
-msgid "Shift cells up"
-msgstr "Ndërro qelitë ~lartë"
-
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3153714\n"
-"6\n"
+"04060106.xhp\n"
+"par_id3144344\n"
+"647\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSUP\">Fills the space produced by the deleted cells with the cells underneath it.</ahelp>"
+msgid "<emph>N</emph> is the initial power"
msgstr ""
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"hd_id3156382\n"
-"7\n"
-"help.text"
-msgid "Shift cells left"
-msgstr "Ndërro qelitë në të ~majtë"
-
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3154702\n"
-"8\n"
+"04060106.xhp\n"
+"par_id3144357\n"
+"648\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_DELCELL:BTN_CELLSLEFT\">Fills the resulting space by the cells to the right of the deleted cells.</ahelp>"
+msgid "<emph>M</emph> is the increment to increase N"
msgstr ""
-#: 02160000.xhp
-msgctxt ""
-"02160000.xhp\n"
-"hd_id3146918\n"
-"9\n"
-"help.text"
-msgid "Delete entire row(s)"
-msgstr "Fshiej tërë rreshtin(-at)"
-
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3148487\n"
-"10\n"
+"04060106.xhp\n"
+"par_id3144370\n"
+"649\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeleteRows\">After selecting at least one cell, deletes the entire row from the sheet.</ahelp>"
+msgid "<emph>Coefficients</emph> is a series of coefficients. For each coefficient the series sum is extended by one section."
msgstr ""
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"hd_id3155114\n"
-"11\n"
+"04060106.xhp\n"
+"bm_id3144386\n"
"help.text"
-msgid "Delete entire column(s)"
-msgstr "Fshiej tërë ~shtyllën(at)"
+msgid "<bookmark_value>PRODUCT function</bookmark_value><bookmark_value>numbers;multiplying</bookmark_value><bookmark_value>multiplying;numbers</bookmark_value>"
+msgstr ""
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3150086\n"
-"12\n"
+"04060106.xhp\n"
+"hd_id3144386\n"
+"361\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeleteColumns\">After selecting at least one cell, deletes the entire column from the sheet.</ahelp>"
-msgstr ""
+msgid "PRODUCT"
+msgstr "PRODHIM"
-#: 02160000.xhp
+#: 04060106.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3166424\n"
+"04060106.xhp\n"
+"par_id3144414\n"
+"362\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02150000.xhp\" name=\"Deleting Contents\">Deleting Contents</link>"
+msgid "<ahelp hid=\"HID_FUNC_PRODUKT\">Multiplies all the numbers given as arguments and returns the product.</ahelp>"
msgstr ""
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3144433\n"
+"363\n"
"help.text"
-msgid "Page Break Preview"
-msgstr "~Shikimi Paraprak i Thyerjes së Faqes"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"hd_id3151384\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3144446\n"
+"364\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"Page Break Preview\">Page Break Preview</link>"
+msgid "PRODUCT(Number1; Number2; ...; Number30)"
msgstr ""
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"par_id3150792\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3144460\n"
+"365\n"
"help.text"
-msgid "<ahelp hid=\".uno:PagebreakMode\">Display the page breaks and print ranges in the sheet. Choose <emph>View - Normal</emph> to switch this mode off.</ahelp>"
+msgid "<emph>Number1 to 30</emph> are up to 30 arguments whose product is to be calculated."
msgstr ""
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"par_id3153877\n"
-"13\n"
+"04060106.xhp\n"
+"par_id1589098\n"
"help.text"
-msgid "The context menu of the page break preview contains functions for editing page breaks, including the following options:"
+msgid "PRODUCT returns number1 * number2 * number3 * ..."
msgstr ""
-#: 03100000.xhp
-msgctxt ""
-"03100000.xhp\n"
-"hd_id3154731\n"
-"14\n"
-"help.text"
-msgid "Delete All Manual Breaks"
-msgstr "Fshiej të Gjitha Thyerjet Manuale"
-
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"par_id3149400\n"
-"15\n"
+"04060106.xhp\n"
+"hd_id3144480\n"
+"366\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeleteAllBreaks\">Deletes all manual breaks in the current sheet.</ahelp>"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"hd_id3155067\n"
-"18\n"
+"04060106.xhp\n"
+"par_id3144494\n"
+"367\n"
"help.text"
-msgid "Add Print Range"
-msgstr "Shto Intervalin e Printimit"
+msgid "<item type=\"input\">=PRODUCT(2;3;4)</item> returns 24."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 03100000.xhp
+#: 04060106.xhp
msgctxt ""
-"03100000.xhp\n"
-"par_id3155764\n"
-"19\n"
+"04060106.xhp\n"
+"bm_id3160340\n"
"help.text"
-msgid "Adds the selected cells to print ranges."
+msgid "<bookmark_value>SUMSQ function</bookmark_value><bookmark_value>square number additions</bookmark_value><bookmark_value>sums;of square numbers</bookmark_value>"
msgstr ""
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"tit\n"
-"help.text"
-msgid "TIME"
-msgstr "Koha"
-
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"bm_id3154073\n"
-"help.text"
-msgid "<bookmark_value>TIME function</bookmark_value>"
-msgstr "Veprimi përfundoi [Time]: [1]. Vlera kthyese [2]."
-
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"hd_id3154073\n"
-"149\n"
+"04060106.xhp\n"
+"hd_id3160340\n"
+"369\n"
"help.text"
-msgid "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>"
-msgstr ""
+msgid "SUMSQ"
+msgstr "SUMSQ"
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"par_id3145762\n"
-"150\n"
+"04060106.xhp\n"
+"par_id3160368\n"
+"370\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZEIT\">TIME returns the current time value from values for hours, minutes and seconds.</ahelp> This function can be used to convert a time based on these three elements to a decimal time value."
+msgid "<ahelp hid=\"HID_FUNC_QUADRATESUMME\">If you want to calculate the sum of the squares of numbers (totaling up of the squares of the arguments), enter these into the text fields.</ahelp>"
msgstr ""
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"hd_id3155550\n"
-"151\n"
+"04060106.xhp\n"
+"hd_id3160388\n"
+"371\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"par_id3154584\n"
-"152\n"
+"04060106.xhp\n"
+"par_id3160402\n"
+"372\n"
"help.text"
-msgid "TIME(Hour; Minute; Second)"
+msgid "SUMSQ(Number1; Number2; ...; Number30)"
msgstr ""
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"par_id3152904\n"
-"153\n"
+"04060106.xhp\n"
+"par_id3160415\n"
+"373\n"
"help.text"
-msgid "Use an integer to set the <emph>Hour</emph>."
+msgid "<emph>Number1 to 30</emph> are up to 30 arguments the sum of whose squares is to be calculated."
msgstr ""
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"par_id3151346\n"
-"154\n"
+"04060106.xhp\n"
+"hd_id3160436\n"
+"374\n"
"help.text"
-msgid "Use an integer to set the <emph>Minute</emph>."
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: func_time.xhp
+#: 04060106.xhp
msgctxt ""
-"func_time.xhp\n"
-"par_id3151366\n"
-"155\n"
+"04060106.xhp\n"
+"par_id3160449\n"
+"375\n"
"help.text"
-msgid "Use an integer to set the <emph>Second</emph>."
+msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3</item> and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 29 is returned as the result."
msgstr ""
-#: func_time.xhp
-msgctxt ""
-"func_time.xhp\n"
-"hd_id3145577\n"
-"156\n"
-"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
-
-#: func_time.xhp
-#, fuzzy
-msgctxt ""
-"func_time.xhp\n"
-"par_id3156076\n"
-"157\n"
-"help.text"
-msgid "<item type=\"input\">=TIME(0;0;0)</item> returns 00:00:00"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: func_time.xhp
-#, fuzzy
-msgctxt ""
-"func_time.xhp\n"
-"par_id3156090\n"
-"158\n"
-"help.text"
-msgid "<item type=\"input\">=TIME(4;20;4)</item> returns 04:20:04"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: func_days360.xhp
-msgctxt ""
-"func_days360.xhp\n"
-"tit\n"
-"help.text"
-msgid "DAYS360"
-msgstr "DITËT360"
-
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"bm_id3148555\n"
+"04060106.xhp\n"
+"bm_id3158247\n"
"help.text"
-msgid "<bookmark_value>DAYS360 function</bookmark_value>"
+msgid "<bookmark_value>MOD function</bookmark_value><bookmark_value>remainders of divisions</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"hd_id3148555\n"
-"124\n"
+"04060106.xhp\n"
+"hd_id3158247\n"
+"387\n"
"help.text"
-msgid "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">DAYS360</link></variable>"
-msgstr ""
+msgid "MOD"
+msgstr "MOD"
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"par_id3156032\n"
-"125\n"
+"04060106.xhp\n"
+"par_id3158276\n"
+"388\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TAGE360\">Returns the difference between two dates based on the 360 day year used in interest calculations.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_REST\">Returns the remainder when one integer is divided by another.</ahelp>"
msgstr ""
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"hd_id3155347\n"
-"126\n"
+"04060106.xhp\n"
+"hd_id3158294\n"
+"389\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"par_id3155313\n"
-"127\n"
+"04060106.xhp\n"
+"par_id3158308\n"
+"390\n"
"help.text"
-msgid "DAYS360(\"Date1\"; \"Date2\"; Type)"
-msgstr ""
+msgid "MOD(Dividend; Divisor)"
+msgstr "Përpjestuesi më i madh"
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"par_id3145263\n"
-"128\n"
+"04060106.xhp\n"
+"par_id3158321\n"
+"391\n"
"help.text"
-msgid "If <emph>Date2</emph> is earlier than <emph>Date1</emph>, the function will return a negative number."
+msgid "For integer arguments this function returns Dividend modulo Divisor, that is the remainder when <emph>Dividend</emph> is divided by <emph>Divisor</emph>."
msgstr ""
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"par_id3151064\n"
-"129\n"
+"04060106.xhp\n"
+"par_id3158341\n"
+"392\n"
"help.text"
-msgid "The optional argument <emph>Type</emph> determines the type of difference calculation. If Type = 0 or if the argument is missing, the US method (NASD, National Association of Securities Dealers) is used. If Type <> 0, the European method is used."
+msgid "This function is implemented as <item type=\"literal\">Dividend - Divisor * INT(Dividend/Divisor)</item> , and this formula gives the result if the arguments are not integer."
msgstr ""
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"hd_id3148641\n"
-"130\n"
+"04060106.xhp\n"
+"hd_id3158361\n"
+"393\n"
"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
+msgid "Example"
+msgstr "Shembull"
-#: func_days360.xhp
+#: 04060106.xhp
msgctxt ""
-"func_days360.xhp\n"
-"par_id3156348\n"
-"132\n"
+"04060106.xhp\n"
+"par_id3158374\n"
+"394\n"
"help.text"
-msgid "=DAYS360(\"2000-01-01\";NOW()) returns the number of interest days from January 1, 2000 until today."
+msgid "<item type=\"input\">=MOD(22;3)</item> returns 1, the remainder when 22 is divided by 3."
msgstr ""
-#: 12030000.xhp
+#: 04060106.xhp
msgctxt ""
-"12030000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id1278420\n"
"help.text"
-msgid "Sort"
-msgstr "Rendit"
+msgid "<item type=\"input\">=MOD(11.25;2.5)</item> returns 1.25."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 12030000.xhp
+#: 04060106.xhp
msgctxt ""
-"12030000.xhp\n"
-"hd_id3150275\n"
-"1\n"
+"04060106.xhp\n"
+"bm_id3144592\n"
"help.text"
-msgid "Sort"
-msgstr "Rendit"
+msgid "<bookmark_value>QUOTIENT function</bookmark_value><bookmark_value>divisions</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 12030000.xhp
+#: 04060106.xhp
msgctxt ""
-"12030000.xhp\n"
-"par_id3155922\n"
-"2\n"
+"04060106.xhp\n"
+"hd_id3144592\n"
+"652\n"
"help.text"
-msgid "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">Sorts the selected rows according to the conditions that you specify.</ahelp></variable> $[officename] automatically recognizes and selects database ranges."
+msgid "QUOTIENT"
msgstr ""
-#: 12030000.xhp
+#: 04060106.xhp
msgctxt ""
-"12030000.xhp\n"
-"par_id3147428\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3144627\n"
+"653\n"
"help.text"
-msgid "You cannot sort data if the <link href=\"text/shared/01/02230000.xhp\" name=\"Record changes\">Record changes</link> options is enabled."
+msgid "<ahelp hid=\"HID_AAI_FUNC_QUOTIENT\">Returns the integer part of a division operation.</ahelp>"
msgstr ""
-#: 05080200.xhp
+#: 04060106.xhp
msgctxt ""
-"05080200.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id3144646\n"
+"654\n"
"help.text"
-msgid "Remove"
-msgstr "Largo"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 05080200.xhp
+#: 04060106.xhp
msgctxt ""
-"05080200.xhp\n"
-"hd_id3153562\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3144659\n"
+"655\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05080200.xhp\" name=\"Remove\">Remove</link>"
+msgid "QUOTIENT(Numerator; Denominator)"
msgstr ""
-#: 05080200.xhp
+#: 04060106.xhp
msgctxt ""
-"05080200.xhp\n"
-"par_id3148550\n"
-"2\n"
+"04060106.xhp\n"
+"par_id9038972\n"
"help.text"
-msgid "<ahelp hid=\".uno:DeletePrintArea\">Removes the defined print area.</ahelp>"
+msgid "Returns the integer part of <emph>Numerator</emph> divided by <emph>Denominator</emph>."
msgstr ""
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id7985168\n"
"help.text"
-msgid "Fill Series"
-msgstr "Mbushje e serive"
+msgid "QUOTIENT is equivalent to <item type=\"literal\">INT(numerator/denominator)</item>, except that it may report errors with different error codes."
+msgstr ""
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3148664\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3144674\n"
+"656\n"
"help.text"
-msgid "Fill Series"
-msgstr "Mbushje e serive"
+msgid "Example"
+msgstr "Shembull"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3148797\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3144687\n"
+"657\n"
"help.text"
-msgid "<variable id=\"reihenfuellentext\"><ahelp hid=\".uno:FillSeries\">Automatically generate series with the options in this dialog. Determine direction, increment, time unit and series type.</ahelp></variable>"
+msgid "<item type=\"input\">=QUOTIENT(11;3)</item> returns 3. The remainder of 2 is lost."
msgstr ""
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3146976\n"
-"41\n"
+"04060106.xhp\n"
+"bm_id3144702\n"
"help.text"
-msgid "Before filling a series, first select the cell range."
-msgstr ""
+msgid "<bookmark_value>RADIANS function</bookmark_value><bookmark_value>converting;degrees, into radians</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3145748\n"
-"3\n"
+"04060106.xhp\n"
+"hd_id3144702\n"
+"377\n"
"help.text"
-msgid "To automatically continue a series using the assumed completion rules, choose the <emph>AutoFill</emph> option after opening the <emph>Fill Series</emph> dialog."
-msgstr ""
+msgid "RADIANS"
+msgstr "RADIAN"
-#: 02140600.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3147435\n"
-"4\n"
+"04060106.xhp\n"
+"par_id3158025\n"
+"378\n"
"help.text"
-msgid "Direction"
-msgstr "Drejtim"
+msgid "<ahelp hid=\"HID_FUNC_RAD\">Converts degrees to radians.</ahelp>"
+msgstr ""
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3154729\n"
-"5\n"
+"04060106.xhp\n"
+"hd_id3158042\n"
+"379\n"
"help.text"
-msgid "Determines the direction of series creation."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3145253\n"
-"6\n"
+"04060106.xhp\n"
+"par_id3158055\n"
+"380\n"
"help.text"
-msgid "Down"
-msgstr "Down"
+msgid "RADIANS(Number)"
+msgstr "Numri i faqes"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3155418\n"
-"7\n"
+"04060106.xhp\n"
+"par_id3158069\n"
+"381\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_BOTTOM\">Creates a downward series in the selected cell range for the column using the defined increment to the end value.</ahelp>"
+msgid "<emph>Number</emph> is the angle in degrees to be converted to radians."
msgstr ""
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3155738\n"
-"8\n"
+"04060106.xhp\n"
+"hd_id876186\n"
"help.text"
-msgid "Right"
-msgstr "Djathtas"
+msgid "Example"
+msgstr "Shembull"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3149402\n"
-"9\n"
+"04060106.xhp\n"
+"par_id3939634\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_RIGHT\">Creates a series running from left to right within the selected cell range using the defined increment to the end value.</ahelp>"
+msgid "<item type=\"input\">=RADIANS(90)</item> returns 1.5707963267949, which is PI/2 to Calc's accuracy."
msgstr ""
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3146972\n"
-"10\n"
+"04060106.xhp\n"
+"bm_id3158121\n"
"help.text"
-msgid "Up"
-msgstr "Up"
+msgid "<bookmark_value>ROUND function</bookmark_value>"
+msgstr "I kthen vlerat absolute tw njw numri kompleks"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3153711\n"
-"11\n"
+"04060106.xhp\n"
+"hd_id3158121\n"
+"398\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_TOP\">Creates an upward series in the cell range of the column using the defined increment to the end value.</ahelp>"
-msgstr ""
+msgid "ROUND"
+msgstr "ROUND"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3153764\n"
-"12\n"
+"04060106.xhp\n"
+"par_id3158150\n"
+"399\n"
"help.text"
-msgid "Left"
-msgstr "Majtas"
+msgid "<ahelp hid=\"HID_FUNC_RUNDEN\">Rounds a number to a certain number of decimal places.</ahelp>"
+msgstr ""
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3156382\n"
-"13\n"
+"04060106.xhp\n"
+"hd_id3158169\n"
+"400\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_LEFT\">Creates a series running from right to left in the selected cell range using the defined increment to the end value.</ahelp>"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3147344\n"
-"14\n"
+"04060106.xhp\n"
+"par_id3158182\n"
+"401\n"
"help.text"
-msgid "Series Type"
-msgstr "Llojet e serive"
+msgid "ROUND(Number; Count)"
+msgstr "Numri qw tw rrumbullaksohet"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3149257\n"
-"15\n"
+"04060106.xhp\n"
+"par_id3158196\n"
+"402\n"
"help.text"
-msgid "Defines the series type. Choose between <emph>Linear, Growth, Date </emph>and <emph>AutoFill</emph>."
+msgid "Returns <emph>Number</emph> rounded to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds to the nearest integer. If Count is negative, the function rounds to the nearest 10, 100, 1000, etc."
msgstr ""
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3148488\n"
-"16\n"
+"04060106.xhp\n"
+"par_id599688\n"
"help.text"
-msgid "Linear"
-msgstr "Zbrapsje lineare"
+msgid "This function rounds to the nearest number. See ROUNDDOWN and ROUNDUP for alternatives."
+msgstr ""
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3159238\n"
-"17\n"
+"04060106.xhp\n"
+"hd_id3145863\n"
+"404\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_ARITHMETIC\">Creates a linear number series using the defined increment and end value.</ahelp>"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3149210\n"
-"18\n"
+"04060106.xhp\n"
+"par_id3145876\n"
+"405\n"
"help.text"
-msgid "Growth"
-msgstr "GROWTH"
+msgid "<item type=\"input\">=ROUND(2.348;2)</item> returns 2.35"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3150364\n"
-"19\n"
+"04060106.xhp\n"
+"par_id3145899\n"
+"406\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_GEOMETRIC\">Creates a growth series using the defined increment and end value.</ahelp>"
+msgid "<item type=\"input\">=ROUND(-32.4834;3)</item> returns -32.483. Change the cell format to see all decimals."
msgstr ""
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3149528\n"
-"20\n"
+"04060106.xhp\n"
+"par_id1371501\n"
"help.text"
-msgid "Date"
-msgstr "Data"
+msgid "<item type=\"input\">=ROUND(2.348;0)</item> returns 2."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3150887\n"
-"21\n"
+"04060106.xhp\n"
+"par_id4661702\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DATE\">Creates a date series using the defined increment and end date.</ahelp>"
-msgstr ""
+msgid "<item type=\"input\">=ROUND(2.5)</item> returns 3."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3150202\n"
-"22\n"
+"04060106.xhp\n"
+"par_id7868892\n"
"help.text"
-msgid "AutoFill"
-msgstr "AutoPërmbushje"
+msgid "<item type=\"input\">=ROUND(987.65;-2)</item> returns 1000."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3156288\n"
-"23\n"
+"04060106.xhp\n"
+"bm_id3145991\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_AUTOFILL\">Forms a series directly in the sheet.</ahelp> The AutoFill function takes account of customized lists. For example, by entering <emph>January</emph> in the first cell, the series is completed using the list defined under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</emph>."
-msgstr ""
+msgid "<bookmark_value>ROUNDDOWN function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3155811\n"
+"04060106.xhp\n"
+"hd_id3145991\n"
"24\n"
"help.text"
-msgid "AutoFill tries to complete a value series by using a defined pattern. The series 1,3,5 is automatically completed with 7,9,11,13, and so on. Date and time series are completed accordingly; for example, after 01.01.99 and 15.01.99, an interval of 14 days is used."
-msgstr ""
+msgid "ROUNDDOWN"
+msgstr "ROUNDDOWN"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3148700\n"
+"04060106.xhp\n"
+"par_id3146020\n"
"25\n"
"help.text"
-msgid "Unit of Time"
-msgstr "Njësia kohore"
+msgid "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Rounds a number down, toward zero, to a certain precision.</ahelp>"
+msgstr ""
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3153308\n"
+"04060106.xhp\n"
+"hd_id3146037\n"
"26\n"
"help.text"
-msgid "In this area you can specify the desired unit of time. This area is only active if the <emph>Date</emph> option has been chosen in the <emph>Series type</emph> area."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3148868\n"
+"04060106.xhp\n"
+"par_id3146051\n"
"27\n"
"help.text"
-msgid "Day"
-msgstr "Dita"
+msgid "ROUNDDOWN(Number; Count)"
+msgstr "Mos numëro rreshtat"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3148605\n"
+"04060106.xhp\n"
+"par_id3146064\n"
"28\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY\">Use the <emph>Date</emph> series type and this option to create a series using seven days.</ahelp>"
+msgid "Returns <emph>Number</emph> rounded down (towards zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds down to an integer. If Count is negative, the function rounds down to the next 10, 100, 1000, etc."
msgstr ""
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3144771\n"
-"29\n"
+"04060106.xhp\n"
+"par_id2188787\n"
"help.text"
-msgid "Weekday"
-msgstr "WEEKDAY"
+msgid "This function rounds towards zero. See ROUNDUP and ROUND for alternatives."
+msgstr ""
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3150108\n"
+"04060106.xhp\n"
+"hd_id3163164\n"
"30\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_DAY_OF_WEEK\">Use the <emph>Date</emph> series type and this option to create a series of five day sets.</ahelp>"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3154957\n"
+"04060106.xhp\n"
+"par_id3163178\n"
"31\n"
"help.text"
-msgid "Month"
-msgstr "Muaj"
+msgid "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> returns 1.23."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3149126\n"
-"32\n"
+"04060106.xhp\n"
+"par_id5833307\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_MONTH\">Use the <emph>Date</emph> series type and this option to form a series from the names or abbreviations of the months.</ahelp>"
-msgstr ""
+msgid "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> returns 45."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3152870\n"
-"33\n"
+"04060106.xhp\n"
+"par_id7726676\n"
"help.text"
-msgid "Year"
-msgstr "Viti"
+msgid "<item type=\"input\">=ROUNDDOWN(-45.67)</item> returns -45."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3151300\n"
-"34\n"
+"04060106.xhp\n"
+"par_id3729361\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_FILLSERIES:BTN_YEAR\">Use the <emph>Date</emph> series type and this option to create a series of years.</ahelp>"
-msgstr ""
+msgid "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> returns 900."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3154762\n"
-"35\n"
+"04060106.xhp\n"
+"bm_id3163268\n"
"help.text"
-msgid "Start Value"
-msgstr "~Vlera fillestare"
+msgid "<bookmark_value>ROUNDUP function</bookmark_value>"
+msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3149381\n"
-"36\n"
+"04060106.xhp\n"
+"hd_id3163268\n"
+"140\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_START_VALUES\">Determines the start value for the series.</ahelp> Use numbers, dates or times."
-msgstr ""
+msgid "ROUNDUP"
+msgstr "ROUNDUP"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3153013\n"
-"37\n"
+"04060106.xhp\n"
+"par_id3163297\n"
+"141\n"
"help.text"
-msgid "End Value"
-msgstr "Vlerë ~përfundimtare"
+msgid "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Rounds a number up, away from zero, to a certain precision.</ahelp>"
+msgstr ""
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3153487\n"
-"38\n"
+"04060106.xhp\n"
+"hd_id3163315\n"
+"142\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_END_VALUES\">Determines the end value for the series.</ahelp> Use numbers, dates or times."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"hd_id3149312\n"
-"39\n"
+"04060106.xhp\n"
+"par_id3163328\n"
+"143\n"
"help.text"
-msgid "Increment"
-msgstr "Rritje linje"
+msgid "ROUNDUP(Number; Count)"
+msgstr "Mos numëro rreshtat"
-#: 02140600.xhp
+#: 04060106.xhp
msgctxt ""
-"02140600.xhp\n"
-"par_id3154739\n"
-"40\n"
+"04060106.xhp\n"
+"par_id3163342\n"
+"144\n"
"help.text"
-msgid "The term \"increment\" denotes the amount by which a given value increases.<ahelp hid=\"SC:EDIT:RID_SCDLG_FILLSERIES:ED_INCREMENT\"> Determines the value by which the series of the selected type increases by each step.</ahelp> Entries can only be made if the linear, growth or date series types have been selected."
+msgid "Returns <emph>Number</emph> rounded up (away from zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds up to an integer. If Count is negative, the function rounds up to the next 10, 100, 1000, etc."
msgstr ""
-#: 12120000.xhp
+#: 04060106.xhp
msgctxt ""
-"12120000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id9573961\n"
"help.text"
-msgid "Validity"
-msgstr "Vlershmëria"
+msgid "This function rounds away from zero. See ROUNDDOWN and ROUND for alternatives."
+msgstr ""
-#: 12120000.xhp
+#: 04060106.xhp
msgctxt ""
-"12120000.xhp\n"
-"hd_id3156347\n"
-"1\n"
+"04060106.xhp\n"
+"hd_id3163381\n"
+"146\n"
"help.text"
-msgid "Validity"
-msgstr "Vlershmëria"
+msgid "Example"
+msgstr "Shembull"
-#: 12120000.xhp
+#: 04060106.xhp
msgctxt ""
-"12120000.xhp\n"
-"par_id3153252\n"
-"2\n"
+"04060106.xhp\n"
+"par_id3144786\n"
+"147\n"
"help.text"
-msgid "<variable id=\"gueltigkeit\"><ahelp hid=\".uno:Validation\">Defines what data is valid for a selected cell or cell range.</ahelp></variable>"
-msgstr ""
+msgid "<item type=\"input\">=ROUNDUP(1.1111;2)</item> returns 1.12."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 12120000.xhp
+#: 04060106.xhp
msgctxt ""
-"12120000.xhp\n"
-"par_idN105D1\n"
+"04060106.xhp\n"
+"par_id7700430\n"
"help.text"
-msgid "You can also insert a list box from the Controls toolbar and link the list box to a cell. This way you can specify the valid values on the <link href=\"text/shared/02/01170102.xhp\">Data</link> page of the list box properties window."
-msgstr ""
+msgid "<item type=\"input\">=ROUNDUP(1.2345;1)</item> returns 1.3."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 03090000.xhp
+#: 04060106.xhp
msgctxt ""
-"03090000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"par_id1180455\n"
"help.text"
-msgid "Formula Bar"
-msgstr "Shiriti i formulës"
+msgid "<item type=\"input\">=ROUNDUP(45.67;0)</item> returns 46."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 03090000.xhp
+#: 04060106.xhp
msgctxt ""
-"03090000.xhp\n"
-"bm_id3147264\n"
+"04060106.xhp\n"
+"par_id3405560\n"
"help.text"
-msgid "<bookmark_value>formula bar;spreadsheets</bookmark_value><bookmark_value>spreadsheets; formula bar</bookmark_value>"
-msgstr ""
+msgid "<item type=\"input\">=ROUNDUP(-45.67)</item> returns -46."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 03090000.xhp
+#: 04060106.xhp
msgctxt ""
-"03090000.xhp\n"
-"hd_id3147264\n"
-"1\n"
+"04060106.xhp\n"
+"par_id3409527\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03090000.xhp\" name=\"Formula Bar\">Formula Bar</link>"
-msgstr ""
+msgid "<item type=\"input\">=ROUNDUP(987.65;-2)</item> returns 1000."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 03090000.xhp
+#: 04060106.xhp
msgctxt ""
-"03090000.xhp\n"
-"par_id3156423\n"
-"2\n"
+"04060106.xhp\n"
+"bm_id5256537\n"
"help.text"
-msgid "<ahelp hid=\".uno:InputLineVisible\">Shows or hides the Formula Bar, which is used for entering and editing formulas.</ahelp> The Formula Bar is the most important tool when working with spreadsheets."
-msgstr ""
+msgid "<bookmark_value>SEC function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
-#: 03090000.xhp
+#: 04060106.xhp
msgctxt ""
-"03090000.xhp\n"
-"par_id3154686\n"
-"4\n"
+"04060106.xhp\n"
+"hd_id5187204\n"
+"149\n"
"help.text"
-msgid "To hide the Formula Bar, unmark the menu item."
+msgid "SEC"
msgstr ""
-#: 03090000.xhp
+#: 04060106.xhp
msgctxt ""
-"03090000.xhp\n"
-"par_id3145787\n"
-"3\n"
+"04060106.xhp\n"
+"par_id9954962\n"
+"150\n"
"help.text"
-msgid "If the Formula Bar is hidden, you can still edit cells by activating the edit mode with F2. After editing cells, accept the changes by pressing Enter, or discard entries by pressing Esc. Esc is also used to exit the edit mode."
+msgid "<ahelp hid=\"HID_FUNC_SECANT\">Returns the secant of the given angle (in radians). The secant of an angle is equivalent to 1 divided by the cosine of that angle</ahelp>"
msgstr ""
-#: 03080000.xhp
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"tit\n"
+"04060106.xhp\n"
+"hd_id422243\n"
+"151\n"
"help.text"
-msgid "Value Highlighting"
-msgstr "~Theksimi i Vlerës"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 03080000.xhp
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"bm_id3151384\n"
+"04060106.xhp\n"
+"par_id2055913\n"
+"152\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; value highlighting</bookmark_value><bookmark_value>values;highlighting</bookmark_value><bookmark_value>highlighting; values in sheets</bookmark_value><bookmark_value>colors;values</bookmark_value>"
-msgstr ""
+msgid "SEC(Number)"
+msgstr "Numri i faqes"
-#: 03080000.xhp
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"hd_id3151384\n"
+"04060106.xhp\n"
+"par_id9568170\n"
+"153\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03080000.xhp\" name=\"Value Highlighting\">Value Highlighting</link>"
+msgid "Returns the (trigonometric) secant of <emph>Number</emph>, the angle in radians."
msgstr ""
-#: 03080000.xhp
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"par_id3154366\n"
+"04060106.xhp\n"
+"par_id9047465\n"
"help.text"
-msgid "<ahelp hid=\".uno:ViewValueHighlighting\">Displays cell contents in different colors, depending on type.</ahelp>"
+msgid "To return the secant of an angle in degrees, use the RADIANS function."
msgstr ""
-#: 03080000.xhp
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"par_id3125863\n"
+"04060106.xhp\n"
+"hd_id9878918\n"
+"154\n"
"help.text"
-msgid "To remove the highlighting, unmark the menu entry."
-msgstr ""
+msgid "Examples"
+msgstr "Shembuj:"
-#: 03080000.xhp
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"par_id3145785\n"
+"04060106.xhp\n"
+"par_id6935513\n"
+"155\n"
"help.text"
-msgid "Text cells are formatted in black, formulas in green, and number cells in blue, no matter how their display is formatted."
+msgid "<item type=\"input\">=SEC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the cosine of PI/4 radians."
msgstr ""
-#: 03080000.xhp
+#: 04060106.xhp
msgctxt ""
-"03080000.xhp\n"
-"par_id3153188\n"
+"04060106.xhp\n"
+"par_id3954287\n"
+"156\n"
"help.text"
-msgid "If this function is active, colors that you define in the document will not be displayed. When you deactivate the function, the user-defined colors are displayed again."
+msgid "<item type=\"input\">=SEC(RADIANS(60))</item> returns 2, the secant of 60 degrees."
msgstr ""
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"tit\n"
-"help.text"
-msgid "Financial Functions Part Three"
-msgstr "Funksionet statistikore"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3146780\n"
-"1\n"
-"help.text"
-msgid "Financial Functions Part Three"
-msgstr "Funksionet statistikore"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3145112\n"
+"04060106.xhp\n"
+"bm_id840005\n"
"help.text"
-msgid "<bookmark_value>ODDFPRICE function</bookmark_value><bookmark_value>prices;securities with irregular first interest date</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>SECH function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3145112\n"
-"71\n"
+"04060106.xhp\n"
+"hd_id8661934\n"
+"159\n"
"help.text"
-msgid "ODDFPRICE"
+msgid "SECH"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147250\n"
-"72\n"
+"04060106.xhp\n"
+"par_id408174\n"
+"160\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFPRICE\">Calculates the price per 100 currency units par value of a security, if the first interest date falls irregularly.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_SECANTHYP\">Returns the hyperbolic secant of a number.</ahelp>"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153074\n"
-"73\n"
+"04060106.xhp\n"
+"hd_id875988\n"
+"161\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3146098\n"
-"74\n"
-"help.text"
-msgid "ODDFPRICE(Settlement; Maturity; Issue; FirstCoupon; Rate; Yield; Redemption; Frequency; Basis)"
-msgstr ""
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153337\n"
-"75\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149051\n"
-"76\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147297\n"
-"77\n"
-"help.text"
-msgid "<emph>Issue</emph> is the date of issue of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150393\n"
-"78\n"
+"04060106.xhp\n"
+"par_id4985391\n"
+"162\n"
"help.text"
-msgid "<emph>FirstCoupon</emph> is the first interest date of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+msgid "SECH(Number)"
+msgstr "Numri i faqes"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147402\n"
-"79\n"
+"04060106.xhp\n"
+"par_id1952124\n"
+"163\n"
"help.text"
-msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "E kthen tarifwn efektive vjetore tw interesit"
+msgid "Returns the hyperbolic secant of <emph>Number</emph>."
+msgstr "Kthen sinusin hiperbolik invers të një numri."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151387\n"
-"80\n"
+"04060106.xhp\n"
+"hd_id9838764\n"
+"164\n"
"help.text"
-msgid "<emph>Yield</emph> is the annual yield of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+msgid "Example"
+msgstr "Shembull"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153023\n"
-"81\n"
+"04060106.xhp\n"
+"par_id1187764\n"
+"165\n"
"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgid "<item type=\"input\">=SECH(0)</item> returns 1, the hyperbolic secant of 0."
msgstr ""
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150539\n"
-"82\n"
-"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3157871\n"
+"04060106.xhp\n"
+"bm_id3144877\n"
"help.text"
-msgid "<bookmark_value>ODDFYIELD function</bookmark_value>"
-msgstr "Definon llojin e të dhënës së një vlere."
+msgid "<bookmark_value>SIN function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3157871\n"
-"87\n"
+"04060106.xhp\n"
+"hd_id3144877\n"
+"408\n"
"help.text"
-msgid "ODDFYIELD"
-msgstr ""
+msgid "SIN"
+msgstr "SIN"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147414\n"
-"88\n"
+"04060106.xhp\n"
+"par_id3144906\n"
+"409\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFYIELD\">Calculates the yield of a security if the first interest date falls irregularly.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_SIN\">Returns the sine of the given angle (in radians).</ahelp>"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3150651\n"
-"89\n"
+"04060106.xhp\n"
+"hd_id3144923\n"
+"410\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3152982\n"
-"90\n"
-"help.text"
-msgid "ODDFYIELD(Settlement; Maturity; Issue; FirstCoupon; Rate; Price; Redemption; Frequency; Basis)"
-msgstr ""
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3157906\n"
-"91\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150026\n"
-"92\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149012\n"
-"93\n"
+"04060106.xhp\n"
+"par_id3144937\n"
+"411\n"
"help.text"
-msgid "<emph>Issue</emph> is the date of issue of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+msgid "SIN(Number)"
+msgstr "Numri i faqes"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148725\n"
-"94\n"
+"04060106.xhp\n"
+"par_id3144950\n"
+"412\n"
"help.text"
-msgid "<emph>FirstCoupon</emph> is the first interest period of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+msgid "Returns the (trigonometric) sine of <emph>Number</emph>, the angle in radians."
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150465\n"
-"95\n"
+"04060106.xhp\n"
+"par_id8079470\n"
"help.text"
-msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "E kthen tarifwn efektive vjetore tw interesit"
+msgid "To return the sine of an angle in degrees, use the RADIANS function."
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146940\n"
-"96\n"
+"04060106.xhp\n"
+"hd_id3144969\n"
+"413\n"
"help.text"
-msgid "<emph>Price</emph> is the price of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+msgid "Example"
+msgstr "Shembull"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149893\n"
-"97\n"
+"04060106.xhp\n"
+"par_id3144983\n"
+"414\n"
"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgid "<item type=\"input\">=SIN(PI()/2)</item> returns 1, the sine of PI/2 radians."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148888\n"
-"98\n"
+"04060106.xhp\n"
+"par_id3916440\n"
"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+msgid "<item type=\"input\">=SIN(RADIANS(30))</item> returns 0.5, the sine of 30 degrees."
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3153933\n"
+"04060106.xhp\n"
+"bm_id3163397\n"
"help.text"
-msgid "<bookmark_value>ODDLPRICE function</bookmark_value>"
-msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+msgid "<bookmark_value>SINH function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153933\n"
-"103\n"
+"04060106.xhp\n"
+"hd_id3163397\n"
+"418\n"
"help.text"
-msgid "ODDLPRICE"
-msgstr ""
+msgid "SINH"
+msgstr "SINH"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145145\n"
-"104\n"
+"04060106.xhp\n"
+"par_id3163426\n"
+"419\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLPRICE\">Calculates the price per 100 currency units par value of a security, if the last interest date falls irregularly.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_SINHYP\">Returns the hyperbolic sine of a number.</ahelp>"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3152784\n"
-"105\n"
+"04060106.xhp\n"
+"hd_id3163444\n"
+"420\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155262\n"
-"106\n"
-"help.text"
-msgid "ODDLPRICE(Settlement; Maturity; LastInterest; Rate; Yield; Redemption; Frequency; Basis)"
-msgstr ""
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149689\n"
-"107\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148753\n"
-"108\n"
-"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150861\n"
-"109\n"
-"help.text"
-msgid "<emph>LastInterest</emph> is the last interest date of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155831\n"
-"110\n"
-"help.text"
-msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "E kthen tarifwn efektive vjetore tw interesit"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153328\n"
-"111\n"
-"help.text"
-msgid "<emph>Yield</emph> is the annual yield of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149186\n"
-"112\n"
+"04060106.xhp\n"
+"par_id3163457\n"
+"421\n"
"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
-msgstr ""
+msgid "SINH(Number)"
+msgstr "Numri i faqes"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149726\n"
-"113\n"
+"04060106.xhp\n"
+"par_id3163471\n"
+"422\n"
"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+msgid "Returns the hyperbolic sine of <emph>Number</emph>."
+msgstr "Kthen sinusin hiperbolik invers të një numri."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153111\n"
-"114\n"
+"04060106.xhp\n"
+"hd_id3163491\n"
+"423\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3152999\n"
-"115\n"
-"help.text"
-msgid "Settlement date: February 7 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, yield: 4.05 per cent, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
-msgstr ""
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148567\n"
-"116\n"
-"help.text"
-msgid "The price per 100 currency units per value of a security, which has an irregular last interest date, is calculated as follows:"
-msgstr ""
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150332\n"
-"117\n"
+"04060106.xhp\n"
+"par_id3163504\n"
+"424\n"
"help.text"
-msgid "=ODDLPRICE(\"1999-02-07\";\"1999-06-15\";\"1998-10-15\"; 0.0375; 0.0405;100;2;0) returns 99.87829."
+msgid "<item type=\"input\">=SINH(0)</item> returns 0, the hyperbolic sine of 0."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3153564\n"
+"04060106.xhp\n"
+"bm_id3163596\n"
"help.text"
-msgid "<bookmark_value>ODDLYIELD function</bookmark_value>"
-msgstr "Definon llojin e të dhënës së një vlere."
+msgid "<bookmark_value>SUM function</bookmark_value><bookmark_value>adding;numbers in cell ranges</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153564\n"
-"118\n"
+"04060106.xhp\n"
+"hd_id3163596\n"
+"428\n"
"help.text"
-msgid "ODDLYIELD"
-msgstr ""
+msgid "SUM"
+msgstr "SUM"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3158002\n"
-"119\n"
+"04060106.xhp\n"
+"par_id3163625\n"
+"429\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLYIELD\">Calculates the yield of a security if the last interest date falls irregularly.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_SUMME\">Adds all the numbers in a range of cells.</ahelp>"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3147366\n"
-"120\n"
+"04060106.xhp\n"
+"hd_id3163643\n"
+"430\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150018\n"
-"121\n"
+"04060106.xhp\n"
+"par_id3163656\n"
+"431\n"
"help.text"
-msgid "ODDLYIELD(Settlement; Maturity; LastInterest; Rate; Price; Redemption; Frequency; Basis)"
+msgid "SUM(Number1; Number2; ...; Number30)"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3159132\n"
-"122\n"
+"04060106.xhp\n"
+"par_id3163671\n"
+"432\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+msgid "<emph>Number 1 to Number 30</emph> are up to 30 arguments whose sum is to be calculated."
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150134\n"
-"123\n"
+"04060106.xhp\n"
+"hd_id3163690\n"
+"433\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+msgid "Example"
+msgstr "Shembull"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145245\n"
-"124\n"
+"04060106.xhp\n"
+"par_id3163704\n"
+"434\n"
"help.text"
-msgid "<emph>LastInterest</emph> is the last interest date of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3 </item>and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 9 will be returned as the result."
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151014\n"
-"125\n"
+"04060106.xhp\n"
+"par_id3151740\n"
+"556\n"
"help.text"
-msgid "<emph>Rate</emph> is the annual rate of interest."
-msgstr "E kthen tarifwn efektive vjetore tw interesit"
+msgid "<item type=\"input\">=SUM(A1;A3;B5)</item> calculates the sum of the three cells. <item type=\"input\">=SUM (A1:E10)</item> calculates the sum of all cells in the A1 to E10 cell range."
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149003\n"
-"126\n"
+"04060106.xhp\n"
+"par_id3151756\n"
+"619\n"
"help.text"
-msgid "<emph>Price</emph> is the price of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+msgid "Conditions linked by AND can be used with the function SUM() in the following manner:"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148880\n"
-"127\n"
+"04060106.xhp\n"
+"par_id3151774\n"
+"620\n"
"help.text"
-msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
+msgid "Example assumption: You have entered invoices into a table. Column A contains the date value of the invoice, column B the amounts. You want to find a formula that you can use to return the total of all amounts only for a specific month, e.g. only the amount for the period >=2008-01-01 to <2008-02-01. The range with the date values covers A1:A40, the range containing the amounts to be totaled is B1:B40. C1 contains the start date, 2008<item type=\"input\">-01-01</item>, of the invoices to be included and C2 the date, 2008<item type=\"input\">-02-01</item>, that is no longer included."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155622\n"
-"128\n"
+"04060106.xhp\n"
+"par_id3151799\n"
+"621\n"
"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+msgid "Enter the following formula as an array formula:"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3145303\n"
-"129\n"
+"04060106.xhp\n"
+"par_id3151813\n"
+"622\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<item type=\"input\">=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145350\n"
-"130\n"
+"04060106.xhp\n"
+"par_id3151828\n"
+"623\n"
"help.text"
-msgid "Settlement date: April 20 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, price: 99.875 currency units, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
+msgid "In order to enter this as an array formula, you must press the Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command </caseinline><defaultinline>+ Ctrl</defaultinline></switchinline>+ Enter keys instead of simply pressing the Enter key to close the formula. The formula will then be shown in the <emph>Formula</emph> bar enclosed in braces."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3157990\n"
-"131\n"
+"04060106.xhp\n"
+"par_id3151869\n"
+"624\n"
"help.text"
-msgid "The yield of the security, that has an irregular last interest date, is calculated as follows:"
+msgid "{=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)}"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150572\n"
-"132\n"
+"04060106.xhp\n"
+"par_id3151884\n"
+"625\n"
"help.text"
-msgid "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875; 100;2;0) returns 0.044873 or 4.4873%."
+msgid "The formula is based on the fact that the result of a comparison is 1 if the criterion is met and 0 if it is not met. The individual comparison results will be treated as an array and used in matrix multiplication, and at the end the individual values will be totaled to give the result matrix."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3148768\n"
+"04060106.xhp\n"
+"bm_id3151957\n"
"help.text"
-msgid "<bookmark_value>calculating;variable declining depreciations</bookmark_value><bookmark_value>depreciations;variable declining</bookmark_value><bookmark_value>VDB function</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>SUMIF function</bookmark_value><bookmark_value>adding;specified numbers</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148768\n"
-"222\n"
+"04060106.xhp\n"
+"hd_id3151957\n"
+"436\n"
"help.text"
-msgid "VDB"
-msgstr "VDB"
+msgid "SUMIF"
+msgstr "SUMIF"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154636\n"
-"223\n"
+"04060106.xhp\n"
+"par_id3151986\n"
+"437\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VDB\">Returns the depreciation of an asset for a specified or partial period using a variable declining balance method.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Adds the cells specified by a given criteria.</ahelp> This function is used to browse a range when you search for a certain value."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155519\n"
-"224\n"
+"04060106.xhp\n"
+"hd_id3152015\n"
+"438\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149025\n"
-"225\n"
-"help.text"
-msgid "VDB(Cost; Salvage; Life; S; End; Factor; Type)"
-msgstr ""
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150692\n"
-"226\n"
-"help.text"
-msgid "<emph>Cost</emph> is the initial value of an asset."
-msgstr "Shpenzimet e përvetsimit. Shpenzimi fillestar i pasurisë."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155369\n"
-"227\n"
-"help.text"
-msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
-msgstr "Vlera për të cilin do të përcaktohet rangimi."
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154954\n"
-"228\n"
-"help.text"
-msgid "<emph>Life</emph> is the depreciation duration of the asset."
-msgstr ""
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3152817\n"
-"229\n"
+"04060106.xhp\n"
+"par_id3152028\n"
+"439\n"
"help.text"
-msgid "<emph>S</emph> is the start of the depreciation. A must be entered in the same date unit as the duration."
-msgstr ""
+msgid "SUMIF(Range; Criteria; SumRange)"
+msgstr "Definon intervalin e qelive që pëmban kriteriumin e kërkimit."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153221\n"
-"230\n"
+"04060106.xhp\n"
+"par_id3152043\n"
+"440\n"
"help.text"
-msgid "<emph>End</emph> is the end of the depreciation."
-msgstr "E kthen tarifwn efektive vjetore tw interesit"
+msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147536\n"
-"231\n"
+"04060106.xhp\n"
+"par_id3152062\n"
+"441\n"
"help.text"
-msgid "<emph>Factor</emph> (optional) is the depreciation factor. Factor = 2 is double rate depreciation."
+msgid "<emph>Criteria</emph> is the cell in which the search criterion is shown, or the search criterion itself. If the criteria is written into the formula, it has to be surrounded by double quotes."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154865\n"
-"232\n"
+"04060106.xhp\n"
+"par_id3152083\n"
+"442\n"
"help.text"
-msgid "<emph>Type </emph>is an optional parameter. Type = 1 means a switch to linear depreciation. In Type = 0 no switch is made."
+msgid "<emph>SumRange</emph> is the range from which values are summed. If this parameter has not been indicated, the values found in the Range are summed."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_idN10A0D\n"
+"04060106.xhp\n"
+"par_id8347422\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "SUMIF supports the reference concatenation operator (~) only in the Criteria parameter, and only if the optional SumRange parameter is not given."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148429\n"
-"233\n"
+"04060106.xhp\n"
+"hd_id3152110\n"
+"443\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153927\n"
-"234\n"
+"04060106.xhp\n"
+"par_id3152148\n"
+"626\n"
"help.text"
-msgid "What is the declining-balance double-rate depreciation for a period if the initial cost is 35,000 currency units and the value at the end of the depreciation is 7,500 currency units. The depreciation period is 3 years. The depreciation from the 10th to the 20th period is calculated."
+msgid "To sum up only negative numbers: <item type=\"input\">=SUMIF(A1:A10;\"<0\")</item>"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155991\n"
-"235\n"
+"04060106.xhp\n"
+"par_id6670125\n"
"help.text"
-msgid "<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 currency units. The depreciation during the period between the 10th and the 20th period is 8,603.80 currency units."
+msgid "<item type=\"input\">=SUMIF(A1:A10;\">0\";B1:10)</item> - sums values from the range B1:B10 only if the corresponding values in the range A1:A10 are >0."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3147485\n"
+"04060106.xhp\n"
+"par_id6062196\n"
"help.text"
-msgid "<bookmark_value>calculating;internal rates of return, irregular payments</bookmark_value><bookmark_value>internal rates of return;irregular payments</bookmark_value><bookmark_value>XIRR function</bookmark_value>"
+msgid "See COUNTIF() for some more syntax examples that can be used with SUMIF()."
msgstr ""
-#: 04060118.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3147485\n"
-"193\n"
+"04060106.xhp\n"
+"bm_id3152195\n"
"help.text"
-msgid "XIRR"
-msgstr "IRR"
+msgid "<bookmark_value>TAN function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145614\n"
-"194\n"
+"04060106.xhp\n"
+"hd_id3152195\n"
+"446\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_XIRR\">Calculates the internal rate of return for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
-msgstr ""
+msgid "TAN"
+msgstr "TAN"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_idN10E62\n"
+"04060106.xhp\n"
+"par_id3152224\n"
+"447\n"
"help.text"
-msgid "If the payments take place at regular intervals, use the IRR function."
+msgid "<ahelp hid=\"HID_FUNC_TAN\">Returns the tangent of the given angle (in radians).</ahelp>"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3146149\n"
-"195\n"
+"04060106.xhp\n"
+"hd_id3152242\n"
+"448\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149826\n"
-"196\n"
+"04060106.xhp\n"
+"par_id3152255\n"
+"449\n"
"help.text"
-msgid "XIRR(Values; Dates; Guess)"
-msgstr ""
+msgid "TAN(Number)"
+msgstr "Numri i faqes"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3163821\n"
-"197\n"
+"04060106.xhp\n"
+"par_id3152269\n"
+"450\n"
"help.text"
-msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)."
+msgid "Returns the (trigonometric) tangent of <emph>Number</emph>, the angle in radians."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149708\n"
-"198\n"
+"04060106.xhp\n"
+"par_id5752128\n"
"help.text"
-msgid "<emph>Guess</emph> (optional) is a guess that can be input for the internal rate of return. The default is 10%."
+msgid "To return the tangent of an angle in degrees, use the RADIANS function."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3145085\n"
-"199\n"
+"04060106.xhp\n"
+"hd_id3152287\n"
+"451\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149273\n"
-"200\n"
+"04060106.xhp\n"
+"par_id3152301\n"
+"452\n"
"help.text"
-msgid "Calculation of the internal rate of return for the following five payments:"
+msgid "<item type=\"input\">=TAN(PI()/4) </item>returns 1, the tangent of PI/4 radians."
msgstr ""
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155838\n"
-"305\n"
-"help.text"
-msgid "A"
-msgstr "A"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3152934\n"
-"306\n"
-"help.text"
-msgid "B"
-msgstr "B"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154638\n"
-"307\n"
-"help.text"
-msgid "C"
-msgstr "C"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147083\n"
-"308\n"
-"help.text"
-msgid "1"
-msgstr "1"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3151187\n"
-"309\n"
-"help.text"
-msgid "2001-01-01"
-msgstr "~01/01/1904"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145212\n"
-"201\n"
-"help.text"
-msgid "-<item type=\"input\">10000</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3146856\n"
-"202\n"
-"help.text"
-msgid "<item type=\"input\">Received</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153277\n"
-"310\n"
-"help.text"
-msgid "2"
-msgstr "2"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3154052\n"
-"203\n"
-"help.text"
-msgid "2001-01-02"
-msgstr "Asia/Yekaterinburg"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3151297\n"
-"204\n"
-"help.text"
-msgid "<item type=\"input\">2000</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3149985\n"
-"205\n"
-"help.text"
-msgid "<item type=\"input\">Deposited</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154744\n"
-"311\n"
+"04060106.xhp\n"
+"par_id1804864\n"
"help.text"
-msgid "3"
+msgid "<item type=\"input\">=TAN(RADIANS(45))</item> returns 1, the tangent of 45 degrees."
msgstr ""
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153151\n"
-"206\n"
-"help.text"
-msgid "2001-03-15"
-msgstr "Asia/Novosibirsk"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145657\n"
-"207\n"
+"04060106.xhp\n"
+"bm_id3165434\n"
"help.text"
-msgid "2500"
-msgstr "Pamja 200%"
+msgid "<bookmark_value>TANH function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155101\n"
-"312\n"
+"04060106.xhp\n"
+"hd_id3165434\n"
+"456\n"
"help.text"
-msgid "4"
-msgstr "Yll 24-cepësh"
+msgid "TANH"
+msgstr "TANH"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146894\n"
-"208\n"
+"04060106.xhp\n"
+"par_id3165462\n"
+"457\n"
"help.text"
-msgid "2001-05-12"
-msgstr "Yll 12-cepësh"
+msgid "<ahelp hid=\"HID_FUNC_TANHYP\">Returns the hyperbolic tangent of a number.</ahelp>"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3143231\n"
-"209\n"
+"04060106.xhp\n"
+"hd_id3165480\n"
+"458\n"
"help.text"
-msgid "5000"
-msgstr "Pamja 100%"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3156012\n"
-"313\n"
+"04060106.xhp\n"
+"par_id3165494\n"
+"459\n"
"help.text"
-msgid "5"
-msgstr "25%"
+msgid "TANH(Number)"
+msgstr "Numri i faqes"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149758\n"
-"210\n"
+"04060106.xhp\n"
+"par_id3165508\n"
+"460\n"
"help.text"
-msgid "2001-08-10"
-msgstr "Indeksi 10 i shfrytëzuesit"
+msgid "Returns the hyperbolic tangent of <emph>Number</emph>."
+msgstr "Kthen cotangentin hiperbolik invers të një numri."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147495\n"
-"211\n"
+"04060106.xhp\n"
+"hd_id3165527\n"
+"461\n"
"help.text"
-msgid "1000"
-msgstr "Pamja 100%"
+msgid "Example"
+msgstr "Shembull"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3152793\n"
-"212\n"
+"04060106.xhp\n"
+"par_id3165541\n"
+"462\n"
"help.text"
-msgid "=XIRR(B1:B5; A1:A5; 0.1) returns 0.1828."
+msgid "<item type=\"input\">=TANH(0)</item> returns 0, the hyperbolic tangent of 0."
msgstr ""
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"bm_id3149198\n"
-"help.text"
-msgid "<bookmark_value>XNPV function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
-
-#: 04060118.xhp
-#, fuzzy
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149198\n"
-"213\n"
+"04060106.xhp\n"
+"bm_id3165633\n"
"help.text"
-msgid "XNPV"
-msgstr "NPV"
+msgid "<bookmark_value>AutoFilter function; subtotals</bookmark_value><bookmark_value>sums;of filtered data</bookmark_value><bookmark_value>filtered data; sums</bookmark_value><bookmark_value>SUBTOTAL function</bookmark_value>"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153904\n"
-"214\n"
+"04060106.xhp\n"
+"hd_id3165633\n"
+"466\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Calculates the capital value (net present value)for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
-msgstr ""
+msgid "SUBTOTAL"
+msgstr "SUBTOTAL"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_idN11138\n"
+"04060106.xhp\n"
+"par_id3165682\n"
+"467\n"
"help.text"
-msgid "If the payments take place at regular intervals, use the NPV function."
+msgid "<ahelp hid=\"HID_FUNC_TEILERGEBNIS\">Calculates subtotals.</ahelp> If a range already contains subtotals, these are not used for further calculations. Use this function with the AutoFilters to take only the filtered records into account."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155323\n"
-"215\n"
+"04060106.xhp\n"
+"hd_id3165704\n"
+"495\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150117\n"
-"216\n"
-"help.text"
-msgid "XNPV(Rate; Values; Dates)"
-msgstr ""
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153100\n"
-"217\n"
+"04060106.xhp\n"
+"par_id3165717\n"
+"496\n"
"help.text"
-msgid "<emph>Rate</emph> is the internal rate of return for the payments."
-msgstr "E kthen tarifwn e brendshme tw kthimit pwr pagesat e planifikuara jo-periodike"
+msgid "SUBTOTAL(Function; Range)"
+msgstr "Vetëm brezi i numrave"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155395\n"
-"218\n"
+"04060106.xhp\n"
+"par_id3165731\n"
+"497\n"
"help.text"
-msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)"
+msgid "<emph>Function</emph> is a number that stands for one of the following functions:"
msgstr ""
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3148832\n"
-"219\n"
-"help.text"
-msgid "Example"
-msgstr "Shembull"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150525\n"
-"220\n"
+"04060106.xhp\n"
+"par_id3165782\n"
+"469\n"
"help.text"
-msgid "Calculation of the net present value for the above-mentioned five payments for a notional internal rate of return of 6%."
-msgstr ""
+msgid "Function index"
+msgstr "Index alfabetik"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149910\n"
-"221\n"
+"04060106.xhp\n"
+"par_id3165806\n"
+"470\n"
"help.text"
-msgid "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> returns 323.02."
-msgstr ""
+msgid "Function"
+msgstr "Funksioni"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3148822\n"
+"04060106.xhp\n"
+"par_id3165833\n"
+"471\n"
"help.text"
-msgid "<bookmark_value>calculating;rates of return</bookmark_value><bookmark_value>RRI function</bookmark_value>"
+msgid "1"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148822\n"
-"237\n"
+"04060106.xhp\n"
+"par_id3165856\n"
+"472\n"
"help.text"
-msgid "RRI"
-msgstr "RRI"
+msgid "AVERAGE"
+msgstr "MESATARE"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154293\n"
-"238\n"
+"04060106.xhp\n"
+"par_id3165883\n"
+"473\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZGZ\">Calculates the interest rate resulting from the profit (return) of an investment.</ahelp>"
+msgid "2"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148444\n"
-"239\n"
+"04060106.xhp\n"
+"par_id3165906\n"
+"474\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "COUNT"
+msgstr "COUNT"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148804\n"
-"240\n"
+"04060106.xhp\n"
+"par_id3165933\n"
+"475\n"
"help.text"
-msgid "RRI(P; PV; FV)"
+msgid "3"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154901\n"
-"241\n"
+"04060106.xhp\n"
+"par_id3165956\n"
+"476\n"
"help.text"
-msgid "<emph>P</emph> is the number of periods needed for calculating the interest rate."
-msgstr ""
+msgid "COUNTA"
+msgstr "COUNTA"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3159149\n"
-"242\n"
+"04060106.xhp\n"
+"par_id3165983\n"
+"477\n"
"help.text"
-msgid "<emph>PV</emph> is the present (current) value. The cash value is the deposit of cash or the current cash value of an allowance in kind. As a deposit value a positive value must be entered; the deposit must not be 0 or <0."
+msgid "4"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149771\n"
-"243\n"
+"04060106.xhp\n"
+"par_id3166006\n"
+"478\n"
"help.text"
-msgid "<emph>FV</emph> determines what is desired as the cash value of the deposit."
-msgstr ""
+msgid "MAX"
+msgstr "MAX"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148941\n"
-"244\n"
+"04060106.xhp\n"
+"par_id3166033\n"
+"479\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "5"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154212\n"
-"245\n"
+"04060106.xhp\n"
+"par_id3166056\n"
+"480\n"
"help.text"
-msgid "For four periods (years) and a cash value of 7,500 currency units, the interest rate of the return is to be calculated if the future value is 10,000 currency units."
-msgstr ""
+msgid "MIN"
+msgstr "MIN"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150775\n"
-"246\n"
+"04060106.xhp\n"
+"par_id3143316\n"
+"481\n"
"help.text"
-msgid "<item type=\"input\">=RRI(4;7500;10000)</item> = 7.46 %"
+msgid "6"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145413\n"
-"247\n"
+"04060106.xhp\n"
+"par_id3143339\n"
+"482\n"
"help.text"
-msgid "The interest rate must be 7.46 % so that 7,500 currency units will become 10,000 currency units."
-msgstr ""
+msgid "PRODUCT"
+msgstr "PRODHIM"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3154267\n"
+"04060106.xhp\n"
+"par_id3143366\n"
+"483\n"
"help.text"
-msgid "<bookmark_value>calculating;constant interest rates</bookmark_value><bookmark_value>constant interest rates</bookmark_value><bookmark_value>RATE function</bookmark_value>"
+msgid "7"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3154267\n"
-"249\n"
+"04060106.xhp\n"
+"par_id3143389\n"
+"484\n"
"help.text"
-msgid "RATE"
-msgstr "RATE"
+msgid "STDEV"
+msgstr "STDEV"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151052\n"
-"250\n"
+"04060106.xhp\n"
+"par_id3143416\n"
+"485\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZINS\">Returns the constant interest rate per period of an annuity.</ahelp>"
+msgid "8"
msgstr ""
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3154272\n"
-"251\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3158423\n"
-"252\n"
+"04060106.xhp\n"
+"par_id3143439\n"
+"486\n"
"help.text"
-msgid "RATE(NPer; Pmt; PV; FV; Type; Guess)"
-msgstr ""
+msgid "STDEVP"
+msgstr "STDEVP"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148910\n"
-"253\n"
+"04060106.xhp\n"
+"par_id3143466\n"
+"487\n"
"help.text"
-msgid "<emph>NPer</emph> is the total number of periods, during which payments are made (payment period)."
+msgid "9"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148925\n"
-"254\n"
+"04060106.xhp\n"
+"par_id3143489\n"
+"488\n"
"help.text"
-msgid "<emph>Pmt</emph> is the constant payment (annuity) paid during each period."
-msgstr "Pagesat e rregulta. Shuma konstante e anuitetit që është paguar në çdo periudhë."
+msgid "SUM"
+msgstr "SUM"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149160\n"
-"255\n"
+"04060106.xhp\n"
+"par_id3143516\n"
+"489\n"
"help.text"
-msgid "<emph>PV</emph> is the cash value in the sequence of payments."
-msgstr "E kthen tarifwn e brendshme tw kthimit pwr pagesat e planifikuara jo-periodike"
+msgid "10"
+msgstr "Titullimi 10"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3166456\n"
-"256\n"
+"04060106.xhp\n"
+"par_id3143539\n"
+"490\n"
"help.text"
-msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the periodic payments."
-msgstr ""
+msgid "VAR"
+msgstr "VAR"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153243\n"
-"257\n"
+"04060106.xhp\n"
+"par_id3143566\n"
+"491\n"
"help.text"
-msgid "<emph>Type</emph> (optional) is the due date of the periodic payment, either at the beginning or at the end of a period."
-msgstr "Pagesat e rregulta. Shuma konstante e anuitetit që është paguar në çdo periudhë."
+msgid "11"
+msgstr "1"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146949\n"
-"258\n"
+"04060106.xhp\n"
+"par_id3143589\n"
+"492\n"
"help.text"
-msgid "<emph>Guess</emph> (optional) determines the estimated value of the interest with iterative calculation."
-msgstr ""
+msgid "VARP"
+msgstr "VARP"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_idN10E2A\n"
+"04060106.xhp\n"
+"par_id3143606\n"
+"498\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "<emph>Range</emph> is the range whose cells are included."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149791\n"
-"259\n"
+"04060106.xhp\n"
+"hd_id3143625\n"
+"499\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150706\n"
-"260\n"
+"04060106.xhp\n"
+"par_id3143638\n"
+"562\n"
"help.text"
-msgid "What is the constant interest rate for a payment period of 3 periods if 10 currency units are paid regularly and the present cash value is 900 currency units."
+msgid "You have a table in the cell range A1:B5 containing cities in column A and accompanying figures in column B. You have used an AutoFilter so that you only see rows containing the city Hamburg. You want to see the sum of the figures that are displayed; that is, just the subtotal for the filtered rows. In this case the correct formula would be:"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155586\n"
-"261\n"
+"04060106.xhp\n"
+"par_id3143658\n"
+"563\n"
"help.text"
-msgid "<item type=\"input\">=RATE(3;10;900)</item> = -121% The interest rate is therefore 121%."
+msgid "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3149106\n"
+"04060106.xhp\n"
+"bm_id3143672\n"
"help.text"
-msgid "<bookmark_value>INTRATE function</bookmark_value>"
-msgstr "Kthen vlerën llogjike SAKTË."
+msgid "<bookmark_value>Euro; converting</bookmark_value><bookmark_value>EUROCONVERT function</bookmark_value>"
+msgstr "Vlera tanishme. Vlera e tanishme e investimit."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149106\n"
-"60\n"
+"04060106.xhp\n"
+"hd_id3143672\n"
+"564\n"
"help.text"
-msgid "INTRATE"
-msgstr ""
+msgid "EUROCONVERT"
+msgstr "CONVERT"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149918\n"
-"61\n"
+"04060106.xhp\n"
+"par_id3143708\n"
+"565\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_INTRATE\">Calculates the annual interest rate that results when a security (or other item) is purchased at an investment value and sold at a redemption value. No interest is paid.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Converts between old European national currency and to and from Euros.</ahelp>"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149974\n"
-"62\n"
+"04060106.xhp\n"
+"par_id3143731\n"
+"566\n"
"help.text"
-msgid "Syntax"
+msgid "<emph>Syntax</emph>"
msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149800\n"
-"63\n"
+"04060106.xhp\n"
+"par_id3143748\n"
+"567\n"
"help.text"
-msgid "INTRATE(Settlement; Maturity; Investment; Redemption; Basis)"
+msgid "EUROCONVERT(Value; \"From_currency\"; \"To_currency\", full_precision, triangulation_precision)"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148618\n"
-"64\n"
+"04060106.xhp\n"
+"par_id3143763\n"
+"568\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+msgid "<emph>Value</emph> is the amount of the currency to be converted."
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148988\n"
-"65\n"
+"04060106.xhp\n"
+"par_id3143782\n"
+"569\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security is sold."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+msgid "<emph>From_currency</emph> and <emph>To_currency</emph> are the currency units to convert from and to respectively. These must be text, the official abbreviation for the currency (for example, \"EUR\"). The rates (shown per Euro) were set by the European Commission."
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154604\n"
-"66\n"
+"04060106.xhp\n"
+"par_id0119200904301810\n"
"help.text"
-msgid "<emph>Investment</emph> is the purchase price."
+msgid "<emph>Full_precision</emph> is optional. If omitted or False, the result is rounded according to the decimals of the To currency. If Full_precision is True, the result is not rounded."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154337\n"
-"67\n"
+"04060106.xhp\n"
+"par_id0119200904301815\n"
"help.text"
-msgid "<emph>Redemption</emph> is the selling price."
+msgid "<emph>Triangulation_precision</emph> is optional. If Triangulation_precision is given and >=3, the intermediate result of a triangular conversion (currency1,EUR,currency2) is rounded to that precision. If Triangulation_precision is omitted, the intermediate result is not rounded. Also if To currency is \"EUR\", Triangulation_precision is used as if triangulation was needed and conversion from EUR to EUR was applied."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3145380\n"
-"68\n"
+"04060106.xhp\n"
+"par_id3143819\n"
+"570\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<emph>Examples</emph>"
+msgstr "Emri i grupit"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149426\n"
-"69\n"
+"04060106.xhp\n"
+"par_id3143837\n"
+"571\n"
"help.text"
-msgid "A painting is bought on 1990-01-15 for 1 million and sold on 2002-05-05 for 2 million. The basis is daily balance calculation (basis = 3). What is the average annual level of interest?"
+msgid "<item type=\"input\">=EUROCONVERT(100;\"ATS\";\"EUR\")</item> converts 100 Austrian Schillings into Euros."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151125\n"
-"70\n"
+"04060106.xhp\n"
+"par_id3143853\n"
+"572\n"
"help.text"
-msgid "=INTRATE(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) returns 8.12%."
+msgid "<item type=\"input\">=EUROCONVERT(100;\"EUR\";\"DEM\")</item> converts 100 Euros into German Marks."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3148654\n"
+"04060106.xhp\n"
+"bm_id0908200902090676\n"
"help.text"
-msgid "<bookmark_value>COUPNCD function</bookmark_value>"
-msgstr "I kthen vlerat absolute tw njw numri kompleks"
+msgid "<bookmark_value>CONVERT function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148654\n"
-"163\n"
+"04060106.xhp\n"
+"hd_id0908200902074836\n"
"help.text"
-msgid "COUPNCD"
-msgstr ""
+msgid "CONVERT"
+msgstr "CONVERT"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149927\n"
-"164\n"
+"04060106.xhp\n"
+"par_id0908200902131122\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNCD\">Returns the date of the first interest date after the settlement date. Format the result as a date.</ahelp>"
+msgid "<ahelp hid=\".\">Converts a value from one unit of measurement to another unit of measurement. The conversion factors are given in a list in the configuration.</ahelp>"
msgstr ""
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3153317\n"
-"165\n"
-"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150423\n"
-"166\n"
+"04060106.xhp\n"
+"par_id0908200902475420\n"
"help.text"
-msgid "COUPNCD(Settlement; Maturity; Frequency; Basis)"
+msgid "At one time the list of conversion factors included the legacy European currencies and the Euro (see examples below). We suggest using the new function EUROCONVERT for converting these currencies."
msgstr ""
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3150628\n"
-"167\n"
-"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153536\n"
-"168\n"
+"04060106.xhp\n"
+"hd_id0908200902131071\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145313\n"
-"169\n"
+"04060106.xhp\n"
+"par_id0908200902131191\n"
"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+msgid "CONVERT(value;\"text\";\"text\")"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155424\n"
-"170\n"
+"04060106.xhp\n"
+"hd_id0908200902131152\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154794\n"
-"171\n"
+"04060106.xhp\n"
+"par_id090820090213112\n"
"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) when is the next interest date?"
+msgid "<item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> returns the Euro value of 100 Austrian Schillings."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3159251\n"
-"172\n"
+"04060106.xhp\n"
+"par_id0908200902475431\n"
"help.text"
-msgid "=COUPNCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2001-05-15."
+msgid "=CONVERT(100;\"EUR\";\"DEM\") converts 100 Euros into German Marks."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3143281\n"
+"04060106.xhp\n"
+"bm_id3157177\n"
"help.text"
-msgid "<bookmark_value>COUPDAYS function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "<bookmark_value>ODD function</bookmark_value><bookmark_value>rounding;up/down to nearest odd integer</bookmark_value>"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3143281\n"
-"143\n"
+"04060106.xhp\n"
+"hd_id3157177\n"
+"502\n"
"help.text"
-msgid "COUPDAYS"
-msgstr ""
+msgid "ODD"
+msgstr "ODD"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149488\n"
-"144\n"
+"04060106.xhp\n"
+"par_id3157205\n"
+"503\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYS\">Returns the number of days in the current interest period in which the settlement date falls.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_UNGERADE\">Rounds a positive number up to the nearest odd integer and a negative number down to the nearest odd integer.</ahelp>"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148685\n"
-"145\n"
+"04060106.xhp\n"
+"hd_id3157223\n"
+"504\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149585\n"
-"146\n"
+"04060106.xhp\n"
+"par_id3157237\n"
+"505\n"
"help.text"
-msgid "COUPDAYS(Settlement; Maturity; Frequency; Basis)"
-msgstr ""
+msgid "ODD(Number)"
+msgstr "Numri i faqes"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3152767\n"
-"147\n"
+"04060106.xhp\n"
+"par_id3157250\n"
+"506\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+msgid "Returns <emph>Number</emph> rounded to the next odd integer up, away from zero."
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151250\n"
-"148\n"
+"04060106.xhp\n"
+"hd_id3157270\n"
+"507\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+msgid "Example"
+msgstr "Shembull"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146126\n"
-"149\n"
+"04060106.xhp\n"
+"par_id3157283\n"
+"508\n"
"help.text"
-msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+msgid "<item type=\"input\">=ODD(1.2)</item> returns 3."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153705\n"
-"150\n"
+"04060106.xhp\n"
+"par_id8746910\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<item type=\"input\">=ODD(1)</item> returns 1."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147530\n"
-"151\n"
+"04060106.xhp\n"
+"par_id9636524\n"
"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there in the interest period in which the settlement date falls?"
-msgstr ""
+msgid "<item type=\"input\">=ODD(0)</item> returns 1."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3156338\n"
-"152\n"
+"04060106.xhp\n"
+"par_id5675527\n"
"help.text"
-msgid "=COUPDAYS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 181."
-msgstr ""
+msgid "<item type=\"input\">=ODD(-3.1)</item> returns -5."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3154832\n"
+"04060106.xhp\n"
+"bm_id3157404\n"
"help.text"
-msgid "<bookmark_value>COUPDAYSNC function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "<bookmark_value>FLOOR function</bookmark_value><bookmark_value>rounding;down to nearest multiple of significance</bookmark_value>"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3154832\n"
-"153\n"
+"04060106.xhp\n"
+"hd_id3157404\n"
+"512\n"
"help.text"
-msgid "COUPDAYSNC"
-msgstr ""
+msgid "FLOOR"
+msgstr "FLOOR"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147100\n"
-"154\n"
+"04060106.xhp\n"
+"par_id3157432\n"
+"513\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYSNC\">Returns the number of days from the settlement date until the next interest date.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">Rounds a number down to the nearest multiple of Significance.</ahelp>"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3151312\n"
-"155\n"
+"04060106.xhp\n"
+"hd_id3157451\n"
+"514\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155121\n"
-"156\n"
+"04060106.xhp\n"
+"par_id3157464\n"
+"515\n"
"help.text"
-msgid "COUPDAYSNC(Settlement; Maturity; Frequency; Basis)"
+msgid "FLOOR(Number; Significance; Mode)"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3158440\n"
-"157\n"
+"04060106.xhp\n"
+"par_id3157478\n"
+"516\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+msgid "<emph>Number</emph> is the number that is to be rounded down."
+msgstr "Numri i vendeve teposhtë deri tek të cili një numër do të rrumbulaksohet."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146075\n"
-"158\n"
+"04060106.xhp\n"
+"par_id3157497\n"
+"517\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+msgid "<emph>Significance</emph> is the value to whose multiple the number is to be rounded down."
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154620\n"
-"159\n"
+"04060106.xhp\n"
+"par_id3157517\n"
+"561\n"
"help.text"
-msgid "<emph>Frequency </emph>is number of interest payments per year (1, 2 or 4)."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of the number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155604\n"
-"160\n"
+"04060106.xhp\n"
+"par_id3163894\n"
+"630\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "If both parameters Number and Significance are negative, and if the Mode value is equal to zero or is not specified, then the results in $[officename] Calc and Excel will differ after exporting. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148671\n"
-"161\n"
+"04060106.xhp\n"
+"hd_id3163932\n"
+"518\n"
"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there until the next interest payment?"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3156158\n"
-"162\n"
+"04060106.xhp\n"
+"par_id3163945\n"
+"519\n"
"help.text"
-msgid "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 110."
-msgstr ""
+msgid "<item type=\"input\">=FLOOR( -11;-2)</item> returns -12"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3150408\n"
+"04060106.xhp\n"
+"par_id3163966\n"
+"520\n"
"help.text"
-msgid "<bookmark_value>COUPDAYBS function</bookmark_value><bookmark_value>durations;first interest payment until settlement date</bookmark_value><bookmark_value>securities;first interest payment until settlement date</bookmark_value>"
-msgstr ""
+msgid "<item type=\"input\">=FLOOR( -11;-2;0)</item> returns -12"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3150408\n"
-"133\n"
+"04060106.xhp\n"
+"par_id3163988\n"
+"521\n"
"help.text"
-msgid "COUPDAYBS"
-msgstr ""
+msgid "<item type=\"input\">=FLOOR( -11;-2;1)</item> returns -10"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146795\n"
-"134\n"
+"04060106.xhp\n"
+"bm_id3164086\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYBS\">Returns the number of days from the first day of interest payment on a security until the settlement date.</ahelp>"
-msgstr ""
+msgid "<bookmark_value>SIGN function</bookmark_value><bookmark_value>algebraic signs</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3156142\n"
-"135\n"
+"04060106.xhp\n"
+"hd_id3164086\n"
+"523\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "SIGN"
+msgstr "SHENJA"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3159083\n"
-"136\n"
+"04060106.xhp\n"
+"par_id3164115\n"
+"524\n"
"help.text"
-msgid "COUPDAYBS(Settlement; Maturity; Frequency; Basis)"
+msgid "<ahelp hid=\"HID_FUNC_VORZEICHEN\">Returns the sign of a number. Returns 1 if the number is positive, -1 if negative and 0 if zero.</ahelp>"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3146907\n"
-"137\n"
+"04060106.xhp\n"
+"hd_id3164136\n"
+"525\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3159390\n"
-"138\n"
+"04060106.xhp\n"
+"par_id3164150\n"
+"526\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+msgid "SIGN(Number)"
+msgstr "Kthen shenjën algjebrike të një numri."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154414\n"
-"139\n"
+"04060106.xhp\n"
+"par_id3164164\n"
+"527\n"
"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+msgid "<emph>Number</emph> is the number whose sign is to be determined."
+msgstr "Numri për të cilin shenja algjebrike do të caktohet."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153880\n"
-"140\n"
+"04060106.xhp\n"
+"hd_id3164183\n"
+"528\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150592\n"
-"141\n"
+"04060106.xhp\n"
+"par_id3164197\n"
+"529\n"
"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days is this?"
-msgstr ""
+msgid "<item type=\"input\">=SIGN(3.4)</item> returns 1."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151103\n"
-"142\n"
+"04060106.xhp\n"
+"par_id3164212\n"
+"530\n"
"help.text"
-msgid "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 71."
-msgstr ""
+msgid "<item type=\"input\">=SIGN(-4.5)</item> returns -1."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3152957\n"
+"04060106.xhp\n"
+"bm_id3164252\n"
"help.text"
-msgid "<bookmark_value>COUPPCD function</bookmark_value><bookmark_value>dates;interest date prior to settlement date</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>MROUND function</bookmark_value><bookmark_value>nearest multiple</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3152957\n"
-"183\n"
+"04060106.xhp\n"
+"hd_id3164252\n"
+"658\n"
"help.text"
-msgid "COUPPCD"
-msgstr ""
+msgid "MROUND"
+msgstr "ROUND"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153678\n"
-"184\n"
+"04060106.xhp\n"
+"par_id3164288\n"
+"659\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPPCD\">Returns the date of the interest date prior to the settlement date. Format the result as a date.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_MROUND\">Returns a number rounded to the nearest multiple of another number.</ahelp>"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3156269\n"
-"185\n"
+"04060106.xhp\n"
+"hd_id3164306\n"
+"660\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153790\n"
-"186\n"
-"help.text"
-msgid "COUPPCD(Settlement; Maturity; Frequency; Basis)"
-msgstr ""
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150989\n"
-"187\n"
+"04060106.xhp\n"
+"par_id3164320\n"
+"661\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+msgid "MROUND(Number; Multiple)"
+msgstr "Përpjestuesi më i vogël"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154667\n"
-"188\n"
+"04060106.xhp\n"
+"par_id3486434\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+msgid "Returns <emph>Number</emph> rounded to the nearest multiple of <emph>Multiple</emph>."
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154569\n"
-"189\n"
+"04060106.xhp\n"
+"par_id3068636\n"
"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+msgid "An alternative implementation would be <item type=\"literal\">Multiple * ROUND(Number/Multiple)</item>."
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3150826\n"
-"190\n"
+"04060106.xhp\n"
+"hd_id3164333\n"
+"662\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148968\n"
-"191\n"
+"04060106.xhp\n"
+"par_id3164347\n"
+"663\n"
"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) what was the interest date prior to purchase?"
+msgid "<item type=\"input\">=MROUND(15.5;3)</item> returns 15, as 15.5 is closer to 15 (= 3*5) than to 18 (= 3*6)."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149992\n"
-"192\n"
+"04060106.xhp\n"
+"par_idN14DD6\n"
"help.text"
-msgid "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2000-15-11."
+msgid "<item type=\"input\">=MROUND(1.4;0.5)</item> returns 1.5 (= 0.5*3)."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3150673\n"
+"04060106.xhp\n"
+"bm_id3164375\n"
"help.text"
-msgid "<bookmark_value>COUPNUM function</bookmark_value><bookmark_value>number of coupons</bookmark_value>"
+msgid "<bookmark_value>SQRT function</bookmark_value><bookmark_value>square roots;positive numbers</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3150673\n"
-"173\n"
+"04060106.xhp\n"
+"hd_id3164375\n"
+"532\n"
"help.text"
-msgid "COUPNUM"
-msgstr ""
+msgid "SQRT"
+msgstr "SQRT"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154350\n"
-"174\n"
+"04060106.xhp\n"
+"par_id3164404\n"
+"533\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNUM\">Returns the number of coupons (interest payments) between the settlement date and the maturity date.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_WURZEL\">Returns the positive square root of a number.</ahelp>"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3148400\n"
-"175\n"
+"04060106.xhp\n"
+"hd_id3164424\n"
+"534\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3153200\n"
-"176\n"
-"help.text"
-msgid "COUPNUM(Settlement; Maturity; Frequency; Basis)"
-msgstr ""
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3159406\n"
-"177\n"
+"04060106.xhp\n"
+"par_id3164437\n"
+"535\n"
"help.text"
-msgid "<emph>Settlement</emph> is the date of purchase of the security."
-msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+msgid "SQRT(Number)"
+msgstr "Numri i faqes"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155864\n"
-"178\n"
+"04060106.xhp\n"
+"par_id3164451\n"
+"536\n"
"help.text"
-msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+msgid "Returns the positive square root of <emph>Number</emph>."
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154720\n"
-"179\n"
+"04060106.xhp\n"
+"par_id6870021\n"
"help.text"
-msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+msgid "Number must be positive."
+msgstr "Emri duhet tw shkruhet gjithsesi."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149319\n"
-"180\n"
+"04060106.xhp\n"
+"hd_id3164471\n"
+"537\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3152460\n"
-"181\n"
+"04060106.xhp\n"
+"par_id3164484\n"
+"538\n"
"help.text"
-msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many interest dates are there?"
-msgstr ""
+msgid "<item type=\"input\">=SQRT(16)</item> returns 4."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150640\n"
-"182\n"
+"04060106.xhp\n"
+"par_id3591723\n"
"help.text"
-msgid "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2."
+msgid "<item type=\"input\">=SQRT(-16)</item> returns an <item type=\"literal\">invalid argument</item> error."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3149339\n"
+"04060106.xhp\n"
+"bm_id3164560\n"
"help.text"
-msgid "<bookmark_value>IPMT function</bookmark_value><bookmark_value>periodic amortizement rates</bookmark_value>"
+msgid "<bookmark_value>SQRTPI function</bookmark_value><bookmark_value>square roots;products of Pi</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149339\n"
-"263\n"
+"04060106.xhp\n"
+"hd_id3164560\n"
+"665\n"
"help.text"
-msgid "IPMT"
-msgstr "IPMT"
+msgid "SQRTPI"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154522\n"
-"264\n"
+"04060106.xhp\n"
+"par_id3164596\n"
+"666\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZINSZ\">Calculates the periodic amortizement for an investment with regular payments and a constant interest rate.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_SQRTPI\">Returns the square root of (PI times a number).</ahelp>"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3153266\n"
-"265\n"
+"04060106.xhp\n"
+"hd_id3164614\n"
+"667\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3151283\n"
-"266\n"
-"help.text"
-msgid "IPMT(Rate; Period; NPer; PV; FV; Type)"
-msgstr ""
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147313\n"
-"267\n"
-"help.text"
-msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "E kthen tarifwn efektive vjetore tw interesit"
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145158\n"
-"268\n"
-"help.text"
-msgid "<emph>Period</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
-msgstr ""
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3147577\n"
-"269\n"
-"help.text"
-msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3156211\n"
-"270\n"
+"04060106.xhp\n"
+"par_id3164627\n"
+"668\n"
"help.text"
-msgid "<emph>PV</emph> is the present cash value in sequence of payments."
-msgstr "E kthen tarifwn e brendshme tw kthimit pwr pagesat e planifikuara jo-periodike"
+msgid "SQRTPI(Number)"
+msgstr "Numri i faqes"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151213\n"
-"271\n"
+"04060106.xhp\n"
+"par_id1501510\n"
"help.text"
-msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
-msgstr ""
+msgid "Returns the positive square root of (PI multiplied by <emph>Number</emph>)."
+msgstr "E kthen rrwnjwn katrore tw numrit i cili wshtw shumwzuar nga pi"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154195\n"
-"272\n"
+"04060106.xhp\n"
+"par_id9929197\n"
"help.text"
-msgid "<emph>Type</emph> is the due date for the periodic payments."
+msgid "This is equivalent to <item type=\"literal\">SQRT(PI()*Number)</item>."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3150102\n"
-"273\n"
+"04060106.xhp\n"
+"hd_id3164641\n"
+"669\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149438\n"
-"274\n"
+"04060106.xhp\n"
+"par_id3164654\n"
+"670\n"
"help.text"
-msgid "What is the interest rate during the fifth period (year) if the constant interest rate is 5% and the cash value is 15,000 currency units? The periodic payment is seven years."
+msgid "<item type=\"input\">=SQRTPI(2)</item> returns the squareroot of (2PI), approximately 2.506628."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150496\n"
-"275\n"
+"04060106.xhp\n"
+"bm_id3164669\n"
"help.text"
-msgid "<item type=\"input\">=IPMT(5%;5;7;15000)</item> = -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgid "<bookmark_value>random numbers; between limits</bookmark_value><bookmark_value>RANDBETWEEN function</bookmark_value>"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3151205\n"
+"04060106.xhp\n"
+"hd_id3164669\n"
+"671\n"
"help.text"
-msgid "<bookmark_value>calculating;future values</bookmark_value><bookmark_value>future values;constant interest rates</bookmark_value><bookmark_value>FV function</bookmark_value>"
+msgid "RANDBETWEEN"
msgstr ""
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"hd_id3151205\n"
-"277\n"
-"help.text"
-msgid "FV"
-msgstr "FV"
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154140\n"
-"278\n"
+"04060106.xhp\n"
+"par_id3164711\n"
+"672\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZW\">Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value).</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_RANDBETWEEN\">Returns an integer random number in a specified range.</ahelp>"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155178\n"
-"279\n"
+"04060106.xhp\n"
+"hd_id3164745\n"
+"673\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145215\n"
-"280\n"
-"help.text"
-msgid "FV(Rate; NPer; Pmt; PV; Type)"
-msgstr ""
-
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3155136\n"
-"281\n"
-"help.text"
-msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "E kthen tarifwn efektive vjetore tw interesit"
-
-#: 04060118.xhp
-#, fuzzy
-msgctxt ""
-"04060118.xhp\n"
-"par_id3156029\n"
-"282\n"
-"help.text"
-msgid "<emph>NPer</emph> is the total number of periods (payment period)."
-msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3151322\n"
-"283\n"
+"04060106.xhp\n"
+"par_id3164758\n"
+"674\n"
"help.text"
-msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
-msgstr ""
+msgid "RANDBETWEEN(Bottom; Top)"
+msgstr "Nga fundi lartë"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3145256\n"
-"284\n"
+"04060106.xhp\n"
+"par_id7112338\n"
"help.text"
-msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgid "Returns an integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive)."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150999\n"
-"285\n"
+"04060106.xhp\n"
+"par_id2855616\n"
"help.text"
-msgid "<emph>Type</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_idN114D8\n"
+"04060106.xhp\n"
+"par_id2091433\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "To generate random numbers which never recalculate, copy cells containing this function, and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3146800\n"
-"286\n"
+"04060106.xhp\n"
+"hd_id3164772\n"
+"675\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3146813\n"
-"287\n"
-"help.text"
-msgid "What is the value at the end of an investment if the interest rate is 4% and the payment period is two years, with a periodic payment of 750 currency units. The investment has a present value of 2,500 currency units."
-msgstr ""
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149302\n"
-"288\n"
+"04060106.xhp\n"
+"par_id3164785\n"
+"676\n"
"help.text"
-msgid "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgid "<item type=\"input\">=RANDBETWEEN(20;30)</item> returns an integer of between 20 and 30."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3155912\n"
+"04060106.xhp\n"
+"bm_id3164800\n"
"help.text"
-msgid "<bookmark_value>FVSCHEDULE function</bookmark_value><bookmark_value>future values;varying interest rates</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>RAND function</bookmark_value><bookmark_value>random numbers;between 0 and 1</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155912\n"
-"51\n"
+"04060106.xhp\n"
+"hd_id3164800\n"
+"542\n"
"help.text"
-msgid "FVSCHEDULE"
-msgstr ""
+msgid "RAND"
+msgstr "RAND"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3163726\n"
-"52\n"
+"04060106.xhp\n"
+"par_id3164829\n"
+"543\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_FVSCHEDULE\">Calculates the accumulated value of the starting capital for a series of periodically varying interest rates.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ZUFALLSZAHL\">Returns a random number between 0 and 1.</ahelp>"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3149571\n"
-"53\n"
+"04060106.xhp\n"
+"hd_id3164870\n"
+"545\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148891\n"
-"54\n"
+"04060106.xhp\n"
+"par_id3164884\n"
+"546\n"
"help.text"
-msgid "FVSCHEDULE(Principal; Schedule)"
-msgstr ""
+msgid "RAND()"
+msgstr "RAND"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148904\n"
-"55\n"
+"04060106.xhp\n"
+"par_id5092318\n"
"help.text"
-msgid "<emph>Principal</emph> is the starting capital."
+msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3148562\n"
-"56\n"
+"04060106.xhp\n"
+"par_id9312417\n"
"help.text"
-msgid "<emph>Schedule</emph> is a series of interest rates, for example, as a range H3:H5 or as a (List) (see example)."
+msgid "To generate random numbers which never recalculate, copy cells each containing =RAND(), and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3147288\n"
-"57\n"
+"04060106.xhp\n"
+"hd_id9089022\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3148638\n"
-"58\n"
-"help.text"
-msgid "1000 currency units have been invested in for three years. The interest rates were 3%, 4% and 5% per annum. What is the value after three years?"
-msgstr ""
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3156358\n"
-"59\n"
+"04060106.xhp\n"
+"par_id9569078\n"
"help.text"
-msgid "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> returns 1124.76."
+msgid "<item type=\"input\">=RAND()</item> returns a random number between 0 and 1."
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"bm_id3156435\n"
+"04060106.xhp\n"
+"bm_id3164897\n"
"help.text"
-msgid "<bookmark_value>calculating;number of payment periods</bookmark_value><bookmark_value>payment periods;number of</bookmark_value><bookmark_value>number of payment periods</bookmark_value><bookmark_value>NPER function</bookmark_value>"
-msgstr ""
+msgid "<bookmark_value>COUNTIF function</bookmark_value><bookmark_value>counting;specified cells</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3156435\n"
-"290\n"
+"04060106.xhp\n"
+"hd_id3164897\n"
+"547\n"
"help.text"
-msgid "NPER"
-msgstr "NPER"
+msgid "COUNTIF"
+msgstr "COUNTIF"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3152363\n"
-"291\n"
+"04060106.xhp\n"
+"par_id3164926\n"
+"548\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZZR\">Returns the number of periods for an investment based on periodic, constant payments and a constant interest rate.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">Returns the number of cells that meet with certain criteria within a cell range.</ahelp>"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3147216\n"
-"292\n"
+"04060106.xhp\n"
+"hd_id3164953\n"
+"549\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155934\n"
-"293\n"
+"04060106.xhp\n"
+"par_id3164967\n"
+"550\n"
"help.text"
-msgid "NPER(Rate; Pmt; PV; FV; Type)"
-msgstr ""
+msgid "COUNTIF(Range; Criteria)"
+msgstr "~Ruaj kriteret e filtrimit"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3155946\n"
-"294\n"
+"04060106.xhp\n"
+"par_id3164980\n"
+"551\n"
"help.text"
-msgid "<emph>Rate</emph> is the periodic interest rate."
-msgstr "E kthen tarifwn efektive vjetore tw interesit"
+msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3149042\n"
-"295\n"
+"04060106.xhp\n"
+"par_id3165000\n"
+"552\n"
"help.text"
-msgid "<emph>Pmt</emph> is the constant annuity paid in each period."
-msgstr "Pagesat e rregulta. Shuma konstante e anuitetit që është paguar në çdo periudhë."
+msgid "<emph>Criteria</emph> indicates the criteria in the form of a number, an expression or a character string. These criteria determine which cells are counted. You may also enter a search text in the form of a regular expression, e.g. b.* for all words that begin with b. You may also indicate a cell range that contains the search criterion. If you search for literal text, enclose the text in double quotes."
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153134\n"
-"296\n"
+"04060106.xhp\n"
+"hd_id3165037\n"
+"553\n"
"help.text"
-msgid "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
-msgstr "E kthen tarifwn e brendshme tw kthimit pwr pagesat e planifikuara jo-periodike"
+msgid "Example"
+msgstr "Shembull"
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3154398\n"
-"297\n"
+"04060106.xhp\n"
+"par_id3166505\n"
+"627\n"
"help.text"
-msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the last period."
+msgid "A1:A10 is a cell range containing the numbers <item type=\"input\">2000</item> to <item type=\"input\">2009</item>. Cell B1 contains the number <item type=\"input\">2006</item>. In cell B2, you enter a formula:"
msgstr ""
-#: 04060118.xhp
-msgctxt ""
-"04060118.xhp\n"
-"par_id3145127\n"
-"298\n"
-"help.text"
-msgid "<emph>Type</emph> (optional) is the due date of the payment at the beginning or at the end of the period."
-msgstr "Pagesat e rregulta. Shuma konstante e anuitetit që është paguar në çdo periudhë."
-
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_idN1166C\n"
+"04060106.xhp\n"
+"par_id3581652\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> - this returns 1"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"hd_id3155795\n"
-"299\n"
+"04060106.xhp\n"
+"par_id708639\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> - this returns 1"
+msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3147378\n"
-"300\n"
+"04060106.xhp\n"
+"par_id5169225\n"
"help.text"
-msgid "How many payment periods does a payment period cover with a periodic interest rate of 6%, a periodic payment of 153.75 currency units and a present cash value of 2.600 currency units."
+msgid "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item>- this returns 4"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3156171\n"
-"301\n"
+"04060106.xhp\n"
+"par_id2118594\n"
"help.text"
-msgid "<item type=\"input\">=NPER(6%;153.75;2600)</item> = -12,02. The payment period covers 12.02 periods."
+msgid "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - when B1 contains <item type=\"input\">2006</item>, this returns 6"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3150309\n"
-"314\n"
+"04060106.xhp\n"
+"par_id166020\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
+msgid "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> where cell C2 contains the text <item type=\"input\">>2006</item> counts the number of cells in the range A1:A10 which are >2006"
msgstr ""
-#: 04060118.xhp
+#: 04060106.xhp
msgctxt ""
-"04060118.xhp\n"
-"par_id3153163\n"
-"315\n"
+"04060106.xhp\n"
+"par_id6386913\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Back to Financial Functions Part Two\">Back to Financial Functions Part Two</link>"
+msgid "To count only negative numbers: <item type=\"input\">=COUNTIF(A1:A10;\"<0\")</item>"
msgstr ""
#: 04060107.xhp
@@ -28302,7 +17448,7 @@ msgctxt ""
"260\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28311,7 +17457,7 @@ msgctxt ""
"261\n"
"help.text"
msgid "B"
-msgstr "B"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28320,7 +17466,7 @@ msgctxt ""
"262\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28329,7 +17475,7 @@ msgctxt ""
"263\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28365,7 +17511,7 @@ msgctxt ""
"267\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28878,7 +18024,7 @@ msgctxt ""
"par_idN10D65\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28902,7 +18048,7 @@ msgctxt ""
"par_idN10D79\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28910,7 +18056,7 @@ msgctxt ""
"par_idN10D80\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28934,7 +18080,7 @@ msgctxt ""
"par_idN10D94\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28942,7 +18088,7 @@ msgctxt ""
"par_idN10D9B\n"
"help.text"
msgid "0"
-msgstr "Titullimi 10"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -28974,7 +18120,7 @@ msgctxt ""
"par_idN10DB6\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29006,7 +18152,7 @@ msgctxt ""
"par_idN10DE2\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29046,7 +18192,7 @@ msgctxt ""
"par_idN10E02\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29054,7 +18200,7 @@ msgctxt ""
"par_idN10E09\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29070,7 +18216,7 @@ msgctxt ""
"par_idN10E17\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29086,7 +18232,7 @@ msgctxt ""
"par_idN10E25\n"
"help.text"
msgid "5"
-msgstr "25%"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29094,7 +18240,7 @@ msgctxt ""
"par_idN10E2D\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29102,7 +18248,7 @@ msgctxt ""
"par_idN10E34\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29134,7 +18280,7 @@ msgctxt ""
"par_idN10E50\n"
"help.text"
msgid "5"
-msgstr "25%"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29174,7 +18320,7 @@ msgctxt ""
"par_idN10E78\n"
"help.text"
msgid "5"
-msgstr "25%"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29379,7 +18525,6 @@ msgid "In the following table, column A lists unsorted measurement values. Colum
msgstr ""
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3155869\n"
@@ -29389,7 +18534,6 @@ msgid "<emph>A</emph>"
msgstr "Titullimi 10"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3149328\n"
@@ -29399,7 +18543,6 @@ msgid "<emph>B</emph>"
msgstr "Titullimi 10"
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3152467\n"
@@ -29433,7 +18576,7 @@ msgctxt ""
"225\n"
"help.text"
msgid "5"
-msgstr "25%"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29442,7 +18585,7 @@ msgctxt ""
"226\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29514,7 +18657,7 @@ msgctxt ""
"234\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29568,7 +18711,7 @@ msgctxt ""
"240\n"
"help.text"
msgid "5"
-msgstr "25%"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29586,7 +18729,7 @@ msgctxt ""
"242\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -29622,7 +18765,7 @@ msgctxt ""
"246\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30210,7 +19353,7 @@ msgctxt ""
"77\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30219,7 +19362,7 @@ msgctxt ""
"78\n"
"help.text"
msgid "B"
-msgstr "B"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30228,7 +19371,7 @@ msgctxt ""
"79\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30237,7 +19380,7 @@ msgctxt ""
"80\n"
"help.text"
msgid "D"
-msgstr "DB"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30246,7 +19389,7 @@ msgctxt ""
"81\n"
"help.text"
msgid "E"
-msgstr "E"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -30814,7 +19957,6 @@ msgid "G3: The standard error of the intercept"
msgstr "Kthen gabimin standard të prapavajtjes lineare."
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"bm_id3145859\n"
@@ -31073,7 +20215,7 @@ msgctxt ""
"par_idN11B2F\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31081,7 +20223,7 @@ msgctxt ""
"par_idN11B35\n"
"help.text"
msgid "B"
-msgstr "B"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31089,7 +20231,7 @@ msgctxt ""
"par_idN11B3B\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31097,7 +20239,7 @@ msgctxt ""
"par_idN11B41\n"
"help.text"
msgid "D"
-msgstr "DB"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31105,7 +20247,7 @@ msgctxt ""
"par_idN11B48\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31145,7 +20287,7 @@ msgctxt ""
"par_idN11B67\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: 04060107.xhp
msgctxt ""
@@ -31225,7 +20367,7 @@ msgctxt ""
"par_idN11BA1\n"
"help.text"
msgid "<item type=\"input\">=SUMPRODUCT(A1:B3;C1:D3)</item> returns 397."
-msgstr ""
+msgstr "Hyrja e karaktereve alfanumerike"
#: 04060107.xhp
msgctxt ""
@@ -31304,7 +20446,6 @@ msgid "SUMX2MY2(ArrayX; ArrayY)"
msgstr ""
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3144916\n"
@@ -31375,7 +20516,6 @@ msgid "SUMX2PY2(ArrayX; ArrayY)"
msgstr ""
#: 04060107.xhp
-#, fuzzy
msgctxt ""
"04060107.xhp\n"
"par_id3163417\n"
@@ -31699,531 +20839,2785 @@ msgctxt ""
msgid "This function returns an array and is handled in the same way as the other array functions. Select a range where you want the answers to appear and select the function. Select DataY. Enter any other parameters, mark <emph>Array</emph> and click <emph>OK</emph>."
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
+"04060108.xhp\n"
"tit\n"
"help.text"
-msgid "DATEDIF"
+msgid "Statistics Functions"
+msgstr "Funksionet statistikore"
+
+#: 04060108.xhp
+msgctxt ""
+"04060108.xhp\n"
+"bm_id3153018\n"
+"help.text"
+msgid "<bookmark_value>statistics functions</bookmark_value><bookmark_value>Function Wizard; statistics</bookmark_value><bookmark_value>functions; statistics functions</bookmark_value>"
msgstr ""
-#: func_datedif.xhp
-#, fuzzy
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"bm_id3155511\n"
+"04060108.xhp\n"
+"hd_id3153018\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>DATEDIF function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "Statistics Functions"
+msgstr "Funksionet statistikore"
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"hd_id3155511\n"
+"04060108.xhp\n"
+"par_id3157874\n"
+"2\n"
"help.text"
-msgid "<variable id=\"datedif\"><link href=\"text/scalc/01/func_datedif.xhp\">DATEDIF</link></variable>"
+msgid "<variable id=\"statistiktext\">This category contains the <emph>Statistics</emph> functions. </variable>"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3153551\n"
+"04060108.xhp\n"
+"par_id3149001\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function returns the number of whole days, months or years between Start date and End date.</ahelp>"
+msgid "Some of the examples use the following data table:"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"hd_id3148590\n"
+"04060108.xhp\n"
+"par_id3148775\n"
+"10\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "C"
+msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3150474\n"
+"04060108.xhp\n"
+"par_id3145297\n"
+"11\n"
"help.text"
-msgid "DATEDIF(Start date; End date; Interval)"
+msgid "D"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3152815\n"
+"04060108.xhp\n"
+"par_id3150661\n"
+"12\n"
"help.text"
-msgid "<emph>Start date</emph> is the date from when the calculation is carried out."
+msgid "2"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3155817\n"
+"04060108.xhp\n"
+"par_id3153551\n"
+"13\n"
"help.text"
-msgid "<emph>End date</emph> is the date until the calculation is carried out. End date must be later, than Start date."
+msgid "x value"
+msgstr "Vlera"
+
+#: 04060108.xhp
+msgctxt ""
+"04060108.xhp\n"
+"par_id3147536\n"
+"14\n"
+"help.text"
+msgid "y value"
+msgstr "Vlera"
+
+#: 04060108.xhp
+msgctxt ""
+"04060108.xhp\n"
+"par_id3153224\n"
+"15\n"
+"help.text"
+msgid "3"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3153183\n"
+"04060108.xhp\n"
+"par_id3150475\n"
+"16\n"
"help.text"
-msgid "<emph>Interval</emph> is a string, accepted values are \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\"."
+msgid "-5"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id5735953\n"
+"04060108.xhp\n"
+"par_id3155367\n"
+"17\n"
"help.text"
-msgid "Value for \"Interval\""
+msgid "-3"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id8360850\n"
+"04060108.xhp\n"
+"par_id3149783\n"
+"18\n"
"help.text"
-msgid "Return value"
-msgstr "Vlerë absolute"
+msgid "4"
+msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id9648731\n"
+"04060108.xhp\n"
+"par_id3153181\n"
+"19\n"
"help.text"
-msgid "\"d\""
+msgid "-2"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id908841\n"
+"04060108.xhp\n"
+"par_id3148429\n"
+"20\n"
"help.text"
-msgid "Number of whole days between Start date and End date."
+msgid "0"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id8193914\n"
+"04060108.xhp\n"
+"par_id3152588\n"
+"21\n"
"help.text"
-msgid "\"m\""
+msgid "5"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id9841608\n"
+"04060108.xhp\n"
+"par_id3147483\n"
+"22\n"
"help.text"
-msgid "Number of whole months between Start date and End date."
+msgid "-1"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id2701803\n"
+"04060108.xhp\n"
+"par_id3083443\n"
+"23\n"
"help.text"
-msgid "\"y\""
+msgid "1"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id2136295\n"
+"04060108.xhp\n"
+"par_id3149826\n"
+"24\n"
"help.text"
-msgid "Number of whole years between Start date and End date."
+msgid "6"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id9200109\n"
+"04060108.xhp\n"
+"par_id3163820\n"
+"25\n"
"help.text"
-msgid "\"ym\""
+msgid "0"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id4186223\n"
+"04060108.xhp\n"
+"par_id3154816\n"
+"26\n"
"help.text"
-msgid "Number of whole months when subtracting years from the difference of Start date and End date."
+msgid "3"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id5766472\n"
+"04060108.xhp\n"
+"par_id3149276\n"
+"27\n"
"help.text"
-msgid "\"md\""
+msgid "7"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id1491134\n"
+"04060108.xhp\n"
+"par_id3149267\n"
+"28\n"
"help.text"
-msgid "Number of whole days when subtracting years and months from the difference of Start date and End date."
+msgid "2"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id5866472\n"
+"04060108.xhp\n"
+"par_id3156310\n"
+"29\n"
"help.text"
-msgid "\"yd\""
+msgid "4"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id1591134\n"
+"04060108.xhp\n"
+"par_id3154639\n"
+"30\n"
"help.text"
-msgid "Number of whole days when subtracting years from the difference of Start date and End date."
+msgid "8"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"hd_id3147477\n"
+"04060108.xhp\n"
+"par_id3145205\n"
+"31\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "4"
+msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3152589\n"
+"04060108.xhp\n"
+"par_id3153276\n"
+"32\n"
"help.text"
-msgid "Birthday calculation. A man was born on 1974-04-17. Today is 2012-06-13."
+msgid "6"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3252589\n"
+"04060108.xhp\n"
+"par_id3150756\n"
+"33\n"
"help.text"
-msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"y\")</item> yields 38. <item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"ym\")</item> yields 1. <item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"md\")</item> yields 27. So he is 38 years, 1 month and 27 days old."
+msgid "9"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3352589\n"
+"04060108.xhp\n"
+"par_id3156095\n"
+"34\n"
"help.text"
-msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"m\")</item> yields 457, he has been living for 457 months."
+msgid "6"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3452589\n"
+"04060108.xhp\n"
+"par_id3152929\n"
+"35\n"
"help.text"
-msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"d\")</item> yields 13937, he has been living for 13937 days."
+msgid "8"
msgstr ""
-#: func_datedif.xhp
+#: 04060108.xhp
msgctxt ""
-"func_datedif.xhp\n"
-"par_id3752589\n"
+"04060108.xhp\n"
+"par_id3156324\n"
+"36\n"
"help.text"
-msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"yd\")</item> yields 57, his birthday was 57 days ago."
+msgid "The statistical functions are described in the following subsections."
msgstr ""
-#: 06030200.xhp
+#: 04060108.xhp
msgctxt ""
-"06030200.xhp\n"
+"04060108.xhp\n"
+"par_id3150271\n"
+"37\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060116.xhp\" name=\"Statistical Functions in the Analysis-AddIn.\">Statistical Functions in the Analysis-AddIn</link>"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
"tit\n"
"help.text"
-msgid "Remove Precedents"
-msgstr "~Largo Paraprijësit"
+msgid "Spreadsheet Functions"
+msgstr "Funksionet statistikore"
-#: 06030200.xhp
+#: 04060109.xhp
msgctxt ""
-"06030200.xhp\n"
-"bm_id3155628\n"
+"04060109.xhp\n"
+"bm_id3148522\n"
"help.text"
-msgid "<bookmark_value>cells; removing precedents</bookmark_value><bookmark_value>formula cells;removing precedents</bookmark_value>"
+msgid "<bookmark_value>spreadsheets; functions</bookmark_value> <bookmark_value>Function Wizard; spreadsheets</bookmark_value> <bookmark_value>functions; spreadsheets</bookmark_value>"
msgstr ""
-#: 06030200.xhp
+#: 04060109.xhp
msgctxt ""
-"06030200.xhp\n"
-"hd_id3155628\n"
+"04060109.xhp\n"
+"hd_id3148522\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030200.xhp\" name=\"Remove Precedents\">Remove Precedents</link>"
-msgstr ""
+msgid "Spreadsheet Functions"
+msgstr "Funksionet statistikore"
-#: 06030200.xhp
+#: 04060109.xhp
msgctxt ""
-"06030200.xhp\n"
-"par_id3149456\n"
+"04060109.xhp\n"
+"par_id3144508\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:ClearArrowPrecedents\">Deletes one level of the trace arrows that were inserted with the <emph>Trace Precedents</emph> command.</ahelp>"
+msgid "<variable id=\"tabelletext\">This section contains descriptions of the <emph>Spreadsheet</emph> functions together with an example.</variable>"
msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"tit\n"
+"04060109.xhp\n"
+"bm_id3146968\n"
"help.text"
-msgid "AutoFormat"
-msgstr "AutoFormat"
+msgid "<bookmark_value>ADDRESS function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3149666\n"
-"1\n"
+"04060109.xhp\n"
+"hd_id3146968\n"
+"3\n"
"help.text"
-msgid "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link></variable>"
+msgid "ADDRESS"
+msgstr "ADRESA"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155762\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ADRESSE\">Returns a cell address (reference) as text, according to the specified row and column numbers.</ahelp> You can determine whether the address is interpreted as an absolute address (for example, $A$1) or as a relative address (as A1) or in a mixed form (A$1 or $A1). You can also specify the name of the sheet."
msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3145367\n"
-"2\n"
+"04060109.xhp\n"
+"par_id1027200802301348\n"
"help.text"
-msgid "<variable id=\"autoformattext\"><ahelp hid=\".\">Use this command to apply an AutoFormat to a selected sheet area or to define your own AutoFormats.</ahelp></variable>"
+msgid "For interoperability the ADDRESS and INDIRECT functions support an optional parameter to specify whether the R1C1 address notation instead of the usual A1 notation should be used."
msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3148455\n"
-"3\n"
+"04060109.xhp\n"
+"par_id1027200802301445\n"
"help.text"
-msgid "Format"
-msgstr "Formati"
+msgid "In ADDRESS, the parameter is inserted as the fourth parameter, shifting the optional sheet name parameter to the fifth position."
+msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3145799\n"
-"4\n"
+"04060109.xhp\n"
+"par_id102720080230153\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_AUTOFORMAT:LB_FORMAT\">Choose a predefined AutoFormat to apply to a selected area in your sheet.</ahelp>"
+msgid "In INDIRECT, the parameter is appended as the second parameter."
msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3149410\n"
-"5\n"
+"04060109.xhp\n"
+"par_id102720080230151\n"
"help.text"
-msgid "Add"
-msgstr "Shto"
+msgid "In both functions, if the argument is inserted with the value 0, then the R1C1 notation is used. If the argument is not given or has a value other than 0, then the A1 notation is used."
+msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3154017\n"
-"6\n"
+"04060109.xhp\n"
+"par_id1027200802301556\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_AUTOFORMAT:BTN_ADD\">Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats.</ahelp> The <link href=\"text/shared/01/05150101.xhp\" name=\"Add AutoFormat\">Add AutoFormat</link> dialog then appears."
+msgid "In case of R1C1 notation, ADDRESS returns address strings using the exclamation mark '!' as the sheet name separator, and INDIRECT expects the exclamation mark as sheet name separator. Both functions still use the dot '.' sheet name separator with A1 notation."
msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3153708\n"
-"29\n"
+"04060109.xhp\n"
+"par_id1027200802301521\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">Enter a name and click <emph>OK</emph>. </ahelp>"
+msgid "When opening documents from ODF 1.0/1.1 format, the ADDRESS functions that show a sheet name as the fourth paramater will shift that sheet name to become the fifth parameter. A new fourth parameter with the value 1 will be inserted."
msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3150044\n"
+"04060109.xhp\n"
+"par_id1027200802301650\n"
+"help.text"
+msgid "When storing a document in ODF 1.0/1.1 format, if ADDRESS functions have a fourth parameter, that parameter will be removed."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id102720080230162\n"
+"help.text"
+msgid "Do not save a spreadsheet in the old ODF 1.0/1.1 format if the ADDRESS function's new fourth parameter was used with a value of 0."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802301756\n"
+"help.text"
+msgid "The INDIRECT function is saved without conversion to ODF 1.0/1.1 format. If the second parameter was present, an older version of Calc will return an error for that function."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3151196\n"
+"5\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154707\n"
+"6\n"
+"help.text"
+msgid "ADDRESS(Row; Column; Abs; A1; \"Sheet\")"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147505\n"
"7\n"
"help.text"
-msgid "More"
-msgstr "Më shumë"
+msgid "<emph>Row</emph> represents the row number for the cell reference"
+msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3146920\n"
+"04060109.xhp\n"
+"par_id3145323\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_AUTOFORMAT:BTN_MORE\">Opens the <emph>Formatting</emph> section, which displays the formatting overrides that can be applied to the spreadsheet. Deselecting an option keeps the format of the current spreadsheet for that format type.</ahelp>"
+msgid "<emph>Column</emph> represents the column number for the cell reference (the number, not the letter)"
msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3155961\n"
+"04060109.xhp\n"
+"par_id3153074\n"
"9\n"
"help.text"
-msgid "Formatting"
-msgstr "Formatim"
+msgid "<emph>Abs</emph> determines the type of reference:"
+msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3153965\n"
+"04060109.xhp\n"
+"par_id3153298\n"
"10\n"
"help.text"
-msgid "In this section you can select or deselect the available formatting options. If you want to keep any of the settings currently in your spreadsheet, deselect the corresponding option."
-msgstr ""
+msgid "1: absolute ($A$1)"
+msgstr "Vlerë absolute"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3154021\n"
+"04060109.xhp\n"
+"par_id3150431\n"
"11\n"
"help.text"
-msgid "Number format"
-msgstr "Formati i numrit"
+msgid "2: row reference type is absolute; column reference is relative (A$1)"
+msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3159239\n"
+"04060109.xhp\n"
+"par_id3146096\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_NUMFORMAT\">When marked, specifies that you want to retain the number format of the selected format.</ahelp>"
+msgid "3: row (relative); column (absolute) ($A1)"
msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3149530\n"
+"04060109.xhp\n"
+"par_id3153334\n"
"13\n"
"help.text"
-msgid "Borders"
-msgstr "Kufinjtë"
+msgid "4: relative (A1)"
+msgstr "Madhësitë relative"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3145259\n"
+"04060109.xhp\n"
+"par_id1027200802465915\n"
+"help.text"
+msgid "<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153962\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_BORDER\">When marked, specifies that you want to retain the border of the selected format.</ahelp>"
+msgid "<emph>Sheet</emph> represents the name of the sheet. It must be placed in double quotes."
msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3154657\n"
+"04060109.xhp\n"
+"hd_id3147299\n"
"15\n"
"help.text"
-msgid "Font"
-msgstr "Fonti"
+msgid "Example:"
+msgstr "Shembull"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3152990\n"
+"04060109.xhp\n"
+"par_id3148744\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_FONT\">When marked, specifies that you want to retain the font of the selected format.</ahelp>"
+msgid "<item type=\"input\">=ADDRESS(1;1;2;;\"Sheet2\")</item> returns the following: Sheet2.A$1"
msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3155379\n"
+"04060109.xhp\n"
+"par_id3159260\n"
"17\n"
"help.text"
-msgid "Pattern"
-msgstr "Model"
+msgid "If the cell A1 in sheet 2 contains the value <item type=\"input\">-6</item>, you can refer indirectly to the referenced cell using a function in B2 by entering <item type=\"input\">=ABS(INDIRECT(B2))</item>. The result is the absolute value of the cell reference specified in B2, which in this case is 6."
+msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3150368\n"
-"18\n"
+"04060109.xhp\n"
+"bm_id3150372\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_PATTERN\">When marked, specifies that you want to retain the pattern of the selected format.</ahelp>"
-msgstr ""
+msgid "<bookmark_value>AREAS function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3146115\n"
+"04060109.xhp\n"
+"hd_id3150372\n"
"19\n"
"help.text"
-msgid "Alignment"
-msgstr "Mbështetje"
+msgid "AREAS"
+msgstr "AREAS"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3156445\n"
+"04060109.xhp\n"
+"par_id3150036\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ALIGNMENT\">When marked, specifies that you want to retain the alignment of the selected format.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_BEREICHE\">Returns the number of individual ranges that belong to a multiple range.</ahelp> A range can consist of contiguous cells or a single cell."
msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3155811\n"
+"04060109.xhp\n"
+"par_id061020090307073\n"
+"help.text"
+msgid "The function expects a single argument. If you state multiple ranges, you must enclose them into additional parentheses. Multiple ranges can be entered using the semicolon (;) as divider, but this gets automatically converted to the tilde (~) operator. The tilde is used to join ranges."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3145222\n"
"21\n"
"help.text"
-msgid "AutoFit width and height"
-msgstr "A~utoPërshtat gjerësinë dhe lartësinë"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3148703\n"
+"04060109.xhp\n"
+"par_id3155907\n"
"22\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ADJUST\">When marked, specifies that you want to retain the width and height of the selected cells of the selected format.</ahelp>"
+msgid "AREAS(Reference)"
+msgstr "Deri në referencë"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153118\n"
+"23\n"
+"help.text"
+msgid "Reference represents the reference to a cell or cell range."
+msgstr "Kthen një referencë në një qeli nga një interval i definuar."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3148891\n"
+"24\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149946\n"
+"25\n"
+"help.text"
+msgid "<item type=\"input\">=AREAS((A1:B3;F2;G1))</item> returns 3, as it is a reference to three cells and/or areas. After entry this gets converted to =AREAS((A1:B3~F2~G1))."
msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3159223\n"
+"04060109.xhp\n"
+"par_id3146820\n"
"26\n"
"help.text"
-msgid "Rename"
-msgstr "Riemëro"
+msgid "<item type=\"input\">=AREAS(All)</item> returns 1 if you have defined an area named All under <emph>Data - Define Range</emph>."
+msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3153064\n"
-"27\n"
+"04060109.xhp\n"
+"bm_id3148727\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">Opens a dialog where you can change the specification of the selected AutoFormat.</ahelp> The button is only visible if you clicked the <emph>More</emph> button."
-msgstr ""
+msgid "<bookmark_value>DDE function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3153912\n"
+"04060109.xhp\n"
+"hd_id3148727\n"
"28\n"
"help.text"
-msgid "The <emph>Rename AutoFormat</emph> dialog opens.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Enter the new name of the AutoFormat here.</ahelp>"
+msgid "DDE"
+msgstr "DDE"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149434\n"
+"29\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_DDE\">Returns the result of a DDE-based link.</ahelp> If the contents of the linked range or section changes, the returned value will also change. You must reload the spreadsheet or choose <emph>Edit - Links</emph> to see the updated links. Cross-platform links, for example from a <item type=\"productname\">%PRODUCTNAME</item> installation running on a Windows machine to a document created on a Linux machine, are not allowed."
msgstr ""
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3155264\n"
-"23\n"
+"04060109.xhp\n"
+"hd_id3150700\n"
+"30\n"
"help.text"
-msgid "More"
-msgstr "Më shumë"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 05110000.xhp
+#: 04060109.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3159094\n"
-"24\n"
+"04060109.xhp\n"
+"par_id3148886\n"
+"31\n"
"help.text"
-msgid "Closes the <emph>Formatting</emph> options section, if it is currently open."
+msgid "DDE(\"Server\"; \"File\"; \"Range\"; Mode)"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154842\n"
+"32\n"
+"help.text"
+msgid "<emph>Server</emph> is the name of a server application. <item type=\"productname\">%PRODUCTNAME</item>applications have the server name \"Soffice\"."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153034\n"
+"33\n"
+"help.text"
+msgid "<emph>File</emph> is the complete file name, including path specification."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147472\n"
+"34\n"
+"help.text"
+msgid "<emph>Range</emph> is the area containing the data to be evaluated."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3152773\n"
+"184\n"
+"help.text"
+msgid "<emph>Mode</emph> is an optional parameter that controls the method by which the DDE server converts its data into numbers."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154383\n"
+"185\n"
+"help.text"
+msgid "<emph>Mode</emph>"
+msgstr "Emri i grupit"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145146\n"
+"186\n"
+"help.text"
+msgid "<emph>Effect</emph>"
+msgstr "Vija e kompensimit 1"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154558\n"
+"187\n"
+"help.text"
+msgid "0 or missing"
+msgstr "OSE logjike"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145596\n"
+"188\n"
+"help.text"
+msgid "Number format from the \"Default\" cell style"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3152785\n"
+"189\n"
+"help.text"
+msgid "1"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154380\n"
+"190\n"
+"help.text"
+msgid "Data are always interpreted in the standard format for US English"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150279\n"
+"191\n"
+"help.text"
+msgid "2"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153775\n"
+"192\n"
+"help.text"
+msgid "Data are retrieved as text; no conversion to numbers"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3149546\n"
+"35\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148734\n"
+"36\n"
+"help.text"
+msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"sheet1.A1\")</item> reads the contents of cell A1 in sheet1 of the <item type=\"productname\">%PRODUCTNAME</item> Calc spreadsheet data1.sxc."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153081\n"
+"37\n"
+"help.text"
+msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.sxw\";\"Today's motto\")</item> returns a motto in the cell containing this formula. First, you must enter a line in the motto.sxw document containing the motto text and define it as the first line of a section named <item type=\"literal\">Today's Motto</item> (in <item type=\"productname\">%PRODUCTNAME</item> Writer under <emph>Insert - Section</emph>). If the motto is modified (and saved) in the <item type=\"productname\">%PRODUCTNAME</item> Writer document, the motto is updated in all <item type=\"productname\">%PRODUCTNAME</item> Calc cells in which this DDE link is defined."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3153114\n"
+"help.text"
+msgid "<bookmark_value>ERRORTYPE function</bookmark_value>"
+msgstr "Definon llojin e të dhënës së një vlere."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153114\n"
+"38\n"
+"help.text"
+msgid "ERRORTYPE"
+msgstr "ERRORTYPE"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148568\n"
+"39\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Returns the number corresponding to an <link href=\"text/scalc/05/02140000.xhp\" name=\"error value\">error value</link> occurring in a different cell.</ahelp> With the aid of this number, you can generate an error message text."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149877\n"
+"40\n"
+"help.text"
+msgid "The Status Bar displays the predefined error code from <item type=\"productname\">%PRODUCTNAME</item> if you click the cell containing the error."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3154327\n"
+"41\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151322\n"
+"42\n"
+"help.text"
+msgid "ERRORTYPE(Reference)"
+msgstr "Deri në referencë"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150132\n"
+"43\n"
+"help.text"
+msgid "<emph>Reference</emph> contains the address of the cell in which the error occurs."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3145248\n"
+"44\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146904\n"
+"45\n"
+"help.text"
+msgid "If cell A1 displays Err:518, the function <item type=\"input\">=ERRORTYPE(A1)</item> returns the number 518."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3151221\n"
+"help.text"
+msgid "<bookmark_value>INDEX function</bookmark_value>"
+msgstr "Indeksi i vlerës (1..30) së selektuar."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3151221\n"
+"47\n"
+"help.text"
+msgid "INDEX"
+msgstr "INDEX"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150268\n"
+"48\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_INDEX\">INDEX returns a sub range, specified by row and column number, or an optional range index. Depending on context, INDEX returns a reference or content.</ahelp>"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3156063\n"
+"49\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149007\n"
+"50\n"
+"help.text"
+msgid "INDEX(Reference; Row; Column; Range)"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153260\n"
+"51\n"
+"help.text"
+msgid "<emph>Reference</emph> is a reference, entered either directly or by specifying a range name. If the reference consists of multiple ranges, you must enclose the reference or range name in parentheses."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145302\n"
+"52\n"
+"help.text"
+msgid "<emph>Row</emph> (optional) represents the row index of the reference range, for which to return a value. In case of zero (no specific row) all referenced rows are returned."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154628\n"
+"53\n"
+"help.text"
+msgid "<emph>Column</emph> (optional) represents the column index of the reference range, for which to return a value. In case of zero (no specific column) all referenced columns are returned."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155514\n"
+"54\n"
+"help.text"
+msgid "<emph>Range</emph> (optional) represents the index of the subrange if referring to a multiple range."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3145264\n"
+"55\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3159112\n"
+"56\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX(Prices;4;1)</item> returns the value from row 4 and column 1 of the database range defined in <emph>Data - Define</emph> as <emph>Prices</emph>."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150691\n"
+"57\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4109012\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX(A1:B6;1)</item> returns a reference to the first row of A1:B6."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9272133\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX(A1:B6;0;1)</item> returns a reference to the first column of A1:B6."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3158419\n"
+"58\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148595\n"
+"59\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX(A1:B6;1;1)</item> indicates the value in the upper-left of the A1:B6 range."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9960020\n"
+"help.text"
+msgid "<item type=\"input\">=INDEX((multi);0;0;2)</item> returns a reference to the second range of the multiple range."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3153181\n"
+"help.text"
+msgid "<bookmark_value>INDIRECT function</bookmark_value>"
+msgstr "Indeksi i vlerës (1..30) së selektuar."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153181\n"
+"62\n"
+"help.text"
+msgid "INDIRECT"
+msgstr "INDIRECT"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147169\n"
+"63\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_INDIREKT\">Returns the <emph>reference</emph> specified by a text string.</ahelp> This function can also be used to return the area of a corresponding string."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153717\n"
+"64\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149824\n"
+"65\n"
+"help.text"
+msgid "INDIRECT(Ref; A1)"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154317\n"
+"66\n"
+"help.text"
+msgid "<emph>Ref</emph> represents a reference to a cell or an area (in text form) for which to return the contents."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1027200802470312\n"
+"help.text"
+msgid "<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN10CAE\n"
+"help.text"
+msgid "If you open an Excel spreadsheet that uses indirect addresses calculated from string functions, the sheet addresses will not be translated automatically. For example, the Excel address in INDIRECT(\"filename!sheetname\"&B1) is not converted into the Calc address in INDIRECT(\"filename.sheetname\"&B1)."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3150389\n"
+"67\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150608\n"
+"68\n"
+"help.text"
+msgid "<item type=\"input\">=INDIRECT(A1)</item> equals 100 if A1 contains C108 as a reference and cell C108 contains a value of <item type=\"input\">100</item>."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3083286\n"
+"181\n"
+"help.text"
+msgid "<item type=\"input\">=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3)))</item> totals the cells in the area of A1 up to the cell with the address defined by row 1 and column 3. This means that area A1:C1 is totaled."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3154818\n"
+"help.text"
+msgid "<bookmark_value>COLUMN function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3154818\n"
+"70\n"
+"help.text"
+msgid "COLUMN"
+msgstr "COLUMN"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149711\n"
+"193\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SPALTE\">Returns the column number of a cell reference.</ahelp> If the reference is a cell the column number of the cell is returned; if the parameter is a cell area, the corresponding column numbers are returned in a single-row <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"array\">array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the COLUMN function with an area reference parameter is not used for an array formula, only the column number of the first cell within the area is determined."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3149283\n"
+"72\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149447\n"
+"73\n"
+"help.text"
+msgid "COLUMN(Reference)"
+msgstr "Deri në referencë"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156310\n"
+"74\n"
+"help.text"
+msgid "<emph>Reference</emph> is the reference to a cell or cell area whose first column number is to be found."
+msgstr "Ky është teksti për të cilin do të gjindet kodi i karakterit të parë."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155837\n"
+"194\n"
+"help.text"
+msgid "If no reference is entered, the column number of the cell in which the formula is entered is found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3152932\n"
+"75\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147571\n"
+"76\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMN(A1)</item> equals 1. Column A is the first column in the table."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147079\n"
+"77\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMN(C3:E3)</item> equals 3. Column C is the third column in the table."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146861\n"
+"195\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMN(D3:G10)</item> returns 4 because column D is the fourth column in the table and the COLUMN function is not used as an array formula. (In this case, the first value of the array is always used as the result.)"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156320\n"
+"196\n"
+"help.text"
+msgid "<item type=\"input\">{=COLUMN(B2:B7)}</item> and <item type=\"input\">=COLUMN(B2:B7)</item> both return 2 because the reference only contains column B as the second column in the table. Because single-column areas have only one column number, it does not make a difference whether or not the formula is used as an array formula."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150872\n"
+"197\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMN()</item> returns 3 if the formula was entered in column C."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153277\n"
+"198\n"
+"help.text"
+msgid "<item type=\"input\">{=COLUMN(Rabbit)}</item> returns the single-row array (3, 4) if \"Rabbit\" is the named area (C1:D3)."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3154643\n"
+"help.text"
+msgid "<bookmark_value>COLUMNS function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3154643\n"
+"79\n"
+"help.text"
+msgid "COLUMNS"
+msgstr "COLUMNS"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151182\n"
+"80\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SPALTEN\">Returns the number of columns in the given reference.</ahelp>"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3149141\n"
+"81\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154047\n"
+"82\n"
+"help.text"
+msgid "COLUMNS(Array)"
+msgstr "Formula e vargut %1 R x %2 C"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154745\n"
+"83\n"
+"help.text"
+msgid "<emph>Array</emph> is the reference to a cell range whose total number of columns is to be found. The argument can also be a single cell."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153622\n"
+"84\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149577\n"
+"200\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMNS(B5)</item> returns 1 because a cell only contains one column."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145649\n"
+"85\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMNS(A1:C5)</item> equals 3. The reference comprises three columns."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155846\n"
+"201\n"
+"help.text"
+msgid "<item type=\"input\">=COLUMNS(Rabbit)</item> returns 2 if <item type=\"literal\">Rabbit</item> is the named range (C1:D3)."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3153152\n"
+"help.text"
+msgid "<bookmark_value>vertical search function</bookmark_value> <bookmark_value>VLOOKUP function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153152\n"
+"87\n"
+"help.text"
+msgid "VLOOKUP"
+msgstr "VLOOKUP"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149984\n"
+"88\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type=\"literal\">Index</item>. If the <item type=\"literal\">SortOrder</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type=\"literal\">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type=\"literal\">SortOrder</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3146898\n"
+"89\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150156\n"
+"90\n"
+"help.text"
+msgid "=VLOOKUP(SearchCriterion; Array; Index; SortOrder)"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149289\n"
+"91\n"
+"help.text"
+msgid "<emph>SearchCriterion</emph> is the value searched for in the first column of the array."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153884\n"
+"92\n"
+"help.text"
+msgid "<emph>Array</emph> is the reference, which is to comprise at least two columns."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156005\n"
+"93\n"
+"help.text"
+msgid "<emph>Index</emph> is the number of the column in the array that contains the value to be returned. The first column has the number 1."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151208\n"
+"94\n"
+"help.text"
+msgid "<emph>SortOrder</emph> is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: <emph>Error: Value Not Available</emph>."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3147487\n"
+"95\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154129\n"
+"96\n"
+"help.text"
+msgid "You want to enter the number of a dish on the menu in cell A1, and the name of the dish is to appear as text in the neighboring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains <item type=\"input\">100</item>, E1 contains the name <item type=\"input\">Vegetable Soup</item>, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional <item type=\"literal\">SortOrder</item> parameter is not necessary."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3145663\n"
+"97\n"
+"help.text"
+msgid "Enter the following formula in B1:"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151172\n"
+"98\n"
+"help.text"
+msgid "<item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149200\n"
+"99\n"
+"help.text"
+msgid "As soon as you enter a number in A1 B1 will show the corresponding text contained in the second column of reference D1:E100. Entering a nonexistent number displays the text with the next number down. To prevent this, enter FALSE as the last parameter in the formula so that an error message is generated when a nonexistent number is entered."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3153905\n"
+"help.text"
+msgid "<bookmark_value>sheet numbers; looking up</bookmark_value> <bookmark_value>SHEET function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153905\n"
+"215\n"
+"help.text"
+msgid "SHEET"
+msgstr "SHEET"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150309\n"
+"216\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TABELLE\">Returns the sheet number of a reference or a string representing a sheet name.</ahelp> If you do not enter any parameters, the result is the sheet number of the spreadsheet containing the formula."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3148564\n"
+"217\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153095\n"
+"218\n"
+"help.text"
+msgid "SHEET(Reference)"
+msgstr "Referencë e pavlefshme e fletës."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154588\n"
+"219\n"
+"help.text"
+msgid "<emph>Reference</emph> is optional and is the reference to a cell, an area, or a sheet name string."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3155399\n"
+"220\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146988\n"
+"221\n"
+"help.text"
+msgid "<item type=\"input\">=SHEET(Sheet2.A1)</item> returns 2 if Sheet2 is the second sheet in the spreadsheet document."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3148829\n"
+"help.text"
+msgid "<bookmark_value>number of sheets; function</bookmark_value> <bookmark_value>SHEETS function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3148829\n"
+"222\n"
+"help.text"
+msgid "SHEETS"
+msgstr "SHEETS"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148820\n"
+"223\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_TABELLEN\">Determines the number of sheets in a reference.</ahelp> If you do not enter any parameters, it returns the number of sheets in the current document."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3154220\n"
+"224\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150777\n"
+"225\n"
+"help.text"
+msgid "SHEETS(Reference)"
+msgstr "Deri në referencë"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153060\n"
+"226\n"
+"help.text"
+msgid "<emph>Reference</emph> is the reference to a sheet or an area. This parameter is optional."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3149766\n"
+"227\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150507\n"
+"228\n"
+"help.text"
+msgid "<item type=\"input\">=SHEETS(Sheet1.A1:Sheet3.G12)</item> returns 3 if Sheet1, Sheet2, and Sheet3 exist in the sequence indicated."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3158407\n"
+"help.text"
+msgid "<bookmark_value>MATCH function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3158407\n"
+"101\n"
+"help.text"
+msgid "MATCH"
+msgstr "MATCH"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154896\n"
+"102\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VERGLEICH\">Returns the relative position of an item in an array that matches a specified value.</ahelp> The function returns the position of the value found in the lookup_array as a number."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153834\n"
+"103\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3159152\n"
+"104\n"
+"help.text"
+msgid "MATCH(SearchCriterion; LookupArray; Type)"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149336\n"
+"105\n"
+"help.text"
+msgid "<emph>SearchCriterion</emph> is the value which is to be searched for in the single-row or single-column array."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3159167\n"
+"106\n"
+"help.text"
+msgid "<emph>LookupArray</emph> is the reference searched. A lookup array can be a single row or column, or part of a single row or column."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147239\n"
+"107\n"
+"help.text"
+msgid "<emph>Type</emph> may take the values 1, 0, or -1. If Type = 1 or if this optional parameter is missing, it is assumed that the first column of the search array is sorted in ascending order. If Type = -1 it is assumed that the column in sorted in descending order. This corresponds to the same function in Microsoft Excel."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154265\n"
+"231\n"
+"help.text"
+msgid "If Type = 0, only exact matches are found. If the search criterion is found more than once, the function returns the index of the first matching value. Only if Type = 0 can you search for regular expressions."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147528\n"
+"232\n"
+"help.text"
+msgid "If Type = 1 or the third parameter is missing, the index of the last value that is smaller or equal to the search criterion is returned. This applies even when the search array is not sorted. For Type = -1, the first value that is larger or equal is returned."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3155119\n"
+"108\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155343\n"
+"109\n"
+"help.text"
+msgid "<item type=\"input\">=MATCH(200;D1:D100)</item> searches the area D1:D100, which is sorted by column D, for the value 200. As soon as this value is reached, the number of the row in which it was found is returned. If a higher value is found during the search in the column, the number of the previous row is returned."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3158430\n"
+"help.text"
+msgid "<bookmark_value>OFFSET function</bookmark_value>"
+msgstr "Definon vlerën llogjike si PASAKTË."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3158430\n"
+"111\n"
+"help.text"
+msgid "OFFSET"
+msgstr "OFFSET"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149167\n"
+"112\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">Returns the value of a cell offset by a certain number of rows and columns from a given reference point.</ahelp>"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3146952\n"
+"113\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3159194\n"
+"114\n"
+"help.text"
+msgid "OFFSET(Reference; Rows; Columns; Height; Width)"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3152360\n"
+"115\n"
+"help.text"
+msgid "<emph>Reference</emph> is the reference from which the function searches for the new reference."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156032\n"
+"116\n"
+"help.text"
+msgid "<emph>Rows</emph> is the number of rows by which the reference was corrected up (negative value) or down."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3166458\n"
+"117\n"
+"help.text"
+msgid "<emph>Columns</emph> (optional) is the number of columns by which the reference was corrected to the left (negative value) or to the right."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150708\n"
+"118\n"
+"help.text"
+msgid "<emph>Height</emph> (optional) is the vertical height for an area that starts at the new reference position."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147278\n"
+"119\n"
+"help.text"
+msgid "<emph>Width</emph> (optional) is the horizontal width for an area that starts at the new reference position."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8662373\n"
+"help.text"
+msgid "Arguments <emph>Rows</emph> and <emph>Columns</emph> must not lead to zero or negative start row or column."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9051484\n"
+"help.text"
+msgid "Arguments <emph>Height</emph> and <emph>Width</emph> must not lead to zero or negative count of rows or columns."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN1104B\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3155586\n"
+"120\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149744\n"
+"121\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(A1;2;2)</item> returns the value in cell C3 (A1 moved by two rows and two columns down). If C3 contains the value <item type=\"input\">100</item> this function returns the value 100."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id7439802\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(B2:C3;1;1)</item> returns a reference to B2:C3 moved down by 1 row and one column to the right (C3:D4)."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3009430\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(B2:C3;-1;-1)</item> returns a reference to B2:C3 moved up by 1 row and one column to the left (A1:B2)."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id2629169\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(B2:C3;0;0;3;4)</item> returns a reference to B2:C3 resized to 3 rows and 4 columns (B2:E4)."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id6668599\n"
+"help.text"
+msgid "<item type=\"input\">=OFFSET(B2:C3;1;0;3;4)</item> returns a reference to B2:C3 moved down by one row resized to 3 rows and 4 columns (B2:E4)."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153739\n"
+"122\n"
+"help.text"
+msgid "<item type=\"input\">=SUM(OFFSET(A1;2;2;5;6))</item> determines the total of the area that starts in cell C3 and has a height of 5 rows and a width of 6 columns (area=C3:H7)."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3159273\n"
+"help.text"
+msgid "<bookmark_value>LOOKUP function</bookmark_value>"
+msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3159273\n"
+"123\n"
+"help.text"
+msgid "LOOKUP"
+msgstr "LOOKUP"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153389\n"
+"124\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp\" name=\"HLOOKUP\">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4484084\n"
+"help.text"
+msgid "If LOOKUP cannot find the search criterion, it matches the largest value in the search vector that is less than or equal to the search criterion."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3152947\n"
+"125\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154104\n"
+"126\n"
+"help.text"
+msgid "LOOKUP(SearchCriterion; SearchVector; ResultVector)"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150646\n"
+"127\n"
+"help.text"
+msgid "<emph>SearchCriterion</emph> is the value to be searched for; entered either directly or as a reference."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154854\n"
+"128\n"
+"help.text"
+msgid "<emph>SearchVector</emph> is the single-row or single-column area to be searched."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149925\n"
+"129\n"
+"help.text"
+msgid "<emph>ResultVector</emph> is another single-row or single-column range from which the result of the function is taken. The result is the cell of the result vector with the same index as the instance found in the search vector."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3148624\n"
+"130\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149809\n"
+"131\n"
+"help.text"
+msgid "<item type=\"input\">=LOOKUP(A1;D1:D100;F1:F100)</item> searches the corresponding cell in range D1:D100 for the number you entered in A1. For the instance found, the index is determined, for example, the 12th cell in this range. Then, the contents of the 12th cell are returned as the value of the function (in the result vector)."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3149425\n"
+"help.text"
+msgid "<bookmark_value>STYLE function</bookmark_value>"
+msgstr "Definon llojin e të dhënës së një vlere."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3149425\n"
+"133\n"
+"help.text"
+msgid "STYLE"
+msgstr "STYLE"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150826\n"
+"134\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3145373\n"
+"135\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149302\n"
+"136\n"
+"help.text"
+msgid "STYLE(\"Style\"; Time; \"Style2\")"
+msgstr "**Format i gabuar kohor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150596\n"
+"137\n"
+"help.text"
+msgid "<emph>Style</emph> is the name of a cell style assigned to the cell. Style names must be entered in quotation marks."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156149\n"
+"138\n"
+"help.text"
+msgid "<emph>Time</emph> is an optional time range in seconds. If this parameter is missing the style will not be changed after a certain amount of time has passed."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149520\n"
+"139\n"
+"help.text"
+msgid "<emph>Style2</emph> is the optional name of a cell style assigned to the cell after a certain amount of time has passed. If this parameter is missing \"Default\" is assumed."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN111CA\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3159254\n"
+"140\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151374\n"
+"141\n"
+"help.text"
+msgid "<item type=\"input\">=STYLE(\"Invisible\";60;\"Default\")</item> formats the cell in transparent format for 60 seconds after the document was recalculated or loaded, then the Default format is assigned. Both cell formats have to be defined beforehand."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8056886\n"
+"help.text"
+msgid "Since STYLE() has a numeric return value of zero, this return value gets appended to a string. This can be avoided using T() as in the following example"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3668935\n"
+"help.text"
+msgid "<item type=\"input\">=\"Text\"&T(STYLE(\"myStyle\"))</item>"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3042085\n"
+"help.text"
+msgid "See also CURRENT() for another example."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3150430\n"
+"help.text"
+msgid "<bookmark_value>CHOOSE function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3150430\n"
+"142\n"
+"help.text"
+msgid "CHOOSE"
+msgstr "ZGJEDH"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3143270\n"
+"143\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_WAHL\">Uses an index to return a value from a list of up to 30 values.</ahelp>"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3153533\n"
+"144\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155425\n"
+"145\n"
+"help.text"
+msgid "CHOOSE(Index; Value1; ...; Value30)"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3144755\n"
+"146\n"
+"help.text"
+msgid "<emph>Index</emph> is a reference or number between 1 and 30 indicating which value is to be taken from the list."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3149939\n"
+"147\n"
+"help.text"
+msgid "<emph>Value1...Value30</emph> is the list of values entered as a reference to a cell or as individual values."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3151253\n"
+"148\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150625\n"
+"149\n"
+"help.text"
+msgid "<item type=\"input\">=CHOOSE(A1;B1;B2;B3;\"Today\";\"Yesterday\";\"Tomorrow\")</item>, for example, returns the contents of cell B2 for A1 = 2; for A1 = 4, the function returns the text \"Today\"."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3151001\n"
+"help.text"
+msgid "<bookmark_value>HLOOKUP function</bookmark_value>"
+msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3151001\n"
+"151\n"
+"help.text"
+msgid "HLOOKUP"
+msgstr "HLOOKUP"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148688\n"
+"152\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_WVERWEIS\">Searches for a value and reference to the cells below the selected area.</ahelp> This function verifies if the first row of an array contains a certain value. The function returns then the value in a row of the array, named in the <emph>Index</emph>, in the same column."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3154661\n"
+"153\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3146070\n"
+"154\n"
+"help.text"
+msgid "HLOOKUP(SearchCriteria; Array; Index; Sorted)"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148672\n"
+"155\n"
+"help.text"
+msgid "See also:<link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> (columns and rows are exchanged)"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3147321\n"
+"help.text"
+msgid "<bookmark_value>ROW function</bookmark_value>"
+msgstr "Gabim: Vlera nuk është në dispozicion"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3147321\n"
+"157\n"
+"help.text"
+msgid "ROW"
+msgstr "ROW"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154564\n"
+"203\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZEILE\">Returns the row number of a cell reference.</ahelp> If the reference is a cell, it returns the row number of the cell. If the reference is a cell range, it returns the corresponding row numbers in a one-column <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\">Array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the ROW function with a range reference is not used in an array formula, only the row number of the first range cell will be returned."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3158439\n"
+"159\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154916\n"
+"160\n"
+"help.text"
+msgid "ROW(Reference)"
+msgstr "Deri në referencë"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3156336\n"
+"161\n"
+"help.text"
+msgid "<emph>Reference</emph> is a cell, an area, or the name of an area."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3151109\n"
+"204\n"
+"help.text"
+msgid "If you do not indicate a reference, the row number of the cell in which the formula is entered will be found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3155609\n"
+"162\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154830\n"
+"205\n"
+"help.text"
+msgid "<item type=\"input\">=ROW(B3)</item> returns 3 because the reference refers to the third row in the table."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3147094\n"
+"206\n"
+"help.text"
+msgid "<item type=\"input\">{=ROW(D5:D8)}</item> returns the single-column array (5, 6, 7, 8) because the reference specified contains rows 5 through 8."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153701\n"
+"207\n"
+"help.text"
+msgid "<item type=\"input\">=ROW(D5:D8)</item> returns 5 because the ROW function is not used as array formula and only the number of the first row of the reference is returned."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150996\n"
+"208\n"
+"help.text"
+msgid "<item type=\"input\">{=ROW(A1:E1)}</item> and <item type=\"input\">=ROW(A1:E1)</item> both return 1 because the reference only contains row 1 as the first row in the table. (Because single-row areas only have one row number it does not make any difference whether or not the formula is used as an array formula.)"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153671\n"
+"209\n"
+"help.text"
+msgid "<item type=\"input\">=ROW()</item> returns 3 if the formula was entered in row 3."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3153790\n"
+"210\n"
+"help.text"
+msgid "<item type=\"input\">{=ROW(Rabbit)}</item> returns the single-column array (1, 2, 3) if \"Rabbit\" is the named area (C1:D3)."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id3145772\n"
+"help.text"
+msgid "<bookmark_value>ROWS function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3145772\n"
+"166\n"
+"help.text"
+msgid "ROWS"
+msgstr "ROWS"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3148971\n"
+"167\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZEILEN\">Returns the number of rows in a reference or array.</ahelp>"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3156051\n"
+"168\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154357\n"
+"169\n"
+"help.text"
+msgid "ROWS(Array)"
+msgstr "Formula e vargut %1 R x %2 C"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155942\n"
+"170\n"
+"help.text"
+msgid "<emph>Array</emph> is the reference or named area whose total number of rows is to be determined."
+msgstr "Numri për të cilin shenja algjebrike do të caktohet."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3155869\n"
+"171\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3154725\n"
+"212\n"
+"help.text"
+msgid "<item type=\"input\">=Rows(B5)</item> returns 1 because a cell only contains one row."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3150102\n"
+"172\n"
+"help.text"
+msgid "<item type=\"input\">=ROWS(A10:B12)</item> returns 3."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3155143\n"
+"213\n"
+"help.text"
+msgid "<item type=\"input\">=ROWS(Rabbit)</item> returns 3 if \"Rabbit\" is the named area (C1:D3)."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id9959410\n"
+"help.text"
+msgid "<bookmark_value>HYPERLINK function</bookmark_value>"
+msgstr "Definon llojin e të dhënës së një vlere."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11798\n"
+"help.text"
+msgid "HYPERLINK"
+msgstr "Hiperlink"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN117F1\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_HYPERLINK\">When you click a cell that contains the HYPERLINK function, the hyperlink opens.</ahelp>"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11800\n"
+"help.text"
+msgid "If you use the optional <emph>CellText</emph> parameter, the formula locates the URL, and then displays the text or number."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11803\n"
+"help.text"
+msgid "To open a hyperlinked cell with the keyboard, select the cell, press F2 to enter the Edit mode, move the cursor in front of the hyperlink, press Shift+F10, and then choose <emph>Open Hyperlink</emph>."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN1180A\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN1180E\n"
+"help.text"
+msgid "HYPERLINK(\"URL\") or HYPERLINK(\"URL\"; \"CellText\")"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11811\n"
+"help.text"
+msgid "<emph>URL</emph> specifies the link target. The optional <emph>CellText</emph> parameter is the text or a number that is displayed in the cell and will be returned as the result. If the <emph>CellText</emph> parameter is not specified, the <emph>URL</emph> is displayed in the cell text and will be returned as the result."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id0907200912224576\n"
+"help.text"
+msgid "The number 0 is returned for empty cells and matrix elements."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11823\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11827\n"
+"help.text"
+msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN1182A\n"
+"help.text"
+msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Click here\")</item> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id0907200912224534\n"
+"help.text"
+msgid "=HYPERLINK(\"http://www.example.org\";12345) displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN1182D\n"
+"help.text"
+msgid "<item type=\"input\">=HYPERLINK($B4)</item> where cell B4 contains <item type=\"input\">http://www.example.org</item>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_idN11830\n"
+"help.text"
+msgid "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</item> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8859523\n"
+"help.text"
+msgid "<item type=\"input\">=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</item> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id2958769\n"
+"help.text"
+msgid "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item>displays the text Go to Writer bookmark, loads the specified text document and jumps to bookmark \"Specification\"."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"bm_id7682424\n"
+"help.text"
+msgid "<bookmark_value>GETPIVOTDATA function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3747062\n"
+"help.text"
+msgid "GETPIVOTDATA"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3593859\n"
+"help.text"
+msgid "<ahelp hid=\".\">The GETPIVOTDATA function returns a result value from a pivot table. The value is addressed using field and item names, so it remains valid if the layout of the pivot table changes.</ahelp>"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id9741508\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id909451\n"
+"help.text"
+msgid "Two different syntax definitions can be used:"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1665089\n"
+"help.text"
+msgid "GETPIVOTDATA(TargetField; pivot table; [ Field 1; Item 1; ... ])"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4997100\n"
+"help.text"
+msgid "GETPIVOTDATA(pivot table; Constraints)"
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id1672109\n"
+"help.text"
+msgid "The second syntax is assumed if exactly two parameters are given, of which the first parameter is a cell or cell range reference. The first syntax is assumed in all other cases. The Function Wizard shows the first syntax."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id9464094\n"
+"help.text"
+msgid "First Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9302346\n"
+"help.text"
+msgid "<emph>TargetField</emph> is a string that selects one of the pivot table's data fields. The string can be the name of the source column, or the data field name as shown in the table (like \"Sum - Sales\")."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8296151\n"
+"help.text"
+msgid "<emph>pivot table</emph> is a reference to a cell or cell range that is positioned within a pivot table or contains a pivot table. If the cell range contains several pivot tables, the table that was created last is used."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4809411\n"
+"help.text"
+msgid "If no <emph>Field n / Item n</emph> pairs are given, the grand total is returned. Otherwise, each pair adds a constraint that the result must satisfy. <emph>Field n</emph> is the name of a field from the pivot table. <emph>Item n</emph> is the name of an item from that field."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id6454969\n"
+"help.text"
+msgid "If the pivot table contains only a single result value that fulfills all of the constraints, or a subtotal result that summarizes all matching values, that result is returned. If there is no matching result, or several ones without a subtotal for them, an error is returned. These conditions apply to results that are included in the pivot table."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id79042\n"
+"help.text"
+msgid "If the source data contains entries that are hidden by settings of the pivot table, they are ignored. The order of the Field/Item pairs is not significant. Field and item names are not case-sensitive."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id7928708\n"
+"help.text"
+msgid "If no constraint for a page field is given, the field's selected value is implicitly used. If a constraint for a page field is given, it must match the field's selected value, or an error is returned. Page fields are the fields at the top left of a pivot table, populated using the \"Page Fields\" area of the pivot table layout dialog. From each page field, an item (value) can be selected, which means only that item is included in the calculation."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3864253\n"
+"help.text"
+msgid "Subtotal values from the pivot table are only used if they use the function \"auto\" (except when specified in the constraint, see <item type=\"literal\">Second Syntax</item> below)."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"hd_id3144016\n"
+"help.text"
+msgid "Second Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id9937131\n"
+"help.text"
+msgid "<emph>pivot table</emph> has the same meaning as in the first syntax."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id5616626\n"
+"help.text"
+msgid "<emph>Constraints</emph> is a space-separated list. Entries can be quoted (single quotes). The whole string must be enclosed in quotes (double quotes), unless you reference the string from another cell."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id4076357\n"
+"help.text"
+msgid "One of the entries can be the data field name. The data field name can be left out if the pivot table contains only one data field, otherwise it must be present."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id8231757\n"
+"help.text"
+msgid "Each of the other entries specifies a constraint in the form <item type=\"literal\">Field[Item]</item> (with literal characters [ and ]), or only <item type=\"literal\">Item</item> if the item name is unique within all fields that are used in the pivot table."
+msgstr ""
+
+#: 04060109.xhp
+msgctxt ""
+"04060109.xhp\n"
+"par_id3168736\n"
+"help.text"
+msgid "A function name can be added in the form <emph>Field[Item;Function]</emph>, which will cause the constraint to match only subtotal values which use that function. The possible function names are Sum, Count, Average, Max, Min, Product, Count (Numbers only), StDev (Sample), StDevP (Population), Var (Sample), and VarP (Population), case-insensitive."
msgstr ""
#: 04060110.xhp
@@ -32557,7 +23951,6 @@ msgid "<bookmark_value>decimal system; converting to</bookmark_value>"
msgstr ""
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id3156399\n"
@@ -32575,7 +23968,6 @@ msgid "<bookmark_value>binary system; converting to</bookmark_value>"
msgstr ""
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id3157871\n"
@@ -32593,7 +23985,6 @@ msgid "<bookmark_value>hexadecimal system; converting to</bookmark_value>"
msgstr ""
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id3145226\n"
@@ -33091,7 +24482,6 @@ msgid "<item type=\"input\">=DOLLAR(367.456;2)</item> returns $367.46. Use the d
msgstr ""
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"bm_id3150685\n"
@@ -33804,7 +25194,6 @@ msgid "Example"
msgstr "Shembull"
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"par_id3155364\n"
@@ -33814,7 +25203,6 @@ msgid "<item type=\"input\">=PROPER(\"open office\")</item> returns Open Office.
msgstr "Hyrja e karaktereve alfanumerike"
#: 04060110.xhp
-#, fuzzy
msgctxt ""
"04060110.xhp\n"
"bm_id3149171\n"
@@ -34426,7 +25814,7 @@ msgctxt ""
"140\n"
"help.text"
msgid "T"
-msgstr "T"
+msgstr ""
#: 04060110.xhp
msgctxt ""
@@ -34901,3161 +26289,8721 @@ msgctxt ""
msgid "<item type=\"input\">=VALUE(\"4321\")</item> returns 4321."
msgstr "Hyrja e karaktereve alfanumerike"
-#: 04020000.xhp
-#, fuzzy
+#: 04060111.xhp
msgctxt ""
-"04020000.xhp\n"
+"04060111.xhp\n"
"tit\n"
"help.text"
-msgid "Insert Cells"
-msgstr "Futi Qelitë"
+msgid "Add-in Functions"
+msgstr "Gabim: Nuk është gjetur Add-in"
-#: 04020000.xhp
+#: 04060111.xhp
msgctxt ""
-"04020000.xhp\n"
-"bm_id3156023\n"
+"04060111.xhp\n"
+"bm_id3150870\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; inserting cells</bookmark_value><bookmark_value>cells; inserting</bookmark_value><bookmark_value>inserting; cells</bookmark_value>"
+msgid "<bookmark_value>add-ins; functions</bookmark_value><bookmark_value>functions; add-in functions</bookmark_value><bookmark_value>Function Wizard; add-ins</bookmark_value>"
msgstr ""
-#: 04020000.xhp
-#, fuzzy
+#: 04060111.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3156023\n"
+"04060111.xhp\n"
+"hd_id3150870\n"
"1\n"
"help.text"
-msgid "Insert Cells"
-msgstr "Futi Qelitë"
+msgid "Add-in Functions"
+msgstr "Gabim: Nuk është gjetur Add-in"
-#: 04020000.xhp
+#: 04060111.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3150542\n"
+"04060111.xhp\n"
+"par_id3147427\n"
"2\n"
"help.text"
-msgid "<variable id=\"zelleneinfuegentext\"><ahelp hid=\".uno:InsertCell\">Opens the<emph> Insert Cells </emph>dialog, in which you can insert new cells according to the options that you specify.</ahelp></variable> You can delete cells by choosing <link href=\"text/scalc/01/02160000.xhp\" name=\"Edit - Delete Cells\"><emph>Edit - Delete Cells</emph></link>."
+msgid "<variable id=\"addintext\">The following describes and lists some of the available add-in functions. </variable>"
msgstr ""
-#: 04020000.xhp
+#: 04060111.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3153768\n"
+"04060111.xhp\n"
+"par_id3163713\n"
+"75\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Add-in concept</link>"
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146120\n"
+"5\n"
+"help.text"
+msgid "You will also find a <link href=\"text/scalc/01/04060112.xhp\">description of the $[officename] Calc add-in interface</link> in the Help. In addition, important functions and their parameters are described in the Help for the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>$[officename] Calc add-in DLL</defaultinline></switchinline>."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3151075\n"
+"7\n"
+"help.text"
+msgid "Add-ins supplied"
+msgstr "Shtesat ç'kyqur"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3156285\n"
+"8\n"
+"help.text"
+msgid "$[officename] contains examples for the add-in interface of $[officename] Calc."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3159267\n"
+"76\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060115.xhp\">Analysis Functions Part One</link>"
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3154703\n"
+"77\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060116.xhp\">Analysis Functions Part Two</link>"
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3149566\n"
+"help.text"
+msgid "<bookmark_value>ISLEAPYEAR function</bookmark_value><bookmark_value>leap year determination</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3149566\n"
+"14\n"
+"help.text"
+msgid "ISLEAPYEAR"
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150297\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\".\">Determines whether a year is a leap year.</ahelp> If yes, the function will return the value 1 (TRUE); if not, it will return 0 (FALSE)."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3148487\n"
+"16\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150205\n"
+"17\n"
+"help.text"
+msgid "ISLEAPYEAR(\"Date\")"
+msgstr "Data (caktuar)"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3159239\n"
+"18\n"
+"help.text"
+msgid "<emph>Date</emph> specifies whether a given date falls within a leap year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3149817\n"
+"19\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150786\n"
+"20\n"
+"help.text"
+msgid "=ISLEAPYEAR(A1) returns 1, if A1 contains 1968-02-29, the valid date 29th of February 1968 in your locale setting."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_idN107E7\n"
+"help.text"
+msgid "You may also use =ISLEAPYEAR(\"1968-02-29\") or =ISLEAPYEAR(\"2/29/68\")."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_idN107EA\n"
+"help.text"
+msgid "Never use =ISLEAPYEAR(2/29/68), because this would first evaluate 2 divided by 29 divided by 68, and then calculate the ISLEAPYEAR function from this small number as a serial date number."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3154656\n"
+"help.text"
+msgid "<bookmark_value>YEARS function</bookmark_value><bookmark_value>number of years between two dates</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3154656\n"
+"21\n"
+"help.text"
+msgid "YEARS"
+msgstr "VITI"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150886\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Calculates the difference in years between two dates.</ahelp>"
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3154370\n"
+"23\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146114\n"
+"24\n"
+"help.text"
+msgid "YEARS(StartDate; EndDate; Type)"
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3145387\n"
+"25\n"
+"help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr "Data kur pwrfundon periudha e parw"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3156290\n"
+"26\n"
+"help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr "Grup të dhënash në file"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3152893\n"
+"27\n"
+"help.text"
+msgid "<emph>Type</emph> calculates the type of difference. Possible values are 0 (interval) and 1 (in calendar years)."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3152898\n"
+"help.text"
+msgid "<bookmark_value>MONTHS function</bookmark_value><bookmark_value>number of months between two dates</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3152898\n"
+"28\n"
+"help.text"
+msgid "MONTHS"
+msgstr "Muaj"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153066\n"
+"29\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Calculates the difference in months between two dates.</ahelp>"
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3151240\n"
+"30\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146869\n"
+"31\n"
+"help.text"
+msgid "MONTHS(StartDate; EndDate; Type)"
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3145075\n"
+"32\n"
+"help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr "Data kur pwrfundon periudha e parw"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3157981\n"
+"33\n"
+"help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr "Grup të dhënash në file"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150111\n"
+"34\n"
+"help.text"
+msgid "<emph>Type</emph> calculates the type of difference. Possible values include 0 (interval) and 1 (in calendar months)."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3159094\n"
+"help.text"
+msgid "<bookmark_value>ROT13 function</bookmark_value><bookmark_value>encrypting text</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3159094\n"
+"35\n"
+"help.text"
+msgid "ROT13"
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146781\n"
+"36\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_ROT13\">Encrypts a character string by moving the characters 13 positions in the alphabet.</ahelp> After the letter Z, the alphabet begins again (Rotation). By applying the encryption function again to the resulting code, you can decrypt the text."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3150893\n"
+"37\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3159205\n"
+"38\n"
+"help.text"
+msgid "ROT13(Text)"
+msgstr "Vizato tekstin"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153249\n"
+"39\n"
+"help.text"
+msgid "<emph>Text</emph> is the character string to be encrypted. ROT13(ROT13(Text)) decrypts the code."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3151300\n"
+"help.text"
+msgid "<bookmark_value>DAYSINYEAR function</bookmark_value><bookmark_value>number of days; in a specific year</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3151300\n"
+"43\n"
+"help.text"
+msgid "DAYSINYEAR"
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3143220\n"
+"44\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">Calculates the number of days of the year in which the date entered occurs.</ahelp>"
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3145358\n"
+"45\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3154651\n"
+"46\n"
+"help.text"
+msgid "DAYSINYEAR(Date)"
+msgstr "Data (caktuar)"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153803\n"
+"47\n"
+"help.text"
+msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3153487\n"
+"48\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153811\n"
+"49\n"
+"help.text"
+msgid "=DAYSINYEAR(A1) returns 366 days if A1 contains 1968-02-29, a valid date for the year 1968."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3154737\n"
+"help.text"
+msgid "<bookmark_value>DAYSINMONTH function</bookmark_value><bookmark_value>number of days;in a specific month of a year</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3154737\n"
+"50\n"
+"help.text"
+msgid "DAYSINMONTH"
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3149316\n"
+"51\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">Calculates the number of days of the month in which the date entered occurs.</ahelp>"
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3145114\n"
+"52\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3150955\n"
+"53\n"
+"help.text"
+msgid "DAYSINMONTH(Date)"
+msgstr "Data (caktuar)"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3147501\n"
+"54\n"
+"help.text"
+msgid "<emph>Date</emph> is any date in the respective month of the desired year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3149871\n"
+"55\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3155742\n"
+"56\n"
+"help.text"
+msgid "=DAYSINMONTH(A1) returns 29 days if A1 contains 1968-02-17, a valid date for February 1968."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3149048\n"
+"help.text"
+msgid "<bookmark_value>WEEKS function</bookmark_value><bookmark_value>number of weeks;between two dates</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3149048\n"
+"57\n"
+"help.text"
+msgid "WEEKS"
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3153340\n"
+"58\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">Calculates the difference in weeks between two dates.</ahelp>"
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3150393\n"
+"59\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3147402\n"
+"60\n"
+"help.text"
+msgid "WEEKS(StartDate; EndDate; Type)"
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3151387\n"
+"61\n"
+"help.text"
+msgid "<emph>StartDate</emph> is the first date"
+msgstr "Data kur pwrfundon periudha e parw"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3146324\n"
+"62\n"
+"help.text"
+msgid "<emph>EndDate</emph> is the second date"
+msgstr "Grup të dhënash në file"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3166467\n"
+"63\n"
+"help.text"
+msgid "<emph>Type</emph> calculates the type of difference. The possible values are 0 (interval) and 1 (in numbers of weeks)."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"bm_id3145237\n"
+"help.text"
+msgid "<bookmark_value>WEEKSINYEAR function</bookmark_value><bookmark_value>number of weeks;in a specific year</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3145237\n"
+"64\n"
+"help.text"
+msgid "WEEKSINYEAR"
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3147410\n"
+"65\n"
+"help.text"
+msgid "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">Calculates the number of weeks of the year in which the date entered occurs.</ahelp> The number of weeks is defined as follows: a week that spans two years is added to the year in which most days of that week occur."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3149719\n"
+"66\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3145638\n"
+"67\n"
+"help.text"
+msgid "WEEKSINYEAR(Date)"
+msgstr "Data (caktuar)"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3149946\n"
+"68\n"
+"help.text"
+msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3150037\n"
+"69\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3147614\n"
+"70\n"
+"help.text"
+msgid "WEEKSINYEAR(A1) returns 53 if A1 contains 1970-02-17, a valid date for the year 1970."
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"hd_id3157901\n"
+"72\n"
+"help.text"
+msgid "Add-ins through %PRODUCTNAME API"
+msgstr ""
+
+#: 04060111.xhp
+msgctxt ""
+"04060111.xhp\n"
+"par_id3149351\n"
+"73\n"
+"help.text"
+msgid "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"http://api.libreoffice.org/\">API</link>."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"tit\n"
+"help.text"
+msgid "Add-in for Programming in $[officename] Calc"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"bm_id3151076\n"
+"help.text"
+msgid "<bookmark_value>programming; add-ins</bookmark_value><bookmark_value>shared libraries; programming</bookmark_value><bookmark_value>external DLL functions</bookmark_value><bookmark_value>functions; $[officename] Calc add-in DLL</bookmark_value><bookmark_value>add-ins; for programming</bookmark_value>"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3151076\n"
+"1\n"
+"help.text"
+msgid "Add-in for Programming in $[officename] Calc"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147001\n"
+"220\n"
+"help.text"
+msgid "The method of extending Calc by Add-Ins that is described in the following is outdated. The interfaces are still valid and supported, to ensure compatibility with existing Add-Ins, but for programming new Add-Ins you should use the new <link href=\"text/shared/guide/integratinguno.xhp\" name=\"API functions\">API functions</link>."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150361\n"
+"2\n"
+"help.text"
+msgid "$[officename] Calc can be expanded by Add-Ins, which are external programming modules providing additional functions for working with spreadsheets. These are listed in the <emph>Function Wizard</emph> in the <emph>Add-In</emph> category. If you would like to program an Add-In yourself, you can learn here which functions must be exported by the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>external DLL</defaultinline></switchinline> so that the Add-In can be successfully attached."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149211\n"
"3\n"
"help.text"
-msgid "Selection"
-msgstr "Selektimet"
+msgid "$[officename] searches the Add-in folder defined in the configuration for a suitable <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline>. To be recognized by $[officename], the <switchinline select=\"sys\"><caseinline select=\"UNIX\">shared library </caseinline><defaultinline>DLL</defaultinline></switchinline> must have certain properties, as explained in the following. This information allows you to program your own Add-In for <emph>Function Wizard</emph> of $[officename] Calc."
+msgstr ""
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3149262\n"
+"04060112.xhp\n"
+"hd_id3146981\n"
"4\n"
"help.text"
-msgid "This area contains the options available for inserting cells into a sheet. The cell quantity and position is defined by selecting a cell range in the sheet beforehand."
-msgstr ""
+msgid "The Add-In Concept"
+msgstr "Gabim: Nuk është gjetur Add-in"
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3146120\n"
+"04060112.xhp\n"
+"par_id3156292\n"
"5\n"
"help.text"
-msgid "Shift cells down"
-msgstr "Ndërro qelitë ~teposhtë"
+msgid "Each Add-In library provides several functions. Some functions are used for administrative purposes. You can choose almost any name for your own functions. However, they must also follow certain rules regarding parameter passing. The exact naming and calling conventions vary for different platforms."
+msgstr ""
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3152596\n"
+"04060112.xhp\n"
+"hd_id3152890\n"
"6\n"
"help.text"
-msgid "<variable id=\"zellenuntentext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSDOWN\">Moves the contents of the selected range downward when cells are inserted.</ahelp></variable>"
+msgid "Functions of <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>AddIn DLL</defaultinline></switchinline>"
msgstr ""
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3147434\n"
+"04060112.xhp\n"
+"par_id3148837\n"
"7\n"
"help.text"
-msgid "Shift cells right"
-msgstr "Ndërro qelitë ~djathtas"
+msgid "At a minimum, the administrative functions <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionCount\">GetFunctionCount</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> must exist. Using these, the functions as well as parameter types and return values can be determined. As return values, the Double and String types are supported. As parameters, additionally the cell areas <link href=\"text/scalc/01/04060112.xhp\" name=\"Double Array\">Double Array</link>, <link href=\"text/scalc/01/04060112.xhp\" name=\"String Array\">String Array</link>, and <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell Array\">Cell Array</link> are supported."
+msgstr ""
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3144764\n"
+"04060112.xhp\n"
+"par_id3148604\n"
"8\n"
"help.text"
-msgid "<variable id=\"zellenrechtstext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_CELLSRIGHT\">Moves the contents of the selected range to the right when cells are inserted.</ahelp></variable>"
+msgid "Parameters are passed using references. Therefore, a change of these values is basically possible. However, this is not supported in $[officename] Calc because it does not make sense within spreadsheets."
msgstr ""
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3153877\n"
+"04060112.xhp\n"
+"par_id3150112\n"
"9\n"
"help.text"
-msgid "Entire row"
-msgstr "Fshiej tërë rreshtin(-at)"
+msgid "Libraries can be reloaded during runtime and their contents can be analyzed by the administrative functions. For each function, information is available about count and type of parameters, internal and external function names and an administrative number."
+msgstr ""
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3155417\n"
+"04060112.xhp\n"
+"par_id3155269\n"
"10\n"
"help.text"
-msgid "<variable id=\"zeilenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSROWS\">Inserts an entire row. The position of the row is determined by the selection on the sheet.</ahelp></variable> The number of rows inserted depends on how many rows are selected. The contents of the original rows are moved downward."
+msgid "The functions are called synchronously and return their results immediately. Real time functions (asynchronous functions) are also possible; however, they are not explained in detail because of their complexity."
msgstr ""
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3146971\n"
+"04060112.xhp\n"
+"hd_id3145077\n"
"11\n"
"help.text"
-msgid "Entire column"
-msgstr "Tërë ~shtylla"
+msgid "General information about the interface"
+msgstr ""
-#: 04020000.xhp
+#: 04060112.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3155068\n"
+"04060112.xhp\n"
+"par_id3146776\n"
"12\n"
"help.text"
-msgid "<variable id=\"spaltenganzetext\"><ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCELL:BTN_INSCOLS\">Inserts an entire column. The number of columns to be inserted is determined by the selected number of columns.</ahelp></variable> The contents of the original columns are shifted to the right."
+msgid "The maximum number of parameters in an Add-In function attached to $[officename] Calc is 16: one return value and a maximum of 15 function input parameters."
msgstr ""
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"tit\n"
+"04060112.xhp\n"
+"par_id3149899\n"
+"13\n"
"help.text"
-msgid "Rename Sheet"
-msgstr "Riemroni Fletën"
+msgid "The data types are defined as follows:"
+msgstr ""
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"bm_id3147336\n"
+"04060112.xhp\n"
+"par_id3151302\n"
+"14\n"
"help.text"
-msgid "<bookmark_value>worksheet names</bookmark_value><bookmark_value>changing; sheet names</bookmark_value><bookmark_value>sheets; renaming</bookmark_value>"
+msgid "<emph>Data types</emph>"
+msgstr "Shto të dhënat si:"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3143222\n"
+"15\n"
+"help.text"
+msgid "<emph>Definition</emph>"
+msgstr "Dyfisho definicionin"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149384\n"
+"16\n"
+"help.text"
+msgid "CALLTYPE"
msgstr ""
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"hd_id3147336\n"
-"1\n"
+"04060112.xhp\n"
+"par_id3146963\n"
+"17\n"
"help.text"
-msgid "Rename Sheet"
-msgstr "Riemroni Fletën"
+msgid "Under Windows: FAR PASCAL (_far _pascal)"
+msgstr ""
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"par_id3150792\n"
-"2\n"
+"04060112.xhp\n"
+"par_id3153809\n"
+"18\n"
"help.text"
-msgid "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">This command opens a dialog where you can assign a different name to the current sheet.</ahelp></variable>"
+msgid "Other: default (operating system specific default)"
msgstr ""
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"hd_id3153968\n"
-"3\n"
+"04060112.xhp\n"
+"par_id3154734\n"
+"19\n"
"help.text"
-msgid "Name"
-msgstr "Emri"
+msgid "USHORT"
+msgstr ""
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"par_id3155131\n"
+"04060112.xhp\n"
+"par_id3155760\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_APPEND_NAME\">Enter a new name for the sheet here.</ahelp>"
+msgid "2 Byte unsigned Integer"
+msgstr "Numri i plotë për orë"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145320\n"
+"21\n"
+"help.text"
+msgid "DOUBLE"
+msgstr "Dyfish"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150956\n"
+"22\n"
+"help.text"
+msgid "8 byte platform-dependent format"
msgstr ""
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"par_id3153092\n"
-"5\n"
+"04060112.xhp\n"
+"par_id3146097\n"
+"23\n"
"help.text"
-msgid "You can also open the<emph> Rename Sheet </emph>dialog through the context menu by positioning the mouse pointer over a sheet tab at the bottom of the window and <switchinline select=\"sys\"><caseinline select=\"MAC\">clicking while pressing Control</caseinline><defaultinline>clicking the right mouse button</defaultinline></switchinline>."
+msgid "Paramtype"
msgstr ""
-#: 05050100.xhp
+#: 04060112.xhp
msgctxt ""
-"05050100.xhp\n"
-"par_id3147396\n"
-"6\n"
+"04060112.xhp\n"
+"par_id3150432\n"
+"24\n"
"help.text"
-msgid "Alternatively, click the sheet tab while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Alt</defaultinline></switchinline> key. Now you can change the name directly. <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
+msgid "Platform-dependent like int"
msgstr ""
-#: 06060000.xhp
+#: 04060112.xhp
msgctxt ""
-"06060000.xhp\n"
-"tit\n"
+"04060112.xhp\n"
+"par_id3153955\n"
+"25\n"
"help.text"
-msgid "Protect Document"
-msgstr "Mbroj Dokumentin"
+msgid "PTR_DOUBLE =0 pointer to a double"
+msgstr "Kliko-dyherë të editosh tekstin"
-#: 06060000.xhp
+#: 04060112.xhp
msgctxt ""
-"06060000.xhp\n"
-"hd_id3148946\n"
-"1\n"
+"04060112.xhp\n"
+"par_id3159262\n"
+"26\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06060000.xhp\" name=\"Protect Document\">Protect Document</link>"
+msgid "PTR_STRING =1 pointer to a zero-terminated string"
msgstr ""
-#: 06060000.xhp
+#: 04060112.xhp
msgctxt ""
-"06060000.xhp\n"
-"par_id3153362\n"
-"2\n"
+"04060112.xhp\n"
+"par_id3148747\n"
+"27\n"
"help.text"
-msgid "The<emph> Protect Document </emph>command prevents changes from being made to cells in the sheets or to sheets in a document. As an option, you can define a password. If a password is defined, removal of the protection is only possible if the user enters the correct password."
+msgid "PTR_DOUBLE_ARR =2 pointer to a double array"
msgstr ""
-#: 06060000.xhp
+#: 04060112.xhp
msgctxt ""
-"06060000.xhp\n"
-"hd_id3147228\n"
-"3\n"
+"04060112.xhp\n"
+"par_id3147406\n"
+"28\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\">Sheets</link>"
+msgid "PTR_STRING_ARR =3 pointer to a string array"
msgstr ""
-#: 06060000.xhp
+#: 04060112.xhp
msgctxt ""
-"06060000.xhp\n"
-"hd_id3153768\n"
-"4\n"
+"04060112.xhp\n"
+"par_id3151392\n"
+"29\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\">Documents</link>"
+msgid "PTR_CELL_ARR =4 pointer to a cell array"
msgstr ""
-#: 06060000.xhp
+#: 04060112.xhp
msgctxt ""
-"06060000.xhp\n"
-"par_idN10622\n"
+"04060112.xhp\n"
+"par_id3153028\n"
+"30\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/guide/cell_protect.xhp#cell_protect\"/>"
+msgid "NONE =5"
+msgstr "Asnjë"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3156396\n"
+"31\n"
+"help.text"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"tit\n"
+"04060112.xhp\n"
+"par_id3153019\n"
+"32\n"
"help.text"
-msgid "Bit Operation Functions"
+msgid "Following you will find a description of those functions, which are called at the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>external DLL</defaultinline></switchinline>."
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4149052\n"
-"1\n"
+"04060112.xhp\n"
+"par_id3150038\n"
+"33\n"
"help.text"
-msgid "Bit Operation Functions"
+msgid "For all <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline> functions, the following applies:"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"bm_id4150026\n"
+"04060112.xhp\n"
+"par_id3157876\n"
+"34\n"
"help.text"
-msgid "<bookmark_value>BITAND function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "void CALLTYPE fn(out, in1, in2, ...)"
+msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4150026\n"
-"238\n"
+"04060112.xhp\n"
+"par_id3147616\n"
+"35\n"
"help.text"
-msgid "BITAND"
+msgid "Output: Resulting value"
+msgstr "Vlerë në zvoglim e kryerreshtit"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159119\n"
+"36\n"
+"help.text"
+msgid "Input: Any number of types (double&, char*, double*, char**, Cell area), where the <link href=\"text/scalc/01/04060112.xhp\" name=\"Cell area\">Cell area</link> is an array of types double array, string array, or cell array."
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4146942\n"
-"239\n"
+"04060112.xhp\n"
+"hd_id3150653\n"
+"37\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITAND\">Returns a bitwise logical \"and\" of the parameters.</ahelp>"
+msgid "GetFunctionCount()"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4150459\n"
-"240\n"
+"04060112.xhp\n"
+"par_id3152981\n"
+"38\n"
"help.text"
-msgid "Syntax"
+msgid "Returns the number of functions without the management functions of the reference parameter. Each function has a unique number between 0 and nCount-1. This number will be needed for the <link href=\"text/scalc/01/04060112.xhp\" name=\"GetFunctionData\">GetFunctionData</link> and <link href=\"text/scalc/01/04060112.xhp\" name=\"GetParameterDescription\">GetParameterDescription</link> functions later."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150742\n"
+"39\n"
+"help.text"
+msgid "<emph>Syntax</emph>"
msgstr "**Gabim Sintaksor**"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4146878\n"
-"241\n"
+"04060112.xhp\n"
+"par_id3148728\n"
+"40\n"
"help.text"
-msgid "BITAND(number1; number2)"
+msgid "void CALLTYPE GetFunctionCount(USHORT& nCount)"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4151228\n"
-"242\n"
+"04060112.xhp\n"
+"par_id3154677\n"
+"41\n"
"help.text"
-msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgid "<emph>Parameter</emph>"
+msgstr "Parametri i sllajdit"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146940\n"
+"42\n"
+"help.text"
+msgid "USHORT &nCount:"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4148582\n"
-"248\n"
+"04060112.xhp\n"
+"par_id3149893\n"
+"43\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Output: Reference to a variable, which is supposed to contain the number of Add-In functions. For example: If the Add-In provides 5 functions for $[officename] Calc, then nCount=5."
+msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4149246\n"
-"250\n"
+"04060112.xhp\n"
+"hd_id3147476\n"
+"44\n"
"help.text"
-msgid "<item type=\"input\">=BITAND(6;10)</item> returns 2 (0110 & 1010 = 0010)."
+msgid "GetFunctionData()"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"bm_id4146139\n"
+"04060112.xhp\n"
+"par_id3154841\n"
+"45\n"
"help.text"
-msgid "<bookmark_value>BITOR function</bookmark_value>"
-msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+msgid "Determines all the important information about an Add-In function."
+msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4146139\n"
-"252\n"
+"04060112.xhp\n"
+"par_id3148888\n"
+"46\n"
"help.text"
-msgid "BITOR"
+msgid "<emph>Syntax</emph>"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148434\n"
+"47\n"
+"help.text"
+msgid "void CALLTYPE GetFunctionData(USHORT& nNo, char* pFuncName, USHORT& nParamCount, Paramtype* peType, char* pInternalName)"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4150140\n"
-"253\n"
+"04060112.xhp\n"
+"par_id3149253\n"
+"48\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITOR\">Returns a bitwise logical \"or\" of the parameters.</ahelp>"
+msgid "<emph>Parameter</emph>"
+msgstr "Parametri i sllajdit"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149686\n"
+"49\n"
+"help.text"
+msgid "USHORT& nNo:"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4149188\n"
-"254\n"
+"04060112.xhp\n"
+"par_id3149949\n"
+"50\n"
"help.text"
-msgid "Syntax"
+msgid "Input: Function number between 0 and nCount-1, inclusively."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149546\n"
+"51\n"
+"help.text"
+msgid "char* pFuncName:"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148579\n"
+"52\n"
+"help.text"
+msgid "Output: Function name as seen by the programmer, as it is named in the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>DLL</defaultinline></switchinline>. This name does not determine the name used in the <emph>Function Wizard</emph>."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153935\n"
+"53\n"
+"help.text"
+msgid "USHORT& nParamCount:"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150142\n"
+"54\n"
+"help.text"
+msgid "Output: Number of parameters in AddIn function. This number must be greater than 0, because there is always a result value; the maximum value is 16."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145143\n"
+"55\n"
+"help.text"
+msgid "Paramtype* peType:"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148750\n"
+"56\n"
+"help.text"
+msgid "Output: Pointer to an array of exactly 16 variables of type Paramtype. The first nParamCount entries are filled with the suitable type of parameter."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153078\n"
+"57\n"
+"help.text"
+msgid "char* pInternalName:"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155261\n"
+"58\n"
+"help.text"
+msgid "Output: Function name as seen by the user, as it appears in the <emph>Function Wizard</emph>. May contain umlauts."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153327\n"
+"59\n"
+"help.text"
+msgid "The pFuncName and pInternalName parameters are char arrays, which are implemented with size 256 in $[officename] Calc."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3148567\n"
+"60\n"
+"help.text"
+msgid "GetParameterDescription()"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153000\n"
+"61\n"
+"help.text"
+msgid "Provides a brief description of the Add-In function and its parameters. As an option, this function can be used to show a function and parameter description in the <emph>Function Wizard</emph>."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154501\n"
+"62\n"
+"help.text"
+msgid "<emph>Syntax</emph>"
msgstr "**Gabim Sintaksor**"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4148733\n"
-"255\n"
+"04060112.xhp\n"
+"par_id3153564\n"
+"63\n"
"help.text"
-msgid "BITOR(number1; number2)"
+msgid "void CALLTYPE GetParameterDescription(USHORT& nNo, USHORT& nParam, char* pName, char* pDesc)"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4150864\n"
-"256\n"
+"04060112.xhp\n"
+"par_id3157995\n"
+"64\n"
"help.text"
-msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgid "<emph>Parameter</emph>"
+msgstr "Parametri i sllajdit"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155925\n"
+"65\n"
+"help.text"
+msgid "USHORT& nNo:"
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4149884\n"
-"264\n"
+"04060112.xhp\n"
+"par_id3149883\n"
+"66\n"
"help.text"
-msgid "<item type=\"input\">=BITOR(6;10)</item> returns 14 (0110 | 1010 = 1110)."
+msgid "Input: Number of the function in the library; between 0 and nCount-1."
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"bm_id4150019\n"
+"04060112.xhp\n"
+"par_id3154326\n"
+"67\n"
"help.text"
-msgid "<bookmark_value>BITXOR function</bookmark_value>"
-msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+msgid "USHORT& nParam:"
+msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4150019\n"
+"04060112.xhp\n"
+"par_id3159139\n"
+"68\n"
+"help.text"
+msgid "Input: Indicates, for which parameter the description is provided; parameters start at 1. If nParam is 0, the description itself is supposed to be provided in pDesc; in this case, pName does not have any meaning."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147374\n"
+"69\n"
+"help.text"
+msgid "char* pName:"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145245\n"
+"70\n"
+"help.text"
+msgid "Output: Takes up the parameter name or type, for example, the word \"Number\" or \"String\" or \"Date\", and so on. Implemented in $[officename] Calc as char[256]."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151020\n"
+"71\n"
+"help.text"
+msgid "char* pDesc:"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148389\n"
+"72\n"
+"help.text"
+msgid "Output: Takes up the description of the parameter, for example, \"Value, at which the universe is to be calculated.\" Implemented in $[officename] Calc as char[256]."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145303\n"
+"73\n"
+"help.text"
+msgid "pName and pDesc are char arrays; implemented in $[officename] Calc with size 256. Please note that the space available in the <emph>Function Wizard</emph> is limited and that the 256 characters cannot be fully used."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3148874\n"
+"76\n"
+"help.text"
+msgid "Cell areas"
+msgstr "Zona të lidhura"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150265\n"
+"77\n"
+"help.text"
+msgid "The following tables contain information about which data structures must be provided by an external program module in order to pass cell areas. $[officename] Calc distinguishes between three different arrays, depending on the data type."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3156060\n"
+"78\n"
+"help.text"
+msgid "Double Array"
+msgstr "Formula e vargut %1 R x %2 C"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149540\n"
+"79\n"
+"help.text"
+msgid "As a parameter, a cell area with values of the Number/Double type can be passed. A double array in $[officename] Calc is defined as follows:"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149388\n"
+"80\n"
+"help.text"
+msgid "<emph>Offset</emph>"
+msgstr "Vija e kompensimit 1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154636\n"
+"81\n"
+"help.text"
+msgid "<emph>Name</emph>"
+msgstr "Emri i grupit"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153228\n"
+"82\n"
+"help.text"
+msgid "<emph>Description</emph>"
+msgstr "Vetëm përshkrimi"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150685\n"
+"83\n"
+"help.text"
+msgid "0"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154869\n"
+"84\n"
+"help.text"
+msgid "Col1"
+msgstr "Col"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147541\n"
+"85\n"
+"help.text"
+msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149783\n"
+"86\n"
+"help.text"
+msgid "2"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155986\n"
+"87\n"
+"help.text"
+msgid "Row1"
+msgstr "Rresht"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147483\n"
+"88\n"
+"help.text"
+msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153721\n"
+"89\n"
+"help.text"
+msgid "4"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154317\n"
+"90\n"
+"help.text"
+msgid "Tab1"
+msgstr "Tab"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149820\n"
+"91\n"
+"help.text"
+msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3163820\n"
+"92\n"
+"help.text"
+msgid "6"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149710\n"
+"93\n"
+"help.text"
+msgid "Col2"
+msgstr "Col"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154819\n"
+"94\n"
+"help.text"
+msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145083\n"
+"95\n"
+"help.text"
+msgid "8"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156310\n"
+"96\n"
+"help.text"
+msgid "Row2"
+msgstr "Rresht"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150968\n"
+"97\n"
+"help.text"
+msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156133\n"
+"98\n"
+"help.text"
+msgid "10"
+msgstr "Titullimi 10"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153218\n"
+"99\n"
+"help.text"
+msgid "Tab2"
+msgstr "Tab"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147086\n"
+"100\n"
+"help.text"
+msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151270\n"
+"101\n"
+"help.text"
+msgid "12"
+msgstr "Yll 12-cepësh"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3152934\n"
+"102\n"
+"help.text"
+msgid "Count"
+msgstr "Numëro"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145202\n"
+"103\n"
+"help.text"
+msgid "Number of the following elements. Empty cells are not counted or passed."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150879\n"
+"104\n"
+"help.text"
+msgid "14"
+msgstr "1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156002\n"
+"105\n"
+"help.text"
+msgid "Col"
+msgstr "Col"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147276\n"
+"106\n"
+"help.text"
+msgid "Column number of the element. Numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151295\n"
+"107\n"
+"help.text"
+msgid "16"
+msgstr "1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150261\n"
+"108\n"
+"help.text"
+msgid "Row"
+msgstr "Rresht"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155851\n"
+"109\n"
+"help.text"
+msgid "Row number of the element; numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153150\n"
+"110\n"
+"help.text"
+msgid "18"
+msgstr "1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153758\n"
+"111\n"
+"help.text"
+msgid "Tab"
+msgstr "Tab"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150154\n"
+"112\n"
+"help.text"
+msgid "Table number of the element; numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149289\n"
+"113\n"
+"help.text"
+msgid "20"
+msgstr "{120}{70}{70}{70}{70}"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156010\n"
+"114\n"
+"help.text"
+msgid "Error"
+msgstr "Gabim"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159181\n"
+"115\n"
+"help.text"
+msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147493\n"
+"116\n"
+"help.text"
+msgid "22"
+msgstr "2"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149200\n"
+"117\n"
+"help.text"
+msgid "Value"
+msgstr "Vlerë"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151174\n"
+"118\n"
+"help.text"
+msgid "8 byte IEEE variable of type double/floating point"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154688\n"
+"119\n"
+"help.text"
+msgid "30"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159337\n"
+"120\n"
+"help.text"
+msgid "..."
+msgstr "..."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155388\n"
+"121\n"
+"help.text"
+msgid "Next element"
+msgstr "Emri i elementit"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3154935\n"
+"122\n"
+"help.text"
+msgid "String Array"
+msgstr "Formula e vargut %1 R x %2 C"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153105\n"
+"123\n"
+"help.text"
+msgid "A cell area, which contains values of data type Text and is passed as a string array. A string array in $[officename] Calc is defined as follows:"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149908\n"
+"124\n"
+"help.text"
+msgid "<emph>Offset</emph>"
+msgstr "Vija e kompensimit 1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159165\n"
+"125\n"
+"help.text"
+msgid "<emph>Name</emph>"
+msgstr "Emri i grupit"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159150\n"
+"126\n"
+"help.text"
+msgid "<emph>Description</emph>"
+msgstr "Vetëm përshkrimi"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149769\n"
+"127\n"
+"help.text"
+msgid "0"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150509\n"
+"128\n"
+"help.text"
+msgid "Col1"
+msgstr "Col"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148447\n"
+"129\n"
+"help.text"
+msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145418\n"
+"130\n"
+"help.text"
+msgid "2"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147512\n"
+"131\n"
+"help.text"
+msgid "Row1"
+msgstr "Rresht"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147235\n"
+"132\n"
+"help.text"
+msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155362\n"
+"133\n"
+"help.text"
+msgid "4"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151051\n"
+"134\n"
+"help.text"
+msgid "Tab1"
+msgstr "Tab"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148923\n"
+"135\n"
+"help.text"
+msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149158\n"
+"136\n"
+"help.text"
+msgid "6"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3166437\n"
+"137\n"
+"help.text"
+msgid "Col2"
+msgstr "Col"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149788\n"
+"138\n"
+"help.text"
+msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3166450\n"
+"139\n"
+"help.text"
+msgid "8"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3152877\n"
+"140\n"
+"help.text"
+msgid "Row2"
+msgstr "Rresht"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3152949\n"
+"141\n"
+"help.text"
+msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159270\n"
+"142\n"
+"help.text"
+msgid "10"
+msgstr "Titullimi 10"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154107\n"
+"143\n"
+"help.text"
+msgid "Tab2"
+msgstr "Tab"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153747\n"
+"144\n"
+"help.text"
+msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149924\n"
+"145\n"
+"help.text"
+msgid "12"
+msgstr "Yll 12-cepësh"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154858\n"
+"146\n"
+"help.text"
+msgid "Count"
+msgstr "Numëro"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148621\n"
+"147\n"
+"help.text"
+msgid "Number of the following elements. Empty cells are not counted or passed."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148467\n"
+"148\n"
+"help.text"
+msgid "14"
+msgstr "1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151126\n"
+"149\n"
+"help.text"
+msgid "Col"
+msgstr "Col"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154334\n"
+"150\n"
+"help.text"
+msgid "Column number of the element. Numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149416\n"
+"151\n"
+"help.text"
+msgid "16"
+msgstr "1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150631\n"
+"152\n"
+"help.text"
+msgid "Row"
+msgstr "Rresht"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150424\n"
+"153\n"
+"help.text"
+msgid "Row number of the element; numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154797\n"
+"154\n"
+"help.text"
+msgid "18"
+msgstr "1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3143274\n"
+"155\n"
+"help.text"
+msgid "Tab"
+msgstr "Tab"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149513\n"
+"156\n"
+"help.text"
+msgid "Table number of the element; numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145306\n"
+"157\n"
+"help.text"
+msgid "20"
+msgstr "{120}{70}{70}{70}{70}"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153948\n"
+"158\n"
+"help.text"
+msgid "Error"
+msgstr "Gabim"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153534\n"
+"159\n"
+"help.text"
+msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153311\n"
+"160\n"
+"help.text"
+msgid "22"
+msgstr "2"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148695\n"
+"161\n"
+"help.text"
+msgid "Len"
+msgstr "LEN"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3152769\n"
+"162\n"
+"help.text"
+msgid "Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153772\n"
+"163\n"
+"help.text"
+msgid "24"
+msgstr "Yll 24-cepësh"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153702\n"
+"164\n"
+"help.text"
+msgid "String"
+msgstr "Varg"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154474\n"
+"165\n"
+"help.text"
+msgid "String with closing zero byte"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156269\n"
+"166\n"
+"help.text"
+msgid "24+Len"
+msgstr "Yll 24-cepësh"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154825\n"
+"167\n"
+"help.text"
+msgid "..."
+msgstr "..."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147097\n"
+"168\n"
+"help.text"
+msgid "Next element"
+msgstr "Emri i elementit"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"hd_id3159091\n"
+"169\n"
+"help.text"
+msgid "Cell Array"
+msgstr "Formula e vargut %1 R x %2 C"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156140\n"
+"170\n"
+"help.text"
+msgid "Cell arrays are used to call cell areas containing text as well as numbers. A cell array in $[officename] Calc is defined as follows:"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154664\n"
+"171\n"
+"help.text"
+msgid "<emph>Offset</emph>"
+msgstr "Vija e kompensimit 1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154566\n"
+"172\n"
+"help.text"
+msgid "<emph>Name</emph>"
+msgstr "Emri i grupit"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146073\n"
+"173\n"
+"help.text"
+msgid "<emph>Description</emph>"
+msgstr "Vetëm përshkrimi"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154117\n"
+"174\n"
+"help.text"
+msgid "0"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150988\n"
+"175\n"
+"help.text"
+msgid "Col1"
+msgstr "Col"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146783\n"
+"176\n"
+"help.text"
+msgid "Column number in the upper-left corner of the cell area. Numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153666\n"
+"177\n"
+"help.text"
+msgid "2"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149560\n"
+"178\n"
+"help.text"
+msgid "Row1"
+msgstr "Rresht"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156156\n"
+"179\n"
+"help.text"
+msgid "Row number in the upper-left corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150408\n"
+"180\n"
+"help.text"
+msgid "4"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150593\n"
+"181\n"
+"help.text"
+msgid "Tab1"
+msgstr "Tab"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150357\n"
"182\n"
"help.text"
-msgid "BITXOR"
+msgid "Table number in the upper-left corner of the cell area; numbering starts at 0."
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4145246\n"
+"04060112.xhp\n"
+"par_id3146912\n"
"183\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITXOR\">Returns a bitwise logical \"exclusive or\" of the parameters.</ahelp>"
+msgid "6"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4153047\n"
+"04060112.xhp\n"
+"par_id3153352\n"
"184\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Col2"
+msgstr "Col"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4157970\n"
+"04060112.xhp\n"
+"par_id3155893\n"
"185\n"
"help.text"
-msgid "BITXOR(number1; number2)"
+msgid "Column number in the lower-right corner of the cell area. Numbering starts at 0."
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4145302\n"
+"04060112.xhp\n"
+"par_id3150827\n"
"186\n"
"help.text"
-msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgid "8"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4150269\n"
+"04060112.xhp\n"
+"par_id3148406\n"
+"187\n"
+"help.text"
+msgid "Row2"
+msgstr "Rresht"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150673\n"
+"188\n"
+"help.text"
+msgid "Row number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155864\n"
+"189\n"
+"help.text"
+msgid "10"
+msgstr "Titullimi 10"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153197\n"
+"190\n"
+"help.text"
+msgid "Tab2"
+msgstr "Tab"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149329\n"
+"191\n"
+"help.text"
+msgid "Table number in the lower-right corner of the cell area; numbering starts at 0."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147360\n"
"192\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "12"
+msgstr "Yll 12-cepësh"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4149394\n"
+"04060112.xhp\n"
+"par_id3154520\n"
+"193\n"
+"help.text"
+msgid "Count"
+msgstr "Numëro"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150647\n"
+"194\n"
+"help.text"
+msgid "Number of the following elements. Empty cells are not counted or passed."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149747\n"
+"195\n"
+"help.text"
+msgid "14"
+msgstr "1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3147579\n"
"196\n"
"help.text"
-msgid "<item type=\"input\">=BITXOR(6;10)</item> returns 12 (0110 ^ 1010 = 1100)"
+msgid "Col"
+msgstr "Col"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3154188\n"
+"197\n"
+"help.text"
+msgid "Column number of the element. Numbering starts at 0."
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"bm_id4155370\n"
+"04060112.xhp\n"
+"par_id3159209\n"
+"198\n"
"help.text"
-msgid "<bookmark_value>BITLSHIFT function</bookmark_value>"
-msgstr "Gabim: Vlera nuk është në dispozicion"
+msgid "16"
+msgstr "1"
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4155370\n"
-"266\n"
+"04060112.xhp\n"
+"par_id3153265\n"
+"199\n"
"help.text"
-msgid "BITLSHIFT"
+msgid "Row"
+msgstr "Rresht"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3150095\n"
+"200\n"
+"help.text"
+msgid "Row number of the element; numbering starts at 0."
msgstr ""
-#: 04060120.xhp
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4158411\n"
-"267\n"
+"04060112.xhp\n"
+"par_id3151276\n"
+"201\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITLSHIFT\">Shifts a number left by n bits.</ahelp>"
+msgid "18"
+msgstr "1"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149177\n"
+"202\n"
+"help.text"
+msgid "Tab"
+msgstr "Tab"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3146925\n"
+"203\n"
+"help.text"
+msgid "Table number of the element; numbering starts at 0."
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060112.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4155814\n"
-"268\n"
+"04060112.xhp\n"
+"par_id3150488\n"
+"204\n"
+"help.text"
+msgid "20"
+msgstr "{120}{70}{70}{70}{70}"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149441\n"
+"205\n"
+"help.text"
+msgid "Error"
+msgstr "Gabim"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3156048\n"
+"206\n"
+"help.text"
+msgid "Error number, where the value 0 is defined as \"no error.\" If the element comes from a formula cell the error value is determined by the formula."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3163813\n"
+"207\n"
+"help.text"
+msgid "22"
+msgstr "2"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3159102\n"
+"208\n"
+"help.text"
+msgid "Type"
+msgstr "Tipi"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149581\n"
+"209\n"
+"help.text"
+msgid "Type of cell content, 0 == Double, 1 == String"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155182\n"
+"210\n"
+"help.text"
+msgid "24"
+msgstr "Yll 24-cepësh"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3153291\n"
+"211\n"
+"help.text"
+msgid "Value or Len"
+msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148560\n"
+"212\n"
+"help.text"
+msgid "If type == 0: 8 byte IEEE variable of type double/floating point"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3148901\n"
+"213\n"
+"help.text"
+msgid "If type == 1: Length of the following string, including closing zero byte. If the length including closing zero byte equals an odd value a second zero byte is added to the string so that an even value is achieved. Therefore, Len is calculated using ((StrLen+2)&~1)."
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3145215\n"
+"214\n"
+"help.text"
+msgid "26 if type==1"
+msgstr "Zgjedh tipin e dokumentit"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3155143\n"
+"215\n"
+"help.text"
+msgid "String"
+msgstr "Varg"
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3149298\n"
+"216\n"
+"help.text"
+msgid "If type == 1: String with closing zero byte"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151322\n"
+"217\n"
+"help.text"
+msgid "32 or 26+Len"
+msgstr ""
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3163722\n"
+"218\n"
+"help.text"
+msgid "..."
+msgstr "..."
+
+#: 04060112.xhp
+msgctxt ""
+"04060112.xhp\n"
+"par_id3151059\n"
+"219\n"
+"help.text"
+msgid "Next element"
+msgstr "Emri i elementit"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"tit\n"
+"help.text"
+msgid "Add-in Functions, List of Analysis Functions Part One"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3152871\n"
+"help.text"
+msgid "<bookmark_value>add-ins; analysis functions</bookmark_value><bookmark_value>analysis functions</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3152871\n"
+"1\n"
+"help.text"
+msgid "Add-in Functions, List of Analysis Functions Part One"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149873\n"
+"102\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"General conversion function BASIS\">General conversion function BASIS</link>"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3145324\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060116.xhp\" name=\"Analysis functions Part Two\">Analysis functions Part Two</link>"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3155751\n"
+"156\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3153074\n"
+"help.text"
+msgid "<bookmark_value>Bessel functions</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3153334\n"
+"111\n"
+"help.text"
+msgid "BESSELI"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153960\n"
+"112\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELI\">Calculates the modified Bessel function.</ahelp>"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3150392\n"
+"113\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4147536\n"
-"269\n"
+"04060115.xhp\n"
+"par_id3147295\n"
+"114\n"
"help.text"
-msgid "BITLSHIFT(number; shift)"
+msgid "BESSELI(X; N)"
msgstr ""
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4150475\n"
-"270\n"
+"04060115.xhp\n"
+"par_id3151338\n"
+"115\n"
"help.text"
-msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "Vlera X për të cilin do të llogaritet vlera Y në prapavajtjen lineare."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3151392\n"
+"116\n"
+"help.text"
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "Kthen SAKTË nëse vlera është një numër."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3153027\n"
+"103\n"
+"help.text"
+msgid "BESSELJ"
msgstr ""
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4153921\n"
-"271\n"
+"04060115.xhp\n"
+"par_id3153015\n"
+"104\n"
"help.text"
-msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the left. If shift is negative, it is synonymous with BITRSHIFT (number; -shift)."
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELJ\">Calculates the Bessel function (cylinder function).</ahelp>"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4153723\n"
-"276\n"
+"04060115.xhp\n"
+"hd_id3146884\n"
+"105\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4149819\n"
-"278\n"
+"04060115.xhp\n"
+"par_id3150032\n"
+"106\n"
"help.text"
-msgid "<item type=\"input\">=BITLSHIFT(6;1)</item> returns 12 (0110 << 1 = 1100)."
+msgid "BESSELJ(X; N)"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"bm_id4083280\n"
+"04060115.xhp\n"
+"par_id3150378\n"
+"107\n"
"help.text"
-msgid "<bookmark_value>BITRSHIFT function</bookmark_value>"
-msgstr "Gabim: Vlera nuk është në dispozicion"
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "Vlera X për të cilin do të llogaritet vlera Y në prapavajtjen lineare."
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4083280\n"
-"165\n"
+"04060115.xhp\n"
+"par_id3145638\n"
+"108\n"
"help.text"
-msgid "BITRSHIFT"
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "Kthen SAKTË nëse vlera është një numër."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3149946\n"
+"117\n"
+"help.text"
+msgid "BESSELK"
msgstr ""
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4152482\n"
-"166\n"
+"04060115.xhp\n"
+"par_id3159122\n"
+"118\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BITRSHIFT\">Shifts a number right by n bits.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELK\">Calculates the modified Bessel function.</ahelp>"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4149713\n"
-"167\n"
+"04060115.xhp\n"
+"hd_id3150650\n"
+"119\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4145087\n"
-"168\n"
+"04060115.xhp\n"
+"par_id3149354\n"
+"120\n"
"help.text"
-msgid "BITRSHIFT(number; shift)"
+msgid "BESSELK(X; N)"
msgstr ""
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4149277\n"
-"169\n"
+"04060115.xhp\n"
+"par_id3150481\n"
+"121\n"
"help.text"
-msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "Vlera X për të cilin do të llogaritet vlera Y në prapavajtjen lineare."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150024\n"
+"122\n"
+"help.text"
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "Kthen SAKTË nëse vlera është një numër."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3145828\n"
+"123\n"
+"help.text"
+msgid "BESSELY"
msgstr ""
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4149270\n"
-"170\n"
+"04060115.xhp\n"
+"par_id3146877\n"
+"124\n"
"help.text"
-msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the right. If shift is negative, it is synonymous with BITLSHIFT (number; -shift)."
+msgid "<ahelp hid=\"HID_AAI_FUNC_BESSELY\">Calculates the modified Bessel function.</ahelp>"
msgstr ""
-#: 04060120.xhp
-#, fuzzy
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"hd_id4152933\n"
-"175\n"
+"04060115.xhp\n"
+"hd_id3146941\n"
+"125\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3148884\n"
+"126\n"
+"help.text"
+msgid "BESSELY(X; N)"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3147475\n"
+"127\n"
+"help.text"
+msgid "<emph>X</emph> is the value on which the function will be calculated."
+msgstr "Vlera X për të cilin do të llogaritet vlera Y në prapavajtjen lineare."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3147421\n"
+"128\n"
+"help.text"
+msgid "<emph>N</emph> is the order of the Bessel function"
+msgstr "Kthen SAKTË nëse vlera është një numër."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3153034\n"
+"help.text"
+msgid "<bookmark_value>BIN2DEC function</bookmark_value><bookmark_value>converting;binary numbers, into decimal numbers</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3153034\n"
+"17\n"
+"help.text"
+msgid "BIN2DEC"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3144744\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2DEC\">The result is the decimal number for the binary number entered.</ahelp>"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3145593\n"
+"19\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149726\n"
+"20\n"
+"help.text"
+msgid "BIN2DEC(Number)"
+msgstr "Numri i faqes"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150142\n"
+"21\n"
+"help.text"
+msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3149250\n"
+"22\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060120.xhp
+#: 04060115.xhp
msgctxt ""
-"04060120.xhp\n"
-"par_id4156130\n"
-"179\n"
+"04060115.xhp\n"
+"par_id3145138\n"
+"23\n"
"help.text"
-msgid "<item type=\"input\">=BITRSHIFT(6;1)</item> returns 3 (0110 >> 1 = 0011)."
-msgstr ""
+msgid "<item type=\"input\">=BIN2DEC(1100100)</item> returns 100."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"tit\n"
+"04060115.xhp\n"
+"bm_id3149954\n"
"help.text"
-msgid "Cell Protection"
-msgstr "Mbrojtja e qelisë"
+msgid "<bookmark_value>BIN2HEX function</bookmark_value><bookmark_value>converting;binary numbers, into hexadecimal numbers</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3145119\n"
-"1\n"
+"04060115.xhp\n"
+"hd_id3149954\n"
+"24\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cell Protection\">Cell Protection</link>"
+msgid "BIN2HEX"
msgstr ""
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3150398\n"
-"2\n"
+"04060115.xhp\n"
+"par_id3148585\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_PROTECTION\">Defines protection options for selected cells.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2HEX\">The result is the hexadecimal number for the binary number entered.</ahelp>"
msgstr ""
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3150447\n"
-"3\n"
+"04060115.xhp\n"
+"hd_id3153936\n"
+"26\n"
"help.text"
-msgid "Protection"
-msgstr "Mbrojtje"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3125864\n"
+"04060115.xhp\n"
+"par_id3148753\n"
+"27\n"
+"help.text"
+msgid "BIN2HEX(Number; Places)"
+msgstr "Numri i vendeve tw pwrdorura"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3155255\n"
+"28\n"
+"help.text"
+msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150860\n"
+"29\n"
+"help.text"
+msgid "Places means the number of places to be output."
+msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3155829\n"
+"30\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149686\n"
+"31\n"
+"help.text"
+msgid "<item type=\"input\">=BIN2HEX(1100100;6)</item> returns 000064."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3153332\n"
+"help.text"
+msgid "<bookmark_value>BIN2OCT function</bookmark_value><bookmark_value>converting;binary numbers, into octal numbers</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3153332\n"
"9\n"
"help.text"
-msgid "Hide all"
-msgstr "Fshehi ~të gjitha"
+msgid "BIN2OCT"
+msgstr ""
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3153768\n"
+"04060115.xhp\n"
+"par_id3155951\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_ALL\">Hides formulas and contents of the selected cells.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_BIN2OCT\"> The result is the octal number for the binary number entered.</ahelp>"
msgstr ""
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3153190\n"
-"5\n"
+"04060115.xhp\n"
+"hd_id3153001\n"
+"11\n"
"help.text"
-msgid "Protected"
-msgstr "I Mbrojtur"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3151119\n"
-"6\n"
+"04060115.xhp\n"
+"par_id3154508\n"
+"12\n"
+"help.text"
+msgid "BIN2OCT(Number; Places)"
+msgstr "Numri i vendeve tw pwrdorura"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153567\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_PROTECTED\">Prevents the selected cells from being modified.</ahelp>"
+msgid "<emph>Number</emph> is a binary number. The number can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement."
msgstr ""
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3156283\n"
+"04060115.xhp\n"
+"par_id3155929\n"
+"14\n"
+"help.text"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3150128\n"
"15\n"
"help.text"
-msgid "This cell protection only takes effect if you also protect the sheet (<emph>Tools - Protect Document - Sheet</emph>)."
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153733\n"
+"16\n"
+"help.text"
+msgid "<item type=\"input\">=BIN2OCT(1100100;4)</item> returns 0144."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3150014\n"
+"help.text"
+msgid "<bookmark_value>DELTA function</bookmark_value><bookmark_value>recognizing;equal numbers</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3150014\n"
+"129\n"
+"help.text"
+msgid "DELTA"
+msgstr "DELTA"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3148760\n"
+"130\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_DELTA\">The result is TRUE (1) if both numbers, which are delivered as an argument, are equal, otherwise it is FALSE (0).</ahelp>"
msgstr ""
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3149377\n"
-"7\n"
+"04060115.xhp\n"
+"hd_id3155435\n"
+"131\n"
"help.text"
-msgid "Hide formula"
-msgstr "Fshehe ~formulën"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3154510\n"
-"8\n"
+"04060115.xhp\n"
+"par_id3145247\n"
+"132\n"
"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_FORMULAR\">Hides formulas in the selected cells.</ahelp>"
+msgid "DELTA(Number1; Number2)"
msgstr ""
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3155602\n"
-"11\n"
+"04060115.xhp\n"
+"hd_id3149002\n"
+"133\n"
"help.text"
-msgid "Print"
-msgstr "Shtyp"
+msgid "Example"
+msgstr "Shembull"
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3153836\n"
-"12\n"
+"04060115.xhp\n"
+"par_id3151020\n"
+"134\n"
"help.text"
-msgid "Defines print options for the sheet."
+msgid "<item type=\"input\">=DELTA(1;2)</item> returns 0."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3157971\n"
+"help.text"
+msgid "<bookmark_value>DEC2BIN function</bookmark_value><bookmark_value>converting;decimal numbers, into binary numbers</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3157971\n"
+"55\n"
+"help.text"
+msgid "DEC2BIN"
msgstr ""
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3155065\n"
-"13\n"
+"04060115.xhp\n"
+"par_id3153043\n"
+"56\n"
"help.text"
-msgid "Hide when printing"
-msgstr "Fshehe ~kur të printohet"
+msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2BIN\"> The result is the binary number for the decimal number entered between -512 and 511.</ahelp>"
+msgstr ""
-#: 05020600.xhp
+#: 04060115.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3155443\n"
-"14\n"
+"04060115.xhp\n"
+"hd_id3145349\n"
+"57\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150569\n"
+"58\n"
"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:RID_SCPAGE_PROTECTION:BTN_HIDE_PRINT\">Keeps the selected cells from being printed.</ahelp>"
+msgid "DEC2BIN(Number; Places)"
+msgstr "Numri i vendeve tw pwrdorura"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3148768\n"
+"59\n"
+"help.text"
+msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a binary number with 10 characters. The most significant bit is the sign bit, the other 9 bits return the value."
msgstr ""
-#: 05020000.xhp
+#: 04060115.xhp
msgctxt ""
-"05020000.xhp\n"
-"tit\n"
+"04060115.xhp\n"
+"par_id3149537\n"
+"60\n"
"help.text"
-msgid "Format Cells"
-msgstr "Formato qelitë"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
-#: 05020000.xhp
+#: 04060115.xhp
msgctxt ""
-"05020000.xhp\n"
-"bm_id3148663\n"
+"04060115.xhp\n"
+"hd_id3150265\n"
+"61\n"
"help.text"
-msgid "<bookmark_value>cell attributes</bookmark_value><bookmark_value>attributes;cells</bookmark_value><bookmark_value>formatting;cells</bookmark_value><bookmark_value>cells;formatting dialog</bookmark_value>"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150662\n"
+"62\n"
+"help.text"
+msgid "<item type=\"input\">=DEC2BIN(100;8)</item> returns 01100100."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3149388\n"
+"help.text"
+msgid "<bookmark_value>DEC2HEX function</bookmark_value><bookmark_value>converting;decimal numbers, into hexadecimal numbers</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3149388\n"
+"71\n"
+"help.text"
+msgid "DEC2HEX"
msgstr ""
-#: 05020000.xhp
+#: 04060115.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3148663\n"
-"1\n"
+"04060115.xhp\n"
+"par_id3149030\n"
+"72\n"
"help.text"
-msgid "Format Cells"
-msgstr "Formato qelitë"
+msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2HEX\">The result is the hexadecimal number for the decimal number entered.</ahelp>"
+msgstr ""
-#: 05020000.xhp
+#: 04060115.xhp
msgctxt ""
-"05020000.xhp\n"
-"par_id3150448\n"
-"2\n"
+"04060115.xhp\n"
+"hd_id3150691\n"
+"73\n"
"help.text"
-msgid "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Allows you to specify a variety of formatting options and to apply attributes to the selected cells.</ahelp></variable>"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3147535\n"
+"74\n"
+"help.text"
+msgid "DEC2HEX(Number; Places)"
+msgstr "Numri i vendeve tw pwrdorura"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3152820\n"
+"75\n"
+"help.text"
+msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns a hexadecimal number with 10 characters (40 bits). The most significant bit is the sign bit, the other 39 bits return the value."
msgstr ""
-#: 05020000.xhp
+#: 04060115.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3145785\n"
-"3\n"
+"04060115.xhp\n"
+"par_id3153221\n"
+"76\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3154869\n"
+"77\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3150476\n"
+"78\n"
+"help.text"
+msgid "<item type=\"input\">=DEC2HEX(100;4)</item> returns 0064."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3154948\n"
+"help.text"
+msgid "<bookmark_value>DEC2OCT function</bookmark_value><bookmark_value>converting;decimal numbers, into octal numbers</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3154948\n"
+"63\n"
+"help.text"
+msgid "DEC2OCT"
msgstr ""
-#: 05020000.xhp
+#: 04060115.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3146119\n"
-"4\n"
+"04060115.xhp\n"
+"par_id3153920\n"
+"64\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_DEC2OCT\">The result is the octal number for the decimal number entered.</ahelp>"
msgstr ""
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"tit\n"
+"04060115.xhp\n"
+"hd_id3153178\n"
+"65\n"
"help.text"
-msgid "WEEKNUM"
-msgstr "WEEKNUM"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"bm_id3159161\n"
+"04060115.xhp\n"
+"par_id3148427\n"
+"66\n"
"help.text"
-msgid "<bookmark_value>WEEKNUM function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "DEC2OCT(Number; Places)"
+msgstr "Numri i vendeve tw pwrdorura"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"hd_id3159161\n"
-"54\n"
+"04060115.xhp\n"
+"par_id3155991\n"
+"67\n"
"help.text"
-msgid "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
+msgid "<emph>Number</emph> is a decimal number. If Number is negative, the function returns an octal number with 10 characters (30 bits). The most significant bit is the sign bit, the other 29 bits return the value."
msgstr ""
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3149770\n"
-"55\n"
+"04060115.xhp\n"
+"par_id3152587\n"
+"68\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM calculates the week number of the year for the internal date value.</ahelp>"
+msgid "<emph>Places</emph> means the number of places to be output."
+msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3147482\n"
+"69\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3154317\n"
+"70\n"
+"help.text"
+msgid "<item type=\"input\">=DEC2OCT(100;4)</item> returns 0144."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3083446\n"
+"help.text"
+msgid "<bookmark_value>ERF function</bookmark_value><bookmark_value>Gaussian error integral</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3083446\n"
+"135\n"
+"help.text"
+msgid "ERF"
msgstr ""
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_idN105E4\n"
+"04060115.xhp\n"
+"par_id3150381\n"
+"136\n"
"help.text"
-msgid "The International Standard ISO 8601 has decreed that Monday shall be the first day of the week. A week that lies partly in one year and partly in another is assigned a number in the year in which most of its days lie. That means that week number 1 of any year is the week that contains the January 4th."
+msgid "<ahelp hid=\"HID_AAI_FUNC_ERF\">Returns values of the Gaussian error integral.</ahelp>"
msgstr ""
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"hd_id3153055\n"
-"56\n"
+"04060115.xhp\n"
+"hd_id3152475\n"
+"137\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3147236\n"
-"57\n"
+"04060115.xhp\n"
+"par_id3163824\n"
+"138\n"
"help.text"
-msgid "WEEKNUM(Number; Mode)"
-msgstr "Modi i shikimit paraprak"
+msgid "ERF(LowerLimit; UpperLimit)"
+msgstr ""
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3147511\n"
-"58\n"
+"04060115.xhp\n"
+"par_id3149715\n"
+"139\n"
"help.text"
-msgid "<emph>Number</emph> is the internal date number."
-msgstr "Siguron një numër të mbrendshëm për datën e dhënë."
+msgid "<emph>LowerLimit</emph> is the lower limit of the integral."
+msgstr ""
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3154269\n"
-"59\n"
+"04060115.xhp\n"
+"par_id3156294\n"
+"140\n"
"help.text"
-msgid "<emph>Mode</emph> sets the start of the week and the calculation type."
+msgid "<emph>UpperLimit</emph> is optional. It is the upper limit of the integral. If this value is missing, the calculation takes places between 0 and the lower limit."
msgstr ""
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3148930\n"
-"60\n"
+"04060115.xhp\n"
+"hd_id3154819\n"
+"141\n"
"help.text"
-msgid "1 = Sunday"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3152974\n"
+"142\n"
+"help.text"
+msgid "<item type=\"input\">=ERF(0;1)</item> returns 0.842701."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3145082\n"
+"help.text"
+msgid "<bookmark_value>ERFC function</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3145082\n"
+"143\n"
+"help.text"
+msgid "ERFC"
msgstr ""
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3154280\n"
-"61\n"
+"04060115.xhp\n"
+"par_id3149453\n"
+"144\n"
"help.text"
-msgid "2 = Monday"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ERFC\">Returns complementary values of the Gaussian error integral between x and infinity.</ahelp>"
msgstr ""
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"hd_id3146948\n"
-"62\n"
+"04060115.xhp\n"
+"hd_id3155839\n"
+"145\n"
"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3150704\n"
-"65\n"
+"04060115.xhp\n"
+"par_id3153220\n"
+"146\n"
"help.text"
-msgid "=WEEKNUM(\"1995-01-01\";1) returns 1"
+msgid "ERFC(LowerLimit)"
msgstr ""
-#: func_weeknum.xhp
+#: 04060115.xhp
msgctxt ""
-"func_weeknum.xhp\n"
-"par_id3149792\n"
-"64\n"
+"04060115.xhp\n"
+"par_id3147620\n"
+"147\n"
"help.text"
-msgid "=WEEKNUM(\"1995-01-01\";2) returns 52. If the week starts on Monday, Sunday belongs to the last week of the previous year."
+msgid "<emph>LowerLimit</emph> is the lower limit of the integral"
msgstr ""
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"tit\n"
+"04060115.xhp\n"
+"hd_id3146861\n"
+"148\n"
"help.text"
-msgid "Fill Sheet"
-msgstr "Mbush Fletën"
+msgid "Example"
+msgstr "Shembull"
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"hd_id3153897\n"
-"1\n"
+"04060115.xhp\n"
+"par_id3156102\n"
+"149\n"
"help.text"
-msgid "Fill Sheet"
-msgstr "Mbush Fletën"
+msgid "<item type=\"input\">=ERFC(1)</item> returns 0.157299."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3150791\n"
-"2\n"
+"04060115.xhp\n"
+"bm_id3152927\n"
"help.text"
-msgid "<variable id=\"tabellenfuellentext\"><ahelp hid=\".uno:FillTable\" visibility=\"visible\">Specifies the options for transferring sheets or ranges of a certain sheet.</ahelp></variable>"
+msgid "<bookmark_value>GESTEP function</bookmark_value><bookmark_value>numbers;greater than or equal to</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3152927\n"
+"150\n"
+"help.text"
+msgid "GESTEP"
msgstr ""
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3150767\n"
-"3\n"
+"04060115.xhp\n"
+"par_id3150763\n"
+"151\n"
"help.text"
-msgid "In contrast to copying an area to the clipboard, you can filter certain information and calculate values. This command is only visible if you have selected two sheets in the document. To select multiple sheets, click each sheet tab while pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> or Shift."
+msgid "<ahelp hid=\"HID_AAI_FUNC_GESTEP\">The result is 1 if <item type=\"literal\">Number</item> is greater than or equal to <item type=\"literal\">Step</item>.</ahelp>"
msgstr ""
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"hd_id3155131\n"
-"4\n"
+"04060115.xhp\n"
+"hd_id3150879\n"
+"152\n"
"help.text"
-msgid "Filling a Sheet"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3145212\n"
+"153\n"
+"help.text"
+msgid "GESTEP(Number; Step)"
+msgstr "Madhësia e hapit të lajverrësit"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3153275\n"
+"154\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3156132\n"
+"155\n"
+"help.text"
+msgid "<item type=\"input\">=GESTEP(5;1)</item> returns 1."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3147276\n"
+"help.text"
+msgid "<bookmark_value>HEX2BIN function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into binary numbers</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3147276\n"
+"79\n"
+"help.text"
+msgid "HEX2BIN"
msgstr ""
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3146119\n"
-"5\n"
+"04060115.xhp\n"
+"par_id3150258\n"
+"80\n"
"help.text"
-msgid "Select the entire sheet by clicking the empty gray box in the upper left of the sheet. You can also select an area of the sheet to be copied."
+msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2BIN\">The result is the binary number for the hexadecimal number entered.</ahelp>"
msgstr ""
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3153726\n"
-"6\n"
+"04060115.xhp\n"
+"hd_id3156117\n"
+"81\n"
"help.text"
-msgid "Press <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and click the tab of the sheet where you want to insert the contents."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3155847\n"
+"82\n"
+"help.text"
+msgid "HEX2BIN(Number; Places)"
+msgstr "Numri i vendeve tw pwrdorura"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3152810\n"
+"83\n"
+"help.text"
+msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
msgstr ""
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3147436\n"
-"7\n"
+"04060115.xhp\n"
+"par_id3153758\n"
+"84\n"
"help.text"
-msgid "Select the command <emph>Edit - Fill - Sheet</emph>. In the dialog which appears, the check box <emph>Numbers</emph> must be selected (or <emph>Paste All</emph>) if you want to combine operations with the values. You can also choose the desired operation here."
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3154052\n"
+"85\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3156002\n"
+"86\n"
+"help.text"
+msgid "<item type=\"input\">=HEX2BIN(64;8)</item> returns 01100100."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3154742\n"
+"help.text"
+msgid "<bookmark_value>HEX2DEC function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into decimal numbers</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3154742\n"
+"87\n"
+"help.text"
+msgid "HEX2DEC"
msgstr ""
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3154942\n"
-"8\n"
+"04060115.xhp\n"
+"par_id3153626\n"
+"88\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2DEC\">The result is the decimal number for the hexadecimal number entered.</ahelp>"
+msgstr ""
-#: 02140500.xhp
+#: 04060115.xhp
msgctxt ""
-"02140500.xhp\n"
-"par_id3156283\n"
-"9\n"
+"04060115.xhp\n"
+"hd_id3143233\n"
+"89\n"
"help.text"
-msgid "This dialog is similar to the <link href=\"text/shared/01/02070000.xhp\" name=\"Paste Contents\">Paste Contents</link> dialog, where you can find additional tips."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149293\n"
+"90\n"
+"help.text"
+msgid "HEX2DEC(Number)"
+msgstr "Numri i faqes"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3159176\n"
+"91\n"
+"help.text"
+msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
msgstr ""
-#: 05070500.xhp
+#: 04060115.xhp
msgctxt ""
-"05070500.xhp\n"
+"04060115.xhp\n"
+"hd_id3154304\n"
+"92\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3146093\n"
+"93\n"
+"help.text"
+msgid "<item type=\"input\">=HEX2DEC(64)</item> returns 100."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"bm_id3149750\n"
+"help.text"
+msgid "<bookmark_value>HEX2OCT function</bookmark_value><bookmark_value>converting;hexadecimal numbers, into octal numbers</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3149750\n"
+"94\n"
+"help.text"
+msgid "HEX2OCT"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3153983\n"
+"95\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_HEX2OCT\">The result is the octal number for the hexadecimal number entered.</ahelp>"
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3145660\n"
+"96\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3151170\n"
+"97\n"
+"help.text"
+msgid "HEX2OCT(Number; Places)"
+msgstr "Numri i vendeve tw pwrdorura"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3152795\n"
+"98\n"
+"help.text"
+msgid "<emph>Number</emph> is a hexadecimal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr ""
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3149204\n"
+"99\n"
+"help.text"
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"hd_id3153901\n"
+"100\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060115.xhp
+msgctxt ""
+"04060115.xhp\n"
+"par_id3159341\n"
+"101\n"
+"help.text"
+msgid "<item type=\"input\">=HEX2OCT(64;4)</item> returns 0144."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
"tit\n"
"help.text"
-msgid "Sheet"
-msgstr "Krijo"
+msgid "Add-in Functions, List of Analysis Functions Part Two"
+msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"bm_id3150542\n"
+"04060116.xhp\n"
+"bm_id3145074\n"
"help.text"
-msgid "<bookmark_value>pages; order when printing</bookmark_value><bookmark_value>printing; page order</bookmark_value>"
+msgid "<bookmark_value>imaginary numbers in analysis functions</bookmark_value> <bookmark_value>complex numbers in analysis functions</bookmark_value>"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3156329\n"
+"04060116.xhp\n"
+"hd_id3154659\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\">Sheet</link>"
+msgid "Add-in Functions, List of Analysis Functions Part Two"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3151384\n"
-"2\n"
+"04060116.xhp\n"
+"par_id3151242\n"
+"174\n"
"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_TABLE\">Specifies the elements to be included in the printout of all sheets with the current Page Style. Additionally, you can set the print order, the first page number, and the page scale.</ahelp>"
+msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Category Statistics\">Category Statistics</link>"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3150542\n"
-"3\n"
+"04060116.xhp\n"
+"par_id3148869\n"
+"5\n"
"help.text"
-msgid "Print"
-msgstr "Shtyp"
+msgid "<link href=\"text/scalc/01/04060115.xhp\" name=\"Analysis Functions Part One\">Analysis Functions Part One</link>"
+msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3125863\n"
-"4\n"
+"04060116.xhp\n"
+"par_id3147072\n"
+"240\n"
"help.text"
-msgid "Defines which elements of the spreadsheet are to be printed."
+msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Back to the Overview\">Back to the Overview</link>"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3151041\n"
-"5\n"
+"04060116.xhp\n"
+"bm_id3154959\n"
"help.text"
-msgid "Column and row headers"
-msgstr "~Krerët e shtyllës dhe rreshtit"
+msgid "<bookmark_value>IMABS function</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3147228\n"
-"6\n"
+"04060116.xhp\n"
+"hd_id3154959\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_HEADER\">Specifies whether you want the column and row headers to be printed.</ahelp>"
+msgid "IMABS"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3150439\n"
-"7\n"
+"04060116.xhp\n"
+"par_id3149895\n"
+"45\n"
"help.text"
-msgid "Grid"
-msgstr "Rrjet"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMABS\">The result is the absolute value of a complex number.</ahelp>"
+msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3147436\n"
-"8\n"
+"04060116.xhp\n"
+"hd_id3155382\n"
+"46\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3151302\n"
+"47\n"
+"help.text"
+msgid "IMABS(\"ComplexNumber\")"
+msgstr "Pjesa imagjinare"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153974\n"
+"48\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_GRID\">Prints out the borders of the individual cells as a grid.</ahelp> For the view on screen, make your choice under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"View\"><emph>View</emph></link> - <emph>Grid lines</emph>."
+msgid "<variable id=\"complex\"><emph>ComplexNumber</emph> is a complex number that is entered in the form \"x+yi\" or \"x+yj\".</variable>"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3145750\n"
-"9\n"
+"04060116.xhp\n"
+"hd_id3149697\n"
+"49\n"
"help.text"
-msgid "Comments"
-msgstr "Koment"
+msgid "Example"
+msgstr "Shembull"
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3150010\n"
-"10\n"
+"04060116.xhp\n"
+"par_id3143222\n"
+"50\n"
+"help.text"
+msgid "<item type=\"input\">=IMABS(\"5+12j\")</item> returns 13."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3145357\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NOTES\">Prints the comments defined in your spreadsheet.</ahelp> They will be printed on a separate page, along with the corresponding cell reference."
+msgid "<bookmark_value>IMAGINARY function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3145357\n"
+"51\n"
+"help.text"
+msgid "IMAGINARY"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3154944\n"
-"11\n"
+"04060116.xhp\n"
+"par_id3146965\n"
+"52\n"
"help.text"
-msgid "Objects/graphics"
-msgstr "Objektet/grafikat"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMAGINARY\">The result is the imaginary coefficient of a complex number.</ahelp>"
+msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3149581\n"
-"12\n"
+"04060116.xhp\n"
+"hd_id3153555\n"
+"53\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_OBJECTS\">Includes all inserted objects (if printable) and graphics with the printed document.</ahelp>"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155522\n"
+"54\n"
+"help.text"
+msgid "IMAGINARY(\"ComplexNumber\")"
+msgstr "Pjesa imagjinare"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3151193\n"
+"56\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155592\n"
+"57\n"
+"help.text"
+msgid "<item type=\"input\">=IMAGINARY(\"4+3j\")</item> returns 3."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3146106\n"
+"help.text"
+msgid "<bookmark_value>IMPOWER function</bookmark_value>"
+msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3146106\n"
+"58\n"
+"help.text"
+msgid "IMPOWER"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3149377\n"
-"13\n"
+"04060116.xhp\n"
+"par_id3147245\n"
+"59\n"
"help.text"
-msgid "Charts"
-msgstr "Diagramet"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMPOWER\">The result is the integer power of a complex number.</ahelp>"
+msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3148455\n"
-"14\n"
+"04060116.xhp\n"
+"hd_id3150954\n"
+"60\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147501\n"
+"61\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_CHARTS\">Prints the charts that have been inserted into your spreadsheet.</ahelp>"
+msgid "IMPOWER(\"ComplexNumber\"; Number)"
+msgstr "Zona e numrit të sllajdit"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155743\n"
+"63\n"
+"help.text"
+msgid "<emph>Number</emph> is the exponent."
+msgstr "Kthen SAKTË nëse vlera është një numër."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3149048\n"
+"64\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3151393\n"
+"65\n"
+"help.text"
+msgid "<item type=\"input\">=IMPOWER(\"2+3i\";2)</item> returns -5+12i."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3148748\n"
+"help.text"
+msgid "<bookmark_value>IMARGUMENT function</bookmark_value>"
+msgstr "Vlera tanishme. Vlera e tanishme e investimit."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3148748\n"
+"66\n"
+"help.text"
+msgid "IMARGUMENT"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3153418\n"
-"15\n"
+"04060116.xhp\n"
+"par_id3151341\n"
+"67\n"
"help.text"
-msgid "Drawing Objects"
-msgstr "Objektet e Vizatimit"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMARGUMENT\">The result is the argument (the phi angle) of a complex number.</ahelp>"
+msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3149122\n"
-"16\n"
+"04060116.xhp\n"
+"hd_id3150533\n"
+"68\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3156402\n"
+"69\n"
+"help.text"
+msgid "IMARGUMENT(\"ComplexNumber\")"
+msgstr "Pjesa imagjinare"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3153019\n"
+"71\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3159125\n"
+"72\n"
+"help.text"
+msgid "<item type=\"input\">=IMARGUMENT(\"3+4j\")</item> returns 0.927295."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3149146\n"
+"help.text"
+msgid "<bookmark_value>IMCOS function</bookmark_value>"
+msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3149146\n"
+"73\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_DRAWINGS\">Includes all drawing objects in the printed document.</ahelp>"
+msgid "IMCOS"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3150330\n"
-"17\n"
+"04060116.xhp\n"
+"par_id3149725\n"
+"74\n"
"help.text"
-msgid "Formulas"
-msgstr "Formulat"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMCOS\">The result is the cosine of a complex number.</ahelp>"
+msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3153715\n"
-"18\n"
+"04060116.xhp\n"
+"hd_id3159116\n"
+"75\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147415\n"
+"76\n"
+"help.text"
+msgid "IMCOS(\"ComplexNumber\")"
+msgstr "Pjesa imagjinare"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3152980\n"
+"78\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3157901\n"
+"79\n"
+"help.text"
+msgid "<item type=\"input\">=IMCOS(\"3+4j\") </item>returns -27.03-3.85i (rounded)."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3150024\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_FORMULAS\">Prints the formulas contained in the cells, instead of the results.</ahelp>"
+msgid "<bookmark_value>IMDIV function</bookmark_value>"
+msgstr "Indeksi i vlerës (1..30) së selektuar."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3150024\n"
+"80\n"
+"help.text"
+msgid "IMDIV"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3156385\n"
-"19\n"
+"04060116.xhp\n"
+"par_id3145825\n"
+"81\n"
"help.text"
-msgid "Zero Values"
-msgstr "Vlerat zero"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMDIV\">The result is the division of two complex numbers.</ahelp>"
+msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3149258\n"
-"20\n"
+"04060116.xhp\n"
+"hd_id3150465\n"
+"82\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_NULLVALS\">Specifies that cells with a zero value are printed.</ahelp>"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3146942\n"
+"83\n"
+"help.text"
+msgid "IMDIV(\"Numerator\"; \"Denominator\")"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3154022\n"
-"21\n"
+"04060116.xhp\n"
+"par_id3150741\n"
+"84\n"
"help.text"
-msgid "Page Order"
-msgstr "Renditja e faqeve"
+msgid "<emph>Numerator</emph>, <emph>Denominator</emph> are complex numbers that are entered in the form \"x+yi\" or \"x+yj\"."
+msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3166423\n"
-"22\n"
+"04060116.xhp\n"
+"hd_id3151229\n"
+"85\n"
"help.text"
-msgid "Defines the order in which data in a sheet is numbered and printed when it does not fit on one printed page."
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148440\n"
+"86\n"
+"help.text"
+msgid "<item type=\"input\">=IMDIV(\"-238+240i\";\"10+24i\")</item> returns 5+12i."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3153039\n"
+"help.text"
+msgid "<bookmark_value>IMEXP function</bookmark_value>"
+msgstr "Shndërron një vlerë në tekst."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3153039\n"
+"87\n"
+"help.text"
+msgid "IMEXP"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3152580\n"
-"23\n"
+"04060116.xhp\n"
+"par_id3144741\n"
+"88\n"
"help.text"
-msgid "Top to bottom, then right"
-msgstr "~Nga maja në fund, pastaj djathtas"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMEXP\">The result is the power of e and the complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3150205\n"
-"24\n"
+"04060116.xhp\n"
+"hd_id3145591\n"
+"89\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154810\n"
+"90\n"
+"help.text"
+msgid "IMEXP(\"ComplexNumber\")"
+msgstr "Pjesa imagjinare"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3148581\n"
+"92\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149253\n"
+"93\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_TOPDOWN\">Prints vertically from the left column to the bottom of the sheet.</ahelp>"
+msgid "<item type=\"input\">=IMEXP(\"1+j\") </item>returns 1.47+2.29j (rounded)."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3149955\n"
+"help.text"
+msgid "<bookmark_value>IMCONJUGATE function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3149955\n"
+"94\n"
+"help.text"
+msgid "IMCONJUGATE"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3150786\n"
-"25\n"
+"04060116.xhp\n"
+"par_id3155263\n"
+"95\n"
"help.text"
-msgid "Left to right, then down"
-msgstr "Nga e m~ajta në të djathtë, e pastaj poshtë"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMCONJUGATE\">The result is the conjugated complex complement to a complex number.</ahelp>"
+msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3154657\n"
-"26\n"
+"04060116.xhp\n"
+"hd_id3148750\n"
+"96\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153082\n"
+"97\n"
+"help.text"
+msgid "IMCONJUGATE(\"ComplexNumber\")"
+msgstr "Pjesa imagjinare"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3153326\n"
+"99\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149688\n"
+"100\n"
+"help.text"
+msgid "<item type=\"input\">=IMCONJUGATE(\"1+j\")</item> returns 1-j."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3150898\n"
+"help.text"
+msgid "<bookmark_value>IMLN function</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3150898\n"
+"101\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_TABLE:BTN_LEFTRIGHT\">Prints horizontally from the top row of the sheet to the right column.</ahelp>"
+msgid "IMLN"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3150887\n"
-"27\n"
+"04060116.xhp\n"
+"par_id3146853\n"
+"102\n"
"help.text"
-msgid "First page number"
-msgstr "Numri i faqes së parë"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMLN\">The result is the natural logarithm (to the base e) of a complex number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3155378\n"
-"28\n"
+"04060116.xhp\n"
+"hd_id3150008\n"
+"103\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155954\n"
+"104\n"
+"help.text"
+msgid "IMLN(\"ComplexNumber\")"
+msgstr "Pjesa imagjinare"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3153565\n"
+"106\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153736\n"
+"107\n"
+"help.text"
+msgid "<item type=\"input\">=IMLN(\"1+j\")</item> returns 0.35+0.79j (rounded)."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3155929\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_TABLE:BTN_PAGENO\">Select this option if you want the first page to start with a number other than 1.</ahelp>"
+msgid "<bookmark_value>IMLOG10 function</bookmark_value>"
+msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3155929\n"
+"108\n"
+"help.text"
+msgid "IMLOG10"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3145389\n"
-"35\n"
+"04060116.xhp\n"
+"par_id3149882\n"
+"109\n"
"help.text"
-msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_PAGENO\">Enter the number of the first page.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG10\">The result is the common logarithm (to the base 10) of a complex number.</ahelp>"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3146978\n"
-"29\n"
+"04060116.xhp\n"
+"hd_id3154327\n"
+"110\n"
"help.text"
-msgid "Scale"
-msgstr "Shkallë"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3149408\n"
-"30\n"
+"04060116.xhp\n"
+"par_id3150128\n"
+"111\n"
"help.text"
-msgid "Defines a page scale for the printed spreadsheet."
+msgid "IMLOG10(\"ComplexNumber\")"
+msgstr "Pjesa imagjinare"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3149003\n"
+"113\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3151021\n"
+"114\n"
+"help.text"
+msgid "<item type=\"input\">=IMLOG10(\"1+j\")</item> returns 0.15+0.34j (rounded)."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3155623\n"
+"help.text"
+msgid "<bookmark_value>IMLOG2 function</bookmark_value>"
+msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3155623\n"
+"115\n"
+"help.text"
+msgid "IMLOG2"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN1096D\n"
+"04060116.xhp\n"
+"par_id3150932\n"
+"116\n"
"help.text"
-msgid "Scaling mode"
-msgstr "Modi piksel"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMLOG2\">The result is the binary logarithm of a complex number.</ahelp>"
+msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN10971\n"
+"04060116.xhp\n"
+"hd_id3153046\n"
+"117\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3145355\n"
+"118\n"
+"help.text"
+msgid "IMLOG2(\"ComplexNumber\")"
+msgstr "Pjesa imagjinare"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3148768\n"
+"120\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149536\n"
+"121\n"
+"help.text"
+msgid "<item type=\"input\">=IMLOG2(\"1+j\")</item> returns 0.50+1.13j (rounded)."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3145626\n"
+"help.text"
+msgid "<bookmark_value>IMPRODUCT function</bookmark_value>"
+msgstr "Gabim: Vlera nuk është në dispozicion"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3145626\n"
+"122\n"
+"help.text"
+msgid "IMPRODUCT"
+msgstr "SUMPRODUCT"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153545\n"
+"123\n"
"help.text"
-msgid "<ahelp hid=\"sc:ListBox:RID_SCPAGE_TABLE:LB_SCALEMODE\">Select a scaling mode from the list box. Appropriate controls will be shown at the side of the list box.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMPRODUCT\">The result is the product of up to 29 complex numbers.</ahelp>"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3155089\n"
-"31\n"
+"04060116.xhp\n"
+"hd_id3149388\n"
+"124\n"
"help.text"
-msgid "Reduce/enlarge printout"
-msgstr "Zvoglo/zmadho printimin"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3159171\n"
-"32\n"
+"04060116.xhp\n"
+"par_id3149027\n"
+"125\n"
"help.text"
-msgid "Specifies a scaling factor to scale all printed pages."
+msgid "IMPRODUCT(\"ComplexNumber\"; \"ComplexNumber1\"; ...)"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN1099A\n"
+"04060116.xhp\n"
+"hd_id3153228\n"
+"127\n"
"help.text"
-msgid "Scaling factor"
-msgstr "Rritje e bitmap-it"
+msgid "Example"
+msgstr "Shembull"
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3152899\n"
-"36\n"
+"04060116.xhp\n"
+"par_id3155815\n"
+"128\n"
+"help.text"
+msgid "<item type=\"input\">=IMPRODUCT(\"3+4j\";\"5-3j\")</item> returns 27+11j."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3147539\n"
"help.text"
-msgid "<ahelp hid=\"SC_METRICFIELD_RID_SCPAGE_TABLE_ED_SCALEALL\" visibility=\"hidden\">Enter a scaling factor. Factors less than 100 reduce the pages, higher factors enlarge the pages.</ahelp>"
+msgid "<bookmark_value>IMREAL function</bookmark_value>"
+msgstr "Veprimi përfundoi [Time]: [1]. Vlera kthyese [2]."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3147539\n"
+"129\n"
+"help.text"
+msgid "IMREAL"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109B2\n"
+"04060116.xhp\n"
+"par_id3155372\n"
+"130\n"
"help.text"
-msgid "Fit print range(s) to width/height"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMREAL\">The result is the real coefficient of a complex number.</ahelp>"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109B5\n"
+"04060116.xhp\n"
+"hd_id3154951\n"
+"131\n"
"help.text"
-msgid "Specifies the maximum number of pages horizontally (width) and vertically (height) on which every sheet with the current Page Style is to be printed."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153927\n"
+"132\n"
+"help.text"
+msgid "IMREAL(\"ComplexNumber\")"
+msgstr "Pjesa imagjinare"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3155409\n"
+"134\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155986\n"
+"135\n"
+"help.text"
+msgid "<item type=\"input\">=IMREAL(\"1+3j\")</item> returns 1."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3148431\n"
+"help.text"
+msgid "<bookmark_value>IMSIN function</bookmark_value>"
+msgstr "Mjeti. Vlera e mjetit të shprëndarjes Poisson."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3148431\n"
+"136\n"
+"help.text"
+msgid "IMSIN"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109BB\n"
+"04060116.xhp\n"
+"par_id3152591\n"
+"137\n"
"help.text"
-msgid "The print ranges are always scaled proportionally, so the resulting number of pages may be less than specified."
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSIN\">The result is the sine of a complex number.</ahelp>"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109BF\n"
+"04060116.xhp\n"
+"hd_id3149822\n"
+"138\n"
"help.text"
-msgid "You may clear one of the boxes, then the unspecified dimension will use as many pages as necessary."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3150387\n"
+"139\n"
+"help.text"
+msgid "IMSIN(\"ComplexNumber\")"
+msgstr "Pjesa imagjinare"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3150613\n"
+"141\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154310\n"
+"142\n"
+"help.text"
+msgid "<item type=\"input\">=IMSIN(\"3+4j\")</item> returns 3.85+27.02j (rounded)."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3163826\n"
+"help.text"
+msgid "<bookmark_value>IMSUB function</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3163826\n"
+"143\n"
+"help.text"
+msgid "IMSUB"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109C3\n"
+"04060116.xhp\n"
+"par_id3149277\n"
+"144\n"
"help.text"
-msgid "If you clear both boxes, this will result in a scaling factor of 100%."
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUB\">The result is the subtraction of two complex numbers.</ahelp>"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109CE\n"
+"04060116.xhp\n"
+"hd_id3149264\n"
+"145\n"
"help.text"
-msgid "Width in pages"
-msgstr "Në të gjitha faqet"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109D1\n"
+"04060116.xhp\n"
+"par_id3149710\n"
+"146\n"
"help.text"
-msgid "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEWIDTH\">Enter the maximum number of pages to be printed horizontally across.</ahelp>"
+msgid "IMSUB(\"ComplexNumber1\"; \"ComplexNumber2\")"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109E8\n"
+"04060116.xhp\n"
+"hd_id3155833\n"
+"148\n"
"help.text"
-msgid "Height in pages"
-msgstr "Në të gjitha faqet"
+msgid "Example"
+msgstr "Shembull"
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN109EB\n"
+"04060116.xhp\n"
+"par_id3150963\n"
+"149\n"
+"help.text"
+msgid "<item type=\"input\">=IMSUB(\"13+4j\";\"5+3j\")</item> returns 8+j."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3156312\n"
+"help.text"
+msgid "<bookmark_value>IMSUM function</bookmark_value>"
+msgstr "Kthen SAKTË nëse vlera barazohet me #N/A."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3156312\n"
+"150\n"
"help.text"
-msgid "<ahelp hid=\"sc:NumericField:RID_SCPAGE_TABLE:ED_SCALEPAGEHEIGHT\">Enter the maximum number of pages to be printed vertically stacked.</ahelp>"
+msgid "IMSUM"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3148868\n"
-"33\n"
+"04060116.xhp\n"
+"par_id3153215\n"
+"151\n"
"help.text"
-msgid "Fit print range(s) on number of pages"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSUM\">The result is the sum of up to 29 complex numbers.</ahelp>"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3145074\n"
-"34\n"
+"04060116.xhp\n"
+"hd_id3156095\n"
+"152\n"
"help.text"
-msgid "Specifies the maximum number of pages on which every sheet with the current Page Style is to be printed. The scale will be reduced as necessary to fit the defined number of pages."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3152930\n"
+"153\n"
+"help.text"
+msgid "IMSUM(\"ComplexNumber1\"; \"ComplexNumber2\"; ...)"
msgstr ""
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_idN10A26\n"
+"04060116.xhp\n"
+"hd_id3154640\n"
+"155\n"
"help.text"
-msgid "Number of pages"
-msgstr "Numri i faqeve:"
+msgid "Example"
+msgstr "Shembull"
-#: 05070500.xhp
+#: 04060116.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3144507\n"
-"37\n"
+"04060116.xhp\n"
+"par_id3147081\n"
+"156\n"
+"help.text"
+msgid "<item type=\"input\">=IMSUM(\"13+4j\";\"5+3j\")</item> returns 18+7j."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3147570\n"
"help.text"
-msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCPAGE_TABLE:ED_SCALEPAGENUM\">Enter the maximum number of pages to be printed.</ahelp>"
+msgid "<bookmark_value>IMSQRT function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3147570\n"
+"167\n"
+"help.text"
+msgid "IMSQRT"
msgstr ""
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3156131\n"
+"168\n"
"help.text"
-msgid "WEEKNUM_ADD"
-msgstr "Shto elementin"
+msgid "<ahelp hid=\"HID_AAI_FUNC_IMSQRT\">The result is the square root of a complex number.</ahelp>"
+msgstr ""
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"bm_id3166443\n"
+"04060116.xhp\n"
+"hd_id3145202\n"
+"169\n"
"help.text"
-msgid "<bookmark_value>WEEKNUM_ADD function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"hd_id3166443\n"
-"222\n"
+"04060116.xhp\n"
+"par_id3150760\n"
+"170\n"
"help.text"
-msgid "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_ADD</link></variable>"
+msgid "IMSQRT(\"ComplexNumber\")"
+msgstr "Pjesa imagjinare"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3147268\n"
+"172\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3152807\n"
+"173\n"
+"help.text"
+msgid "<item type=\"input\">=IMSQRT(\"3+4i\")</item> returns 2+1i."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3154054\n"
+"help.text"
+msgid "<bookmark_value>COMPLEX function</bookmark_value>"
+msgstr "I kthen vlerat absolute tw njw numri kompleks"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3154054\n"
+"157\n"
+"help.text"
+msgid "COMPLEX"
msgstr ""
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3152945\n"
-"223\n"
+"04060116.xhp\n"
+"par_id3156111\n"
+"158\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\">The result indicates the number of the calendar week for a date.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COMPLEX\">The result is a complex number which is returned from a real coefficient and an imaginary coefficient.</ahelp>"
msgstr ""
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_idN105DD\n"
+"04060116.xhp\n"
+"hd_id3154744\n"
+"159\n"
"help.text"
-msgid "The WEEKNUM_ADD function is designed to calculate week numbers exactly as Microsoft Excel does. Use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> function, or format your date cells using the WW formatting code, when you need ISO 8601 week numbers."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155999\n"
+"160\n"
+"help.text"
+msgid "COMPLEX(RealNum; INum; Suffix)"
msgstr ""
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"hd_id3153745\n"
-"224\n"
+"04060116.xhp\n"
+"par_id3153626\n"
+"161\n"
+"help.text"
+msgid "<emph>RealNum</emph> is the real coefficient of the complex number."
+msgstr "Kthen SAKTË nëse vlera është një numër."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149135\n"
+"162\n"
+"help.text"
+msgid "<emph>INum</emph> is the imaginary coefficient of the complex number."
+msgstr "Siguron një numër të mbrendshëm për datën e dhënë."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155849\n"
+"163\n"
+"help.text"
+msgid "<emph>Suffix</emph> is a list of options, \"i\" or \"j\"."
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3145659\n"
+"164\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3143229\n"
+"165\n"
+"help.text"
+msgid "<item type=\"input\">=COMPLEX(3;4;\"j\")</item> returns 3+4j."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3155103\n"
+"help.text"
+msgid "<bookmark_value>OCT2BIN function</bookmark_value> <bookmark_value>converting;octal numbers, into binary numbers</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3155103\n"
+"217\n"
+"help.text"
+msgid "OCT2BIN"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3146898\n"
+"218\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2BIN\">The result is the binary number for the octal number entered.</ahelp>"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3146088\n"
+"219\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3153685\n"
+"04060116.xhp\n"
+"par_id3154303\n"
+"220\n"
+"help.text"
+msgid "OCT2BIN(Number; Places)"
+msgstr "Numri i vendeve tw pwrdorura"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3156013\n"
+"221\n"
+"help.text"
+msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153984\n"
+"222\n"
+"help.text"
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3147493\n"
+"223\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147260\n"
+"224\n"
+"help.text"
+msgid "<item type=\"input\">=OCT2BIN(3;3)</item> returns 011."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3152791\n"
+"help.text"
+msgid "<bookmark_value>OCT2DEC function</bookmark_value> <bookmark_value>converting;octal numbers, into decimal numbers</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3152791\n"
"225\n"
"help.text"
-msgid "WEEKNUM_ADD(Date; ReturnType)"
+msgid "OCT2DEC"
msgstr ""
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3159277\n"
+"04060116.xhp\n"
+"par_id3149199\n"
"226\n"
"help.text"
-msgid "<emph>Date</emph> is the date within the calendar week."
+msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2DEZ\">The result is the decimal number for the octal number entered.</ahelp>"
msgstr ""
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3154098\n"
+"04060116.xhp\n"
+"hd_id3159337\n"
"227\n"
"help.text"
-msgid "<emph>ReturnType</emph> is 1 for week beginning on a Sunday, 2 for week beginning on a Monday."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"hd_id3152886\n"
+"04060116.xhp\n"
+"par_id3153902\n"
"228\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "OCT2DEC(Number)"
+msgstr "Numri i faqes"
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3149973\n"
+"04060116.xhp\n"
+"par_id3155326\n"
"229\n"
"help.text"
-msgid "In which week number does 12.24.2001 fall?"
+msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
msgstr ""
-#: func_weeknumadd.xhp
+#: 04060116.xhp
msgctxt ""
-"func_weeknumadd.xhp\n"
-"par_id3149914\n"
+"04060116.xhp\n"
+"hd_id3154698\n"
"230\n"
"help.text"
-msgid "<item type=\"input\">=WEEKNUM_ADD(24.12.2001;1)</item> returns 52."
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3154930\n"
+"231\n"
"help.text"
-msgid "MONTH"
-msgstr "Muaj"
+msgid "<item type=\"input\">=OCT2DEC(144)</item> returns 100."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"bm_id3149936\n"
+"04060116.xhp\n"
+"bm_id3155391\n"
"help.text"
-msgid "<bookmark_value>MONTH function</bookmark_value>"
-msgstr "Gabim: Vlera nuk është në dispozicion"
+msgid "<bookmark_value>OCT2HEX function</bookmark_value> <bookmark_value>converting;octal numbers, into hexadecimal numbers</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"hd_id3149936\n"
-"76\n"
+"04060116.xhp\n"
+"hd_id3155391\n"
+"232\n"
"help.text"
-msgid "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>"
+msgid "OCT2HEX"
msgstr ""
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"par_id3153538\n"
-"77\n"
+"04060116.xhp\n"
+"par_id3148831\n"
+"233\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_MONAT\">Returns the month for the given date value.</ahelp> The month is returned as an integer between 1 and 12."
+msgid "<ahelp hid=\"HID_AAI_FUNC_OCT2HEX\"> The result is the hexadecimal number for the octal number entered.</ahelp>"
msgstr ""
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"hd_id3149517\n"
-"78\n"
+"04060116.xhp\n"
+"hd_id3146988\n"
+"234\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"par_id3145602\n"
-"79\n"
+"04060116.xhp\n"
+"par_id3150523\n"
+"235\n"
"help.text"
-msgid "MONTH(Number)"
-msgstr "Numri i faqes"
+msgid "OCT2HEX(Number; Places)"
+msgstr "Numri i vendeve tw pwrdorura"
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"par_id3149485\n"
-"80\n"
+"04060116.xhp\n"
+"par_id3159162\n"
+"236\n"
"help.text"
-msgid "<emph>Number</emph>, as a time value, is a decimal for which the month is to be returned."
+msgid "<emph>Number</emph> is the octal number. The number can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement."
msgstr ""
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"hd_id3153322\n"
-"81\n"
+"04060116.xhp\n"
+"par_id3145420\n"
+"237\n"
"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
+msgid "<emph>Places</emph> is the number of places to be output."
+msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
+"04060116.xhp\n"
+"hd_id3150504\n"
+"238\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148802\n"
+"239\n"
+"help.text"
+msgid "<item type=\"input\">=OCT2HEX(144;4)</item> returns 0064."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3148446\n"
+"help.text"
+msgid "<bookmark_value>CONVERT_ADD function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3148446\n"
+"175\n"
+"help.text"
+msgid "CONVERT_ADD"
+msgstr "Shto elementin"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154902\n"
+"176\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_CONVERT\">Converts a value from one unit of measure to the corresponding value in another unit of measure.</ahelp> Enter the units of measures directly as text in quotation marks or as a reference. If you enter the units of measure in cells, they must correspond exactly with the following list which is case sensitive: For example, in order to enter a lower case l (for liter) in a cell, enter the apostrophe ' immediately followed by l."
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153055\n"
+"177\n"
+"help.text"
+msgid "Property"
+msgstr "Veti"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147234\n"
+"178\n"
+"help.text"
+msgid "Units"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147512\n"
+"179\n"
+"help.text"
+msgid "Weight"
+msgstr "Peshë"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148476\n"
+"180\n"
+"help.text"
+msgid "<emph>g</emph>, sg, lbm, <emph>u</emph>, ozm, stone, ton, grain, pweight, hweight, shweight, brton"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155361\n"
+"181\n"
+"help.text"
+msgid "Length"
+msgstr "Gjatësi"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148925\n"
+"182\n"
+"help.text"
+msgid "<emph>m</emph>, mi, Nmi, in, ft, yd, ang, Pica, ell, <emph>parsec</emph>, <emph>lightyear</emph>, survey_mi"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3158429\n"
+"183\n"
+"help.text"
+msgid "Time"
+msgstr "Koha"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3150707\n"
+"184\n"
+"help.text"
+msgid "yr, day, hr, mn, <emph>sec</emph>, <emph>s</emph>"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153238\n"
+"185\n"
+"help.text"
+msgid "Pressure"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3166437\n"
+"186\n"
+"help.text"
+msgid "<emph>Pa</emph>, <emph>atm</emph>, <emph>at</emph>, <emph>mmHg</emph>, Torr, psi"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3152944\n"
+"187\n"
+"help.text"
+msgid "Force"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155582\n"
+"188\n"
+"help.text"
+msgid "<emph>N</emph>, <emph>dyn</emph>, <emph>dy</emph>, lbf, <emph>pond</emph>"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153686\n"
+"189\n"
+"help.text"
+msgid "Energy"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153386\n"
+"190\n"
+"help.text"
+msgid "<emph>J</emph>, <emph>e</emph>, <emph>c</emph>, <emph>cal</emph>, <emph>eV</emph>, <emph>ev</emph>, HPh, <emph>Wh</emph>, <emph>wh</emph>, flb, BTU, btu"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154100\n"
+"191\n"
+"help.text"
+msgid "Power"
+msgstr "Fuqi"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149915\n"
+"192\n"
+"help.text"
+msgid "<emph>W</emph>, <emph>w</emph>, HP, PS"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148988\n"
+"193\n"
+"help.text"
+msgid "Field strength"
+msgstr "Emri i fushës"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148616\n"
+"194\n"
+"help.text"
+msgid "<emph>T</emph>, <emph>ga</emph>"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3151120\n"
+"195\n"
+"help.text"
+msgid "Temperature"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3148659\n"
+"196\n"
+"help.text"
+msgid "C, F, <emph>K</emph>, <emph>kel</emph>, Reau, Rank"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154610\n"
+"197\n"
+"help.text"
+msgid "Volume"
+msgstr "Volumi"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3149423\n"
+"198\n"
+"help.text"
+msgid "<emph>l</emph>, <emph>L</emph>, <emph>lt</emph>, tsp, tbs, oz, cup, pt, us_pt, qt, gal, <emph>m3</emph>, mi3, Nmi3, in3, ft3, yd3, ang3, Pica3, barrel, bushel, regton, Schooner, Middy, Glass"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
"par_id3149244\n"
-"83\n"
+"199\n"
"help.text"
-msgid "=MONTH(NOW()) returns the current month."
+msgid "Area"
+msgstr "Hapësira"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3150425\n"
+"200\n"
+"help.text"
+msgid "<emph>m2</emph>, mi2, Nmi2, in2, ft2, yd2, <emph>ang2</emph>, Pica2, Morgen, <emph>ar</emph>, acre, ha"
msgstr ""
-#: func_month.xhp
+#: 04060116.xhp
msgctxt ""
-"func_month.xhp\n"
-"par_id3154790\n"
-"84\n"
+"04060116.xhp\n"
+"par_id3150629\n"
+"201\n"
"help.text"
-msgid "=MONTH(C4) returns 7 if you enter 2000-07-07 to cell C4 (that date value might get formatted differently after you press Enter)."
+msgid "Speed"
+msgstr "Shpejtësia e lavjerrësit"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3159246\n"
+"202\n"
+"help.text"
+msgid "<emph>m/s</emph>, <emph>m/sec</emph>, m/h, mph, kn, admkn"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3150789\n"
+"201\n"
"help.text"
-msgid "Solver"
+msgid "Information"
+msgstr "Informacion"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3159899\n"
+"202\n"
+"help.text"
+msgid "<emph>bit</emph>, <emph>byte</emph>"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"bm_id7654652\n"
+"04060116.xhp\n"
+"par_id3143277\n"
+"203\n"
"help.text"
-msgid "<bookmark_value>goal seeking;solver</bookmark_value><bookmark_value>what if operations;solver</bookmark_value><bookmark_value>back-solving</bookmark_value><bookmark_value>solver</bookmark_value>"
+msgid "Units of measure in <emph>bold</emph> can be preceded by a prefix character from the following list:"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"hd_id9216284\n"
+"04060116.xhp\n"
+"par_id3148422\n"
+"204\n"
"help.text"
-msgid "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Solver</link></variable>"
+msgid "Prefix"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id9210486\n"
+"04060116.xhp\n"
+"par_id3148423\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the Solver dialog. A solver allows to solve equations with multiple unknown variables by goal seeking methods.</ahelp>"
+msgid "Multiplier"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id8538773\n"
+"04060116.xhp\n"
+"par_id3149490\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized.</ahelp>"
+msgid "Y (yotta)"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id7564012\n"
+"04060116.xhp\n"
+"par_id3149931\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a maximum value of the target cell.</ahelp>"
+msgid "10^24"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id1186254\n"
+"04060116.xhp\n"
+"par_id3149491\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a minimum value of the target cell.</ahelp>"
+msgid "Z (zetta)"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id7432477\n"
+"04060116.xhp\n"
+"par_id3149932\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation to approach a given value of the target cell.</ahelp>"
+msgid "10^21"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id7141026\n"
+"04060116.xhp\n"
+"par_id3149492\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value or a cell reference.</ahelp>"
+msgid "E (exa)"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id8531449\n"
+"04060116.xhp\n"
+"par_id3149933\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the cell range that can be changed.</ahelp>"
+msgid "10^18"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id9183935\n"
+"04060116.xhp\n"
+"par_id3149493\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a cell reference.</ahelp>"
+msgid "P (peta)"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id946684\n"
+"04060116.xhp\n"
+"par_id3149934\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select an operator from the list.</ahelp>"
+msgid "10^15"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id9607226\n"
+"04060116.xhp\n"
+"par_id3149494\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a value or a cell reference.</ahelp>"
+msgid "T (tera)"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id1939451\n"
+"04060116.xhp\n"
+"par_id3149935\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to shrink or restore the dialog. You can click or select cells in the sheet. You can enter a cell reference manually in the input box.</ahelp>"
+msgid "10^12"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id9038972\n"
+"04060116.xhp\n"
+"par_id3149495\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to remove the row from the list. Any rows from below this row move up.</ahelp>"
+msgid "G (giga)"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id2423780\n"
+"04060116.xhp\n"
+"par_id3149936\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Options dialog.</ahelp>"
+msgid "10^9"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id2569658\n"
+"04060116.xhp\n"
+"par_id3149496\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to solve the equation with the current settings. The dialog settings are retained until you close the current document.</ahelp>"
+msgid "M (mega)"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id5474410\n"
+"04060116.xhp\n"
+"par_id3149937\n"
"help.text"
-msgid "To solve equations with the solver"
+msgid "10^6"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id2216559\n"
+"04060116.xhp\n"
+"par_id3149497\n"
"help.text"
-msgid "The goal of the solver process is to find those variable values of an equation that result in an optimized value in the <emph>target cell</emph>, also named the \"objective\". You can choose whether the value in the target cell should be a maximum, a minimum, or approaching a given value."
+msgid "k (kilo)"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id7869502\n"
+"04060116.xhp\n"
+"par_id3149938\n"
"help.text"
-msgid "The initial variable values are inserted in a rectangular cell range that you enter in the <emph>By changing cells</emph> box."
+msgid "10^3"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id9852900\n"
+"04060116.xhp\n"
+"par_id3149498\n"
"help.text"
-msgid "You can define a series of limiting conditions that set constraints for some cells. For example, you can set the constraint that one of the variables or cells must not be bigger than another variable, or not bigger than a given value. You can also define the constraint that one or more variables must be integers (values without decimals), or binary values (where only 0 and 1 are allowed)."
+msgid "h (hecto)"
msgstr ""
-#: solver.xhp
+#: 04060116.xhp
msgctxt ""
-"solver.xhp\n"
-"par_id5323953\n"
+"04060116.xhp\n"
+"par_id3149939\n"
"help.text"
-msgid "The default solver engine supports only linear equations."
+msgid "10^2"
msgstr ""
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3149499\n"
"help.text"
-msgid "Define Database Range"
-msgstr "Defino Intervalin e Databazës"
+msgid "e (deca)"
+msgstr ""
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"hd_id3157909\n"
-"1\n"
+"04060116.xhp\n"
+"par_id3149940\n"
"help.text"
-msgid "Define Database Range"
-msgstr "Defino Intervalin e Databazës"
+msgid "10^1"
+msgstr ""
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"par_id3155922\n"
-"2\n"
+"04060116.xhp\n"
+"par_id3149500\n"
"help.text"
-msgid "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\">Defines a database range based on the selected cells in your sheet.</ahelp></variable>"
+msgid "d (deci)"
msgstr ""
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"par_id3149456\n"
-"5\n"
+"04060116.xhp\n"
+"par_id3143940\n"
"help.text"
-msgid "You can only select a rectangular cell range."
+msgid "10^-1"
msgstr ""
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"hd_id3156422\n"
-"3\n"
+"04060116.xhp\n"
+"par_id3149501\n"
"help.text"
-msgid "Name"
-msgstr "Emri"
+msgid "c (centi)"
+msgstr ""
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"par_id3150770\n"
-"4\n"
+"04060116.xhp\n"
+"par_id3149941\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DBNAMES:ED_NAME\">Enter a name for the database range that you want to define, or select an existing name from the list.</ahelp>"
+msgid "10^-2"
msgstr ""
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"hd_id3147228\n"
-"6\n"
+"04060116.xhp\n"
+"par_id3149502\n"
"help.text"
-msgid "Range"
-msgstr "Brez"
+msgid "m (milli)"
+msgstr ""
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"par_id3150441\n"
-"7\n"
+"04060116.xhp\n"
+"par_id3149942\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_DBNAMES:ED_DBAREA\">Displays the selected cell range.</ahelp>"
+msgid "10^-3"
msgstr ""
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"hd_id3153188\n"
-"10\n"
+"04060116.xhp\n"
+"par_id3149503\n"
"help.text"
-msgid "Add/Modify"
-msgstr "Ndrysho formëdhënien..."
+msgid "u (micro)"
+msgstr ""
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"par_id3153726\n"
-"11\n"
+"04060116.xhp\n"
+"par_id3149943\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_DBNAMES:BTN_ADD\">Adds the selected cell range to the database range list, or modifies an existing database range.</ahelp>"
+msgid "10^-6"
msgstr ""
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"hd_id3150010\n"
-"12\n"
+"04060116.xhp\n"
+"par_id3149504\n"
"help.text"
-msgid "More >>"
-msgstr "Më shumë >>"
+msgid "n (nano)"
+msgstr ""
-#: 12010000.xhp
+#: 04060116.xhp
msgctxt ""
-"12010000.xhp\n"
-"par_id3153144\n"
-"13\n"
+"04060116.xhp\n"
+"par_id3149944\n"
"help.text"
-msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_DBNAMES:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12010100.xhp\" name=\"options\">options</link>.</ahelp>"
+msgid "10^-9"
msgstr ""
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"tit\n"
+"04060116.xhp\n"
+"par_id3149505\n"
"help.text"
-msgid "1st, 2nd, 3rd Group"
+msgid "p (pico)"
msgstr ""
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"hd_id3149784\n"
-"1\n"
+"04060116.xhp\n"
+"par_id3149945\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12050100.xhp\" name=\"1st, 2nd, 3rd Group\">1st, 2nd, 3rd Group</link>"
+msgid "10^-12"
msgstr ""
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3145068\n"
-"2\n"
+"04060116.xhp\n"
+"par_id3149506\n"
"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_SUBT_GROUP1\">Specify the settings for up to three subtotal groups. Each tab has the same layout.</ahelp>"
+msgid "f (femto)"
msgstr ""
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3148797\n"
-"3\n"
+"04060116.xhp\n"
+"par_id3149946\n"
"help.text"
-msgid "To insert subtotal values into a table:"
+msgid "10^-15"
msgstr ""
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3154908\n"
-"13\n"
+"04060116.xhp\n"
+"par_id3149507\n"
"help.text"
-msgid "Ensure that the columns of the table have labels."
+msgid "a (atto)"
msgstr ""
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3153968\n"
-"4\n"
+"04060116.xhp\n"
+"par_id3149947\n"
"help.text"
-msgid "Select the table or the area in the table that you want to calculate subtotals for, and then choose <emph>Data – Subtotals</emph>."
+msgid "10^-18"
msgstr ""
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3161831\n"
-"5\n"
+"04060116.xhp\n"
+"par_id3149508\n"
"help.text"
-msgid "In the <emph>Group By</emph> box, select the column that you want to add the subtotals to."
+msgid "z (zepto)"
msgstr ""
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3153188\n"
-"6\n"
+"04060116.xhp\n"
+"par_id3149948\n"
"help.text"
-msgid "In the <emph>Calculate subtotals for</emph> box, select the check boxes for the columns containing the values that you want to subtotal."
+msgid "10^-21"
msgstr ""
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3152460\n"
-"14\n"
+"04060116.xhp\n"
+"par_id3149509\n"
"help.text"
-msgid "In the <emph>Use function</emph> box, select the function that you want to use to calculate the subtotals."
+msgid "y (yocto)"
msgstr ""
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3154321\n"
-"15\n"
+"04060116.xhp\n"
+"par_id3149949\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+msgid "10^-24"
+msgstr ""
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"hd_id3156441\n"
-"7\n"
+"04060116.xhp\n"
+"par_id0908200903061174\n"
"help.text"
-msgid "Group by"
-msgstr "~Grupo sipas"
+msgid "Information units \"bit\" and \"byte\" may also be prefixed by one of the following IEC 60027-2 / IEEE 1541 prefixes:"
+msgstr ""
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3154013\n"
-"8\n"
+"04060116.xhp\n"
+"par_id0908200903090966\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SUBT_GROUP\">Select the column that you want to control the subtotal calculation process. If the contents of the selected column change, the subtotals are automatically recalculated.</ahelp>"
+msgid "ki kibi 1024"
msgstr ""
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"hd_id3154943\n"
-"9\n"
+"04060116.xhp\n"
+"par_id0908200903090958\n"
"help.text"
-msgid "Calculate subtotals for"
-msgstr "~Llogarit nëntotalet për"
+msgid "Mi mebi 1048576"
+msgstr ""
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3147125\n"
-"10\n"
+"04060116.xhp\n"
+"par_id0908200903090936\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SUBT_COLS\">Select the column(s) containing the values that you want to subtotal.</ahelp>"
+msgid "Gi gibi 1073741824"
msgstr ""
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"hd_id3156283\n"
-"11\n"
+"04060116.xhp\n"
+"par_id0908200903090975\n"
"help.text"
-msgid "Use function"
-msgstr "Shfrytëzo ~funksionin"
+msgid "Ti tebi 1099511627776"
+msgstr ""
-#: 12050100.xhp
+#: 04060116.xhp
msgctxt ""
-"12050100.xhp\n"
-"par_id3145647\n"
-"12\n"
+"04060116.xhp\n"
+"par_id0908200903090930\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SUBT_FUNC\">Select the mathematical function that you want to use to calculate the subtotals.</ahelp>"
+msgid "Pi pebi 1125899906842620"
msgstr ""
-#: 06050000.xhp
+#: 04060116.xhp
msgctxt ""
-"06050000.xhp\n"
+"04060116.xhp\n"
+"par_id0908200903091070\n"
+"help.text"
+msgid "Ei exbi 1152921504606850000"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903091097\n"
+"help.text"
+msgid "Zi zebi 1180591620717410000000"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id0908200903091010\n"
+"help.text"
+msgid "Yi yobi 1208925819614630000000000"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3146125\n"
+"209\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153695\n"
+"210\n"
+"help.text"
+msgid "CONVERT_ADD(Number; \"FromUnit\"; \"ToUnit\")"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3147522\n"
+"211\n"
+"help.text"
+msgid "<emph>Number</emph> is the number to be converted."
+msgstr "Numri binar qw do tw shndwrrohet (si tekst)"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154472\n"
+"212\n"
+"help.text"
+msgid "<emph>FromUnit</emph> is the unit from which conversion is taking place."
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3153790\n"
+"213\n"
+"help.text"
+msgid "<emph>ToUnit</emph> is the unit to which conversion is taking place. Both units must be of the same type."
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3156270\n"
+"214\n"
+"help.text"
+msgid "Examples"
+msgstr "Shembuj:"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3156336\n"
+"215\n"
+"help.text"
+msgid "<item type=\"input\">=CONVERT_ADD(10;\"HP\";\"PS\") </item>returns, rounded to two decimal places, 10.14. 10 HP equal 10.14 PS."
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154834\n"
+"216\n"
+"help.text"
+msgid "<item type=\"input\">=CONVERT_ADD(10;\"km\";\"mi\") </item>returns, rounded to two decimal places, 6.21. 10 kilometers equal 6.21 miles. The k is the permitted prefix character for the factor 10^3."
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"bm_id3147096\n"
+"help.text"
+msgid "<bookmark_value>FACTDOUBLE function</bookmark_value> <bookmark_value>factorials;numbers with increments of two</bookmark_value>"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3147096\n"
+"36\n"
+"help.text"
+msgid "FACTDOUBLE"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3151309\n"
+"37\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_FACTDOUBLE\">Returns the double factorial of a number.</ahelp>"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3154666\n"
+"38\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3155121\n"
+"39\n"
+"help.text"
+msgid "FACTDOUBLE(Number)"
+msgstr "Numri i faqes"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3158440\n"
+"40\n"
+"help.text"
+msgid "Returns <emph>Number</emph> <emph>!!</emph>, the double factorial of <emph>Number</emph>, where <emph>Number</emph> is an integer greater than or equal to zero."
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id2480849\n"
+"help.text"
+msgid "For even numbers FACTDOUBLE(n) returns:"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id4181951\n"
+"help.text"
+msgid "2*4*6*8* ... *n"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id2927335\n"
+"help.text"
+msgid "For odd numbers FACTDOUBLE(n) returns:"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id2107303\n"
+"help.text"
+msgid "1*3*5*7* ... *n"
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id4071779\n"
+"help.text"
+msgid "FACTDOUBLE(0) returns 1 by definition."
+msgstr ""
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"hd_id3154622\n"
+"42\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id7844477\n"
+"help.text"
+msgid "<item type=\"input\">=FACTDOUBLE(5)</item> returns 15."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id3154116\n"
+"43\n"
+"help.text"
+msgid "<item type=\"input\">=FACTDOUBLE(6)</item> returns 48."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060116.xhp
+msgctxt ""
+"04060116.xhp\n"
+"par_id6478469\n"
+"help.text"
+msgid "<item type=\"input\">=FACTDOUBLE(0)</item> returns 1."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
"tit\n"
"help.text"
-msgid "Create Scenario"
-msgstr "Krijo plan-veprimin"
+msgid "Financial Functions Part Three"
+msgstr "Funksionet statistikore"
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3156023\n"
+"04060118.xhp\n"
+"hd_id3146780\n"
"1\n"
"help.text"
-msgid "Create Scenario"
-msgstr "Krijo plan-veprimin"
+msgid "Financial Functions Part Three"
+msgstr "Funksionet statistikore"
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3150541\n"
-"2\n"
+"04060118.xhp\n"
+"bm_id3145112\n"
"help.text"
-msgid "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">Defines a scenario for the selected sheet area.</ahelp></variable>"
+msgid "<bookmark_value>ODDFPRICE function</bookmark_value><bookmark_value>prices;securities with irregular first interest date</bookmark_value>"
msgstr ""
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_idN10637\n"
+"04060118.xhp\n"
+"hd_id3145112\n"
+"71\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/guide/scenario.xhp#scenario\"/>"
+msgid "ODDFPRICE"
msgstr ""
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3156280\n"
-"3\n"
+"04060118.xhp\n"
+"par_id3147250\n"
+"72\n"
"help.text"
-msgid "Name of scenario"
-msgstr "Emri i skenarit"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFPRICE\">Calculates the price per 100 currency units par value of a security, if the first interest date falls irregularly.</ahelp>"
+msgstr ""
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3151041\n"
-"13\n"
+"04060118.xhp\n"
+"hd_id3153074\n"
+"73\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENWIN_TOP\">Defines the name for the scenario. Use a clear and unique name so you can easily identify the scenario.</ahelp> You can also modify a scenario name in the Navigator through the <emph>Properties </emph>context menu command."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146098\n"
+"74\n"
+"help.text"
+msgid "ODDFPRICE(Settlement; Maturity; Issue; FirstCoupon; Rate; Yield; Redemption; Frequency; Basis)"
msgstr ""
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3153954\n"
-"14\n"
+"04060118.xhp\n"
+"par_id3153337\n"
+"75\n"
"help.text"
-msgid "Comment"
-msgstr "Koment"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3155411\n"
-"15\n"
+"04060118.xhp\n"
+"par_id3149051\n"
+"76\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Specifies additional information about the scenario. This information will be displayed in the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> when you click the <emph>Scenarios</emph> icon and select the desired scenario.</ahelp> You can also modify this information in the Navigator through the <emph>Properties </emph>context menu command."
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147297\n"
+"77\n"
+"help.text"
+msgid "<emph>Issue</emph> is the date of issue of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150393\n"
+"78\n"
+"help.text"
+msgid "<emph>FirstCoupon</emph> is the first interest date of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147402\n"
+"79\n"
+"help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "E kthen tarifwn efektive vjetore tw interesit"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151387\n"
+"80\n"
+"help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153023\n"
+"81\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
msgstr ""
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3145273\n"
-"16\n"
+"04060118.xhp\n"
+"par_id3150539\n"
+"82\n"
"help.text"
-msgid "Settings"
-msgstr "Parametrat"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3153364\n"
-"17\n"
+"04060118.xhp\n"
+"bm_id3157871\n"
"help.text"
-msgid "This section is used to define some of the settings used in the scenario display."
+msgid "<bookmark_value>ODDFYIELD function</bookmark_value>"
+msgstr "Definon llojin e të dhënës së një vlere."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3157871\n"
+"87\n"
+"help.text"
+msgid "ODDFYIELD"
msgstr ""
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3145367\n"
-"18\n"
+"04060118.xhp\n"
+"par_id3147414\n"
+"88\n"
"help.text"
-msgid "Display border"
-msgstr "Paraqit kufirin në"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDFYIELD\">Calculates the yield of a security if the first interest date falls irregularly.</ahelp>"
+msgstr ""
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3151073\n"
-"19\n"
+"04060118.xhp\n"
+"hd_id3150651\n"
+"89\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NEWSCENARIO:LB_COLOR\">Highlights the scenario in your table with a border. The color for the border is specified in the field to the right of this option.</ahelp> The border will have a title bar displaying the name of the last scenario. The button on the right of the scenario border offers you an overview of all the scenarios in this area, if several have been defined. You can choose any of the scenarios from this list without restrictions."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152982\n"
+"90\n"
+"help.text"
+msgid "ODDFYIELD(Settlement; Maturity; Issue; FirstCoupon; Rate; Price; Redemption; Frequency; Basis)"
msgstr ""
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3149582\n"
-"20\n"
+"04060118.xhp\n"
+"par_id3157906\n"
+"91\n"
"help.text"
-msgid "Copy back"
-msgstr "Kopjo mbrapa"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3154942\n"
-"21\n"
+"04060118.xhp\n"
+"par_id3150026\n"
+"92\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_TWOWAY\">Copies the values of cells that you change into the active scenario. If you do not select this option, the scenario is not changed when you change cell values. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149012\n"
+"93\n"
+"help.text"
+msgid "<emph>Issue</emph> is the date of issue of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148725\n"
+"94\n"
+"help.text"
+msgid "<emph>FirstCoupon</emph> is the first interest period of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150465\n"
+"95\n"
+"help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "E kthen tarifwn efektive vjetore tw interesit"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146940\n"
+"96\n"
+"help.text"
+msgid "<emph>Price</emph> is the price of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149893\n"
+"97\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
msgstr ""
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3149402\n"
-"22\n"
+"04060118.xhp\n"
+"par_id3148888\n"
+"98\n"
"help.text"
-msgid "Copy entire sheet"
-msgstr "Kopjo tërë fletën"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3146969\n"
-"23\n"
+"04060118.xhp\n"
+"bm_id3153933\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_COPYALL\">Copies the entire sheet into an additional scenario sheet. </ahelp>"
+msgid "<bookmark_value>ODDLPRICE function</bookmark_value>"
+msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153933\n"
+"103\n"
+"help.text"
+msgid "ODDLPRICE"
msgstr ""
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_idN1075A\n"
+"04060118.xhp\n"
+"par_id3145145\n"
+"104\n"
"help.text"
-msgid "Prevent changes"
-msgstr "Ndryshimet e tabelës"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLPRICE\">Calculates the price per 100 currency units par value of a security, if the last interest date falls irregularly.</ahelp>"
+msgstr ""
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_idN1075E\n"
+"04060118.xhp\n"
+"hd_id3152784\n"
+"105\n"
"help.text"
-msgid "<ahelp hid=\"sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_PROTECT\">Prevents changes to the active scenario. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155262\n"
+"106\n"
+"help.text"
+msgid "ODDLPRICE(Settlement; Maturity; LastInterest; Rate; Yield; Redemption; Frequency; Basis)"
msgstr ""
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_idN10778\n"
+"04060118.xhp\n"
+"par_id3149689\n"
+"107\n"
"help.text"
-msgid "You can only change the scenario properties if the <emph>Prevent changes</emph> option is not selected and if the sheet is not protected."
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148753\n"
+"108\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150861\n"
+"109\n"
+"help.text"
+msgid "<emph>LastInterest</emph> is the last interest date of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155831\n"
+"110\n"
+"help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "E kthen tarifwn efektive vjetore tw interesit"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153328\n"
+"111\n"
+"help.text"
+msgid "<emph>Yield</emph> is the annual yield of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149186\n"
+"112\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
msgstr ""
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_idN10780\n"
+"04060118.xhp\n"
+"par_id3149726\n"
+"113\n"
"help.text"
-msgid "You can only edit cell values if the <emph>Prevent changes</emph> option is selected, if the <emph>Copy back</emph> is option is not selected, and if the cells are not protected."
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153111\n"
+"114\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152999\n"
+"115\n"
+"help.text"
+msgid "Settlement date: February 7 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, yield: 4.05 per cent, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
msgstr ""
-#: 06050000.xhp
+#: 04060118.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_idN1078C\n"
+"04060118.xhp\n"
+"par_id3148567\n"
+"116\n"
"help.text"
-msgid "You can only change scenario cell values and write them back into the scenario if the <emph>Prevent changes</emph> option is not selected, if the <emph>Copy back</emph> option is selected, and if the cells are not protected."
+msgid "The price per 100 currency units per value of a security, which has an irregular last interest date, is calculated as follows:"
msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"tit\n"
+"04060118.xhp\n"
+"par_id3150332\n"
+"117\n"
"help.text"
-msgid "Data Field Options"
-msgstr "Të dhëna të Adresës - Fusha e Caktuar"
+msgid "=ODDLPRICE(\"1999-02-07\";\"1999-06-15\";\"1998-10-15\"; 0.0375; 0.0405;100;2;0) returns 99.87829."
+msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"bm_id711386\n"
+"04060118.xhp\n"
+"bm_id3153564\n"
"help.text"
-msgid "<bookmark_value>hiding;data fields, from calculations in pivot table</bookmark_value><bookmark_value>display options in pivot table</bookmark_value><bookmark_value>sorting;options in pivot table</bookmark_value><bookmark_value>data field options for pivot table</bookmark_value>"
+msgid "<bookmark_value>ODDLYIELD function</bookmark_value>"
+msgstr "Definon llojin e të dhënës së një vlere."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153564\n"
+"118\n"
+"help.text"
+msgid "ODDLYIELD"
msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10542\n"
+"04060118.xhp\n"
+"par_id3158002\n"
+"119\n"
"help.text"
-msgid "Data Field Options"
-msgstr "Të dhëna të Adresës - Fusha e Caktuar"
+msgid "<ahelp hid=\"HID_AAI_FUNC_ODDLYIELD\">Calculates the yield of a security if the last interest date falls irregularly.</ahelp>"
+msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10546\n"
+"04060118.xhp\n"
+"hd_id3147366\n"
+"120\n"
"help.text"
-msgid "You can specify additional options for column, row, and page data fields in the <link href=\"text/scalc/01/12090105.xhp\">pivot table</link>."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150018\n"
+"121\n"
+"help.text"
+msgid "ODDLYIELD(Settlement; Maturity; LastInterest; Rate; Price; Redemption; Frequency; Basis)"
msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10557\n"
+"04060118.xhp\n"
+"par_id3159132\n"
+"122\n"
"help.text"
-msgid "Sort by"
-msgstr "Klasifiko sipas"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN1055B\n"
+"04060118.xhp\n"
+"par_id3150134\n"
+"123\n"
"help.text"
-msgid "<ahelp hid=\"1495387653\">Select the data field that you want to sort columns or rows by.</ahelp>"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145245\n"
+"124\n"
+"help.text"
+msgid "<emph>LastInterest</emph> is the last interest date of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151014\n"
+"125\n"
+"help.text"
+msgid "<emph>Rate</emph> is the annual rate of interest."
+msgstr "E kthen tarifwn efektive vjetore tw interesit"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149003\n"
+"126\n"
+"help.text"
+msgid "<emph>Price</emph> is the price of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148880\n"
+"127\n"
+"help.text"
+msgid "<emph>Redemption</emph> is the redemption value per 100 currency units of par value."
msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN1055E\n"
+"04060118.xhp\n"
+"par_id3155622\n"
+"128\n"
"help.text"
-msgid "Ascending"
-msgstr "Në rritje"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10562\n"
+"04060118.xhp\n"
+"hd_id3145303\n"
+"129\n"
"help.text"
-msgid "<ahelp hid=\"1495384580\">Sorts the values from the lowest value to the highest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145350\n"
+"130\n"
+"help.text"
+msgid "Settlement date: April 20 1999, maturity date: June 15 1999, last interest: October 15 1998. Interest rate: 3.75 per cent, price: 99.875 currency units, redemption value: 100 currency units, frequency of payments: half-yearly = 2, basis: = 0"
msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10565\n"
+"04060118.xhp\n"
+"par_id3157990\n"
+"131\n"
"help.text"
-msgid "Descending"
-msgstr "Në zvogëlim"
+msgid "The yield of the security, that has an irregular last interest date, is calculated as follows:"
+msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10569\n"
+"04060118.xhp\n"
+"par_id3150572\n"
+"132\n"
"help.text"
-msgid "<ahelp hid=\"1495384581\">Sorts the values descending from the highest value to the lowest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
+msgid "=ODDLYIELD(\"1999-04-20\";\"1999-06-15\"; \"1998-10-15\"; 0.0375; 99.875; 100;2;0) returns 0.044873 or 4.4873%."
msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN1056C\n"
+"04060118.xhp\n"
+"bm_id3148768\n"
"help.text"
-msgid "Manual"
-msgstr "Joautomatike"
+msgid "<bookmark_value>calculating;variable declining depreciations</bookmark_value><bookmark_value>depreciations;variable declining</bookmark_value><bookmark_value>VDB function</bookmark_value>"
+msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10570\n"
+"04060118.xhp\n"
+"hd_id3148768\n"
+"222\n"
"help.text"
-msgid "<ahelp hid=\"1495384582\">Sorts values alphabetically.</ahelp>"
+msgid "VDB"
+msgstr "VDB"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154636\n"
+"223\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_VDB\">Returns the depreciation of an asset for a specified or partial period using a variable declining balance method.</ahelp>"
msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10585\n"
+"04060118.xhp\n"
+"hd_id3155519\n"
+"224\n"
"help.text"
-msgid "Display options"
-msgstr "Shiriti i opcioneve"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10589\n"
+"04060118.xhp\n"
+"par_id3149025\n"
+"225\n"
"help.text"
-msgid "You can specify the display options for all row fields except for the last, innermost row field."
+msgid "VDB(Cost; Salvage; Life; S; End; Factor; Type)"
msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN1058C\n"
+"04060118.xhp\n"
+"par_id3150692\n"
+"226\n"
"help.text"
-msgid "Layout"
-msgstr "Formëdhënje"
+msgid "<emph>Cost</emph> is the initial value of an asset."
+msgstr "Shpenzimet e përvetsimit. Shpenzimi fillestar i pasurisë."
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10590\n"
+"04060118.xhp\n"
+"par_id3155369\n"
+"227\n"
"help.text"
-msgid "<ahelp hid=\"1495387654\">Select the layout mode for the field in the list box.</ahelp>"
+msgid "<emph>Salvage</emph> is the value of an asset at the end of the depreciation."
+msgstr "Vlera për të cilin do të përcaktohet rangimi."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154954\n"
+"228\n"
+"help.text"
+msgid "<emph>Life</emph> is the depreciation duration of the asset."
msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10593\n"
+"04060118.xhp\n"
+"par_id3152817\n"
+"229\n"
"help.text"
-msgid "Empty line after each item"
+msgid "<emph>S</emph> is the start of the depreciation. A must be entered in the same date unit as the duration."
msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN10597\n"
+"04060118.xhp\n"
+"par_id3153221\n"
+"230\n"
"help.text"
-msgid "<ahelp hid=\"1495385090\">Adds an empty row after the data for each item in the pivot table.</ahelp>"
+msgid "<emph>End</emph> is the end of the depreciation."
+msgstr "E kthen tarifwn efektive vjetore tw interesit"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147536\n"
+"231\n"
+"help.text"
+msgid "<emph>Factor</emph> (optional) is the depreciation factor. Factor = 2 is double rate depreciation."
msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN1059A\n"
+"04060118.xhp\n"
+"par_id3154865\n"
+"232\n"
"help.text"
-msgid "Show automatically"
-msgstr "Shfaqje e sllajdeve"
+msgid "<emph>Type </emph>is an optional parameter. Type = 1 means a switch to linear depreciation. In Type = 0 no switch is made."
+msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN1059E\n"
+"04060118.xhp\n"
+"par_idN10A0D\n"
"help.text"
-msgid "Displays the top or bottom nn items when you sort by a specified field."
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105A1\n"
+"04060118.xhp\n"
+"hd_id3148429\n"
+"233\n"
"help.text"
-msgid "Show"
-msgstr "Shfaq"
+msgid "Example"
+msgstr "Shembull"
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105A5\n"
+"04060118.xhp\n"
+"par_id3153927\n"
+"234\n"
"help.text"
-msgid "<ahelp hid=\"1495385091\">Turns on the automatic show feature.</ahelp>"
+msgid "What is the declining-balance double-rate depreciation for a period if the initial cost is 35,000 currency units and the value at the end of the depreciation is 7,500 currency units. The depreciation period is 3 years. The depreciation from the 10th to the 20th period is calculated."
msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105A8\n"
+"04060118.xhp\n"
+"par_id3155991\n"
+"235\n"
"help.text"
-msgid "items"
-msgstr "Artikujt në listë"
+msgid "<item type=\"input\">=VDB(35000;7500;36;10;20;2)</item> = 8603.80 currency units. The depreciation during the period between the 10th and the 20th period is 8,603.80 currency units."
+msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105AC\n"
+"04060118.xhp\n"
+"bm_id3147485\n"
"help.text"
-msgid "<ahelp hid=\"1495390209\">Enter the maximum number of items that you want to show automatically.</ahelp>"
+msgid "<bookmark_value>calculating;internal rates of return, irregular payments</bookmark_value><bookmark_value>internal rates of return;irregular payments</bookmark_value><bookmark_value>XIRR function</bookmark_value>"
msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105AF\n"
+"04060118.xhp\n"
+"hd_id3147485\n"
+"193\n"
"help.text"
-msgid "From"
-msgstr "Nga"
+msgid "XIRR"
+msgstr "IRR"
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105B3\n"
+"04060118.xhp\n"
+"par_id3145614\n"
+"194\n"
"help.text"
-msgid "<ahelp hid=\"1495387655\">Shows the top or bottom items in the specified sort order.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_XIRR\">Calculates the internal rate of return for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105B6\n"
+"04060118.xhp\n"
+"par_idN10E62\n"
"help.text"
-msgid "Using field"
-msgstr "Emri i fushës"
+msgid "If the payments take place at regular intervals, use the IRR function."
+msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105BA\n"
+"04060118.xhp\n"
+"hd_id3146149\n"
+"195\n"
"help.text"
-msgid "<ahelp hid=\"1495387656\">Select the data field that you want to sort the data by.</ahelp>"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149826\n"
+"196\n"
+"help.text"
+msgid "XIRR(Values; Dates; Guess)"
msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105BD\n"
+"04060118.xhp\n"
+"par_id3163821\n"
+"197\n"
"help.text"
-msgid "Hide items"
-msgstr "Fsheh sllajdin"
+msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)."
+msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105C1\n"
+"04060118.xhp\n"
+"par_id3149708\n"
+"198\n"
"help.text"
-msgid "<ahelp hid=\"59010\">Select the items that you want to hide from the calculations.</ahelp>"
+msgid "<emph>Guess</emph> (optional) is a guess that can be input for the internal rate of return. The default is 10%."
msgstr ""
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105C4\n"
+"04060118.xhp\n"
+"hd_id3145085\n"
+"199\n"
"help.text"
-msgid "Hierarchy"
-msgstr "/usr/local - hierarki lokale"
+msgid "Example"
+msgstr "Shembull"
-#: 12090106.xhp
+#: 04060118.xhp
msgctxt ""
-"12090106.xhp\n"
-"par_idN105C8\n"
+"04060118.xhp\n"
+"par_id3149273\n"
+"200\n"
"help.text"
-msgid "<ahelp hid=\"1495387657\">Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies.</ahelp>"
+msgid "Calculation of the internal rate of return for the following five payments:"
msgstr ""
-#: 06080000.xhp
+#: 04060118.xhp
msgctxt ""
-"06080000.xhp\n"
-"tit\n"
+"04060118.xhp\n"
+"par_id3155838\n"
+"305\n"
"help.text"
-msgid "Recalculate"
-msgstr "Rillogarit"
+msgid "A"
+msgstr ""
-#: 06080000.xhp
+#: 04060118.xhp
msgctxt ""
-"06080000.xhp\n"
-"bm_id3157909\n"
+"04060118.xhp\n"
+"par_id3152934\n"
+"306\n"
"help.text"
-msgid "<bookmark_value>recalculating;all formulas in sheets</bookmark_value><bookmark_value>formulas; recalculating manually</bookmark_value><bookmark_value>cell contents; recalculating</bookmark_value>"
+msgid "B"
msgstr ""
-#: 06080000.xhp
+#: 04060118.xhp
msgctxt ""
-"06080000.xhp\n"
-"hd_id3157909\n"
-"1\n"
+"04060118.xhp\n"
+"par_id3154638\n"
+"307\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\">Recalculate</link>"
+msgid "C"
msgstr ""
-#: 06080000.xhp
+#: 04060118.xhp
msgctxt ""
-"06080000.xhp\n"
-"par_id3154758\n"
-"2\n"
+"04060118.xhp\n"
+"par_id3147083\n"
+"308\n"
"help.text"
-msgid "<ahelp hid=\".uno:Calculate\">Recalculates all changed formulas. If AutoCalculate is enabled, the Recalculate command applies only to formulas like RAND or NOW.</ahelp>"
+msgid "1"
msgstr ""
-#: 06080000.xhp
+#: 04060118.xhp
msgctxt ""
-"06080000.xhp\n"
-"par_id315475899\n"
+"04060118.xhp\n"
+"par_id3151187\n"
+"309\n"
"help.text"
-msgid "Press F9 to recalculate. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document."
+msgid "2001-01-01"
+msgstr "~01/01/1904"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145212\n"
+"201\n"
+"help.text"
+msgid "-<item type=\"input\">10000</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146856\n"
+"202\n"
+"help.text"
+msgid "<item type=\"input\">Received</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153277\n"
+"310\n"
+"help.text"
+msgid "2"
msgstr ""
-#: 06080000.xhp
+#: 04060118.xhp
msgctxt ""
-"06080000.xhp\n"
-"par_id3150793\n"
-"5\n"
+"04060118.xhp\n"
+"par_id3154052\n"
+"203\n"
"help.text"
-msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
+msgid "2001-01-02"
+msgstr "Asia/Yekaterinburg"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151297\n"
+"204\n"
+"help.text"
+msgid "<item type=\"input\">2000</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149985\n"
+"205\n"
+"help.text"
+msgid "<item type=\"input\">Deposited</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154744\n"
+"311\n"
+"help.text"
+msgid "3"
msgstr ""
-#: 06080000.xhp
+#: 04060118.xhp
msgctxt ""
-"06080000.xhp\n"
-"par_id315475855\n"
+"04060118.xhp\n"
+"par_id3153151\n"
+"206\n"
"help.text"
-msgid "The Add-In functions like RANDBETWEEN currently cannot respond to the Recalculate command or F9. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas, including the Add-In functions."
+msgid "2001-03-15"
+msgstr "Asia/Novosibirsk"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145657\n"
+"207\n"
+"help.text"
+msgid "2500"
+msgstr "Pamja 200%"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155101\n"
+"312\n"
+"help.text"
+msgid "4"
msgstr ""
-#: 05050000.xhp
+#: 04060118.xhp
msgctxt ""
-"05050000.xhp\n"
-"tit\n"
+"04060118.xhp\n"
+"par_id3146894\n"
+"208\n"
"help.text"
-msgid "Sheet"
-msgstr "Fleta"
+msgid "2001-05-12"
+msgstr "Yll 12-cepësh"
-#: 05050000.xhp
+#: 04060118.xhp
msgctxt ""
-"05050000.xhp\n"
-"bm_id1245460\n"
+"04060118.xhp\n"
+"par_id3143231\n"
+"209\n"
"help.text"
-msgid "<bookmark_value>CTL;right-to-left sheets</bookmark_value><bookmark_value>sheets;right-to-left</bookmark_value><bookmark_value>right-to-left text;spreadsheets</bookmark_value>"
+msgid "5000"
+msgstr "Pamja 100%"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156012\n"
+"313\n"
+"help.text"
+msgid "5"
msgstr ""
-#: 05050000.xhp
+#: 04060118.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3155923\n"
-"1\n"
+"04060118.xhp\n"
+"par_id3149758\n"
+"210\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\">Sheet</link>"
+msgid "2001-08-10"
+msgstr "Indeksi 10 i shfrytëzuesit"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147495\n"
+"211\n"
+"help.text"
+msgid "1000"
+msgstr "Pamja 100%"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152793\n"
+"212\n"
+"help.text"
+msgid "=XIRR(B1:B5; A1:A5; 0.1) returns 0.1828."
msgstr ""
-#: 05050000.xhp
+#: 04060118.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3154758\n"
-"2\n"
+"04060118.xhp\n"
+"bm_id3149198\n"
"help.text"
-msgid "<ahelp hid=\".\">Sets the sheet name and hides or shows selected sheets.</ahelp>"
+msgid "<bookmark_value>XNPV function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149198\n"
+"213\n"
+"help.text"
+msgid "XNPV"
+msgstr "NPV"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153904\n"
+"214\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_XNPV\">Calculates the capital value (net present value)for a list of payments which take place on different dates.</ahelp> The calculation is based on a 365 days per year basis, ignoring leap years."
msgstr ""
-#: 05050000.xhp
+#: 04060118.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3156280\n"
-"3\n"
+"04060118.xhp\n"
+"par_idN11138\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">Rename</link>"
+msgid "If the payments take place at regular intervals, use the NPV function."
msgstr ""
-#: 05050000.xhp
+#: 04060118.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3145787\n"
-"4\n"
+"04060118.xhp\n"
+"hd_id3155323\n"
+"215\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show</link>"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150117\n"
+"216\n"
+"help.text"
+msgid "XNPV(Rate; Values; Dates)"
msgstr ""
-#: 05050000.xhp
+#: 04060118.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3150542\n"
-"5\n"
+"04060118.xhp\n"
+"par_id3153100\n"
+"217\n"
"help.text"
-msgid "If a sheet has been hidden, the Show Sheet dialog opens, which allows you to select a sheet to be shown again."
+msgid "<emph>Rate</emph> is the internal rate of return for the payments."
+msgstr "E kthen tarifwn e brendshme tw kthimit pwr pagesat e planifikuara jo-periodike"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155395\n"
+"218\n"
+"help.text"
+msgid "<emph>Values</emph> and <emph>Dates</emph> refer to a series of payments and the series of associated date values. The first pair of dates defines the start of the payment plan. All other date values must be later, but need not be in any order. The series of values must contain at least one negative and one positive value (receipts and deposits)"
msgstr ""
-#: 05050000.xhp
+#: 04060118.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_idN10656\n"
+"04060118.xhp\n"
+"hd_id3148832\n"
+"219\n"
"help.text"
-msgid "Right-To-Left"
-msgstr "Nga e djathta në të majtë"
+msgid "Example"
+msgstr "Shembull"
-#: 05050000.xhp
+#: 04060118.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_idN1065A\n"
+"04060118.xhp\n"
+"par_id3150525\n"
+"220\n"
"help.text"
-msgid "<ahelp hid=\".uno:SheetRightToLeft\">Changes the orientation of the current sheet to Right-To-Left if <link href=\"text/shared/optionen/01150300.xhp\">CTL</link> support is enabled.</ahelp>"
+msgid "Calculation of the net present value for the above-mentioned five payments for a notional internal rate of return of 6%."
msgstr ""
-#: 05030300.xhp
+#: 04060118.xhp
msgctxt ""
-"05030300.xhp\n"
-"tit\n"
+"04060118.xhp\n"
+"par_id3149910\n"
+"221\n"
"help.text"
-msgid "Hide"
-msgstr "Fshehe"
+msgid "<item type=\"input\">=XNPV(0.06;B1:B5;A1:A5)</item> returns 323.02."
+msgstr ""
-#: 05030300.xhp
+#: 04060118.xhp
msgctxt ""
-"05030300.xhp\n"
-"bm_id3147265\n"
+"04060118.xhp\n"
+"bm_id3148822\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; hiding functions</bookmark_value><bookmark_value>hiding; rows</bookmark_value><bookmark_value>hiding; columns</bookmark_value><bookmark_value>hiding; sheets</bookmark_value><bookmark_value>sheets;hiding</bookmark_value><bookmark_value>columns;hiding</bookmark_value><bookmark_value>rows;hiding</bookmark_value>"
+msgid "<bookmark_value>calculating;rates of return</bookmark_value><bookmark_value>RRI function</bookmark_value>"
msgstr ""
-#: 05030300.xhp
+#: 04060118.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3147265\n"
-"1\n"
+"04060118.xhp\n"
+"hd_id3148822\n"
+"237\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\">Hide</link>"
+msgid "RRI"
+msgstr "RRI"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154293\n"
+"238\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZGZ\">Calculates the interest rate resulting from the profit (return) of an investment.</ahelp>"
msgstr ""
-#: 05030300.xhp
+#: 04060118.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3156281\n"
-"2\n"
+"04060118.xhp\n"
+"hd_id3148444\n"
+"239\n"
"help.text"
-msgid "<ahelp hid=\".uno:Hide\">Hides selected rows, columns or individual sheets.</ahelp>"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148804\n"
+"240\n"
+"help.text"
+msgid "RRI(P; PV; FV)"
msgstr ""
-#: 05030300.xhp
+#: 04060118.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3148645\n"
-"3\n"
+"04060118.xhp\n"
+"par_id3154901\n"
+"241\n"
"help.text"
-msgid "Select the rows or columns that you want to hide, and then choose <emph>Format - Row - Hide </emph>or<emph> Format - Column - Hide</emph>."
+msgid "<emph>P</emph> is the number of periods needed for calculating the interest rate."
msgstr ""
-#: 05030300.xhp
+#: 04060118.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3147427\n"
-"6\n"
+"04060118.xhp\n"
+"par_id3159149\n"
+"242\n"
"help.text"
-msgid "You can hide a sheet by selecting the sheet tab and then choosing <emph>Format - Sheet - Hide</emph>. Hidden sheets are not printed unless they occur within a <link href=\"text/scalc/01/05080000.xhp\" name=\"print range\">print range</link>."
+msgid "<emph>PV</emph> is the present (current) value. The cash value is the deposit of cash or the current cash value of an allowance in kind. As a deposit value a positive value must be entered; the deposit must not be 0 or <0."
msgstr ""
-#: 05030300.xhp
+#: 04060118.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3153157\n"
-"5\n"
+"04060118.xhp\n"
+"par_id3149771\n"
+"243\n"
"help.text"
-msgid "A break in the row or column header indicates whether the row or column is hidden."
+msgid "<emph>FV</emph> determines what is desired as the cash value of the deposit."
msgstr ""
-#: 05030300.xhp
+#: 04060118.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3145251\n"
-"4\n"
+"04060118.xhp\n"
+"hd_id3148941\n"
+"244\n"
"help.text"
-msgid "To display hidden rows, columns or sheets"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154212\n"
+"245\n"
+"help.text"
+msgid "For four periods (years) and a cash value of 7,500 currency units, the interest rate of the return is to be calculated if the future value is 10,000 currency units."
msgstr ""
-#: 05030300.xhp
+#: 04060118.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id8337046\n"
+"04060118.xhp\n"
+"par_id3150775\n"
+"246\n"
"help.text"
-msgid "Select the range that includes the hidden objects. You can also use the box in the corner above row 1 and beside column A. For sheets, this step is not necessary."
+msgid "<item type=\"input\">=RRI(4;7500;10000)</item> = 7.46 %"
msgstr ""
-#: 05030300.xhp
+#: 04060118.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id5532090\n"
+"04060118.xhp\n"
+"par_id3145413\n"
+"247\n"
"help.text"
-msgid "Choose <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Row/Column - Show\">Format - Row/Column - Show</link> or <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Format - Sheet - Show</link>."
+msgid "The interest rate must be 7.46 % so that 7,500 currency units will become 10,000 currency units."
msgstr ""
-#: 12090101.xhp
+#: 04060118.xhp
msgctxt ""
-"12090101.xhp\n"
-"tit\n"
+"04060118.xhp\n"
+"bm_id3154267\n"
"help.text"
-msgid "Select Data Source"
-msgstr "Selekto Burimin e të Dhënave"
+msgid "<bookmark_value>calculating;constant interest rates</bookmark_value><bookmark_value>constant interest rates</bookmark_value><bookmark_value>RATE function</bookmark_value>"
+msgstr ""
-#: 12090101.xhp
+#: 04060118.xhp
msgctxt ""
-"12090101.xhp\n"
-"hd_id3143268\n"
-"1\n"
+"04060118.xhp\n"
+"hd_id3154267\n"
+"249\n"
"help.text"
-msgid "Select Data Source"
-msgstr "Selekto Burimin e të Dhënave"
+msgid "RATE"
+msgstr "RATE"
-#: 12090101.xhp
+#: 04060118.xhp
msgctxt ""
-"12090101.xhp\n"
-"par_id3148552\n"
-"2\n"
+"04060118.xhp\n"
+"par_id3151052\n"
+"250\n"
"help.text"
-msgid "Select the database and the table or query containing the data that you want to use."
+msgid "<ahelp hid=\"HID_FUNC_ZINS\">Returns the constant interest rate per period of an annuity.</ahelp>"
msgstr ""
-#: 12090101.xhp
+#: 04060118.xhp
msgctxt ""
-"12090101.xhp\n"
-"hd_id3154140\n"
-"3\n"
+"04060118.xhp\n"
+"hd_id3154272\n"
+"251\n"
"help.text"
-msgid "Selection"
-msgstr "Selektimet"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12090101.xhp
+#: 04060118.xhp
msgctxt ""
-"12090101.xhp\n"
-"par_id3125863\n"
-"4\n"
+"04060118.xhp\n"
+"par_id3158423\n"
+"252\n"
"help.text"
-msgid "<ahelp hid=\".\">You can only select databases that are registered in %PRODUCTNAME.</ahelp> To register a data source, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Base - Databases</emph>."
+msgid "RATE(NPer; Pmt; PV; FV; Type; Guess)"
msgstr ""
-#: 12090101.xhp
+#: 04060118.xhp
msgctxt ""
-"12090101.xhp\n"
-"hd_id3151041\n"
-"5\n"
+"04060118.xhp\n"
+"par_id3148910\n"
+"253\n"
"help.text"
-msgid "Database"
-msgstr "Databaza"
+msgid "<emph>NPer</emph> is the total number of periods, during which payments are made (payment period)."
+msgstr ""
-#: 12090101.xhp
+#: 04060118.xhp
msgctxt ""
-"12090101.xhp\n"
-"par_id3156424\n"
-"6\n"
+"04060118.xhp\n"
+"par_id3148925\n"
+"254\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_DATABASE\">Select the database that contains the data source that you want to use.</ahelp>"
+msgid "<emph>Pmt</emph> is the constant payment (annuity) paid during each period."
+msgstr "Pagesat e rregulta. Shuma konstante e anuitetit që është paguar në çdo periudhë."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149160\n"
+"255\n"
+"help.text"
+msgid "<emph>PV</emph> is the cash value in the sequence of payments."
+msgstr "E kthen tarifwn e brendshme tw kthimit pwr pagesat e planifikuara jo-periodike"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3166456\n"
+"256\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the periodic payments."
msgstr ""
-#: 12090101.xhp
+#: 04060118.xhp
msgctxt ""
-"12090101.xhp\n"
-"hd_id3145364\n"
-"7\n"
+"04060118.xhp\n"
+"par_id3153243\n"
+"257\n"
"help.text"
-msgid "Data source"
-msgstr "Burimi i të dhënave"
+msgid "<emph>Type</emph> (optional) is the due date of the periodic payment, either at the beginning or at the end of a period."
+msgstr "Pagesat e rregulta. Shuma konstante e anuitetit që është paguar në çdo periudhë."
-#: 12090101.xhp
+#: 04060118.xhp
msgctxt ""
-"12090101.xhp\n"
-"par_id3149260\n"
-"8\n"
+"04060118.xhp\n"
+"par_id3146949\n"
+"258\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DAPIDATA:CB_OBJECT\">Select the data source that you want to use.</ahelp>"
+msgid "<emph>Guess</emph> (optional) determines the estimated value of the interest with iterative calculation."
msgstr ""
-#: 12090101.xhp
+#: 04060118.xhp
msgctxt ""
-"12090101.xhp\n"
-"hd_id3147428\n"
-"9\n"
+"04060118.xhp\n"
+"par_idN10E2A\n"
"help.text"
-msgid "Type"
-msgstr "Tipi"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr ""
-#: 12090101.xhp
+#: 04060118.xhp
msgctxt ""
-"12090101.xhp\n"
-"par_id3150010\n"
-"10\n"
+"04060118.xhp\n"
+"hd_id3149791\n"
+"259\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_OBJTYPE\">Click the source type of for the selected data source.</ahelp> You can choose from four source types: \"Table\", \"Query\" and \"SQL\" or SQL (Native)."
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150706\n"
+"260\n"
+"help.text"
+msgid "What is the constant interest rate for a payment period of 3 periods if 10 currency units are paid regularly and the present cash value is 900 currency units."
msgstr ""
-#: 12090101.xhp
+#: 04060118.xhp
msgctxt ""
-"12090101.xhp\n"
-"par_id3147348\n"
-"11\n"
+"04060118.xhp\n"
+"par_id3155586\n"
+"261\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
+msgid "<item type=\"input\">=RATE(3;10;900)</item> = -121% The interest rate is therefore 121%."
msgstr ""
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"tit\n"
+"04060118.xhp\n"
+"bm_id3149106\n"
"help.text"
-msgid "Sheet"
-msgstr "Fleta"
+msgid "<bookmark_value>INTRATE function</bookmark_value>"
+msgstr "Kthen vlerën llogjike SAKTË."
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"hd_id3146794\n"
-"1\n"
+"04060118.xhp\n"
+"hd_id3149106\n"
+"60\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02200000.xhp\" name=\"Sheet\">Sheet</link>"
+msgid "INTRATE"
msgstr ""
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"par_id3149456\n"
-"2\n"
+"04060118.xhp\n"
+"par_id3149918\n"
+"61\n"
"help.text"
-msgid "<ahelp hid=\".\">Edit commands for entire sheets.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_INTRATE\">Calculates the annual interest rate that results when a security (or other item) is purchased at an investment value and sold at a redemption value. No interest is paid.</ahelp>"
msgstr ""
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"hd_id3150792\n"
-"3\n"
+"04060118.xhp\n"
+"hd_id3149974\n"
+"62\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02180000.xhp\" name=\"Move/Copy\">Move/Copy</link>"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149800\n"
+"63\n"
+"help.text"
+msgid "INTRATE(Settlement; Maturity; Investment; Redemption; Basis)"
msgstr ""
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"hd_id3153968\n"
-"4\n"
+"04060118.xhp\n"
+"par_id3148618\n"
+"64\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02210000.xhp\" name=\"Select\">Select</link>"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148988\n"
+"65\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security is sold."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154604\n"
+"66\n"
+"help.text"
+msgid "<emph>Investment</emph> is the purchase price."
msgstr ""
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"hd_id3163708\n"
-"5\n"
+"04060118.xhp\n"
+"par_id3154337\n"
+"67\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02170000.xhp\" name=\"Delete\">Delete</link>"
+msgid "<emph>Redemption</emph> is the selling price."
msgstr ""
-#: 02200000.xhp
+#: 04060118.xhp
msgctxt ""
-"02200000.xhp\n"
-"hd_id3163733308\n"
+"04060118.xhp\n"
+"hd_id3145380\n"
+"68\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Events</link>"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149426\n"
+"69\n"
+"help.text"
+msgid "A painting is bought on 1990-01-15 for 1 million and sold on 2002-05-05 for 2 million. The basis is daily balance calculation (basis = 3). What is the average annual level of interest?"
msgstr ""
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"tit\n"
+"04060118.xhp\n"
+"par_id3151125\n"
+"70\n"
"help.text"
-msgid "AutoInput"
-msgstr "~AutoHyrje"
+msgid "=INTRATE(\"1990-01-15\"; \"2002-05-05\"; 1000000; 2000000; 3) returns 8.12%."
+msgstr ""
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"bm_id2486037\n"
+"04060118.xhp\n"
+"bm_id3148654\n"
"help.text"
-msgid "<bookmark_value>entering entries with AutoInput function</bookmark_value><bookmark_value>capital letters;AutoInput function</bookmark_value>"
+msgid "<bookmark_value>COUPNCD function</bookmark_value>"
+msgstr "I kthen vlerat absolute tw njw numri kompleks"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148654\n"
+"163\n"
+"help.text"
+msgid "COUPNCD"
msgstr ""
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"hd_id3148492\n"
-"1\n"
+"04060118.xhp\n"
+"par_id3149927\n"
+"164\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\">AutoInput</link>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNCD\">Returns the date of the first interest date after the settlement date. Format the result as a date.</ahelp>"
msgstr ""
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3150793\n"
-"2\n"
+"04060118.xhp\n"
+"hd_id3153317\n"
+"165\n"
"help.text"
-msgid "<ahelp hid=\".uno:AutoComplete\">Switches the AutoInput function on and off, which automatically completes entries, based on other entries in the same column.</ahelp> The column is scanned up to a maximum of 2000 cells or 200 different strings."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150423\n"
+"166\n"
+"help.text"
+msgid "COUPNCD(Settlement; Maturity; Frequency; Basis)"
msgstr ""
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3156422\n"
-"8\n"
+"04060118.xhp\n"
+"par_id3150628\n"
+"167\n"
"help.text"
-msgid "The completion text is highlighted."
-msgstr "Teksti që do të rrotullohet"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN1065D\n"
+"04060118.xhp\n"
+"par_id3153536\n"
+"168\n"
"help.text"
-msgid "To accept the completion, press <item type=\"keycode\">Enter</item> or a cursor key."
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145313\n"
+"169\n"
+"help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155424\n"
+"170\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154794\n"
+"171\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) when is the next interest date?"
msgstr ""
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10665\n"
+"04060118.xhp\n"
+"par_id3159251\n"
+"172\n"
"help.text"
-msgid "To append text or to edit the completion, press <item type=\"keycode\">F2</item>."
+msgid "=COUPNCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2001-05-15."
msgstr ""
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN1066D\n"
+"04060118.xhp\n"
+"bm_id3143281\n"
"help.text"
-msgid "To view more completions, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab</item> to scroll forward, or <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab</item> to scroll backward."
+msgid "<bookmark_value>COUPDAYS function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3143281\n"
+"143\n"
+"help.text"
+msgid "COUPDAYS"
msgstr ""
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_idN10679\n"
+"04060118.xhp\n"
+"par_id3149488\n"
+"144\n"
"help.text"
-msgid "To see a list of all available AutoInput text items for the current column, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow</item>."
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYS\">Returns the number of days in the current interest period in which the settlement date falls.</ahelp>"
msgstr ""
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3150439\n"
-"3\n"
+"04060118.xhp\n"
+"hd_id3148685\n"
+"145\n"
"help.text"
-msgid "When typing formulas using characters that match previous entries, a Help tip will appear listing the last ten functions used from <emph>Function Wizard</emph>, from all defined range names, from all database range names, and from the content of all label ranges."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149585\n"
+"146\n"
+"help.text"
+msgid "COUPDAYS(Settlement; Maturity; Frequency; Basis)"
msgstr ""
-#: 06130000.xhp
+#: 04060118.xhp
msgctxt ""
-"06130000.xhp\n"
-"par_id3153363\n"
-"5\n"
+"04060118.xhp\n"
+"par_id3152767\n"
+"147\n"
"help.text"
-msgid "AutoInput is case-sensitive. If, for example, you have written \"Total\" in a cell, you cannot enter \"total\" in another cell of the same column without first deactivating AutoInput."
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151250\n"
+"148\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146126\n"
+"149\n"
+"help.text"
+msgid "<emph>Frequency</emph> is number of interest payments per year (1, 2 or 4)."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153705\n"
+"150\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147530\n"
+"151\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there in the interest period in which the settlement date falls?"
msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"tit\n"
+"04060118.xhp\n"
+"par_id3156338\n"
+"152\n"
"help.text"
-msgid "Hyphenation"
-msgstr "Hifenacion"
+msgid "=COUPDAYS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 181."
+msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"bm_id3159399\n"
+"04060118.xhp\n"
+"bm_id3154832\n"
"help.text"
-msgid "<bookmark_value>automatic hyphenation in spreadsheets</bookmark_value><bookmark_value>hyphenation; in spreadsheets</bookmark_value><bookmark_value>syllables in spreadsheets</bookmark_value>"
+msgid "<bookmark_value>COUPDAYSNC function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3154832\n"
+"153\n"
+"help.text"
+msgid "COUPDAYSNC"
msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"hd_id3159399\n"
-"1\n"
+"04060118.xhp\n"
+"par_id3147100\n"
+"154\n"
"help.text"
-msgid "Hyphenation"
-msgstr "Hifenacion"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYSNC\">Returns the number of days from the settlement date until the next interest date.</ahelp>"
+msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3145068\n"
-"2\n"
+"04060118.xhp\n"
+"hd_id3151312\n"
+"155\n"
"help.text"
-msgid "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">The <emph>Hyphenation </emph>command calls the dialog for setting the hyphenation in $[officename] Calc.</ahelp></variable>"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155121\n"
+"156\n"
+"help.text"
+msgid "COUPDAYSNC(Settlement; Maturity; Frequency; Basis)"
msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3154366\n"
-"3\n"
+"04060118.xhp\n"
+"par_id3158440\n"
+"157\n"
"help.text"
-msgid "You can only turn on the automatic hyphenation in $[officename] Calc when the <link href=\"text/shared/01/05340300.xhp\" name=\"row break\">row break</link> feature is active."
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146075\n"
+"158\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154620\n"
+"159\n"
+"help.text"
+msgid "<emph>Frequency </emph>is number of interest payments per year (1, 2 or 4)."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155604\n"
+"160\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148671\n"
+"161\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days are there until the next interest payment?"
msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"hd_id3153192\n"
-"4\n"
+"04060118.xhp\n"
+"par_id3156158\n"
+"162\n"
"help.text"
-msgid "Hyphenation for selected cells."
-msgstr "Numri minimal i karaktereve për bashkangjitje me vizë:"
+msgid "=COUPDAYSNC(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 110."
+msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3150868\n"
-"5\n"
+"04060118.xhp\n"
+"bm_id3150408\n"
"help.text"
-msgid "Select the cells for which you want to change the hyphenation."
+msgid "<bookmark_value>COUPDAYBS function</bookmark_value><bookmark_value>durations;first interest payment until settlement date</bookmark_value><bookmark_value>securities;first interest payment until settlement date</bookmark_value>"
msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3150440\n"
-"6\n"
+"04060118.xhp\n"
+"hd_id3150408\n"
+"133\n"
"help.text"
-msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
+msgid "COUPDAYBS"
msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3156441\n"
-"7\n"
+"04060118.xhp\n"
+"par_id3146795\n"
+"134\n"
"help.text"
-msgid "The <emph>Format Cells</emph> dialog appears with the <emph>Alignment</emph> tab page open."
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPDAYBS\">Returns the number of days from the first day of interest payment on a security until the settlement date.</ahelp>"
msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3149260\n"
-"12\n"
+"04060118.xhp\n"
+"hd_id3156142\n"
+"135\n"
"help.text"
-msgid "Mark the <emph>Wrap text automatically</emph> and <emph>Hyphenation active</emph> check boxes."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159083\n"
+"136\n"
+"help.text"
+msgid "COUPDAYBS(Settlement; Maturity; Frequency; Basis)"
msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"hd_id3153094\n"
-"8\n"
+"04060118.xhp\n"
+"par_id3146907\n"
+"137\n"
"help.text"
-msgid "Hyphenation for Drawing Objects"
-msgstr "Pop-up meny për objekte të vizatimit"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3148577\n"
-"9\n"
+"04060118.xhp\n"
+"par_id3159390\n"
+"138\n"
"help.text"
-msgid "Select a drawing object."
-msgstr "Shto objektin e vizatimit: $1"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3156285\n"
-"10\n"
+"04060118.xhp\n"
+"par_id3154414\n"
+"139\n"
"help.text"
-msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153880\n"
+"140\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150592\n"
+"141\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many days is this?"
msgstr ""
-#: 06020000.xhp
+#: 04060118.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3147394\n"
-"11\n"
+"04060118.xhp\n"
+"par_id3151103\n"
+"142\n"
"help.text"
-msgid "Each time you call the command you turn the hyphenation for the drawing object on or off. A check mark shows the current status."
+msgid "=COUPDAYBS(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 71."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3152957\n"
+"help.text"
+msgid "<bookmark_value>COUPPCD function</bookmark_value><bookmark_value>dates;interest date prior to settlement date</bookmark_value>"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3152957\n"
+"183\n"
+"help.text"
+msgid "COUPPCD"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153678\n"
+"184\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPPCD\">Returns the date of the interest date prior to the settlement date. Format the result as a date.</ahelp>"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3156269\n"
+"185\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153790\n"
+"186\n"
+"help.text"
+msgid "COUPPCD(Settlement; Maturity; Frequency; Basis)"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150989\n"
+"187\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154667\n"
+"188\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154569\n"
+"189\n"
+"help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3150826\n"
+"190\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148968\n"
+"191\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) what was the interest date prior to purchase?"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149992\n"
+"192\n"
+"help.text"
+msgid "=COUPPCD(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2000-15-11."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3150673\n"
+"help.text"
+msgid "<bookmark_value>COUPNUM function</bookmark_value><bookmark_value>number of coupons</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3150673\n"
+"173\n"
+"help.text"
+msgid "COUPNUM"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154350\n"
+"174\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_COUPNUM\">Returns the number of coupons (interest payments) between the settlement date and the maturity date.</ahelp>"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3148400\n"
+"175\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153200\n"
+"176\n"
+"help.text"
+msgid "COUPNUM(Settlement; Maturity; Frequency; Basis)"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3159406\n"
+"177\n"
+"help.text"
+msgid "<emph>Settlement</emph> is the date of purchase of the security."
+msgstr "E kthen prodhimin vjetor pwr sigurimin me zbritje"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155864\n"
+"178\n"
+"help.text"
+msgid "<emph>Maturity</emph> is the date on which the security matures (expires)."
+msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154720\n"
+"179\n"
+"help.text"
+msgid "<emph>Frequency</emph> is the number of interest payments per year (1, 2 or 4)."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149319\n"
+"180\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152460\n"
+"181\n"
+"help.text"
+msgid "A security is purchased on 2001-01-25; the date of maturity is 2001-11-15. Interest is paid half-yearly (frequency is 2). Using daily balance interest calculation (basis 3) how many interest dates are there?"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150640\n"
+"182\n"
+"help.text"
+msgid "=COUPNUM(\"2001-01-25\"; \"2001-11-15\"; 2; 3) returns 2."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3149339\n"
+"help.text"
+msgid "<bookmark_value>IPMT function</bookmark_value><bookmark_value>periodic amortizement rates</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149339\n"
+"263\n"
+"help.text"
+msgid "IPMT"
+msgstr "IPMT"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154522\n"
+"264\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZINSZ\">Calculates the periodic amortizement for an investment with regular payments and a constant interest rate.</ahelp>"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3153266\n"
+"265\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151283\n"
+"266\n"
+"help.text"
+msgid "IPMT(Rate; Period; NPer; PV; FV; Type)"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147313\n"
+"267\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "E kthen tarifwn efektive vjetore tw interesit"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145158\n"
+"268\n"
+"help.text"
+msgid "<emph>Period</emph> is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147577\n"
+"269\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods, during which annuity is paid."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156211\n"
+"270\n"
+"help.text"
+msgid "<emph>PV</emph> is the present cash value in sequence of payments."
+msgstr "E kthen tarifwn e brendshme tw kthimit pwr pagesat e planifikuara jo-periodike"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151213\n"
+"271\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the desired value (future value) at the end of the periods."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154195\n"
+"272\n"
+"help.text"
+msgid "<emph>Type</emph> is the due date for the periodic payments."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3150102\n"
+"273\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149438\n"
+"274\n"
+"help.text"
+msgid "What is the interest rate during the fifth period (year) if the constant interest rate is 5% and the cash value is 15,000 currency units? The periodic payment is seven years."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150496\n"
+"275\n"
+"help.text"
+msgid "<item type=\"input\">=IPMT(5%;5;7;15000)</item> = -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3151205\n"
+"help.text"
+msgid "<bookmark_value>calculating;future values</bookmark_value><bookmark_value>future values;constant interest rates</bookmark_value><bookmark_value>FV function</bookmark_value>"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3151205\n"
+"277\n"
+"help.text"
+msgid "FV"
+msgstr "FV"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154140\n"
+"278\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZW\">Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value).</ahelp>"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155178\n"
+"279\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145215\n"
+"280\n"
+"help.text"
+msgid "FV(Rate; NPer; Pmt; PV; Type)"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155136\n"
+"281\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "E kthen tarifwn efektive vjetore tw interesit"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156029\n"
+"282\n"
+"help.text"
+msgid "<emph>NPer</emph> is the total number of periods (payment period)."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3151322\n"
+"283\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the annuity paid regularly per period."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145256\n"
+"284\n"
+"help.text"
+msgid "<emph>PV</emph> (optional) is the (present) cash value of an investment."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150999\n"
+"285\n"
+"help.text"
+msgid "<emph>Type</emph> (optional) defines whether the payment is due at the beginning or the end of a period."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_idN114D8\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3146800\n"
+"286\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3146813\n"
+"287\n"
+"help.text"
+msgid "What is the value at the end of an investment if the interest rate is 4% and the payment period is two years, with a periodic payment of 750 currency units. The investment has a present value of 2,500 currency units."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149302\n"
+"288\n"
+"help.text"
+msgid "<item type=\"input\">=FV(4%;2;750;2500) </item>= -4234.00 currency units. The value at the end of the investment is 4234.00 currency units."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3155912\n"
+"help.text"
+msgid "<bookmark_value>FVSCHEDULE function</bookmark_value><bookmark_value>future values;varying interest rates</bookmark_value>"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155912\n"
+"51\n"
+"help.text"
+msgid "FVSCHEDULE"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3163726\n"
+"52\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_FVSCHEDULE\">Calculates the accumulated value of the starting capital for a series of periodically varying interest rates.</ahelp>"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3149571\n"
+"53\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148891\n"
+"54\n"
+"help.text"
+msgid "FVSCHEDULE(Principal; Schedule)"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148904\n"
+"55\n"
+"help.text"
+msgid "<emph>Principal</emph> is the starting capital."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148562\n"
+"56\n"
+"help.text"
+msgid "<emph>Schedule</emph> is a series of interest rates, for example, as a range H3:H5 or as a (List) (see example)."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3147288\n"
+"57\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3148638\n"
+"58\n"
+"help.text"
+msgid "1000 currency units have been invested in for three years. The interest rates were 3%, 4% and 5% per annum. What is the value after three years?"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156358\n"
+"59\n"
+"help.text"
+msgid "<item type=\"input\">=FVSCHEDULE(1000;{0.03;0.04;0.05})</item> returns 1124.76."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"bm_id3156435\n"
+"help.text"
+msgid "<bookmark_value>calculating;number of payment periods</bookmark_value><bookmark_value>payment periods;number of</bookmark_value><bookmark_value>number of payment periods</bookmark_value><bookmark_value>NPER function</bookmark_value>"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3156435\n"
+"290\n"
+"help.text"
+msgid "NPER"
+msgstr "NPER"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3152363\n"
+"291\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZZR\">Returns the number of periods for an investment based on periodic, constant payments and a constant interest rate.</ahelp>"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3147216\n"
+"292\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155934\n"
+"293\n"
+"help.text"
+msgid "NPER(Rate; Pmt; PV; FV; Type)"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3155946\n"
+"294\n"
+"help.text"
+msgid "<emph>Rate</emph> is the periodic interest rate."
+msgstr "E kthen tarifwn efektive vjetore tw interesit"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3149042\n"
+"295\n"
+"help.text"
+msgid "<emph>Pmt</emph> is the constant annuity paid in each period."
+msgstr "Pagesat e rregulta. Shuma konstante e anuitetit që është paguar në çdo periudhë."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153134\n"
+"296\n"
+"help.text"
+msgid "<emph>PV</emph> is the present value (cash value) in a sequence of payments."
+msgstr "E kthen tarifwn e brendshme tw kthimit pwr pagesat e planifikuara jo-periodike"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3154398\n"
+"297\n"
+"help.text"
+msgid "<emph>FV</emph> (optional) is the future value, which is reached at the end of the last period."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3145127\n"
+"298\n"
+"help.text"
+msgid "<emph>Type</emph> (optional) is the due date of the payment at the beginning or at the end of the period."
+msgstr "Pagesat e rregulta. Shuma konstante e anuitetit që është paguar në çdo periudhë."
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_idN1166C\n"
+"help.text"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"hd_id3155795\n"
+"299\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3147378\n"
+"300\n"
+"help.text"
+msgid "How many payment periods does a payment period cover with a periodic interest rate of 6%, a periodic payment of 153.75 currency units and a present cash value of 2.600 currency units."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3156171\n"
+"301\n"
+"help.text"
+msgid "<item type=\"input\">=NPER(6%;153.75;2600)</item> = -12,02. The payment period covers 12.02 periods."
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3150309\n"
+"314\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Back to Financial Functions Part One\">Back to Financial Functions Part One</link>"
+msgstr ""
+
+#: 04060118.xhp
+msgctxt ""
+"04060118.xhp\n"
+"par_id3153163\n"
+"315\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04060119.xhp\" name=\"Back to Financial Functions Part Two\">Back to Financial Functions Part Two</link>"
msgstr ""
#: 04060119.xhp
@@ -38861,7 +35809,6 @@ msgid "<emph>Maturity</emph> is the date on which the security matures (expires)
msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
#: 04060119.xhp
-#, fuzzy
msgctxt ""
"04060119.xhp\n"
"par_id3153755\n"
@@ -39290,7 +36237,6 @@ msgid "SLN(Cost; Salvage; Life)"
msgstr ""
#: 04060119.xhp
-#, fuzzy
msgctxt ""
"04060119.xhp\n"
"par_id3146955\n"
@@ -39353,7 +36299,6 @@ msgid "<bookmark_value>MDURATION function</bookmark_value><bookmark_value>Macaul
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
#: 04060119.xhp
-#, fuzzy
msgctxt ""
"04060119.xhp\n"
"hd_id3153739\n"
@@ -39720,7 +36665,6 @@ msgid "What is the nominal rate of interest for a 5.3543% effective rate of inte
msgstr ""
#: 04060119.xhp
-#, fuzzy
msgctxt ""
"04060119.xhp\n"
"par_id3156146\n"
@@ -39738,7 +36682,6 @@ msgid "<bookmark_value>DOLLARFR function</bookmark_value><bookmark_value>convert
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
#: 04060119.xhp
-#, fuzzy
msgctxt ""
"04060119.xhp\n"
"hd_id3159087\n"
@@ -39828,7 +36771,6 @@ msgid "<bookmark_value>fractions; converting</bookmark_value><bookmark_value>con
msgstr ""
#: 04060119.xhp
-#, fuzzy
msgctxt ""
"04060119.xhp\n"
"hd_id3154671\n"
@@ -40493,7 +37435,7 @@ msgctxt ""
"par_id3154403\n"
"59\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLEQ\">Calculates the annual return on a treasury bill ().</ahelp> A treasury bill is purchased on the settlement date and sold at the full par value on the maturity date, that must fall within the same year. A discount is deducted from the purchase price."
+msgid "<ahelp hid=\"HID_AAI_FUNC_TBILLEQ\">Calculates the annual return on a treasury bill.</ahelp> A treasury bill is purchased on the settlement date and sold at the full par value on the maturity date, that must fall within the same year. A discount is deducted from the purchase price."
msgstr ""
#: 04060119.xhp
@@ -40533,7 +37475,6 @@ msgid "<emph>Maturity</emph> is the date on which the security matures (expires)
msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
#: 04060119.xhp
-#, fuzzy
msgctxt ""
"04060119.xhp\n"
"par_id3150310\n"
@@ -40810,4457 +37751,5374 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060118.xhp\" name=\"Forward to Financial Functions Part Three\">Forward to Financial Functions Part Three</link>"
msgstr ""
-#: 02190000.xhp
+#: 04060120.xhp
msgctxt ""
-"02190000.xhp\n"
+"04060120.xhp\n"
"tit\n"
"help.text"
-msgid "Delete Manual Breaks"
-msgstr "Fshiej të Gjitha Thyerjet Manuale"
+msgid "Bit Operation Functions"
+msgstr ""
-#: 02190000.xhp
+#: 04060120.xhp
msgctxt ""
-"02190000.xhp\n"
-"hd_id3150541\n"
+"04060120.xhp\n"
+"hd_id4149052\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02190000.xhp\" name=\"Delete Manual Breaks\">Delete Manual Break</link>"
+msgid "Bit Operation Functions"
msgstr ""
-#: 02190000.xhp
+#: 04060120.xhp
msgctxt ""
-"02190000.xhp\n"
-"par_id3154365\n"
-"2\n"
+"04060120.xhp\n"
+"bm_id4150026\n"
"help.text"
-msgid "<ahelp hid=\".\">Choose the type of manual break that you want to delete.</ahelp>"
-msgstr ""
+msgid "<bookmark_value>BITAND function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 05100200.xhp
+#: 04060120.xhp
msgctxt ""
-"05100200.xhp\n"
-"tit\n"
+"04060120.xhp\n"
+"hd_id4150026\n"
+"238\n"
"help.text"
-msgid "Split Cells"
+msgid "BITAND"
msgstr ""
-#: 05100200.xhp
+#: 04060120.xhp
msgctxt ""
-"05100200.xhp\n"
-"hd_id3154654\n"
+"04060120.xhp\n"
+"par_id4146942\n"
+"239\n"
"help.text"
-msgid "Split Cells"
+msgid "<ahelp hid=\"HID_FUNC_BITAND\">Returns a bitwise logical \"and\" of the parameters.</ahelp>"
msgstr ""
-#: 05100200.xhp
+#: 04060120.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3083451\n"
+"04060120.xhp\n"
+"hd_id4150459\n"
+"240\n"
"help.text"
-msgid "<ahelp hid=\".\">Splits previously merged cells.</ahelp>"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 05100200.xhp
+#: 04060120.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3154023\n"
+"04060120.xhp\n"
+"par_id4146878\n"
+"241\n"
"help.text"
-msgid "Choose <emph>Format - Merge Cells - Split Cells</emph>"
+msgid "BITAND(number1; number2)"
msgstr ""
-#: 04040000.xhp
-msgctxt ""
-"04040000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Columns"
-msgstr "Kolonat"
-
-#: 04040000.xhp
+#: 04060120.xhp
msgctxt ""
-"04040000.xhp\n"
-"bm_id3155628\n"
+"04060120.xhp\n"
+"par_id4151228\n"
+"242\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; inserting columns</bookmark_value><bookmark_value>inserting; columns</bookmark_value><bookmark_value>columns; inserting</bookmark_value>"
+msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
msgstr ""
-#: 04040000.xhp
+#: 04060120.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3155628\n"
-"1\n"
+"04060120.xhp\n"
+"hd_id4148582\n"
+"248\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04040000.xhp\" name=\"Columns\">Columns</link>"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 04040000.xhp
+#: 04060120.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3150791\n"
-"2\n"
+"04060120.xhp\n"
+"par_id4149246\n"
+"250\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsertColumns\">Inserts a new column to the left of the active cell.</ahelp> The number of columns inserted corresponds to the number of columns selected. The existing columns are moved to the right."
+msgid "<item type=\"input\">=BITAND(6;10)</item> returns 2 (0110 & 1010 = 0010)."
msgstr ""
-#: 12080000.xhp
+#: 04060120.xhp
msgctxt ""
-"12080000.xhp\n"
-"tit\n"
+"04060120.xhp\n"
+"bm_id4146139\n"
"help.text"
-msgid "Group and Outline"
-msgstr "Modifiko titullin dhe konturën"
+msgid "<bookmark_value>BITOR function</bookmark_value>"
+msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
-#: 12080000.xhp
+#: 04060120.xhp
msgctxt ""
-"12080000.xhp\n"
-"bm_id3152350\n"
+"04060120.xhp\n"
+"hd_id4146139\n"
+"252\n"
"help.text"
-msgid "<bookmark_value>sheets; outlines</bookmark_value><bookmark_value>outlines; sheets</bookmark_value><bookmark_value>hiding; sheet details</bookmark_value><bookmark_value>showing; sheet details</bookmark_value><bookmark_value>grouping;cells</bookmark_value>"
+msgid "BITOR"
msgstr ""
-#: 12080000.xhp
+#: 04060120.xhp
msgctxt ""
-"12080000.xhp\n"
-"hd_id3152350\n"
-"1\n"
+"04060120.xhp\n"
+"par_id4150140\n"
+"253\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080000.xhp\" name=\"Group and Outline\">Group and Outline</link>"
+msgid "<ahelp hid=\"HID_FUNC_BITOR\">Returns a bitwise logical \"or\" of the parameters.</ahelp>"
msgstr ""
-#: 12080000.xhp
+#: 04060120.xhp
msgctxt ""
-"12080000.xhp\n"
-"par_id3150793\n"
-"2\n"
+"04060120.xhp\n"
+"hd_id4149188\n"
+"254\n"
"help.text"
-msgid "You can create an outline of your data and group rows and columns together so that you can collapse and expand the groups with a single click."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12080000.xhp
+#: 04060120.xhp
msgctxt ""
-"12080000.xhp\n"
-"hd_id3147229\n"
-"3\n"
+"04060120.xhp\n"
+"par_id4148733\n"
+"255\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
+msgid "BITOR(number1; number2)"
msgstr ""
-#: 12080000.xhp
+#: 04060120.xhp
msgctxt ""
-"12080000.xhp\n"
-"hd_id3153188\n"
-"4\n"
+"04060120.xhp\n"
+"par_id4150864\n"
+"256\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
msgstr ""
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"tit\n"
+"04060120.xhp\n"
+"par_id4149884\n"
+"264\n"
"help.text"
-msgid "YEAR"
-msgstr "VITI"
+msgid "<item type=\"input\">=BITOR(6;10)</item> returns 14 (0110 | 1010 = 1110)."
+msgstr ""
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"bm_id3153982\n"
+"04060120.xhp\n"
+"bm_id4150019\n"
"help.text"
-msgid "<bookmark_value>YEAR function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>BITXOR function</bookmark_value>"
+msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"hd_id3153982\n"
-"37\n"
+"04060120.xhp\n"
+"hd_id4150019\n"
+"182\n"
"help.text"
-msgid "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">YEAR</link></variable>"
+msgid "BITXOR"
msgstr ""
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"par_id3147496\n"
-"38\n"
+"04060120.xhp\n"
+"par_id4145246\n"
+"183\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_JAHR\">Returns the year as a number according to the internal calculation rules.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_BITXOR\">Returns a bitwise logical \"exclusive or\" of the parameters.</ahelp>"
msgstr ""
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"hd_id3146090\n"
-"39\n"
+"04060120.xhp\n"
+"hd_id4153047\n"
+"184\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"par_id3154304\n"
-"40\n"
-"help.text"
-msgid "YEAR(Number)"
-msgstr "Numri i faqes"
-
-#: func_year.xhp
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"par_id3156013\n"
-"41\n"
+"04060120.xhp\n"
+"par_id4157970\n"
+"185\n"
"help.text"
-msgid "<emph>Number</emph> shows the internal date value for which the year is to be returned."
+msgid "BITXOR(number1; number2)"
msgstr ""
-#: func_year.xhp
-msgctxt ""
-"func_year.xhp\n"
-"hd_id3152797\n"
-"42\n"
-"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
-
-#: func_year.xhp
-#, fuzzy
-msgctxt ""
-"func_year.xhp\n"
-"par_id3145668\n"
-"43\n"
-"help.text"
-msgid "<item type=\"input\">=YEAR(1)</item> returns 1899"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: func_year.xhp
-#, fuzzy
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"par_id3151168\n"
-"44\n"
+"04060120.xhp\n"
+"par_id4145302\n"
+"186\n"
"help.text"
-msgid "<item type=\"input\">=YEAR(2)</item> returns 1900"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<emph>Number1</emph> and <emph>number2</emph> are positive integers less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
-#: func_year.xhp
-#, fuzzy
+#: 04060120.xhp
msgctxt ""
-"func_year.xhp\n"
-"par_id3150115\n"
-"45\n"
+"04060120.xhp\n"
+"hd_id4150269\n"
+"192\n"
"help.text"
-msgid "<item type=\"input\">=YEAR(33333.33)</item> returns 1991"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Example"
+msgstr "Shembull"
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"tit\n"
+"04060120.xhp\n"
+"par_id4149394\n"
+"196\n"
"help.text"
-msgid "DAY"
-msgstr "Dita"
+msgid "<item type=\"input\">=BITXOR(6;10)</item> returns 12 (0110 ^ 1010 = 1100)"
+msgstr ""
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"bm_id3147317\n"
+"04060120.xhp\n"
+"bm_id4155370\n"
"help.text"
-msgid "<bookmark_value>DAY function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>BITLSHIFT function</bookmark_value>"
+msgstr "Gabim: Vlera nuk është në dispozicion"
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"hd_id3147317\n"
-"106\n"
+"04060120.xhp\n"
+"hd_id4155370\n"
+"266\n"
"help.text"
-msgid "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">DAY</link></variable>"
+msgid "BITLSHIFT"
msgstr ""
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"par_id3147584\n"
-"107\n"
+"04060120.xhp\n"
+"par_id4158411\n"
+"267\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TAG\">Returns the day of given date value.</ahelp> The day is returned as an integer between 1 and 31. You can also enter a negative date/time value."
+msgid "<ahelp hid=\"HID_FUNC_BITLSHIFT\">Shifts a number left by n bits.</ahelp>"
msgstr ""
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"hd_id3150487\n"
-"108\n"
+"04060120.xhp\n"
+"hd_id4155814\n"
+"268\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: func_day.xhp
-msgctxt ""
-"func_day.xhp\n"
-"par_id3149430\n"
-"109\n"
-"help.text"
-msgid "DAY(Number)"
-msgstr "Numri i faqes"
-
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"par_id3149443\n"
-"110\n"
+"04060120.xhp\n"
+"par_id4147536\n"
+"269\n"
"help.text"
-msgid "<emph>Number</emph>, as a time value, is a decimal, for which the day is to be returned."
+msgid "BITLSHIFT(number; shift)"
msgstr ""
-#: func_day.xhp
-#, fuzzy
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"hd_id3163809\n"
-"111\n"
+"04060120.xhp\n"
+"par_id4150475\n"
+"270\n"
"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
+msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
+msgstr ""
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"par_id3151200\n"
-"112\n"
+"04060120.xhp\n"
+"par_id4153921\n"
+"271\n"
"help.text"
-msgid "DAY(1) returns 31 (since $[officename] starts counting at zero from December 30, 1899)"
+msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the left. If shift is negative, it is synonymous with BITRSHIFT (number; -shift)."
msgstr ""
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"par_id3154130\n"
-"113\n"
+"04060120.xhp\n"
+"hd_id4153723\n"
+"276\n"
"help.text"
-msgid "DAY(NOW()) returns the current day."
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: func_day.xhp
+#: 04060120.xhp
msgctxt ""
-"func_day.xhp\n"
-"par_id3159190\n"
-"114\n"
+"04060120.xhp\n"
+"par_id4149819\n"
+"278\n"
"help.text"
-msgid "=DAY(C4) returns 5 if you enter 1901-08-05 in cell C4 (the date value might get formatted differently after you press Enter)."
+msgid "<item type=\"input\">=BITLSHIFT(6;1)</item> returns 12 (0110 << 1 = 1100)."
msgstr ""
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"tit\n"
+"04060120.xhp\n"
+"bm_id4083280\n"
"help.text"
-msgid "Spreadsheet Functions"
-msgstr "Funksionet statistikore"
+msgid "<bookmark_value>BITRSHIFT function</bookmark_value>"
+msgstr "Gabim: Vlera nuk është në dispozicion"
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3148522\n"
+"04060120.xhp\n"
+"hd_id4083280\n"
+"165\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; functions</bookmark_value> <bookmark_value>Function Wizard; spreadsheets</bookmark_value> <bookmark_value>functions; spreadsheets</bookmark_value>"
+msgid "BITRSHIFT"
msgstr ""
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"hd_id3148522\n"
-"1\n"
-"help.text"
-msgid "Spreadsheet Functions"
-msgstr "Funksionet statistikore"
-
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3144508\n"
-"2\n"
+"04060120.xhp\n"
+"par_id4152482\n"
+"166\n"
"help.text"
-msgid "<variable id=\"tabelletext\">This section contains descriptions of the <emph>Spreadsheet</emph> functions together with an example.</variable>"
+msgid "<ahelp hid=\"HID_FUNC_BITRSHIFT\">Shifts a number right by n bits.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3146968\n"
+"04060120.xhp\n"
+"hd_id4149713\n"
+"167\n"
"help.text"
-msgid "<bookmark_value>ADDRESS function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3146968\n"
-"3\n"
+"04060120.xhp\n"
+"par_id4145087\n"
+"168\n"
"help.text"
-msgid "ADDRESS"
-msgstr "ADRESA"
+msgid "BITRSHIFT(number; shift)"
+msgstr ""
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155762\n"
-"4\n"
+"04060120.xhp\n"
+"par_id4149277\n"
+"169\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ADRESSE\">Returns a cell address (reference) as text, according to the specified row and column numbers.</ahelp> You can determine whether the address is interpreted as an absolute address (for example, $A$1) or as a relative address (as A1) or in a mixed form (A$1 or $A1). You can also specify the name of the sheet."
+msgid "<emph>Number</emph> is a positive integer less than 2 ^ 48 (281 474 976 710 656)."
msgstr ""
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301348\n"
+"04060120.xhp\n"
+"par_id4149270\n"
+"170\n"
"help.text"
-msgid "For interoperability the ADDRESS and INDIRECT functions support an optional parameter to specify whether the R1C1 address notation instead of the usual A1 notation should be used."
+msgid "<emph>Shift</emph> is the number of positions the bits will be moved to the right. If shift is negative, it is synonymous with BITLSHIFT (number; -shift)."
msgstr ""
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301445\n"
+"04060120.xhp\n"
+"hd_id4152933\n"
+"175\n"
"help.text"
-msgid "In ADDRESS, the parameter is inserted as the fourth parameter, shifting the optional sheet name parameter to the fifth position."
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 04060109.xhp
+#: 04060120.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id102720080230153\n"
+"04060120.xhp\n"
+"par_id4156130\n"
+"179\n"
"help.text"
-msgid "In INDIRECT, the parameter is appended as the second parameter."
+msgid "<item type=\"input\">=BITRSHIFT(6;1)</item> returns 3 (0110 >> 1 = 0011)."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id102720080230151\n"
+"04060181.xhp\n"
+"tit\n"
"help.text"
-msgid "In both functions, if the argument is inserted with the value 0, then the R1C1 notation is used. If the argument is not given or has a value other than 0, then the A1 notation is used."
-msgstr ""
+msgid "Statistical Functions Part One"
+msgstr "Funksionet statistikore"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301556\n"
+"04060181.xhp\n"
+"hd_id3146320\n"
+"1\n"
"help.text"
-msgid "In case of R1C1 notation, ADDRESS returns address strings using the exclamation mark '!' as the sheet name separator, and INDIRECT expects the exclamation mark as sheet name separator. Both functions still use the dot '.' sheet name separator with A1 notation."
+msgid "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Statistical Functions Part One</link></variable>"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301521\n"
+"04060181.xhp\n"
+"bm_id3145632\n"
"help.text"
-msgid "When opening documents from ODF 1.0/1.1 format, the ADDRESS functions that show a sheet name as the fourth paramater will shift that sheet name to become the fifth parameter. A new fourth parameter with the value 1 will be inserted."
+msgid "<bookmark_value>INTERCEPT function</bookmark_value> <bookmark_value>points of intersection</bookmark_value> <bookmark_value>intersections</bookmark_value>"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301650\n"
+"04060181.xhp\n"
+"hd_id3145632\n"
+"2\n"
"help.text"
-msgid "When storing a document in ODF 1.0/1.1 format, if ADDRESS functions have a fourth parameter, that parameter will be removed."
-msgstr ""
+msgid "INTERCEPT"
+msgstr "INTERCEPT"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id102720080230162\n"
+"04060181.xhp\n"
+"par_id3146887\n"
+"3\n"
"help.text"
-msgid "Do not save a spreadsheet in the old ODF 1.0/1.1 format if the ADDRESS function's new fourth parameter was used with a value of 0."
+msgid "<ahelp hid=\"HID_FUNC_ACHSENABSCHNITT\">Calculates the point at which a line will intersect the y-values by using known x-values and y-values.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802301756\n"
+"04060181.xhp\n"
+"hd_id3150374\n"
+"4\n"
"help.text"
-msgid "The INDIRECT function is saved without conversion to ODF 1.0/1.1 format. If the second parameter was present, an older version of Calc will return an error for that function."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3151196\n"
+"04060181.xhp\n"
+"par_id3149718\n"
"5\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "INTERCEPT(DataY; DataX)"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154707\n"
+"04060181.xhp\n"
+"par_id3149947\n"
"6\n"
"help.text"
-msgid "ADDRESS(Row; Column; Abs; A1; \"Sheet\")"
-msgstr ""
+msgid "<emph>DataY</emph> is the dependent set of observations or data."
+msgstr "Grup të dhënash në file"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147505\n"
+"04060181.xhp\n"
+"par_id3147412\n"
"7\n"
"help.text"
-msgid "<emph>Row</emph> represents the row number for the cell reference"
-msgstr ""
+msgid "<emph>DataX</emph> is the independent set of observations or data."
+msgstr "Grup të dhënash në file"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3145323\n"
+"04060181.xhp\n"
+"par_id3152983\n"
"8\n"
"help.text"
-msgid "<emph>Column</emph> represents the column number for the cell reference (the number, not the letter)"
+msgid "Names, arrays or references containing numbers must be used here. Numbers can also be entered directly."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153074\n"
+"04060181.xhp\n"
+"hd_id3157906\n"
"9\n"
"help.text"
-msgid "<emph>Abs</emph> determines the type of reference:"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153298\n"
+"04060181.xhp\n"
+"par_id3148728\n"
"10\n"
"help.text"
-msgid "1: absolute ($A$1)"
-msgstr "Vlerë absolute"
+msgid "To calculate the intercept, use cells D3:D9 as the y value and C3:C9 as the x value from the example spreadsheet. Input will be as follows:"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150431\n"
+"04060181.xhp\n"
+"par_id3149013\n"
"11\n"
"help.text"
-msgid "2: row reference type is absolute; column reference is relative (A$1)"
+msgid "<item type=\"input\">=INTERCEPT(D3:D9;C3:C9)</item> = 2.15."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3146096\n"
-"12\n"
+"04060181.xhp\n"
+"bm_id3148437\n"
"help.text"
-msgid "3: row (relative); column (absolute) ($A1)"
-msgstr ""
+msgid "<bookmark_value>COUNT function</bookmark_value> <bookmark_value>numbers;counting</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153334\n"
+"04060181.xhp\n"
+"hd_id3148437\n"
"13\n"
"help.text"
-msgid "4: relative (A1)"
-msgstr "Madhësitë relative"
-
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802465915\n"
-"help.text"
-msgid "<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
-msgstr ""
+msgid "COUNT"
+msgstr "COUNT"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153962\n"
+"04060181.xhp\n"
+"par_id3150700\n"
"14\n"
"help.text"
-msgid "<emph>Sheet</emph> represents the name of the sheet. It must be placed in double quotes."
+msgid "<ahelp hid=\"HID_FUNC_ANZAHL\">Counts how many numbers are in the list of arguments.</ahelp> Text entries are ignored."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3147299\n"
+"04060181.xhp\n"
+"hd_id3153930\n"
"15\n"
"help.text"
-msgid "Example:"
-msgstr "Shembull"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148744\n"
+"04060181.xhp\n"
+"par_id3148585\n"
"16\n"
"help.text"
-msgid "<item type=\"input\">=ADDRESS(1;1;2;;\"Sheet2\")</item> returns the following: Sheet2.A$1"
+msgid "COUNT(Value1; Value2; ... Value30)"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3159260\n"
+"04060181.xhp\n"
+"par_id3155827\n"
"17\n"
"help.text"
-msgid "If the cell A1 in sheet 2 contains the value <item type=\"input\">-6</item>, you can refer indirectly to the referenced cell using a function in B2 by entering <item type=\"input\">=ABS(INDIRECT(B2))</item>. The result is the absolute value of the cell reference specified in B2, which in this case is 6."
+msgid "<emph>Value1; Value2, ...</emph> are 1 to 30 values or ranges representing the values to be counted."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3150372\n"
+"04060181.xhp\n"
+"hd_id3149254\n"
+"18\n"
"help.text"
-msgid "<bookmark_value>AREAS function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "Example"
+msgstr "Shembull"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3150372\n"
+"04060181.xhp\n"
+"par_id3149953\n"
"19\n"
"help.text"
-msgid "AREAS"
-msgstr "AREAS"
-
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3150036\n"
-"20\n"
-"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BEREICHE\">Returns the number of individual ranges that belong to a multiple range.</ahelp> A range can consist of contiguous cells or a single cell."
+msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id061020090307073\n"
+"04060181.xhp\n"
+"par_id3154558\n"
+"20\n"
"help.text"
-msgid "The function expects a single argument. If you state multiple ranges, you must enclose them into additional parentheses. Multiple ranges can be entered using the semicolon (;) as divider, but this gets automatically converted to the tilde (~) operator. The tilde is used to join ranges."
+msgid "<item type=\"input\">=COUNT(2;4;6;\"eight\")</item> = 3. The count of numbers is therefore 3."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3145222\n"
-"21\n"
+"04060181.xhp\n"
+"bm_id3149729\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<bookmark_value>COUNTA function</bookmark_value> <bookmark_value>number of entries</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155907\n"
+"04060181.xhp\n"
+"hd_id3149729\n"
"22\n"
"help.text"
-msgid "AREAS(Reference)"
-msgstr "Deri në referencë"
+msgid "COUNTA"
+msgstr "COUNTA"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153118\n"
+"04060181.xhp\n"
+"par_id3150142\n"
"23\n"
"help.text"
-msgid "Reference represents the reference to a cell or cell range."
-msgstr "Kthen një referencë në një qeli nga një interval i definuar."
+msgid "<ahelp hid=\"HID_FUNC_ANZAHL2\">Counts how many values are in the list of arguments.</ahelp> Text entries are also counted, even when they contain an empty string of length 0. If an argument is an array or reference, empty cells within the array or reference are ignored."
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3148891\n"
+"04060181.xhp\n"
+"hd_id3148573\n"
"24\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149946\n"
+"04060181.xhp\n"
+"par_id3153111\n"
"25\n"
"help.text"
-msgid "<item type=\"input\">=AREAS((A1:B3;F2;G1))</item> returns 3, as it is a reference to three cells and/or areas. After entry this gets converted to =AREAS((A1:B3~F2~G1))."
+msgid "COUNTA(Value1; Value2; ... Value30)"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3146820\n"
+"04060181.xhp\n"
+"par_id3150001\n"
"26\n"
"help.text"
-msgid "<item type=\"input\">=AREAS(All)</item> returns 1 if you have defined an area named All under <emph>Data - Define Range</emph>."
+msgid "<emph>Value1; Value2, ...</emph> are 1 to 30 arguments representing the values to be counted."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3148727\n"
+"04060181.xhp\n"
+"hd_id3150334\n"
+"27\n"
"help.text"
-msgid "<bookmark_value>DDE function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "Example"
+msgstr "Shembull"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3148727\n"
+"04060181.xhp\n"
+"par_id3154508\n"
"28\n"
"help.text"
-msgid "DDE"
-msgstr "DDE"
+msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149434\n"
+"04060181.xhp\n"
+"par_id3158000\n"
"29\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DDE\">Returns the result of a DDE-based link.</ahelp> If the contents of the linked range or section changes, the returned value will also change. You must reload the spreadsheet or choose <emph>Edit - Links</emph> to see the updated links. Cross-platform links, for example from a <item type=\"productname\">%PRODUCTNAME</item> installation running on a Windows machine to a document created on a Linux machine, are not allowed."
+msgid "<item type=\"input\">=COUNTA(2;4;6;\"eight\")</item> = 4. The count of values is therefore 4."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3150700\n"
-"30\n"
+"04060181.xhp\n"
+"bm_id3150267\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<bookmark_value>B function</bookmark_value> <bookmark_value>probabilities of samples with binomial distribution</bookmark_value>"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148886\n"
+"04060181.xhp\n"
+"hd_id3150267\n"
"31\n"
"help.text"
-msgid "DDE(\"Server\"; \"File\"; \"Range\"; Mode)"
+msgid "B"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154842\n"
+"04060181.xhp\n"
+"par_id3156061\n"
"32\n"
"help.text"
-msgid "<emph>Server</emph> is the name of a server application. <item type=\"productname\">%PRODUCTNAME</item>applications have the server name \"Soffice\"."
+msgid "<ahelp hid=\"HID_FUNC_B\">Returns the probability of a sample with binomial distribution.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153034\n"
+"04060181.xhp\n"
+"hd_id3150659\n"
"33\n"
"help.text"
-msgid "<emph>File</emph> is the complete file name, including path specification."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147472\n"
+"04060181.xhp\n"
+"par_id3148392\n"
"34\n"
"help.text"
-msgid "<emph>Range</emph> is the area containing the data to be evaluated."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+msgid "B(Trials; SP; T1; T2)"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3152773\n"
-"184\n"
+"04060181.xhp\n"
+"par_id3149002\n"
+"35\n"
"help.text"
-msgid "<emph>Mode</emph> is an optional parameter that controls the method by which the DDE server converts its data into numbers."
+msgid "<emph>Trials</emph> is the number of independent trials."
+msgstr "Kthen SAKTË nëse vlera është një numër."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3148875\n"
+"36\n"
+"help.text"
+msgid "<emph>SP</emph> is the probability of success on each trial."
msgstr ""
-#: 04060109.xhp
-#, fuzzy
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154383\n"
-"185\n"
+"04060181.xhp\n"
+"par_id3145352\n"
+"37\n"
"help.text"
-msgid "<emph>Mode</emph>"
-msgstr "Emri i grupit"
+msgid "<emph>T1</emph> defines the lower limit for the number of trials."
+msgstr ""
-#: 04060109.xhp
-#, fuzzy
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3145146\n"
-"186\n"
+"04060181.xhp\n"
+"par_id3149538\n"
+"38\n"
"help.text"
-msgid "<emph>Effect</emph>"
-msgstr "Vija e kompensimit 1"
+msgid "<emph>T2</emph> (optional) defines the upper limit for the number of trials."
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154558\n"
-"187\n"
+"04060181.xhp\n"
+"hd_id3148768\n"
+"39\n"
"help.text"
-msgid "0 or missing"
-msgstr "OSE logjike"
+msgid "Example"
+msgstr "Shembull"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3145596\n"
-"188\n"
+"04060181.xhp\n"
+"par_id3154633\n"
+"40\n"
"help.text"
-msgid "Number format from the \"Default\" cell style"
+msgid "What is the probability with ten throws of the dice, that a six will come up exactly twice? The probability of a six (or any other number) is 1/6. The following formula combines these factors:"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3152785\n"
-"189\n"
+"04060181.xhp\n"
+"par_id3149393\n"
+"41\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "<item type=\"input\">=B(10;1/6;2)</item> returns a probability of 29%."
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154380\n"
-"190\n"
+"04060181.xhp\n"
+"bm_id3158416\n"
"help.text"
-msgid "Data are always interpreted in the standard format for US English"
+msgid "<bookmark_value>RSQ function</bookmark_value> <bookmark_value>determination coefficients</bookmark_value> <bookmark_value>regression analysis</bookmark_value>"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150279\n"
-"191\n"
+"04060181.xhp\n"
+"hd_id3158416\n"
+"43\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "RSQ"
+msgstr "RSQ"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153775\n"
-"192\n"
+"04060181.xhp\n"
+"par_id3154949\n"
+"44\n"
"help.text"
-msgid "Data are retrieved as text; no conversion to numbers"
+msgid "<ahelp hid=\"HID_FUNC_BESTIMMTHEITSMASS\">Returns the square of the Pearson correlation coefficient based on the given values.</ahelp> RSQ (also called determination coefficient) is a measure for the accuracy of an adjustment and can be used to produce a regression analysis."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3149546\n"
-"35\n"
+"04060181.xhp\n"
+"hd_id3152820\n"
+"45\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148734\n"
-"36\n"
+"04060181.xhp\n"
+"par_id3155822\n"
+"46\n"
"help.text"
-msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\data1.sxc\";\"sheet1.A1\")</item> reads the contents of cell A1 in sheet1 of the <item type=\"productname\">%PRODUCTNAME</item> Calc spreadsheet data1.sxc."
+msgid "RSQ(DataY; DataX)"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153081\n"
-"37\n"
+"04060181.xhp\n"
+"par_id3150470\n"
+"47\n"
"help.text"
-msgid "<item type=\"input\">=DDE(\"soffice\";\"c:\\office\\document\\motto.sxw\";\"Today's motto\")</item> returns a motto in the cell containing this formula. First, you must enter a line in the motto.sxw document containing the motto text and define it as the first line of a section named <item type=\"literal\">Today's Motto</item> (in <item type=\"productname\">%PRODUCTNAME</item> Writer under <emph>Insert - Section</emph>). If the motto is modified (and saved) in the <item type=\"productname\">%PRODUCTNAME</item> Writer document, the motto is updated in all <item type=\"productname\">%PRODUCTNAME</item> Calc cells in which this DDE link is defined."
-msgstr ""
+msgid "<emph>DataY</emph> is an array or range of data points."
+msgstr "Grup të dhënash në file"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3153114\n"
+"04060181.xhp\n"
+"par_id3153181\n"
+"48\n"
"help.text"
-msgid "<bookmark_value>ERRORTYPE function</bookmark_value>"
-msgstr "Definon llojin e të dhënës së një vlere."
+msgid "<emph>DataX</emph> is an array or range of data points."
+msgstr "Grup të dhënash në file"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153114\n"
-"38\n"
+"04060181.xhp\n"
+"hd_id3156258\n"
+"49\n"
"help.text"
-msgid "ERRORTYPE"
-msgstr "ERRORTYPE"
+msgid "Example"
+msgstr "Shembull"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148568\n"
-"39\n"
+"04060181.xhp\n"
+"par_id3155991\n"
+"50\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FEHLERTYP\">Returns the number corresponding to an <link href=\"text/scalc/05/02140000.xhp\" name=\"error value\">error value</link> occurring in a different cell.</ahelp> With the aid of this number, you can generate an error message text."
+msgid "<item type=\"input\">=RSQ(A1:A20;B1:B20)</item> calculates the determination coefficient for both data sets in columns A and B."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149877\n"
-"40\n"
+"04060181.xhp\n"
+"bm_id3145620\n"
"help.text"
-msgid "The Status Bar displays the predefined error code from <item type=\"productname\">%PRODUCTNAME</item> if you click the cell containing the error."
+msgid "<bookmark_value>BETAINV function</bookmark_value> <bookmark_value>cumulative probability density function;inverse of</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3145620\n"
+"52\n"
+"help.text"
+msgid "BETAINV"
+msgstr "BETAINV"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149825\n"
+"53\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_BETAINV\">Returns the inverse of the cumulative beta probability density function.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3154327\n"
-"41\n"
+"04060181.xhp\n"
+"hd_id3152479\n"
+"54\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3151322\n"
-"42\n"
+"04060181.xhp\n"
+"par_id3156300\n"
+"55\n"
"help.text"
-msgid "ERRORTYPE(Reference)"
-msgstr "Deri në referencë"
+msgid "BETAINV(Number; Alpha; Beta; Start; End)"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150132\n"
-"43\n"
+"04060181.xhp\n"
+"par_id3149266\n"
+"56\n"
"help.text"
-msgid "<emph>Reference</emph> contains the address of the cell in which the error occurs."
+msgid "<emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3145248\n"
-"44\n"
+"04060181.xhp\n"
+"par_id3149710\n"
+"57\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<emph>Alpha</emph> is a parameter to the distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3146904\n"
-"45\n"
+"04060181.xhp\n"
+"par_id3156306\n"
+"58\n"
"help.text"
-msgid "If cell A1 displays Err:518, the function <item type=\"input\">=ERRORTYPE(A1)</item> returns the number 518."
-msgstr ""
+msgid "<emph>Beta</emph> is a parameter to the distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3151221\n"
+"04060181.xhp\n"
+"par_id3150960\n"
+"59\n"
"help.text"
-msgid "<bookmark_value>INDEX function</bookmark_value>"
-msgstr "Indeksi i vlerës (1..30) së selektuar."
+msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
+msgstr "E kthen njw numwr kompleks i cili wshtw i ngritur nw fuqi integjere"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3151221\n"
-"47\n"
+"04060181.xhp\n"
+"par_id3151268\n"
+"60\n"
"help.text"
-msgid "INDEX"
-msgstr "INDEX"
+msgid "<emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
+msgstr "E kthen njw numwr kompleks i cili wshtw i ngritur nw fuqi integjere"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150268\n"
-"48\n"
+"04060181.xhp\n"
+"par_idN109DF\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_INDEX\">INDEX returns a sub range, specified by row and column number, or an optional range index. Depending on context, INDEX returns a reference or content.</ahelp>"
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3156063\n"
-"49\n"
+"04060181.xhp\n"
+"hd_id3147077\n"
+"61\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Example"
+msgstr "Shembull"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149007\n"
-"50\n"
+"04060181.xhp\n"
+"par_id3146859\n"
+"62\n"
"help.text"
-msgid "INDEX(Reference; Row; Column; Range)"
-msgstr ""
+msgid "<item type=\"input\">=BETAINV(0.5;5;10)</item> returns the value 0.33."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153260\n"
-"51\n"
+"04060181.xhp\n"
+"bm_id3156096\n"
"help.text"
-msgid "<emph>Reference</emph> is a reference, entered either directly or by specifying a range name. If the reference consists of multiple ranges, you must enclose the reference or range name in parentheses."
-msgstr ""
+msgid "<bookmark_value>BETADIST function</bookmark_value> <bookmark_value>cumulative probability density function;calculating</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3145302\n"
-"52\n"
+"04060181.xhp\n"
+"hd_id3156096\n"
+"64\n"
"help.text"
-msgid "<emph>Row</emph> (optional) represents the row index of the reference range, for which to return a value. In case of zero (no specific row) all referenced rows are returned."
-msgstr ""
+msgid "BETADIST"
+msgstr "BETADIST"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154628\n"
-"53\n"
+"04060181.xhp\n"
+"par_id3150880\n"
+"65\n"
"help.text"
-msgid "<emph>Column</emph> (optional) represents the column index of the reference range, for which to return a value. In case of zero (no specific column) all referenced columns are returned."
+msgid "<ahelp hid=\"HID_FUNC_BETAVERT\">Returns the beta function.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155514\n"
-"54\n"
+"04060181.xhp\n"
+"hd_id3150762\n"
+"66\n"
"help.text"
-msgid "<emph>Range</emph> (optional) represents the index of the subrange if referring to a multiple range."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3145264\n"
-"55\n"
+"04060181.xhp\n"
+"par_id3147571\n"
+"67\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "BETADIST(Number; Alpha; Beta; Start; End; Cumulative)"
+msgstr "Alfa parametri për Beta shprëndarje."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3159112\n"
-"56\n"
+"04060181.xhp\n"
+"par_id3156317\n"
+"68\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(Prices;4;1)</item> returns the value from row 4 and column 1 of the database range defined in <emph>Data - Define</emph> as <emph>Prices</emph>."
+msgid "<emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150691\n"
-"57\n"
+"04060181.xhp\n"
+"par_id3156107\n"
+"69\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(SumX;4;1)</item> returns the value from the range <emph>SumX</emph> in row 4 and column 1 as defined in <emph>Insert - Names - Define</emph>."
-msgstr ""
+msgid "<emph>Alpha</emph> is a parameter to the distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id4109012\n"
+"04060181.xhp\n"
+"par_id3153619\n"
+"70\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(A1:B6;1)</item> returns a reference to the first row of A1:B6."
-msgstr ""
+msgid "<emph>Beta</emph> is a parameter to the distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id9272133\n"
+"04060181.xhp\n"
+"par_id3150254\n"
+"71\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(A1:B6;0;1)</item> returns a reference to the first column of A1:B6."
-msgstr ""
+msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
+msgstr "E kthen njw numwr kompleks i cili wshtw i ngritur nw fuqi integjere"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3158419\n"
-"58\n"
+"04060181.xhp\n"
+"par_id3149138\n"
+"72\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);4;1)</item> indicates the value contained in row 4 and column 1 of the (multiple) range, which you named under <emph>Insert - Names - Define</emph> as <emph>multi</emph>. The multiple range may consist of several rectangular ranges, each with a row 4 and column 1. If you now want to call the second block of this multiple range enter the number <item type=\"input\">2</item> as the <emph>range</emph> parameter."
-msgstr ""
+msgid "<emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
+msgstr "E kthen njw numwr kompleks i cili wshtw i ngritur nw fuqi integjere"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148595\n"
-"59\n"
+"04060181.xhp\n"
+"par_id012020091254453\n"
"help.text"
-msgid "<item type=\"input\">=INDEX(A1:B6;1;1)</item> indicates the value in the upper-left of the A1:B6 range."
+msgid "<emph>Cumulative</emph> (optional) can be 0 or False to calculate the probability density function. It can be any other value or True or omitted to calculate the cumulative distribution function."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id9960020\n"
+"04060181.xhp\n"
+"par_idN10AB3\n"
"help.text"
-msgid "<item type=\"input\">=INDEX((multi);0;0;2)</item> returns a reference to the second range of the multiple range."
+msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3153181\n"
+"04060181.xhp\n"
+"hd_id3145649\n"
+"73\n"
"help.text"
-msgid "<bookmark_value>INDIRECT function</bookmark_value>"
-msgstr "Indeksi i vlerës (1..30) së selektuar."
+msgid "Example"
+msgstr "Shembull"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153181\n"
-"62\n"
+"04060181.xhp\n"
+"par_id3156118\n"
+"74\n"
"help.text"
-msgid "INDIRECT"
-msgstr "INDIRECT"
+msgid "<item type=\"input\">=BETADIST(0.75;3;4)</item> returns the value 0.96"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147169\n"
-"63\n"
+"04060181.xhp\n"
+"bm_id3143228\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_INDIREKT\">Returns the <emph>reference</emph> specified by a text string.</ahelp> This function can also be used to return the area of a corresponding string."
+msgid "<bookmark_value>BINOMDIST function</bookmark_value>"
+msgstr "Gabim: Vlera nuk është në dispozicion"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3143228\n"
+"76\n"
+"help.text"
+msgid "BINOMDIST"
+msgstr "BINOMDIST"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3146897\n"
+"77\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_BINOMVERT\">Returns the individual term binomial distribution probability.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153717\n"
-"64\n"
+"04060181.xhp\n"
+"hd_id3149289\n"
+"78\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149824\n"
-"65\n"
+"04060181.xhp\n"
+"par_id3156009\n"
+"79\n"
"help.text"
-msgid "INDIRECT(Ref; A1)"
-msgstr ""
+msgid "BINOMDIST(X; Trials; SP; C)"
+msgstr "Numri i përgjithshëm i provave"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154317\n"
-"66\n"
+"04060181.xhp\n"
+"par_id3154304\n"
+"80\n"
"help.text"
-msgid "<emph>Ref</emph> represents a reference to a cell or an area (in text form) for which to return the contents."
-msgstr ""
+msgid "<emph>X</emph> is the number of successes in a set of trials."
+msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1027200802470312\n"
+"04060181.xhp\n"
+"par_id3147492\n"
+"81\n"
"help.text"
-msgid "<emph>A1</emph> (optional) - if set to 0, the R1C1 notation is used. If this parameter is absent or set to another value than 0, the A1 notation is used."
-msgstr ""
+msgid "<emph>Trials</emph> is the number of independent trials."
+msgstr "Kthen SAKTË nëse vlera është një numër."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN10CAE\n"
+"04060181.xhp\n"
+"par_id3146085\n"
+"82\n"
"help.text"
-msgid "If you open an Excel spreadsheet that uses indirect addresses calculated from string functions, the sheet addresses will not be translated automatically. For example, the Excel address in INDIRECT(\"filename!sheetname\"&B1) is not converted into the Calc address in INDIRECT(\"filename.sheetname\"&B1)."
+msgid "<emph>SP</emph> is the probability of success on each trial."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3150389\n"
-"67\n"
+"04060181.xhp\n"
+"par_id3149760\n"
+"83\n"
+"help.text"
+msgid "<emph>C</emph> = 0 calculates the probability of a single event and <emph>C</emph> = 1 calculates the cumulative probability."
+msgstr "Grumbulluar. C=0 llogarit funksionin e dendësisë, C=1 shprëndarjen."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3151171\n"
+"84\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150608\n"
-"68\n"
+"04060181.xhp\n"
+"par_id3145666\n"
+"85\n"
"help.text"
-msgid "<item type=\"input\">=INDIRECT(A1)</item> equals 100 if A1 contains C108 as a reference and cell C108 contains a value of <item type=\"input\">100</item>."
+msgid "<item type=\"input\">=BINOMDIST(A1;12;0.5;0)</item> shows (if the values <item type=\"input\">0</item> to <item type=\"input\">12</item> are entered in A1) the probabilities for 12 flips of a coin that <emph>Heads</emph> will come up exactly the number of times entered in A1."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3083286\n"
-"181\n"
+"04060181.xhp\n"
+"par_id3150120\n"
+"86\n"
"help.text"
-msgid "<item type=\"input\">=SUM(INDIRECT(\"a1:\" & ADDRESS(1;3)))</item> totals the cells in the area of A1 up to the cell with the address defined by row 1 and column 3. This means that area A1:C1 is totaled."
+msgid "<item type=\"input\">=BINOMDIST(A1;12;0.5;1)</item> shows the cumulative probabilities for the same series. For example, if A1 = <item type=\"input\">4</item>, the cumulative probability of the series is 0, 1, 2, 3 or 4 times <emph>Heads</emph> (non-exclusive OR)."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3154818\n"
+"04060181.xhp\n"
+"bm_id0119200902432928\n"
"help.text"
-msgid "<bookmark_value>COLUMN function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "<bookmark_value>CHISQINV function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3154818\n"
-"70\n"
+"04060181.xhp\n"
+"hd_id0119200902421451\n"
"help.text"
-msgid "COLUMN"
-msgstr "COLUMN"
+msgid "CHISQINV"
+msgstr "CHIINV"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149711\n"
-"193\n"
+"04060181.xhp\n"
+"par_id0119200902421449\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SPALTE\">Returns the column number of a cell reference.</ahelp> If the reference is a cell the column number of the cell is returned; if the parameter is a cell area, the corresponding column numbers are returned in a single-row <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"array\">array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the COLUMN function with an area reference parameter is not used for an array formula, only the column number of the first cell within the area is determined."
+msgid "<ahelp hid=\".\">Returns the inverse of CHISQDIST.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3149283\n"
-"72\n"
+"04060181.xhp\n"
+"hd_id0119200902475241\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149447\n"
-"73\n"
+"04060181.xhp\n"
+"par_id0119200902475286\n"
"help.text"
-msgid "COLUMN(Reference)"
-msgstr "Deri në referencë"
+msgid "<emph>Probability</emph> is the probability value for which the inverse of the chi-square distribution is to be calculated."
+msgstr "Vlera e gjasës për të cilën do të llogaritet shprëndarja inverse standarde normale."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3156310\n"
-"74\n"
+"04060181.xhp\n"
+"par_id0119200902475282\n"
"help.text"
-msgid "<emph>Reference</emph> is the reference to a cell or cell area whose first column number is to be found."
-msgstr "Ky është teksti për të cilin do të gjindet kodi i karakterit të parë."
+msgid "<emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155837\n"
-"194\n"
+"04060181.xhp\n"
+"bm_id3148835\n"
"help.text"
-msgid "If no reference is entered, the column number of the cell in which the formula is entered is found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
+msgid "<bookmark_value>CHIINV function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3148835\n"
+"88\n"
+"help.text"
+msgid "CHIINV"
+msgstr "CHIINV"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149906\n"
+"89\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_CHIINV\">Returns the inverse of the one-tailed probability of the chi-squared distribution.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3152932\n"
-"75\n"
+"04060181.xhp\n"
+"hd_id3159157\n"
+"90\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3150504\n"
+"91\n"
+"help.text"
+msgid "CHIINV(Number; DegreesFreedom)"
+msgstr "Zona e numrit të sllajdit"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3154898\n"
+"92\n"
+"help.text"
+msgid "<emph>Number</emph> is the value of the error probability."
+msgstr "Kthen SAKTË nëse vlera është një numër."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3154294\n"
+"93\n"
+"help.text"
+msgid "<emph>DegreesFreedom</emph> is the degrees of freedom of the experiment."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3154208\n"
+"94\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147571\n"
-"76\n"
+"04060181.xhp\n"
+"par_id3150777\n"
+"130\n"
"help.text"
-msgid "<item type=\"input\">=COLUMN(A1)</item> equals 1. Column A is the first column in the table."
+msgid "A die is thrown 1020 times. The numbers on the die 1 through 6 come up 195, 151, 148, 189, 183 and 154 times (observation values). The hypothesis that the die is not fixed is to be tested."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147079\n"
-"77\n"
+"04060181.xhp\n"
+"par_id3153062\n"
+"131\n"
"help.text"
-msgid "<item type=\"input\">=COLUMN(C3:E3)</item> equals 3. Column C is the third column in the table."
+msgid "The Chi square distribution of the random sample is determined by the formula given above. Since the expected value for a given number on the die for n throws is n times 1/6, thus 1020/6 = 170, the formula returns a Chi square value of 13.27."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3146861\n"
-"195\n"
+"04060181.xhp\n"
+"par_id3148806\n"
+"132\n"
"help.text"
-msgid "<item type=\"input\">=COLUMN(D3:G10)</item> returns 4 because column D is the fourth column in the table and the COLUMN function is not used as an array formula. (In this case, the first value of the array is always used as the result.)"
+msgid "If the (observed) Chi square is greater than or equal to the (theoretical) Chi square CHIINV, the hypothesis will be discarded, since the deviation between theory and experiment is too great. If the observed Chi square is less that CHIINV, the hypothesis is confirmed with the indicated probability of error."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3156320\n"
-"196\n"
+"04060181.xhp\n"
+"par_id3149763\n"
+"95\n"
"help.text"
-msgid "<item type=\"input\">{=COLUMN(B2:B7)}</item> and <item type=\"input\">=COLUMN(B2:B7)</item> both return 2 because the reference only contains column B as the second column in the table. Because single-column areas have only one column number, it does not make a difference whether or not the formula is used as an array formula."
-msgstr ""
+msgid "<item type=\"input\">=CHIINV(0.05;5)</item> returns 11.07."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150872\n"
-"197\n"
+"04060181.xhp\n"
+"par_id3159142\n"
+"133\n"
"help.text"
-msgid "<item type=\"input\">=COLUMN()</item> returns 3 if the formula was entered in column C."
-msgstr ""
+msgid "<item type=\"input\">=CHIINV(0.02;5)</item> returns 13.39."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153277\n"
-"198\n"
+"04060181.xhp\n"
+"par_id3158401\n"
+"134\n"
"help.text"
-msgid "<item type=\"input\">{=COLUMN(Rabbit)}</item> returns the single-row array (3, 4) if \"Rabbit\" is the named area (C1:D3)."
+msgid "If the probability of error is 5%, the die is not true. If the probability of error is 2%, there is no reason to believe it is fixed."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3154643\n"
+"04060181.xhp\n"
+"bm_id3154260\n"
"help.text"
-msgid "<bookmark_value>COLUMNS function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "<bookmark_value>CHITEST function</bookmark_value>"
+msgstr "Shndërron një vlerë në tekst."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3154643\n"
-"79\n"
+"04060181.xhp\n"
+"hd_id3154260\n"
+"97\n"
"help.text"
-msgid "COLUMNS"
-msgstr "COLUMNS"
+msgid "CHITEST"
+msgstr "CHITEST"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3151182\n"
-"80\n"
+"04060181.xhp\n"
+"par_id3151052\n"
+"98\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SPALTEN\">Returns the number of columns in the given reference.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_CHITEST\">Returns the probability of a deviance from a random distribution of two test series based on the chi-squared test for independence.</ahelp> CHITEST returns the chi-squared distribution of the data."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3149141\n"
-"81\n"
+"04060181.xhp\n"
+"par_id3148925\n"
+"135\n"
+"help.text"
+msgid "The probability determined by CHITEST can also be determined with CHIDIST, in which case the Chi square of the random sample must then be passed as a parameter instead of the data row."
+msgstr ""
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3154280\n"
+"99\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154047\n"
-"82\n"
+"04060181.xhp\n"
+"par_id3149162\n"
+"100\n"
"help.text"
-msgid "COLUMNS(Array)"
-msgstr "Formula e vargut %1 R x %2 C"
+msgid "CHITEST(DataB; DataE)"
+msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154745\n"
-"83\n"
+"04060181.xhp\n"
+"par_id3158421\n"
+"101\n"
"help.text"
-msgid "<emph>Array</emph> is the reference to a cell range whose total number of columns is to be found. The argument can also be a single cell."
-msgstr ""
+msgid "<emph>DataB</emph> is the array of the observations."
+msgstr "Grup të dhënash në file"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153622\n"
-"84\n"
+"04060181.xhp\n"
+"par_id3166453\n"
+"102\n"
+"help.text"
+msgid "<emph>DataE</emph> is the range of the expected values."
+msgstr "Grup të dhënash në file"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3146946\n"
+"103\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149577\n"
-"200\n"
+"04060181.xhp\n"
+"par_id3154096\n"
+"136\n"
"help.text"
-msgid "<item type=\"input\">=COLUMNS(B5)</item> returns 1 because a cell only contains one column."
-msgstr ""
+msgid "Data_B (observed)"
+msgstr "Grupi i vëzhguar i të dhënave"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3145649\n"
-"85\n"
+"04060181.xhp\n"
+"par_id3152948\n"
+"137\n"
"help.text"
-msgid "<item type=\"input\">=COLUMNS(A1:C5)</item> equals 3. The reference comprises three columns."
-msgstr ""
+msgid "Data_E (expected)"
+msgstr "Grupi i pritur i të dhënave."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155846\n"
-"201\n"
+"04060181.xhp\n"
+"par_id3152876\n"
+"138\n"
"help.text"
-msgid "<item type=\"input\">=COLUMNS(Rabbit)</item> returns 2 if <item type=\"literal\">Rabbit</item> is the named range (C1:D3)."
+msgid "1"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3153152\n"
+"04060181.xhp\n"
+"par_id3159279\n"
+"139\n"
"help.text"
-msgid "<bookmark_value>vertical search function</bookmark_value> <bookmark_value>VLOOKUP function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<item type=\"input\">195</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153152\n"
-"87\n"
+"04060181.xhp\n"
+"par_id3149105\n"
+"140\n"
"help.text"
-msgid "VLOOKUP"
-msgstr "VLOOKUP"
+msgid "<item type=\"input\">170</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149984\n"
-"88\n"
+"04060181.xhp\n"
+"par_id3149922\n"
+"141\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SVERWEIS\">Vertical search with reference to adjacent cells to the right.</ahelp> This function checks if a specific value is contained in the first column of an array. The function then returns the value in the same row of the column named by <item type=\"literal\">Index</item>. If the <item type=\"literal\">SortOrder</item> parameter is omitted or set to TRUE or one, it is assumed that the data is sorted in ascending order. In this case, if the exact <item type=\"literal\">SearchCriterion</item> is not found, the last value that is smaller than the criterion will be returned. If <item type=\"literal\">SortOrder</item> is set to FALSE or zero, an exact match must be found, otherwise the error <emph>Error: Value Not Available</emph> will be the result. Thus with a value of zero the data does not need to be sorted in ascending order."
+msgid "2"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3146898\n"
-"89\n"
+"04060181.xhp\n"
+"par_id3148621\n"
+"142\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<item type=\"input\">151</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150156\n"
-"90\n"
+"04060181.xhp\n"
+"par_id3148987\n"
+"143\n"
"help.text"
-msgid "=VLOOKUP(SearchCriterion; Array; Index; SortOrder)"
-msgstr ""
+msgid "<item type=\"input\">170</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149289\n"
-"91\n"
+"04060181.xhp\n"
+"par_id3149417\n"
+"144\n"
"help.text"
-msgid "<emph>SearchCriterion</emph> is the value searched for in the first column of the array."
+msgid "3"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153884\n"
-"92\n"
+"04060181.xhp\n"
+"par_id3148661\n"
+"145\n"
"help.text"
-msgid "<emph>Array</emph> is the reference, which is to comprise at least two columns."
-msgstr ""
+msgid "<item type=\"input\">148</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3156005\n"
-"93\n"
+"04060181.xhp\n"
+"par_id3151128\n"
+"146\n"
"help.text"
-msgid "<emph>Index</emph> is the number of the column in the array that contains the value to be returned. The first column has the number 1."
-msgstr ""
+msgid "<item type=\"input\">170</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3151208\n"
-"94\n"
+"04060181.xhp\n"
+"par_id3148467\n"
+"147\n"
"help.text"
-msgid "<emph>SortOrder</emph> is an optional parameter that indicates whether the first column in the array is sorted in ascending order. Enter the Boolean value FALSE or zero if the first column is not sorted in ascending order. Sorted columns can be searched much faster and the function always returns a value, even if the search value was not matched exactly, if it is between the lowest and highest value of the sorted list. In unsorted lists, the search value must be matched exactly. Otherwise the function will return this message: <emph>Error: Value Not Available</emph>."
+msgid "4"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3147487\n"
-"95\n"
+"04060181.xhp\n"
+"par_id3149237\n"
+"148\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<item type=\"input\">189</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154129\n"
-"96\n"
+"04060181.xhp\n"
+"par_id3145304\n"
+"149\n"
"help.text"
-msgid "You want to enter the number of a dish on the menu in cell A1, and the name of the dish is to appear as text in the neighboring cell (B1) immediately. The Number to Name assignment is contained in the D1:E100 array. D1 contains <item type=\"input\">100</item>, E1 contains the name <item type=\"input\">Vegetable Soup</item>, and so forth, for 100 menu items. The numbers in column D are sorted in ascending order; thus, the optional <item type=\"literal\">SortOrder</item> parameter is not necessary."
+msgid "<item type=\"input\">170</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149927\n"
+"150\n"
+"help.text"
+msgid "5"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3145663\n"
-"97\n"
+"04060181.xhp\n"
+"par_id3150630\n"
+"151\n"
"help.text"
-msgid "Enter the following formula in B1:"
+msgid "<item type=\"input\">183</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3150423\n"
+"152\n"
+"help.text"
+msgid "<item type=\"input\">170</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3143275\n"
+"153\n"
+"help.text"
+msgid "6"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3151172\n"
-"98\n"
+"04060181.xhp\n"
+"par_id3144750\n"
+"154\n"
"help.text"
-msgid "<item type=\"input\">=VLOOKUP(A1;D1:E100;2)</item>"
+msgid "<item type=\"input\">154</item>"
msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149200\n"
-"99\n"
+"04060181.xhp\n"
+"par_id3153947\n"
+"155\n"
"help.text"
-msgid "As soon as you enter a number in A1 B1 will show the corresponding text contained in the second column of reference D1:E100. Entering a nonexistent number displays the text with the next number down. To prevent this, enter FALSE as the last parameter in the formula so that an error message is generated when a nonexistent number is entered."
+msgid "<item type=\"input\">170</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3149481\n"
+"104\n"
+"help.text"
+msgid "<item type=\"input\">=CHITEST(A1:A6;B1:B6)</item> equals 0.02. This is the probability which suffices the observed data of the theoretical Chi-square distribution."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3153905\n"
+"04060181.xhp\n"
+"bm_id3148690\n"
"help.text"
-msgid "<bookmark_value>sheet numbers; looking up</bookmark_value> <bookmark_value>SHEET function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>CHIDIST function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153905\n"
-"215\n"
+"04060181.xhp\n"
+"hd_id3148690\n"
+"106\n"
"help.text"
-msgid "SHEET"
-msgstr "SHEET"
+msgid "CHIDIST"
+msgstr "CHIDIST"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150309\n"
-"216\n"
+"04060181.xhp\n"
+"par_id3156338\n"
+"156\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TABELLE\">Returns the sheet number of a reference or a string representing a sheet name.</ahelp> If you do not enter any parameters, the result is the sheet number of the spreadsheet containing the formula."
+msgid "<ahelp hid=\"HID_FUNC_CHIVERT\">Returns the probability value from the indicated Chi square that a hypothesis is confirmed.</ahelp> CHIDIST compares the Chi square value to be given for a random sample that is calculated from the sum of (observed value-expected value)^2/expected value for all values with the theoretical Chi square distribution and determines from this the probability of error for the hypothesis to be tested."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3148564\n"
-"217\n"
+"04060181.xhp\n"
+"par_id3151316\n"
+"157\n"
+"help.text"
+msgid "The probability determined by CHIDIST can also be determined by CHITEST."
+msgstr ""
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3155123\n"
+"108\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153095\n"
-"218\n"
+"04060181.xhp\n"
+"par_id3158439\n"
+"109\n"
"help.text"
-msgid "SHEET(Reference)"
-msgstr "Referencë e pavlefshme e fletës."
+msgid "CHIDIST(Number; DegreesFreedom)"
+msgstr "Zona e numrit të sllajdit"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154588\n"
-"219\n"
+"04060181.xhp\n"
+"par_id3148675\n"
+"110\n"
"help.text"
-msgid "<emph>Reference</emph> is optional and is the reference to a cell, an area, or a sheet name string."
+msgid "<emph>Number</emph> is the chi-square value of the random sample used to determine the error probability."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3155399\n"
-"220\n"
+"04060181.xhp\n"
+"par_id3155615\n"
+"111\n"
+"help.text"
+msgid "<emph>DegreesFreedom</emph> are the degrees of freedom of the experiment."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"hd_id3146787\n"
+"112\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3146988\n"
-"221\n"
+"04060181.xhp\n"
+"par_id3145774\n"
+"113\n"
"help.text"
-msgid "<item type=\"input\">=SHEET(Sheet2.A1)</item> returns 2 if Sheet2 is the second sheet in the spreadsheet document."
+msgid "<item type=\"input\">=CHIDIST(13.27; 5)</item> equals 0.02."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060181.xhp
+msgctxt ""
+"04060181.xhp\n"
+"par_id3156141\n"
+"158\n"
+"help.text"
+msgid "If the Chi square value of the random sample is 13.27 and if the experiment has 5 degrees of freedom, then the hypothesis is assured with a probability of error of 2%."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3148829\n"
+"04060181.xhp\n"
+"bm_id0119200902231887\n"
"help.text"
-msgid "<bookmark_value>number of sheets; function</bookmark_value> <bookmark_value>SHEETS function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>CHISQDIST function</bookmark_value><bookmark_value>chi-square distribution</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3148829\n"
-"222\n"
+"04060181.xhp\n"
+"hd_id0119200901583452\n"
"help.text"
-msgid "SHEETS"
-msgstr "SHEETS"
+msgid "CHISQDIST"
+msgstr "CHIDIST"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148820\n"
-"223\n"
+"04060181.xhp\n"
+"par_id0119200901583471\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TABELLEN\">Determines the number of sheets in a reference.</ahelp> If you do not enter any parameters, it returns the number of sheets in the current document."
+msgid "<ahelp hid=\".\">Returns the value of the probability density function or the cumulative distribution function for the chi-square distribution.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3154220\n"
-"224\n"
+"04060181.xhp\n"
+"hd_id0119200902395520\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150777\n"
-"225\n"
+"04060181.xhp\n"
+"par_id0119200902395679\n"
"help.text"
-msgid "SHEETS(Reference)"
-msgstr "Deri në referencë"
+msgid "CHISQDIST(Number; Degrees Of Freedom; Cumulative)"
+msgstr "Zona e numrit të sllajdit"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153060\n"
-"226\n"
+"04060181.xhp\n"
+"par_id011920090239564\n"
"help.text"
-msgid "<emph>Reference</emph> is the reference to a sheet or an area. This parameter is optional."
-msgstr ""
+msgid "<emph>Number</emph> is the number for which the function is to be calculated."
+msgstr "Vlera për të cilin do të llogaritet shprëndarja standarde normale."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3149766\n"
-"227\n"
+"04060181.xhp\n"
+"par_id0119200902395660\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150507\n"
-"228\n"
+"04060181.xhp\n"
+"par_id0119200902395623\n"
"help.text"
-msgid "<item type=\"input\">=SHEETS(Sheet1.A1:Sheet3.G12)</item> returns 3 if Sheet1, Sheet2, and Sheet3 exist in the sequence indicated."
+msgid "<emph>Cumulative</emph> (optional): 0 or False calculates the probability density function. Other values or True or omitted calculates the cumulative distribution function."
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3158407\n"
+"04060181.xhp\n"
+"bm_id3150603\n"
"help.text"
-msgid "<bookmark_value>MATCH function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>EXPONDIST function</bookmark_value> <bookmark_value>exponential distributions</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3158407\n"
-"101\n"
+"04060181.xhp\n"
+"hd_id3150603\n"
+"115\n"
"help.text"
-msgid "MATCH"
-msgstr "MATCH"
+msgid "EXPONDIST"
+msgstr "EXPONDIST"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154896\n"
-"102\n"
+"04060181.xhp\n"
+"par_id3149563\n"
+"116\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VERGLEICH\">Returns the relative position of an item in an array that matches a specified value.</ahelp> The function returns the position of the value found in the lookup_array as a number."
+msgid "<ahelp hid=\"HID_FUNC_EXPONVERT\">Returns the exponential distribution.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153834\n"
-"103\n"
+"04060181.xhp\n"
+"hd_id3153789\n"
+"117\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3159152\n"
-"104\n"
+"04060181.xhp\n"
+"par_id3150987\n"
+"118\n"
"help.text"
-msgid "MATCH(SearchCriterion; LookupArray; Type)"
-msgstr ""
+msgid "EXPONDIST(Number; Lambda; C)"
+msgstr "Zona e numrit të sllajdit"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149336\n"
-"105\n"
+"04060181.xhp\n"
+"par_id3154663\n"
+"119\n"
"help.text"
-msgid "<emph>SearchCriterion</emph> is the value which is to be searched for in the single-row or single-column array."
-msgstr ""
+msgid "<emph>Number</emph> is the value of the function."
+msgstr "Kthen SAKTË nëse vlera është një numër."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3159167\n"
-"106\n"
+"04060181.xhp\n"
+"par_id3154569\n"
+"120\n"
"help.text"
-msgid "<emph>LookupArray</emph> is the reference searched. A lookup array can be a single row or column, or part of a single row or column."
-msgstr ""
+msgid "<emph>Lambda</emph> is the parameter value."
+msgstr "Grup të dhënash në file"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147239\n"
-"107\n"
+"04060181.xhp\n"
+"par_id3147332\n"
+"121\n"
"help.text"
-msgid "<emph>Type</emph> may take the values 1, 0, or -1. If Type = 1 or if this optional parameter is missing, it is assumed that the first column of the search array is sorted in ascending order. If Type = -1 it is assumed that the column in sorted in descending order. This corresponds to the same function in Microsoft Excel."
-msgstr ""
+msgid "<emph>C</emph> is a logical value that determines the form of the function. <emph>C = 0</emph> calculates the density function, and <emph>C = 1</emph> calculates the distribution."
+msgstr "Grumbulluar. C=0 llogarit funksionin e dendësisë, C=1 shprëndarjen."
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154265\n"
-"231\n"
+"04060181.xhp\n"
+"hd_id3146133\n"
+"122\n"
"help.text"
-msgid "If Type = 0, only exact matches are found. If the search criterion is found more than once, the function returns the index of the first matching value. Only if Type = 0 can you search for regular expressions."
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 04060109.xhp
+#: 04060181.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147528\n"
-"232\n"
+"04060181.xhp\n"
+"par_id3150357\n"
+"123\n"
"help.text"
-msgid "If Type = 1 or the third parameter is missing, the index of the last value that is smaller or equal to the search criterion is returned. This applies even when the search array is not sorted. For Type = -1, the first value that is larger or equal is returned."
-msgstr ""
+msgid "<item type=\"input\">=EXPONDIST(3;0.5;1)</item> returns 0.78."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3155119\n"
-"108\n"
+"04060182.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Statistical Functions Part Two"
+msgstr "Funksionet statistikore"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155343\n"
-"109\n"
+"04060182.xhp\n"
+"hd_id3154372\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=MATCH(200;D1:D100)</item> searches the area D1:D100, which is sorted by column D, for the value 200. As soon as this value is reached, the number of the row in which it was found is returned. If a higher value is found during the search in the column, the number of the previous row is returned."
+msgid "<variable id=\"fh\"><link href=\"text/scalc/01/04060182.xhp\" name=\"Statistical Functions Part Two\">Statistical Functions Part Two</link></variable>"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3158430\n"
+"04060182.xhp\n"
+"bm_id3145388\n"
"help.text"
-msgid "<bookmark_value>OFFSET function</bookmark_value>"
-msgstr "Definon vlerën llogjike si PASAKTË."
+msgid "<bookmark_value>FINV function</bookmark_value> <bookmark_value>inverse F probability distribution</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3158430\n"
-"111\n"
+"04060182.xhp\n"
+"hd_id3145388\n"
+"2\n"
"help.text"
-msgid "OFFSET"
-msgstr "OFFSET"
+msgid "FINV"
+msgstr "FINV"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149167\n"
-"112\n"
+"04060182.xhp\n"
+"par_id3155089\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VERSCHIEBUNG\">Returns the value of a cell offset by a certain number of rows and columns from a given reference point.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_FINV\">Returns the inverse of the F probability distribution.</ahelp> The F distribution is used for F tests in order to set the relation between two differing data sets."
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3146952\n"
-"113\n"
+"04060182.xhp\n"
+"hd_id3153816\n"
+"4\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3159194\n"
-"114\n"
+"04060182.xhp\n"
+"par_id3153068\n"
+"5\n"
"help.text"
-msgid "OFFSET(Reference; Rows; Columns; Height; Width)"
+msgid "FINV(Number; DegreesFreedom1; DegreesFreedom2)"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3152360\n"
-"115\n"
+"04060182.xhp\n"
+"par_id3146866\n"
+"6\n"
"help.text"
-msgid "<emph>Reference</emph> is the reference from which the function searches for the new reference."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+msgid "<emph>Number</emph> is probability value for which the inverse F distribution is to be calculated."
+msgstr "Vlera e gjasës për të cilën do të llogaritet shprëndarja inverse standarde normale."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3156032\n"
-"116\n"
+"04060182.xhp\n"
+"par_id3153914\n"
+"7\n"
"help.text"
-msgid "<emph>Rows</emph> is the number of rows by which the reference was corrected up (negative value) or down."
-msgstr ""
+msgid "<emph>DegreesFreedom1</emph> is the number of degrees of freedom in the numerator of the F distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3166458\n"
-"117\n"
+"04060182.xhp\n"
+"par_id3148607\n"
+"8\n"
"help.text"
-msgid "<emph>Columns</emph> (optional) is the number of columns by which the reference was corrected to the left (negative value) or to the right."
-msgstr ""
+msgid "<emph>DegreesFreedom2</emph> is the number of degrees of freedom in the denominator of the F distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150708\n"
-"118\n"
+"04060182.xhp\n"
+"hd_id3156021\n"
+"9\n"
"help.text"
-msgid "<emph>Height</emph> (optional) is the vertical height for an area that starts at the new reference position."
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147278\n"
-"119\n"
+"04060182.xhp\n"
+"par_id3145073\n"
+"10\n"
"help.text"
-msgid "<emph>Width</emph> (optional) is the horizontal width for an area that starts at the new reference position."
-msgstr ""
+msgid "<item type=\"input\">=FINV(0.5;5;10)</item> yields 0.93."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id8662373\n"
+"04060182.xhp\n"
+"bm_id3150888\n"
"help.text"
-msgid "Arguments <emph>Rows</emph> and <emph>Columns</emph> must not lead to zero or negative start row or column."
-msgstr ""
+msgid "<bookmark_value>FISHER function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id9051484\n"
+"04060182.xhp\n"
+"hd_id3150888\n"
+"12\n"
"help.text"
-msgid "Arguments <emph>Height</emph> and <emph>Width</emph> must not lead to zero or negative count of rows or columns."
-msgstr ""
+msgid "FISHER"
+msgstr "FISHER"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN1104B\n"
+"04060182.xhp\n"
+"par_id3155384\n"
+"13\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "<ahelp hid=\"HID_FUNC_FISHER\">Returns the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3155586\n"
-"120\n"
+"04060182.xhp\n"
+"hd_id3149898\n"
+"14\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3143220\n"
+"15\n"
+"help.text"
+msgid "FISHER(Number)"
+msgstr "Numri i faqes"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3159228\n"
+"16\n"
+"help.text"
+msgid "<emph>Number</emph> is the value to be transformed."
+msgstr "Vlera që do të transformohet prapa."
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3154763\n"
+"17\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149744\n"
-"121\n"
+"04060182.xhp\n"
+"par_id3149383\n"
+"18\n"
"help.text"
-msgid "<item type=\"input\">=OFFSET(A1;2;2)</item> returns the value in cell C3 (A1 moved by two rows and two columns down). If C3 contains the value <item type=\"input\">100</item> this function returns the value 100."
-msgstr ""
+msgid "<item type=\"input\">=FISHER(0.5)</item> yields 0.55."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id7439802\n"
+"04060182.xhp\n"
+"bm_id3155758\n"
"help.text"
-msgid "<item type=\"input\">=OFFSET(B2:C3;1;1)</item> returns a reference to B2:C3 moved down by 1 row and one column to the right (C3:D4)."
-msgstr ""
+msgid "<bookmark_value>FISHERINV function</bookmark_value> <bookmark_value>inverse of Fisher transformation</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3009430\n"
+"04060182.xhp\n"
+"hd_id3155758\n"
+"20\n"
"help.text"
-msgid "<item type=\"input\">=OFFSET(B2:C3;-1;-1)</item> returns a reference to B2:C3 moved up by 1 row and one column to the left (A1:B2)."
-msgstr ""
+msgid "FISHERINV"
+msgstr "FISHERINV"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id2629169\n"
+"04060182.xhp\n"
+"par_id3154734\n"
+"21\n"
"help.text"
-msgid "<item type=\"input\">=OFFSET(B2:C3;0;0;3;4)</item> returns a reference to B2:C3 resized to 3 rows and 4 columns (B2:E4)."
+msgid "<ahelp hid=\"HID_FUNC_FISHERINV\">Returns the inverse of the Fisher transformation for x and creates a function close to a normal distribution.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id6668599\n"
+"04060182.xhp\n"
+"hd_id3155755\n"
+"22\n"
"help.text"
-msgid "<item type=\"input\">=OFFSET(B2:C3;1;0;3;4)</item> returns a reference to B2:C3 moved down by one row resized to 3 rows and 4 columns (B2:E4)."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153739\n"
-"122\n"
+"04060182.xhp\n"
+"par_id3146108\n"
+"23\n"
"help.text"
-msgid "<item type=\"input\">=SUM(OFFSET(A1;2;2;5;6))</item> determines the total of the area that starts in cell C3 and has a height of 5 rows and a width of 6 columns (area=C3:H7)."
-msgstr ""
+msgid "FISHERINV(Number)"
+msgstr "Numri i faqes"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3159273\n"
+"04060182.xhp\n"
+"par_id3145115\n"
+"24\n"
"help.text"
-msgid "<bookmark_value>LOOKUP function</bookmark_value>"
-msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+msgid "<emph>Number</emph> is the value that is to undergo reverse-transformation."
+msgstr "Vlera që do të transformohet prapa."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3159273\n"
-"123\n"
+"04060182.xhp\n"
+"hd_id3155744\n"
+"25\n"
"help.text"
-msgid "LOOKUP"
-msgstr "LOOKUP"
+msgid "Example"
+msgstr "Shembull"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153389\n"
-"124\n"
+"04060182.xhp\n"
+"par_id3150432\n"
+"26\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VERWEIS\">Returns the contents of a cell either from a one-row or one-column range.</ahelp> Optionally, the assigned value (of the same index) is returned in a different column and row. As opposed to <link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> and <link href=\"text/scalc/01/04060109.xhp\" name=\"HLOOKUP\">HLOOKUP</link>, search and result vector may be at different positions; they do not have to be adjacent. Additionally, the search vector for the LOOKUP must be sorted ascending, otherwise the search will not return any usable results."
-msgstr ""
+msgid "<item type=\"input\">=FISHERINV(0.5)</item> yields 0.46."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id4484084\n"
+"04060182.xhp\n"
+"bm_id3151390\n"
"help.text"
-msgid "If LOOKUP cannot find the search criterion, it matches the largest value in the search vector that is less than or equal to the search criterion."
-msgstr ""
+msgid "<bookmark_value>FTEST function</bookmark_value>"
+msgstr "Shndërron një vlerë në tekst."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3152947\n"
-"125\n"
+"04060182.xhp\n"
+"hd_id3151390\n"
+"28\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "FTEST"
+msgstr "FTEST"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154104\n"
-"126\n"
+"04060182.xhp\n"
+"par_id3150534\n"
+"29\n"
"help.text"
-msgid "LOOKUP(SearchCriterion; SearchVector; ResultVector)"
+msgid "<ahelp hid=\"HID_FUNC_FTEST\">Returns the result of an F test.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150646\n"
-"127\n"
+"04060182.xhp\n"
+"hd_id3166466\n"
+"30\n"
"help.text"
-msgid "<emph>SearchCriterion</emph> is the value to be searched for; entered either directly or as a reference."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154854\n"
-"128\n"
+"04060182.xhp\n"
+"par_id3153024\n"
+"31\n"
"help.text"
-msgid "<emph>SearchVector</emph> is the single-row or single-column area to be searched."
+msgid "FTEST(Data1; Data2)"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149925\n"
-"129\n"
+"04060182.xhp\n"
+"par_id3150032\n"
+"32\n"
"help.text"
-msgid "<emph>ResultVector</emph> is another single-row or single-column range from which the result of the function is taken. The result is the cell of the result vector with the same index as the instance found in the search vector."
-msgstr ""
+msgid "<emph>Data1</emph> is the first record array."
+msgstr "Data kur pwrfundon periudha e parw"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3148624\n"
-"130\n"
+"04060182.xhp\n"
+"par_id3153018\n"
+"33\n"
+"help.text"
+msgid "<emph>Data2</emph> is the second record array."
+msgstr "Grup të dhënash në file"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3153123\n"
+"34\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149809\n"
-"131\n"
+"04060182.xhp\n"
+"par_id3159126\n"
+"35\n"
"help.text"
-msgid "<item type=\"input\">=LOOKUP(A1;D1:D100;F1:F100)</item> searches the corresponding cell in range D1:D100 for the number you entered in A1. For the instance found, the index is determined, for example, the 12th cell in this range. Then, the contents of the 12th cell are returned as the value of the function (in the result vector)."
+msgid "<item type=\"input\">=FTEST(A1:A30;B1:B12)</item> calculates whether the two data sets are different in their variance and returns the probability that both sets could have come from the same total population."
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3149425\n"
+"04060182.xhp\n"
+"bm_id3150372\n"
"help.text"
-msgid "<bookmark_value>STYLE function</bookmark_value>"
-msgstr "Definon llojin e të dhënës së një vlere."
+msgid "<bookmark_value>FDIST function</bookmark_value>"
+msgstr "Definon vlerën llogjike si PASAKTË."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3149425\n"
-"133\n"
+"04060182.xhp\n"
+"hd_id3150372\n"
+"37\n"
"help.text"
-msgid "STYLE"
-msgstr "STYLE"
+msgid "FDIST"
+msgstr "FDIST"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150826\n"
-"134\n"
+"04060182.xhp\n"
+"par_id3152981\n"
+"38\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VORLAGE\">Applies a style to the cell containing the formula.</ahelp> After a set amount of time, another style can be applied. This function always returns the value 0, allowing you to add it to another function without changing the value. Together with the CURRENT function you can apply a color to a cell regardless of the value. For example: =...+STYLE(IF(CURRENT()>3;\"red\";\"green\")) applies the style \"red\" to the cell if the value is greater than 3, otherwise the style \"green\" is applied. Both cell formats have to be defined beforehand."
+msgid "<ahelp hid=\"HID_FUNC_FVERT\">Calculates the values of an F distribution.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3145373\n"
-"135\n"
+"04060182.xhp\n"
+"hd_id3150484\n"
+"39\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
-msgctxt ""
-"04060109.xhp\n"
-"par_id3149302\n"
-"136\n"
-"help.text"
-msgid "STYLE(\"Style\"; Time; \"Style2\")"
-msgstr "**Format i gabuar kohor**"
-
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150596\n"
-"137\n"
+"04060182.xhp\n"
+"par_id3145826\n"
+"40\n"
"help.text"
-msgid "<emph>Style</emph> is the name of a cell style assigned to the cell. Style names must be entered in quotation marks."
+msgid "FDIST(Number; DegreesFreedom1; DegreesFreedom2)"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3156149\n"
-"138\n"
+"04060182.xhp\n"
+"par_id3150461\n"
+"41\n"
"help.text"
-msgid "<emph>Time</emph> is an optional time range in seconds. If this parameter is missing the style will not be changed after a certain amount of time has passed."
-msgstr ""
+msgid "<emph>Number</emph> is the value for which the F distribution is to be calculated."
+msgstr "Vlera për të cilin do të llogaritet shprëndarja standarde normale."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149520\n"
-"139\n"
+"04060182.xhp\n"
+"par_id3150029\n"
+"42\n"
"help.text"
-msgid "<emph>Style2</emph> is the optional name of a cell style assigned to the cell after a certain amount of time has passed. If this parameter is missing \"Default\" is assumed."
-msgstr ""
+msgid "<emph>degreesFreedom1</emph> is the degrees of freedom in the numerator in the F distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN111CA\n"
+"04060182.xhp\n"
+"par_id3146877\n"
+"43\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
-msgstr ""
+msgid "<emph>degreesFreedom2</emph> is the degrees of freedom in the denominator in the F distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3159254\n"
-"140\n"
+"04060182.xhp\n"
+"hd_id3147423\n"
+"44\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3151374\n"
-"141\n"
+"04060182.xhp\n"
+"par_id3150696\n"
+"45\n"
"help.text"
-msgid "<item type=\"input\">=STYLE(\"Invisible\";60;\"Default\")</item> formats the cell in transparent format for 60 seconds after the document was recalculated or loaded, then the Default format is assigned. Both cell formats have to be defined beforehand."
-msgstr ""
+msgid "<item type=\"input\">=FDIST(0.8;8;12)</item> yields 0.61."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id8056886\n"
+"04060182.xhp\n"
+"bm_id0119200903223192\n"
"help.text"
-msgid "Since STYLE() has a numeric return value of zero, this return value gets appended to a string. This can be avoided using T() as in the following example"
-msgstr ""
+msgid "<bookmark_value>GAMMA function</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3668935\n"
+"04060182.xhp\n"
+"hd_id0119200903205393\n"
"help.text"
-msgid "<item type=\"input\">=\"Text\"&T(STYLE(\"myStyle\"))</item>"
-msgstr ""
+msgid "GAMMA"
+msgstr "GAMMALN"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3042085\n"
+"04060182.xhp\n"
+"par_id0119200903205379\n"
"help.text"
-msgid "See also CURRENT() for another example."
+msgid "<ahelp hid=\".\">Returns the Gamma function value.</ahelp> Note that GAMMAINV is not the inverse of GAMMA, but of GAMMADIST."
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3150430\n"
+"04060182.xhp\n"
+"hd_id0119200903271613\n"
"help.text"
-msgid "<bookmark_value>CHOOSE function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3150430\n"
-"142\n"
+"04060182.xhp\n"
+"par_id0119200903271614\n"
"help.text"
-msgid "CHOOSE"
-msgstr "ZGJEDH"
+msgid "<emph>Number</emph> is the number for which the Gamma function value is to be calculated."
+msgstr "Vlera e gjasës për të cilën do të llogaritet invers gama shprëndarja."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3143270\n"
-"143\n"
+"04060182.xhp\n"
+"bm_id3154841\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WAHL\">Uses an index to return a value from a list of up to 30 values.</ahelp>"
+msgid "<bookmark_value>GAMMAINV function</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3154841\n"
+"47\n"
+"help.text"
+msgid "GAMMAINV"
+msgstr "GAMMAINV"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3153932\n"
+"48\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GAMMAINV\">Returns the inverse of the Gamma cumulative distribution GAMMADIST.</ahelp> This function allows you to search for variables with different distribution."
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3153533\n"
-"144\n"
+"04060182.xhp\n"
+"hd_id3149949\n"
+"49\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155425\n"
-"145\n"
+"04060182.xhp\n"
+"par_id3155828\n"
+"50\n"
"help.text"
-msgid "CHOOSE(Index; Value1; ...; Value30)"
-msgstr ""
+msgid "GAMMAINV(Number; Alpha; Beta)"
+msgstr "Alfa parametri për Beta shprëndarje."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3144755\n"
-"146\n"
+"04060182.xhp\n"
+"par_id3145138\n"
+"51\n"
"help.text"
-msgid "<emph>Index</emph> is a reference or number between 1 and 30 indicating which value is to be taken from the list."
-msgstr ""
+msgid "<emph>Number</emph> is the probability value for which the inverse Gamma distribution is to be calculated."
+msgstr "Vlera e gjasës për të cilën do të llogaritet shprëndarja inverse standarde normale."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3149939\n"
-"147\n"
+"04060182.xhp\n"
+"par_id3152785\n"
+"52\n"
"help.text"
-msgid "<emph>Value1...Value30</emph> is the list of values entered as a reference to a cell or as individual values."
-msgstr ""
+msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3151253\n"
-"148\n"
+"04060182.xhp\n"
+"par_id3154561\n"
+"53\n"
+"help.text"
+msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3148734\n"
+"54\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150625\n"
-"149\n"
+"04060182.xhp\n"
+"par_id3153331\n"
+"55\n"
"help.text"
-msgid "<item type=\"input\">=CHOOSE(A1;B1;B2;B3;\"Today\";\"Yesterday\";\"Tomorrow\")</item>, for example, returns the contents of cell B2 for A1 = 2; for A1 = 4, the function returns the text \"Today\"."
-msgstr ""
+msgid "<item type=\"input\">=GAMMAINV(0.8;1;1)</item> yields 1.61."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3151001\n"
+"04060182.xhp\n"
+"bm_id3154806\n"
"help.text"
-msgid "<bookmark_value>HLOOKUP function</bookmark_value>"
-msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+msgid "<bookmark_value>GAMMALN function</bookmark_value> <bookmark_value>natural logarithm of Gamma function</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3151001\n"
-"151\n"
+"04060182.xhp\n"
+"hd_id3154806\n"
+"57\n"
"help.text"
-msgid "HLOOKUP"
-msgstr "HLOOKUP"
+msgid "GAMMALN"
+msgstr "GAMMALN"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148688\n"
-"152\n"
+"04060182.xhp\n"
+"par_id3148572\n"
+"58\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WVERWEIS\">Searches for a value and reference to the cells below the selected area.</ahelp> This function verifies if the first row of an array contains a certain value. The function returns then the value in a row of the array, named in the <emph>Index</emph>, in the same column."
+msgid "<ahelp hid=\"HID_FUNC_GAMMALN\">Returns the natural logarithm of the Gamma function: G(x).</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3154661\n"
-"153\n"
+"04060182.xhp\n"
+"hd_id3152999\n"
+"59\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3146070\n"
-"154\n"
+"04060182.xhp\n"
+"par_id3153112\n"
+"60\n"
"help.text"
-msgid "HLOOKUP(SearchCriteria; Array; Index; Sorted)"
-msgstr ""
+msgid "GAMMALN(Number)"
+msgstr "Numri i faqes"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148672\n"
-"155\n"
+"04060182.xhp\n"
+"par_id3154502\n"
+"61\n"
"help.text"
-msgid "See also:<link href=\"text/scalc/01/04060109.xhp\" name=\"VLOOKUP\">VLOOKUP</link> (columns and rows are exchanged)"
-msgstr ""
+msgid "<emph>Number</emph> is the value for which the natural logarithm of the Gamma function is to be calculated."
+msgstr "Vlera e gjasës për të cilën do të llogaritet invers gama shprëndarja."
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3147321\n"
+"04060182.xhp\n"
+"hd_id3153568\n"
+"62\n"
"help.text"
-msgid "<bookmark_value>ROW function</bookmark_value>"
-msgstr "Gabim: Vlera nuk është në dispozicion"
+msgid "Example"
+msgstr "Shembull"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3147321\n"
-"157\n"
+"04060182.xhp\n"
+"par_id3153730\n"
+"63\n"
"help.text"
-msgid "ROW"
-msgstr "ROW"
+msgid "<item type=\"input\">=GAMMALN(2)</item> yields 0."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154564\n"
-"203\n"
+"04060182.xhp\n"
+"bm_id3150132\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZEILE\">Returns the row number of a cell reference.</ahelp> If the reference is a cell, it returns the row number of the cell. If the reference is a cell range, it returns the corresponding row numbers in a one-column <link href=\"text/scalc/01/04060107.xhp#wasmatrix\" name=\"Array\">Array</link> if the formula is entered <link href=\"text/scalc/01/04060107.xhp#somatrixformel\" name=\"as an array formula\">as an array formula</link>. If the ROW function with a range reference is not used in an array formula, only the row number of the first range cell will be returned."
-msgstr ""
+msgid "<bookmark_value>GAMMADIST function</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3158439\n"
-"159\n"
+"04060182.xhp\n"
+"hd_id3150132\n"
+"65\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "GAMMADIST"
+msgstr "GAMMADIST"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154916\n"
-"160\n"
+"04060182.xhp\n"
+"par_id3155931\n"
+"66\n"
"help.text"
-msgid "ROW(Reference)"
-msgstr "Deri në referencë"
+msgid "<ahelp hid=\"HID_FUNC_GAMMAVERT\">Returns the values of a Gamma distribution.</ahelp>"
+msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3156336\n"
-"161\n"
+"04060182.xhp\n"
+"par_id0119200903333675\n"
"help.text"
-msgid "<emph>Reference</emph> is a cell, an area, or the name of an area."
+msgid "The inverse function is GAMMAINV."
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3151109\n"
-"204\n"
+"04060182.xhp\n"
+"hd_id3147373\n"
+"67\n"
"help.text"
-msgid "If you do not indicate a reference, the row number of the cell in which the formula is entered will be found. <item type=\"productname\">%PRODUCTNAME</item> Calc automatically sets the reference to the current cell."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3155609\n"
-"162\n"
+"04060182.xhp\n"
+"par_id3155436\n"
+"68\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "GAMMADIST(Number; Alpha; Beta; C)"
+msgstr "Alfa parametri për Beta shprëndarje."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154830\n"
-"205\n"
+"04060182.xhp\n"
+"par_id3150571\n"
+"69\n"
"help.text"
-msgid "<item type=\"input\">=ROW(B3)</item> returns 3 because the reference refers to the third row in the table."
-msgstr ""
+msgid "<emph>Number</emph> is the value for which the Gamma distribution is to be calculated."
+msgstr "Vlera e gjasës për të cilën do të llogaritet invers gama shprëndarja."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3147094\n"
-"206\n"
+"04060182.xhp\n"
+"par_id3145295\n"
+"70\n"
"help.text"
-msgid "<item type=\"input\">{=ROW(D5:D8)}</item> returns the single-column array (5, 6, 7, 8) because the reference specified contains rows 5 through 8."
-msgstr ""
+msgid "<emph>Alpha</emph> is the parameter Alpha of the Gamma distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153701\n"
-"207\n"
+"04060182.xhp\n"
+"par_id3151015\n"
+"71\n"
"help.text"
-msgid "<item type=\"input\">=ROW(D5:D8)</item> returns 5 because the ROW function is not used as array formula and only the number of the first row of the reference is returned."
-msgstr ""
+msgid "<emph>Beta</emph> is the parameter Beta of the Gamma distribution"
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150996\n"
-"208\n"
+"04060182.xhp\n"
+"par_id3157972\n"
+"72\n"
"help.text"
-msgid "<item type=\"input\">{=ROW(A1:E1)}</item> and <item type=\"input\">=ROW(A1:E1)</item> both return 1 because the reference only contains row 1 as the first row in the table. (Because single-row areas only have one row number it does not make any difference whether or not the formula is used as an array formula.)"
-msgstr ""
+msgid "<emph>C</emph> (optional) = 0 or False calculates the density function <emph>C</emph> = 1 or True calculates the distribution."
+msgstr "Grumbulluar. C=0 llogarit funksionin e dendësisë, C=1 shprëndarjen."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153671\n"
-"209\n"
+"04060182.xhp\n"
+"hd_id3149535\n"
+"73\n"
"help.text"
-msgid "<item type=\"input\">=ROW()</item> returns 3 if the formula was entered in row 3."
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3153790\n"
-"210\n"
+"04060182.xhp\n"
+"par_id3145354\n"
+"74\n"
"help.text"
-msgid "<item type=\"input\">{=ROW(Rabbit)}</item> returns the single-column array (1, 2, 3) if \"Rabbit\" is the named area (C1:D3)."
-msgstr ""
+msgid "<item type=\"input\">=GAMMADIST(2;1;1;1)</item> yields 0.86."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
-#, fuzzy
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id3145772\n"
+"04060182.xhp\n"
+"bm_id3150272\n"
"help.text"
-msgid "<bookmark_value>ROWS function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "<bookmark_value>GAUSS function</bookmark_value> <bookmark_value>normal distribution; standard</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3145772\n"
-"166\n"
+"04060182.xhp\n"
+"hd_id3150272\n"
+"76\n"
"help.text"
-msgid "ROWS"
-msgstr "ROWS"
+msgid "GAUSS"
+msgstr "GAUSS"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3148971\n"
-"167\n"
+"04060182.xhp\n"
+"par_id3149030\n"
+"77\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZEILEN\">Returns the number of rows in a reference or array.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_GAUSS\">Returns the standard normal cumulative distribution.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3156051\n"
-"168\n"
+"04060182.xhp\n"
+"par_id2059694\n"
+"help.text"
+msgid "It is GAUSS(x)=NORMSDIST(x)-0.5"
+msgstr ""
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3153551\n"
+"78\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154357\n"
-"169\n"
+"04060182.xhp\n"
+"par_id3155368\n"
+"79\n"
"help.text"
-msgid "ROWS(Array)"
-msgstr "Formula e vargut %1 R x %2 C"
+msgid "GAUSS(Number)"
+msgstr "Numri i faqes"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155942\n"
-"170\n"
+"04060182.xhp\n"
+"par_id3153228\n"
+"80\n"
"help.text"
-msgid "<emph>Array</emph> is the reference or named area whose total number of rows is to be determined."
-msgstr "Numri për të cilin shenja algjebrike do të caktohet."
+msgid "<emph>Number</emph> is the value for which the value of the standard normal distribution is to be calculated."
+msgstr "Vlera e gjasës për të cilën do të llogaritet shprëndarja inverse standarde normale."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3155869\n"
-"171\n"
+"04060182.xhp\n"
+"hd_id3150691\n"
+"81\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3154725\n"
-"212\n"
+"04060182.xhp\n"
+"par_id3154867\n"
+"82\n"
"help.text"
-msgid "<item type=\"input\">=Rows(B5)</item> returns 1 because a cell only contains one row."
-msgstr ""
+msgid "<item type=\"input\">=GAUSS(0.19)</item> = 0.08"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3150102\n"
-"172\n"
+"04060182.xhp\n"
+"par_id3148594\n"
+"83\n"
"help.text"
-msgid "<item type=\"input\">=ROWS(A10:B12)</item> returns 3."
+msgid "<item type=\"input\">=GAUSS(0.0375)</item> = 0.01"
msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3155143\n"
-"213\n"
+"04060182.xhp\n"
+"bm_id3148425\n"
"help.text"
-msgid "<item type=\"input\">=ROWS(Rabbit)</item> returns 3 if \"Rabbit\" is the named area (C1:D3)."
+msgid "<bookmark_value>GEOMEAN function</bookmark_value> <bookmark_value>means;geometric</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3148425\n"
+"85\n"
+"help.text"
+msgid "GEOMEAN"
+msgstr "GEOMEAN"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3156257\n"
+"86\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GEOMITTEL\">Returns the geometric mean of a sample.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id9959410\n"
+"04060182.xhp\n"
+"hd_id3147167\n"
+"87\n"
"help.text"
-msgid "<bookmark_value>HYPERLINK function</bookmark_value>"
-msgstr "Definon llojin e të dhënës së një vlere."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11798\n"
+"04060182.xhp\n"
+"par_id3153720\n"
+"88\n"
"help.text"
-msgid "HYPERLINK"
-msgstr "Hiperlink"
+msgid "GEOMEAN(Number1; Number2; ...Number30)"
+msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN117F1\n"
+"04060182.xhp\n"
+"par_id3152585\n"
+"89\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_HYPERLINK\">When you click a cell that contains the HYPERLINK function, the hyperlink opens.</ahelp>"
+msgid "<emph>Number1, Number2,...Number30</emph> are numeric arguments or ranges that represent a random sample."
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11800\n"
+"04060182.xhp\n"
+"hd_id3146146\n"
+"90\n"
"help.text"
-msgid "If you use the optional <emph>CellText</emph> parameter, the formula locates the URL, and then displays the text or number."
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3149819\n"
+"92\n"
+"help.text"
+msgid "<item type=\"input\">=GEOMEAN(23;46;69)</item> = 41.79. The geometric mean value of this random sample is therefore 41.79."
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11803\n"
+"04060182.xhp\n"
+"bm_id3152966\n"
"help.text"
-msgid "To open a hyperlinked cell with the keyboard, select the cell, press F2 to enter the Edit mode, move the cursor in front of the hyperlink, press Shift+F10, and then choose <emph>Open Hyperlink</emph>."
+msgid "<bookmark_value>TRIMMEAN function</bookmark_value> <bookmark_value>means;of data set without margin data</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"hd_id3152966\n"
+"94\n"
+"help.text"
+msgid "TRIMMEAN"
+msgstr "TRIMMEAN"
+
+#: 04060182.xhp
+msgctxt ""
+"04060182.xhp\n"
+"par_id3149716\n"
+"95\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_GESTUTZTMITTEL\">Returns the mean of a data set without the Alpha percent of data at the margins.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN1180A\n"
+"04060182.xhp\n"
+"hd_id3149281\n"
+"96\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN1180E\n"
+"04060182.xhp\n"
+"par_id3154821\n"
+"97\n"
"help.text"
-msgid "HYPERLINK(\"URL\") or HYPERLINK(\"URL\"; \"CellText\")"
-msgstr ""
+msgid "TRIMMEAN(Data; Alpha)"
+msgstr "Shto të dhënat si:"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11811\n"
+"04060182.xhp\n"
+"par_id3155834\n"
+"98\n"
"help.text"
-msgid "<emph>URL</emph> specifies the link target. The optional <emph>CellText</emph> parameter is the text or a number that is displayed in the cell and will be returned as the result. If the <emph>CellText</emph> parameter is not specified, the <emph>URL</emph> is displayed in the cell text and will be returned as the result."
-msgstr ""
+msgid "<emph>Data</emph> is the array of data in the sample."
+msgstr "Grup të dhënash në file"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id0907200912224576\n"
+"04060182.xhp\n"
+"par_id3156304\n"
+"99\n"
"help.text"
-msgid "The number 0 is returned for empty cells and matrix elements."
+msgid "<emph>Alpha</emph> is the percentage of the marginal data that will not be taken into consideration."
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11823\n"
+"04060182.xhp\n"
+"hd_id3151180\n"
+"100\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11827\n"
+"04060182.xhp\n"
+"par_id3156130\n"
+"101\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\")</item> displays the text \"http://www.example.org\" in the cell and executes the hyperlink http://www.example.org when clicked."
+msgid "<item type=\"input\">=TRIMMEAN(A1:A50; 0.1)</item> calculates the mean value of numbers in A1:A50, without taking into consideration the 5 percent of the values representing the highest values and the 5 percent of the values representing the lowest ones. The percentage numbers refer to the amount of the untrimmed mean value, not to the number of summands."
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN1182A\n"
+"04060182.xhp\n"
+"bm_id3153216\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.example.org\";\"Click here\")</item> displays the text \"Click here\" in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr ""
+msgid "<bookmark_value>ZTEST function</bookmark_value>"
+msgstr "Shndërron një vlerë në tekst."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id0907200912224534\n"
+"04060182.xhp\n"
+"hd_id3153216\n"
+"103\n"
"help.text"
-msgid "=HYPERLINK(\"http://www.example.org\";12345) displays the number 12345 and executes the hyperlink http://www.example.org when clicked."
-msgstr ""
+msgid "ZTEST"
+msgstr "ZTEST"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN1182D\n"
+"04060182.xhp\n"
+"par_id3150758\n"
+"104\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK($B4)</item> where cell B4 contains <item type=\"input\">http://www.example.org</item>. The function adds http://www.example.org to the URL of the hyperlink cell and returns the same text which is used as formula result."
+msgid "<ahelp hid=\"HID_FUNC_GTEST\">Calculates the probability of observing a z-statistic greater than the one computed based on a sample.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_idN11830\n"
+"04060182.xhp\n"
+"hd_id3150872\n"
+"105\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"http://www.\";\"Click \") & \"example.org\"</item> displays the text Click example.org in the cell and executes the hyperlink http://www.example.org when clicked."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id8859523\n"
+"04060182.xhp\n"
+"par_id3153274\n"
+"106\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"#Sheet1.A1\";\"Go to top\")</item> displays the text Go to top and jumps to cell Sheet1.A1 in this document."
+msgid "ZTEST(Data; mu; Sigma)"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id2958769\n"
+"04060182.xhp\n"
+"par_id3156109\n"
+"107\n"
"help.text"
-msgid "<item type=\"input\">=HYPERLINK(\"file:///C:/writer.odt#Specification\";\"Go to Writer bookmark\")</item>displays the text Go to Writer bookmark, loads the specified text document and jumps to bookmark \"Specification\"."
+msgid "<emph>Data</emph> is the given sample, drawn from a normally distributed population."
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"bm_id7682424\n"
+"04060182.xhp\n"
+"par_id3149977\n"
+"108\n"
"help.text"
-msgid "<bookmark_value>GETPIVOTDATA function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<emph>mu</emph> is the known mean of the population."
+msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3747062\n"
+"04060182.xhp\n"
+"par_id3154740\n"
+"109\n"
"help.text"
-msgid "GETPIVOTDATA"
+msgid "<emph>Sigma</emph> (optional) is the known standard deviation of the population. If omitted, the standard deviation of the given sample is used."
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3593859\n"
+"04060182.xhp\n"
+"par_id0305200911372999\n"
"help.text"
-msgid "<ahelp hid=\".\">The GETPIVOTDATA function returns a result value from a pivot table. The value is addressed using field and item names, so it remains valid if the layout of the pivot table changes.</ahelp>"
+msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_ZTEST_function\">Wiki page</link>."
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id9741508\n"
+"04060182.xhp\n"
+"bm_id3153623\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<bookmark_value>HARMEAN function</bookmark_value> <bookmark_value>means;harmonic</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id909451\n"
+"04060182.xhp\n"
+"hd_id3153623\n"
+"113\n"
"help.text"
-msgid "Two different syntax definitions can be used:"
-msgstr ""
+msgid "HARMEAN"
+msgstr "HARMEAN"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1665089\n"
+"04060182.xhp\n"
+"par_id3155102\n"
+"114\n"
"help.text"
-msgid "GETPIVOTDATA(TargetField; pivot table; [ Field 1; Item 1; ... ])"
+msgid "<ahelp hid=\"HID_FUNC_HARMITTEL\">Returns the harmonic mean of a data set.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id4997100\n"
+"04060182.xhp\n"
+"hd_id3146900\n"
+"115\n"
"help.text"
-msgid "GETPIVOTDATA(pivot table; Constraints)"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id1672109\n"
+"04060182.xhp\n"
+"par_id3149287\n"
+"116\n"
"help.text"
-msgid "The second syntax is assumed if exactly two parameters are given, of which the first parameter is a cell or cell range reference. The first syntax is assumed in all other cases. The Function Wizard shows the first syntax."
+msgid "HARMEAN(Number1; Number2; ...Number30)"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id9464094\n"
+"04060182.xhp\n"
+"par_id3154303\n"
+"117\n"
"help.text"
-msgid "First Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<emph>Number1,Number2,...Number30</emph> are up to 30 values or ranges, that can be used to calculate the harmonic mean."
+msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id9302346\n"
+"04060182.xhp\n"
+"hd_id3159179\n"
+"118\n"
"help.text"
-msgid "<emph>TargetField</emph> is a string that selects one of the pivot table's data fields. The string can be the name of the source column, or the data field name as shown in the table (like \"Sum - Sales\")."
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id8296151\n"
+"04060182.xhp\n"
+"par_id3146093\n"
+"120\n"
"help.text"
-msgid "<emph>pivot table</emph> is a reference to a cell or cell range that is positioned within a pivot table or contains a pivot table. If the cell range contains several pivot tables, the table that was created last is used."
+msgid "<item type=\"input\">=HARMEAN(23;46;69)</item> = 37.64. The harmonic mean of this random sample is thus 37.64"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id4809411\n"
+"04060182.xhp\n"
+"bm_id3152801\n"
"help.text"
-msgid "If no <emph>Field n / Item n</emph> pairs are given, the grand total is returned. Otherwise, each pair adds a constraint that the result must satisfy. <emph>Field n</emph> is the name of a field from the pivot table. <emph>Item n</emph> is the name of an item from that field."
-msgstr ""
+msgid "<bookmark_value>HYPGEOMDIST function</bookmark_value> <bookmark_value>sampling without replacement</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id6454969\n"
+"04060182.xhp\n"
+"hd_id3152801\n"
+"122\n"
"help.text"
-msgid "If the pivot table contains only a single result value that fulfills all of the constraints, or a subtotal result that summarizes all matching values, that result is returned. If there is no matching result, or several ones without a subtotal for them, an error is returned. These conditions apply to results that are included in the pivot table."
-msgstr ""
+msgid "HYPGEOMDIST"
+msgstr "HYPGEOMDIST"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id79042\n"
+"04060182.xhp\n"
+"par_id3159341\n"
+"123\n"
"help.text"
-msgid "If the source data contains entries that are hidden by settings of the pivot table, they are ignored. The order of the Field/Item pairs is not significant. Field and item names are not case-sensitive."
+msgid "<ahelp hid=\"HID_FUNC_HYPGEOMVERT\">Returns the hypergeometric distribution.</ahelp>"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id7928708\n"
+"04060182.xhp\n"
+"hd_id3154697\n"
+"124\n"
"help.text"
-msgid "If no constraint for a page field is given, the field's selected value is implicitly used. If a constraint for a page field is given, it must match the field's selected value, or an error is returned. Page fields are the fields at the top left of a pivot table, populated using the \"Page Fields\" area of the pivot table layout dialog. From each page field, an item (value) can be selected, which means only that item is included in the calculation."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3864253\n"
+"04060182.xhp\n"
+"par_id3155388\n"
+"125\n"
"help.text"
-msgid "Subtotal values from the pivot table are only used if they use the function \"auto\" (except when specified in the constraint, see <item type=\"literal\">Second Syntax</item> below)."
+msgid "HYPGEOMDIST(X; NSample; Successes; NPopulation)"
msgstr ""
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"hd_id3144016\n"
+"04060182.xhp\n"
+"par_id3154933\n"
+"126\n"
"help.text"
-msgid "Second Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<emph>X</emph> is the number of results achieved in the random sample."
+msgstr "Periudha e pagesës. Numri i përgjithshëm i periudhave në të cilat është paguar anuiteti."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id9937131\n"
+"04060182.xhp\n"
+"par_id3153106\n"
+"127\n"
"help.text"
-msgid "<emph>pivot table</emph> has the same meaning as in the first syntax."
-msgstr ""
+msgid "<emph>NSample</emph> is the size of the random sample."
+msgstr "Vlera që do të transformohet prapa."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id5616626\n"
+"04060182.xhp\n"
+"par_id3146992\n"
+"128\n"
"help.text"
-msgid "<emph>Constraints</emph> is a space-separated list. Entries can be quoted (single quotes). The whole string must be enclosed in quotes (double quotes), unless you reference the string from another cell."
-msgstr ""
+msgid "<emph>Successes</emph> is the number of possible results in the total population."
+msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id4076357\n"
+"04060182.xhp\n"
+"par_id3148826\n"
+"129\n"
"help.text"
-msgid "One of the entries can be the data field name. The data field name can be left out if the pivot table contains only one data field, otherwise it must be present."
-msgstr ""
+msgid "<emph>NPopulation </emph>is the size of the total population."
+msgstr "Kthen SAKTË nëse vlera është një numër."
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id8231757\n"
+"04060182.xhp\n"
+"hd_id3150529\n"
+"130\n"
"help.text"
-msgid "Each of the other entries specifies a constraint in the form <item type=\"literal\">Field[Item]</item> (with literal characters [ and ]), or only <item type=\"literal\">Item</item> if the item name is unique within all fields that are used in the pivot table."
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 04060109.xhp
+#: 04060182.xhp
msgctxt ""
-"04060109.xhp\n"
-"par_id3168736\n"
+"04060182.xhp\n"
+"par_id3154904\n"
+"131\n"
"help.text"
-msgid "A function name can be added in the form <emph>Field[Item;Function]</emph>, which will cause the constraint to match only subtotal values which use that function. The possible function names are Sum, Count, Average, Max, Min, Product, Count (Numbers only), StDev (Sample), StDevP (Population), Var (Sample), and VarP (Population), case-insensitive."
+msgid "<item type=\"input\">=HYPGEOMDIST(2;2;90;100)</item> yields 0.81. If 90 out of 100 pieces of buttered toast fall from the table and hit the floor with the buttered side first, then if 2 pieces of buttered toast are dropped from the table, the probability is 81%, that both will strike buttered side first."
msgstr ""
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
+"04060183.xhp\n"
"tit\n"
"help.text"
-msgid "Error Alert"
-msgstr "Alarm i Gabimit"
+msgid "Statistical Functions Part Three"
+msgstr "Funksionet statistikore"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3153821\n"
+"04060183.xhp\n"
+"hd_id3166425\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12120300.xhp\" name=\"Error Alert\">Error Alert</link>"
+msgid "<variable id=\"kl\"><link href=\"text/scalc/01/04060183.xhp\" name=\"Statistical Functions Part Three\">Statistical Functions Part Three</link></variable>"
msgstr ""
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3153379\n"
-"2\n"
+"04060183.xhp\n"
+"bm_id3149530\n"
"help.text"
-msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_ERROR\">Define the error message that is displayed when invalid data is entered in a cell.</ahelp>"
-msgstr ""
+msgid "<bookmark_value>LARGE function</bookmark_value>"
+msgstr "Kthen vlerën llogjike SAKTË."
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3154138\n"
-"25\n"
+"04060183.xhp\n"
+"hd_id3149530\n"
+"2\n"
"help.text"
-msgid "You can also start a macro with an error message. A sample macro is provided at the end of this page."
-msgstr ""
+msgid "LARGE"
+msgstr "LARGE"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3156280\n"
+"04060183.xhp\n"
+"par_id3150518\n"
"3\n"
"help.text"
-msgid "Show error message when invalid values are entered."
-msgstr "Trego mesazhin e ~gabimit kur futen vlera të pavlefshme"
+msgid "<ahelp hid=\"HID_FUNC_KGROESSTE\">Returns the Rank_c-th largest value in a data set.</ahelp>"
+msgstr ""
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3150768\n"
+"04060183.xhp\n"
+"hd_id3152990\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the error message that you enter in the <emph>Contents</emph> area when invalid data is entered in a cell.</ahelp> If enabled, the message is displayed to prevent an invalid entry."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3146984\n"
+"04060183.xhp\n"
+"par_id3154372\n"
"5\n"
"help.text"
-msgid "In both cases, if you select \"Stop\", the invalid entry is deleted and the previous value is reentered in the cell. The same applies if you close the \"Warning\" and \"Information\" dialogs by clicking the <emph>Cancel </emph>button. If you close the dialogs with the <emph>OK</emph> button, the invalid entry is not deleted."
-msgstr ""
+msgid "LARGE(Data; RankC)"
+msgstr "Shto të dhënat si:"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3152460\n"
+"04060183.xhp\n"
+"par_id3152986\n"
"6\n"
"help.text"
-msgid "Contents"
-msgstr "Përmbajtjet"
+msgid "<emph>Data</emph> is the cell range of data."
+msgstr "Grup të dhënash në file"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3148646\n"
+"04060183.xhp\n"
+"par_id3156448\n"
+"7\n"
+"help.text"
+msgid "<emph>RankC</emph> is the ranking of the value."
+msgstr ""
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id3152889\n"
"8\n"
"help.text"
-msgid "Action"
-msgstr "Veprim"
+msgid "Example"
+msgstr "Shembull"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3151115\n"
+"04060183.xhp\n"
+"par_id3148702\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_ERROR:LB_ACTION\">Select the action that you want to occur when invalid data is entered in a cell.</ahelp> The \"Stop\" action rejects the invalid entry and displays a dialog that you have to close by clicking <emph>OK</emph>. The \"Warning\" and \"Information\" actions display a dialog that can be closed by clicking <emph>OK</emph> or <emph>Cancel</emph>. The invalid entry is only rejected when you click <emph>Cancel</emph>."
+msgid "<item type=\"input\">=LARGE(A1:C50;2)</item> gives the second largest value in A1:C50."
msgstr ""
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3156441\n"
-"10\n"
+"04060183.xhp\n"
+"bm_id3154532\n"
"help.text"
-msgid "Browse"
-msgstr "Shfleto..."
+msgid "<bookmark_value>SMALL function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3153160\n"
+"04060183.xhp\n"
+"hd_id3154532\n"
"11\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:TP_VALIDATION_ERROR:BTN_SEARCH\">Opens the <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog where you can select the macro that is executed when invalid data is entered in a cell. The macro is executed after the error message is displayed.</ahelp>"
-msgstr ""
+msgid "SMALL"
+msgstr "SMALL"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3153876\n"
+"04060183.xhp\n"
+"par_id3157981\n"
"12\n"
"help.text"
-msgid "Title"
-msgstr "Titulli"
+msgid "<ahelp hid=\"HID_FUNC_KKLEINSTE\">Returns the Rank_c-th smallest value in a data set.</ahelp>"
+msgstr ""
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3149410\n"
+"04060183.xhp\n"
+"hd_id3154957\n"
"13\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_ERROR:EDT_TITLE\">Enter the title of the macro or the error message that you want to display when invalid data is entered in a cell.</ahelp>"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"hd_id3154510\n"
+"04060183.xhp\n"
+"par_id3153974\n"
"14\n"
"help.text"
-msgid "Error message"
-msgstr "~Mesazhi i gabimit"
+msgid "SMALL(Data; RankC)"
+msgstr "Shto të dhënat si:"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3149122\n"
+"04060183.xhp\n"
+"par_id3154540\n"
"15\n"
"help.text"
-msgid "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_ERROR:EDT_ERROR\">Enter the message that you want to display when invalid data is entered in a cell.</ahelp>"
-msgstr ""
+msgid "<emph>Data</emph> is the cell range of data."
+msgstr "Grup të dhënash në file"
-#: 12120300.xhp
+#: 04060183.xhp
msgctxt ""
-"12120300.xhp\n"
-"par_id3150752\n"
+"04060183.xhp\n"
+"par_id3155094\n"
"16\n"
"help.text"
-msgid "<emph>Sample macro:</emph>"
-msgstr "Ekzekuto fushën makro"
+msgid "<emph>RankC</emph> is the rank of the value."
+msgstr ""
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"tit\n"
+"04060183.xhp\n"
+"hd_id3153247\n"
+"17\n"
"help.text"
-msgid "Goal Seek"
-msgstr "Kërkim i Qëllimit"
+msgid "Example"
+msgstr "Shembull"
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"hd_id3155629\n"
-"1\n"
+"04060183.xhp\n"
+"par_id3149897\n"
+"18\n"
"help.text"
-msgid "Goal Seek"
-msgstr "Kërkim i Qëllimit"
+msgid "<item type=\"input\">=SMALL(A1:C50;2)</item> gives the second smallest value in A1:C50."
+msgstr ""
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3145119\n"
-"2\n"
+"04060183.xhp\n"
+"bm_id3153559\n"
"help.text"
-msgid "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">Opens a dialog where you can solve an equation with a variable.</ahelp></variable> After a successful search, a dialog with the results opens, allowing you to apply the result and the target value directly to the cell."
-msgstr ""
+msgid "<bookmark_value>CONFIDENCE function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"hd_id3149656\n"
-"3\n"
+"04060183.xhp\n"
+"hd_id3153559\n"
+"20\n"
"help.text"
-msgid "Default"
-msgstr "Standarde"
+msgid "CONFIDENCE"
+msgstr "CONFIDENCE"
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3151211\n"
-"4\n"
+"04060183.xhp\n"
+"par_id3153814\n"
+"21\n"
"help.text"
-msgid "In this section, you can define the variables in your formula."
+msgid "<ahelp hid=\"HID_FUNC_KONFIDENZ\">Returns the (1-alpha) confidence interval for a normal distribution.</ahelp>"
msgstr ""
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"hd_id3150869\n"
-"5\n"
+"04060183.xhp\n"
+"hd_id3149315\n"
+"22\n"
"help.text"
-msgid "Formula cell"
-msgstr "Qelia e formulave"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3153194\n"
-"6\n"
+"04060183.xhp\n"
+"par_id3147501\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_FORMULACELL\">In the formula cell, enter the reference of the cell which contains the formula. It contains the current cell reference.</ahelp> Click another cell in the sheet to apply its reference to the text box."
+msgid "CONFIDENCE(Alpha; StDev; Size)"
msgstr ""
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"hd_id3154685\n"
-"7\n"
+"04060183.xhp\n"
+"par_id3149872\n"
+"24\n"
"help.text"
-msgid "Target value"
-msgstr "Vlera ~cak"
+msgid "<emph>Alpha</emph> is the level of the confidence interval."
+msgstr ""
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3146984\n"
-"8\n"
+"04060183.xhp\n"
+"par_id3145324\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_TARGETVAL\">Specifies the value you want to achieve as a new result.</ahelp>"
-msgstr ""
+msgid "<emph>StDev</emph> is the standard deviation for the total population."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"hd_id3150012\n"
-"9\n"
+"04060183.xhp\n"
+"par_id3153075\n"
+"26\n"
"help.text"
-msgid "Variable cell"
-msgstr "Qeli e ~variablit"
+msgid "<emph>Size</emph> is the size of the total population."
+msgstr "Kthen SAKTË nëse vlera është një numër."
-#: 06040000.xhp
+#: 04060183.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3147427\n"
-"10\n"
+"04060183.xhp\n"
+"hd_id3150435\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SOLVER:ED_VARCELL\">Specifies the reference for the cell that contains the value you want to adjust in order to reach the target.</ahelp>"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3153335\n"
+"28\n"
+"help.text"
+msgid "<item type=\"input\">=CONFIDENCE(0.05;1.5;100)</item> gives 0.29."
msgstr ""
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"tit\n"
+"04060183.xhp\n"
+"bm_id3148746\n"
"help.text"
-msgid "Functions by Category"
-msgstr "Ketegoria dhe Numri"
+msgid "<bookmark_value>CORREL function</bookmark_value><bookmark_value>coefficient of correlation</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"bm_id3148575\n"
+"04060183.xhp\n"
+"hd_id3148746\n"
+"30\n"
"help.text"
-msgid "<bookmark_value>functions;listed by category</bookmark_value> <bookmark_value>categories of functions</bookmark_value> <bookmark_value>list of functions</bookmark_value>"
+msgid "CORREL"
+msgstr "CORREL"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3147299\n"
+"31\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_KORREL\">Returns the correlation coefficient between two data sets.</ahelp>"
msgstr ""
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3154944\n"
-"16\n"
+"04060183.xhp\n"
+"hd_id3156397\n"
+"32\n"
"help.text"
-msgid "Functions by Category"
-msgstr "Ketegoria dhe Numri"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"par_id3149378\n"
-"2\n"
+"04060183.xhp\n"
+"par_id3153023\n"
+"33\n"
"help.text"
-msgid "This section describes the functions of $[officename] Calc. The various functions are divided into categories in the Function Wizard."
+msgid "CORREL(Data1; Data2)"
msgstr ""
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"par_id0120200910234570\n"
+"04060183.xhp\n"
+"par_id3150036\n"
+"34\n"
"help.text"
-msgid "You can find detailed explanations, illustrations, and examples of Calc functions <link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">in the LibreOffice WikiHelp</link>."
-msgstr ""
+msgid "<emph>Data1</emph> is the first data set."
+msgstr "Grup të dhënash në file"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3146972\n"
-"3\n"
+"04060183.xhp\n"
+"par_id3153021\n"
+"35\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060101.xhp\" name=\"Database\">Database</link>"
-msgstr ""
+msgid "<emph>Data2</emph> is the second data set."
+msgstr "Grup të dhënash në file"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3155443\n"
-"4\n"
+"04060183.xhp\n"
+"hd_id3149720\n"
+"36\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"Date & Time\">Date & Time</link>"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3147339\n"
-"5\n"
+"04060183.xhp\n"
+"par_id3149941\n"
+"37\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060103.xhp\" name=\"Financial\">Financial</link>"
+msgid "<item type=\"input\">=CORREL(A1:A50;B1:B50)</item> calculates the correlation coefficient as a measure of the linear correlation of the two data sets."
msgstr ""
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3153963\n"
-"6\n"
+"04060183.xhp\n"
+"bm_id3150652\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060104.xhp\" name=\"Information\">Information</link>"
-msgstr ""
+msgid "<bookmark_value>COVAR function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3146316\n"
-"7\n"
+"04060183.xhp\n"
+"hd_id3150652\n"
+"39\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060105.xhp\" name=\"Logical\">Logical</link>"
-msgstr ""
+msgid "COVAR"
+msgstr "COVAR"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3148485\n"
-"8\n"
+"04060183.xhp\n"
+"par_id3146875\n"
+"40\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"Mathematical\">Mathematical</link>"
+msgid "<ahelp hid=\"HID_FUNC_KOVAR\">Returns the covariance of the product of paired deviations.</ahelp>"
msgstr ""
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3150363\n"
-"9\n"
+"04060183.xhp\n"
+"hd_id3149013\n"
+"41\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060107.xhp\" name=\"Matrix\">Array</link>"
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3150208\n"
-"10\n"
+"04060183.xhp\n"
+"par_id3150740\n"
+"42\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060108.xhp\" name=\"Statistical\">Statistical</link>"
+msgid "COVAR(Data1; Data2)"
msgstr ""
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3166428\n"
-"11\n"
+"04060183.xhp\n"
+"par_id3145827\n"
+"43\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060109.xhp\" name=\"Spreadsheet\">Spreadsheet</link>"
-msgstr ""
+msgid "<emph>Data1</emph> is the first data set."
+msgstr "Grup të dhënash në file"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3145585\n"
-"12\n"
+"04060183.xhp\n"
+"par_id3150465\n"
+"44\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060110.xhp\" name=\"Text\">Text</link>"
-msgstr ""
+msgid "<emph>Data2</emph> is the second data set."
+msgstr "Grup të dhënash në file"
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"hd_id3156449\n"
-"13\n"
+"04060183.xhp\n"
+"hd_id3154677\n"
+"45\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060111.xhp\" name=\"Add-in\">Add-in</link>"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3144748\n"
+"46\n"
+"help.text"
+msgid "<item type=\"input\">=COVAR(A1:A30;B1:B30)</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"bm_id3147472\n"
+"help.text"
+msgid "<bookmark_value>CRITBINOM function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"hd_id3147472\n"
+"48\n"
+"help.text"
+msgid "CRITBINOM"
+msgstr "CRITBINOM"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3149254\n"
+"49\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_KRITBINOM\">Returns the smallest value for which the cumulative binomial distribution is less than or equal to a criterion value.</ahelp>"
msgstr ""
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"par_id3150715\n"
-"14\n"
+"04060183.xhp\n"
+"hd_id3153930\n"
+"50\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060199.xhp\" name=\"Operators\">Operators</link> are also available."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3148586\n"
+"51\n"
+"help.text"
+msgid "CRITBINOM(Trials; SP; Alpha)"
msgstr ""
-#: 04060100.xhp
+#: 04060183.xhp
msgctxt ""
-"04060100.xhp\n"
-"par_id0902200809540918\n"
+"04060183.xhp\n"
+"par_id3145593\n"
+"52\n"
"help.text"
-msgid "<variable id=\"drking\"><link href=\"http://help.libreoffice.org/Calc/Functions_by_Category\">Calc Functions By Category</link> in the LibreOffice WikiHelp</variable>"
+msgid "<emph>Trials</emph> is the total number of trials."
+msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3153084\n"
+"53\n"
+"help.text"
+msgid "<emph>SP</emph> is the probability of success for one trial."
msgstr ""
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"tit\n"
+"04060183.xhp\n"
+"par_id3149726\n"
+"54\n"
"help.text"
-msgid "Filter"
-msgstr "Filtër"
+msgid "<emph>Alpha</emph> is the threshold probability to be reached or exceeded."
+msgstr ""
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3153970\n"
-"1\n"
+"04060183.xhp\n"
+"hd_id3148752\n"
+"55\n"
"help.text"
-msgid "Filter"
-msgstr "Filtër"
+msgid "Example"
+msgstr "Shembull"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3150448\n"
-"2\n"
+"04060183.xhp\n"
+"par_id3148740\n"
+"56\n"
"help.text"
-msgid "Set the filtering options for the data."
+msgid "<item type=\"input\">=CRITBINOM(100;0.5;0.1)</item> yields 44."
msgstr ""
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3151043\n"
-"3\n"
+"04060183.xhp\n"
+"bm_id3155956\n"
"help.text"
-msgid "Filter Criteria"
-msgstr "Kriteret e filtrimit"
+msgid "<bookmark_value>KURT function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3150440\n"
-"4\n"
+"04060183.xhp\n"
+"hd_id3155956\n"
+"58\n"
"help.text"
-msgid "You can define a default filter for the data by filtering, for example, field names, using a combination of logical expressions arguments."
+msgid "KURT"
+msgstr "KURT"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3153108\n"
+"59\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_KURT\">Returns the kurtosis of a data set (at least 4 values required).</ahelp>"
msgstr ""
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3159153\n"
-"5\n"
+"04060183.xhp\n"
+"hd_id3150334\n"
+"60\n"
"help.text"
-msgid "Operator"
-msgstr "Operator"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3153093\n"
-"6\n"
+"04060183.xhp\n"
+"par_id3154508\n"
+"61\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_OP2\" visibility=\"visible\">Select a logical operator for the filter.</ahelp>"
+msgid "KURT(Number1; Number2; ...Number30)"
msgstr ""
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3152462\n"
-"7\n"
+"04060183.xhp\n"
+"par_id3145167\n"
+"62\n"
"help.text"
-msgid "Field name"
-msgstr "Emri i fushës"
+msgid "<emph>Number1,Number2,...Number30</emph> are numeric arguments or ranges representing a random sample of distribution."
+msgstr ""
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3155306\n"
-"8\n"
+"04060183.xhp\n"
+"hd_id3158000\n"
+"63\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_FIELD3\" visibility=\"visible\">Select the field that you want to use in the filter. If field names are not available, the column labels are listed.</ahelp>"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3150016\n"
+"64\n"
+"help.text"
+msgid "<item type=\"input\">=KURT(A1;A2;A3;A4;A5;A6)</item>"
msgstr ""
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3148575\n"
-"9\n"
+"04060183.xhp\n"
+"bm_id3150928\n"
"help.text"
-msgid "Condition"
-msgstr "Kushti"
+msgid "<bookmark_value>LOGINV function</bookmark_value><bookmark_value>inverse of lognormal distribution</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3147394\n"
-"10\n"
+"04060183.xhp\n"
+"hd_id3150928\n"
+"66\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_COND3\">Select an operator to compare the <emph>Field name</emph> and <emph>Value</emph> entries.</ahelp>"
+msgid "LOGINV"
+msgstr "LOGINV"
+
+#: 04060183.xhp
+msgctxt ""
+"04060183.xhp\n"
+"par_id3145297\n"
+"67\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_LOGINV\">Returns the inverse of the lognormal distribution.</ahelp>"
msgstr ""
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3144764\n"
-"11\n"
+"04060183.xhp\n"
+"hd_id3151016\n"
+"68\n"
"help.text"
-msgid "The following operators are available:"
-msgstr "Shërbimi në vijues nuk është në dispozicion:"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3153415\n"
-"12\n"
+"04060183.xhp\n"
+"par_id3153049\n"
+"69\n"
"help.text"
-msgid "<emph>Conditions:</emph>"
-msgstr "Duke vlerësuar kushtet e lansimit"
+msgid "LOGINV(Number; Mean; StDev)"
+msgstr ""
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3150324\n"
-"13\n"
+"04060183.xhp\n"
+"par_id3148390\n"
+"70\n"
"help.text"
-msgid "="
-msgstr "="
+msgid "<emph>Number</emph> is the probability value for which the inverse standard logarithmic distribution is to be calculated."
+msgstr "Vlera e gjasës për të cilën do të llogaritet shprëndarja inverse standarde normale."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3153714\n"
-"14\n"
+"04060183.xhp\n"
+"par_id3149538\n"
+"71\n"
"help.text"
-msgid "equal"
-msgstr "barabartë"
+msgid "<emph>Mean</emph> is the arithmetic mean of the standard logarithmic distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3154254\n"
-"15\n"
+"04060183.xhp\n"
+"par_id3145355\n"
+"72\n"
"help.text"
-msgid "<"
-msgstr "<"
+msgid "<emph>StDev</emph> is the standard deviation of the standard logarithmic distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3154703\n"
-"16\n"
+"04060183.xhp\n"
+"hd_id3148768\n"
+"73\n"
"help.text"
-msgid "less than"
-msgstr "më pak se"
+msgid "Example"
+msgstr "Shembull"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3155335\n"
-"17\n"
+"04060183.xhp\n"
+"par_id3155623\n"
+"74\n"
"help.text"
-msgid ">"
-msgstr ">"
+msgid "<item type=\"input\">=LOGINV(0.05;0;1)</item> returns 0.19."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3147003\n"
-"18\n"
+"04060183.xhp\n"
+"bm_id3158417\n"
"help.text"
-msgid "greater than"
-msgstr "më e madhe se"
+msgid "<bookmark_value>LOGNORMDIST function</bookmark_value><bookmark_value>cumulative lognormal distribution</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3153270\n"
-"19\n"
+"04060183.xhp\n"
+"hd_id3158417\n"
+"76\n"
"help.text"
-msgid "<="
-msgstr "<="
+msgid "LOGNORMDIST"
+msgstr "LOGNORMDIST"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3145257\n"
-"20\n"
+"04060183.xhp\n"
+"par_id3154953\n"
+"77\n"
"help.text"
-msgid "less than or equal to"
-msgstr "më pak se ose barazi me"
+msgid "<ahelp hid=\"HID_FUNC_LOGNORMVERT\">Returns the cumulative lognormal distribution.</ahelp>"
+msgstr ""
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3145134\n"
-"21\n"
+"04060183.xhp\n"
+"hd_id3150474\n"
+"78\n"
"help.text"
-msgid ">="
-msgstr ">="
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3151214\n"
-"22\n"
+"04060183.xhp\n"
+"par_id3150686\n"
+"79\n"
"help.text"
-msgid "greater than or equal to"
-msgstr "më e madhe se ose baraz me"
+msgid "LOGNORMDIST(Number; Mean; StDev; Cumulative)"
+msgstr ""
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3150345\n"
-"23\n"
+"04060183.xhp\n"
+"par_id3154871\n"
+"80\n"
"help.text"
-msgid "<>"
-msgstr "<>"
+msgid "<emph>Number</emph> is the probability value for which the standard logarithmic distribution is to be calculated."
+msgstr "Vlera e gjasës për të cilën do të llogaritet shprëndarja inverse standarde normale."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3159101\n"
-"24\n"
+"04060183.xhp\n"
+"par_id3155820\n"
+"81\n"
"help.text"
-msgid "not equal to"
-msgstr "jo e barabartë me"
+msgid "<emph>Mean</emph> (optional) is the mean value of the standard logarithmic distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3150886\n"
-"25\n"
+"04060183.xhp\n"
+"par_id3155991\n"
+"82\n"
"help.text"
-msgid "Value"
-msgstr "Vlerë"
+msgid "<emph>StDev</emph> (optional) is the standard deviation of the standard logarithmic distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"par_id3155506\n"
-"26\n"
+"04060183.xhp\n"
+"par_id3155992\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_PIVOTFILTER:ED_VAL3\" visibility=\"visible\">Select the value that you want to compare to the selected field.</ahelp>"
-msgstr ""
+msgid "<emph>Cumulative</emph> (optional) = 0 calculates the density function, Cumulative = 1 calculates the distribution."
+msgstr "Grumbulluar. C=0 llogarit funksionin e dendësisë, C=1 shprëndarjen."
-#: 12090103.xhp
+#: 04060183.xhp
msgctxt ""
-"12090103.xhp\n"
-"hd_id3146980\n"
-"27\n"
+"04060183.xhp\n"
+"hd_id3153178\n"
+"83\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"More>>\">More>></link>"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 04060111.xhp
+#: 04060183.xhp
msgctxt ""
-"04060111.xhp\n"
+"04060183.xhp\n"
+"par_id3149778\n"
+"84\n"
+"help.text"
+msgid "<item type=\"input\">=LOGNORMDIST(0.1;0;1)</item> returns 0.01."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
"tit\n"
"help.text"
-msgid "Add-in Functions"
-msgstr "Gabim: Nuk është gjetur Add-in"
+msgid "Statistical Functions Part Four"
+msgstr "Funksionet statistikore"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3150870\n"
+"04060184.xhp\n"
+"hd_id3153415\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>add-ins; functions</bookmark_value><bookmark_value>functions; add-in functions</bookmark_value><bookmark_value>Function Wizard; add-ins</bookmark_value>"
+msgid "<variable id=\"mq\"><link href=\"text/scalc/01/04060184.xhp\" name=\"Statistical Functions Part Four\">Statistical Functions Part Four</link></variable>"
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3150870\n"
-"1\n"
+"04060184.xhp\n"
+"bm_id3154511\n"
"help.text"
-msgid "Add-in Functions"
-msgstr "Gabim: Nuk është gjetur Add-in"
+msgid "<bookmark_value>MAX function</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3147427\n"
+"04060184.xhp\n"
+"hd_id3154511\n"
"2\n"
"help.text"
-msgid "<variable id=\"addintext\">The following describes and lists some of the available add-in functions. </variable>"
+msgid "MAX"
+msgstr "MAX"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153709\n"
+"3\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MAX\">Returns the maximum value in a list of arguments.</ahelp>"
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3163713\n"
-"75\n"
+"04060184.xhp\n"
+"par_id9282509\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060112.xhp#addinconcept\">Add-in concept</link>"
+msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3146120\n"
+"04060184.xhp\n"
+"hd_id3154256\n"
+"4\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147340\n"
"5\n"
"help.text"
-msgid "You will also find a <link href=\"text/scalc/01/04060112.xhp\">description of the $[officename] Calc add-in interface</link> in the Help. In addition, important functions and their parameters are described in the Help for the <switchinline select=\"sys\"><caseinline select=\"UNIX\">Shared Library </caseinline><defaultinline>$[officename] Calc add-in DLL</defaultinline></switchinline>."
+msgid "MAX(Number1; Number2; ...Number30)"
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3151075\n"
+"04060184.xhp\n"
+"par_id3149568\n"
+"6\n"
+"help.text"
+msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
+msgstr ""
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153963\n"
"7\n"
"help.text"
-msgid "Add-ins supplied"
-msgstr "Shtesat ç'kyqur"
+msgid "Example"
+msgstr "Shembull"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3156285\n"
+"04060184.xhp\n"
+"par_id3147343\n"
"8\n"
"help.text"
-msgid "$[officename] contains examples for the add-in interface of $[officename] Calc."
+msgid "<item type=\"input\">=MAX(A1;A2;A3;50;100;200)</item> returns the largest value from the list."
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3159267\n"
-"76\n"
+"04060184.xhp\n"
+"par_id3148485\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060115.xhp\">Analysis Functions Part One</link>"
+msgid "<item type=\"input\">=MAX(A1:B100)</item> returns the largest value from the list."
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3154703\n"
-"77\n"
+"04060184.xhp\n"
+"bm_id3166426\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060116.xhp\">Analysis Functions Part Two</link>"
+msgid "<bookmark_value>MAXA function</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3166426\n"
+"139\n"
+"help.text"
+msgid "MAXA"
+msgstr "MAXA"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150363\n"
+"140\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MAXA\">Returns the maximum value in a list of arguments. In opposite to MAX, here you can enter text. The value of the text is 0.</ahelp>"
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3149566\n"
+"04060184.xhp\n"
+"par_id7689443\n"
"help.text"
-msgid "<bookmark_value>ISLEAPYEAR function</bookmark_value><bookmark_value>leap year determination</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
+msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3149566\n"
-"14\n"
+"04060184.xhp\n"
+"hd_id3150516\n"
+"141\n"
"help.text"
-msgid "ISLEAPYEAR"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3166431\n"
+"142\n"
+"help.text"
+msgid "MAXA(Value1; Value2; ... Value30)"
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3150297\n"
-"15\n"
+"04060184.xhp\n"
+"par_id3150202\n"
+"143\n"
"help.text"
-msgid "<ahelp hid=\".\">Determines whether a year is a leap year.</ahelp> If yes, the function will return the value 1 (TRUE); if not, it will return 0 (FALSE)."
+msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3148487\n"
-"16\n"
+"04060184.xhp\n"
+"hd_id3156290\n"
+"144\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3156446\n"
+"145\n"
+"help.text"
+msgid "<item type=\"input\">=MAXA(A1;A2;A3;50;100;200;\"Text\")</item> returns the largest value from the list."
+msgstr ""
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149404\n"
+"146\n"
+"help.text"
+msgid "<item type=\"input\">=MAXA(A1:B100)</item> returns the largest value from the list."
+msgstr ""
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3153820\n"
+"help.text"
+msgid "<bookmark_value>MEDIAN function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153820\n"
+"11\n"
+"help.text"
+msgid "MEDIAN"
+msgstr "MEDIAN"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3151241\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MEDIAN\">Returns the median of a set of numbers. In a set containing an uneven number of values, the median will be the number in the middle of the set and in a set containing an even number of values, it will be the mean of the two values in the middle of the set.</ahelp>"
+msgstr ""
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3148871\n"
+"13\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3150205\n"
-"17\n"
+"04060184.xhp\n"
+"par_id3155264\n"
+"14\n"
"help.text"
-msgid "ISLEAPYEAR(\"Date\")"
-msgstr "Data (caktuar)"
+msgid "MEDIAN(Number1; Number2; ...Number30)"
+msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3159239\n"
-"18\n"
+"04060184.xhp\n"
+"par_id3150109\n"
+"15\n"
"help.text"
-msgid "<emph>Date</emph> specifies whether a given date falls within a leap year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgid "<emph>Number1; Number2;...Number30</emph> are values or ranges, which represent a sample. Each number can also be replaced by a reference."
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3149817\n"
-"19\n"
+"04060184.xhp\n"
+"hd_id3144506\n"
+"16\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3150786\n"
-"20\n"
+"04060184.xhp\n"
+"par_id3145078\n"
+"17\n"
"help.text"
-msgid "=ISLEAPYEAR(A1) returns 1, if A1 contains 1968-02-29, the valid date 29th of February 1968 in your locale setting."
+msgid "for an odd number: <item type=\"input\">=MEDIAN(1;5;9;20;21)</item> returns 9 as the median value."
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_idN107E7\n"
+"04060184.xhp\n"
+"par_id3149126\n"
+"165\n"
"help.text"
-msgid "You may also use =ISLEAPYEAR(\"1968-02-29\") or =ISLEAPYEAR(\"2/29/68\")."
+msgid "for an even number: <item type=\"input\">=MEDIAN(1;5;9;20)</item> returns the average of the two middle values 5 and 9, thus 7."
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_idN107EA\n"
+"04060184.xhp\n"
+"bm_id3154541\n"
"help.text"
-msgid "Never use =ISLEAPYEAR(2/29/68), because this would first evaluate 2 divided by 29 divided by 68, and then calculate the ISLEAPYEAR function from this small number as a serial date number."
+msgid "<bookmark_value>MIN function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3154541\n"
+"19\n"
+"help.text"
+msgid "MIN"
+msgstr "MIN"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3143222\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MIN\">Returns the minimum value in a list of arguments.</ahelp>"
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3154656\n"
+"04060184.xhp\n"
+"par_id2301400\n"
"help.text"
-msgid "<bookmark_value>YEARS function</bookmark_value><bookmark_value>number of years between two dates</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
+msgid "Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN(\"string\"), still results in an error."
+msgstr ""
-#: 04060111.xhp
-#, fuzzy
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3154656\n"
+"04060184.xhp\n"
+"hd_id3154651\n"
"21\n"
"help.text"
-msgid "YEARS"
-msgstr "VITI"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3150886\n"
+"04060184.xhp\n"
+"par_id3146964\n"
"22\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFYEARS\">Calculates the difference in years between two dates.</ahelp>"
+msgid "MIN(Number1; Number2; ...Number30)"
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3154370\n"
+"04060184.xhp\n"
+"par_id3153486\n"
"23\n"
"help.text"
+msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
+msgstr ""
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3155523\n"
+"24\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3154734\n"
+"25\n"
+"help.text"
+msgid "<item type=\"input\">=MIN(A1:B100)</item> returns the smallest value in the list."
+msgstr ""
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3147504\n"
+"help.text"
+msgid "<bookmark_value>MINA function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3147504\n"
+"148\n"
+"help.text"
+msgid "MINA"
+msgstr "MINA"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147249\n"
+"149\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MINA\">Returns the minimum value in a list of arguments. Here you can also enter text. The value of the text is 0.</ahelp>"
+msgstr ""
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id4294564\n"
+"help.text"
+msgid "The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered."
+msgstr ""
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3150435\n"
+"150\n"
+"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3146114\n"
-"24\n"
+"04060184.xhp\n"
+"par_id3153336\n"
+"151\n"
"help.text"
-msgid "YEARS(StartDate; EndDate; Type)"
+msgid "MINA(Value1; Value2; ... Value30)"
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3145387\n"
-"25\n"
+"04060184.xhp\n"
+"par_id3146098\n"
+"152\n"
"help.text"
-msgid "<emph>StartDate</emph> is the first date"
-msgstr "Data kur pwrfundon periudha e parw"
+msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3156290\n"
-"26\n"
+"04060184.xhp\n"
+"hd_id3148743\n"
+"153\n"
"help.text"
-msgid "<emph>EndDate</emph> is the second date"
-msgstr "Grup të dhënash në file"
+msgid "Example"
+msgstr "Shembull"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3152893\n"
-"27\n"
+"04060184.xhp\n"
+"par_id3147401\n"
+"154\n"
"help.text"
-msgid "<emph>Type</emph> calculates the type of difference. Possible values are 0 (interval) and 1 (in calendar years)."
+msgid "<item type=\"input\">=MINA(1;\"Text\";20)</item> returns 0."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147295\n"
+"155\n"
+"help.text"
+msgid "<item type=\"input\">=MINA(A1:B100)</item> returns the smallest value in the list."
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3152898\n"
+"04060184.xhp\n"
+"bm_id3166465\n"
"help.text"
-msgid "<bookmark_value>MONTHS function</bookmark_value><bookmark_value>number of months between two dates</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
+msgid "<bookmark_value>AVEDEV function</bookmark_value><bookmark_value>averages;statistical functions</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060111.xhp
-#, fuzzy
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3152898\n"
-"28\n"
+"04060184.xhp\n"
+"hd_id3166465\n"
+"27\n"
"help.text"
-msgid "MONTHS"
-msgstr "Muaj"
+msgid "AVEDEV"
+msgstr "AVEDEV"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3153066\n"
-"29\n"
+"04060184.xhp\n"
+"par_id3150373\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFMONTHS\">Calculates the difference in months between two dates.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_MITTELABW\">Returns the average of the absolute deviations of data points from their mean.</ahelp> Displays the diffusion in a data set."
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3151240\n"
-"30\n"
+"04060184.xhp\n"
+"hd_id3150038\n"
+"29\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3146869\n"
-"31\n"
+"04060184.xhp\n"
+"par_id3145636\n"
+"30\n"
"help.text"
-msgid "MONTHS(StartDate; EndDate; Type)"
+msgid "AVEDEV(Number1; Number2; ...Number30)"
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3145075\n"
-"32\n"
+"04060184.xhp\n"
+"par_id3157871\n"
+"31\n"
"help.text"
-msgid "<emph>StartDate</emph> is the first date"
-msgstr "Data kur pwrfundon periudha e parw"
+msgid "<emph>Number1, Number2,...Number30</emph> are values or ranges that represent a sample. Each number can also be replaced by a reference."
+msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3157981\n"
-"33\n"
+"04060184.xhp\n"
+"hd_id3149725\n"
+"32\n"
"help.text"
-msgid "<emph>EndDate</emph> is the second date"
-msgstr "Grup të dhënash në file"
+msgid "Example"
+msgstr "Shembull"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3150111\n"
-"34\n"
+"04060184.xhp\n"
+"par_id3153122\n"
+"33\n"
"help.text"
-msgid "<emph>Type</emph> calculates the type of difference. Possible values include 0 (interval) and 1 (in calendar months)."
-msgstr ""
+msgid "<item type=\"input\">=AVEDEV(A1:A50)</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3159094\n"
+"04060184.xhp\n"
+"bm_id3145824\n"
"help.text"
-msgid "<bookmark_value>ROT13 function</bookmark_value><bookmark_value>encrypting text</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>AVERAGE function</bookmark_value>"
+msgstr "Kthen vlerën llogjike SAKTË."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3159094\n"
+"04060184.xhp\n"
+"hd_id3145824\n"
"35\n"
"help.text"
-msgid "ROT13"
-msgstr ""
+msgid "AVERAGE"
+msgstr "MESATARE"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3146781\n"
+"04060184.xhp\n"
+"par_id3150482\n"
"36\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_ROT13\">Encrypts a character string by moving the characters 13 positions in the alphabet.</ahelp> After the letter Z, the alphabet begins again (Rotation). By applying the encryption function again to the resulting code, you can decrypt the text."
+msgid "<ahelp hid=\"HID_FUNC_MITTELWERT\">Returns the average of the arguments.</ahelp>"
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3150893\n"
+"04060184.xhp\n"
+"hd_id3146943\n"
"37\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3159205\n"
+"04060184.xhp\n"
+"par_id3154679\n"
"38\n"
"help.text"
-msgid "ROT13(Text)"
-msgstr "Vizato tekstin"
+msgid "AVERAGE(Number1; Number2; ...Number30)"
+msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3153249\n"
+"04060184.xhp\n"
+"par_id3150741\n"
"39\n"
"help.text"
-msgid "<emph>Text</emph> is the character string to be encrypted. ROT13(ROT13(Text)) decrypts the code."
+msgid "<emph>Number1; Number2;...Number 0</emph> are numerical values or ranges."
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3151300\n"
+"04060184.xhp\n"
+"hd_id3153039\n"
+"40\n"
"help.text"
-msgid "<bookmark_value>DAYSINYEAR function</bookmark_value><bookmark_value>number of days; in a specific year</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
+msgid "Example"
+msgstr "Shembull"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3151300\n"
-"43\n"
+"04060184.xhp\n"
+"par_id3151232\n"
+"41\n"
"help.text"
-msgid "DAYSINYEAR"
+msgid "<item type=\"input\">=AVERAGE(A1:A50)</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3148754\n"
+"help.text"
+msgid "<bookmark_value>AVERAGEA function</bookmark_value>"
+msgstr "Kthen vlerën llogjike SAKTË."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3148754\n"
+"157\n"
+"help.text"
+msgid "AVERAGEA"
+msgstr "MESATAREA"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3145138\n"
+"158\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_MITTELWERTA\">Returns the average of the arguments. The value of a text is 0.</ahelp>"
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3143220\n"
+"04060184.xhp\n"
+"hd_id3153326\n"
+"159\n"
+"help.text"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149734\n"
+"160\n"
+"help.text"
+msgid "AVERAGEA(Value1; Value2; ... Value30)"
+msgstr ""
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3155260\n"
+"161\n"
+"help.text"
+msgid "<emph>Value1; Value2;...Value30</emph> are values or ranges. Text has the value of 0."
+msgstr ""
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3149504\n"
+"162\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150864\n"
+"163\n"
+"help.text"
+msgid "<item type=\"input\">=AVERAGEA(A1:A50)</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3153933\n"
+"help.text"
+msgid "<bookmark_value>MODE function</bookmark_value><bookmark_value>most common value</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153933\n"
+"43\n"
+"help.text"
+msgid "MODE"
+msgstr "MODE"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153085\n"
"44\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINYEAR\">Calculates the number of days of the year in which the date entered occurs.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_MODALWERT\">Returns the most common value in a data set.</ahelp> If there are several values with the same frequency, it returns the smallest value. An error occurs when a value doesn't appear twice."
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3145358\n"
+"04060184.xhp\n"
+"hd_id3153003\n"
"45\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3154651\n"
+"04060184.xhp\n"
+"par_id3155950\n"
"46\n"
"help.text"
-msgid "DAYSINYEAR(Date)"
-msgstr "Data (caktuar)"
+msgid "MODE(Number1; Number2; ...Number30)"
+msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3153803\n"
+"04060184.xhp\n"
+"par_id3150337\n"
"47\n"
"help.text"
-msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
+msgid "<emph>Number1; Number2;...Number30</emph> are numerical values or ranges."
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3153487\n"
+"04060184.xhp\n"
+"hd_id3153571\n"
"48\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3153811\n"
+"04060184.xhp\n"
+"par_id3153733\n"
"49\n"
"help.text"
-msgid "=DAYSINYEAR(A1) returns 366 days if A1 contains 1968-02-29, a valid date for the year 1968."
-msgstr ""
+msgid "<item type=\"input\">=MODE(A1:A50)</item>"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3154737\n"
+"04060184.xhp\n"
+"bm_id3149879\n"
"help.text"
-msgid "<bookmark_value>DAYSINMONTH function</bookmark_value><bookmark_value>number of days;in a specific month of a year</bookmark_value>"
+msgid "<bookmark_value>NEGBINOMDIST function</bookmark_value><bookmark_value>negative binomial distribution</bookmark_value>"
msgstr "Llogarit vlerën e një numri Romak."
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"hd_id3154737\n"
-"50\n"
-"help.text"
-msgid "DAYSINMONTH"
-msgstr ""
-
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3149316\n"
+"04060184.xhp\n"
+"hd_id3149879\n"
"51\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DAYSINMONTH\">Calculates the number of days of the month in which the date entered occurs.</ahelp>"
-msgstr ""
+msgid "NEGBINOMDIST"
+msgstr "NEGBINOMDIST"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3145114\n"
+"04060184.xhp\n"
+"par_id3155437\n"
"52\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<ahelp hid=\"HID_FUNC_NEGBINOMVERT\">Returns the negative binomial distribution.</ahelp>"
+msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3150955\n"
+"04060184.xhp\n"
+"hd_id3145351\n"
"53\n"
"help.text"
-msgid "DAYSINMONTH(Date)"
-msgstr "Data (caktuar)"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3147501\n"
+"04060184.xhp\n"
+"par_id3150935\n"
"54\n"
"help.text"
-msgid "<emph>Date</emph> is any date in the respective month of the desired year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
-msgstr ""
+msgid "NEGBINOMDIST(X; R; SP)"
+msgstr "Tabelë kalkuluese"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3149871\n"
+"04060184.xhp\n"
+"par_id3153044\n"
"55\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<emph>X</emph> represents the value returned for unsuccessful tests."
+msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3155742\n"
+"04060184.xhp\n"
+"par_id3151018\n"
"56\n"
"help.text"
-msgid "=DAYSINMONTH(A1) returns 29 days if A1 contains 1968-02-17, a valid date for February 1968."
+msgid "<emph>R</emph> represents the value returned for successful tests."
msgstr ""
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"bm_id3149048\n"
-"help.text"
-msgid "<bookmark_value>WEEKS function</bookmark_value><bookmark_value>number of weeks;between two dates</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
-
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3149048\n"
+"04060184.xhp\n"
+"par_id3148878\n"
"57\n"
"help.text"
-msgid "WEEKS"
+msgid "<emph>SP</emph> is the probability of the success of an attempt."
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3153340\n"
+"04060184.xhp\n"
+"hd_id3149539\n"
"58\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_DIFFWEEKS\">Calculates the difference in weeks between two dates.</ahelp>"
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3150393\n"
+"04060184.xhp\n"
+"par_id3148770\n"
"59\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<item type=\"input\">=NEGBINOMDIST(1;1;0.5)</item> returns 0.25."
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3147402\n"
-"60\n"
+"04060184.xhp\n"
+"bm_id3155516\n"
"help.text"
-msgid "WEEKS(StartDate; EndDate; Type)"
-msgstr ""
+msgid "<bookmark_value>NORMINV function</bookmark_value><bookmark_value>normal distribution;inverse of</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3151387\n"
+"04060184.xhp\n"
+"hd_id3155516\n"
"61\n"
"help.text"
-msgid "<emph>StartDate</emph> is the first date"
-msgstr "Data kur pwrfundon periudha e parw"
+msgid "NORMINV"
+msgstr "NORMINV"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3146324\n"
+"04060184.xhp\n"
+"par_id3154634\n"
"62\n"
"help.text"
-msgid "<emph>EndDate</emph> is the second date"
-msgstr "Grup të dhënash në file"
-
-#: 04060111.xhp
-msgctxt ""
-"04060111.xhp\n"
-"par_id3166467\n"
-"63\n"
-"help.text"
-msgid "<emph>Type</emph> calculates the type of difference. The possible values are 0 (interval) and 1 (in numbers of weeks)."
+msgid "<ahelp hid=\"HID_FUNC_NORMINV\">Returns the inverse of the normal cumulative distribution.</ahelp>"
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"bm_id3145237\n"
+"04060184.xhp\n"
+"hd_id3153227\n"
+"63\n"
"help.text"
-msgid "<bookmark_value>WEEKSINYEAR function</bookmark_value><bookmark_value>number of weeks;in a specific year</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3145237\n"
+"04060184.xhp\n"
+"par_id3147534\n"
"64\n"
"help.text"
-msgid "WEEKSINYEAR"
+msgid "NORMINV(Number; Mean; StDev)"
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3147410\n"
+"04060184.xhp\n"
+"par_id3154950\n"
"65\n"
"help.text"
-msgid "<ahelp hid=\"HID_DAI_FUNC_WEEKSINYEAR\">Calculates the number of weeks of the year in which the date entered occurs.</ahelp> The number of weeks is defined as follows: a week that spans two years is added to the year in which most days of that week occur."
+msgid "<emph>Number</emph> represents the probability value used to determine the inverse normal distribution."
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3149719\n"
+"04060184.xhp\n"
+"par_id3150690\n"
"66\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<emph>Mean</emph> represents the mean value in the normal distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3145638\n"
+"04060184.xhp\n"
+"par_id3148594\n"
"67\n"
"help.text"
-msgid "WEEKSINYEAR(Date)"
-msgstr "Data (caktuar)"
+msgid "<emph>StDev</emph> represents the standard deviation of the normal distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3149946\n"
+"04060184.xhp\n"
+"hd_id3155822\n"
"68\n"
"help.text"
-msgid "<emph>Date</emph> is any date in the respective year. The Date parameter must be a valid date according to the locale settings of %PRODUCTNAME."
-msgstr ""
+msgid "Example"
+msgstr "Shembull"
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3150037\n"
+"04060184.xhp\n"
+"par_id3153921\n"
"69\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<item type=\"input\">=NORMINV(0.9;63;5)</item> returns 69.41. If the average egg weighs 63 grams with a standard deviation of 5, then there will be 90% probability that the egg will not be heavier than 69.41g grams."
+msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3147614\n"
-"70\n"
+"04060184.xhp\n"
+"bm_id3153722\n"
"help.text"
-msgid "WEEKSINYEAR(A1) returns 53 if A1 contains 1970-02-17, a valid date for the year 1970."
-msgstr ""
+msgid "<bookmark_value>NORMDIST function</bookmark_value><bookmark_value>density function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"hd_id3157901\n"
+"04060184.xhp\n"
+"hd_id3153722\n"
+"71\n"
+"help.text"
+msgid "NORMDIST"
+msgstr "NORMDIST"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150386\n"
"72\n"
"help.text"
-msgid "Add-ins through %PRODUCTNAME API"
+msgid "<ahelp hid=\"HID_FUNC_NORMVERT\">Returns the density function or the normal cumulative distribution.</ahelp>"
msgstr ""
-#: 04060111.xhp
+#: 04060184.xhp
msgctxt ""
-"04060111.xhp\n"
-"par_id3149351\n"
+"04060184.xhp\n"
+"hd_id3083282\n"
"73\n"
"help.text"
-msgid "Add-ins can also be implemented through the %PRODUCTNAME <link href=\"http://api.libreoffice.org/\">API</link>."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12080600.xhp
+#: 04060184.xhp
msgctxt ""
-"12080600.xhp\n"
-"tit\n"
+"04060184.xhp\n"
+"par_id3150613\n"
+"74\n"
"help.text"
-msgid "Remove"
-msgstr "Largo"
+msgid "NORMDIST(Number; Mean; StDev; C)"
+msgstr ""
-#: 12080600.xhp
+#: 04060184.xhp
msgctxt ""
-"12080600.xhp\n"
-"hd_id3148947\n"
-"1\n"
+"04060184.xhp\n"
+"par_id3149820\n"
+"75\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\">Remove</link>"
+msgid "<emph>Number</emph> is the value of the distribution based on which the normal distribution is to be calculated."
msgstr ""
-#: 12080600.xhp
+#: 04060184.xhp
msgctxt ""
-"12080600.xhp\n"
-"par_id3149656\n"
-"2\n"
+"04060184.xhp\n"
+"par_id3146063\n"
+"76\n"
"help.text"
-msgid "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Removes the outline from the selected cell range.</ahelp>"
-msgstr ""
+msgid "<emph>Mean</emph> is the mean value of the distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 12090000.xhp
+#: 04060184.xhp
msgctxt ""
-"12090000.xhp\n"
-"tit\n"
+"04060184.xhp\n"
+"par_id3156295\n"
+"77\n"
"help.text"
-msgid "Pivot Table"
-msgstr ""
+msgid "<emph>StDev</emph> is the standard deviation of the distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 12090000.xhp
+#: 04060184.xhp
msgctxt ""
-"12090000.xhp\n"
-"hd_id3150275\n"
-"1\n"
+"04060184.xhp\n"
+"par_id3145080\n"
+"78\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090000.xhp\" name=\"Pivot Table\">Pivot Table</link>"
+msgid "<emph>C</emph> is optional. <emph>C</emph> = 0 calculates the density function, <emph>C</emph> = 1 calculates the distribution."
+msgstr "Grumbulluar. C=0 llogarit funksionin e dendësisë, C=1 shprëndarjen."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3152972\n"
+"79\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149283\n"
+"80\n"
+"help.text"
+msgid "<item type=\"input\">=NORMDIST(70;63;5;0)</item> returns 0.03."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3149448\n"
+"81\n"
+"help.text"
+msgid "<item type=\"input\">=NORMDIST(70;63;5;1)</item> returns 0.92."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3152934\n"
+"help.text"
+msgid "<bookmark_value>PEARSON function</bookmark_value>"
+msgstr "Mjeti. Vlera e mjetit të shprëndarjes Poisson."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3152934\n"
+"83\n"
+"help.text"
+msgid "PEARSON"
+msgstr "PEARSON"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153216\n"
+"84\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_PEARSON\">Returns the Pearson product moment correlation coefficient r.</ahelp>"
msgstr ""
-#: 12090000.xhp
+#: 04060184.xhp
msgctxt ""
-"12090000.xhp\n"
-"par_id3153562\n"
-"2\n"
+"04060184.xhp\n"
+"hd_id3147081\n"
+"85\n"
"help.text"
-msgid "A pivot table provides a summary of large amounts of data. You can then rearrange the pivot table to view different summaries of the data."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3156133\n"
+"86\n"
+"help.text"
+msgid "PEARSON(Data1; Data2)"
msgstr ""
-#: 12090000.xhp
+#: 04060184.xhp
msgctxt ""
-"12090000.xhp\n"
-"hd_id3155923\n"
-"3\n"
+"04060184.xhp\n"
+"par_id3151272\n"
+"87\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090100.xhp\" name=\"Create\">Create</link>"
+msgid "<emph>Data1</emph> represents the array of the first data set."
+msgstr "Grup të dhënash në file"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153279\n"
+"88\n"
+"help.text"
+msgid "<emph>Data2</emph> represents the array of the second data set."
+msgstr "Grup të dhënash në file"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3147567\n"
+"89\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3151187\n"
+"90\n"
+"help.text"
+msgid "<item type=\"input\">=PEARSON(A1:A30;B1:B30)</item> returns the Pearson correlation coefficient of both data sets."
msgstr ""
-#: 12090000.xhp
+#: 04060184.xhp
msgctxt ""
-"12090000.xhp\n"
-"par_idN105FB\n"
+"04060184.xhp\n"
+"bm_id3152806\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
+msgid "<bookmark_value>PHI function</bookmark_value>"
+msgstr "Kthen vlerën e numrit Pi."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3152806\n"
+"92\n"
+"help.text"
+msgid "PHI"
+msgstr "PHI"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3150254\n"
+"93\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_PHI\">Returns the values of the distribution function for a standard normal distribution.</ahelp>"
msgstr ""
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"tit\n"
+"04060184.xhp\n"
+"hd_id3154748\n"
+"94\n"
"help.text"
-msgid "Grouping"
-msgstr "Grupimi nuk është i mundshëm"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1054D\n"
+"04060184.xhp\n"
+"par_id3149976\n"
+"95\n"
"help.text"
-msgid "Grouping"
-msgstr "Grupimi nuk është i mundshëm"
+msgid "PHI(Number)"
+msgstr "Numri i faqes"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10551\n"
+"04060184.xhp\n"
+"par_id3156108\n"
+"96\n"
"help.text"
-msgid "Grouping pivot tables displays the <emph>Grouping</emph> dialog for either values or dates."
+msgid "<emph>Number</emph> represents the value based on which the standard normal distribution is calculated."
msgstr ""
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10568\n"
+"04060184.xhp\n"
+"hd_id3153621\n"
+"97\n"
"help.text"
-msgid "Start"
-msgstr "Fillo"
+msgid "Example"
+msgstr "Shembull"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1056C\n"
+"04060184.xhp\n"
+"par_id3155849\n"
+"98\n"
"help.text"
-msgid "Specifies the start of the grouping."
-msgstr "Grupimi nuk është i mundshëm"
+msgid "<item type=\"input\">=PHI(2.25) </item>= 0.03"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1056F\n"
+"04060184.xhp\n"
+"par_id3143236\n"
+"99\n"
"help.text"
-msgid "Automatically"
-msgstr "Automatikisht"
+msgid "<item type=\"input\">=PHI(-2.25)</item> = 0.03"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10573\n"
+"04060184.xhp\n"
+"par_id3149286\n"
+"100\n"
"help.text"
-msgid "Specifies whether to start grouping at the smallest value."
-msgstr ""
+msgid "<item type=\"input\">=PHI(0)</item> = 0.4"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10576\n"
+"04060184.xhp\n"
+"bm_id3153985\n"
"help.text"
-msgid "Manually at"
-msgstr "Në majë"
+msgid "<bookmark_value>POISSON function</bookmark_value>"
+msgstr "Mjeti. Vlera e mjetit të shprëndarjes Poisson."
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1057A\n"
+"04060184.xhp\n"
+"hd_id3153985\n"
+"102\n"
"help.text"
-msgid "Specifies whether to enter the start value for grouping yourself."
-msgstr ""
+msgid "POISSON"
+msgstr "POISSON"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1057D\n"
+"04060184.xhp\n"
+"par_id3154298\n"
+"103\n"
"help.text"
-msgid "End"
-msgstr "Fund"
+msgid "<ahelp hid=\"HID_FUNC_POISSON\">Returns the Poisson distribution.</ahelp>"
+msgstr ""
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10581\n"
+"04060184.xhp\n"
+"hd_id3159183\n"
+"104\n"
"help.text"
-msgid "Specifies the end of the grouping."
-msgstr "Grupimi nuk është i mundshëm"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10584\n"
+"04060184.xhp\n"
+"par_id3146093\n"
+"105\n"
"help.text"
-msgid "Automatically"
-msgstr "Automatikisht"
+msgid "POISSON(Number; Mean; C)"
+msgstr "Mjeti. Vlera e mjetit të shprëndarjes Poisson."
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10588\n"
+"04060184.xhp\n"
+"par_id3147253\n"
+"106\n"
"help.text"
-msgid "Specifies whether to end grouping at the largest value."
+msgid "<emph>Number</emph> represents the value based on which the Poisson distribution is calculated."
msgstr ""
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1058B\n"
+"04060184.xhp\n"
+"par_id3151177\n"
+"107\n"
"help.text"
-msgid "Manually at"
-msgstr "Në majë"
+msgid "<emph>Mean</emph> represents the middle value of the Poisson distribution."
+msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1058F\n"
+"04060184.xhp\n"
+"par_id3149200\n"
+"108\n"
"help.text"
-msgid "Specifies whether to enter the end value for grouping yourself."
+msgid "<emph>C</emph> (optional) = 0 or False calculates the density function; <emph>C</emph> = 1 or True calculates the distribution. When omitted, the default value True is inserted when you save the document, for best compatibility with other programs and older versions of %PRODUCTNAME."
msgstr ""
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10592\n"
+"04060184.xhp\n"
+"hd_id3159347\n"
+"109\n"
"help.text"
-msgid "Group by"
-msgstr "~Grupo sipas"
+msgid "Example"
+msgstr "Shembull"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10596\n"
+"04060184.xhp\n"
+"par_id3150113\n"
+"110\n"
"help.text"
-msgid "Specifies the value range by which every group's limits are calculated."
+msgid "<item type=\"input\">=POISSON(60;50;1)</item> returns 0.93."
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"bm_id3153100\n"
+"help.text"
+msgid "<bookmark_value>PERCENTILE function</bookmark_value>"
+msgstr "Vlera tanishme. Vlera e tanishme e investimit."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3153100\n"
+"112\n"
+"help.text"
+msgid "PERCENTILE"
+msgstr "PERCENTILE"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3154940\n"
+"113\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_QUANTIL\">Returns the alpha-percentile of data values in an array.</ahelp> A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (alpha=1) of a data series. For <item type=\"literal\">Alpha</item> = 25%, the percentile means the first quartile; <item type=\"literal\">Alpha</item> = 50% is the MEDIAN."
msgstr ""
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN10599\n"
+"04060184.xhp\n"
+"hd_id3150531\n"
+"114\n"
"help.text"
-msgid "Number of days"
-msgstr "Numri i faqes"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN1059D\n"
+"04060184.xhp\n"
+"par_id3148813\n"
+"115\n"
"help.text"
-msgid "In the case of grouping date values, specifies the number of days to group by."
+msgid "PERCENTILE(Data; Alpha)"
+msgstr "Shto të dhënat si:"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153054\n"
+"116\n"
+"help.text"
+msgid "<emph>Data</emph> represents the array of data."
+msgstr "Grup të dhënash në file"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3154212\n"
+"117\n"
+"help.text"
+msgid "<emph>Alpha</emph> represents the percentage of the scale between 0 and 1."
msgstr ""
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN105A0\n"
+"04060184.xhp\n"
+"hd_id3154290\n"
+"118\n"
"help.text"
-msgid "Intervals"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3159147\n"
+"119\n"
+"help.text"
+msgid "<item type=\"input\">=PERCENTILE(A1:A50;0.1)</item> represents the value in the data set, which equals 10% of the total data scale in A1:A50."
msgstr ""
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN105A4\n"
+"04060184.xhp\n"
+"bm_id3148807\n"
"help.text"
-msgid "In the case of grouping date values, specifies the intervals to group by."
+msgid "<bookmark_value>PERCENTRANK function</bookmark_value>"
+msgstr "Vlera tanishme. Vlera e tanishme e investimit."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3148807\n"
+"121\n"
+"help.text"
+msgid "PERCENTRANK"
+msgstr "PERCENTRANK"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153573\n"
+"122\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_QUANTILSRANG\">Returns the percentage rank of a value in a sample.</ahelp>"
msgstr ""
-#: 12090400.xhp
+#: 04060184.xhp
msgctxt ""
-"12090400.xhp\n"
-"par_idN105B2\n"
+"04060184.xhp\n"
+"hd_id3147512\n"
+"123\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/guide/datapilot_grouping.xhp#datapilot_grouping\"/>"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3147238\n"
+"124\n"
+"help.text"
+msgid "PERCENTRANK(Data; Value)"
+msgstr "Definon llojin e të dhënës së një vlere."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3154266\n"
+"125\n"
+"help.text"
+msgid "<emph>Data</emph> represents the array of data in the sample."
+msgstr "Grup të dhënash në file"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3148475\n"
+"126\n"
+"help.text"
+msgid "<emph>Value</emph> represents the value whose percentile rank must be determined."
msgstr ""
-#: 06030700.xhp
+#: 04060184.xhp
msgctxt ""
-"06030700.xhp\n"
-"tit\n"
+"04060184.xhp\n"
+"hd_id3155364\n"
+"127\n"
"help.text"
-msgid "Fill Mode"
-msgstr "~Mënyra e mbushjes"
+msgid "Example"
+msgstr "Shembull"
-#: 06030700.xhp
+#: 04060184.xhp
msgctxt ""
-"06030700.xhp\n"
-"bm_id3145119\n"
+"04060184.xhp\n"
+"par_id3149163\n"
+"128\n"
"help.text"
-msgid "<bookmark_value>cells; trace fill mode</bookmark_value><bookmark_value>traces; precedents for multiple cells</bookmark_value>"
+msgid "<item type=\"input\">=PERCENTRANK(A1:A50;50)</item> returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear."
msgstr ""
-#: 06030700.xhp
+#: 04060184.xhp
msgctxt ""
-"06030700.xhp\n"
-"hd_id3145119\n"
-"1\n"
+"04060184.xhp\n"
+"bm_id3166442\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030700.xhp\" name=\"Fill Mode\">Fill Mode</link>"
+msgid "<bookmark_value>QUARTILE function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"hd_id3166442\n"
+"130\n"
+"help.text"
+msgid "QUARTILE"
+msgstr "QUARTILE"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3146958\n"
+"131\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_QUARTILE\">Returns the quartile of a data set.</ahelp>"
msgstr ""
-#: 06030700.xhp
+#: 04060184.xhp
msgctxt ""
-"06030700.xhp\n"
-"par_id3151246\n"
-"2\n"
+"04060184.xhp\n"
+"hd_id3152942\n"
+"132\n"
"help.text"
-msgid "<ahelp hid=\".uno:AuditingFillMode\">Activates the Fill Mode in the Detective. The mouse pointer changes to a special symbol, and you can click any cell to see a trace to the precedent cell.</ahelp> To exit this mode, press Escape or click the <emph>End Fill Mode</emph> command in the context menu."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153684\n"
+"133\n"
+"help.text"
+msgid "QUARTILE(Data; Type)"
+msgstr "Pwrzirje e tipit tw sw dhwnave"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3153387\n"
+"134\n"
+"help.text"
+msgid "<emph>Data</emph> represents the array of data in the sample."
+msgstr "Grup të dhënash në file"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3155589\n"
+"135\n"
+"help.text"
+msgid "<emph>Type</emph> represents the type of quartile. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)"
msgstr ""
-#: 06030700.xhp
+#: 04060184.xhp
msgctxt ""
-"06030700.xhp\n"
-"par_id3151211\n"
-"3\n"
+"04060184.xhp\n"
+"hd_id3149103\n"
+"136\n"
"help.text"
-msgid "The <emph>Fill Mode</emph> function is identical to the <link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedent\">Trace Precedent</link> command if you call this mode for the first time. Use the context menu to select further options for the Fill Mode and to exit this mode."
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060184.xhp
+msgctxt ""
+"04060184.xhp\n"
+"par_id3159276\n"
+"137\n"
+"help.text"
+msgid "<item type=\"input\">=QUARTILE(A1:A50;2)</item> returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50."
msgstr ""
#: 04060185.xhp
@@ -45386,7 +43244,6 @@ msgid "<item type=\"input\">=RANK(A10;A1:A50)</item> returns the ranking of the
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id3153556\n"
@@ -45893,7 +43750,6 @@ msgid "<emph>Mean</emph> is the arithmetic mean of the distribution."
msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"par_id3148874\n"
@@ -47031,7 +44887,6 @@ msgid "<item type=\"input\">=PERMUTATIONA(6;3)</item> returns 216. There are 216
msgstr ""
#: 04060185.xhp
-#, fuzzy
msgctxt ""
"04060185.xhp\n"
"bm_id3152952\n"
@@ -47259,11674 +45114,13594 @@ msgctxt ""
msgid "See also the <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Calc:_WEIBULL_function\">Wiki page</link>."
msgstr ""
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
+"04060199.xhp\n"
"tit\n"
"help.text"
-msgid "Input Help"
-msgstr "Ndihmë në Hyrje"
+msgid "Operators in $[officename] Calc"
+msgstr "~Burimi i të dhënave i regjistruar në %PRODUCTNAME"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"hd_id3156280\n"
-"1\n"
+"04060199.xhp\n"
+"bm_id3156445\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12120200.xhp\" name=\"Input Help\">Input Help</link>"
+msgid "<bookmark_value>formulas; operators</bookmark_value><bookmark_value>operators; formula functions</bookmark_value><bookmark_value>division sign, see also operators</bookmark_value><bookmark_value>multiplication sign, see also operators</bookmark_value><bookmark_value>minus sign, see also operators</bookmark_value><bookmark_value>plus sign, see also operators</bookmark_value><bookmark_value>text operators</bookmark_value><bookmark_value>comparisons;operators in Calc</bookmark_value><bookmark_value>arithmetical operators</bookmark_value><bookmark_value>reference operators</bookmark_value>"
msgstr ""
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"par_id3147229\n"
+"04060199.xhp\n"
+"hd_id3156445\n"
+"1\n"
+"help.text"
+msgid "Operators in $[officename] Calc"
+msgstr "~Burimi i të dhënave i regjistruar në %PRODUCTNAME"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3155812\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected in the sheet.</ahelp>"
+msgid "You can use the following operators in $[officename] Calc:"
msgstr ""
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"hd_id3146986\n"
+"04060199.xhp\n"
+"hd_id3153066\n"
"3\n"
"help.text"
-msgid "Show input help when cell is selected"
-msgstr "~Trego inputin e ndihmës kur të jetë zgjedhur qelia"
+msgid "Arithmetical Operators"
+msgstr "Operatërot Unar/Binar"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"par_id3153363\n"
+"04060199.xhp\n"
+"par_id3148601\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_INPUTHELP:TSB_HELP\">Displays the message that you enter in the <emph>Contents</emph> box when the cell or cell range is selected in the sheet.</ahelp>"
+msgid "These operators return numerical results."
msgstr ""
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"par_id3154730\n"
+"04060199.xhp\n"
+"par_id3144768\n"
"5\n"
"help.text"
-msgid "If you enter text in the <emph>Contents</emph> box of this dialog, and then select and clear this check box, the text will be lost."
-msgstr ""
+msgid "Operator"
+msgstr "Operator"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"hd_id3147394\n"
+"04060199.xhp\n"
+"par_id3157982\n"
"6\n"
"help.text"
-msgid "Contents"
-msgstr "Përmbajtjet"
+msgid "Name"
+msgstr "Emri"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"hd_id3149582\n"
+"04060199.xhp\n"
+"par_id3159096\n"
+"7\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149126\n"
"8\n"
"help.text"
-msgid "Title"
-msgstr "Titulli"
+msgid "+ (Plus)"
+msgstr "Plus"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"par_id3149400\n"
+"04060199.xhp\n"
+"par_id3150892\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_INPUTHELP:EDT_TITLE\">Enter the title that you want to display when the cell or cell range is selected.</ahelp>"
-msgstr ""
+msgid "Addition"
+msgstr "Mbledhja +"
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"hd_id3149121\n"
+"04060199.xhp\n"
+"par_id3153247\n"
"10\n"
"help.text"
-msgid "Input help"
-msgstr "Ndihmë në Hyrje"
+msgid "1+1"
+msgstr ""
-#: 12120200.xhp
+#: 04060199.xhp
msgctxt ""
-"12120200.xhp\n"
-"par_id3150752\n"
+"04060199.xhp\n"
+"par_id3159204\n"
"11\n"
"help.text"
-msgid "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected.</ahelp>"
+msgid "- (Minus)"
msgstr ""
-#: 02140400.xhp
+#: 04060199.xhp
msgctxt ""
-"02140400.xhp\n"
-"tit\n"
+"04060199.xhp\n"
+"par_id3145362\n"
+"12\n"
"help.text"
-msgid "Left"
-msgstr "Majtas"
+msgid "Subtraction"
+msgstr "Zbritja -"
-#: 02140400.xhp
+#: 04060199.xhp
msgctxt ""
-"02140400.xhp\n"
-"hd_id3153896\n"
-"1\n"
+"04060199.xhp\n"
+"par_id3153554\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02140400.xhp\" name=\"Left\">Left</link>"
+msgid "2-1"
msgstr ""
-#: 02140400.xhp
+#: 04060199.xhp
msgctxt ""
-"02140400.xhp\n"
-"par_id3150793\n"
-"2\n"
+"04060199.xhp\n"
+"par_id3153808\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\".uno:FillLeft\" visibility=\"visible\">Fills a selected range of at least two columns with the contents of the far right cell.</ahelp>"
+msgid "- (Minus)"
msgstr ""
-#: 02140400.xhp
+#: 04060199.xhp
msgctxt ""
-"02140400.xhp\n"
-"par_id3156280\n"
-"3\n"
+"04060199.xhp\n"
+"par_id3151193\n"
+"15\n"
"help.text"
-msgid "If a selected range has only one row, the content of the far right cell is copied into all other cells of the range. If several rows are selected, the far right cells are copied into the cells to the left."
+msgid "Negation"
msgstr ""
-#: 04010200.xhp
+#: 04060199.xhp
msgctxt ""
-"04010200.xhp\n"
-"tit\n"
+"04060199.xhp\n"
+"par_id3154712\n"
+"16\n"
"help.text"
-msgid "Column Break"
-msgstr "Thyerje e kolonës"
+msgid "-5"
+msgstr ""
-#: 04010200.xhp
+#: 04060199.xhp
msgctxt ""
-"04010200.xhp\n"
-"bm_id3155923\n"
+"04060199.xhp\n"
+"par_id3149873\n"
+"17\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; inserting column breaks</bookmark_value><bookmark_value>column breaks; inserting</bookmark_value><bookmark_value>inserting; manual column breaks</bookmark_value><bookmark_value>manual column breaks</bookmark_value>"
+msgid "* (asterisk)"
msgstr ""
-#: 04010200.xhp
+#: 04060199.xhp
msgctxt ""
-"04010200.xhp\n"
-"hd_id3155923\n"
-"1\n"
+"04060199.xhp\n"
+"par_id3147504\n"
+"18\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04010200.xhp\" name=\"Column Break\">Column Break</link>"
+msgid "Multiplication"
+msgstr "Shumëzimi (x)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149055\n"
+"19\n"
+"help.text"
+msgid "2*2"
msgstr ""
-#: 04010200.xhp
+#: 04060199.xhp
msgctxt ""
-"04010200.xhp\n"
-"par_id3150447\n"
-"2\n"
+"04060199.xhp\n"
+"par_id3151341\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsertColumnBreak\">Inserts a column break (vertical page break) to the left of the active cell.</ahelp>"
+msgid "/ (Slash)"
+msgstr "Pjesëtim (/)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3159260\n"
+"21\n"
+"help.text"
+msgid "Division"
+msgstr "Pjesëtim (÷)"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153027\n"
+"22\n"
+"help.text"
+msgid "9/3"
msgstr ""
-#: 04010200.xhp
+#: 04060199.xhp
msgctxt ""
-"04010200.xhp\n"
-"par_id3145171\n"
-"3\n"
+"04060199.xhp\n"
+"par_id3156396\n"
+"23\n"
"help.text"
-msgid "The manual column break is indicated by a dark blue vertical line."
+msgid "% (Percent)"
+msgstr "Përqindja"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150372\n"
+"24\n"
+"help.text"
+msgid "Percent"
+msgstr "Përqindja"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3145632\n"
+"25\n"
+"help.text"
+msgid "15%"
msgstr ""
-#: 04030000.xhp
+#: 04060199.xhp
msgctxt ""
-"04030000.xhp\n"
-"tit\n"
+"04060199.xhp\n"
+"par_id3149722\n"
+"26\n"
"help.text"
-msgid "Rows"
-msgstr "Rreshtat"
+msgid "^ (Caret)"
+msgstr ""
-#: 04030000.xhp
+#: 04060199.xhp
msgctxt ""
-"04030000.xhp\n"
-"bm_id3150541\n"
+"04060199.xhp\n"
+"par_id3159127\n"
+"27\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; inserting rows</bookmark_value><bookmark_value>rows; inserting</bookmark_value><bookmark_value>inserting; rows</bookmark_value>"
+msgid "Exponentiation"
msgstr ""
-#: 04030000.xhp
+#: 04060199.xhp
msgctxt ""
-"04030000.xhp\n"
-"hd_id3150541\n"
-"1\n"
+"04060199.xhp\n"
+"par_id3157873\n"
+"28\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04030000.xhp\" name=\"Rows\">Rows</link>"
+msgid "3^2"
msgstr ""
-#: 04030000.xhp
+#: 04060199.xhp
msgctxt ""
-"04030000.xhp\n"
-"par_id3150767\n"
-"2\n"
+"04060199.xhp\n"
+"hd_id3152981\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsertRows\" visibility=\"visible\">Inserts a new row above the active cell.</ahelp> The number of rows inserted correspond to the number of rows selected. The existing rows are moved downward."
+msgid "Comparative operators"
+msgstr "Operatërot Unar/Binar"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3157902\n"
+"30\n"
+"help.text"
+msgid "These operators return either true or false."
msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"tit\n"
+"04060199.xhp\n"
+"par_id3149889\n"
+"31\n"
"help.text"
-msgid "Header/Footer"
-msgstr "Mbititulli/Nëntitulli ka ndryshuar"
+msgid "Operator"
+msgstr "Operator"
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"bm_id3153360\n"
+"04060199.xhp\n"
+"par_id3150743\n"
+"32\n"
"help.text"
-msgid "<bookmark_value>page styles; headers</bookmark_value> <bookmark_value>page styles; footers</bookmark_value> <bookmark_value>headers; defining</bookmark_value> <bookmark_value>footers; defining</bookmark_value> <bookmark_value>file names in headers/footers</bookmark_value> <bookmark_value>changing;dates, automatically</bookmark_value> <bookmark_value>dates;updating automatically</bookmark_value> <bookmark_value>automatic date updates</bookmark_value>"
+msgid "Name"
+msgstr "Emri"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3146877\n"
+"33\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3148888\n"
+"34\n"
+"help.text"
+msgid "= (equal sign)"
+msgstr "Është baraz me"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3154845\n"
+"35\n"
+"help.text"
+msgid "Equal"
+msgstr "Baraz"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3154546\n"
+"36\n"
+"help.text"
+msgid "A1=B1"
msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3153360\n"
-"1\n"
+"04060199.xhp\n"
+"par_id3154807\n"
+"37\n"
"help.text"
-msgid "<link href=\"text/scalc/01/02120100.xhp\" name=\"Header/Footer\">Header/Footer</link>"
+msgid "> (Greater than)"
+msgstr "më e madhe se"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3148580\n"
+"38\n"
+"help.text"
+msgid "Greater than"
+msgstr "më e madhe se"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3145138\n"
+"39\n"
+"help.text"
+msgid "A1>B1"
msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3150768\n"
-"2\n"
+"04060199.xhp\n"
+"par_id3149507\n"
+"40\n"
+"help.text"
+msgid "< (Less than)"
+msgstr "më pak se"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150145\n"
+"41\n"
+"help.text"
+msgid "Less than"
+msgstr "më pak se"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3150901\n"
+"42\n"
"help.text"
-msgid "<ahelp hid=\"HID_SCPAGE_HFED_FL\">Defines or formats a header or footer for a Page Style.</ahelp>"
+msgid "A1<B1"
msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3145748\n"
-"3\n"
+"04060199.xhp\n"
+"par_id3153078\n"
+"43\n"
"help.text"
-msgid "Left Area"
-msgstr "~Zona e majtë"
+msgid ">= (Greater than or equal to)"
+msgstr "më e madhe se ose baraz me"
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3147434\n"
-"4\n"
+"04060199.xhp\n"
+"par_id3150866\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_FLL\">Enter the text to be displayed at the left side of the header or footer.</ahelp>"
+msgid "Greater than or equal to"
+msgstr "më e madhe se ose baraz me"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3153111\n"
+"45\n"
+"help.text"
+msgid "A1>=B1"
msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3148648\n"
-"5\n"
+"04060199.xhp\n"
+"par_id3153004\n"
+"46\n"
"help.text"
-msgid "Center Area"
-msgstr "~Zona qendrore"
+msgid "<= (Less than or equal to)"
+msgstr "më pak se ose barazi me"
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3163710\n"
-"6\n"
+"04060199.xhp\n"
+"par_id3150335\n"
+"47\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the text to be displayed at the center of the header or footer.</ahelp>"
+msgid "Less than or equal to"
+msgstr "më pak se ose barazi me"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3148760\n"
+"48\n"
+"help.text"
+msgid "A1<=B1"
msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3154942\n"
-"7\n"
+"04060199.xhp\n"
+"par_id3157994\n"
+"49\n"
"help.text"
-msgid "Right Area"
-msgstr "Zona e djathtë"
+msgid "<> (Inequality)"
+msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3147126\n"
-"8\n"
+"04060199.xhp\n"
+"par_id3150019\n"
+"50\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_FLR\">Enter the text to be displayed at the right side of the header or footer.</ahelp>"
+msgid "Inequality"
msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_idN10811\n"
+"04060199.xhp\n"
+"par_id3149878\n"
+"51\n"
"help.text"
-msgid "Header/Footer"
-msgstr "Mbititulli/Nëntitulli ka ndryshuar"
+msgid "A1<>B1"
+msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_idN10815\n"
+"04060199.xhp\n"
+"hd_id3145241\n"
+"52\n"
"help.text"
-msgid "<ahelp hid=\".\">Select a predefined header or footer from the list.</ahelp>"
+msgid "Text operators"
+msgstr "Vizato tekstin"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3155438\n"
+"53\n"
+"help.text"
+msgid "The operator combines separate texts into one text."
msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3154729\n"
-"9\n"
+"04060199.xhp\n"
+"par_id3150566\n"
+"54\n"
"help.text"
-msgid "Text attributes"
-msgstr "Atributet e tekstit"
+msgid "Operator"
+msgstr "Operator"
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3150717\n"
-"10\n"
+"04060199.xhp\n"
+"par_id3153048\n"
+"55\n"
+"help.text"
+msgid "Name"
+msgstr "Emri"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3149001\n"
+"56\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3148769\n"
+"57\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_TEXT\">Opens a dialog to assign formats to new or selected text.</ahelp> The <emph>Text Attributes </emph>dialog contains the tab pages <link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>, <link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Font Effects</link> and <link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Font Position</link>."
+msgid "& (And)"
+msgstr "dhe"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"bm_id3157975\n"
+"help.text"
+msgid "<bookmark_value>text concatenation AND</bookmark_value>"
msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3159266\n"
+"04060199.xhp\n"
+"par_id3157975\n"
+"58\n"
"help.text"
-msgid "<image id=\"img_id3156386\" src=\"sc/res/text.png\" width=\"0.1874in\" height=\"0.1665in\"><alt id=\"alt_id3156386\">Icon</alt></image>"
+msgid "text concatenation AND"
+msgstr "Teksti Perëndimor dhe pikëzimi Aziatik"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3157993\n"
+"59\n"
+"help.text"
+msgid "\"Sun\" & \"day\" is \"Sunday\""
msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3155336\n"
-"25\n"
+"04060199.xhp\n"
+"hd_id3153550\n"
+"60\n"
"help.text"
-msgid "Text Attributes"
-msgstr "Atributet e tekstit"
+msgid "Reference operators"
+msgstr "Deri në referencë"
-#: 02120100.xhp
-#, fuzzy
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3145792\n"
-"11\n"
+"04060199.xhp\n"
+"par_id3149024\n"
+"61\n"
"help.text"
-msgid "File Name"
-msgstr "Emri i fajllit"
+msgid "These operators return a cell range of zero, one or more cells."
+msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3150206\n"
-"12\n"
+"04060199.xhp\n"
+"par_id2324900\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_FILE\">Inserts a file name placeholder in the selected area.</ahelp> Click to insert the title. Long-click to select either title, file name or path/file name from the submenu. If a title has not be assigned (see <emph>File - Properties</emph>), the file name will be inserted instead."
+msgid "Range has the highest precedence, then intersection, and then finally union."
msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3150369\n"
+"04060199.xhp\n"
+"par_id3158416\n"
+"62\n"
"help.text"
-msgid "<image id=\"img_id3150518\" src=\"res/folderop.png\" width=\"0.1665in\" height=\"0.1252in\"><alt id=\"alt_id3150518\">Icon</alt></image>"
+msgid "Operator"
+msgstr "Operator"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3152822\n"
+"63\n"
+"help.text"
+msgid "Name"
+msgstr "Emri"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3154949\n"
+"64\n"
+"help.text"
+msgid "Example"
+msgstr "Shembull"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3156257\n"
+"65\n"
+"help.text"
+msgid ": (Colon)"
msgstr ""
-#: 02120100.xhp
-#, fuzzy
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3154487\n"
-"26\n"
+"04060199.xhp\n"
+"par_id3153924\n"
+"66\n"
"help.text"
-msgid "File Name"
-msgstr "Emri i Fajlit"
+msgid "Range"
+msgstr "Brez"
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3155812\n"
-"13\n"
+"04060199.xhp\n"
+"par_id3148432\n"
+"67\n"
"help.text"
-msgid "Sheet Name"
-msgstr "Emri i Fletës"
+msgid "A1:C108"
+msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3148842\n"
-"14\n"
+"04060199.xhp\n"
+"par_id3152592\n"
+"68\n"
+"help.text"
+msgid "! (Exclamation point)"
+msgstr "Shëni pikën"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"bm_id3150606\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_TABLE\">Inserts a placeholder in the selected header/footer area, which is replaced by the sheet name in the header/footer of the actual document.</ahelp>"
+msgid "<bookmark_value>intersection operator</bookmark_value>"
msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3146870\n"
+"04060199.xhp\n"
+"par_id3150606\n"
+"69\n"
"help.text"
-msgid "<image id=\"img_id3148870\" src=\"sc/res/table.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3148870\">Icon</alt></image>"
+msgid "Intersection"
+msgstr "Prerje"
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id3083445\n"
+"70\n"
+"help.text"
+msgid "SUM(A1:B6!B5:C12)"
msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3147071\n"
-"27\n"
+"04060199.xhp\n"
+"par_id3150385\n"
+"71\n"
"help.text"
-msgid "Sheet Name"
-msgstr "Emri i Fletës"
+msgid "Calculates the sum of all cells in the intersection; in this example, the result yields the sum of cells B5 and B6."
+msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3144768\n"
-"15\n"
+"04060199.xhp\n"
+"par_id4003723\n"
"help.text"
-msgid "Page"
-msgstr "Faqe"
+msgid "~ (Tilde)"
+msgstr "Karakteri ~"
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3154960\n"
-"16\n"
+"04060199.xhp\n"
+"par_id838953\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_PAGE\">Inserts a placeholder in the selected header/footer area, which is replaced by page numbering. This allows continuous page numbering in a document.</ahelp>"
+msgid "Concatenation or union"
+msgstr "~Prano ose Refuzo..."
+
+#: 04060199.xhp
+msgctxt ""
+"04060199.xhp\n"
+"par_id2511978\n"
+"help.text"
+msgid "Takes two references and returns a reference list, which is a concatenation of the left reference followed by the right reference. Double entries are referenced twice. See note below this table."
msgstr ""
-#: 02120100.xhp
+#: 04060199.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3151304\n"
+"04060199.xhp\n"
+"par_id181890\n"
"help.text"
-msgid "<image id=\"img_id3155386\" src=\"sc/res/page.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155386\">Icon</alt></image>"
+msgid "Reference concatenation using a tilde character was implemented lately. When a formula with the tilde operator exists in a document that is opened in old versions of the software, an error is returned. A reference list is not allowed inside an array expression."
msgstr ""
-#: 02120100.xhp
+#: 04070000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3150048\n"
-"28\n"
+"04070000.xhp\n"
+"tit\n"
"help.text"
-msgid "Page"
-msgstr "Faqe"
+msgid "Names"
+msgstr "Emrat"
-#: 02120100.xhp
+#: 04070000.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3146962\n"
-"17\n"
+"04070000.xhp\n"
+"hd_id3153951\n"
+"1\n"
"help.text"
-msgid "Pages"
-msgstr "Faqet"
+msgid "<link href=\"text/scalc/01/04070000.xhp\" name=\"Names\">Names</link>"
+msgstr ""
-#: 02120100.xhp
+#: 04070000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3153812\n"
-"18\n"
+"04070000.xhp\n"
+"par_id3145801\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_PAGES\">Inserts a placeholder in the selected header/footer area, which is replaced by the total number of pages in the document.</ahelp>"
+msgid "<ahelp hid=\".\">Allows you to name the different sections of your spreadsheet document.</ahelp> By naming the different sections, you can easily <link href=\"text/scalc/01/02110000.xhp\" name=\"navigate\">navigate</link> through the spreadsheet documents and find specific information."
msgstr ""
-#: 02120100.xhp
+#: 04070000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3149315\n"
+"04070000.xhp\n"
+"hd_id3153878\n"
+"3\n"
"help.text"
-msgid "<image id=\"img_id3155757\" src=\"sc/res/pages.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155757\">Icon</alt></image>"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Define\">Define</link>"
msgstr ""
-#: 02120100.xhp
+#: 04070000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3147499\n"
-"29\n"
+"04070000.xhp\n"
+"hd_id3146969\n"
+"4\n"
"help.text"
-msgid "Pages"
-msgstr "Faqet"
+msgid "<link href=\"text/scalc/01/04070200.xhp\" name=\"Insert\">Insert</link>"
+msgstr ""
-#: 02120100.xhp
+#: 04070000.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3149050\n"
-"19\n"
+"04070000.xhp\n"
+"hd_id3155764\n"
+"5\n"
"help.text"
-msgid "Date"
-msgstr "Data"
+msgid "<link href=\"text/scalc/01/04070300.xhp\" name=\"Apply\">Apply</link>"
+msgstr ""
-#: 02120100.xhp
+#: 04070000.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3153960\n"
-"20\n"
+"04070000.xhp\n"
+"hd_id3156382\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_DATE\">Inserts a placeholder in the selected header/footer area, which is replaced by the current date which will be repeated in the header/footer on each page of the document.</ahelp>"
+msgid "<link href=\"text/scalc/01/04070400.xhp\" name=\"Labels\">Labels</link>"
msgstr ""
-#: 02120100.xhp
+#: 04070100.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3147299\n"
+"04070100.xhp\n"
+"tit\n"
"help.text"
-msgid "<image id=\"img_id3150394\" src=\"sc/res/date.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150394\">Icon</alt></image>"
+msgid "Define Names"
+msgstr "Defino Emrat"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3156330\n"
+"1\n"
+"help.text"
+msgid "Define Names"
+msgstr "Defino Emrat"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3154366\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"namenfestlegentext\"><ahelp hid=\".uno:DefineName\">Opens a dialog where you can specify a name for a selected area.</ahelp></variable>"
msgstr ""
-#: 02120100.xhp
+#: 04070100.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3150540\n"
+"04070100.xhp\n"
+"par_id3154123\n"
+"31\n"
+"help.text"
+msgid "Use the mouse to define ranges or type the reference into the <emph>Define Name </emph>dialog fields."
+msgstr ""
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3155131\n"
"30\n"
"help.text"
-msgid "Date"
-msgstr "Data"
+msgid "The <emph>Sheet Area</emph> box on the Formula bar contains a list of defined names for the ranges. Click a name from this box to highlight the corresponding reference on the spreadsheet. Names given formulas or parts of a formula are not listed here."
+msgstr ""
-#: 02120100.xhp
+#: 04070100.xhp
msgctxt ""
-"02120100.xhp\n"
-"hd_id3147610\n"
+"04070100.xhp\n"
+"hd_id3151118\n"
+"3\n"
+"help.text"
+msgid "Name"
+msgstr "Emri"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3163712\n"
+"29\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/edit\">Enter the name of the area for which you want to define a reference. All area names already defined in the spreadsheet are listed in the text field below.</ahelp> If you click a name on the list, the corresponding reference in the document will be shown with a blue frame. If multiple cell ranges belong to the same area name, they are displayed with different colored frames."
+msgstr ""
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3153728\n"
+"9\n"
+"help.text"
+msgid "Assigned to"
+msgstr "Caktuar"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3147435\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/range\">The reference of the selected area name is shown here as an absolute value.</ahelp>"
+msgstr ""
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3146986\n"
+"12\n"
+"help.text"
+msgid "To insert a new area reference, place the cursor in this field and use your mouse to select the desired area in any sheet of your spreadsheet document."
+msgstr ""
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3154729\n"
+"13\n"
+"help.text"
+msgid "More"
+msgstr "Më shumë"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3149958\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/more\">Allows you to specify the <emph>Area type </emph>(optional) for the reference.</ahelp>"
+msgstr ""
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3147394\n"
+"15\n"
+"help.text"
+msgid "Area type"
+msgstr "Tipi i fushës"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3155416\n"
+"16\n"
+"help.text"
+msgid "Defines additional options related to the type of reference area."
+msgstr ""
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3150716\n"
+"17\n"
+"help.text"
+msgid "Print range"
+msgstr "Intervali i shtypjes"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3150751\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/printarea\">Defines the area as a print range.</ahelp>"
+msgstr ""
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3153764\n"
+"19\n"
+"help.text"
+msgid "Filter"
+msgstr "Filtër"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3155766\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/filter\">Defines the selected area to be used in an <link href=\"text/scalc/01/12040300.xhp\" name=\"advanced filter\">advanced filter</link>.</ahelp>"
+msgstr ""
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"hd_id3159267\n"
"21\n"
"help.text"
-msgid "Time"
-msgstr "Koha"
+msgid "Repeat column"
+msgstr "Përsërit ~shtyllën"
-#: 02120100.xhp
+#: 04070100.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3145638\n"
+"04070100.xhp\n"
+"par_id3149565\n"
"22\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HF_TIME\">Inserts a placeholder in the selected header/footer area, which is replaced by the current time in the header/footer on each page of the document.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/colheader\">Defines the area as a repeating column.</ahelp>"
msgstr ""
-#: 02120100.xhp
+#: 04070100.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3153122\n"
+"04070100.xhp\n"
+"hd_id3153966\n"
+"23\n"
"help.text"
-msgid "<image id=\"img_id3146884\" src=\"sc/res/time.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146884\">Icon</alt></image>"
+msgid "Repeat row"
+msgstr "Përsërit ~rreshtin"
+
+#: 04070100.xhp
+msgctxt ""
+"04070100.xhp\n"
+"par_id3150300\n"
+"24\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/definename/rowheader\">Defines the area as a repeating row.</ahelp>"
msgstr ""
-#: 02120100.xhp
+#: 04070100.xhp
msgctxt ""
-"02120100.xhp\n"
-"par_id3157904\n"
-"31\n"
+"04070100.xhp\n"
+"hd_id3155112\n"
+"27\n"
"help.text"
-msgid "Time"
-msgstr "Koha"
+msgid "Add/Modify"
+msgstr "Ndrysho formëdhënien..."
-#: 04050100.xhp
+#: 04070100.xhp
msgctxt ""
-"04050100.xhp\n"
+"04070100.xhp\n"
+"par_id3159236\n"
+"28\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/managenamesdialog/add\">Click the <emph>Add</emph> button to add the defined name to the list. Click the <emph>Modify</emph> button to enter another name for an already existing name selected from the list.</ahelp>"
+msgstr ""
+
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
"tit\n"
"help.text"
-msgid "Sheet from file"
-msgstr "Fle~të nga fajlli..."
+msgid "Insert Name"
+msgstr "Fute Emrin"
-#: 04050100.xhp
+#: 04070200.xhp
msgctxt ""
-"04050100.xhp\n"
-"par_idN105C1\n"
+"04070200.xhp\n"
+"bm_id3153195\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04050100.xhp\">Sheet from file</link>"
+msgid "<bookmark_value>cell ranges; inserting named ranges</bookmark_value><bookmark_value>inserting; cell ranges</bookmark_value>"
msgstr ""
-#: 04050100.xhp
+#: 04070200.xhp
msgctxt ""
-"04050100.xhp\n"
-"par_idN105D1\n"
+"04070200.xhp\n"
+"hd_id3153195\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"26275\">Inserts a sheet from a different spreadsheet file.</ahelp>"
+msgid "Insert Name"
+msgstr "Fute Emrin"
+
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"par_id3150011\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"nameneinfuegentext\"><ahelp hid=\".uno:InsertName\">Inserts a defined named cell range at the current cursor's position.</ahelp></variable>"
msgstr ""
-#: 04050100.xhp
+#: 04070200.xhp
msgctxt ""
-"04050100.xhp\n"
-"par_idN105F7\n"
+"04070200.xhp\n"
+"par_id3149412\n"
+"7\n"
"help.text"
-msgid "Use the <link href=\"text/shared/01/01020000.xhp\">File - Open</link> dialog to locate the spreadsheet."
+msgid "You can only insert a cell area after having defined a name for the area."
msgstr ""
-#: 04050100.xhp
+#: 04070200.xhp
msgctxt ""
-"04050100.xhp\n"
-"par_idN10609\n"
+"04070200.xhp\n"
+"hd_id3153160\n"
+"3\n"
"help.text"
-msgid "In the <link href=\"text/scalc/01/04050000.xhp\">Insert Sheet</link> dialog, select the sheet that you want to insert."
+msgid "Insert name"
+msgstr "Fute Emrin"
+
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"par_id3154944\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NAMES_PASTE:LB_ENTRYLIST\">Lists all defined cell areas. Double-click an entry to insert the named area into the active sheet at the current cursor position.</ahelp>"
msgstr ""
-#: 12040201.xhp
+#: 04070200.xhp
msgctxt ""
-"12040201.xhp\n"
+"04070200.xhp\n"
+"hd_id3153418\n"
+"5\n"
+"help.text"
+msgid "Insert All"
+msgstr "Futi ~të Gjtha"
+
+#: 04070200.xhp
+msgctxt ""
+"04070200.xhp\n"
+"par_id3155066\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_NAMES_PASTE:BTN_ADD\">Inserts a list of all named areas and the corresponding cell references at the current cursor position.</ahelp>"
+msgstr ""
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
"tit\n"
"help.text"
-msgid "More"
-msgstr "Më shumë"
+msgid "Creating Names"
+msgstr "Emrat e Objekteve"
-#: 12040201.xhp
+#: 04070300.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3148492\n"
-"1\n"
+"04070300.xhp\n"
+"bm_id3147264\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
+msgid "<bookmark_value>cell ranges;creating names automatically</bookmark_value><bookmark_value>names; for cell ranges</bookmark_value>"
msgstr ""
-#: 12040201.xhp
+#: 04070300.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3159400\n"
+"04070300.xhp\n"
+"hd_id3147264\n"
+"1\n"
+"help.text"
+msgid "Creating Names"
+msgstr "Emrat e Objekteve"
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"par_id3153969\n"
"2\n"
"help.text"
-msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_SPEC_FILTER:BTN_MORE\">Shows additional filter options.</ahelp></variable>"
+msgid "<variable id=\"namenuebernehmentext\"><ahelp hid=\".uno:CreateNames\">Allows you to automatically name multiple cell ranges.</ahelp></variable>"
msgstr ""
-#: 12040201.xhp
+#: 04070300.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3150791\n"
+"04070300.xhp\n"
+"par_id3156280\n"
+"13\n"
+"help.text"
+msgid "Select the area containing all the ranges that you want to name. Then choose <emph>Insert - Names - Create</emph>. This opens the <emph>Create Names</emph> dialog, from which you can select the naming options that you want."
+msgstr ""
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"hd_id3151116\n"
"3\n"
"help.text"
-msgid "Options"
-msgstr "Opcionet"
+msgid "Create names from"
+msgstr "Krijo emra nga"
-#: 12040201.xhp
+#: 04070300.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3154138\n"
+"04070300.xhp\n"
+"par_id3152597\n"
+"4\n"
+"help.text"
+msgid "Defines which part of the spreadsheet is to be used for creating the name."
+msgstr ""
+
+#: 04070300.xhp
+msgctxt ""
+"04070300.xhp\n"
+"hd_id3153729\n"
"5\n"
"help.text"
-msgid "Case sensitive"
-msgstr "I ndjeshëm në madhësinë e shkronjave"
+msgid "Top row"
+msgstr "~Rreshti më i lartë"
-#: 12040201.xhp
+#: 04070300.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3147228\n"
+"04070300.xhp\n"
+"par_id3149263\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_CASE\">Distinguishes between uppercase and lowercase letters when filtering the data.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/top\">Creates the range names from the header row of the selected range.</ahelp> Each column receives a separated name and cell reference."
msgstr ""
-#: 12040201.xhp
+#: 04070300.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3154908\n"
+"04070300.xhp\n"
+"hd_id3146984\n"
"7\n"
"help.text"
-msgid "Range contains column labels"
-msgstr "Intervali përmban ~emërtimet e shtyllës"
+msgid "Left Column"
+msgstr "~Shtylla e majtë"
-#: 12040201.xhp
+#: 04070300.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3153768\n"
+"04070300.xhp\n"
+"par_id3153190\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_HEADER\">Includes the column labels in the first row of a cell range.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/left\">Creates the range names from the entries in the first column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
msgstr ""
-#: 12040201.xhp
+#: 04070300.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3155306\n"
+"04070300.xhp\n"
+"hd_id3156284\n"
"9\n"
"help.text"
-msgid "Copy results to"
-msgstr "Kopjo rezultatet ~te"
+msgid "Bottom row"
+msgstr "~Rreshti i fundit"
-#: 12040201.xhp
+#: 04070300.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3154319\n"
+"04070300.xhp\n"
+"par_id3147124\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_COPY_AREA\">Select the check box, and then select the cell range where you want to display the filter results.</ahelp> You can also select a named range from the list."
+msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/bottom\">Creates the range names from the entries in the last row of the selected sheet range.</ahelp> Each column receives a separated name and cell reference."
msgstr ""
-#: 12040201.xhp
+#: 04070300.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3145272\n"
+"04070300.xhp\n"
+"hd_id3154731\n"
"11\n"
"help.text"
-msgid "Regular expression"
-msgstr "Shprehje e rregullt"
+msgid "Right Column"
+msgstr "~Shtylla e djathtë"
-#: 12040201.xhp
+#: 04070300.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3152576\n"
+"04070300.xhp\n"
+"par_id3153158\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_REGEXP\">Allows you to use wildcards in the filter definition.</ahelp> For a list of the regular expressions that $[officename] supports, click <link href=\"text/shared/01/02100001.xhp\" name=\"here\">here</link>."
+msgid "<ahelp hid=\"modules/scalc/ui/createnamesdialog/right\">Creates the range names from the entries in the last column of the selected sheet range.</ahelp> Each row receives a separated name and cell reference."
msgstr ""
-#: 12040201.xhp
+#: 04070400.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3149377\n"
-"33\n"
+"04070400.xhp\n"
+"tit\n"
"help.text"
-msgid "If the <emph>Regular Expressions</emph> check box is selected, you can use regular expressions in the Value field if the Condition list box is set to '=' EQUAL or '<>' UNEQUAL. This also applies to the respective cells that you reference for an advanced filter."
+msgid "Define Label Range"
+msgstr "Defino Intervalin e Emërtimit"
+
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"bm_id3150791\n"
+"help.text"
+msgid "<bookmark_value>sheets; defining label ranges</bookmark_value><bookmark_value>label ranges in sheets</bookmark_value>"
msgstr ""
-#: 12040201.xhp
+#: 04070400.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3149958\n"
-"34\n"
+"04070400.xhp\n"
+"hd_id3150791\n"
+"1\n"
"help.text"
-msgid "No duplication"
-msgstr "~Asnjë dyfishim"
+msgid "<variable id=\"define_label_range\"><link href=\"text/scalc/01/04070400.xhp\">Define Label Range</link></variable>"
+msgstr ""
-#: 12040201.xhp
+#: 04070400.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3153876\n"
-"35\n"
+"04070400.xhp\n"
+"par_id3150868\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_UNIQUE\">Excludes duplicate rows in the list of filtered data.</ahelp>"
+msgid "<variable id=\"beschtext\"><ahelp hid=\".uno:DefineLabelRange\">Opens a dialog in which you can define a label range.</ahelp></variable>"
msgstr ""
-#: 12040201.xhp
+#: 04070400.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3154018\n"
-"40\n"
+"04070400.xhp\n"
+"par_id3155411\n"
+"13\n"
"help.text"
-msgid "Keep filter criteria"
-msgstr "~Ruaj kriteret e filtrimit"
+msgid "The cell contents of a label range can be used like names in formulas - $[officename] recognizes these names in the same manner that it does the predefined names of the weekdays and months. These names are automatically completed when typed into a formula. In addition, the names defined by label ranges will have priority over names defined by automatically generated ranges."
+msgstr ""
-#: 12040201.xhp
+#: 04070400.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3149123\n"
-"41\n"
+"04070400.xhp\n"
+"par_id3147435\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FILTER:BTN_DEST_PERS\">Select the <emph>Copy results to</emph> check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under <emph>Data - Define range</emph> as a database range.</ahelp> Following this, you can reapply the defined filter at any time as follows: click into the source range, then choose <emph>Data - Refresh Range</emph>."
+msgid "You can set label ranges that contain the same labels on different sheets. $[officename] first searches the label ranges of the current sheet and, following a failed search, the ranges of other sheets."
msgstr ""
-#: 12040201.xhp
+#: 04070400.xhp
msgctxt ""
-"12040201.xhp\n"
-"hd_id3149018\n"
-"36\n"
+"04070400.xhp\n"
+"hd_id3145801\n"
+"3\n"
"help.text"
-msgid "Data range"
-msgstr "Intervali i të Dhënave"
+msgid "Range"
+msgstr "Brez"
-#: 12040201.xhp
+#: 04070400.xhp
msgctxt ""
-"12040201.xhp\n"
-"par_id3150042\n"
-"37\n"
+"04070400.xhp\n"
+"par_id3154731\n"
+"4\n"
"help.text"
-msgid "Displays the cell range or the name of the cell range that you want to filter."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_AREA\">Displays the cell reference of each label range.</ahelp> In order to remove a label range from the list box, select it and then click <emph>Delete</emph>."
msgstr ""
-#: 04060181.xhp
+#: 04070400.xhp
msgctxt ""
-"04060181.xhp\n"
+"04070400.xhp\n"
+"hd_id3149121\n"
+"5\n"
+"help.text"
+msgid "Contains column labels"
+msgstr "Përmban ~emërtimet e shtyllave"
+
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"par_id3150330\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_COLHEAD\">Includes column labels in the current label range.</ahelp>"
+msgstr ""
+
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"hd_id3149020\n"
+"7\n"
+"help.text"
+msgid "Contains row labels"
+msgstr "Përmban ~emërtimet e rreshtave"
+
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"par_id3154754\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ROWHEAD\">Includes row labels in the current label range.</ahelp>"
+msgstr ""
+
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"hd_id3159264\n"
+"11\n"
+"help.text"
+msgid "For data range"
+msgstr "Për ~ intervalin e të dhënave"
+
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"par_id3154703\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_COLROWNAMERANGES:ED_DATA\">Sets the data range for which the selected label range is valid. To modify it, click in the sheet and select another range with the mouse.</ahelp>"
+msgstr ""
+
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"hd_id3145789\n"
+"9\n"
+"help.text"
+msgid "Add"
+msgstr "Shto"
+
+#: 04070400.xhp
+msgctxt ""
+"04070400.xhp\n"
+"par_id3147005\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_COLROWNAMERANGES:BTN_ADD\">Adds the current label range to the list.</ahelp>"
+msgstr ""
+
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
"tit\n"
"help.text"
-msgid "Statistical Functions Part One"
-msgstr "Funksionet statistikore"
+msgid "Function List"
+msgstr "Kryerresht i listës"
-#: 04060181.xhp
+#: 04080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3146320\n"
-"1\n"
+"04080000.xhp\n"
+"bm_id3154126\n"
"help.text"
-msgid "<variable id=\"ae\"><link href=\"text/scalc/01/04060181.xhp\">Statistical Functions Part One</link></variable>"
+msgid "<bookmark_value>formula list window</bookmark_value><bookmark_value>function list window</bookmark_value><bookmark_value>inserting functions; function list window</bookmark_value>"
msgstr ""
-#: 04060181.xhp
+#: 04080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3145632\n"
+"04080000.xhp\n"
+"hd_id3154126\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>INTERCEPT function</bookmark_value> <bookmark_value>points of intersection</bookmark_value> <bookmark_value>intersections</bookmark_value>"
+msgid "<link href=\"text/scalc/01/04080000.xhp\" name=\"Function List\">Function List</link>"
msgstr ""
-#: 04060181.xhp
+#: 04080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3145632\n"
+"04080000.xhp\n"
+"par_id3151118\n"
"2\n"
"help.text"
-msgid "INTERCEPT"
-msgstr "INTERCEPT"
+msgid "<variable id=\"funktionslistetext\"><ahelp hid=\"HID_SC_FUNCTIONLIST\">This command opens the <emph>Function List</emph> window, which displays all functions that can be inserted into your document.</ahelp></variable> The <emph>Function List</emph> window is similar to the <emph>Functions</emph> tab page of the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link>. The functions are inserted with placeholders to be replaced with your own values."
+msgstr ""
-#: 04060181.xhp
+#: 04080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3146887\n"
+"04080000.xhp\n"
+"par_id3152576\n"
"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ACHSENABSCHNITT\">Calculates the point at which a line will intersect the y-values by using known x-values and y-values.</ahelp>"
+msgid "The <emph>Function List</emph> window is a resizable <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link>. Use it to quickly enter functions in the spreadsheet. By double-clicking an entry in the functions list, the respective function is directly inserted with all parameters."
msgstr ""
-#: 04060181.xhp
+#: 04080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3150374\n"
+"04080000.xhp\n"
+"hd_id3145799\n"
"4\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Category List"
+msgstr "Kryerresht i listës"
-#: 04060181.xhp
+#: 04080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149718\n"
+"04080000.xhp\n"
+"hd_id3153160\n"
"5\n"
"help.text"
-msgid "INTERCEPT(DataY; DataX)"
-msgstr ""
+msgid "Function List"
+msgstr "Kryerresht i listës"
-#: 04060181.xhp
+#: 04080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149947\n"
+"04080000.xhp\n"
+"par_id3149412\n"
"6\n"
"help.text"
-msgid "<emph>DataY</emph> is the dependent set of observations or data."
-msgstr "Grup të dhënash në file"
+msgid "<ahelp hid=\"SC:LISTBOX:FID_FUNCTION_BOX:LB_FUNC\">Displays the available functions.</ahelp> When you select a function, the area below the list box displays a short description. To insert the selected function double-click it or click the <emph>Insert Function into calculation sheet</emph> icon."
+msgstr ""
-#: 04060181.xhp
+#: 04080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3147412\n"
+"04080000.xhp\n"
+"hd_id3146971\n"
"7\n"
"help.text"
-msgid "<emph>DataX</emph> is the independent set of observations or data."
-msgstr "Grup të dhënash në file"
+msgid "Insert Function into calculation sheet"
+msgstr "Fut Funksionin në fletën e kalkulimeve"
-#: 04060181.xhp
+#: 04080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3152983\n"
+"04080000.xhp\n"
+"par_id3150043\n"
+"help.text"
+msgid "<image id=\"img_id3159267\" src=\"sc/res/fx.png\" width=\"0.1945inch\" height=\"0.1945inch\"><alt id=\"alt_id3159267\">Icon</alt></image>"
+msgstr ""
+
+#: 04080000.xhp
+msgctxt ""
+"04080000.xhp\n"
+"par_id3147345\n"
"8\n"
"help.text"
-msgid "Names, arrays or references containing numbers must be used here. Numbers can also be entered directly."
+msgid "<ahelp hid=\"SC:IMAGEBUTTON:FID_FUNCTION_BOX:IMB_INSERT\">Inserts the selected function into the document.</ahelp>"
msgstr ""
-#: 04060181.xhp
+#: 04090000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3157906\n"
-"9\n"
+"04090000.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Link to External Data"
+msgstr "~Lidhi me të dhënat e jashtme..."
-#: 04060181.xhp
+#: 04090000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148728\n"
-"10\n"
+"04090000.xhp\n"
+"par_id3153192\n"
+"2\n"
"help.text"
-msgid "To calculate the intercept, use cells D3:D9 as the y value and C3:C9 as the x value from the example spreadsheet. Input will be as follows:"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/browse\" visibility=\"hidden\">Locate the file containing the data you want to insert.</ahelp>"
msgstr ""
-#: 04060181.xhp
+#: 04090000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149013\n"
-"11\n"
+"04090000.xhp\n"
+"hd_id3145785\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=INTERCEPT(D3:D9;C3:C9)</item> = 2.15."
+msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External Data\">Link to External Data</link>"
msgstr ""
-#: 04060181.xhp
+#: 04090000.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3148437\n"
+"04090000.xhp\n"
+"par_id3149262\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>COUNT function</bookmark_value> <bookmark_value>numbers;counting</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
+msgid "<ahelp hid=\".uno:InsertExternalDataSourc\">Inserts data from an HTML, Calc, or Excel file into the current sheet as a link. The data must be located within a named range.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 04090000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3148437\n"
-"13\n"
+"04090000.xhp\n"
+"hd_id3146984\n"
+"5\n"
"help.text"
-msgid "COUNT"
-msgstr "COUNT"
+msgid "URL of external data source."
+msgstr "URL e ~ burimit të jashtëm të të dhënave"
-#: 04060181.xhp
+#: 04090000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150700\n"
-"14\n"
+"04090000.xhp\n"
+"par_id3145366\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ANZAHL\">Counts how many numbers are in the list of arguments.</ahelp> Text entries are ignored."
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/url\">Enter the URL or the file name that contains the data that you want to insert, and then press Enter.</ahelp>"
msgstr ""
-#: 04060181.xhp
+#: 04090000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3153930\n"
-"15\n"
+"04090000.xhp\n"
+"hd_id3145251\n"
+"7\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Available tables/ranges"
+msgstr "~Intervalet/tabelat në dispozicion"
-#: 04060181.xhp
+#: 04090000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148585\n"
-"16\n"
+"04090000.xhp\n"
+"par_id3147397\n"
+"8\n"
"help.text"
-msgid "COUNT(Value1; Value2; ... Value30)"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/ranges\">Select the table or the data range that you want to insert.</ahelp>"
msgstr ""
-#: 04060181.xhp
+#: 04090000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3155827\n"
-"17\n"
+"04090000.xhp\n"
+"hd_id3154492\n"
+"9\n"
"help.text"
-msgid "<emph>Value1; Value2, ...</emph> are 1 to 30 values or ranges representing the values to be counted."
+msgid "Update every"
+msgstr "~Përditëso çdo:"
+
+#: 04090000.xhp
+msgctxt ""
+"04090000.xhp\n"
+"par_id3154017\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/externaldata/delay\">Enter the number of seconds to wait before the external data are reloaded into the current document.</ahelp>"
msgstr ""
-#: 04060181.xhp
+#: 05020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3149254\n"
-"18\n"
+"05020000.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Format Cells"
+msgstr "Formato qelitë"
-#: 04060181.xhp
+#: 05020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149953\n"
-"19\n"
+"05020000.xhp\n"
+"bm_id3148663\n"
"help.text"
-msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
+msgid "<bookmark_value>cell attributes</bookmark_value><bookmark_value>attributes;cells</bookmark_value><bookmark_value>formatting;cells</bookmark_value><bookmark_value>cells;formatting dialog</bookmark_value>"
msgstr ""
-#: 04060181.xhp
+#: 05020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154558\n"
-"20\n"
+"05020000.xhp\n"
+"hd_id3148663\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=COUNT(2;4;6;\"eight\")</item> = 3. The count of numbers is therefore 3."
-msgstr ""
+msgid "Format Cells"
+msgstr "Formato qelitë"
-#: 04060181.xhp
+#: 05020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3149729\n"
+"05020000.xhp\n"
+"par_id3150448\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>COUNTA function</bookmark_value> <bookmark_value>number of entries</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<variable id=\"zellattributetext\"><ahelp hid=\".uno:FormatCellDialog\">Allows you to specify a variety of formatting options and to apply attributes to the selected cells.</ahelp></variable>"
+msgstr ""
-#: 04060181.xhp
+#: 05020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3149729\n"
-"22\n"
+"05020000.xhp\n"
+"hd_id3145785\n"
+"3\n"
"help.text"
-msgid "COUNTA"
-msgstr "COUNTA"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgstr ""
-#: 04060181.xhp
+#: 05020000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150142\n"
-"23\n"
+"05020000.xhp\n"
+"hd_id3146119\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ANZAHL2\">Counts how many values are in the list of arguments.</ahelp> Text entries are also counted, even when they contain an empty string of length 0. If an argument is an array or reference, empty cells within the array or reference are ignored."
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
msgstr ""
-#: 04060181.xhp
+#: 05020600.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3148573\n"
-"24\n"
+"05020600.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Cell Protection"
+msgstr "Mbrojtja e qelisë"
-#: 04060181.xhp
+#: 05020600.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3153111\n"
-"25\n"
+"05020600.xhp\n"
+"hd_id3145119\n"
+"1\n"
"help.text"
-msgid "COUNTA(Value1; Value2; ... Value30)"
+msgid "<link href=\"text/scalc/01/05020600.xhp\" name=\"Cell Protection\">Cell Protection</link>"
msgstr ""
-#: 04060181.xhp
+#: 05020600.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150001\n"
-"26\n"
+"05020600.xhp\n"
+"par_id3150398\n"
+"2\n"
"help.text"
-msgid "<emph>Value1; Value2, ...</emph> are 1 to 30 arguments representing the values to be counted."
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/CellProtectionPage\">Defines protection options for selected cells.</ahelp>"
msgstr ""
-#: 04060181.xhp
+#: 05020600.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3150334\n"
-"27\n"
+"05020600.xhp\n"
+"hd_id3150447\n"
+"3\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Protection"
+msgstr "Mbrojtje"
-#: 04060181.xhp
+#: 05020600.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154508\n"
-"28\n"
+"05020600.xhp\n"
+"hd_id3125864\n"
+"9\n"
"help.text"
-msgid "The entries 2, 4, 6 and eight in the Value 1-4 fields are to be counted."
+msgid "Hide all"
+msgstr "Fshehi ~të gjitha"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3153768\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideAll\">Hides formulas and contents of the selected cells.</ahelp>"
msgstr ""
-#: 04060181.xhp
+#: 05020600.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3158000\n"
-"29\n"
+"05020600.xhp\n"
+"hd_id3153190\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">=COUNTA(2;4;6;\"eight\")</item> = 4. The count of values is therefore 4."
+msgid "Protected"
+msgstr "I Mbrojtur"
+
+#: 05020600.xhp
+msgctxt ""
+"05020600.xhp\n"
+"par_id3151119\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkProtected\">Prevents the selected cells from being modified.</ahelp>"
msgstr ""
-#: 04060181.xhp
+#: 05020600.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3150267\n"
+"05020600.xhp\n"
+"par_id3156283\n"
+"15\n"
"help.text"
-msgid "<bookmark_value>B function</bookmark_value> <bookmark_value>probabilities of samples with binomial distribution</bookmark_value>"
+msgid "This cell protection only takes effect if you also protect the sheet (<emph>Tools - Protect Document - Sheet</emph>)."
msgstr ""
-#: 04060181.xhp
+#: 05020600.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3150267\n"
-"31\n"
+"05020600.xhp\n"
+"hd_id3149377\n"
+"7\n"
"help.text"
-msgid "B"
-msgstr "B"
+msgid "Hide formula"
+msgstr "Fshehe ~formulën"
-#: 04060181.xhp
+#: 05020600.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156061\n"
-"32\n"
+"05020600.xhp\n"
+"par_id3154510\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_B\">Returns the probability of a sample with binomial distribution.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHideFormula\">Hides formulas in the selected cells.</ahelp>"
msgstr ""
-#: 04060181.xhp
+#: 05020600.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3150659\n"
-"33\n"
+"05020600.xhp\n"
+"hd_id3155602\n"
+"11\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Print"
+msgstr "Shtyp"
-#: 04060181.xhp
+#: 05020600.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148392\n"
-"34\n"
+"05020600.xhp\n"
+"par_id3153836\n"
+"12\n"
"help.text"
-msgid "B(Trials; SP; T1; T2)"
+msgid "Defines print options for the sheet."
msgstr ""
-#: 04060181.xhp
+#: 05020600.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149002\n"
-"35\n"
+"05020600.xhp\n"
+"hd_id3155065\n"
+"13\n"
"help.text"
-msgid "<emph>Trials</emph> is the number of independent trials."
-msgstr "Kthen SAKTË nëse vlera është një numër."
+msgid "Hide when printing"
+msgstr "Fshehe ~kur të printohet"
-#: 04060181.xhp
+#: 05020600.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148875\n"
-"36\n"
+"05020600.xhp\n"
+"par_id3155443\n"
+"14\n"
"help.text"
-msgid "<emph>SP</emph> is the probability of success on each trial."
+msgid "<ahelp hid=\"modules/scalc/ui/cellprotectionpage/checkHidePrinting\">Keeps the selected cells from being printed.</ahelp>"
msgstr ""
-#: 04060181.xhp
+#: 05030000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3145352\n"
-"37\n"
+"05030000.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>T1</emph> defines the lower limit for the number of trials."
-msgstr ""
+msgid "Row"
+msgstr "Rresht"
-#: 04060181.xhp
+#: 05030000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149538\n"
-"38\n"
+"05030000.xhp\n"
+"hd_id3147228\n"
+"1\n"
"help.text"
-msgid "<emph>T2</emph> (optional) defines the upper limit for the number of trials."
+msgid "<link href=\"text/scalc/01/05030000.xhp\" name=\"Row\">Row</link>"
msgstr ""
-#: 04060181.xhp
+#: 05030000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3148768\n"
-"39\n"
+"05030000.xhp\n"
+"par_id3154685\n"
+"2\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<ahelp hid=\".\">Sets the row height and hides or shows selected rows.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05030000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154633\n"
-"40\n"
+"05030000.xhp\n"
+"hd_id3155132\n"
+"3\n"
"help.text"
-msgid "What is the probability with ten throws of the dice, that a six will come up exactly twice? The probability of a six (or any other number) is 1/6. The following formula combines these factors:"
+msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Height\">Height</link>"
msgstr ""
-#: 04060181.xhp
+#: 05030000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149393\n"
-"41\n"
+"05030000.xhp\n"
+"hd_id3155854\n"
+"4\n"
"help.text"
-msgid "<item type=\"input\">=B(10;1/6;2)</item> returns a probability of 29%."
+msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal Height\">Optimal Height</link>"
msgstr ""
-#: 04060181.xhp
+#: 05030200.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3158416\n"
+"05030200.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>RSQ function</bookmark_value> <bookmark_value>determination coefficients</bookmark_value> <bookmark_value>regression analysis</bookmark_value>"
+msgid "Optimal Row Heights"
+msgstr "Latrësia optimale e rendit"
+
+#: 05030200.xhp
+msgctxt ""
+"05030200.xhp\n"
+"bm_id3148491\n"
+"help.text"
+msgid "<bookmark_value>sheets; optimal row heights</bookmark_value><bookmark_value>rows; optimal heights</bookmark_value><bookmark_value>optimal row heights</bookmark_value>"
msgstr ""
-#: 04060181.xhp
+#: 05030200.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3158416\n"
-"43\n"
+"05030200.xhp\n"
+"hd_id3148491\n"
+"1\n"
"help.text"
-msgid "RSQ"
-msgstr "RSQ"
+msgid "Optimal Row Heights"
+msgstr "Latrësia optimale e rendit"
-#: 04060181.xhp
+#: 05030200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154949\n"
-"44\n"
+"05030200.xhp\n"
+"par_id3154758\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BESTIMMTHEITSMASS\">Returns the square of the Pearson correlation coefficient based on the given values.</ahelp> RSQ (also called determination coefficient) is a measure for the accuracy of an adjustment and can be used to produce a regression analysis."
+msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalRowHeight\">Determines the optimal row height for the selected rows.</ahelp></variable> The optimal row height depends on the font size of the largest character in the row. You can use various <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"units of measure\">units of measure</link>."
msgstr ""
-#: 04060181.xhp
+#: 05030200.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3152820\n"
-"45\n"
+"05030200.xhp\n"
+"hd_id3154908\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Add"
+msgstr "Shto"
-#: 04060181.xhp
+#: 05030200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3155822\n"
-"46\n"
+"05030200.xhp\n"
+"par_id3151044\n"
+"4\n"
"help.text"
-msgid "RSQ(DataY; DataX)"
+msgid "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_ROW_OPT:ED_VALUE\">Sets additional spacing between the largest character in a row and the cell boundaries.</ahelp>"
msgstr ""
-#: 04060181.xhp
+#: 05030200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150470\n"
-"47\n"
+"05030200.xhp\n"
+"hd_id3150439\n"
+"5\n"
"help.text"
-msgid "<emph>DataY</emph> is an array or range of data points."
-msgstr "Grup të dhënash në file"
+msgid "Default value"
+msgstr "Mosparaqitje vlerash"
-#: 04060181.xhp
+#: 05030200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3153181\n"
-"48\n"
+"05030200.xhp\n"
+"par_id3146984\n"
+"6\n"
"help.text"
-msgid "<emph>DataX</emph> is an array or range of data points."
-msgstr "Grup të dhënash në file"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ROW_OPT:BTN_DEFVAL\">Restores the default value for the optimal row height.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05030300.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3156258\n"
-"49\n"
+"05030300.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Hide"
+msgstr "Fshehe"
-#: 04060181.xhp
+#: 05030300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3155991\n"
-"50\n"
+"05030300.xhp\n"
+"bm_id3147265\n"
"help.text"
-msgid "<item type=\"input\">=RSQ(A1:A20;B1:B20)</item> calculates the determination coefficient for both data sets in columns A and B."
+msgid "<bookmark_value>spreadsheets; hiding functions</bookmark_value><bookmark_value>hiding; rows</bookmark_value><bookmark_value>hiding; columns</bookmark_value><bookmark_value>hiding; sheets</bookmark_value><bookmark_value>sheets;hiding</bookmark_value><bookmark_value>columns;hiding</bookmark_value><bookmark_value>rows;hiding</bookmark_value>"
msgstr ""
-#: 04060181.xhp
+#: 05030300.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3145620\n"
+"05030300.xhp\n"
+"hd_id3147265\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>BETAINV function</bookmark_value> <bookmark_value>cumulative probability density function;inverse of</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<link href=\"text/scalc/01/05030300.xhp\" name=\"Hide\">Hide</link>"
+msgstr ""
-#: 04060181.xhp
+#: 05030300.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3145620\n"
-"52\n"
+"05030300.xhp\n"
+"par_id3156281\n"
+"2\n"
"help.text"
-msgid "BETAINV"
-msgstr "BETAINV"
+msgid "<ahelp hid=\".uno:Hide\">Hides selected rows, columns or individual sheets.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05030300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149825\n"
-"53\n"
+"05030300.xhp\n"
+"par_id3148645\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BETAINV\">Returns the inverse of the cumulative beta probability density function.</ahelp>"
+msgid "Select the rows or columns that you want to hide, and then choose <emph>Format - Row - Hide </emph>or<emph> Format - Column - Hide</emph>."
msgstr ""
-#: 04060181.xhp
+#: 05030300.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3152479\n"
-"54\n"
+"05030300.xhp\n"
+"par_id3147427\n"
+"6\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "You can hide a sheet by selecting the sheet tab and then choosing <emph>Format - Sheet - Hide</emph>. Hidden sheets are not printed unless they occur within a <link href=\"text/scalc/01/05080000.xhp\" name=\"print range\">print range</link>."
+msgstr ""
-#: 04060181.xhp
+#: 05030300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156300\n"
-"55\n"
+"05030300.xhp\n"
+"par_id3153157\n"
+"5\n"
"help.text"
-msgid "BETAINV(Number; Alpha; Beta; Start; End)"
+msgid "A break in the row or column header indicates whether the row or column is hidden."
msgstr ""
-#: 04060181.xhp
+#: 05030300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149266\n"
-"56\n"
+"05030300.xhp\n"
+"par_id3145251\n"
+"4\n"
"help.text"
-msgid "<emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
+msgid "To display hidden rows, columns or sheets"
msgstr ""
-#: 04060181.xhp
+#: 05030300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149710\n"
-"57\n"
+"05030300.xhp\n"
+"par_id8337046\n"
"help.text"
-msgid "<emph>Alpha</emph> is a parameter to the distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "Select the range that includes the hidden objects. You can also use the box in the corner above row 1 and beside column A. For sheets, this step is not necessary."
+msgstr ""
-#: 04060181.xhp
+#: 05030300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156306\n"
-"58\n"
+"05030300.xhp\n"
+"par_id5532090\n"
"help.text"
-msgid "<emph>Beta</emph> is a parameter to the distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "Choose <link href=\"text/scalc/01/05030400.xhp\" name=\"Format - Row/Column - Show\">Format - Row/Column - Show</link> or <link href=\"text/scalc/01/05050300.xhp\" name=\"Format - Sheet - Show\">Format - Sheet - Show</link>."
+msgstr ""
-#: 04060181.xhp
+#: 05030400.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150960\n"
-"59\n"
+"05030400.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
-msgstr "E kthen njw numwr kompleks i cili wshtw i ngritur nw fuqi integjere"
+msgid "Show"
+msgstr "Shfaq"
-#: 04060181.xhp
+#: 05030400.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3151268\n"
-"60\n"
+"05030400.xhp\n"
+"bm_id3147264\n"
"help.text"
-msgid "<emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
-msgstr "E kthen njw numwr kompleks i cili wshtw i ngritur nw fuqi integjere"
+msgid "<bookmark_value>spreadsheets; showing columns</bookmark_value><bookmark_value>showing; columns</bookmark_value><bookmark_value>showing; rows</bookmark_value>"
+msgstr ""
-#: 04060181.xhp
+#: 05030400.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_idN109DF\n"
+"05030400.xhp\n"
+"hd_id3147264\n"
+"1\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "<link href=\"text/scalc/01/05030400.xhp\" name=\"Show\">Show</link>"
msgstr ""
-#: 04060181.xhp
+#: 05030400.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3147077\n"
-"61\n"
+"05030400.xhp\n"
+"par_id3150447\n"
+"2\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<ahelp hid=\".uno:ShowColumn\">Choose this command to show previously hidden rows or columns.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05030400.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3146859\n"
-"62\n"
+"05030400.xhp\n"
+"par_id3155131\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=BETAINV(0.5;5;10)</item> returns the value 0.33."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "To show a column or row, select the range of rows or columns containing the hidden elements, then choose <emph>Format - Row - Show</emph> or <emph>Format - Column - Show</emph>."
+msgstr ""
-#: 04060181.xhp
+#: 05030400.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3156096\n"
+"05030400.xhp\n"
+"par_id3145748\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>BETADIST function</bookmark_value> <bookmark_value>cumulative probability density function;calculating</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "To show all hidden cells, first click in the field in the upper left corner. This selects all cells of the table."
+msgstr ""
-#: 04060181.xhp
+#: 05040000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3156096\n"
-"64\n"
+"05040000.xhp\n"
+"tit\n"
"help.text"
-msgid "BETADIST"
-msgstr "BETADIST"
+msgid "Column"
+msgstr "Kolonë"
-#: 04060181.xhp
+#: 05040000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150880\n"
-"65\n"
+"05040000.xhp\n"
+"hd_id3155628\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BETAVERT\">Returns the beta function.</ahelp>"
+msgid "<link href=\"text/scalc/01/05040000.xhp\" name=\"Column\">Column</link>"
msgstr ""
-#: 04060181.xhp
+#: 05040000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3150762\n"
-"66\n"
+"05040000.xhp\n"
+"par_id3148946\n"
+"2\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<ahelp hid=\".\">Sets the column width and hides or shows selected columns.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05040000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3147571\n"
-"67\n"
+"05040000.xhp\n"
+"hd_id3150398\n"
+"3\n"
"help.text"
-msgid "BETADIST(Number; Alpha; Beta; Start; End; Cumulative)"
-msgstr "Alfa parametri për Beta shprëndarje."
+msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Width\">Width</link>"
+msgstr ""
-#: 04060181.xhp
+#: 05040000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156317\n"
-"68\n"
+"05040000.xhp\n"
+"hd_id3145171\n"
+"4\n"
"help.text"
-msgid "<emph>Number</emph> is the value between <emph>Start</emph> and <emph>End</emph> at which to evaluate the function."
+msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal Width\">Optimal Width</link>"
msgstr ""
-#: 04060181.xhp
+#: 05040200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156107\n"
-"69\n"
+"05040200.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Alpha</emph> is a parameter to the distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "Optimal Column Width"
+msgstr "Gjerësia optimale e kolonës"
-#: 04060181.xhp
+#: 05040200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3153619\n"
-"70\n"
+"05040200.xhp\n"
+"bm_id3155628\n"
"help.text"
-msgid "<emph>Beta</emph> is a parameter to the distribution."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<bookmark_value>spreadsheets; optimal column widths</bookmark_value><bookmark_value>columns; optimal widths</bookmark_value><bookmark_value>optimal column widths</bookmark_value>"
+msgstr ""
-#: 04060181.xhp
+#: 05040200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150254\n"
-"71\n"
+"05040200.xhp\n"
+"hd_id3155628\n"
+"1\n"
"help.text"
-msgid "<emph>Start</emph> (optional) is the lower bound for <emph>Number</emph>."
-msgstr "E kthen njw numwr kompleks i cili wshtw i ngritur nw fuqi integjere"
+msgid "Optimal Column Width"
+msgstr "Gjerësia optimale e kolonës"
-#: 04060181.xhp
+#: 05040200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149138\n"
-"72\n"
+"05040200.xhp\n"
+"par_id3145068\n"
+"2\n"
"help.text"
-msgid "<emph>End</emph> (optional) is the upper bound for <emph>Number</emph>."
-msgstr "E kthen njw numwr kompleks i cili wshtw i ngritur nw fuqi integjere"
+msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Defines the optimal column width for selected columns.</ahelp></variable> The optimal column width depends on the longest entry within a column. You can choose from the available <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement units\">measurement units</link>."
+msgstr ""
-#: 04060181.xhp
+#: 05040200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id012020091254453\n"
+"05040200.xhp\n"
+"hd_id3150767\n"
+"3\n"
"help.text"
-msgid "<emph>Cumulative</emph> (optional) can be 0 or False to calculate the probability density function. It can be any other value or True or omitted to calculate the cumulative distribution function."
-msgstr ""
+msgid "Add"
+msgstr "Shto"
-#: 04060181.xhp
+#: 05040200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_idN10AB3\n"
+"05040200.xhp\n"
+"par_id3150449\n"
+"4\n"
"help.text"
-msgid "<embedvar href=\"text/scalc/00/00000004.xhp#optional\"/>"
+msgid "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_COL_OPT:ED_VALUE\">Defines additional spacing between the longest entry in a column and the vertical column borders.</ahelp>"
msgstr ""
-#: 04060181.xhp
+#: 05040200.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3145649\n"
-"73\n"
+"05040200.xhp\n"
+"hd_id3145785\n"
+"5\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Default value"
+msgstr "Mosparaqitje vlerash"
-#: 04060181.xhp
+#: 05040200.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156118\n"
-"74\n"
+"05040200.xhp\n"
+"par_id3146120\n"
+"6\n"
"help.text"
-msgid "<item type=\"input\">=BETADIST(0.75;3;4)</item> returns the value 0.96"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_COL_OPT:BTN_DEFVAL\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 0.1 in."
+msgstr ""
-#: 04060181.xhp
+#: 05050000.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3143228\n"
+"05050000.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>BINOMDIST function</bookmark_value>"
-msgstr "Gabim: Vlera nuk është në dispozicion"
+msgid "Sheet"
+msgstr "Krijo"
-#: 04060181.xhp
+#: 05050000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3143228\n"
-"76\n"
+"05050000.xhp\n"
+"bm_id1245460\n"
"help.text"
-msgid "BINOMDIST"
-msgstr "BINOMDIST"
+msgid "<bookmark_value>CTL;right-to-left sheets</bookmark_value><bookmark_value>sheets;right-to-left</bookmark_value><bookmark_value>right-to-left text;spreadsheets</bookmark_value>"
+msgstr ""
-#: 04060181.xhp
+#: 05050000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3146897\n"
-"77\n"
+"05050000.xhp\n"
+"hd_id3155923\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_BINOMVERT\">Returns the individual term binomial distribution probability.</ahelp>"
+msgid "<link href=\"text/scalc/01/05050000.xhp\" name=\"Sheet\">Sheet</link>"
msgstr ""
-#: 04060181.xhp
+#: 05050000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3149289\n"
-"78\n"
+"05050000.xhp\n"
+"par_id3154758\n"
+"2\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<ahelp hid=\".\">Sets the sheet name and hides or shows selected sheets.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05050000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156009\n"
-"79\n"
+"05050000.xhp\n"
+"hd_id3156280\n"
+"3\n"
"help.text"
-msgid "BINOMDIST(X; Trials; SP; C)"
-msgstr "Numri i përgjithshëm i provave"
+msgid "<link href=\"text/scalc/01/05050100.xhp\" name=\"Rename\">Rename</link>"
+msgstr ""
-#: 04060181.xhp
+#: 05050000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154304\n"
-"80\n"
+"05050000.xhp\n"
+"hd_id3145787\n"
+"4\n"
"help.text"
-msgid "<emph>X</emph> is the number of successes in a set of trials."
-msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
+msgid "<link href=\"text/scalc/01/05050300.xhp\" name=\"Show\">Show</link>"
+msgstr ""
-#: 04060181.xhp
+#: 05050000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3147492\n"
-"81\n"
+"05050000.xhp\n"
+"par_id3150542\n"
+"5\n"
"help.text"
-msgid "<emph>Trials</emph> is the number of independent trials."
-msgstr "Kthen SAKTË nëse vlera është një numër."
+msgid "If a sheet has been hidden, the Show Sheet dialog opens, which allows you to select a sheet to be shown again."
+msgstr ""
-#: 04060181.xhp
+#: 05050000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3146085\n"
-"82\n"
+"05050000.xhp\n"
+"par_idN10656\n"
"help.text"
-msgid "<emph>SP</emph> is the probability of success on each trial."
-msgstr ""
+msgid "Right-To-Left"
+msgstr "Nga e djathta në të majtë"
-#: 04060181.xhp
+#: 05050000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149760\n"
-"83\n"
+"05050000.xhp\n"
+"par_idN1065A\n"
"help.text"
-msgid "<emph>C</emph> = 0 calculates the probability of a single event and <emph>C</emph> = 1 calculates the cumulative probability."
-msgstr "Grumbulluar. C=0 llogarit funksionin e dendësisë, C=1 shprëndarjen."
+msgid "<ahelp hid=\".uno:SheetRightToLeft\">Changes the orientation of the current sheet to Right-To-Left if <link href=\"text/shared/optionen/01150300.xhp\">CTL</link> support is enabled.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05050100.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3151171\n"
-"84\n"
+"05050100.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Rename Sheet"
+msgstr "Riemroni Fletën"
-#: 04060181.xhp
+#: 05050100.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3145666\n"
-"85\n"
+"05050100.xhp\n"
+"bm_id3147336\n"
"help.text"
-msgid "<item type=\"input\">=BINOMDIST(A1;12;0.5;0)</item> shows (if the values <item type=\"input\">0</item> to <item type=\"input\">12</item> are entered in A1) the probabilities for 12 flips of a coin that <emph>Heads</emph> will come up exactly the number of times entered in A1."
+msgid "<bookmark_value>worksheet names</bookmark_value><bookmark_value>changing; sheet names</bookmark_value><bookmark_value>sheets; renaming</bookmark_value>"
msgstr ""
-#: 04060181.xhp
+#: 05050100.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150120\n"
-"86\n"
+"05050100.xhp\n"
+"hd_id3147336\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=BINOMDIST(A1;12;0.5;1)</item> shows the cumulative probabilities for the same series. For example, if A1 = <item type=\"input\">4</item>, the cumulative probability of the series is 0, 1, 2, 3 or 4 times <emph>Heads</emph> (non-exclusive OR)."
-msgstr ""
+msgid "Rename Sheet"
+msgstr "Riemroni Fletën"
-#: 04060181.xhp
+#: 05050100.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id0119200902432928\n"
+"05050100.xhp\n"
+"par_id3150792\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>CHISQINV function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "<variable id=\"umbenennentext\"><ahelp hid=\".uno:RenameTable\">This command opens a dialog where you can assign a different name to the current sheet.</ahelp></variable>"
+msgstr ""
-#: 04060181.xhp
+#: 05050100.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id0119200902421451\n"
+"05050100.xhp\n"
+"hd_id3153968\n"
+"3\n"
"help.text"
-msgid "CHISQINV"
-msgstr "CHIINV"
+msgid "Name"
+msgstr "Emri"
-#: 04060181.xhp
+#: 05050100.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902421449\n"
+"05050100.xhp\n"
+"par_id3155131\n"
"help.text"
-msgid "<ahelp hid=\".\">Returns the inverse of CHISQDIST.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_APPEND_NAME\">Enter a new name for the sheet here.</ahelp>"
msgstr ""
-#: 04060181.xhp
+#: 05050100.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id0119200902475241\n"
+"05050100.xhp\n"
+"par_id3153092\n"
+"5\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "You can also open the<emph> Rename Sheet </emph>dialog through the context menu by positioning the mouse pointer over a sheet tab at the bottom of the window and <switchinline select=\"sys\"><caseinline select=\"MAC\">clicking while pressing Control</caseinline><defaultinline>clicking the right mouse button</defaultinline></switchinline>."
+msgstr ""
-#: 04060181.xhp
+#: 05050100.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902475286\n"
+"05050100.xhp\n"
+"par_id3147396\n"
+"6\n"
"help.text"
-msgid "<emph>Probability</emph> is the probability value for which the inverse of the chi-square distribution is to be calculated."
-msgstr "Vlera e gjasës për të cilën do të llogaritet shprëndarja inverse standarde normale."
+msgid "Alternatively, click the sheet tab while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Alt</defaultinline></switchinline> key. Now you can change the name directly. <switchinline select=\"sys\"><caseinline select=\"UNIX\"><embedvar href=\"text/shared/00/00000099.xhp#winmanager\"/></caseinline></switchinline>"
+msgstr ""
-#: 04060181.xhp
+#: 05050300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902475282\n"
+"05050300.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "Show Sheet"
+msgstr "Trego Fletën"
-#: 04060181.xhp
+#: 05050300.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3148835\n"
+"05050300.xhp\n"
+"bm_id3148946\n"
"help.text"
-msgid "<bookmark_value>CHIINV function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "<bookmark_value>sheets; displaying</bookmark_value><bookmark_value>displaying; sheets</bookmark_value>"
+msgstr ""
-#: 04060181.xhp
+#: 05050300.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3148835\n"
-"88\n"
+"05050300.xhp\n"
+"hd_id3148946\n"
+"1\n"
"help.text"
-msgid "CHIINV"
-msgstr "CHIINV"
+msgid "Show Sheet"
+msgstr "Trego Fletën"
-#: 04060181.xhp
+#: 05050300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149906\n"
-"89\n"
+"05050300.xhp\n"
+"par_id3148799\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_CHIINV\">Returns the inverse of the one-tailed probability of the chi-squared distribution.</ahelp>"
+msgid "<variable id=\"tabeintext\"><ahelp visibility=\"visible\" hid=\".uno:Show\">Displays sheets that were previously hidden with the <emph>Hide</emph> command.</ahelp></variable> Select one sheet only to call the command. The current sheet is always selected. If a sheet other than the current sheet is selected, you can deselect it by pressing <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline> while clicking the corresponding sheet tab at the bottom of the window."
msgstr ""
-#: 04060181.xhp
+#: 05050300.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3159157\n"
-"90\n"
+"05050300.xhp\n"
+"hd_id3151112\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Hidden sheets"
+msgstr "Fletët e fshehura"
-#: 04060181.xhp
+#: 05050300.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150504\n"
-"91\n"
+"05050300.xhp\n"
+"par_id3145273\n"
+"4\n"
"help.text"
-msgid "CHIINV(Number; DegreesFreedom)"
-msgstr "Zona e numrit të sllajdit"
+msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_SHOW_TAB:LB_ENTRYLIST\" visibility=\"visible\">Displays a list of all hidden sheets in your spreadsheet document.</ahelp> To show a certain sheet, click the corresponding entry on the list and confirm with OK."
+msgstr ""
-#: 04060181.xhp
+#: 05060000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154898\n"
-"92\n"
+"05060000.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Number</emph> is the value of the error probability."
-msgstr "Kthen SAKTË nëse vlera është një numër."
+msgid "Merge and Center Cells"
+msgstr ""
-#: 04060181.xhp
+#: 05060000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154294\n"
-"93\n"
+"05060000.xhp\n"
+"hd_id3149785\n"
+"1\n"
"help.text"
-msgid "<emph>DegreesFreedom</emph> is the degrees of freedom of the experiment."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<link href=\"text/scalc/01/05060000.xhp\" name=\"Merge and Center Cells\">Merge and Center Cells</link>"
+msgstr ""
-#: 04060181.xhp
+#: 05060000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3154208\n"
-"94\n"
+"05060000.xhp\n"
+"par_id3151246\n"
+"2\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<ahelp hid=\".\">Combines the selected cells into a single cell or splits merged cells. Aligns cell content centered.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05060000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150777\n"
-"130\n"
+"05060000.xhp\n"
+"par_id3154020\n"
+"18\n"
"help.text"
-msgid "A die is thrown 1020 times. The numbers on the die 1 through 6 come up 195, 151, 148, 189, 183 and 154 times (observation values). The hypothesis that the die is not fixed is to be tested."
+msgid "Choose <emph>Format - Merge Cells - Merge and Center Cells</emph>"
msgstr ""
-#: 04060181.xhp
+#: 05060000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3153062\n"
-"131\n"
+"05060000.xhp\n"
+"par_id3148552\n"
+"4\n"
"help.text"
-msgid "The Chi square distribution of the random sample is determined by the formula given above. Since the expected value for a given number on the die for n throws is n times 1/6, thus 1020/6 = 170, the formula returns a Chi square value of 13.27."
+msgid "The merged cell receives the name of the first cell of the original cell range. Merged cells cannot be merged a second time with other cells. The range must form a rectangle, multiple selection is not supported."
msgstr ""
-#: 04060181.xhp
+#: 05060000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148806\n"
-"132\n"
+"05060000.xhp\n"
+"par_id3149665\n"
+"3\n"
"help.text"
-msgid "If the (observed) Chi square is greater than or equal to the (theoretical) Chi square CHIINV, the hypothesis will be discarded, since the deviation between theory and experiment is too great. If the observed Chi square is less that CHIINV, the hypothesis is confirmed with the indicated probability of error."
+msgid "If the cells to be merged have any contents, a security dialog is shown."
msgstr ""
-#: 04060181.xhp
+#: 05060000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149763\n"
-"95\n"
+"05060000.xhp\n"
+"par_id3153718\n"
"help.text"
-msgid "<item type=\"input\">=CHIINV(0.05;5)</item> returns 11.07."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Merging cells can lead to calculation errors in formulas in the table."
+msgstr ""
-#: 04060181.xhp
+#: 05070000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3159142\n"
-"133\n"
+"05070000.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=CHIINV(0.02;5)</item> returns 13.39."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Page Style"
+msgstr "Stili i faqes"
-#: 04060181.xhp
+#: 05070000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3158401\n"
-"134\n"
+"05070000.xhp\n"
+"hd_id3157910\n"
+"1\n"
"help.text"
-msgid "If the probability of error is 5%, the die is not true. If the probability of error is 2%, there is no reason to believe it is fixed."
+msgid "Page Style"
+msgstr "Stili i faqes"
+
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"par_id3156023\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"seitetext\"><ahelp hid=\".uno:PageFormatDialog\" visibility=\"visible\">Opens a dialog where you can define the appearance of all pages in your document.</ahelp></variable>"
msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3154260\n"
+"05070500.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>CHITEST function</bookmark_value>"
-msgstr "Shndërron një vlerë në tekst."
+msgid "Sheet"
+msgstr "Krijo"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3154260\n"
-"97\n"
+"05070500.xhp\n"
+"bm_id3150542\n"
"help.text"
-msgid "CHITEST"
-msgstr "CHITEST"
+msgid "<bookmark_value>pages; order when printing</bookmark_value><bookmark_value>printing; page order</bookmark_value>"
+msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3151052\n"
-"98\n"
+"05070500.xhp\n"
+"hd_id3156329\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_CHITEST\">Returns the probability of a deviance from a random distribution of two test series based on the chi-squared test for independence.</ahelp> CHITEST returns the chi-squared distribution of the data."
+msgid "<link href=\"text/scalc/01/05070500.xhp\" name=\"Sheet\">Sheet</link>"
msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148925\n"
-"135\n"
+"05070500.xhp\n"
+"par_id3151384\n"
+"2\n"
"help.text"
-msgid "The probability determined by CHITEST can also be determined with CHIDIST, in which case the Chi square of the random sample must then be passed as a parameter instead of the data row."
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/SheetPrintPage\">Specifies the elements to be included in the printout of all sheets with the current Page Style. Additionally, you can set the print order, the first page number, and the page scale.</ahelp>"
msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3154280\n"
-"99\n"
+"05070500.xhp\n"
+"hd_id3150542\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Print"
+msgstr "Shtyp"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149162\n"
-"100\n"
+"05070500.xhp\n"
+"par_id3125863\n"
+"4\n"
"help.text"
-msgid "CHITEST(DataB; DataE)"
+msgid "Defines which elements of the spreadsheet are to be printed."
msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3158421\n"
-"101\n"
+"05070500.xhp\n"
+"hd_id3151041\n"
+"5\n"
"help.text"
-msgid "<emph>DataB</emph> is the array of the observations."
-msgstr "Grup të dhënash në file"
+msgid "Column and row headers"
+msgstr "~Krerët e shtyllës dhe rreshtit"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3166453\n"
-"102\n"
+"05070500.xhp\n"
+"par_id3147228\n"
+"6\n"
"help.text"
-msgid "<emph>DataE</emph> is the range of the expected values."
-msgstr "Grup të dhënash në file"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_HEADER\">Specifies whether you want the column and row headers to be printed.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3146946\n"
-"103\n"
+"05070500.xhp\n"
+"hd_id3150439\n"
+"7\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Grid"
+msgstr "Rrjet"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154096\n"
-"136\n"
+"05070500.xhp\n"
+"par_id3147436\n"
+"8\n"
"help.text"
-msgid "Data_B (observed)"
-msgstr "Grupi i vëzhguar i të dhënave"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_GRID\">Prints out the borders of the individual cells as a grid.</ahelp> For the view on screen, make your choice under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"View\"><emph>View</emph></link> - <emph>Grid lines</emph>."
+msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3152948\n"
-"137\n"
+"05070500.xhp\n"
+"hd_id3145750\n"
+"9\n"
"help.text"
-msgid "Data_E (expected)"
-msgstr "Grupi i pritur i të dhënave."
+msgid "Comments"
+msgstr "Koment"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3152876\n"
-"138\n"
+"05070500.xhp\n"
+"par_id3150010\n"
+"10\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NOTES\">Prints the comments defined in your spreadsheet.</ahelp> They will be printed on a separate page, along with the corresponding cell reference."
+msgstr ""
-#: 04060181.xhp
-#, fuzzy
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3159279\n"
-"139\n"
+"05070500.xhp\n"
+"hd_id3154944\n"
+"11\n"
"help.text"
-msgid "<item type=\"input\">195</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Objects/graphics"
+msgstr "Objektet/grafikat"
-#: 04060181.xhp
-#, fuzzy
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149105\n"
-"140\n"
+"05070500.xhp\n"
+"par_id3149581\n"
+"12\n"
"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_OBJECTS\">Includes all inserted objects (if printable) and graphics with the printed document.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149922\n"
-"141\n"
+"05070500.xhp\n"
+"hd_id3149377\n"
+"13\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "Charts"
+msgstr "Diagramet"
-#: 04060181.xhp
-#, fuzzy
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148621\n"
-"142\n"
+"05070500.xhp\n"
+"par_id3148455\n"
+"14\n"
"help.text"
-msgid "<item type=\"input\">151</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_CHARTS\">Prints the charts that have been inserted into your spreadsheet.</ahelp>"
+msgstr ""
-#: 04060181.xhp
-#, fuzzy
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148987\n"
-"143\n"
+"05070500.xhp\n"
+"hd_id3153418\n"
+"15\n"
"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Drawing Objects"
+msgstr "Objektet e Vizatimit"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149417\n"
-"144\n"
+"05070500.xhp\n"
+"par_id3149122\n"
+"16\n"
"help.text"
-msgid "3"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_DRAWINGS\">Includes all drawing objects in the printed document.</ahelp>"
msgstr ""
-#: 04060181.xhp
-#, fuzzy
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148661\n"
-"145\n"
+"05070500.xhp\n"
+"hd_id3150330\n"
+"17\n"
"help.text"
-msgid "<item type=\"input\">148</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Formulas"
+msgstr "Formulat"
-#: 04060181.xhp
-#, fuzzy
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3151128\n"
-"146\n"
+"05070500.xhp\n"
+"par_id3153715\n"
+"18\n"
"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_FORMULAS\">Prints the formulas contained in the cells, instead of the results.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148467\n"
-"147\n"
+"05070500.xhp\n"
+"hd_id3156385\n"
+"19\n"
"help.text"
-msgid "4"
-msgstr "Yll 24-cepësh"
+msgid "Zero Values"
+msgstr "Vlerat zero"
-#: 04060181.xhp
-#, fuzzy
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149237\n"
-"148\n"
+"05070500.xhp\n"
+"par_id3149258\n"
+"20\n"
"help.text"
-msgid "<item type=\"input\">189</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_NULLVALS\">Specifies that cells with a zero value are printed.</ahelp>"
+msgstr ""
-#: 04060181.xhp
-#, fuzzy
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3145304\n"
-"149\n"
+"05070500.xhp\n"
+"hd_id3154022\n"
+"21\n"
"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Page Order"
+msgstr "Renditja e faqeve"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149927\n"
-"150\n"
+"05070500.xhp\n"
+"par_id3166423\n"
+"22\n"
"help.text"
-msgid "5"
+msgid "Defines the order in which data in a sheet is numbered and printed when it does not fit on one printed page."
msgstr ""
-#: 04060181.xhp
-#, fuzzy
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150630\n"
-"151\n"
+"05070500.xhp\n"
+"hd_id3152580\n"
+"23\n"
"help.text"
-msgid "<item type=\"input\">183</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Top to bottom, then right"
+msgstr "~Nga maja në fund, pastaj djathtas"
-#: 04060181.xhp
-#, fuzzy
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150423\n"
-"152\n"
+"05070500.xhp\n"
+"par_id3150205\n"
+"24\n"
"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_TOPDOW\">Prints vertically from the left column to the bottom of the sheet.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3143275\n"
-"153\n"
+"05070500.xhp\n"
+"hd_id3150786\n"
+"25\n"
"help.text"
-msgid "6"
-msgstr ""
+msgid "Left to right, then down"
+msgstr "Nga e m~ajta në të djathtë, e pastaj poshtë"
-#: 04060181.xhp
-#, fuzzy
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3144750\n"
-"154\n"
+"05070500.xhp\n"
+"par_id3154657\n"
+"26\n"
"help.text"
-msgid "<item type=\"input\">154</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/radioBTN_LEFTRIGHT\">Prints horizontally from the top row of the sheet to the right column.</ahelp>"
+msgstr ""
-#: 04060181.xhp
-#, fuzzy
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3153947\n"
-"155\n"
+"05070500.xhp\n"
+"hd_id3150887\n"
+"27\n"
"help.text"
-msgid "<item type=\"input\">170</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "First page number"
+msgstr "Numri i faqes së parë"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149481\n"
-"104\n"
+"05070500.xhp\n"
+"par_id3155378\n"
+"28\n"
"help.text"
-msgid "<item type=\"input\">=CHITEST(A1:A6;B1:B6)</item> equals 0.02. This is the probability which suffices the observed data of the theoretical Chi-square distribution."
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/checkBTN_PAGENO\">Select this option if you want the first page to start with a number other than 1.</ahelp>"
msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3148690\n"
+"05070500.xhp\n"
+"par_id3145389\n"
+"35\n"
"help.text"
-msgid "<bookmark_value>CHIDIST function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_PAGENO\">Enter the number of the first page.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3148690\n"
-"106\n"
+"05070500.xhp\n"
+"hd_id3146978\n"
+"29\n"
"help.text"
-msgid "CHIDIST"
-msgstr "CHIDIST"
+msgid "Scale"
+msgstr "Shkallë"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156338\n"
-"156\n"
+"05070500.xhp\n"
+"par_id3149408\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_CHIVERT\">Returns the probability value from the indicated Chi square that a hypothesis is confirmed.</ahelp> CHIDIST compares the Chi square value to be given for a random sample that is calculated from the sum of (observed value-expected value)^2/expected value for all values with the theoretical Chi square distribution and determines from this the probability of error for the hypothesis to be tested."
+msgid "Defines a page scale for the printed spreadsheet."
msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3151316\n"
-"157\n"
+"05070500.xhp\n"
+"par_idN1096D\n"
"help.text"
-msgid "The probability determined by CHIDIST can also be determined by CHITEST."
-msgstr ""
+msgid "Scaling mode"
+msgstr "Modi piksel"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3155123\n"
-"108\n"
+"05070500.xhp\n"
+"par_idN10971\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/comboLB_SCALEMODE\">Select a scaling mode from the list box. Appropriate controls will be shown at the side of the list box.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3158439\n"
-"109\n"
+"05070500.xhp\n"
+"hd_id3155089\n"
+"31\n"
"help.text"
-msgid "CHIDIST(Number; DegreesFreedom)"
-msgstr "Zona e numrit të sllajdit"
+msgid "Reduce/enlarge printout"
+msgstr "Zvoglo/zmadho printimin"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3148675\n"
-"110\n"
+"05070500.xhp\n"
+"par_id3159171\n"
+"32\n"
"help.text"
-msgid "<emph>Number</emph> is the chi-square value of the random sample used to determine the error probability."
+msgid "Specifies a scaling factor to scale all printed pages."
msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3155615\n"
-"111\n"
+"05070500.xhp\n"
+"par_idN1099A\n"
"help.text"
-msgid "<emph>DegreesFreedom</emph> are the degrees of freedom of the experiment."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "Scaling factor"
+msgstr "Rritje e bitmap-it"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3146787\n"
-"112\n"
+"05070500.xhp\n"
+"par_id3152899\n"
+"36\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEALL\" visibility=\"hidden\">Enter a scaling factor. Factors less than 100 reduce the pages, higher factors enlarge the pages.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3145774\n"
-"113\n"
+"05070500.xhp\n"
+"par_idN109B2\n"
"help.text"
-msgid "<item type=\"input\">=CHIDIST(13.27; 5)</item> equals 0.02."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Fit print range(s) to width/height"
+msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3156141\n"
-"158\n"
+"05070500.xhp\n"
+"par_idN109B5\n"
"help.text"
-msgid "If the Chi square value of the random sample is 13.27 and if the experiment has 5 degrees of freedom, then the hypothesis is assured with a probability of error of 2%."
+msgid "Specifies the maximum number of pages horizontally (width) and vertically (height) on which every sheet with the current Page Style is to be printed."
msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id0119200902231887\n"
+"05070500.xhp\n"
+"par_idN109BB\n"
"help.text"
-msgid "<bookmark_value>CHISQDIST function</bookmark_value><bookmark_value>chi-square distribution</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
+msgid "The print ranges are always scaled proportionally, so the resulting number of pages may be less than specified."
+msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id0119200901583452\n"
+"05070500.xhp\n"
+"par_idN109BF\n"
"help.text"
-msgid "CHISQDIST"
-msgstr "CHIDIST"
+msgid "You may clear one of the boxes, then the unspecified dimension will use as many pages as necessary."
+msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200901583471\n"
+"05070500.xhp\n"
+"par_idN109C3\n"
"help.text"
-msgid "<ahelp hid=\".\">Returns the value of the probability density function or the cumulative distribution function for the chi-square distribution.</ahelp>"
+msgid "If you clear both boxes, this will result in a scaling factor of 100%."
msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id0119200902395520\n"
+"05070500.xhp\n"
+"par_idN109CE\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Width in pages"
+msgstr "Në të gjitha faqet"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902395679\n"
+"05070500.xhp\n"
+"par_idN109D1\n"
"help.text"
-msgid "CHISQDIST(Number; Degrees Of Freedom; Cumulative)"
-msgstr "Zona e numrit të sllajdit"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEWIDTH\">Enter the maximum number of pages to be printed horizontally across.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id011920090239564\n"
+"05070500.xhp\n"
+"par_idN109E8\n"
"help.text"
-msgid "<emph>Number</emph> is the number for which the function is to be calculated."
-msgstr "Vlera për të cilin do të llogaritet shprëndarja standarde normale."
+msgid "Height in pages"
+msgstr "Në të gjitha faqet"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902395660\n"
+"05070500.xhp\n"
+"par_idN109EB\n"
"help.text"
-msgid "<emph>Degrees Of Freedom</emph> is the degrees of freedom for the chi-square function."
-msgstr "Vlera e mjetit. Vlera e mjetit të shprëndarjes log normale."
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGEHEIGHT\">Enter the maximum number of pages to be printed vertically stacked.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id0119200902395623\n"
+"05070500.xhp\n"
+"hd_id3148868\n"
+"33\n"
"help.text"
-msgid "<emph>Cumulative</emph> (optional): 0 or False calculates the probability density function. Other values or True or omitted calculates the cumulative distribution function."
+msgid "Fit print range(s) on number of pages"
msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"bm_id3150603\n"
+"05070500.xhp\n"
+"par_id3145074\n"
+"34\n"
"help.text"
-msgid "<bookmark_value>EXPONDIST function</bookmark_value> <bookmark_value>exponential distributions</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
+msgid "Specifies the maximum number of pages on which every sheet with the current Page Style is to be printed. The scale will be reduced as necessary to fit the defined number of pages."
+msgstr ""
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3150603\n"
-"115\n"
+"05070500.xhp\n"
+"par_idN10A26\n"
"help.text"
-msgid "EXPONDIST"
-msgstr "EXPONDIST"
+msgid "Number of pages"
+msgstr "Numri i faqeve:"
-#: 04060181.xhp
+#: 05070500.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3149563\n"
-"116\n"
+"05070500.xhp\n"
+"par_id3144507\n"
+"37\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_EXPONVERT\">Returns the exponential distribution.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/sheetprintpage/spinED_SCALEPAGENUM\">Enter the maximum number of pages to be printed.</ahelp>"
msgstr ""
-#: 04060181.xhp
+#: 05080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3153789\n"
-"117\n"
+"05080000.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Print Ranges"
+msgstr "Edito Intervalet e Printimit"
-#: 04060181.xhp
+#: 05080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150987\n"
-"118\n"
+"05080000.xhp\n"
+"hd_id3154013\n"
+"1\n"
"help.text"
-msgid "EXPONDIST(Number; Lambda; C)"
-msgstr "Zona e numrit të sllajdit"
+msgid "<link href=\"text/scalc/01/05080000.xhp\" name=\"Print Ranges\">Print Ranges</link>"
+msgstr ""
-#: 04060181.xhp
+#: 05080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154663\n"
-"119\n"
+"05080000.xhp\n"
+"par_id3155855\n"
+"2\n"
"help.text"
-msgid "<emph>Number</emph> is the value of the function."
-msgstr "Kthen SAKTË nëse vlera është një numër."
+msgid "<ahelp hid=\".\">Manages print ranges. Only cells within the print ranges will be printed.</ahelp>"
+msgstr ""
-#: 04060181.xhp
+#: 05080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3154569\n"
-"120\n"
+"05080000.xhp\n"
+"par_id3146119\n"
+"4\n"
"help.text"
-msgid "<emph>Lambda</emph> is the parameter value."
-msgstr "Grup të dhënash në file"
+msgid "If you do not define any print range manually, Calc assigns an automatic print range to include all the cells that are not empty."
+msgstr ""
-#: 04060181.xhp
+#: 05080000.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3147332\n"
-"121\n"
+"05080000.xhp\n"
+"hd_id3154729\n"
+"3\n"
"help.text"
-msgid "<emph>C</emph> is a logical value that determines the form of the function. <emph>C = 0</emph> calculates the density function, and <emph>C = 1</emph> calculates the distribution."
-msgstr "Grumbulluar. C=0 llogarit funksionin e dendësisë, C=1 shprëndarjen."
+msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Edit\">Edit</link>"
+msgstr ""
-#: 04060181.xhp
+#: 05080100.xhp
msgctxt ""
-"04060181.xhp\n"
-"hd_id3146133\n"
-"122\n"
+"05080100.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Define"
+msgstr "Përcakto"
-#: 04060181.xhp
+#: 05080100.xhp
msgctxt ""
-"04060181.xhp\n"
-"par_id3150357\n"
-"123\n"
+"05080100.xhp\n"
+"hd_id3145673\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=EXPONDIST(3;0.5;1)</item> returns 0.78."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<link href=\"text/scalc/01/05080100.xhp\" name=\"Define\">Define</link>"
+msgstr ""
-#: 12040400.xhp
+#: 05080100.xhp
msgctxt ""
-"12040400.xhp\n"
+"05080100.xhp\n"
+"par_id3153896\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DefinePrintArea\">Defines an active cell or selected cell area as the print range.</ahelp>"
+msgstr ""
+
+#: 05080200.xhp
+msgctxt ""
+"05080200.xhp\n"
"tit\n"
"help.text"
-msgid "Remove Filter"
-msgstr "Largo Filtrin"
+msgid "Remove"
+msgstr "Largo"
-#: 12040400.xhp
+#: 05080200.xhp
msgctxt ""
-"12040400.xhp\n"
-"hd_id3153087\n"
+"05080200.xhp\n"
+"hd_id3153562\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Remove Filter</link>"
+msgid "<link href=\"text/scalc/01/05080200.xhp\" name=\"Remove\">Remove</link>"
msgstr ""
-#: 12040400.xhp
+#: 05080200.xhp
msgctxt ""
-"12040400.xhp\n"
-"par_id3154760\n"
+"05080200.xhp\n"
+"par_id3148550\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:DataFilterRemoveFilter\">Removes the filter from the selected cell range. To enable this command, click inside the cell area where the filter was applied.</ahelp>"
+msgid "<ahelp hid=\".uno:DeletePrintArea\">Removes the defined print area.</ahelp>"
msgstr ""
-#: func_edate.xhp
-#, fuzzy
+#: 05080300.xhp
msgctxt ""
-"func_edate.xhp\n"
+"05080300.xhp\n"
"tit\n"
"help.text"
-msgid "EDATE"
-msgstr "DATA"
+msgid "Edit Print Ranges"
+msgstr "Edito Intervalet e Printimit"
-#: func_edate.xhp
+#: 05080300.xhp
msgctxt ""
-"func_edate.xhp\n"
-"bm_id3151184\n"
+"05080300.xhp\n"
+"hd_id3153088\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>EDATE function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "Edit Print Ranges"
+msgstr "Edito Intervalet e Printimit"
-#: func_edate.xhp
+#: 05080300.xhp
msgctxt ""
-"func_edate.xhp\n"
-"hd_id3151184\n"
-"213\n"
+"05080300.xhp\n"
+"par_id3159488\n"
+"2\n"
"help.text"
-msgid "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE</link></variable>"
+msgid "<variable id=\"druckbereichetext\"><ahelp hid=\".uno:EditPrintArea\">Opens a dialog where you can specify the print range.</ahelp></variable> You can also set the rows or columns which are to be repeated in every page."
msgstr ""
-#: func_edate.xhp
+#: 05080300.xhp
msgctxt ""
-"func_edate.xhp\n"
-"par_id3150880\n"
-"214\n"
+"05080300.xhp\n"
+"par_idN105AE\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_EDATE\">The result is a date which is a number of m<emph>onths</emph> away from the <emph>start date</emph>. Only months are considered; days are not used for calculation.</ahelp>"
+msgid "<embedvar href=\"text/scalc/guide/printranges.xhp#printranges\"/>"
msgstr ""
-#: func_edate.xhp
+#: 05080300.xhp
msgctxt ""
-"func_edate.xhp\n"
-"hd_id3154647\n"
-"215\n"
+"05080300.xhp\n"
+"hd_id3156281\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Print range"
+msgstr "Intervali i shtypjes"
-#: func_edate.xhp
+#: 05080300.xhp
msgctxt ""
-"func_edate.xhp\n"
-"par_id3153212\n"
-"216\n"
+"05080300.xhp\n"
+"par_id3147228\n"
+"4\n"
"help.text"
-msgid "EDATE(StartDate; Months)"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_PRINTAREA\">Allows you to modify a defined print range.</ahelp>"
msgstr ""
-#: func_edate.xhp
+#: 05080300.xhp
msgctxt ""
-"func_edate.xhp\n"
-"par_id3146860\n"
-"217\n"
+"05080300.xhp\n"
+"par_id3145174\n"
+"5\n"
"help.text"
-msgid "<emph>StartDate</emph> is a date."
-msgstr "Data kur pwrfundon periudha e parw"
+msgid "Select <emph>-none-</emph> to remove a print range definition for the current spreadsheet. Select <emph>-entire sheet-</emph> to set the current sheet as a print range. Select <emph>-selection-</emph> to define the selected area of a spreadsheet as the print range. By selecting <emph>-user-defined-</emph>, you can define a print range that you have already defined using the <emph>Format - Print Ranges - Define</emph> command. If you have given a name to a range using the <emph>Insert - Names - Define</emph> command, this name will be displayed and can be selected from the list box."
+msgstr ""
-#: func_edate.xhp
+#: 05080300.xhp
msgctxt ""
-"func_edate.xhp\n"
-"par_id3152929\n"
-"218\n"
+"05080300.xhp\n"
+"par_id3145272\n"
+"6\n"
"help.text"
-msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
+msgid "In the right-hand text box, you can enter a print range by reference or by name. If the cursor is in the <emph>Print range</emph> text box, you can also select the print range in the spreadsheet with your mouse."
msgstr ""
-#: func_edate.xhp
+#: 05080300.xhp
msgctxt ""
-"func_edate.xhp\n"
-"hd_id3151289\n"
-"219\n"
+"05080300.xhp\n"
+"hd_id3149260\n"
+"7\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Rows to repeat"
+msgstr "Rreshtat për t'u përsëritur"
-#: func_edate.xhp
+#: 05080300.xhp
msgctxt ""
-"func_edate.xhp\n"
-"par_id3155845\n"
-"220\n"
+"05080300.xhp\n"
+"par_id3147426\n"
+"8\n"
"help.text"
-msgid "What date is one month prior to 3.31.2001?"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATROW\">Choose one or more rows to print on every page. In the right text box enter the row reference, for example, \"1\" or \"$1\" or \"$2:$3\".</ahelp> The list box displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating row."
msgstr ""
-#: func_edate.xhp
+#: 05080300.xhp
msgctxt ""
-"func_edate.xhp\n"
-"par_id3155999\n"
-"221\n"
+"05080300.xhp\n"
+"par_id3155418\n"
+"9\n"
"help.text"
-msgid "<item type=\"input\">=EDATE(3.31.2001;-1)</item> returns 2.28.2001."
+msgid "You can also define repeating rows by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Rows to repeat</emph> text field in the dialog."
msgstr ""
-#: 12030100.xhp
+#: 05080300.xhp
msgctxt ""
-"12030100.xhp\n"
+"05080300.xhp\n"
+"hd_id3149581\n"
+"10\n"
+"help.text"
+msgid "Columns to repeat"
+msgstr "Shtyllat për tu përsëritur"
+
+#: 05080300.xhp
+msgctxt ""
+"05080300.xhp\n"
+"par_id3155602\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_AREAS:ED_REPEATCOL\">Choose one or more columns to print on every page. In the right text box enter the column reference, for example, \"A\" or \"AB\" or \"$C:$E\".</ahelp> The list box then displays <emph>-user defined-</emph>. You can also select <emph>-none-</emph> to remove a defined repeating column."
+msgstr ""
+
+#: 05080300.xhp
+msgctxt ""
+"05080300.xhp\n"
+"par_id3150749\n"
+"12\n"
+"help.text"
+msgid "You can also define repeating columns by dragging the mouse in the spreadsheet, if the cursor is in the <emph>Columns to repeat</emph> text field in the dialog."
+msgstr ""
+
+#: 05080400.xhp
+msgctxt ""
+"05080400.xhp\n"
"tit\n"
"help.text"
-msgid "Sort Criteria"
-msgstr "Kriteret e Klasifikimit"
+msgid "Add"
+msgstr "Shto"
-#: 12030100.xhp
+#: 05080400.xhp
msgctxt ""
-"12030100.xhp\n"
-"bm_id3152350\n"
+"05080400.xhp\n"
+"hd_id3149457\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>sorting; sort criteria for database ranges</bookmark_value>"
+msgid "<link href=\"text/scalc/01/05080400.xhp\" name=\"Add\">Add</link>"
msgstr ""
-#: 12030100.xhp
+#: 05080400.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3152350\n"
+"05080400.xhp\n"
+"par_id3156423\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:AddPrintArea\">Adds the current selection to the defined print areas.</ahelp>"
+msgstr ""
+
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Styles and Formatting"
+msgstr "Struktura dhe formatimi"
+
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"bm_id3150447\n"
+"help.text"
+msgid "<bookmark_value>Stylist, see Styles and Formatting window</bookmark_value> <bookmark_value>Styles and Formatting window</bookmark_value> <bookmark_value>formats; Styles and Formatting window</bookmark_value> <bookmark_value>formatting; Styles and Formatting window</bookmark_value> <bookmark_value>paint can for applying styles</bookmark_value>"
+msgstr ""
+
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"hd_id3150447\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12030100.xhp\" name=\"Sort Criteria\">Sort Criteria</link>"
+msgid "<link href=\"text/scalc/01/05100000.xhp\" name=\"Styles and Formatting\">Styles and Formatting</link>"
msgstr ""
-#: 12030100.xhp
+#: 05100000.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3151385\n"
+"05100000.xhp\n"
+"par_id3147434\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortcriteria/SortCriteriaPage\">Specify the sorting options for the selected range.</ahelp>"
+msgid "Use the Styles and Formatting window to assign styles to objects and text sections. You can update Styles, modify existing Styles or create new Styles."
msgstr ""
-#: 12030100.xhp
+#: 05100000.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3152462\n"
-"24\n"
+"05100000.xhp\n"
+"par_id3149665\n"
+"30\n"
"help.text"
-msgid "Ensure that you include any row and column titles in the selection."
+msgid "The Styles and Formatting <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"dockable window\">dockable window</link> can remain open while editing the document."
msgstr ""
-#: 12030100.xhp
+#: 05100000.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3147428\n"
-"3\n"
+"05100000.xhp\n"
+"hd_id3150012\n"
+"36\n"
"help.text"
-msgid "Sort by"
-msgstr "Klasifiko sipas"
+msgid "How to apply a cell style:"
+msgstr "Aplikon një Stil në qelinë e formulës."
-#: 12030100.xhp
+#: 05100000.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3155854\n"
-"4\n"
+"05100000.xhp\n"
+"par_id3159155\n"
+"37\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortkey/sortlb\">Select the column that you want to use as the primary sort key.</ahelp>"
+msgid "Select the cell or cell range."
+msgstr "Referenca në një qeli ose një interval."
+
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3145749\n"
+"38\n"
+"help.text"
+msgid "Double-click the style in the Styles and Formatting window."
msgstr ""
-#: 12030100.xhp
+#: 05100000.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3146121\n"
-"5\n"
+"05100000.xhp\n"
+"hd_id3153877\n"
+"4\n"
"help.text"
-msgid "Ascending"
-msgstr "Në rritje"
+msgid "Cell Styles"
+msgstr "Stilet e Qelive"
-#: 12030100.xhp
+#: 05100000.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3148645\n"
+"05100000.xhp\n"
+"par_id3145801\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortkey/up\">Sorts the selection from the lowest value to the highest value. The sorting rules are given by the locale. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
+msgid "<ahelp hid=\".uno:ParaStyle\">Displays the list of the available Cell Styles for <link href=\"text/shared/00/00000005.xhp#formatierung\" name=\"indirect cell formatting\">indirect cell formatting</link>.</ahelp>"
msgstr ""
-#: 12030100.xhp
+#: 05100000.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3155411\n"
+"05100000.xhp\n"
+"par_id3150751\n"
+"help.text"
+msgid "<image id=\"img_id3153714\" src=\"sc/res/sf01.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153714\">Icon</alt></image>"
+msgstr ""
+
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3154255\n"
+"5\n"
+"help.text"
+msgid "Cell Styles"
+msgstr "Stilet e Qelive"
+
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"hd_id3153963\n"
"7\n"
"help.text"
-msgid "Descending"
-msgstr "Në zvogëlim"
+msgid "Page Styles"
+msgstr "Stilet e faqes"
-#: 12030100.xhp
+#: 05100000.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3151075\n"
-"8\n"
+"05100000.xhp\n"
+"par_id3147003\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"modules/scalc/ui/sortkey/down\">Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
+msgid "<ahelp hid=\".uno:PageStyle\">Displays the Page Styles available for indirect page formatting.</ahelp>"
msgstr ""
-#: 12030100.xhp
+#: 05100000.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3154492\n"
-"9\n"
+"05100000.xhp\n"
+"par_id3159100\n"
"help.text"
-msgid "Then by"
-msgstr "Klasifiko sipas"
+msgid "<image id=\"img_id3149814\" src=\"sw/imglst/sf04.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149814\">Icon</alt></image>"
+msgstr ""
-#: 12030100.xhp
+#: 05100000.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3156283\n"
+"05100000.xhp\n"
+"par_id3150361\n"
+"8\n"
+"help.text"
+msgid "Page Styles"
+msgstr "Stilet e faqes"
+
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"hd_id3150202\n"
"10\n"
"help.text"
-msgid "Select the column that you want to use as the secondary sort key."
+msgid "Fill Format Mode"
+msgstr "Plotëso modin për formatim"
+
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3155531\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"HID_TEMPLDLG_WATERCAN\">Turns the Fill Format mode on and off. Use the paint can to assign the Style selected in the Styles and Formatting window.</ahelp>"
msgstr ""
-#: 12030100.xhp
+#: 05100000.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3149413\n"
+"05100000.xhp\n"
+"par_id3155087\n"
+"help.text"
+msgid "<image id=\"img_id3153068\" src=\"cmd/sc_fillstyle.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153068\">Icon</alt></image>"
+msgstr ""
+
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3156198\n"
"11\n"
"help.text"
-msgid "Ascending"
-msgstr "Në rritje"
+msgid "Fill Format Mode"
+msgstr "Plotëso modin për formatim"
-#: 12030100.xhp
+#: 05100000.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3154018\n"
-"12\n"
+"05100000.xhp\n"
+"hd_id3148870\n"
+"13\n"
"help.text"
-msgid "Sorts the selection from the lowest value to the highest value. You can define the sort rules on Data - Sort - Options. You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgid "How to apply a new style with the paint can:"
msgstr ""
-#: 12030100.xhp
+#: 05100000.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3146972\n"
-"13\n"
+"05100000.xhp\n"
+"par_id3145078\n"
+"27\n"
"help.text"
-msgid "Descending"
-msgstr "Në zvogëlim"
+msgid "Select the desired style from the Styles and Formatting window."
+msgstr ""
-#: 12030100.xhp
+#: 05100000.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3145640\n"
-"14\n"
+"05100000.xhp\n"
+"par_id3159098\n"
+"28\n"
"help.text"
-msgid "Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options. You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgid "Click the <emph>Fill Format Mode</emph> icon."
msgstr ""
-#: 12030100.xhp
+#: 05100000.xhp
msgctxt ""
-"12030100.xhp\n"
-"hd_id3150300\n"
-"21\n"
+"05100000.xhp\n"
+"par_id3148609\n"
+"15\n"
"help.text"
-msgid "Sort Ascending/Descending"
-msgstr "Renditja e rendit: 0 do të thotë në rritje, 1 do të thotë në rënje."
+msgid "Click a cell to format it, or drag your mouse over a certain range to format the whole range. Repeat this action for other cells and ranges."
+msgstr ""
-#: 12030100.xhp
+#: 05100000.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3158212\n"
-"22\n"
+"05100000.xhp\n"
+"par_id3149438\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\".uno:SortDescending\"><variable id=\"sytext\">Sorts the selection from the highest to the lowest value, or from the lowest to the highest value. Number fields are sorted by size and text fields by the order of the characters. You can define the sort rules on Data - Sort - Options.</variable></ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
+msgid "Click the <emph>Fill Format Mode</emph> again to exit this mode."
msgstr ""
-#: 12030100.xhp
+#: 05100000.xhp
msgctxt ""
-"12030100.xhp\n"
-"par_id3159236\n"
-"25\n"
+"05100000.xhp\n"
+"hd_id3153975\n"
+"16\n"
"help.text"
-msgid "Icons on the <emph>Standard</emph> toolbar"
+msgid "New Style from Selection"
+msgstr "Stili i ri nga përzgjedhja"
+
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3149499\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"HID_TEMPLDLG_NEWBYEXAMPLE\">Creates a new style based on the formatting of a selected object.</ahelp> Assign a name for the style in the <link href=\"text/shared/01/05140100.xhp\" name=\"Create Style\">Create Style</link> dialog."
msgstr ""
-#: 04010100.xhp
+#: 05100000.xhp
msgctxt ""
-"04010100.xhp\n"
-"tit\n"
+"05100000.xhp\n"
+"par_id3150050\n"
"help.text"
-msgid "Row Break"
-msgstr "~Thyerja e Rreshtit"
+msgid "<image id=\"img_id3154649\" src=\"cmd/sc_stylenewbyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3154649\">Icon</alt></image>"
+msgstr ""
-#: 04010100.xhp
+#: 05100000.xhp
msgctxt ""
-"04010100.xhp\n"
-"bm_id3153821\n"
+"05100000.xhp\n"
+"par_id3146963\n"
+"17\n"
"help.text"
-msgid "<bookmark_value>sheets; inserting row breaks</bookmark_value><bookmark_value>row breaks; inserting</bookmark_value><bookmark_value>inserting; manual row breaks</bookmark_value><bookmark_value>manual row breaks</bookmark_value>"
+msgid "New Style from Selection"
+msgstr "Stili i ri nga përzgjedhja"
+
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"hd_id3153813\n"
+"19\n"
+"help.text"
+msgid "Update Style"
+msgstr "Stili i azhurimit"
+
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3154707\n"
+"21\n"
+"help.text"
+msgid "<ahelp hid=\"HID_TEMPLDLG_UPDATEBYEXAMPLE\">Updates the Style selected in the Styles and Formatting window with the current formatting of the selected object.</ahelp>"
msgstr ""
-#: 04010100.xhp
+#: 05100000.xhp
msgctxt ""
-"04010100.xhp\n"
-"hd_id3153821\n"
-"1\n"
+"05100000.xhp\n"
+"par_id3145118\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04010100.xhp\" name=\"Row Break\">Row Break</link>"
+msgid "<image id=\"img_id3155754\" src=\"cmd/sc_styleupdatebyexample.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155754\">Icon</alt></image>"
msgstr ""
-#: 04010100.xhp
+#: 05100000.xhp
msgctxt ""
-"04010100.xhp\n"
-"par_id3149656\n"
-"2\n"
+"05100000.xhp\n"
+"par_id3147501\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsertRowBreak\">Inserts a row break (horizontal page break) above the selected cell.</ahelp>"
+msgid "Update Style"
+msgstr "Stili i azhurimit"
+
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_idN109BE\n"
+"help.text"
+msgid "Style List"
+msgstr "Kryerresht i listës"
+
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_idN109C2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_TEMPLATE_FMT\">Displays the list of the styles from the selected style category.</ahelp>"
msgstr ""
-#: 04010100.xhp
+#: 05100000.xhp
msgctxt ""
-"04010100.xhp\n"
-"par_id3156422\n"
-"3\n"
+"05100000.xhp\n"
+"par_idN109D1\n"
"help.text"
-msgid "The manual row break is indicated by a dark blue horizontal line."
+msgid "In the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link> you can choose commands to create a new style, delete a user-defined style, or change the selected style."
msgstr ""
-#: 04060101.xhp
+#: 05100000.xhp
msgctxt ""
-"04060101.xhp\n"
+"05100000.xhp\n"
+"hd_id3149053\n"
+"24\n"
+"help.text"
+msgid "Style Groups"
+msgstr "Grupe volumi:"
+
+#: 05100000.xhp
+msgctxt ""
+"05100000.xhp\n"
+"par_id3147299\n"
+"25\n"
+"help.text"
+msgid "<ahelp hid=\"HID_TEMPLATE_FILTER\">Lists the available style groups.</ahelp>"
+msgstr ""
+
+#: 05100100.xhp
+msgctxt ""
+"05100100.xhp\n"
"tit\n"
"help.text"
-msgid "Database Functions"
-msgstr "Funksionet statistikore"
+msgid "Merge Cells"
+msgstr "Bashko qelizat"
-#: 04060101.xhp
+#: 05100100.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3148946\n"
+"05100100.xhp\n"
+"hd_id3154765\n"
"help.text"
-msgid "<bookmark_value>Function Wizard; databases</bookmark_value> <bookmark_value>functions; database functions</bookmark_value> <bookmark_value>databases; functions in $[officename] Calc</bookmark_value>"
+msgid "Merge Cells"
+msgstr "Bashko qelizat"
+
+#: 05100100.xhp
+msgctxt ""
+"05100100.xhp\n"
+"par_id3147406\n"
+"help.text"
+msgid "<ahelp hid=\".\">Combines the contents of the selected cells into a single cell.</ahelp>"
msgstr ""
-#: 04060101.xhp
+#: 05100100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3148946\n"
-"1\n"
+"05100100.xhp\n"
+"par_id3154351\n"
"help.text"
-msgid "Database Functions"
-msgstr "Funksionet statistikore"
+msgid "Choose <emph>Format - Merge Cells - Merge Cells</emph>"
+msgstr ""
-#: 04060101.xhp
+#: 05100200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145173\n"
-"2\n"
+"05100200.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"datenbanktext\">This section deals with functions used with data organized as one row of data for one record. </variable>"
+msgid "Split Cells"
+msgstr "Ndaj qelizat"
+
+#: 05100200.xhp
+msgctxt ""
+"05100200.xhp\n"
+"hd_id3154654\n"
+"help.text"
+msgid "Split Cells"
+msgstr "Ndaj qelizat"
+
+#: 05100200.xhp
+msgctxt ""
+"05100200.xhp\n"
+"par_id3083451\n"
+"help.text"
+msgid "<ahelp hid=\".\">Splits previously merged cells.</ahelp>"
msgstr ""
-#: 04060101.xhp
+#: 05100200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154016\n"
-"186\n"
+"05100200.xhp\n"
+"par_id3154023\n"
"help.text"
-msgid "The Database category may be confused with a database integrated in $[officename]. However, there is no connection between a database in $[officename] and the Database category in $[officename] Calc."
+msgid "Choose <emph>Format - Merge Cells - Split Cells</emph>"
msgstr ""
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3150329\n"
-"190\n"
+"05110000.xhp\n"
+"tit\n"
"help.text"
-msgid "Example Data:"
-msgstr "Të dhënat për ["
+msgid "AutoFormat"
+msgstr "AutoFormat"
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153713\n"
-"191\n"
+"05110000.xhp\n"
+"hd_id3149666\n"
+"1\n"
"help.text"
-msgid "The following data will be used in some of the function description examples:"
+msgid "<variable id=\"autoformat\"><link href=\"text/scalc/01/05110000.xhp\" name=\"AutoFormat\">AutoFormat</link></variable>"
msgstr ""
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155766\n"
-"3\n"
+"05110000.xhp\n"
+"par_id3145367\n"
+"2\n"
"help.text"
-msgid "The range A1:E10 lists the children invited to Joe's birthday party. The following information is given for each entry: column A shows the name, B the grade, then age in years, distance to school in meters and weight in kilograms."
+msgid "<variable id=\"autoformattext\"><ahelp hid=\".\">Use this command to apply an AutoFormat to a selected sheet area or to define your own AutoFormats.</ahelp></variable>"
msgstr ""
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145232\n"
+"05110000.xhp\n"
+"hd_id3148455\n"
+"3\n"
+"help.text"
+msgid "Format"
+msgstr "Formati"
+
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"par_id3145799\n"
"4\n"
"help.text"
-msgid "A"
-msgstr "A"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_AUTOFORMAT:LB_FORMAT\">Choose a predefined AutoFormat to apply to a selected area in your sheet.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146316\n"
+"05110000.xhp\n"
+"hd_id3149410\n"
"5\n"
"help.text"
-msgid "B"
-msgstr "B"
+msgid "Add"
+msgstr "Shto"
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150297\n"
+"05110000.xhp\n"
+"par_id3154017\n"
"6\n"
"help.text"
-msgid "C"
-msgstr "C"
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_AUTOFORMAT:BTN_ADD\">Allows you to add the current formatting of a range of at least 4 x 4 cells to the list of predefined AutoFormats.</ahelp> The <link href=\"text/shared/01/05150101.xhp\" name=\"Add AutoFormat\">Add AutoFormat</link> dialog then appears."
+msgstr ""
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150344\n"
+"05110000.xhp\n"
+"par_id3153708\n"
+"29\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_AUTOFMT_NAME\">Enter a name and click <emph>OK</emph>. </ahelp>"
+msgstr ""
+
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"hd_id3150044\n"
"7\n"
"help.text"
-msgid "D"
-msgstr "DB"
+msgid "More"
+msgstr "Më shumë"
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150785\n"
+"05110000.xhp\n"
+"par_id3146920\n"
"8\n"
"help.text"
-msgid "E"
-msgstr "E"
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_AUTOFORMAT:BTN_MORE\">Opens the <emph>Formatting</emph> section, which displays the formatting overrides that can be applied to the spreadsheet. Deselecting an option keeps the format of the current spreadsheet for that format type.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150090\n"
+"05110000.xhp\n"
+"hd_id3155961\n"
"9\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "Formatting"
+msgstr "Formatim"
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152992\n"
+"05110000.xhp\n"
+"par_id3153965\n"
"10\n"
"help.text"
-msgid "<item type=\"input\">Name</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "In this section you can select or deselect the available formatting options. If you want to keep any of the settings currently in your spreadsheet, deselect the corresponding option."
+msgstr ""
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155532\n"
+"05110000.xhp\n"
+"hd_id3154021\n"
"11\n"
"help.text"
-msgid "<item type=\"input\">Grade</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Number format"
+msgstr "Formati i numrit"
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3156448\n"
+"05110000.xhp\n"
+"par_id3159239\n"
"12\n"
"help.text"
-msgid "<item type=\"input\">Age</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_NUMFORMAT\">When marked, specifies that you want to retain the number format of the selected format.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154486\n"
+"05110000.xhp\n"
+"hd_id3149530\n"
"13\n"
"help.text"
-msgid "<item type=\"input\">Distance to School</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Borders"
+msgstr "Kufinjtë"
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152899\n"
+"05110000.xhp\n"
+"par_id3145259\n"
"14\n"
"help.text"
-msgid "<item type=\"input\">Weight</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_BORDER\">When marked, specifies that you want to retain the border of the selected format.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153816\n"
+"05110000.xhp\n"
+"hd_id3154657\n"
"15\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "Font"
+msgstr "Fonti"
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3151240\n"
+"05110000.xhp\n"
+"par_id3152990\n"
"16\n"
"help.text"
-msgid "<item type=\"input\">Andy</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_FONT\">When marked, specifies that you want to retain the font of the selected format.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3156016\n"
+"05110000.xhp\n"
+"hd_id3155379\n"
"17\n"
"help.text"
-msgid "<item type=\"input\">3</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Pattern"
+msgstr "Model"
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145073\n"
+"05110000.xhp\n"
+"par_id3150368\n"
"18\n"
"help.text"
-msgid "<item type=\"input\">9</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_PATTERN\">When marked, specifies that you want to retain the pattern of the selected format.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154956\n"
+"05110000.xhp\n"
+"hd_id3146115\n"
"19\n"
"help.text"
-msgid "<item type=\"input\">150</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Alignment"
+msgstr "Mbështetje"
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153976\n"
+"05110000.xhp\n"
+"par_id3156445\n"
"20\n"
"help.text"
-msgid "<item type=\"input\">40</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ALIGNMENT\">When marked, specifies that you want to retain the alignment of the selected format.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150894\n"
+"05110000.xhp\n"
+"hd_id3155811\n"
"21\n"
"help.text"
-msgid "3"
-msgstr ""
+msgid "AutoFit width and height"
+msgstr "A~utoPërshtat gjerësinë dhe lartësinë"
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152870\n"
+"05110000.xhp\n"
+"par_id3148703\n"
"22\n"
"help.text"
-msgid "<item type=\"input\">Betty</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_AUTOFORMAT:BTN_ADJUST\">When marked, specifies that you want to retain the width and height of the selected cells of the selected format.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149692\n"
+"05110000.xhp\n"
+"hd_id3159223\n"
+"26\n"
+"help.text"
+msgid "Rename"
+msgstr "Riemëro"
+
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"par_id3153064\n"
+"27\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_RENAME_AUTOFMT\">Opens a dialog where you can change the specification of the selected AutoFormat.</ahelp> The button is only visible if you clicked the <emph>More</emph> button."
+msgstr ""
+
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"par_id3153912\n"
+"28\n"
+"help.text"
+msgid "The <emph>Rename AutoFormat</emph> dialog opens.<ahelp hid=\"HID_SC_REN_AFMT_NAME\"> Enter the new name of the AutoFormat here.</ahelp>"
+msgstr ""
+
+#: 05110000.xhp
+msgctxt ""
+"05110000.xhp\n"
+"hd_id3155264\n"
"23\n"
"help.text"
-msgid "<item type=\"input\">4</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "More"
+msgstr "Më shumë"
-#: 04060101.xhp
+#: 05110000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154652\n"
+"05110000.xhp\n"
+"par_id3159094\n"
"24\n"
"help.text"
-msgid "<item type=\"input\">10</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Closes the <emph>Formatting</emph> options section, if it is currently open."
+msgstr ""
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149381\n"
-"25\n"
+"05120000.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">1000</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Conditional Formatting"
+msgstr "Formatizim i Kushtëzuar"
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153812\n"
-"26\n"
+"05120000.xhp\n"
+"hd_id3155132\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">42</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Conditional Formatting"
+msgstr "Formatizim i Kushtëzuar"
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146965\n"
-"27\n"
+"05120000.xhp\n"
+"par_id3163710\n"
+"2\n"
"help.text"
-msgid "4"
-msgstr "Yll 24-cepësh"
+msgid "<variable id=\"bedingtetext\"><ahelp hid=\".uno:ConditionalFormatDialog\">Choose <emph>Conditional Formatting</emph> to define format styles depending on certain conditions.</ahelp></variable> If a style was already assigned to a cell, it remains unchanged. The style entered here is then evaluated. You can enter three conditions that query the contents of cell values or formulas. The conditions are evaluated from 1 to 3. If the condition 1 matches the condition, the defined style will be used. Otherwise, condition 2 is evaluated, and its defined style used. If this style does not match, condition 3 is evaluated."
+msgstr ""
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155596\n"
-"28\n"
+"05120000.xhp\n"
+"par_id2414014\n"
"help.text"
-msgid "<item type=\"input\">Charles</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose Tools - Cell Contents - AutoCalculate (you see a check mark next to the command when AutoCalculate is enabled)."
+msgstr ""
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3147244\n"
-"29\n"
+"05120000.xhp\n"
+"bm_id3153189\n"
"help.text"
-msgid "<item type=\"input\">3</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<bookmark_value>conditional formatting; conditions</bookmark_value>"
+msgstr ""
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149871\n"
-"30\n"
+"05120000.xhp\n"
+"hd_id3153189\n"
+"18\n"
"help.text"
-msgid "<item type=\"input\">10</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Condition 1/2/3"
+msgstr "Kushti"
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155752\n"
-"31\n"
+"05120000.xhp\n"
+"par_id3149413\n"
+"4\n"
"help.text"
-msgid "<item type=\"input\">300</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONDFORMAT:CBX_COND3\">Mark the boxes corresponding to each condition and enter the corresponding condition.</ahelp> To close the dialog, click <emph>OK</emph>."
+msgstr ""
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149052\n"
-"32\n"
+"05120000.xhp\n"
+"hd_id3147394\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">51</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Cell Value / Formula"
+msgstr "Kthen formulën e një qelie të formulës."
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146097\n"
-"33\n"
+"05120000.xhp\n"
+"par_id3155602\n"
+"6\n"
"help.text"
-msgid "5"
-msgstr "25%"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_1\">Specifies if conditional formatting is dependent on a cell value or a formula.</ahelp> If you select a formula as a reference, the <emph>Cell Value Condition</emph> box is displayed to the right of the <emph>Cell value/Formula</emph> field. If the condition is \"Formula is\", enter a cell reference. If the cell reference is a value other than zero, the condition matches."
+msgstr ""
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3147296\n"
-"34\n"
+"05120000.xhp\n"
+"hd_id3153709\n"
+"7\n"
"help.text"
-msgid "<item type=\"input\">Daniel</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Cell Value Condition"
+msgstr "Vlera e qelisë është"
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150393\n"
-"35\n"
+"05120000.xhp\n"
+"par_id3153764\n"
+"8\n"
"help.text"
-msgid "<item type=\"input\">5</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_2\">Choose a condition for the format to be applied to the selected cells.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145236\n"
-"36\n"
+"05120000.xhp\n"
+"hd_id3156384\n"
+"9\n"
"help.text"
-msgid "<item type=\"input\">11</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Cell Style"
+msgstr "Stili i qelisë"
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150534\n"
-"37\n"
+"05120000.xhp\n"
+"par_id3145228\n"
+"10\n"
"help.text"
-msgid "<item type=\"input\">1200</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONDFORMAT:LB_COND3_TEMPLATE\">Choose the style to be applied if the specified condition matches.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150375\n"
-"38\n"
+"05120000.xhp\n"
+"hd_id0509200913175331\n"
"help.text"
-msgid "<item type=\"input\">48</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "New Style"
+msgstr "Stili i qelisë"
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3159121\n"
-"39\n"
+"05120000.xhp\n"
+"par_id0509200913175368\n"
"help.text"
-msgid "6"
+msgid "<ahelp hid=\".\">If you haven't already defined a style to be used, you can click New Style to open the Organizer tab page of the Cell Style dialog. Define a new style there and click OK.</ahelp>"
msgstr ""
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150456\n"
-"40\n"
+"05120000.xhp\n"
+"hd_id3146316\n"
+"11\n"
"help.text"
-msgid "<item type=\"input\">Eva</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Parameter field"
+msgstr "Emri i fushës"
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146886\n"
-"41\n"
+"05120000.xhp\n"
+"par_id3155114\n"
+"12\n"
"help.text"
-msgid "<item type=\"input\">2</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONDFORMAT:EDT_COND3_2\" visibility=\"hidden\">Enter a reference, value or formula.</ahelp> Enter a reference, value or formula in the parameter field, or in both parameter fields if you have selected a condition that requires two parameters. You can also enter formulas containing relative references."
+msgstr ""
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149945\n"
-"42\n"
+"05120000.xhp\n"
+"par_id3145257\n"
+"13\n"
"help.text"
-msgid "<item type=\"input\">8</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Once the parameters have been defined, the condition is complete. It may appear as:"
+msgstr ""
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3157904\n"
-"43\n"
+"05120000.xhp\n"
+"par_id3150784\n"
+"14\n"
"help.text"
-msgid "<item type=\"input\">650</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Cell value is equal 0: Cell style Null value (You must have already defined a cell style with this name before assigning it to a condition)."
+msgstr ""
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149352\n"
-"44\n"
+"05120000.xhp\n"
+"par_id3150365\n"
+"15\n"
"help.text"
-msgid "<item type=\"input\">33</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Cell value is between $B$20 and $B$21: Cell style Result (The corresponding value limits must already exist in cells B20 and B21)."
+msgstr ""
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150028\n"
-"45\n"
+"05120000.xhp\n"
+"par_id3152992\n"
+"16\n"
"help.text"
-msgid "7"
+msgid "Formula is SUM($A$1:$A$5)=10: Cell style Result (The selected cells are formatted with the Result style if the sum of the contents in cells A1 to A5 is equal to 10)."
msgstr ""
-#: 04060101.xhp
+#: 05120000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145826\n"
-"46\n"
+"05120000.xhp\n"
+"par_idN107E1\n"
"help.text"
-msgid "<item type=\"input\">F</item><item type=\"input\">rank</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<embedvar href=\"text/scalc/guide/cellstyle_conditional.xhp#cellstyle_conditional\"/>"
+msgstr ""
-#: 04060101.xhp
+#: 06020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150743\n"
-"47\n"
+"06020000.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">2</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Hyphenation"
+msgstr "Hifenacion"
-#: 04060101.xhp
+#: 06020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154844\n"
-"48\n"
+"06020000.xhp\n"
+"bm_id3159399\n"
"help.text"
-msgid "<item type=\"input\">7</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<bookmark_value>automatic hyphenation in spreadsheets</bookmark_value><bookmark_value>hyphenation; in spreadsheets</bookmark_value><bookmark_value>syllables in spreadsheets</bookmark_value>"
+msgstr ""
-#: 04060101.xhp
+#: 06020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148435\n"
-"49\n"
+"06020000.xhp\n"
+"hd_id3159399\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">3</item><item type=\"input\">00</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Hyphenation"
+msgstr "Hifenacion"
-#: 04060101.xhp
+#: 06020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148882\n"
-"50\n"
+"06020000.xhp\n"
+"par_id3145068\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">4</item><item type=\"input\">2</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<variable id=\"silben\"><ahelp hid=\".uno:Hyphenate\">The <emph>Hyphenation </emph>command calls the dialog for setting the hyphenation in $[officename] Calc.</ahelp></variable>"
+msgstr ""
-#: 04060101.xhp
+#: 06020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150140\n"
-"51\n"
+"06020000.xhp\n"
+"par_id3154366\n"
+"3\n"
"help.text"
-msgid "8"
+msgid "You can only turn on the automatic hyphenation in $[officename] Calc when the <link href=\"text/shared/01/05340300.xhp\" name=\"row break\">row break</link> feature is active."
msgstr ""
-#: 04060101.xhp
+#: 06020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146137\n"
-"52\n"
+"06020000.xhp\n"
+"hd_id3153192\n"
+"4\n"
"help.text"
-msgid "<item type=\"input\">Greta</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Hyphenation for selected cells."
+msgstr "Numri minimal i karaktereve për bashkangjitje me vizë:"
-#: 04060101.xhp
+#: 06020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148739\n"
-"53\n"
+"06020000.xhp\n"
+"par_id3150868\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">1</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Select the cells for which you want to change the hyphenation."
+msgstr ""
-#: 04060101.xhp
+#: 06020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148583\n"
-"54\n"
+"06020000.xhp\n"
+"par_id3150440\n"
+"6\n"
"help.text"
-msgid "<item type=\"input\">7</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
+msgstr ""
-#: 04060101.xhp
+#: 06020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154556\n"
-"55\n"
+"06020000.xhp\n"
+"par_id3156441\n"
+"7\n"
"help.text"
-msgid "<item type=\"input\">200</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "The <emph>Format Cells</emph> dialog appears with the <emph>Alignment</emph> tab page open."
+msgstr ""
-#: 04060101.xhp
+#: 06020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155255\n"
-"56\n"
+"06020000.xhp\n"
+"par_id3149260\n"
+"12\n"
"help.text"
-msgid "<item type=\"input\">36</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Mark the <emph>Wrap text automatically</emph> and <emph>Hyphenation active</emph> check boxes."
+msgstr ""
-#: 04060101.xhp
+#: 06020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145141\n"
-"57\n"
+"06020000.xhp\n"
+"hd_id3153094\n"
+"8\n"
"help.text"
-msgid "9"
+msgid "Hyphenation for Drawing Objects"
+msgstr "Pop-up meny për objekte të vizatimit"
+
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3148577\n"
+"9\n"
+"help.text"
+msgid "Select a drawing object."
+msgstr "Shto objektin e vizatimit: $1"
+
+#: 06020000.xhp
+msgctxt ""
+"06020000.xhp\n"
+"par_id3156285\n"
+"10\n"
+"help.text"
+msgid "Choose <emph>Tools - Language - Hyphenation</emph>."
msgstr ""
-#: 04060101.xhp
+#: 06020000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153078\n"
-"58\n"
+"06020000.xhp\n"
+"par_id3147394\n"
+"11\n"
"help.text"
-msgid "<item type=\"input\">Harry</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Each time you call the command you turn the hyphenation for the drawing object on or off. A check mark shows the current status."
+msgstr ""
-#: 04060101.xhp
+#: 06030000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149955\n"
-"59\n"
+"06030000.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">3</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Detective"
+msgstr "Zbulues"
-#: 04060101.xhp
+#: 06030000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150005\n"
-"60\n"
+"06030000.xhp\n"
+"bm_id3151245\n"
"help.text"
-msgid "<item type=\"input\">9</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<bookmark_value>cell links search</bookmark_value> <bookmark_value>searching; links in cells</bookmark_value> <bookmark_value>traces;precedents and dependents</bookmark_value> <bookmark_value>Formula Auditing,see Detective</bookmark_value> <bookmark_value>Detective</bookmark_value>"
+msgstr ""
-#: 04060101.xhp
+#: 06030000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155951\n"
-"61\n"
+"06030000.xhp\n"
+"hd_id3151245\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">1200</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<link href=\"text/scalc/01/06030000.xhp\" name=\"Detective\">Detective</link>"
+msgstr ""
-#: 04060101.xhp
+#: 06030000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145169\n"
-"62\n"
+"06030000.xhp\n"
+"par_id3151211\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">44</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "This command activates the Spreadsheet Detective. With the Detective, you can trace the dependencies from the current formula cell to the cells in the spreadsheet."
+msgstr ""
-#: 04060101.xhp
+#: 06030000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153571\n"
-"63\n"
+"06030000.xhp\n"
+"par_id3150447\n"
+"3\n"
"help.text"
-msgid "10"
-msgstr "Titullimi 10"
+msgid "Once you have defined a trace, you can point with the mouse cursor to the trace. The mouse cursor will change its shape. Double-click the trace with this cursor to select the referenced cell at the end of the trace."
+msgstr ""
-#: 04060101.xhp
+#: 06030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148761\n"
-"64\n"
+"06030100.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">Irene</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Trace Precedents"
+msgstr "Gjurmo Parapraket"
-#: 04060101.xhp
+#: 06030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149877\n"
-"65\n"
+"06030100.xhp\n"
+"bm_id3155628\n"
"help.text"
-msgid "<item type=\"input\">2</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<bookmark_value>cells; tracing precedents</bookmark_value><bookmark_value>formula cells;tracing precedents</bookmark_value>"
+msgstr ""
-#: 04060101.xhp
+#: 06030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154327\n"
-"66\n"
+"06030100.xhp\n"
+"hd_id3155628\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">8</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedents\">Trace Precedents</link>"
+msgstr ""
-#: 04060101.xhp
+#: 06030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155435\n"
-"67\n"
+"06030100.xhp\n"
+"par_id3153542\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">1000</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\".uno:ShowPrecedents\">This function shows the relationship between the current cell containing a formula and the cells used in the formula.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 06030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145353\n"
-"68\n"
+"06030100.xhp\n"
+"par_id3147265\n"
+"4\n"
"help.text"
-msgid "<item type=\"input\">42</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Traces are displayed in the sheet with marking arrows. At the same time, the range of all the cells contained in the formula of the current cell is highlighted with a blue frame."
+msgstr ""
-#: 04060101.xhp
+#: 06030100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150662\n"
-"69\n"
+"06030100.xhp\n"
+"par_id3154321\n"
+"3\n"
"help.text"
-msgid "11"
-msgstr "1"
+msgid "This function is based on a principle of layers. For example, if the precedent cell to a formula is already indicated with a tracer arrow, when you repeat this command, the tracer arrows are drawn to the precedent cells of this cell."
+msgstr ""
-#: 04060101.xhp
+#: 06030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150568\n"
-"70\n"
+"06030200.xhp\n"
+"tit\n"
"help.text"
-msgid "12"
-msgstr "Yll 12-cepësh"
+msgid "Remove Precedents"
+msgstr "~Largo Paraprijësit"
-#: 04060101.xhp
+#: 06030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149393\n"
-"71\n"
+"06030200.xhp\n"
+"bm_id3155628\n"
"help.text"
-msgid "13"
-msgstr "1"
+msgid "<bookmark_value>cells; removing precedents</bookmark_value><bookmark_value>formula cells;removing precedents</bookmark_value>"
+msgstr ""
-#: 04060101.xhp
+#: 06030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153544\n"
-"72\n"
+"06030200.xhp\n"
+"hd_id3155628\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">Name</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<link href=\"text/scalc/01/06030200.xhp\" name=\"Remove Precedents\">Remove Precedents</link>"
+msgstr ""
-#: 04060101.xhp
+#: 06030200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3158414\n"
-"73\n"
+"06030200.xhp\n"
+"par_id3149456\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">Grade</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\".uno:ClearArrowPrecedents\">Deletes one level of the trace arrows that were inserted with the <emph>Trace Precedents</emph> command.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 06030300.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152820\n"
-"74\n"
+"06030300.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">Age</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Trace Dependents"
+msgstr "Gjurmo Varësit"
-#: 04060101.xhp
+#: 06030300.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154866\n"
-"75\n"
+"06030300.xhp\n"
+"bm_id3153252\n"
"help.text"
-msgid "<item type=\"input\">Distance to School</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<bookmark_value>cells; tracing dependents</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 04060101.xhp
+#: 06030300.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150471\n"
-"76\n"
+"06030300.xhp\n"
+"hd_id3153252\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">Weight</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<link href=\"text/scalc/01/06030300.xhp\" name=\"Trace Dependents\">Trace Dependents</link>"
+msgstr ""
-#: 04060101.xhp
+#: 06030300.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153920\n"
-"77\n"
+"06030300.xhp\n"
+"par_id3156024\n"
+"2\n"
"help.text"
-msgid "14"
-msgstr "1"
+msgid "<ahelp hid=\".uno:ShowDependents\" visibility=\"visible\">Draws tracer arrows to the active cell from formulas that depend on values in the active cell.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 06030300.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148429\n"
-"78\n"
+"06030300.xhp\n"
+"par_id3148948\n"
+"4\n"
"help.text"
-msgid "<item type=\"input\">>600</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "The area of all cells that are used together with the active cell in a formula is highlighted by a blue frame."
+msgstr ""
-#: 04060101.xhp
+#: 06030300.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152588\n"
-"79\n"
+"06030300.xhp\n"
+"par_id3151112\n"
+"3\n"
"help.text"
-msgid "15"
-msgstr "1"
+msgid "This function works per level. For instance, if one level of traces has already been activated to show the precedents (or dependents), then you would see the next dependency level by activating the <emph>Trace</emph> function again."
+msgstr ""
-#: 04060101.xhp
+#: 06030400.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3083286\n"
-"80\n"
+"06030400.xhp\n"
+"tit\n"
"help.text"
-msgid "16"
-msgstr "1"
+msgid "Remove Dependents"
+msgstr "Largo Varësit"
-#: 04060101.xhp
+#: 06030400.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3163823\n"
-"81\n"
+"06030400.xhp\n"
+"bm_id3147335\n"
"help.text"
-msgid "<item type=\"input\">DCOUNT</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<bookmark_value>cells; removing dependents</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 04060101.xhp
+#: 06030400.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145083\n"
-"82\n"
+"06030400.xhp\n"
+"hd_id3147335\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">5</item>"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\">Remove Dependents</link>"
+msgstr ""
-#: 04060101.xhp
+#: 06030400.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149282\n"
-"83\n"
+"06030400.xhp\n"
+"par_id3148663\n"
+"2\n"
"help.text"
-msgid "The formula in cell B16 is =DCOUNT(A1:E10;0;A13:E14)"
+msgid "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\">Deletes one level of tracer arrows created with <emph>Trace Dependents</emph>.</ahelp>"
msgstr ""
-#: 04060101.xhp
+#: 06030500.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3150962\n"
-"192\n"
+"06030500.xhp\n"
+"tit\n"
"help.text"
-msgid "Database Function Parameters:"
-msgstr "Parametrat e shprëndarjes eksponenciale."
+msgid "Remove All Traces"
+msgstr "Largo të Gjitha Gjurmët"
-#: 04060101.xhp
+#: 06030500.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155837\n"
-"84\n"
+"06030500.xhp\n"
+"bm_id3153088\n"
"help.text"
-msgid "The following items are the parameter definitions for all database functions:"
+msgid "<bookmark_value>cells; removing traces</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
+
+#: 06030500.xhp
+msgctxt ""
+"06030500.xhp\n"
+"hd_id3153088\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/06030500.xhp\" name=\"Remove All Traces\">Remove All Traces</link>"
msgstr ""
-#: 04060101.xhp
+#: 06030500.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149453\n"
-"85\n"
+"06030500.xhp\n"
+"par_id3151246\n"
+"2\n"
"help.text"
-msgid "<emph>Database</emph> is the cell range defining the database."
+msgid "<ahelp hid=\".uno:ClearArrows\" visibility=\"visible\">Removes all tracer arrows from the spreadsheet.</ahelp>"
msgstr ""
-#: 04060101.xhp
+#: 06030600.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3151272\n"
-"86\n"
+"06030600.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>DatabaseField</emph> specifies the column where the function operates on after the search criteria of the first parameter is applied and the data rows are selected. It is not related to the search criteria itself. Use the number 0 to specify the whole data range. <variable id=\"quotes\">To reference a column by means of the column header name, place quotation marks around the header name. </variable>"
+msgid "Trace Error"
+msgstr "Gjurmo Gabimin"
+
+#: 06030600.xhp
+msgctxt ""
+"06030600.xhp\n"
+"bm_id3153561\n"
+"help.text"
+msgid "<bookmark_value>cells; tracing errors</bookmark_value><bookmark_value>tracing errors</bookmark_value><bookmark_value>error tracing</bookmark_value>"
msgstr ""
-#: 04060101.xhp
+#: 06030600.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3147083\n"
-"87\n"
+"06030600.xhp\n"
+"hd_id3153561\n"
+"1\n"
"help.text"
-msgid "<emph>SearchCriteria</emph> is the cell range containing search criteria. If you write several criteria in one row they are connected by AND. If you write the criteria in different rows they are connected by OR. Empty cells in the search criteria range will be ignored."
+msgid "<link href=\"text/scalc/01/06030600.xhp\" name=\"Trace Error\">Trace Error</link>"
msgstr ""
-#: 04060101.xhp
+#: 06030600.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3151188\n"
-"188\n"
+"06030600.xhp\n"
+"par_id3148550\n"
+"2\n"
"help.text"
-msgid "Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\" name=\"Spreadsheet - Calculate\">%PRODUCTNAME Calc - Calculate</link> to define how $[officename] Calc acts when searching for identical entries."
+msgid "<ahelp hid=\".uno:ShowErrors\" visibility=\"visible\">Draws tracer arrows to all precedent cells which cause an error value in a selected cell.</ahelp>"
msgstr ""
-#: 04060101.xhp
+#: 06030700.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3882869\n"
+"06030700.xhp\n"
+"tit\n"
"help.text"
-msgid "See also the Wiki page about <link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Conditional_Counting_and_Summation\">Conditional Counting and Summation</link>."
+msgid "Fill Mode"
+msgstr "~Mënyra e mbushjes"
+
+#: 06030700.xhp
+msgctxt ""
+"06030700.xhp\n"
+"bm_id3145119\n"
+"help.text"
+msgid "<bookmark_value>cells; trace fill mode</bookmark_value><bookmark_value>traces; precedents for multiple cells</bookmark_value>"
msgstr ""
-#: 04060101.xhp
+#: 06030700.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3150882\n"
+"06030700.xhp\n"
+"hd_id3145119\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>DCOUNT function</bookmark_value> <bookmark_value>counting rows;with numeric values</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<link href=\"text/scalc/01/06030700.xhp\" name=\"Fill Mode\">Fill Mode</link>"
+msgstr ""
-#: 04060101.xhp
+#: 06030700.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3150882\n"
-"88\n"
+"06030700.xhp\n"
+"par_id3151246\n"
+"2\n"
"help.text"
-msgid "DCOUNT"
-msgstr "DCOUNT"
+msgid "<ahelp hid=\".uno:AuditingFillMode\">Activates the Fill Mode in the Detective. The mouse pointer changes to a special symbol, and you can click any cell to see a trace to the precedent cell.</ahelp> To exit this mode, press Escape or click the <emph>End Fill Mode</emph> command in the context menu."
+msgstr ""
-#: 04060101.xhp
+#: 06030700.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3156133\n"
-"89\n"
+"06030700.xhp\n"
+"par_id3151211\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBANZAHL\">DCOUNT counts the number of rows (records) in a database that match the specified search criteria and contain numerical values.</ahelp>"
+msgid "The <emph>Fill Mode</emph> function is identical to the <link href=\"text/scalc/01/06030100.xhp\" name=\"Trace Precedent\">Trace Precedent</link> command if you call this mode for the first time. Use the context menu to select further options for the Fill Mode and to exit this mode."
msgstr ""
-#: 04060101.xhp
+#: 06030800.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3156099\n"
-"90\n"
+"06030800.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Mark Invalid Data"
+msgstr "Shenjo të Dhënat e Pavlefshme"
-#: 04060101.xhp
+#: 06030800.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153218\n"
-"91\n"
+"06030800.xhp\n"
+"bm_id3153821\n"
"help.text"
-msgid "DCOUNT(Database; DatabaseField; SearchCriteria)"
+msgid "<bookmark_value>cells; invalid data</bookmark_value><bookmark_value>data; showing invalid data</bookmark_value><bookmark_value>invalid data;marking</bookmark_value>"
msgstr ""
-#: 04060101.xhp
+#: 06030800.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153273\n"
-"187\n"
+"06030800.xhp\n"
+"hd_id3153821\n"
+"1\n"
"help.text"
-msgid "For the DatabaseField parameter you can enter a cell to specify the column, or enter the number 0 for the entire database. The parameter cannot be empty. <embedvar href=\"text/scalc/01/04060101.xhp#quotes\"/>"
+msgid "<link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\">Mark Invalid Data</link>"
msgstr ""
-#: 04060101.xhp
+#: 06030800.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3154743\n"
-"92\n"
+"06030800.xhp\n"
+"par_id3147264\n"
+"2\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<ahelp hid=\".uno:ShowInvalid\" visibility=\"visible\">Marks all cells in the sheet that contain values outside the validation rules.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 06030800.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153623\n"
-"93\n"
+"06030800.xhp\n"
+"par_id3151211\n"
+"3\n"
"help.text"
-msgid "In the example above (scroll up, please), we want to know how many children have to travel more than 600 meters to school. The result is to be stored in cell B16. Set the cursor in cell B16. Enter the formula <item type=\"input\">=DCOUNT(A1:E10;0;A13:E14)</item> in B16. The <emph>Function Wizard</emph> helps you to input ranges."
+msgid "The <link href=\"text/scalc/01/12120000.xhp\" name=\"validity rules\">validity rules</link> restrict the input of numbers, dates, time values and text to certain values. However, it is possible to enter invalid values or copy invalid values into the cells if the <emph>Stop</emph> option is not selected. When you assign a validity rule, existing values in a cell will not be modified."
msgstr ""
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149142\n"
-"94\n"
+"06030900.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Database</emph> is the range of data to be evaluated, including its headers: in this case A1:E10. <emph>DatabaseField</emph> specifies the column for the search criteria: in this case, the whole database. <emph>SearchCriteria</emph> is the range where you can enter the search parameters: in this case, A13:E14."
+msgid "Refresh Traces"
+msgstr "Rifresko Gjurmët"
+
+#: 06030900.xhp
+msgctxt ""
+"06030900.xhp\n"
+"bm_id3152349\n"
+"help.text"
+msgid "<bookmark_value>cells; refreshing traces</bookmark_value><bookmark_value>traces; refreshing</bookmark_value><bookmark_value>updating;traces</bookmark_value>"
msgstr ""
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145652\n"
-"95\n"
+"06030900.xhp\n"
+"hd_id3152349\n"
+"1\n"
"help.text"
-msgid "To learn how many children in second grade are over 7 years of age, delete the entry >600 in cell D14 and enter <item type=\"input\">2</item> in cell B14 under Grade, and enter <item type=\"input\">>7</item> in cell C14 to the right. The result is 2. Two children are in second grade and over 7 years of age. As both criteria are in the same row, they are connected by AND."
+msgid "<link href=\"text/scalc/01/06030900.xhp\" name=\"Refresh Traces\">Refresh Traces</link>"
msgstr ""
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3156123\n"
+"06030900.xhp\n"
+"par_id3148947\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>DCOUNTA function</bookmark_value> <bookmark_value>records;counting in Calc databases</bookmark_value> <bookmark_value>counting rows;with numeric or alphanumeric values</bookmark_value>"
+msgid "<ahelp hid=\".uno:RefreshArrows\">Redraws all traces in the sheet. Formulas modified when traces are redrawn are taken into account.</ahelp>"
msgstr ""
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3156123\n"
-"97\n"
+"06030900.xhp\n"
+"par_id3148798\n"
+"3\n"
"help.text"
-msgid "DCOUNTA"
-msgstr "DCOUNTA"
+msgid "Detective arrows in the document are updated under the following circumstances:"
+msgstr ""
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3156110\n"
-"98\n"
+"06030900.xhp\n"
+"par_id3153192\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBANZAHL2\">DCOUNTA counts the number of rows (records) in a database that match the specified search conditions, and contain numeric or alphanumeric values.</ahelp>"
+msgid "Starting <emph>Tools - Detective - Update Refresh Traces</emph>"
msgstr ""
-#: 04060101.xhp
+#: 06030900.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3143228\n"
-"99\n"
+"06030900.xhp\n"
+"par_id3151041\n"
+"5\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "If <emph>Tools - Detective - Update Automatically</emph> is turned on, every time formulas are changed in the document."
+msgstr ""
-#: 04060101.xhp
+#: 06031000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146893\n"
-"100\n"
+"06031000.xhp\n"
+"tit\n"
"help.text"
-msgid "DCOUNTA(Database; DatabaseField; SearchCriteria)"
+msgid "AutoRefresh"
msgstr ""
-#: 04060101.xhp
+#: 06031000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3149751\n"
-"101\n"
+"06031000.xhp\n"
+"bm_id3154515\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<bookmark_value>cells; autorefreshing traces</bookmark_value><bookmark_value>traces; autorefreshing</bookmark_value>"
+msgstr ""
-#: 04060101.xhp
+#: 06031000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153982\n"
-"102\n"
+"06031000.xhp\n"
+"hd_id3154515\n"
+"1\n"
"help.text"
-msgid "In the example above (scroll up, please), you can search for the number of children whose name starts with an E or a subsequent letter. Edit the formula in B16 to read <item type=\"input\">=DCOUNTA(A1:E10;\"Name\";A13:E14)</item>. Delete the old search criteria and enter <item type=\"input\">>=E</item> under Name in field A14. The result is 5. If you now delete all number values for Greta in row 8, the result changes to 4. Row 8 is no longer included in the count because it does not contain any values. The name Greta is text, not a value. Note that the DatabaseField parameter must point to a column that can contain values."
+msgid "<link href=\"text/scalc/01/06031000.xhp\" name=\"AutoRefresh\">AutoRefresh</link>"
msgstr ""
-#: 04060101.xhp
+#: 06031000.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3147256\n"
+"06031000.xhp\n"
+"par_id3147264\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>DGET function</bookmark_value> <bookmark_value>cell contents;searching in Calc databases</bookmark_value> <bookmark_value>searching;cell contents in Calc databases</bookmark_value>"
+msgid "<ahelp hid=\".uno:AutoRefreshArrows\" visibility=\"visible\">Automatically refreshes all the traces in the sheet whenever you modify a formula.</ahelp>"
msgstr ""
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3147256\n"
-"104\n"
+"06040000.xhp\n"
+"tit\n"
"help.text"
-msgid "DGET"
-msgstr "DGET"
+msgid "Goal Seek"
+msgstr "Kërkim i Qëllimit"
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152801\n"
-"105\n"
+"06040000.xhp\n"
+"hd_id3155629\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBAUSZUG\">DGET returns the contents of the referenced cell in a database which matches the specified search criteria.</ahelp> In case of an error, the function returns either #VALUE! for no row found, or Err502 for more than one cell found."
+msgid "Goal Seek"
+msgstr "Kërkim i Qëllimit"
+
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id3145119\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"zielwertsuchetext\"><ahelp hid=\".uno:GoalSeekDialog\">Opens a dialog where you can solve an equation with a variable.</ahelp></variable> After a successful search, a dialog with the results opens, allowing you to apply the result and the target value directly to the cell."
msgstr ""
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3159344\n"
-"106\n"
+"06040000.xhp\n"
+"hd_id3149656\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Default"
+msgstr "Standarde"
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154696\n"
-"107\n"
+"06040000.xhp\n"
+"par_id3151211\n"
+"4\n"
"help.text"
-msgid "DGET(Database; DatabaseField; SearchCriteria)"
+msgid "In this section, you can define the variables in your formula."
msgstr ""
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3153909\n"
-"108\n"
+"06040000.xhp\n"
+"hd_id3150869\n"
+"5\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Formula cell"
+msgstr "Qelia e formulave"
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155388\n"
-"109\n"
+"06040000.xhp\n"
+"par_id3153194\n"
+"6\n"
"help.text"
-msgid "In the above example (scroll up, please), we want to determine what grade a child is in, whose name was entered in cell A14. The formula is entered in cell B16 and differs slightly from the earlier examples because only one column (one database field) can be entered for <emph>DatabaseField</emph>. Enter the following formula:"
+msgid "<ahelp hid=\"modules/scalc/ui/goalseekdlg/formulaedit\">In the formula cell, enter the reference of the cell which contains the formula. It contains the current cell reference.</ahelp> Click another cell in the sheet to apply its reference to the text box."
msgstr ""
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153096\n"
-"110\n"
+"06040000.xhp\n"
+"hd_id3154685\n"
+"7\n"
"help.text"
-msgid "<item type=\"input\">=DGET(A1:E10;\"Grade\";A13:E14)</item>"
+msgid "Target value"
+msgstr "Vlera ~cak"
+
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id3146984\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/goalseekdlg/target\">Specifies the value you want to achieve as a new result.</ahelp>"
msgstr ""
-#: 04060101.xhp
+#: 06040000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150524\n"
-"111\n"
+"06040000.xhp\n"
+"hd_id3150012\n"
+"9\n"
"help.text"
-msgid "Enter the name <item type=\"input\">Frank</item> in A14, and you see the result 2. Frank is in second grade. Enter <item type=\"input\">\"Age\"</item> instead of \"Grade\" and you will get Frank's age."
+msgid "Variable cell"
+msgstr "Qeli e ~variablit"
+
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id3147427\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/goalseekdlg/varedit\">Specifies the reference for the cell that contains the value you want to adjust in order to reach the target.</ahelp>"
msgstr ""
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148833\n"
-"112\n"
+"06050000.xhp\n"
+"tit\n"
"help.text"
-msgid "Or enter the value <item type=\"input\">11</item> in cell C14 only, and delete the other entries in this row. Edit the formula in B16 as follows:"
+msgid "Create Scenario"
+msgstr "Krijo plan-veprimin"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"hd_id3156023\n"
+"1\n"
+"help.text"
+msgid "Create Scenario"
+msgstr "Krijo plan-veprimin"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id3150541\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"szenariotext\"><ahelp hid=\".uno:ScenarioManager\">Defines a scenario for the selected sheet area.</ahelp></variable>"
msgstr ""
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149912\n"
-"113\n"
+"06050000.xhp\n"
+"par_idN10637\n"
"help.text"
-msgid "<item type=\"input\">=DGET(A1:E10;\"Name\";A13:E14)</item>"
+msgid "<embedvar href=\"text/scalc/guide/scenario.xhp#scenario\"/>"
msgstr ""
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148813\n"
-"114\n"
+"06050000.xhp\n"
+"hd_id3156280\n"
+"3\n"
"help.text"
-msgid "Instead of the grade, the name is queried. The answer appears at once: Daniel is the only child aged 11."
+msgid "Name of scenario"
+msgstr "Emri i skenarit"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id3151041\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_SCENWIN_TOP\">Defines the name for the scenario. Use a clear and unique name so you can easily identify the scenario.</ahelp> You can also modify a scenario name in the Navigator through the <emph>Properties </emph>context menu command."
msgstr ""
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3149766\n"
+"06050000.xhp\n"
+"hd_id3153954\n"
+"14\n"
"help.text"
-msgid "<bookmark_value>DMAX function</bookmark_value> <bookmark_value>maximum values in Calc databases</bookmark_value> <bookmark_value>searching;maximum values in columns</bookmark_value>"
+msgid "Comment"
+msgstr "Koment"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id3155411\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_SCENWIN_BOTTOM\">Specifies additional information about the scenario. This information will be displayed in the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> when you click the <emph>Scenarios</emph> icon and select the desired scenario.</ahelp> You can also modify this information in the Navigator through the <emph>Properties </emph>context menu command."
msgstr ""
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3149766\n"
-"115\n"
+"06050000.xhp\n"
+"hd_id3145273\n"
+"16\n"
"help.text"
-msgid "DMAX"
-msgstr "DMAX"
+msgid "Settings"
+msgstr "Parametrat"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154903\n"
-"116\n"
+"06050000.xhp\n"
+"par_id3153364\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBMAX\">DMAX returns the maximum content of a cell (field) in a database (all records) that matches the specified search conditions.</ahelp>"
+msgid "This section is used to define some of the settings used in the scenario display."
msgstr ""
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3150771\n"
-"117\n"
+"06050000.xhp\n"
+"hd_id3145367\n"
+"18\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Display border"
+msgstr "Paraqit kufirin në"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3159157\n"
-"118\n"
+"06050000.xhp\n"
+"par_id3151073\n"
+"19\n"
"help.text"
-msgid "DMAX(Database; DatabaseField; SearchCriteria)"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_NEWSCENARIO:LB_COLOR\">Highlights the scenario in your table with a border. The color for the border is specified in the field to the right of this option.</ahelp> The border will have a title bar displaying the name of the last scenario. The button on the right of the scenario border offers you an overview of all the scenarios in this area, if several have been defined. You can choose any of the scenarios from this list without restrictions."
msgstr ""
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3145420\n"
-"119\n"
+"06050000.xhp\n"
+"hd_id3149582\n"
+"20\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Copy back"
+msgstr "Kopjo mbrapa"
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148442\n"
-"120\n"
+"06050000.xhp\n"
+"par_id3154942\n"
+"21\n"
"help.text"
-msgid "To find out how much the heaviest child in each grade weighed in the above example (scroll up, please), enter the following formula in B16:"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_TWOWAY\">Copies the values of cells that you change into the active scenario. If you do not select this option, the scenario is not changed when you change cell values. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
msgstr ""
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148804\n"
-"121\n"
+"06050000.xhp\n"
+"hd_id3149402\n"
+"22\n"
"help.text"
-msgid "<item type=\"input\">=DMAX(A1:E10;\"Weight\";A13:E14)</item>"
+msgid "Copy entire sheet"
+msgstr "Kopjo tërë fletën"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id3146969\n"
+"23\n"
+"help.text"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_NEWSCENARIO:CB_COPYALL\">Copies the entire sheet into an additional scenario sheet. </ahelp>"
msgstr ""
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150510\n"
-"122\n"
+"06050000.xhp\n"
+"par_idN1075A\n"
"help.text"
-msgid "Under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. After entering a grade number, the weight of the heaviest child in that grade appears."
+msgid "Prevent changes"
+msgstr "Ndryshimet e tabelës"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_idN1075E\n"
+"help.text"
+msgid "<ahelp hid=\"sc:CheckBox:RID_SCDLG_NEWSCENARIO:CB_PROTECT\">Prevents changes to the active scenario. The behavior of the <emph>Copy back</emph> setting depends on the cell protection, the sheet protection, and the <emph>Prevent changes</emph> settings.</ahelp>"
msgstr ""
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3159141\n"
+"06050000.xhp\n"
+"par_idN10778\n"
"help.text"
-msgid "<bookmark_value>DMIN function</bookmark_value> <bookmark_value>minimum values in Calc databases</bookmark_value> <bookmark_value>searching;minimum values in columns</bookmark_value>"
+msgid "You can only change the scenario properties if the <emph>Prevent changes</emph> option is not selected and if the sheet is not protected."
msgstr ""
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3159141\n"
-"123\n"
+"06050000.xhp\n"
+"par_idN10780\n"
"help.text"
-msgid "DMIN"
-msgstr "DMIN"
+msgid "You can only edit cell values if the <emph>Prevent changes</emph> option is selected, if the <emph>Copy back</emph> is option is not selected, and if the cells are not protected."
+msgstr ""
-#: 04060101.xhp
+#: 06050000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154261\n"
-"124\n"
+"06050000.xhp\n"
+"par_idN1078C\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBMIN\">DMIN returns the minimum content of a cell (field) in a database that matches the specified search criteria.</ahelp>"
+msgid "You can only change scenario cell values and write them back into the scenario if the <emph>Prevent changes</emph> option is not selected, if the <emph>Copy back</emph> option is selected, and if the cells are not protected."
msgstr ""
-#: 04060101.xhp
+#: 06060000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3147238\n"
-"125\n"
+"06060000.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Protect Document"
+msgstr "Mbroj Dokumentin"
-#: 04060101.xhp
+#: 06060000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148479\n"
-"126\n"
+"06060000.xhp\n"
+"hd_id3148946\n"
+"1\n"
"help.text"
-msgid "DMIN(Database; DatabaseField; SearchCriteria)"
+msgid "<link href=\"text/scalc/01/06060000.xhp\" name=\"Protect Document\">Protect Document</link>"
msgstr ""
-#: 04060101.xhp
+#: 06060000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3151050\n"
-"127\n"
+"06060000.xhp\n"
+"par_id3153362\n"
+"2\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "The<emph> Protect Document </emph>command prevents changes from being made to cells in the sheets or to sheets in a document. As an option, you can define a password. If a password is defined, removal of the protection is only possible if the user enters the correct password."
+msgstr ""
-#: 04060101.xhp
+#: 06060000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148925\n"
-"128\n"
+"06060000.xhp\n"
+"hd_id3147228\n"
+"3\n"
"help.text"
-msgid "To find the shortest distance to school for the children in each grade in the above example (scroll up, please), enter the following formula in B16:"
+msgid "<link href=\"text/scalc/01/06060100.xhp\" name=\"Sheets\">Sheets</link>"
msgstr ""
-#: 04060101.xhp
+#: 06060000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149161\n"
-"129\n"
+"06060000.xhp\n"
+"hd_id3153768\n"
+"4\n"
"help.text"
-msgid "<item type=\"input\">=DMIN(A1:E10;\"Distance to School\";A13:E14)</item>"
+msgid "<link href=\"text/scalc/01/06060200.xhp\" name=\"Documents\">Documents</link>"
msgstr ""
-#: 04060101.xhp
+#: 06060000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148917\n"
-"130\n"
+"06060000.xhp\n"
+"par_idN10622\n"
"help.text"
-msgid "In row 14, under Grade, enter <item type=\"input\">1, 2, 3,</item> and so on, one after the other. The shortest distance to school for each grade appears."
+msgid "<embedvar href=\"text/scalc/guide/cell_protect.xhp#cell_protect\"/>"
msgstr ""
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3154274\n"
+"06060100.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>DAVERAGE function</bookmark_value> <bookmark_value>averages; in Calc databases</bookmark_value> <bookmark_value>calculating;averages in Calc databases</bookmark_value>"
-msgstr ""
+msgid "Protecting Sheet"
+msgstr "Largo mbrojtjen nga fleta"
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3154274\n"
-"131\n"
+"06060100.xhp\n"
+"hd_id3153087\n"
+"1\n"
"help.text"
-msgid "DAVERAGE"
-msgstr "DMESATARE"
+msgid "Protecting Sheet"
+msgstr "Largo mbrojtjen nga fleta"
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3166453\n"
-"132\n"
+"06060100.xhp\n"
+"par_id3148664\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBMITTELWERT\">DAVERAGE returns the average of the values of all cells (fields) in all rows (database records) that match the specified search criteria.</ahelp>"
+msgid "<variable id=\"tabelletext\"><ahelp hid=\".uno:Protect\">Protects the cells in the current sheet from being modified.</ahelp></variable> Choose <emph>Tools - Protect Document - Sheet</emph> to open the <emph>Protect Sheet</emph> dialog in which you then specify sheet protection with or without a password."
msgstr ""
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3146955\n"
-"133\n"
+"06060100.xhp\n"
+"par_id3149664\n"
+"5\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "To protect cells from further editing, the <emph>Protected</emph> check box must be checked on the <link href=\"text/scalc/01/05020600.xhp\" name=\"Format - Cells - Cell Protection\"><emph>Format - Cells - Cell Protection</emph></link> tab page or on the <emph>Format Cells</emph> context menu."
+msgstr ""
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150710\n"
-"134\n"
+"06060100.xhp\n"
+"par_id3154490\n"
+"8\n"
"help.text"
-msgid "DAVERAGE(Database; DatabaseField; SearchCriteria)"
+msgid "Unprotected cells or cell ranges can be set up on a protected sheet by using the <emph>Tools - Protect Document - Sheet</emph> and <emph>Format - Cells - Cell Protection</emph> menus:"
msgstr ""
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3152943\n"
-"135\n"
+"06060100.xhp\n"
+"par_id3149123\n"
+"16\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Select the cells that will be unprotected"
+msgstr ""
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149104\n"
-"136\n"
+"06060100.xhp\n"
+"par_id3150329\n"
+"17\n"
"help.text"
-msgid "To find the average weight of all children of the same age in the above example (scroll up, please), enter the following formula in B16:"
+msgid "Select <emph>Format - Cells - Cell Protection</emph>. Unmark the <emph>Protected</emph> box and click <emph>OK</emph>."
msgstr ""
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153688\n"
-"137\n"
+"06060100.xhp\n"
+"par_id3156384\n"
+"18\n"
"help.text"
-msgid "<item type=\"input\">=DAVERAGE(A1:E10;\"Weight\";A13:E14)</item>"
+msgid "On the <emph>Tools - Protect Document - Sheet</emph> menu, activate protection for the sheet. Effective immediately, only the cell range you selected in step 1 can be edited."
msgstr ""
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155587\n"
-"138\n"
+"06060100.xhp\n"
+"par_id3149566\n"
+"9\n"
"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The average weight of all children of the same age appears."
+msgid "To later change an unprotected area to a protected area, select the range. Next, on the <emph>Format - Cells - Cell Protection</emph> tab page, check the <emph>Protected</emph> box. Finally, choose the <emph>Tools - Protect Document - Sheet </emph>menu. The previously editable range is now protected."
msgstr ""
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3159269\n"
+"06060100.xhp\n"
+"par_id3153964\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>DPRODUCT function</bookmark_value> <bookmark_value>multiplying;cell contents in Calc databases</bookmark_value>"
+msgid "Sheet protection also affects the context menu of the sheet tabs at the bottom of the screen. The <emph>Delete</emph> and <emph>Rename</emph> commands cannot be selected."
msgstr ""
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3159269\n"
-"139\n"
+"06060100.xhp\n"
+"par_id3150301\n"
+"19\n"
"help.text"
-msgid "DPRODUCT"
-msgstr "DPRODUCT"
+msgid "If a sheet is protected, you will not be able to modify or delete any Cell Styles."
+msgstr ""
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152879\n"
-"140\n"
+"06060100.xhp\n"
+"par_id3154656\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBPRODUKT\">DPRODUCT multiplies all cells of a data range where the cell contents match the search criteria.</ahelp>"
+msgid "A protected sheet or cell range can no longer be modified until this protection is disabled. To disable the protection, choose the <emph>Tools - Protect Document - Sheet</emph> command. If no password was set, the sheet protection is immediately disabled. If the sheet was password protected, the <emph>Remove Protection</emph> dialog opens, where you must enter the password."
msgstr ""
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3149966\n"
-"141\n"
+"06060100.xhp\n"
+"par_id3149815\n"
+"11\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Once saved, protected sheets can only be saved again by using the <emph>File - Save As</emph> command."
+msgstr ""
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154854\n"
-"142\n"
+"06060100.xhp\n"
+"hd_id3150206\n"
+"4\n"
"help.text"
-msgid "DPRODUCT(Database; DatabaseField; SearchCriteria)"
-msgstr ""
+msgid "Password (optional)"
+msgstr "Fjalëkalimi (opcional):"
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3149802\n"
-"143\n"
+"06060100.xhp\n"
+"par_id3152990\n"
+"7\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<ahelp hid=\".uno:Protect\">Allows you to enter a password to protect the sheet from unauthorized changes.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 06060100.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148986\n"
-"144\n"
+"06060100.xhp\n"
+"par_id3148700\n"
+"12\n"
"help.text"
-msgid "With the birthday party example above (scroll up, please), there is no meaningful application of this function."
+msgid "Complete protection of your work can be achieved by combining both options on the <emph>Tools - Protect Document</emph> menu, including password protection. To prohibit opening the document altogether, in the <emph>Save</emph> dialog mark the <emph>Save with password</emph> box before you click the <emph>Save</emph> button."
msgstr ""
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3148462\n"
+"06060200.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>DSTDEV function</bookmark_value> <bookmark_value>standard deviations in databases;based on a sample</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "Protecting document"
+msgstr "Ngarko dokumentin"
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3148462\n"
-"145\n"
+"06060200.xhp\n"
+"hd_id3150541\n"
+"1\n"
"help.text"
-msgid "DSTDEV"
-msgstr "DSTDEV"
+msgid "Protecting document"
+msgstr "Ngarko dokumentin"
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154605\n"
-"146\n"
+"06060200.xhp\n"
+"par_id3145172\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBSTDABW\">DSTDEV calculates the standard deviation of a population based on a sample, using the numbers in a database column that match the given conditions.</ahelp> The records are treated as a sample of data. That means that the children in the example represent a cross section of all children. Note that a representative result can not be obtained from a sample of less than one thousand."
+msgid "<variable id=\"dokumenttext\"><ahelp hid=\".uno:ToolProtectionDocument\">Protects the sheet structure of your document from modifications. It is impossible to insert, delete, rename, move or copy sheets.</ahelp></variable> Open the <emph>Protect document</emph> dialog with <emph>Tools - Protect Document - Document</emph>. Optionally enter a password and click OK."
msgstr ""
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3149427\n"
-"147\n"
+"06060200.xhp\n"
+"par_id3153188\n"
+"6\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "The structure of protected spreadsheet documents can be changed only if the <emph>Protect</emph> option is disabled. On the context menus for the spreadsheet tabs at the lower graphic border, only the menu item <emph>Select All Sheets</emph> can be activated. All other menu items are deactivated. To remove the protection, call up the command <emph>Tools - Protect Document - Document</emph> again. If no password is assigned, protection is immediately removed. If you were assigned a password, the <emph>Remove Spreadsheet Protection</emph> dialog appears, in which you must enter the password. Only then can you remove the check mark specifying that protection is active."
+msgstr ""
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148661\n"
-"148\n"
+"06060200.xhp\n"
+"par_id3145750\n"
+"7\n"
"help.text"
-msgid "DSTDEV(Database; DatabaseField; SearchCriteria)"
+msgid "A protected document, once saved, can only be saved again with the <emph>File - Save As</emph> menu command."
msgstr ""
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3153945\n"
-"149\n"
+"06060200.xhp\n"
+"hd_id3152596\n"
+"4\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Password (optional)"
+msgstr "Fjalëkalimi (opcional):"
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149934\n"
-"150\n"
+"06060200.xhp\n"
+"par_id3155412\n"
+"5\n"
"help.text"
-msgid "To find the standard deviation of the weight for all children of the same age in the example (scroll up, please), enter the following formula in B16:"
+msgid "You can create a password to protect your document against unauthorized or accidental modifications."
msgstr ""
-#: 04060101.xhp
+#: 06060200.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150630\n"
-"151\n"
+"06060200.xhp\n"
+"par_id3150717\n"
+"9\n"
"help.text"
-msgid "<item type=\"input\">=DSTDEV(A1:E10;\"Weight\";A13:E14)</item>"
+msgid "You can completely protect your work by combining both options from <emph>Tools - Protect Document</emph>, including password entry. If you want to prevent the document from being opened by other users, select <emph>Save With Password </emph>and click the <emph>Save</emph> button. The <emph>Enter Password</emph> dialog appears. Consider carefully when choosing a password; if you forget it after you close a document you will be unable to access the document."
msgstr ""
-#: 04060101.xhp
+#: 06070000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153536\n"
-"152\n"
+"06070000.xhp\n"
+"tit\n"
"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result shown is the standard deviation of the weight of all children of this age."
+msgid "AutoCalculate"
msgstr ""
-#: 04060101.xhp
+#: 06070000.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3150429\n"
+"06070000.xhp\n"
+"bm_id3145673\n"
"help.text"
-msgid "<bookmark_value>DSTDEVP function</bookmark_value> <bookmark_value>standard deviations in databases;based on populations</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>calculating; auto calculating sheets</bookmark_value><bookmark_value>recalculating;auto calculating sheets</bookmark_value><bookmark_value>AutoCalculate function in sheets</bookmark_value><bookmark_value>correcting sheets automatically</bookmark_value><bookmark_value>formulas;AutoCalculate function</bookmark_value><bookmark_value>cell contents;AutoCalculate function</bookmark_value>"
+msgstr ""
-#: 04060101.xhp
+#: 06070000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3150429\n"
-"153\n"
+"06070000.xhp\n"
+"hd_id3145673\n"
+"1\n"
"help.text"
-msgid "DSTDEVP"
-msgstr "DSTDEVP"
+msgid "<link href=\"text/scalc/01/06070000.xhp\" name=\"AutoCalculate\">AutoCalculate</link>"
+msgstr ""
-#: 04060101.xhp
+#: 06070000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3145598\n"
-"154\n"
+"06070000.xhp\n"
+"par_id3148798\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBSTDABWN\">DSTDEVP calculates the standard deviation of a population based on all cells of a data range which match the search criteria.</ahelp> The records from the example are treated as the whole population."
+msgid "<ahelp hid=\".uno:AutomaticCalculation\">Automatically recalculates all formulas in the document.</ahelp>"
msgstr ""
-#: 04060101.xhp
+#: 06070000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3145307\n"
-"155\n"
+"06070000.xhp\n"
+"par_id3145173\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "All cells are recalculated after a sheet cell has been modified. Any charts in the sheet will also be refreshed."
+msgstr ""
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149484\n"
-"156\n"
+"06080000.xhp\n"
+"tit\n"
"help.text"
-msgid "DSTDEVP(Database; DatabaseField; SearchCriteria)"
+msgid "Recalculate"
+msgstr "Rillogarit"
+
+#: 06080000.xhp
+msgctxt ""
+"06080000.xhp\n"
+"bm_id3157909\n"
+"help.text"
+msgid "<bookmark_value>recalculating;all formulas in sheets</bookmark_value><bookmark_value>formulas; recalculating manually</bookmark_value><bookmark_value>cell contents; recalculating</bookmark_value>"
msgstr ""
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3153322\n"
-"157\n"
+"06080000.xhp\n"
+"hd_id3157909\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<link href=\"text/scalc/01/06080000.xhp\" name=\"Recalculate\">Recalculate</link>"
+msgstr ""
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155431\n"
-"158\n"
+"06080000.xhp\n"
+"par_id3154758\n"
+"2\n"
"help.text"
-msgid "To find the standard deviation of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
+msgid "<ahelp hid=\".uno:Calculate\">Recalculates all changed formulas. If AutoCalculate is enabled, the Recalculate command applies only to formulas like RAND or NOW.</ahelp>"
msgstr ""
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3148411\n"
-"159\n"
+"06080000.xhp\n"
+"par_id315475899\n"
"help.text"
-msgid "<item type=\"input\">=DSTDEVP(A1:E10;\"Weight\";A13:E14)</item>"
+msgid "Press F9 to recalculate. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas in the document."
msgstr ""
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3143271\n"
-"160\n"
+"06080000.xhp\n"
+"par_id3150793\n"
+"5\n"
"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The result is the standard deviation of the weight for all same-aged children whose weight was checked."
+msgid "After the document has been recalculated, the display is refreshed. All charts are also refreshed."
msgstr ""
-#: 04060101.xhp
+#: 06080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3154794\n"
+"06080000.xhp\n"
+"par_id315475855\n"
"help.text"
-msgid "<bookmark_value>DSUM function</bookmark_value> <bookmark_value>calculating;sums in Calc databases</bookmark_value> <bookmark_value>sums;cells in Calc databases</bookmark_value>"
+msgid "The Add-In functions like RANDBETWEEN currently cannot respond to the Recalculate command or F9. Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9 to recalculate all formulas, including the Add-In functions."
msgstr ""
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3154794\n"
-"161\n"
+"06130000.xhp\n"
+"tit\n"
"help.text"
-msgid "DSUM"
-msgstr "DSUM"
+msgid "AutoInput"
+msgstr "~AutoHyrje"
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3149591\n"
-"162\n"
+"06130000.xhp\n"
+"bm_id2486037\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBSUMME\">DSUM returns the total of all cells in a database field in all rows (records) that match the specified search criteria.</ahelp>"
+msgid "<bookmark_value>entering entries with AutoInput function</bookmark_value><bookmark_value>capital letters;AutoInput function</bookmark_value>"
msgstr ""
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3146128\n"
-"163\n"
+"06130000.xhp\n"
+"hd_id3148492\n"
+"1\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"AutoInput\">AutoInput</link>"
+msgstr ""
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150989\n"
-"164\n"
+"06130000.xhp\n"
+"par_id3150793\n"
+"2\n"
"help.text"
-msgid "DSUM(Database; DatabaseField; SearchCriteria)"
+msgid "<ahelp hid=\".uno:AutoComplete\">Switches the AutoInput function on and off, which automatically completes entries, based on other entries in the same column.</ahelp> The column is scanned up to a maximum of 2000 cells or 200 different strings."
msgstr ""
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3159079\n"
-"165\n"
+"06130000.xhp\n"
+"par_id3156422\n"
+"8\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "The completion text is highlighted."
+msgstr "Teksti që do të rrotullohet"
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3152766\n"
-"166\n"
+"06130000.xhp\n"
+"par_idN1065D\n"
"help.text"
-msgid "To find the length of the combined distance to school of all children at Joe's birthday party (scroll up, please) who are in second grade, enter the following formula in B16:"
+msgid "To accept the completion, press <item type=\"keycode\">Enter</item> or a cursor key."
msgstr ""
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3151312\n"
-"167\n"
+"06130000.xhp\n"
+"par_idN10665\n"
"help.text"
-msgid "<item type=\"input\">=DSUM(A1:E10;\"Distance to School\";A13:E14)</item>"
+msgid "To append text or to edit the completion, press <item type=\"keycode\">F2</item>."
msgstr ""
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3150596\n"
-"168\n"
+"06130000.xhp\n"
+"par_idN1066D\n"
"help.text"
-msgid "Enter <item type=\"input\">2</item> in row 14 under Grade. The sum (1950) of the distances to school of all the children who are in second grade is displayed."
+msgid "To view more completions, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Tab</item> to scroll forward, or <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Tab</item> to scroll backward."
msgstr ""
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3155614\n"
+"06130000.xhp\n"
+"par_idN10679\n"
"help.text"
-msgid "<bookmark_value>DVAR function</bookmark_value> <bookmark_value>variances;based on samples</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "To see a list of all available AutoInput text items for the current column, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline>+Down Arrow</item>."
+msgstr ""
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3155614\n"
-"170\n"
+"06130000.xhp\n"
+"par_id3150439\n"
+"3\n"
"help.text"
-msgid "DVAR"
-msgstr "DVAR"
+msgid "When typing formulas using characters that match previous entries, a Help tip will appear listing the last ten functions used from <emph>Function Wizard</emph>, from all defined range names, from all database range names, and from the content of all label ranges."
+msgstr ""
-#: 04060101.xhp
+#: 06130000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3154418\n"
-"171\n"
+"06130000.xhp\n"
+"par_id3153363\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBVARIANZ\">DVAR returns the variance of all cells of a database field in all records that match the specified search criteria.</ahelp> The records from the example are treated as a sample of data. A representative result cannot be obtained from a sample population of less than one thousand."
+msgid "AutoInput is case-sensitive. If, for example, you have written \"Total\" in a cell, you cannot enter \"total\" in another cell of the same column without first deactivating AutoInput."
msgstr ""
-#: 04060101.xhp
+#: 06990000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3154825\n"
-"172\n"
+"06990000.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Cell Contents"
+msgstr "Tabela e përmbajtjeve"
-#: 04060101.xhp
+#: 06990000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3156138\n"
-"173\n"
+"06990000.xhp\n"
+"hd_id3153087\n"
+"1\n"
"help.text"
-msgid "DVAR(Database; DatabaseField; SearchCriteria)"
+msgid "<link href=\"text/scalc/01/06990000.xhp\" name=\"Cell Contents\">Cell Contents</link>"
msgstr ""
-#: 04060101.xhp
+#: 06990000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3151257\n"
-"174\n"
+"06990000.xhp\n"
+"par_id3145674\n"
+"2\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Opens a submenu with commands to calculate tables and activate AutoInput."
+msgstr ""
-#: 04060101.xhp
+#: 07080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153701\n"
-"175\n"
+"07080000.xhp\n"
+"tit\n"
"help.text"
-msgid "To find the variance of the weight of all children of the same age of the above example (scroll up, please), enter the following formula in B16:"
+msgid "Split"
+msgstr "Ndaje"
+
+#: 07080000.xhp
+msgctxt ""
+"07080000.xhp\n"
+"hd_id3163800\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Split\">Split</link>"
msgstr ""
-#: 04060101.xhp
+#: 07080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153676\n"
-"176\n"
+"07080000.xhp\n"
+"par_id3150084\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=DVAR(A1:E10;\"Weight\";A13:E14)</item>"
+msgid "<ahelp hid=\".uno:SplitWindow\" visibility=\"visible\">Divides the current window at the top left corner of the active cell.</ahelp>"
msgstr ""
-#: 04060101.xhp
+#: 07080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153798\n"
-"177\n"
+"07080000.xhp\n"
+"par_id3154910\n"
+"3\n"
"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. You will see as a result the variance of the weight values for all children of this age."
+msgid "You can also use the mouse to split the window horizontally or vertically. To do this, drag the thick black line located directly above the vertical scrollbar or directly to the right of the horizontal scrollbar into the window. A thick black line will show where the window is split."
msgstr ""
-#: 04060101.xhp
+#: 07080000.xhp
msgctxt ""
-"04060101.xhp\n"
-"bm_id3153880\n"
+"07080000.xhp\n"
+"par_id3149263\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>DVARP function</bookmark_value> <bookmark_value>variances;based on populations</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "A split window has its own scrollbars in each partial section; by contrast, <link href=\"text/scalc/01/07090000.xhp\" name=\"fixed window sections\">fixed window sections</link> are not scrollable."
+msgstr ""
-#: 04060101.xhp
+#: 07090000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3153880\n"
-"178\n"
+"07090000.xhp\n"
+"tit\n"
"help.text"
-msgid "DVARP"
-msgstr "DVARP"
+msgid "Freeze"
+msgstr "~Ngrije"
-#: 04060101.xhp
+#: 07090000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3155119\n"
-"179\n"
+"07090000.xhp\n"
+"hd_id3150517\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DBVARIANZEN\">DVARP calculates the variance of all cell values in a database field in all records that match the specified search criteria.</ahelp> The records are from the example are treated as an entire population."
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Freeze\">Freeze</link>"
msgstr ""
-#: 04060101.xhp
+#: 07090000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3145774\n"
-"180\n"
+"07090000.xhp\n"
+"par_id3156289\n"
+"2\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<ahelp hid=\".uno:FreezePanes\" visibility=\"visible\">Divides the sheet at the top left corner of the active cell and the area to the top left is no longer scrollable.</ahelp>"
+msgstr ""
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3153776\n"
-"181\n"
+"12010000.xhp\n"
+"tit\n"
"help.text"
-msgid "DVARP(Database; DatabaseField; SearchCriteria)"
+msgid "Define Database Range"
+msgstr "Defino Intervalin e Databazës"
+
+#: 12010000.xhp
+msgctxt ""
+"12010000.xhp\n"
+"hd_id3157909\n"
+"1\n"
+"help.text"
+msgid "Define Database Range"
+msgstr "Defino Intervalin e Databazës"
+
+#: 12010000.xhp
+msgctxt ""
+"12010000.xhp\n"
+"par_id3155922\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"bereichtext\"><ahelp hid=\".uno:DefineDBName\">Defines a database range based on the selected cells in your sheet.</ahelp></variable>"
msgstr ""
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"hd_id3151110\n"
-"182\n"
+"12010000.xhp\n"
+"par_id3149456\n"
+"5\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "You can only select a rectangular cell range."
+msgstr ""
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3147099\n"
-"183\n"
+"12010000.xhp\n"
+"hd_id3156422\n"
+"3\n"
"help.text"
-msgid "To find the variance of the weight for all children of the same age at Joe's birthday party (scroll up, please), enter the following formula in B16:"
+msgid "Name"
+msgstr "Emri"
+
+#: 12010000.xhp
+msgctxt ""
+"12010000.xhp\n"
+"par_id3150770\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DBNAMES:ED_NAME\">Enter a name for the database range that you want to define, or select an existing name from the list.</ahelp>"
msgstr ""
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3147322\n"
-"184\n"
+"12010000.xhp\n"
+"hd_id3147228\n"
+"6\n"
"help.text"
-msgid "<item type=\"input\">=DVARP(A1:E10;\"Weight\";A13:E14)</item>"
+msgid "Range"
+msgstr "Brez"
+
+#: 12010000.xhp
+msgctxt ""
+"12010000.xhp\n"
+"par_id3150441\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_DBNAMES:ED_DBAREA\">Displays the selected cell range.</ahelp>"
msgstr ""
-#: 04060101.xhp
+#: 12010000.xhp
msgctxt ""
-"04060101.xhp\n"
-"par_id3146902\n"
-"185\n"
+"12010000.xhp\n"
+"hd_id3153188\n"
+"10\n"
"help.text"
-msgid "In row 14, under Age, enter <item type=\"input\">7, 8, 9,</item> and so on, one after the other. The variance of the weight values for all children of this age attending Joe's birthday party appears."
+msgid "Add/Modify"
+msgstr "Ndrysho formëdhënien..."
+
+#: 12010000.xhp
+msgctxt ""
+"12010000.xhp\n"
+"par_id3153726\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_DBNAMES:BTN_ADD\">Adds the selected cell range to the database range list, or modifies an existing database range.</ahelp>"
msgstr ""
-#: 05100100.xhp
+#: 12010000.xhp
msgctxt ""
-"05100100.xhp\n"
+"12010000.xhp\n"
+"hd_id3150010\n"
+"12\n"
+"help.text"
+msgid "More >>"
+msgstr "Më shumë >>"
+
+#: 12010000.xhp
+msgctxt ""
+"12010000.xhp\n"
+"par_id3153144\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_DBNAMES:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12010100.xhp\" name=\"options\">options</link>.</ahelp>"
+msgstr ""
+
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
"tit\n"
"help.text"
-msgid "Merge Cells"
-msgstr "Bashko qelizat"
+msgid "Options"
+msgstr "Opcionet"
-#: 05100100.xhp
+#: 12010100.xhp
msgctxt ""
-"05100100.xhp\n"
-"hd_id3154765\n"
+"12010100.xhp\n"
+"hd_id3154760\n"
+"1\n"
"help.text"
-msgid "Merge Cells"
-msgstr "Bashko qelizat"
+msgid "Options"
+msgstr "Opcionet"
-#: 05100100.xhp
+#: 12010100.xhp
msgctxt ""
-"05100100.xhp\n"
-"par_id3147406\n"
+"12010100.xhp\n"
+"hd_id3153379\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">Combines the contents of the selected cells into a single cell.</ahelp>"
+msgid "Contains column labels"
+msgstr "Përmban ~emërtimet e shtyllave"
+
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"par_id3148798\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_HEADER\" visibility=\"visible\">Selected cell ranges contains labels.</ahelp>"
msgstr ""
-#: 05100100.xhp
+#: 12010100.xhp
msgctxt ""
-"05100100.xhp\n"
-"par_id3154351\n"
+"12010100.xhp\n"
+"hd_id3153970\n"
+"5\n"
"help.text"
-msgid "Choose <emph>Format - Merge Cells - Merge Cells</emph>"
+msgid "Insert or delete cells"
+msgstr "Futi ose fshij ~qelitë"
+
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"par_id3154684\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_SIZE\" visibility=\"visible\">Automatically inserts new rows and columns into the database range in your document when new records are added to the database.</ahelp> To manually update the database range, choose <emph>Data - Refresh</emph> <emph>Range</emph>."
msgstr ""
-#: 04060000.xhp
+#: 12010100.xhp
msgctxt ""
-"04060000.xhp\n"
-"tit\n"
+"12010100.xhp\n"
+"hd_id3153768\n"
+"7\n"
"help.text"
-msgid "Function Wizard"
-msgstr "Magjistari i formës..."
+msgid "Keep formatting"
+msgstr "Ruaj ~formatimin"
-#: 04060000.xhp
+#: 12010100.xhp
msgctxt ""
-"04060000.xhp\n"
-"bm_id3147426\n"
+"12010100.xhp\n"
+"par_id3147435\n"
+"8\n"
"help.text"
-msgid "<bookmark_value>inserting functions; Function Wizard</bookmark_value><bookmark_value>functions;Function Wizard</bookmark_value><bookmark_value>wizards; functions</bookmark_value>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_FORMAT\" visibility=\"visible\">Applies the existing cell format of headers and first data row to the whole database range.</ahelp>"
msgstr ""
-#: 04060000.xhp
+#: 12010100.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3147426\n"
+"12010100.xhp\n"
+"hd_id3155856\n"
+"9\n"
+"help.text"
+msgid "Don't save imported data"
+msgstr "Mos ruaj të ~dhënat e importuara"
+
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"par_id3153363\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_DBNAMES:BTN_STRIPDATA\" visibility=\"visible\">Only saves a reference to the database, and not the contents of the cells.</ahelp>"
+msgstr ""
+
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"hd_id3147428\n"
+"11\n"
+"help.text"
+msgid "Source:"
+msgstr "Burimi:"
+
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"par_id3148576\n"
+"12\n"
+"help.text"
+msgid "Displays information about the current database source and any existing operators."
+msgstr ""
+
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"hd_id3146976\n"
+"13\n"
+"help.text"
+msgid "More <<"
+msgstr "Më shumë"
+
+#: 12010100.xhp
+msgctxt ""
+"12010100.xhp\n"
+"par_id3149664\n"
+"14\n"
+"help.text"
+msgid "Hides the additional options."
+msgstr "Shiriti i opcioneve /Grafikat"
+
+#: 12020000.xhp
+msgctxt ""
+"12020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Select Database Range"
+msgstr "Selekto Intervalin e Databazës"
+
+#: 12020000.xhp
+msgctxt ""
+"12020000.xhp\n"
+"bm_id3145068\n"
+"help.text"
+msgid "<bookmark_value>databases; selecting (Calc)</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
+
+#: 12020000.xhp
+msgctxt ""
+"12020000.xhp\n"
+"hd_id3145068\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
+msgid "Select Database Range"
+msgstr "Selekto Intervalin e Databazës"
+
+#: 12020000.xhp
+msgctxt ""
+"12020000.xhp\n"
+"par_id3149655\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"bereichwaehlen\"><ahelp hid=\".uno:SelectDB\">Selects a database range that you defined under <link href=\"text/scalc/01/12010000.xhp\" name=\"Data - Define Range\">Data - Define Range</link>.</ahelp></variable>"
msgstr ""
-#: 04060000.xhp
+#: 12020000.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3145271\n"
+"12020000.xhp\n"
+"hd_id3153192\n"
+"3\n"
+"help.text"
+msgid "Ranges"
+msgstr "Intervalet"
+
+#: 12020000.xhp
+msgctxt ""
+"12020000.xhp\n"
+"par_id3154684\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/selectrange/treeview\">Lists the available database ranges. To select a database range, click its name, and then click <emph>OK</emph>.</ahelp>"
+msgstr ""
+
+#: 12030000.xhp
+msgctxt ""
+"12030000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Sort"
+msgstr "Rendit"
+
+#: 12030000.xhp
+msgctxt ""
+"12030000.xhp\n"
+"hd_id3150275\n"
+"1\n"
+"help.text"
+msgid "Sort"
+msgstr "Rendit"
+
+#: 12030000.xhp
+msgctxt ""
+"12030000.xhp\n"
+"par_id3155922\n"
"2\n"
"help.text"
-msgid "<variable id=\"funktionsautopilottext\"><ahelp hid=\".uno:FunctionDialog\">Opens the <emph>Function Wizard</emph>, which helps you to interactively create formulas.</ahelp></variable> Before you start the Wizard, select a cell or a range of cells from the current sheet, in order to determine the position at which the formula will be inserted."
+msgid "<variable id=\"sorttext\"><ahelp hid=\".uno:DataSort\">Sorts the selected rows according to the conditions that you specify.</ahelp></variable> $[officename] automatically recognizes and selects database ranges."
msgstr ""
-#: 04060000.xhp
+#: 12030000.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id8007446\n"
+"12030000.xhp\n"
+"par_id3147428\n"
+"4\n"
"help.text"
-msgid "You can download the complete ODFF (OpenDocument Format Formula) specification from the <link href=\"http://www.oasis-open.org/committees/documents.php?wg_abbrev=office-formula\">OASIS</link> web site."
+msgid "You cannot sort data if the <link href=\"text/shared/01/02230000.xhp\" name=\"Record changes\">Record changes</link> options is enabled."
msgstr ""
-#: 04060000.xhp
+#: 12030100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3159153\n"
-"60\n"
+"12030100.xhp\n"
+"tit\n"
"help.text"
-msgid "The <emph>Function Wizard</emph> has two tabs: <emph>Functions</emph> is used to create formulas, and <emph>Structure</emph> is used to check the formula build."
+msgid "Sort Criteria"
+msgstr "Kriteret e Klasifikimit"
+
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"bm_id3152350\n"
+"help.text"
+msgid "<bookmark_value>sorting; sort criteria for database ranges</bookmark_value>"
msgstr ""
-#: 04060000.xhp
+#: 12030100.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3154490\n"
-"3\n"
+"12030100.xhp\n"
+"hd_id3152350\n"
+"1\n"
"help.text"
-msgid "Functions Tab"
-msgstr "Ndalim i tabit"
+msgid "<link href=\"text/scalc/01/12030100.xhp\" name=\"Sort Criteria\">Sort Criteria</link>"
+msgstr ""
-#: 04060000.xhp
+#: 12030100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3149378\n"
-"5\n"
+"12030100.xhp\n"
+"par_id3151385\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
+msgid "<ahelp hid=\"modules/scalc/ui/sortcriteria/SortCriteriaPage\">Specify the sorting options for the selected range.</ahelp>"
msgstr ""
-#: 04060000.xhp
+#: 12030100.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3154730\n"
-"36\n"
+"12030100.xhp\n"
+"par_id3152462\n"
+"24\n"
"help.text"
-msgid "Category"
-msgstr "Kategori"
+msgid "Ensure that you include any row and column titles in the selection."
+msgstr ""
-#: 04060000.xhp
+#: 12030100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3153417\n"
-"37\n"
+"12030100.xhp\n"
+"hd_id3147428\n"
+"3\n"
"help.text"
-msgid "<variable id=\"kategorienliste\"><ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_CATEGORY\">Lists all the categories to which the different functions are assigned. Select a category to view the appropriate functions in the list field below.</ahelp> Select \"All\" to view all functions in alphabetical order, irrespective of category. \"Last Used\" lists the functions you have most recently used. </variable>"
+msgid "Sort by"
+msgstr "Klasifiko sipas"
+
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"par_id3155854\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sortkey/sortlb\">Select the column that you want to use as the primary sort key.</ahelp>"
msgstr ""
-#: 04060000.xhp
+#: 12030100.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3150749\n"
+"12030100.xhp\n"
+"hd_id3146121\n"
+"5\n"
+"help.text"
+msgid "Ascending"
+msgstr "Në rritje"
+
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"par_id3148645\n"
"6\n"
"help.text"
-msgid "Function"
-msgstr "Funksioni"
+msgid "<ahelp hid=\"modules/scalc/ui/sortkey/up\">Sorts the selection from the lowest value to the highest value. The sorting rules are given by the locale. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
+msgstr ""
-#: 04060000.xhp
+#: 12030100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3155445\n"
+"12030100.xhp\n"
+"hd_id3155411\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCTAB_FUNCTION:LB_FUNCTION\">Displays the functions found under the selected category. Double-click to select a function.</ahelp> A single-click displays a short function description."
-msgstr ""
+msgid "Descending"
+msgstr "Në zvogëlim"
-#: 04060000.xhp
+#: 12030100.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3159264\n"
+"12030100.xhp\n"
+"par_id3151075\n"
"8\n"
"help.text"
-msgid "Array"
-msgstr "Grup"
+msgid "<ahelp hid=\"modules/scalc/ui/sortkey/down\">Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages."
+msgstr ""
-#: 04060000.xhp
+#: 12030100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3149566\n"
+"12030100.xhp\n"
+"hd_id3154492\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FORMULA:BTN_MATRIX\">Specifies that the selected function is inserted into the selected cell range as an array formula. </ahelp> Array formulas operate on multiple cells. Each cell in the array contains the formula, not as a copy but as a common formula shared by all matrix cells."
-msgstr ""
+msgid "Then by"
+msgstr "Klasifiko sipas"
-#: 04060000.xhp
+#: 12030100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3155959\n"
-"61\n"
+"12030100.xhp\n"
+"par_id3156283\n"
+"10\n"
"help.text"
-msgid "The <emph>Array</emph> option is identical to the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+Enter command, which is used to enter and confirm formulas in the sheet. The formula is inserted as a matrix formula indicated by two braces { }."
+msgid "Select the column that you want to use as the secondary sort key."
msgstr ""
-#: 04060000.xhp
+#: 12030100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3152993\n"
-"40\n"
+"12030100.xhp\n"
+"hd_id3149413\n"
+"11\n"
"help.text"
-msgid "The maximum size of an array range is 128 by 128 cells."
+msgid "Ascending"
+msgstr "Në rritje"
+
+#: 12030100.xhp
+msgctxt ""
+"12030100.xhp\n"
+"par_id3154018\n"
+"12\n"
+"help.text"
+msgid "Sorts the selection from the lowest value to the highest value. You can define the sort rules on Data - Sort - Options. You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
msgstr ""
-#: 04060000.xhp
+#: 12030100.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3150367\n"
-"41\n"
+"12030100.xhp\n"
+"hd_id3146972\n"
+"13\n"
"help.text"
-msgid "Argument Input Fields"
-msgstr "Azhuro fushat e hyrjeve"
+msgid "Descending"
+msgstr "Në zvogëlim"
-#: 04060000.xhp
+#: 12030100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3145587\n"
-"15\n"
+"12030100.xhp\n"
+"par_id3145640\n"
+"14\n"
"help.text"
-msgid "When you double-click a function, the argument input field(s) appear on the right side of the dialog. To select a cell reference as an argument, click directly into the cell, or drag across the required range on the sheet while holding down the mouse button. You can also enter numerical and other values or references directly into the corresponding fields in the dialog. When using <link href=\"text/scalc/01/04060102.xhp\" name=\"date entries\">date entries</link>, make sure you use the correct format. Click OK to insert the result into the spreadsheet."
+msgid "Sorts the selection from the highest value to the lowest value. You can define the sort rules on Data - Sort - Options. You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
msgstr ""
-#: 04060000.xhp
+#: 12030100.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3149408\n"
-"18\n"
+"12030100.xhp\n"
+"hd_id3150300\n"
+"21\n"
"help.text"
-msgid "Function Result"
-msgstr "Rezultati i funksionit"
+msgid "Sort Ascending/Descending"
+msgstr "Renditja e rendit: 0 do të thotë në rritje, 1 do të thotë në rënje."
-#: 04060000.xhp
+#: 12030100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3155809\n"
-"19\n"
+"12030100.xhp\n"
+"par_id3158212\n"
+"22\n"
"help.text"
-msgid "As soon you enter arguments in the function, the result is calculated. This preview informs you if the calculation can be carried out with the arguments given. If the arguments result in an error, the corresponding <link href=\"text/scalc/05/02140000.xhp\" name=\"error code\">error code</link> is displayed."
+msgid "<ahelp hid=\".uno:SortDescending\"><variable id=\"sytext\">Sorts the selection from the highest to the lowest value, or from the lowest to the highest value. Number fields are sorted by size and text fields by the order of the characters. You can define the sort rules on Data - Sort - Options.</variable></ahelp> You define the default on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages."
msgstr ""
-#: 04060000.xhp
+#: 12030100.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3148700\n"
-"23\n"
+"12030100.xhp\n"
+"par_id3159236\n"
+"25\n"
"help.text"
-msgid "The required arguments are indicated by names in bold print."
+msgid "Icons on the <emph>Standard</emph> toolbar"
msgstr ""
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3153064\n"
-"22\n"
+"12030200.xhp\n"
+"tit\n"
"help.text"
-msgid "f(x) (depending on the selected function)"
-msgstr "Shiriti i Funksionit kyçur/çkyçur"
+msgid "Options"
+msgstr "Opcionet"
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3157980\n"
-"24\n"
+"12030200.xhp\n"
+"bm_id3147228\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_FAP_BTN_FX4\">Allows you to access a subordinate level of the <emph>Function Wizard</emph> in order to nest another function within the function, instead of a value or reference.</ahelp>"
+msgid "<bookmark_value>sorting; options for database ranges</bookmark_value><bookmark_value>sorting;Asian languages</bookmark_value><bookmark_value>Asian languages;sorting</bookmark_value><bookmark_value>phonebook sorting rules</bookmark_value><bookmark_value>natural sort algorithm</bookmark_value>"
msgstr ""
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3145076\n"
-"25\n"
+"12030200.xhp\n"
+"hd_id3147228\n"
+"1\n"
"help.text"
-msgid "Argument/Parameter/Cell Reference (depending on the selected function)"
+msgid "<link href=\"text/scalc/01/12030200.xhp\" name=\"Options\"> Options</link>"
msgstr ""
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3159097\n"
-"26\n"
+"12030200.xhp\n"
+"par_id3153770\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_FORMULA:ED_REF\">The number of visible text fields depends on the function. Enter arguments either directly into the argument fields or by clicking a cell in the table.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/SortOptionsPage\"> Sets additional sorting options.</ahelp>"
msgstr ""
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3154957\n"
-"51\n"
+"12030200.xhp\n"
+"hd_id3146976\n"
+"3\n"
"help.text"
-msgid "Result"
-msgstr "Rezultat"
+msgid "Case Sensitivity"
+msgstr "Përputh shkronjat"
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3150211\n"
-"52\n"
+"12030200.xhp\n"
+"par_id3153091\n"
+"4\n"
"help.text"
-msgid "Displays the calculation result or an error message."
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/case\"> Sorts first by uppercase letters and then by lowercase letters. For Asian languages, special handling applies.</ahelp>"
msgstr ""
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3151304\n"
-"43\n"
+"12030200.xhp\n"
+"par_idN10637\n"
"help.text"
-msgid "Formula"
-msgstr "Formula"
+msgid "Note for Asian languages: Check <emph>Case Sensitivity</emph> to apply multi-level collation. With multi-level collation, entries are first compared in their primitive forms with their cases and diacritics ignored. If they evaluate as the same, their diacritics are taken into account for the second-level comparison. If they still evaluate as the same, their cases, character widths, and Japanese Kana difference are considered for the third-level comparison."
+msgstr ""
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3149898\n"
-"44\n"
+"12030200.xhp\n"
+"hd_id3155856\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_FAP_FORMULA\">Displays the created formula. Type your entries directly, or create the formula using the wizard.</ahelp>"
+msgid "Range contains column/row labels"
+msgstr "Intervali përmban emër~timet e shtyllës"
+
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3154014\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/header\"> Omits the first row or the first column in the selection from the sort.</ahelp> The <emph>Direction</emph> setting at the bottom of the dialog defines the name and function of this check box."
msgstr ""
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3153249\n"
-"45\n"
+"12030200.xhp\n"
+"hd_id3147436\n"
+"7\n"
"help.text"
-msgid "Back"
-msgstr "Prapa"
+msgid "Include formats"
+msgstr "Përfshij ~formatet"
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3152869\n"
-"53\n"
+"12030200.xhp\n"
+"par_id3149377\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_BACKWARD\">Moves the focus back through the formula components, marking them as it does so.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/formats\"> Preserves the current cell formatting.</ahelp>"
msgstr ""
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3146966\n"
-"56\n"
+"12030200.xhp\n"
+"hd_id3147438\n"
"help.text"
-msgid "To select a single function from a complex formula consisting of several functions, double-click the function in the formula window."
+msgid "Enable natural sort"
msgstr ""
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3155762\n"
-"54\n"
+"12030200.xhp\n"
+"par_id3149378\n"
"help.text"
-msgid "Next"
-msgstr "I ardhshmi"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/naturalsort\">Natural sort is a sort algorithm that sorts string-prefixed numbers based on the value of the numerical element in each sorted number, instead of the traditional way of sorting them as ordinary strings.</ahelp> For instance, let's assume you have a series of values such as, A1, A2, A3, A4, A5, A6, ..., A19, A20, A21. When you put these values into a range of cells and run the sort, it will become A1, A11, A12, A13, ..., A19, A2, A20, A21, A3, A4, A5, ..., A9. While this sorting behavior may make sense to those who understand the underlying sorting mechanism, to the rest of the population it seems completely bizarre, if not outright inconvenient. With the natural sort feature enabled, values such as the ones in the above example get sorted \"properly\", which improves the convenience of sorting operations in general."
+msgstr ""
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3149316\n"
-"55\n"
+"12030200.xhp\n"
+"hd_id3153878\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_FORMULA:BTN_FORWARD\">Moves forward through the formula components in the formula window.</ahelp> This button can also be used to assign functions to the formula. If you select a function and click the <emph>Next </emph>button, the selection appears in the formula window."
+msgid "Copy sort results to:"
+msgstr "~Kopjo rezultatet e klasifikimit në:"
+
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3156286\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/copyresult\"> Copies the sorted list to the cell range that you specify.</ahelp>"
msgstr ""
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3159262\n"
-"57\n"
+"12030200.xhp\n"
+"hd_id3153418\n"
+"12\n"
"help.text"
-msgid "Double-click a function in the selection window to transfer it to the formula window."
+msgid "Sort results"
+msgstr "~Kopjo rezultatet e klasifikimit në:"
+
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3155602\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outarealb\"> Select a named <link href=\"text/scalc/01/12010000.xhp\" name=\"cell range\"> cell range</link> where you want to display the sorted list, or enter a cell range in the input box.</ahelp>"
msgstr ""
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3148745\n"
-"58\n"
+"12030200.xhp\n"
+"hd_id3153707\n"
+"14\n"
"help.text"
-msgid "Cancel"
-msgstr "Anulo"
+msgid "Sort results"
+msgstr "~Kopjo rezultatet e klasifikimit në:"
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3147402\n"
-"59\n"
+"12030200.xhp\n"
+"par_id3145642\n"
+"15\n"
"help.text"
-msgid "Closes the dialog without implementing the formula."
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/outareaed\"> Enter the cell range where you want to display the sorted list, or select a named range from the list.</ahelp>"
msgstr ""
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3150534\n"
-"32\n"
+"12030200.xhp\n"
+"hd_id3155445\n"
+"16\n"
"help.text"
-msgid "OK"
-msgstr "OK"
+msgid "Custom sort order"
+msgstr "Renditja e klasifikimit e ~zgjedhur sipas dëshirës"
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3153029\n"
-"33\n"
+"12030200.xhp\n"
+"par_id3156385\n"
+"17\n"
"help.text"
-msgid "Ends the <emph>Function Wizard</emph>, and transfers the formula to the selected cells."
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuser\"> Click here and then select the custom sort order that you want.</ahelp>"
msgstr ""
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3156400\n"
-"34\n"
+"12030200.xhp\n"
+"hd_id3154704\n"
+"18\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060100.xhp\" name=\"List of Categories and Functions\">List of Categories and Functions</link>"
+msgid "Custom sort order"
+msgstr "Renditja e klasifikimit e ~zgjedhur sipas dëshirës"
+
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3155962\n"
+"19\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/sortuserlb\"> Select the custom sort order that you want to apply. To define a custom sort order, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060400.xhp\" name=\"%PRODUCTNAME Calc - Sort Lists\">%PRODUCTNAME Calc - Sort Lists</link> .</ahelp>"
msgstr ""
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3147610\n"
-"47\n"
+"12030200.xhp\n"
+"hd_id3149257\n"
+"28\n"
"help.text"
-msgid "Structure tab"
-msgstr "Ndalim i tabit"
+msgid "Language"
+msgstr "Gjuhë"
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3153122\n"
-"48\n"
+"12030200.xhp\n"
+"hd_id3147004\n"
+"29\n"
"help.text"
-msgid "On this page, you can view the structure of the function."
+msgid "Language"
+msgstr "Gjuhë"
+
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3150787\n"
+"32\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/language\"> Select the language for the sorting rules.</ahelp>"
msgstr ""
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3149350\n"
-"4\n"
+"12030200.xhp\n"
+"hd_id3150344\n"
+"30\n"
"help.text"
-msgid "If you start the <emph>Function Wizard</emph> while the cell cursor is positioned in a cell that already contains a function, the <emph>Structure</emph> tab is opened and shows the composition of the current formula."
+msgid "Options"
+msgstr "Opcionet"
+
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3155113\n"
+"33\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/algorithmlb\"> Select a sorting option for the language.</ahelp> For example, select the \"phonebook\" option for German to include the umlaut special character in the sorting."
msgstr ""
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3149014\n"
-"49\n"
+"12030200.xhp\n"
+"hd_id3152580\n"
+"20\n"
"help.text"
-msgid "Structure"
-msgstr "Strukturë"
+msgid "Direction"
+msgstr "Drejtim"
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3150481\n"
-"50\n"
+"12030200.xhp\n"
+"hd_id3154201\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_FAP_STRUCT\">Displays a hierarchical representation of the current function.</ahelp> You can hide or show the arguments by a click on the plus or minus sign in front."
+msgid "Top to Bottom (Sort Rows)"
+msgstr "~Nga kreu në fund (klasifiko reshtat)"
+
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3166430\n"
+"23\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/topdown\"> Sorts rows by the values in the active columns of the selected range.</ahelp>"
msgstr ""
-#: 04060000.xhp
+#: 12030200.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3148886\n"
-"63\n"
+"12030200.xhp\n"
+"hd_id3145588\n"
+"24\n"
"help.text"
-msgid "Blue dots denote correctly entered arguments. Red dots indicate incorrect data types. For example: if the SUM function has one argument entered as text, this is highlighted in red as SUM only permits number entries."
+msgid "Left to Right (Sort Columns)"
+msgstr "Nga e m~ajta në të djathtë (klasifiko shtyllat)"
+
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3154370\n"
+"25\n"
+"help.text"
+msgid "<ahelp hid=\"modules/scalc/ui/sortoptionspage/leftright\"> Sorts columns by the values in the active rows of the selected range.</ahelp>"
msgstr ""
-#: 12080300.xhp
+#: 12030200.xhp
msgctxt ""
-"12080300.xhp\n"
+"12030200.xhp\n"
+"hd_id3156290\n"
+"26\n"
+"help.text"
+msgid "Data area"
+msgstr "Zona e të dhënave:"
+
+#: 12030200.xhp
+msgctxt ""
+"12030200.xhp\n"
+"par_id3156446\n"
+"27\n"
+"help.text"
+msgid "Displays the cell range that you want to sort."
+msgstr ""
+
+#: 12040000.xhp
+msgctxt ""
+"12040000.xhp\n"
"tit\n"
"help.text"
-msgid "Group"
-msgstr "Grupi"
+msgid "Filter"
+msgstr "Filtër"
-#: 12080300.xhp
+#: 12040000.xhp
msgctxt ""
-"12080300.xhp\n"
-"hd_id3153088\n"
+"12040000.xhp\n"
+"hd_id3150767\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
+msgid "<link href=\"text/scalc/01/12040000.xhp\" name=\"Filter\">Filter</link>"
msgstr ""
-#: 12080300.xhp
+#: 12040000.xhp
msgctxt ""
-"12080300.xhp\n"
-"par_id3153821\n"
+"12040000.xhp\n"
+"par_id3155131\n"
"2\n"
"help.text"
-msgid "<variable id=\"gruppierung\"><ahelp hid=\".uno:Group\" visibility=\"visible\">Defines the selected cell range as a group of rows or columns.</ahelp></variable>"
+msgid "<ahelp hid=\".\">Shows commands to filter your data.</ahelp>"
msgstr ""
-#: 12080300.xhp
+#: 12040000.xhp
msgctxt ""
-"12080300.xhp\n"
-"par_id3145069\n"
-"3\n"
+"12040000.xhp\n"
+"par_id3146119\n"
+"7\n"
"help.text"
-msgid "When you group a cell range, and outline icon appears in the margins next to the group. To hide or show the group, click the icon. To ungroup the selection, choose <emph>Data – Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Ungroup</emph></link>."
+msgid "$[officename] automatically recognizes predefined database ranges."
msgstr ""
-#: 12080300.xhp
+#: 12040000.xhp
msgctxt ""
-"12080300.xhp\n"
-"hd_id3125863\n"
-"4\n"
+"12040000.xhp\n"
+"par_id3153363\n"
+"3\n"
"help.text"
-msgid "Include"
-msgstr "Përfshij"
+msgid "The following filtering options are available:"
+msgstr "Shërbimi në vijues nuk është në dispozicion:"
-#: 12080300.xhp
+#: 12040000.xhp
msgctxt ""
-"12080300.xhp\n"
-"hd_id3150448\n"
-"6\n"
+"12040000.xhp\n"
+"hd_id3153728\n"
+"4\n"
"help.text"
-msgid "Rows"
-msgstr "Rreshtat"
+msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Standard filter\">Standard filter</link>"
+msgstr ""
-#: 12080300.xhp
+#: 12040000.xhp
msgctxt ""
-"12080300.xhp\n"
-"par_id3153194\n"
-"7\n"
+"12040000.xhp\n"
+"hd_id3159153\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Groups the selected rows.</ahelp>"
+msgid "<link href=\"text/scalc/01/12040300.xhp\" name=\"Advanced filter\">Advanced filter</link>"
msgstr ""
-#: 12080300.xhp
+#: 12040100.xhp
msgctxt ""
-"12080300.xhp\n"
-"hd_id3145786\n"
-"8\n"
+"12040100.xhp\n"
+"tit\n"
"help.text"
-msgid "Columns"
-msgstr "Kolonat"
+msgid "AutoFilter"
+msgstr "AutoFiltër"
-#: 12080300.xhp
+#: 12040100.xhp
msgctxt ""
-"12080300.xhp\n"
-"par_id3146984\n"
-"9\n"
+"12040100.xhp\n"
+"hd_id3153541\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Groups the selected columns.</ahelp>"
+msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"AutoFilter\">AutoFilter</link>"
msgstr ""
-#: 05040200.xhp
+#: 12040100.xhp
msgctxt ""
-"05040200.xhp\n"
-"tit\n"
+"12040100.xhp\n"
+"par_id3148550\n"
+"2\n"
"help.text"
-msgid "Optimal Column Width"
-msgstr "Gjerësia optimale e kolonës"
+msgid "<ahelp hid=\".uno:DataFilterAutoFilter\">Automatically filters the selected cell range, and creates one-row list boxes where you can choose the items that you want to display.</ahelp>"
+msgstr ""
-#: 05040200.xhp
+#: 12040100.xhp
msgctxt ""
-"05040200.xhp\n"
-"bm_id3155628\n"
+"12040100.xhp\n"
+"par_id3145171\n"
+"3\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; optimal column widths</bookmark_value><bookmark_value>columns; optimal widths</bookmark_value><bookmark_value>optimal column widths</bookmark_value>"
+msgid "<link href=\"text/shared/02/12090000.xhp\" name=\"Default filter\">Default filter</link>"
msgstr ""
-#: 05040200.xhp
+#: 12040201.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3155628\n"
-"1\n"
+"12040201.xhp\n"
+"tit\n"
"help.text"
-msgid "Optimal Column Width"
-msgstr "Gjerësia optimale e kolonës"
+msgid "More"
+msgstr "Më shumë"
-#: 05040200.xhp
+#: 12040201.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3145068\n"
-"2\n"
+"12040201.xhp\n"
+"hd_id3148492\n"
+"1\n"
"help.text"
-msgid "<variable id=\"optitext\"><ahelp hid=\".uno:SetOptimalColumnWidthDi\">Defines the optimal column width for selected columns.</ahelp></variable> The optimal column width depends on the longest entry within a column. You can choose from the available <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement units\">measurement units</link>."
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
msgstr ""
-#: 05040200.xhp
+#: 12040201.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3150767\n"
-"3\n"
+"12040201.xhp\n"
+"par_id3159400\n"
+"2\n"
"help.text"
-msgid "Add"
-msgstr "Shto"
+msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_SPEC_FILTER:BTN_MORE\">Shows additional filter options.</ahelp></variable>"
+msgstr ""
-#: 05040200.xhp
+#: 12040201.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3150449\n"
-"4\n"
+"12040201.xhp\n"
+"hd_id3150791\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"SC:METRICFIELD:RID_SCDLG_COL_OPT:ED_VALUE\">Defines additional spacing between the longest entry in a column and the vertical column borders.</ahelp>"
-msgstr ""
+msgid "Options"
+msgstr "Opcionet"
-#: 05040200.xhp
+#: 12040201.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3145785\n"
+"12040201.xhp\n"
+"hd_id3154138\n"
"5\n"
"help.text"
-msgid "Default value"
-msgstr "Mosparaqitje vlerash"
+msgid "Case sensitive"
+msgstr "I ndjeshëm në madhësinë e shkronjave"
-#: 05040200.xhp
+#: 12040201.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3146120\n"
+"12040201.xhp\n"
+"par_id3147228\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_COL_OPT:BTN_DEFVAL\">Defines the optimal column width in order to display the entire contents of the column.</ahelp> The additional spacing for the optimal column width is preset to 0.1 in."
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_CASE\">Distinguishes between uppercase and lowercase letters when filtering the data.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12040201.xhp
msgctxt ""
-"04060106.xhp\n"
-"tit\n"
+"12040201.xhp\n"
+"hd_id3154908\n"
+"7\n"
"help.text"
-msgid "Mathematical Functions"
-msgstr "Funksionet statistikore"
+msgid "Range contains column labels"
+msgstr "Intervali përmban ~emërtimet e shtyllës"
-#: 04060106.xhp
+#: 12040201.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3147124\n"
+"12040201.xhp\n"
+"par_id3153768\n"
+"8\n"
"help.text"
-msgid "<bookmark_value>mathematical functions</bookmark_value><bookmark_value>Function Wizard; mathematical</bookmark_value><bookmark_value>functions; mathematical functions</bookmark_value><bookmark_value>trigonometric functions</bookmark_value>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_HEADER\">Includes the column labels in the first row of a cell range.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12040201.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3147124\n"
-"1\n"
+"12040201.xhp\n"
+"hd_id3155306\n"
+"9\n"
"help.text"
-msgid "Mathematical Functions"
-msgstr "Funksionet statistikore"
+msgid "Copy results to"
+msgstr "Kopjo rezultatet ~te"
-#: 04060106.xhp
+#: 12040201.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154943\n"
-"2\n"
+"12040201.xhp\n"
+"par_id3154319\n"
+"10\n"
"help.text"
-msgid "<variable id=\"mathematiktext\">This category contains the <emph>Mathematical</emph> functions for Calc.</variable> To open the <emph>Function Wizard</emph>, choose <link href=\"text/scalc/01/04060000.xhp\" name=\"Insert - Function\"><emph>Insert - Function</emph></link>."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_COPY_AREA\">Select the check box, and then select the cell range where you want to display the filter results.</ahelp> You can also select a named range from the list."
msgstr ""
-#: 04060106.xhp
+#: 12040201.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3146944\n"
+"12040201.xhp\n"
+"hd_id3145272\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>ABS function</bookmark_value><bookmark_value>absolute values</bookmark_value><bookmark_value>values;absolute</bookmark_value>"
+msgid "Regular expression"
+msgstr "Shprehje e rregullt"
+
+#: 12040201.xhp
+msgctxt ""
+"12040201.xhp\n"
+"par_id3152576\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_REGEXP\">Allows you to use wildcards in the filter definition.</ahelp> For a list of the regular expressions that $[officename] supports, click <link href=\"text/shared/01/02100001.xhp\" name=\"here\">here</link>."
msgstr ""
-#: 04060106.xhp
+#: 12040201.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146944\n"
+"12040201.xhp\n"
+"par_id3149377\n"
"33\n"
"help.text"
-msgid "ABS"
-msgstr "ABS"
+msgid "If the <emph>Regular Expressions</emph> check box is selected, you can use regular expressions in the Value field if the Condition list box is set to '=' EQUAL or '<>' UNEQUAL. This also applies to the respective cells that you reference for an advanced filter."
+msgstr ""
-#: 04060106.xhp
+#: 12040201.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154546\n"
+"12040201.xhp\n"
+"hd_id3149958\n"
"34\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ABS\">Returns the absolute value of a number.</ahelp>"
-msgstr ""
+msgid "No duplication"
+msgstr "~Asnjë dyfishim"
-#: 04060106.xhp
+#: 12040201.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154843\n"
+"12040201.xhp\n"
+"par_id3153876\n"
"35\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_SPEC_FILTER:BTN_UNIQUE\">Excludes duplicate rows in the list of filtered data.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12040201.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147475\n"
-"36\n"
+"12040201.xhp\n"
+"hd_id3154018\n"
+"40\n"
"help.text"
-msgid "ABS(Number)"
-msgstr "Numri i faqes"
+msgid "Keep filter criteria"
+msgstr "~Ruaj kriteret e filtrimit"
-#: 04060106.xhp
+#: 12040201.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148438\n"
-"37\n"
+"12040201.xhp\n"
+"par_id3149123\n"
+"41\n"
"help.text"
-msgid "<emph>Number</emph> is the number whose absolute value is to be calculated. The absolute value of a number is its value without the +/- sign."
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_FILTER:BTN_DEST_PERS\">Select the <emph>Copy results to</emph> check box, and then specify the destination range where you want to display the filtered data. If this box is checked, the destination range remains linked to the source range. You must have defined the source range under <emph>Data - Define range</emph> as a database range.</ahelp> Following this, you can reapply the defined filter at any time as follows: click into the source range, then choose <emph>Data - Refresh Range</emph>."
msgstr ""
-#: 04060106.xhp
+#: 12040201.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155823\n"
-"38\n"
+"12040201.xhp\n"
+"hd_id3149018\n"
+"36\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Data range"
+msgstr "Intervali i të Dhënave"
-#: 04060106.xhp
-#, fuzzy
+#: 12040201.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152787\n"
-"39\n"
+"12040201.xhp\n"
+"par_id3150042\n"
+"37\n"
"help.text"
-msgid "<item type=\"input\">=ABS(-56)</item> returns 56."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Displays the cell range or the name of the cell range that you want to filter."
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12040300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148752\n"
-"40\n"
+"12040300.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=ABS(12)</item> returns 12."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Advanced Filter"
+msgstr "Filtri i Avancuar"
-#: 04060106.xhp
-#, fuzzy
+#: 12040300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id320139\n"
+"12040300.xhp\n"
+"hd_id3158394\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=ABS(0)</item> returns 0."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Advanced Filter"
+msgstr "Filtri i Avancuar"
-#: 04060106.xhp
+#: 12040300.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3150896\n"
+"12040300.xhp\n"
+"par_id3156281\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>COUNTBLANK function</bookmark_value><bookmark_value>counting;empty cells</bookmark_value><bookmark_value>empty cells;counting</bookmark_value>"
+msgid "<variable id=\"spezialfilter\"><ahelp hid=\".uno:DataFilterSpecialFilter\">Defines an advanced filter.</ahelp></variable>"
msgstr ""
-#: 04060106.xhp
+#: 12040300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150896\n"
-"42\n"
+"12040300.xhp\n"
+"par_idN105EB\n"
"help.text"
-msgid "COUNTBLANK"
-msgstr "COUNTBLANK"
+msgid "<embedvar href=\"text/scalc/guide/filters.xhp#filters\"/>"
+msgstr ""
-#: 04060106.xhp
+#: 12040300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155260\n"
-"43\n"
+"12040300.xhp\n"
+"hd_id3153771\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ANZAHLLEEREZELLEN\">Returns the number of empty cells.</ahelp>"
+msgid "Read filter criteria from"
+msgstr "Lexo ~kriteret e filtrimit nga"
+
+#: 12040300.xhp
+msgctxt ""
+"12040300.xhp\n"
+"par_id3147426\n"
+"26\n"
+"help.text"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_SPEC_FILTER:ED_CRITERIA_AREA\">Select the named range, or enter the cell range that contains the filter criteria that you want to use.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12040300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145144\n"
-"44\n"
+"12040300.xhp\n"
+"hd_id3153188\n"
+"27\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<link href=\"text/scalc/01/12040201.xhp\" name=\"More\">More</link>"
+msgstr ""
-#: 04060106.xhp
+#: 12040400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153931\n"
-"45\n"
+"12040400.xhp\n"
+"tit\n"
"help.text"
-msgid "COUNTBLANK(Range)"
-msgstr "Brezi i numrave"
+msgid "Remove Filter"
+msgstr "Largo Filtrin"
-#: 04060106.xhp
+#: 12040400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149512\n"
-"46\n"
+"12040400.xhp\n"
+"hd_id3153087\n"
+"1\n"
"help.text"
-msgid "Returns the number of empty cells in the cell range <emph>Range</emph>."
+msgid "<link href=\"text/scalc/01/12040400.xhp\" name=\"Remove Filter\">Remove Filter</link>"
msgstr ""
-#: 04060106.xhp
+#: 12040400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146139\n"
-"47\n"
+"12040400.xhp\n"
+"par_id3154760\n"
+"2\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<ahelp hid=\".uno:DataFilterRemoveFilter\">Removes the filter from the selected cell range. To enable this command, click inside the cell area where the filter was applied.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12040500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148586\n"
-"48\n"
+"12040500.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=COUNTBLANK(A1:B2)</item> returns 4 if cells A1, A2, B1, and B2 are all empty."
-msgstr ""
+msgid "Hide AutoFilter"
+msgstr "Fshehe Filtrin Automatik"
-#: 04060106.xhp
+#: 12040500.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3153114\n"
+"12040500.xhp\n"
+"bm_id3150276\n"
"help.text"
-msgid "<bookmark_value>ACOS function</bookmark_value>"
-msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+msgid "<bookmark_value>database ranges; hiding AutoFilter</bookmark_value>"
+msgstr ""
-#: 04060106.xhp
+#: 12040500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153114\n"
-"50\n"
+"12040500.xhp\n"
+"hd_id3150276\n"
+"1\n"
"help.text"
-msgid "ACOS"
-msgstr "ACOS"
+msgid "<link href=\"text/scalc/01/12040500.xhp\" name=\"Hide AutoFilter\">Hide AutoFilter</link>"
+msgstr ""
-#: 04060106.xhp
+#: 12040500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145163\n"
-"51\n"
+"12040500.xhp\n"
+"par_id3156326\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCCOS\">Returns the inverse trigonometric cosine of a number.</ahelp>"
+msgid "<ahelp hid=\".uno:DataFilterHideAutoFilter\" visibility=\"visible\">Hides the AutoFilter buttons in the selected cell range.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12050000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153565\n"
-"52\n"
+"12050000.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Subtotals"
+msgstr "Nëntotalet"
-#: 04060106.xhp
+#: 12050000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150020\n"
-"53\n"
+"12050000.xhp\n"
+"hd_id3153822\n"
+"1\n"
"help.text"
-msgid "ACOS(Number)"
-msgstr "Numri i faqes"
+msgid "Subtotals"
+msgstr "Nëntotalet"
-#: 04060106.xhp
+#: 12050000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159134\n"
-"54\n"
+"12050000.xhp\n"
+"par_id3145119\n"
+"2\n"
"help.text"
-msgid "This function returns the inverse trigonometric cosine of <emph>Number</emph>, that is the angle (in radians) whose cosine is Number. The angle returned is between 0 and PI."
+msgid "<variable id=\"teilergebnisse\"><ahelp hid=\".uno:DataSubTotals\" visibility=\"visible\">Calculates subtotals for the columns that you select.</ahelp></variable> $[officename] uses the SUM function to automatically calculate the subtotal and grand total values in a labeled range. You can also use other functions to perform the calculation. $[officename] automatically recognizes a defined database area when you place the cursor in it."
msgstr ""
-#: 04060106.xhp
+#: 12050000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id679647\n"
+"12050000.xhp\n"
+"par_id3153896\n"
+"3\n"
"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
+msgid "For example, you can generate a sales summary for a certain postal code based on data from a client database."
msgstr ""
-#: 04060106.xhp
+#: 12050000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149882\n"
-"55\n"
+"12050000.xhp\n"
+"hd_id3163708\n"
+"4\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Delete"
+msgstr "Fshije"
-#: 04060106.xhp
+#: 12050000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150128\n"
-"56\n"
+"12050000.xhp\n"
+"par_id3154125\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">=ACOS(-1)</item> returns 3.14159265358979 (PI radians)"
+msgid "Deletes the subtotal rows in the selected area."
msgstr ""
-#: 04060106.xhp
+#: 12050100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8792382\n"
+"12050100.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(ACOS(0.5))</item> returns 60. The cosine of 60 degrees is 0.5."
+msgid "1st, 2nd, 3rd Group"
msgstr ""
-#: 04060106.xhp
+#: 12050100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3145355\n"
+"12050100.xhp\n"
+"hd_id3149784\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>ACOSH function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "<link href=\"text/scalc/01/12050100.xhp\" name=\"1st, 2nd, 3rd Group\">1st, 2nd, 3rd Group</link>"
+msgstr ""
-#: 04060106.xhp
+#: 12050100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145355\n"
-"60\n"
+"12050100.xhp\n"
+"par_id3145068\n"
+"2\n"
"help.text"
-msgid "ACOSH"
-msgstr "ACOSH"
+msgid "<ahelp hid=\"HID_SCPAGE_SUBT_GROUP1\">Specify the settings for up to three subtotal groups. Each tab has the same layout.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12050100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157993\n"
-"61\n"
+"12050100.xhp\n"
+"par_id3148797\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCOSHYP\">Returns the inverse hyperbolic cosine of a number.</ahelp>"
+msgid "To insert subtotal values into a table:"
msgstr ""
-#: 04060106.xhp
+#: 12050100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145295\n"
-"62\n"
+"12050100.xhp\n"
+"par_id3154908\n"
+"13\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Ensure that the columns of the table have labels."
+msgstr ""
-#: 04060106.xhp
+#: 12050100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151017\n"
-"63\n"
+"12050100.xhp\n"
+"par_id3153968\n"
+"4\n"
"help.text"
-msgid "ACOSH(Number)"
-msgstr "Numri i faqes"
+msgid "Select the table or the area in the table that you want to calculate subtotals for, and then choose <emph>Data – Subtotals</emph>."
+msgstr ""
-#: 04060106.xhp
+#: 12050100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149000\n"
-"64\n"
+"12050100.xhp\n"
+"par_id3161831\n"
+"5\n"
"help.text"
-msgid "This function returns the inverse hyperbolic cosine of <emph>Number</emph>, that is the number whose hyperbolic cosine is Number."
+msgid "In the <emph>Group By</emph> box, select the column that you want to add the subtotals to."
msgstr ""
-#: 04060106.xhp
+#: 12050100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6393932\n"
+"12050100.xhp\n"
+"par_id3153188\n"
+"6\n"
"help.text"
-msgid "Number must be greater than or equal to 1."
+msgid "In the <emph>Calculate subtotals for</emph> box, select the check boxes for the columns containing the values that you want to subtotal."
msgstr ""
-#: 04060106.xhp
+#: 12050100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150566\n"
-"65\n"
+"12050100.xhp\n"
+"par_id3152460\n"
+"14\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "In the <emph>Use function</emph> box, select the function that you want to use to calculate the subtotals."
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12050100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145629\n"
-"66\n"
+"12050100.xhp\n"
+"par_id3154321\n"
+"15\n"
"help.text"
-msgid "<item type=\"input\">=ACOSH(1)</item> returns 0."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Click <emph>OK</emph>."
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-#: 04060106.xhp
-#, fuzzy
+#: 12050100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id951567\n"
+"12050100.xhp\n"
+"hd_id3156441\n"
+"7\n"
"help.text"
-msgid "<item type=\"input\">=ACOSH(COSH(4))</item> returns 4."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Group by"
+msgstr "~Grupo sipas"
-#: 04060106.xhp
+#: 12050100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3149027\n"
+"12050100.xhp\n"
+"par_id3154013\n"
+"8\n"
"help.text"
-msgid "<bookmark_value>ACOT function</bookmark_value>"
-msgstr "Gabim: Vlera nuk është në dispozicion"
+msgid "<ahelp hid=\"HID_SC_SUBT_GROUP\">Select the column that you want to control the subtotal calculation process. If the contents of the selected column change, the subtotals are automatically recalculated.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12050100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149027\n"
-"70\n"
+"12050100.xhp\n"
+"hd_id3154943\n"
+"9\n"
"help.text"
-msgid "ACOT"
-msgstr "ACOT"
+msgid "Calculate subtotals for"
+msgstr "~Llogarit nëntotalet për"
-#: 04060106.xhp
+#: 12050100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155818\n"
-"71\n"
+"12050100.xhp\n"
+"par_id3147125\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCCOT\">Returns the inverse cotangent (the arccotangent) of the given number.</ahelp>"
+msgid "<ahelp hid=\"HID_SC_SUBT_COLS\">Select the column(s) containing the values that you want to subtotal.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12050100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153225\n"
-"72\n"
+"12050100.xhp\n"
+"hd_id3156283\n"
+"11\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Use function"
+msgstr "Shfrytëzo ~funksionin"
-#: 04060106.xhp
+#: 12050100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158419\n"
-"73\n"
+"12050100.xhp\n"
+"par_id3145647\n"
+"12\n"
"help.text"
-msgid "ACOT(Number)"
-msgstr "Numri i faqes"
+msgid "<ahelp hid=\"HID_SC_SUBT_FUNC\">Select the mathematical function that you want to use to calculate the subtotals.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12050200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154948\n"
-"74\n"
+"12050200.xhp\n"
+"tit\n"
"help.text"
-msgid "This function returns the inverse trigonometric cotangent of <emph>Number</emph>, that is the angle (in radians) whose cotangent is Number. The angle returned is between 0 and PI."
-msgstr ""
+msgid "Options"
+msgstr "Opcionet"
-#: 04060106.xhp
+#: 12050200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5834528\n"
+"12050200.xhp\n"
+"bm_id3154758\n"
"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
+msgid "<bookmark_value>subtotals; sorting options</bookmark_value>"
msgstr ""
-#: 04060106.xhp
+#: 12050200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3147538\n"
-"75\n"
+"12050200.xhp\n"
+"hd_id3154758\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<link href=\"text/scalc/01/12050200.xhp\" name=\"Options\">Options</link>"
+msgstr ""
-#: 04060106.xhp
+#: 12050200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155375\n"
-"76\n"
+"12050200.xhp\n"
+"par_id3154124\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=ACOT(1)</item> returns 0.785398163397448 (PI/4 radians)."
+msgid "<ahelp hid=\"HID_SCPAGE_SUBT_OPTIONS\">Specify the settings for calculating and presenting subtotals.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12050200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8589434\n"
+"12050200.xhp\n"
+"hd_id3156422\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(ACOT(1))</item> returns 45. The tangent of 45 degrees is 1."
+msgid "Page break between groups"
+msgstr "~Theyrjet e faqeve në mes të grupeve"
+
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"par_id3147317\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_PAGEBREAK\">Inserts a new page after each group of subtotaled data.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12050200.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3148426\n"
+"12050200.xhp\n"
+"hd_id3146985\n"
+"5\n"
"help.text"
-msgid "<bookmark_value>ACOTH function</bookmark_value>"
-msgstr "Gabim: Vlera nuk është në dispozicion"
+msgid "Case sensitive"
+msgstr "I ndjeshëm në madhësinë e shkronjave"
-#: 04060106.xhp
+#: 12050200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3148426\n"
-"80\n"
+"12050200.xhp\n"
+"par_id3153190\n"
+"6\n"
"help.text"
-msgid "ACOTH"
-msgstr "ACOTH"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_CASE\">Recalculates subtotals when you change the case of a data label.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12050200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147478\n"
-"81\n"
+"12050200.xhp\n"
+"hd_id3151119\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCOTHYP\">Returns the inverse hyperbolic cotangent of the given number.</ahelp>"
+msgid "Pre-sort area according to groups"
+msgstr "Zona e para~klasifikuar sipas grupeve"
+
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"par_id3149664\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_SORT\">Sorts the area that you selected in the <emph>Group by</emph> box of the Group tabs according to the columns that you selected.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12050200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152585\n"
-"82\n"
+"12050200.xhp\n"
+"hd_id3153951\n"
+"9\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Sort"
+msgstr "Rendit"
-#: 04060106.xhp
+#: 12050200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147172\n"
-"83\n"
+"12050200.xhp\n"
+"hd_id3145252\n"
+"11\n"
"help.text"
-msgid "ACOTH(Number)"
-msgstr "Numri i faqes"
+msgid "Include formats"
+msgstr "Përfshij ~formatet"
-#: 04060106.xhp
+#: 12050200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146155\n"
-"84\n"
+"12050200.xhp\n"
+"par_id3147125\n"
+"12\n"
"help.text"
-msgid "This function returns the inverse hyperbolic cotangent of <emph>Number</emph>, that is the number whose hyperbolic cotangent is Number."
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCPAGE_SUBT_OPTIONS:BTN_FORMATS\">Considers formatting attributes when sorting.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12050200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5818659\n"
+"12050200.xhp\n"
+"hd_id3155418\n"
+"13\n"
"help.text"
-msgid "An error results if Number is between -1 and 1 inclusive."
+msgid "Custom sort order"
+msgstr "Renditja e klasifikimit e ~zgjedhur sipas dëshirës"
+
+#: 12050200.xhp
+msgctxt ""
+"12050200.xhp\n"
+"par_id3149400\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCPAGE_SUBT_OPTIONS:LB_USERDEF\">Uses a custom sorting order that you defined in the Options dialog box at <emph>%PRODUCTNAME Calc - Sort Lists</emph>.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12050200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3083452\n"
-"85\n"
+"12050200.xhp\n"
+"hd_id3149121\n"
+"15\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Ascending"
+msgstr "Në rritje"
-#: 04060106.xhp
+#: 12050200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150608\n"
-"86\n"
+"12050200.xhp\n"
+"par_id3155068\n"
+"16\n"
"help.text"
-msgid "<item type=\"input\">=ACOTH(1.1)</item> returns inverse hyperbolic cotangent of 1.1, approximately 1.52226."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_ASCENDING\">Sorts beginning with the lowest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
msgstr ""
-#: 04060106.xhp
+#: 12050200.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3145084\n"
+"12050200.xhp\n"
+"hd_id3155443\n"
+"17\n"
"help.text"
-msgid "<bookmark_value>ASIN function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "Descending"
+msgstr "Në zvogëlim"
-#: 04060106.xhp
+#: 12050200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145084\n"
-"90\n"
+"12050200.xhp\n"
+"par_id3153766\n"
+"18\n"
"help.text"
-msgid "ASIN"
-msgstr "ASIN"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCPAGE_SUBT_OPTIONS:BTN_DESCENDING\">Sorts beginning with the highest value. You can define the sort rules on Data - Sort - Options.</ahelp> You define the default on Tools - Options - Language settings - Languages."
+msgstr ""
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156296\n"
-"91\n"
+"12060000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCSIN\">Returns the inverse trigonometric sine of a number.</ahelp>"
-msgstr ""
+msgid "Multiple Operations"
+msgstr "Operacione të Shumëfishta"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149716\n"
-"92\n"
+"12060000.xhp\n"
+"hd_id3153381\n"
+"1\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Multiple Operations"
+msgstr "Operacione të Shumëfishta"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156305\n"
-"93\n"
+"12060000.xhp\n"
+"par_id3154140\n"
+"2\n"
"help.text"
-msgid "ASIN(Number)"
-msgstr "Numri i faqes"
+msgid "<variable id=\"mehrfachoperationen\"><ahelp hid=\".uno:TableOperationDialog\">Applies the same formula to different cells, but with different parameter values.</ahelp></variable>"
+msgstr ""
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150964\n"
-"94\n"
+"12060000.xhp\n"
+"par_id3152598\n"
+"5\n"
"help.text"
-msgid "This function returns the inverse trigonometric sine of <emph>Number</emph>, that is the angle (in radians) whose sine is Number. The angle returned is between -PI/2 and +PI/2."
+msgid "The <emph>Row</emph> or <emph>Column</emph> box must contain a reference to the first cell of the selected range."
msgstr ""
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id203863\n"
+"12060000.xhp\n"
+"par_id3154011\n"
+"16\n"
"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
+msgid "If you export a spreadsheet containing multiple operations to Microsoft Excel, the location of the cells containing the formula must be fully defined relative to the data range."
msgstr ""
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149448\n"
-"95\n"
+"12060000.xhp\n"
+"hd_id3156441\n"
+"3\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Defaults"
+msgstr "Standarde"
-#: 04060106.xhp
-#, fuzzy
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156100\n"
-"96\n"
+"12060000.xhp\n"
+"hd_id3154492\n"
+"6\n"
"help.text"
-msgid "<item type=\"input\">=ASIN(0)</item> returns 0."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Formulas"
+msgstr "Formulat"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6853846\n"
+"12060000.xhp\n"
+"par_id3151073\n"
+"7\n"
"help.text"
-msgid "<item type=\"input\">=ASIN(1)</item> returns 1.5707963267949 (PI/2 radians)."
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_FORMULARANGE\">Enter the cell references for the cells containing the formulas that you want to use in the multiple operation.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8772240\n"
+"12060000.xhp\n"
+"hd_id3154729\n"
+"8\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(ASIN(0.5))</item> returns 30. The sine of 30 degrees is 0.5."
-msgstr ""
+msgid "Row"
+msgstr "Rresht"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3151266\n"
+"12060000.xhp\n"
+"par_id3148456\n"
+"9\n"
"help.text"
-msgid "<bookmark_value>ASINH function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_ROWCELL\">Enter the input cell reference that you want to use as a variable for the rows in the data table.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3151266\n"
-"100\n"
+"12060000.xhp\n"
+"hd_id3150718\n"
+"14\n"
"help.text"
-msgid "ASINH"
-msgstr "ASINH"
+msgid "Column"
+msgstr "Kolonë"
-#: 04060106.xhp
+#: 12060000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147077\n"
-"101\n"
+"12060000.xhp\n"
+"par_id3150327\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARSINHYP\">Returns the inverse hyperbolic sine of a number.</ahelp>"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_TABOP:ED_COLCELL\">Enter the input cell reference that you want to use as a variable for the columns in the data table.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150763\n"
-"102\n"
+"12070000.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Consolidate"
+msgstr "Konsolido"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150882\n"
-"103\n"
+"12070000.xhp\n"
+"hd_id3148946\n"
+"1\n"
"help.text"
-msgid "ASINH(Number)"
-msgstr "Numri i faqes"
+msgid "Consolidate"
+msgstr "Konsolido"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147621\n"
-"104\n"
+"12070000.xhp\n"
+"par_id3148798\n"
+"2\n"
"help.text"
-msgid "This function returns the inverse hyperbolic sine of <emph>Number</emph>, that is the number whose hyperbolic sine is Number."
+msgid "<variable id=\"konsolidieren\"><ahelp hid=\".uno:DataConsolidate\">Combines data from one or more independent cell ranges and calculates a new range using the function that you specify.</ahelp></variable>"
msgstr ""
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153212\n"
-"105\n"
+"12070000.xhp\n"
+"hd_id3150010\n"
+"8\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Function"
+msgstr "Funksioni"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156120\n"
-"106\n"
+"12070000.xhp\n"
+"par_id3149377\n"
+"9\n"
"help.text"
-msgid "<item type=\"input\">=ASINH(-90)</item> returns approximately -5.1929877."
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_CONSOLIDATE:LB_FUNC\">Select the function that you want to use to consolidate the data.</ahelp>"
msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id4808496\n"
+"12070000.xhp\n"
+"hd_id3147127\n"
+"10\n"
"help.text"
-msgid "<item type=\"input\">=ASINH(SINH(4))</item> returns 4."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Consolidation ranges"
+msgstr "~Intervalet e konsolidimit"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3155996\n"
+"12070000.xhp\n"
+"par_id3151075\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>ATAN function</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
+msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_CONSOLIDATE:LB_CONSAREAS\">Displays the cell ranges that you want to consolidate.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155996\n"
-"110\n"
+"12070000.xhp\n"
+"hd_id3147397\n"
+"12\n"
"help.text"
-msgid "ATAN"
-msgstr "ATAN"
+msgid "Source data range"
+msgstr "~Intervali i të dhënave burimore"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149985\n"
-"111\n"
+"12070000.xhp\n"
+"par_id3153836\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCTAN\">Returns the inverse trigonometric tangent of a number.</ahelp>"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DATA_AREA\">Specifies the cell range that you want to consolidate with the cell ranges listed in the <emph>Consolidation ranges </emph>box. Select a cell range in a sheet, and then click <emph>Add</emph>. You can also select a the name of a predefined cell from the <emph>Source data range </emph>list.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3151294\n"
-"112\n"
+"12070000.xhp\n"
+"hd_id3155768\n"
+"15\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Copy results to"
+msgstr "Kopjo rezultatet ~te"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150261\n"
-"113\n"
+"12070000.xhp\n"
+"par_id3147341\n"
+"16\n"
"help.text"
-msgid "ATAN(Number)"
-msgstr "Numri i faqes"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_CONSOLIDATE:ED_DEST_AREA\">Displays the first cell in the range where the consolidation results will be displayed.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147267\n"
-"114\n"
+"12070000.xhp\n"
+"hd_id3147345\n"
+"17\n"
"help.text"
-msgid "This function returns the inverse trigonometric tangent of <emph>Number</emph>, that is the angle (in radians) whose tangent is Number. The angle returned is between -PI/2 and PI/2."
-msgstr ""
+msgid "Add"
+msgstr "Shto"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6293527\n"
+"12070000.xhp\n"
+"par_id3155335\n"
+"18\n"
"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
+msgid "<ahelp hid=\"SC:PUSHBUTTON:RID_SCDLG_CONSOLIDATE:BTN_ADD\">Adds the cell range specified in the <emph>Source data range</emph> box to the <emph>Consolidation ranges </emph>box.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154054\n"
-"115\n"
+"12070000.xhp\n"
+"hd_id3148630\n"
+"19\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "More >>"
+msgstr "Më shumë >>"
-#: 04060106.xhp
+#: 12070000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143229\n"
-"116\n"
+"12070000.xhp\n"
+"par_id3159239\n"
+"20\n"
"help.text"
-msgid "<item type=\"input\">=ATAN(1)</item> returns 0.785398163397448 (PI/4 radians)."
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_CONSOLIDATE:BTN_MORE\">Shows additional <link href=\"text/scalc/01/12070100.xhp\" name=\"options\">options</link>.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8746299\n"
+"12070100.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(ATAN(1))</item> returns 45. The tangent of 45 degrees is 1."
+msgid "Consolidate by"
+msgstr "Konsoliduar nga"
+
+#: 12070100.xhp
+msgctxt ""
+"12070100.xhp\n"
+"hd_id3151210\n"
+"1\n"
+"help.text"
+msgid "Consolidate by"
+msgstr "Konsoliduar nga"
+
+#: 12070100.xhp
+msgctxt ""
+"12070100.xhp\n"
+"hd_id3125864\n"
+"2\n"
+"help.text"
+msgid "Consolidate by"
+msgstr "Konsoliduar nga"
+
+#: 12070100.xhp
+msgctxt ""
+"12070100.xhp\n"
+"par_id3154909\n"
+"3\n"
+"help.text"
+msgid "Use this section if the cell ranges that you want to consolidate contain labels. You only need to select these options if the consolidation ranges contain similar labels and the data arranged is arranged differently."
msgstr ""
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3153983\n"
+"12070100.xhp\n"
+"hd_id3153968\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>ATAN2 function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "Row labels"
+msgstr "~Emërtimi i rreshtave"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153983\n"
-"120\n"
+"12070100.xhp\n"
+"par_id3150441\n"
+"5\n"
"help.text"
-msgid "ATAN2"
-msgstr "ATAN2"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYROW\" visibility=\"visible\">Uses the row labels to arrange the consolidated data.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154297\n"
-"121\n"
+"12070100.xhp\n"
+"hd_id3146976\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARCTAN2\">Returns the inverse trigonometric tangent of the specified x and y coordinates.</ahelp>"
+msgid "Column labels"
+msgstr "Përmban ~emërtimet e shtyllave"
+
+#: 12070100.xhp
+msgctxt ""
+"12070100.xhp\n"
+"par_id3155411\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_BYCOL\" visibility=\"visible\">Uses the column labels to arrange the consolidated data.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149758\n"
-"122\n"
+"12070100.xhp\n"
+"hd_id3153191\n"
+"12\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Options"
+msgstr "Opcionet"
-#: 04060106.xhp
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156013\n"
-"123\n"
+"12070100.xhp\n"
+"hd_id3159154\n"
+"8\n"
"help.text"
-msgid "ATAN2(NumberX; NumberY)"
+msgid "Link to source data"
+msgstr "~Lidhi me të dhënat burimore"
+
+#: 12070100.xhp
+msgctxt ""
+"12070100.xhp\n"
+"par_id3146986\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_CONSOLIDATE:BTN_REFS\" visibility=\"visible\">Links the data in the consolidation range to the source data, and automatically updates the results of the consolidation when the source data is changed.</ahelp>"
msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151168\n"
-"124\n"
+"12070100.xhp\n"
+"hd_id3163708\n"
+"10\n"
"help.text"
-msgid "<emph>NumberX</emph> is the value of the x coordinate."
-msgstr "Kthen SAKTË nëse vlera është një numër."
+msgid "More <<"
+msgstr "Më shumë"
-#: 04060106.xhp
-#, fuzzy
+#: 12070100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152798\n"
-"125\n"
+"12070100.xhp\n"
+"par_id3151118\n"
+"11\n"
"help.text"
-msgid "<emph>NumberY</emph> is the value of the y coordinate."
-msgstr "Kthen SAKTË nëse vlera është një numër."
+msgid "Hides the additional options."
+msgstr "Shiriti i opcioneve /Grafikat"
-#: 04060106.xhp
+#: 12080000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5036164\n"
+"12080000.xhp\n"
+"tit\n"
"help.text"
-msgid "ATAN2 returns the inverse trigonometric tangent, that is, the angle (in radians) between the x-axis and a line from point NumberX, NumberY to the origin. The angle returned is between -PI and PI."
+msgid "Group and Outline"
+msgstr "Modifiko titullin dhe konturën"
+
+#: 12080000.xhp
+msgctxt ""
+"12080000.xhp\n"
+"bm_id3152350\n"
+"help.text"
+msgid "<bookmark_value>sheets; outlines</bookmark_value><bookmark_value>outlines; sheets</bookmark_value><bookmark_value>hiding; sheet details</bookmark_value><bookmark_value>showing; sheet details</bookmark_value><bookmark_value>grouping;cells</bookmark_value>"
msgstr ""
-#: 04060106.xhp
+#: 12080000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3001800\n"
+"12080000.xhp\n"
+"hd_id3152350\n"
+"1\n"
"help.text"
-msgid "To return the angle in degrees, use the DEGREES function."
+msgid "<link href=\"text/scalc/01/12080000.xhp\" name=\"Group and Outline\">Group and Outline</link>"
msgstr ""
-#: 04060106.xhp
+#: 12080000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145663\n"
-"126\n"
+"12080000.xhp\n"
+"par_id3150793\n"
+"2\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "You can create an outline of your data and group rows and columns together so that you can collapse and expand the groups with a single click."
+msgstr ""
-#: 04060106.xhp
+#: 12080000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154692\n"
-"127\n"
+"12080000.xhp\n"
+"hd_id3147229\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=ATAN2(20;20)</item> returns 0.785398163397448 (PI/4 radians)."
+msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
msgstr ""
-#: 04060106.xhp
+#: 12080000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1477095\n"
+"12080000.xhp\n"
+"hd_id3153188\n"
+"4\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(ATAN2(12.3;12.3))</item> returns 45. The tangent of 45 degrees is 1."
+msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
msgstr ""
-#: 04060106.xhp
+#: 12080100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3155398\n"
+"12080100.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>ATANH function</bookmark_value>"
+msgid "Hide Details"
+msgstr "Fsheh hollësitë"
+
+#: 12080100.xhp
+msgctxt ""
+"12080100.xhp\n"
+"bm_id3155628\n"
+"help.text"
+msgid "<bookmark_value>sheets; hiding details</bookmark_value>"
msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 04060106.xhp
+#: 12080100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155398\n"
-"130\n"
+"12080100.xhp\n"
+"hd_id3155628\n"
+"1\n"
"help.text"
-msgid "ATANH"
-msgstr "ATANH"
+msgid "<link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\">Hide Details</link>"
+msgstr ""
-#: 04060106.xhp
+#: 12080100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148829\n"
-"131\n"
+"12080100.xhp\n"
+"par_id3154515\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ARTANHYP\">Returns the inverse hyperbolic tangent of a number.</ahelp>"
+msgid "<ahelp hid=\".uno:HideDetail\" visibility=\"visible\">Hides the details of the grouped row or column that contains the cursor. To hide all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12080100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146997\n"
-"132\n"
+"12080100.xhp\n"
+"par_id3153252\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "To show all hidden groups, select the outlined table, and then choose <emph>Data - Group and Outline –</emph> <link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\"><emph>Show Details</emph></link>."
+msgstr ""
-#: 04060106.xhp
+#: 12080200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149912\n"
-"133\n"
+"12080200.xhp\n"
+"tit\n"
"help.text"
-msgid "ATANH(Number)"
-msgstr "Numri i faqes"
+msgid "Show Details"
+msgstr "Trego hollësitë"
-#: 04060106.xhp
+#: 12080200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150521\n"
-"134\n"
+"12080200.xhp\n"
+"bm_id3153561\n"
"help.text"
-msgid "This function returns the inverse hyperbolic tangent of <emph>Number</emph>, that is the number whose hyperbolic tangent is Number."
+msgid "<bookmark_value>tables; showing details</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
+
+#: 12080200.xhp
+msgctxt ""
+"12080200.xhp\n"
+"hd_id3153561\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12080200.xhp\" name=\"Show Details\">Show Details</link>"
msgstr ""
-#: 04060106.xhp
+#: 12080200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9357280\n"
+"12080200.xhp\n"
+"par_id3153822\n"
+"2\n"
"help.text"
-msgid "Number must obey the condition -1 < number < 1."
+msgid "<ahelp hid=\".uno:ShowDetail\">Shows the details of the grouped row or column that contains the cursor. To show the details of all of the grouped rows or columns, select the outlined table, and then choose this command.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12080200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3148450\n"
-"135\n"
+"12080200.xhp\n"
+"par_id3155922\n"
+"3\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "To hide a selected group, choose <emph>Data - Group and Outline – </emph><link href=\"text/scalc/01/12080100.xhp\" name=\"Hide Details\"><emph>Hide Details</emph></link>."
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12080200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145419\n"
-"136\n"
+"12080200.xhp\n"
+"par_id6036561\n"
"help.text"
-msgid "<item type=\"input\">=ATANH(0)</item> returns 0."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details command in pivot tables</link>"
+msgstr ""
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3153062\n"
+"12080300.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>COS function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "Group"
+msgstr "Grupi"
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153062\n"
-"149\n"
+"12080300.xhp\n"
+"hd_id3153088\n"
+"1\n"
"help.text"
-msgid "COS"
-msgstr "COS"
+msgid "<link href=\"text/scalc/01/12080300.xhp\" name=\"Group\">Group</link>"
+msgstr ""
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148803\n"
-"150\n"
+"12080300.xhp\n"
+"par_id3153821\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COS\">Returns the cosine of the given angle (in radians).</ahelp>"
+msgid "<variable id=\"gruppierung\"><ahelp hid=\".uno:Group\" visibility=\"visible\">Defines the selected cell range as a group of rows or columns.</ahelp></variable>"
msgstr ""
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150779\n"
-"151\n"
+"12080300.xhp\n"
+"par_id3145069\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "When you group a cell range, and outline icon appears in the margins next to the group. To hide or show the group, click the icon. To ungroup the selection, choose <emph>Data – Outline -</emph> <link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\"><emph>Ungroup</emph></link>."
+msgstr ""
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154213\n"
-"152\n"
+"12080300.xhp\n"
+"hd_id3125863\n"
+"4\n"
"help.text"
-msgid "COS(Number)"
-msgstr "Numri i faqes"
+msgid "Include"
+msgstr "Përfshij"
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154285\n"
-"153\n"
+"12080300.xhp\n"
+"hd_id3150448\n"
+"6\n"
"help.text"
-msgid "Returns the (trigonometric) cosine of <emph>Number</emph>, the angle in radians."
+msgid "Rows"
+msgstr "Rreshtat"
+
+#: 12080300.xhp
+msgctxt ""
+"12080300.xhp\n"
+"par_id3153194\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_GROUP_ROWS\" visibility=\"visible\">Groups the selected rows.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12080300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id831019\n"
+"12080300.xhp\n"
+"hd_id3145786\n"
+"8\n"
"help.text"
-msgid "To return the cosine of an angle in degrees, use the RADIANS function."
+msgid "Columns"
+msgstr "Kolonat"
+
+#: 12080300.xhp
+msgctxt ""
+"12080300.xhp\n"
+"par_id3146984\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SC_GROUP_COLS\" visibility=\"visible\">Groups the selected columns.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153579\n"
-"154\n"
+"12080400.xhp\n"
+"tit\n"
"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
+msgid "Ungroup"
+msgstr "Zhgrupo"
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147240\n"
-"155\n"
+"12080400.xhp\n"
+"hd_id3148492\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=COS(PI()/2)</item> returns 0, the cosine of PI/2 radians."
+msgid "<link href=\"text/scalc/01/12080400.xhp\" name=\"Ungroup\">Ungroup</link>"
msgstr ""
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147516\n"
-"156\n"
+"12080400.xhp\n"
+"par_id3151384\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=COS(RADIANS(60))</item> returns 0.5, the cosine of 60 degrees."
+msgid "<variable id=\"gruppierungauf\"><ahelp hid=\".uno:Ungroup\" visibility=\"visible\">Ungroups the selection. In a nested group, the last rows or columns that were added are removed from the group.</ahelp></variable>"
msgstr ""
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3154277\n"
+"12080400.xhp\n"
+"hd_id3151210\n"
+"3\n"
"help.text"
-msgid "<bookmark_value>COSH function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "Deactivate for"
+msgstr "Deaktivizo për"
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154277\n"
-"159\n"
+"12080400.xhp\n"
+"hd_id3156280\n"
+"5\n"
"help.text"
-msgid "COSH"
-msgstr "COSH"
+msgid "Rows"
+msgstr "Rreshtat"
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146946\n"
-"160\n"
+"12080400.xhp\n"
+"par_id3125864\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COSHYP\">Returns the hyperbolic cosine of a number.</ahelp>"
+msgid "Removes selected rows from a group."
msgstr ""
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149792\n"
-"161\n"
+"12080400.xhp\n"
+"hd_id3147230\n"
+"7\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Columns"
+msgstr "Kolonat"
-#: 04060106.xhp
+#: 12080400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3166440\n"
-"162\n"
+"12080400.xhp\n"
+"par_id3154685\n"
+"8\n"
"help.text"
-msgid "COSH(Number)"
-msgstr "Numri i faqes"
+msgid "Removes selected columns from a group."
+msgstr ""
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150710\n"
-"163\n"
+"12080500.xhp\n"
+"tit\n"
"help.text"
-msgid "Returns the hyperbolic cosine of <emph>Number</emph>."
-msgstr "Kthen cosinusin hiperbolik invers të një numri."
+msgid "AutoOutline"
+msgstr "AutoPërvijimi"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153234\n"
-"164\n"
+"12080500.xhp\n"
+"hd_id3150275\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<link href=\"text/scalc/01/12080500.xhp\" name=\"AutoOutline\">AutoOutline</link>"
+msgstr ""
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154099\n"
-"165\n"
+"12080500.xhp\n"
+"par_id3145069\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=COSH(0)</item> returns 1, the hyperbolic cosine of 0."
+msgid "<ahelp hid=\".uno:AutoOutline\">If the selected cell range contains formulas or references, $[officename] automatically outlines the selection.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3152888\n"
+"12080500.xhp\n"
+"par_id3148798\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>COT function</bookmark_value>"
-msgstr "Gabim: Vlera nuk është në dispozicion"
+msgid "For example, consider the following table:"
+msgstr ""
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152888\n"
-"169\n"
+"12080500.xhp\n"
+"par_id3154123\n"
+"11\n"
"help.text"
-msgid "COT"
-msgstr "COT"
+msgid "January"
+msgstr ""
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153679\n"
-"170\n"
+"12080500.xhp\n"
+"par_id3154011\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COT\">Returns the cotangent of the given angle (in radians).</ahelp>"
+msgid "February"
msgstr ""
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152943\n"
-"171\n"
+"12080500.xhp\n"
+"par_id3152460\n"
+"13\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "March"
+msgstr ""
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154856\n"
-"172\n"
+"12080500.xhp\n"
+"par_id3146119\n"
+"14\n"
"help.text"
-msgid "COT(Number)"
-msgstr "Numri i faqes"
+msgid "1st Quarter"
+msgstr "Tasti i 1rë"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149969\n"
-"173\n"
+"12080500.xhp\n"
+"par_id3155854\n"
+"15\n"
"help.text"
-msgid "Returns the (trigonometric) cotangent of <emph>Number</emph>, the angle in radians."
+msgid "April"
msgstr ""
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3444624\n"
+"12080500.xhp\n"
+"par_id3148575\n"
+"16\n"
"help.text"
-msgid "To return the cotangent of an angle in degrees, use the RADIANS function."
+msgid "May"
msgstr ""
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6814477\n"
+"12080500.xhp\n"
+"par_id3145271\n"
+"17\n"
"help.text"
-msgid "The cotangent of an angle is equivalent to 1 divided by the tangent of that angle."
+msgid "June"
msgstr ""
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149800\n"
-"174\n"
+"12080500.xhp\n"
+"par_id3145648\n"
+"18\n"
"help.text"
-msgid "Examples:"
-msgstr "Shembuj:"
+msgid "2nd Quarter"
+msgstr "Tasti i 2të"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148616\n"
-"175\n"
+"12080500.xhp\n"
+"par_id3153876\n"
+"19\n"
"help.text"
-msgid "<item type=\"input\">=COT(PI()/4)</item> returns 1, the cotangent of PI/4 radians."
+msgid "100"
+msgstr "Pamja 100%"
+
+#: 12080500.xhp
+msgctxt ""
+"12080500.xhp\n"
+"par_id3145251\n"
+"20\n"
+"help.text"
+msgid "120"
+msgstr "{120}{70}{70}{70}{70}"
+
+#: 12080500.xhp
+msgctxt ""
+"12080500.xhp\n"
+"par_id3149400\n"
+"21\n"
+"help.text"
+msgid "130"
msgstr ""
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148986\n"
-"176\n"
+"12080500.xhp\n"
+"par_id3150328\n"
+"22\n"
"help.text"
-msgid "<item type=\"input\">=COT(RADIANS(45))</item> returns 1, the cotangent of 45 degrees."
+msgid "350"
msgstr ""
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3154337\n"
+"12080500.xhp\n"
+"par_id3155443\n"
+"23\n"
"help.text"
-msgid "<bookmark_value>COTH function</bookmark_value>"
-msgstr "Gabim: Vlera nuk është në dispozicion"
+msgid "100"
+msgstr "Pamja 100%"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154337\n"
-"178\n"
+"12080500.xhp\n"
+"par_id3153713\n"
+"24\n"
"help.text"
-msgid "COTH"
-msgstr "COTH"
+msgid "100"
+msgstr "Pamja 100%"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149419\n"
-"179\n"
+"12080500.xhp\n"
+"par_id3156385\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COTHYP\">Returns the hyperbolic cotangent of a given number (angle).</ahelp>"
-msgstr ""
+msgid "200"
+msgstr "Pamja 200%"
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3149242\n"
-"180\n"
+"12080500.xhp\n"
+"par_id3145230\n"
+"26\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "400"
+msgstr ""
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143280\n"
-"181\n"
+"12080500.xhp\n"
+"par_id3147363\n"
+"27\n"
"help.text"
-msgid "COTH(Number)"
-msgstr "Numri i faqes"
+msgid "The cells for the 1st and 2nd quarters each contain a sum formula for the three cells to their left. If you apply the <emph>AutoOutline</emph> command, the table is grouped into two quarters."
+msgstr ""
-#: 04060106.xhp
+#: 12080500.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154799\n"
-"182\n"
+"12080500.xhp\n"
+"par_id3146918\n"
+"9\n"
"help.text"
-msgid "Returns the hyperbolic cotangent of <emph>Number</emph>."
-msgstr "Kthen cotangentin hiperbolik invers të një numri."
+msgid "To remove the outline, select the table, and then choose <link href=\"text/scalc/01/12080600.xhp\" name=\"Data - Group and Outline - Remove\">Data - Group and Outline - Remove</link>."
+msgstr ""
-#: 04060106.xhp
+#: 12080600.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155422\n"
-"183\n"
+"12080600.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Remove"
+msgstr "Largo"
-#: 04060106.xhp
+#: 12080600.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144754\n"
-"184\n"
+"12080600.xhp\n"
+"hd_id3148947\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=COTH(1)</item> returns the hyperbolic cotangent of 1, approximately 1.3130."
+msgid "<link href=\"text/scalc/01/12080600.xhp\" name=\"Remove\">Remove</link>"
msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12080600.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id6110552\n"
+"12080600.xhp\n"
+"par_id3149656\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>CSC function</bookmark_value>"
-msgstr "Definon vlerën llogjike si PASAKTË."
+msgid "<ahelp hid=\".uno:ClearOutline\" visibility=\"visible\">Removes the outline from the selected cell range.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12080700.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id9523234\n"
-"149\n"
+"12080700.xhp\n"
+"tit\n"
"help.text"
-msgid "CSC"
+msgid "Show Details (Pivot Table)"
msgstr ""
-#: 04060106.xhp
+#: 12080700.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id4896433\n"
-"150\n"
+"12080700.xhp\n"
+"hd_id3344523\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COSECANT\">Returns the cosecant of the given angle (in radians). The cosecant of an angle is equivalent to 1 divided by the sine of that angle</ahelp>"
+msgid "<link href=\"text/scalc/01/12080700.xhp\">Show Details (Pivot Table)</link>"
msgstr ""
-#: 04060106.xhp
+#: 12080700.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3534032\n"
-"151\n"
+"12080700.xhp\n"
+"par_id871303\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<ahelp hid=\".\">Inserts a new \"drill-down\" sheet with more information about the current pivot table cell. You can also double-click a pivot table cell to insert the \"drill-down\" sheet. The new sheet shows a subset of rows from the original data source that constitutes the result data displayed in the current cell.</ahelp>"
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12080700.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id4571344\n"
-"152\n"
+"12080700.xhp\n"
+"par_id7132480\n"
"help.text"
-msgid "CSC(Number)"
-msgstr "Numri i faqes"
+msgid "Hidden items are not evaluated, the rows for the hidden items are included. Show Details is available only for pivot tables that are based on cell ranges or database data."
+msgstr ""
-#: 04060106.xhp
+#: 12090000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9859164\n"
-"153\n"
+"12090000.xhp\n"
+"tit\n"
"help.text"
-msgid "Returns the (trigonometric) cosecant of <emph>Number</emph>, the angle in radians."
+msgid "Pivot Table"
msgstr ""
-#: 04060106.xhp
+#: 12090000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3428494\n"
+"12090000.xhp\n"
+"hd_id3150275\n"
+"1\n"
"help.text"
-msgid "To return the cosecant of an angle in degrees, use the RADIANS function."
+msgid "<link href=\"text/scalc/01/12090000.xhp\" name=\"Pivot Table\">Pivot Table</link>"
msgstr ""
-#: 04060106.xhp
+#: 12090000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id2577161\n"
-"154\n"
+"12090000.xhp\n"
+"par_id3153562\n"
+"2\n"
"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
+msgid "A pivot table provides a summary of large amounts of data. You can then rearrange the pivot table to view different summaries of the data."
+msgstr ""
-#: 04060106.xhp
+#: 12090000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3736803\n"
-"155\n"
+"12090000.xhp\n"
+"hd_id3155923\n"
+"3\n"
"help.text"
-msgid "<item type=\"input\">=CSC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the sine of PI/4 radians."
+msgid "<link href=\"text/scalc/01/12090100.xhp\" name=\"Create\">Create</link>"
msgstr ""
-#: 04060106.xhp
+#: 12090000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6016818\n"
-"156\n"
+"12090000.xhp\n"
+"par_idN105FB\n"
"help.text"
-msgid "<item type=\"input\">=CSC(RADIANS(30))</item> returns 2, the cosecant of 30 degrees."
+msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id9288877\n"
+"12090100.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>CSCH function</bookmark_value>"
-msgstr "Definon vlerën llogjike si PASAKTË."
+msgid "Select Source"
+msgstr "Selekto Burimin"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id4325650\n"
-"159\n"
+"12090100.xhp\n"
+"hd_id3153663\n"
+"1\n"
"help.text"
-msgid "CSCH"
+msgid "Select Source"
+msgstr "Selekto Burimin"
+
+#: 12090100.xhp
+msgctxt ""
+"12090100.xhp\n"
+"par_id3145119\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:DataDataPilotRun\">Opens a dialog where you can select the source for your pivot table, and then create your table.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id579916\n"
-"160\n"
+"12090100.xhp\n"
+"hd_id3154760\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_COSECANTHYP\">Returns the hyperbolic cosecant of a number.</ahelp>"
+msgid "Selection"
+msgstr "Selektimet"
+
+#: 12090100.xhp
+msgctxt ""
+"12090100.xhp\n"
+"par_id3150543\n"
+"6\n"
+"help.text"
+msgid "Select a data source for the pivot table."
msgstr ""
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id5336768\n"
-"161\n"
+"12090100.xhp\n"
+"hd_id3148799\n"
+"7\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Current Selection"
+msgstr "Zgjedhja e tanishme"
-#: 04060106.xhp
-#, fuzzy
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3108851\n"
-"162\n"
+"12090100.xhp\n"
+"par_id3125865\n"
+"8\n"
"help.text"
-msgid "CSCH(Number)"
-msgstr "Numri i faqes"
+msgid "<ahelp hid=\".\">Uses the selected cells as the data source for the pivot table.</ahelp>"
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1394188\n"
-"163\n"
+"12090100.xhp\n"
+"par_id3150011\n"
+"13\n"
"help.text"
-msgid "Returns the hyperbolic cosecant of <emph>Number</emph>."
-msgstr "Kthen cosinusin hiperbolik invers të një numri."
+msgid "The data columns in the pivot table use the same number format as the first data row in the current selection."
+msgstr ""
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id6037477\n"
-"164\n"
+"12090100.xhp\n"
+"hd_id3147348\n"
+"9\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Data source registered in $[officename]"
+msgstr "~Burimi i të dhënave i regjistruar në %PRODUCTNAME"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5426085\n"
-"165\n"
+"12090100.xhp\n"
+"par_id3145271\n"
+"10\n"
"help.text"
-msgid "<item type=\"input\">=CSCH(1)</item> returns approximately 0.8509181282, the hyperbolic cosecant of 1."
+msgid "<ahelp hid=\".\">Uses a table or query in a database that is registered in $[officename] as the data source for the pivot table.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3145314\n"
+"12090100.xhp\n"
+"hd_id3146119\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>DEGREES function</bookmark_value><bookmark_value>converting;radians, into degrees</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "External source/interface"
+msgstr "~Burim i jashtëm/interface"
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145314\n"
-"188\n"
+"12090100.xhp\n"
+"par_id3145647\n"
+"12\n"
"help.text"
-msgid "DEGREES"
-msgstr "SHKALLËT"
+msgid "<ahelp hid=\".\">Opens the <emph>External Source</emph> dialog where you can select the OLAP data source for the pivot table.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12090100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149939\n"
-"189\n"
+"12090100.xhp\n"
+"par_idN10670\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_DEG\">Converts radians into degrees.</ahelp>"
+msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
msgstr ""
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150623\n"
-"190\n"
+"12090101.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Select Data Source"
+msgstr "Selekto Burimin e të Dhënave"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145600\n"
-"191\n"
+"12090101.xhp\n"
+"hd_id3143268\n"
+"1\n"
"help.text"
-msgid "DEGREES(Number)"
-msgstr "Numri i faqes"
+msgid "Select Data Source"
+msgstr "Selekto Burimin e të Dhënave"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149484\n"
-"192\n"
+"12090101.xhp\n"
+"par_id3148552\n"
+"2\n"
"help.text"
-msgid "<emph>Number</emph> is the angle in radians to be converted to degrees."
+msgid "Select the database and the table or query containing the data that you want to use."
msgstr ""
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3669545\n"
+"12090101.xhp\n"
+"hd_id3154140\n"
+"3\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Selection"
+msgstr "Selektimet"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3459578\n"
+"12090101.xhp\n"
+"par_id3125863\n"
+"4\n"
"help.text"
-msgid "<item type=\"input\">=DEGREES(PI())</item> returns 180 degrees."
+msgid "<ahelp hid=\".\">You can only select databases that are registered in %PRODUCTNAME.</ahelp> To register a data source, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Base - Databases</emph>."
msgstr ""
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3148698\n"
+"12090101.xhp\n"
+"hd_id3151041\n"
+"5\n"
"help.text"
-msgid "<bookmark_value>EXP function</bookmark_value>"
-msgstr "Shndërron një vlerë në tekst."
+msgid "Database"
+msgstr "Databaza"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3148698\n"
-"198\n"
+"12090101.xhp\n"
+"par_id3156424\n"
+"6\n"
"help.text"
-msgid "EXP"
-msgstr "EXP"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_DATABASE\">Select the database that contains the data source that you want to use.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150592\n"
-"199\n"
+"12090101.xhp\n"
+"hd_id3145364\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_EXP\">Returns e raised to the power of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgid "Data source"
+msgstr "Burimi i të dhënave"
+
+#: 12090101.xhp
+msgctxt ""
+"12090101.xhp\n"
+"par_id3149260\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_DAPIDATA:CB_OBJECT\">Select the data source that you want to use.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150351\n"
-"200\n"
+"12090101.xhp\n"
+"hd_id3147428\n"
+"9\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Type"
+msgstr "Tipi"
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146786\n"
-"201\n"
+"12090101.xhp\n"
+"par_id3150010\n"
+"10\n"
"help.text"
-msgid "EXP(Number)"
-msgstr "Numri i faqes"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_DAPIDATA:LB_OBJTYPE\">Click the source type of for the selected data source.</ahelp> You can choose from four source types: \"Table\", \"Query\" and \"SQL\" or SQL (Native)."
+msgstr ""
-#: 04060106.xhp
+#: 12090101.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155608\n"
-"202\n"
+"12090101.xhp\n"
+"par_id3147348\n"
+"11\n"
"help.text"
-msgid "<emph>Number</emph> is the power to which e is to be raised."
-msgstr "Fuqia në të cilin do të ngritet numri."
+msgid "<link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table dialog\">Pivot table dialog</link>"
+msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154418\n"
-"203\n"
+"12090102.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Pivot Table"
+msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156340\n"
-"204\n"
+"12090102.xhp\n"
+"bm_id2306894\n"
"help.text"
-msgid "<item type=\"input\">=EXP(1)</item> returns 2.71828182845904, the mathematical constant e to Calc's accuracy."
+msgid "<bookmark_value>pivot table function;show details</bookmark_value><bookmark_value>pivot table function;drill down</bookmark_value>"
msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3145781\n"
+"12090102.xhp\n"
+"hd_id3149165\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>FACT function</bookmark_value><bookmark_value>factorials;numbers</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "Pivot Table"
+msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145781\n"
-"208\n"
+"12090102.xhp\n"
+"par_id3155922\n"
+"13\n"
"help.text"
-msgid "FACT"
-msgstr "FAKT"
+msgid "<ahelp hid=\".uno:DataPilotExec\">Specify the layout of the table that is generated by the pivot table.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151109\n"
-"209\n"
+"12090102.xhp\n"
+"par_id3148798\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_FAKULTAET\">Returns the factorial of a number.</ahelp>"
+msgid "The pivot table displays data fields as buttons which you can drag and drop to define the pivot table."
msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146902\n"
-"210\n"
+"12090102.xhp\n"
+"hd_id3154908\n"
+"18\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Layout"
+msgstr "Formëdhënje"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154661\n"
-"211\n"
+"12090102.xhp\n"
+"par_id3150768\n"
+"19\n"
"help.text"
-msgid "FACT(Number)"
-msgstr "Numri i faqes"
+msgid "<ahelp hid=\"HID_SC_DPLAY_SELECT\">To define the layout of a pivot table, drag and drop data field buttons onto the <emph>Page Fields, Row Fields, Column Fields, </emph>and<emph> Data Fields </emph>areas.</ahelp> You can also use drag and drop to rearrange the data fields on a pivot table."
+msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152952\n"
-"212\n"
+"12090102.xhp\n"
+"par_id3147229\n"
+"20\n"
"help.text"
-msgid "Returns Number!, the factorial of <emph>Number</emph>, calculated as 1*2*3*4* ... * Number."
+msgid "$[officename] automatically adds a caption to buttons that are dragged into the <emph>Data Fields </emph>area. The caption contains the name of the data field as well as the formula that created the data."
msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3834650\n"
+"12090102.xhp\n"
+"par_id3145749\n"
+"21\n"
"help.text"
-msgid "=FACT(0) returns 1 by definition."
+msgid "To change the function that is used by a data field, double-click a button in the <emph>Data Fields</emph> area to open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\">Data Field</link> dialog. You can also double-click buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> areas."
msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8429517\n"
+"12090102.xhp\n"
+"hd_id3149260\n"
+"28\n"
"help.text"
-msgid "The factorial of a negative number returns the \"invalid argument\" error."
+msgid "Remove"
+msgstr "Largo"
+
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_id3150010\n"
+"27\n"
+"help.text"
+msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_REMOVE\">Removes the selected data field from the table layout.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154569\n"
-"213\n"
+"12090102.xhp\n"
+"hd_id3145273\n"
+"26\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Options"
+msgstr "Opcionet"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154476\n"
-"216\n"
+"12090102.xhp\n"
+"par_id3146120\n"
+"25\n"
"help.text"
-msgid "<item type=\"input\">=FACT(3)</item> returns 6."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"SC_PUSHBUTTON_RID_SCDLG_PIVOT_LAYOUT_BTN_OPTIONS\">Opens the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog where you can change the function that is associated with the selected field.</ahelp>"
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147525\n"
-"214\n"
+"12090102.xhp\n"
+"hd_id3154944\n"
+"22\n"
"help.text"
-msgid "<item type=\"input\">=FACT(0)</item> returns 1."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "More"
+msgstr "Më shumë"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3159084\n"
+"12090102.xhp\n"
+"par_id3145647\n"
+"23\n"
"help.text"
-msgid "<bookmark_value>INT function</bookmark_value><bookmark_value>numbers;rounding down to next integer</bookmark_value><bookmark_value>rounding;down to next integer</bookmark_value>"
+msgid "<ahelp hid=\"SC:MOREBUTTON:RID_SCDLG_PIVOT_LAYOUT:BTN_MORE\">Displays or hides additional options for defining the pivot table.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3159084\n"
-"218\n"
+"12090102.xhp\n"
+"hd_id3151073\n"
+"2\n"
"help.text"
-msgid "INT"
-msgstr "INT"
+msgid "Result"
+msgstr "Rezultat"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158441\n"
-"219\n"
+"12090102.xhp\n"
+"par_id3155417\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GANZZAHL\">Rounds a number down to the nearest integer.</ahelp>"
+msgid "Specify the settings for displaying the results of the pivot table."
msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146132\n"
-"220\n"
+"12090102.xhp\n"
+"hd_id0509200913025625\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Selection from"
+msgstr "Selektimet"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156146\n"
-"221\n"
+"12090102.xhp\n"
+"par_id0509200913025615\n"
"help.text"
-msgid "INT(Number)"
-msgstr "Numri i faqes"
+msgid "<ahelp hid=\".\">Select the area that contains the data for the current pivot table.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154117\n"
-"222\n"
+"12090102.xhp\n"
+"hd_id3155603\n"
+"4\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded down to the nearest integer."
+msgid "Results to"
+msgstr "Rezulton në"
+
+#: 12090102.xhp
+msgctxt ""
+"12090102.xhp\n"
+"par_id3153838\n"
+"5\n"
+"help.text"
+msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_PIVOT_LAYOUT:ED_OUTAREA\">Select the area where you want to display the results of the pivot table.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id153508\n"
+"12090102.xhp\n"
+"par_id3155961\n"
+"6\n"
"help.text"
-msgid "Negative numbers round down to the integer below."
+msgid "If the selected area contains data, the pivot table overwrites the data. To prevent the loss of existing data, let the pivot table automatically select the area to display the results."
msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155118\n"
-"223\n"
+"12090102.xhp\n"
+"hd_id3147364\n"
+"7\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Ignore empty rows"
+msgstr "Injoro ~rreshtat e zbrazët"
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156267\n"
-"224\n"
+"12090102.xhp\n"
+"par_id3154022\n"
+"8\n"
"help.text"
-msgid "<item type=\"input\">=INT(5.7)</item> returns 5."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_IGNEMPTYROWS\">Ignores empty fields in the data source.</ahelp>"
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147323\n"
-"225\n"
+"12090102.xhp\n"
+"hd_id3155114\n"
+"9\n"
"help.text"
-msgid "<item type=\"input\">=INT(-1.3)</item> returns -2."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Identify categories"
+msgstr "~Identifiko kategoritë"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3150938\n"
+"12090102.xhp\n"
+"par_id3145257\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>EVEN function</bookmark_value><bookmark_value>numbers;rounding up/down to even integers</bookmark_value><bookmark_value>rounding;up/down to even integers</bookmark_value>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_DETECTCAT\">Automatically assigns rows without labels to the category of the row above.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150938\n"
-"227\n"
+"12090102.xhp\n"
+"hd_id3149207\n"
+"14\n"
"help.text"
-msgid "EVEN"
-msgstr "EVEN"
+msgid "Total columns"
+msgstr "Gjithsejt shtylla"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149988\n"
-"228\n"
+"12090102.xhp\n"
+"par_id3166426\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GERADE\">Rounds a positive number up to the next even integer and a negative number down to the next even integer.</ahelp>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALCOL\">Calculates and displays the grand total of the column calculation.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3148401\n"
-"229\n"
+"12090102.xhp\n"
+"hd_id3150364\n"
+"16\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Total rows"
+msgstr "~Gjithsejt rreshta"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150830\n"
-"230\n"
+"12090102.xhp\n"
+"par_id3152583\n"
+"17\n"
"help.text"
-msgid "EVEN(Number)"
-msgstr "Numri i faqes"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOT_LAYOUT:BTN_TOTALROW\">Calculates and displays the grand total of the row calculation.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153350\n"
-"231\n"
+"12090102.xhp\n"
+"par_idN10897\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded to the next even integer up, away from zero."
-msgstr ""
+msgid "Add filter"
+msgstr "Filtër i grafikave"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155508\n"
-"232\n"
+"12090102.xhp\n"
+"par_idN1089B\n"
"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
+msgid "<ahelp hid=\".\">Adds a Filter button to pivot tables that are based on spreadsheet data.</ahelp>"
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154361\n"
-"233\n"
+"12090102.xhp\n"
+"par_idN108B2\n"
"help.text"
-msgid "<item type=\"input\">=EVEN(2.3)</item> returns 4."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\".\">Opens the Filter dialog.</ahelp>"
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8477736\n"
+"12090102.xhp\n"
+"par_idN108C9\n"
"help.text"
-msgid "<item type=\"input\">=EVEN(2)</item> returns 2."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Enable drill to details"
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id159611\n"
+"12090102.xhp\n"
+"par_idN108CD\n"
"help.text"
-msgid "<item type=\"input\">=EVEN(0)</item> returns 0."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\".\">Select this check box and double-click an item label in the table to show or hide details for the item. Clear this check box and double-click a cell in the table to edit the contents of the cell.</ahelp>"
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6097598\n"
+"12090102.xhp\n"
+"par_idN108DC\n"
"help.text"
-msgid "<item type=\"input\">=EVEN(-0.5)</item> returns -2."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "To examine details inside a pivot table"
+msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3147356\n"
+"12090102.xhp\n"
+"par_idN108E0\n"
"help.text"
-msgid "<bookmark_value>GCD function</bookmark_value><bookmark_value>greatest common divisor</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "Do one of the following:"
+msgstr "Gabimi në vazhdim ka ndodhur:"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3147356\n"
-"237\n"
+"12090102.xhp\n"
+"par_idN108E6\n"
"help.text"
-msgid "GCD"
-msgstr "GCD"
+msgid "Select a range of cells and choose <emph>Data - Group and Outline - Show Details</emph>."
+msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152465\n"
-"238\n"
+"12090102.xhp\n"
+"par_idN108EE\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_GGT\">Returns the greatest common divisor of two or more integers.</ahelp>"
+msgid "Double-click a field in the table."
msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2769249\n"
+"12090102.xhp\n"
+"par_idN108F1\n"
"help.text"
-msgid "The greatest common divisor is the positive largest integer which will divide, without remainder, each of the given integers."
+msgid "If you double-click a field which has adjacent fields at the same level, the <emph>Show Detail</emph> dialog opens:"
msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150643\n"
-"239\n"
+"12090102.xhp\n"
+"par_idN10900\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Show Detail"
+msgstr "Shfaqje e sllajdeve"
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154524\n"
-"240\n"
+"12090102.xhp\n"
+"par_idN10904\n"
"help.text"
-msgid "GCD(Integer1; Integer2; ...; Integer30)"
+msgid "<ahelp hid=\".\">Choose the field that you want to view the details for.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090102.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149340\n"
-"241\n"
+"12090102.xhp\n"
+"par_id3149817\n"
+"35\n"
"help.text"
-msgid "<emph>Integer1 To 30</emph> are up to 30 integers whose greatest common divisor is to be calculated."
+msgid "<link href=\"text/scalc/04/01020000.xhp\" name=\"Pivot table shortcut keys\">Pivot table shortcut keys</link>"
msgstr ""
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3147317\n"
-"242\n"
+"12090103.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Filter"
+msgstr "Filtër"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151285\n"
-"243\n"
+"12090103.xhp\n"
+"hd_id3153970\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=GCD(16;32;24) </item>gives the result 8, because 8 is the largest number that can divide 16, 24 and 32 without a remainder."
-msgstr ""
+msgid "Filter"
+msgstr "Filtër"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1604663\n"
+"12090103.xhp\n"
+"par_id3150448\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=GCD(B1:B3)</item> where cells B1, B2, B3 contain <item type=\"input\">9</item>, <item type=\"input\">12</item>, <item type=\"input\">9</item> gives 3."
+msgid "Set the filtering options for the data."
msgstr ""
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3151221\n"
+"12090103.xhp\n"
+"hd_id3151043\n"
+"3\n"
"help.text"
-msgid "<bookmark_value>GCD_ADD function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "Filter Criteria"
+msgstr "Kriteret e filtrimit"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3151221\n"
-"677\n"
+"12090103.xhp\n"
+"par_id3150440\n"
+"4\n"
"help.text"
-msgid "GCD_ADD"
-msgstr "Shto elementin"
+msgid "You can define a default filter for the data by filtering, for example, field names, using a combination of logical expressions arguments."
+msgstr ""
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153257\n"
-"678\n"
+"12090103.xhp\n"
+"hd_id3159153\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_GCD\"> The result is the greatest common divisor of a list of numbers.</ahelp>"
-msgstr ""
+msgid "Operator"
+msgstr "Operator"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3147548\n"
-"679\n"
+"12090103.xhp\n"
+"par_id3153093\n"
+"6\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_OP2\" visibility=\"visible\">Select a logical operator for the filter.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156205\n"
-"680\n"
+"12090103.xhp\n"
+"hd_id3152462\n"
+"7\n"
"help.text"
-msgid "GCD_ADD(Number(s))"
-msgstr "Format Numerik: Shto Vendin Decimal"
+msgid "Field name"
+msgstr "Emri i fushës"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145150\n"
-"681\n"
+"12090103.xhp\n"
+"par_id3155306\n"
+"8\n"
"help.text"
-msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
-msgstr "Siguron një numër të mbrendshëm për datën e dhënë."
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_FIELD3\" visibility=\"visible\">Select the field that you want to use in the filter. If field names are not available, the column labels are listed.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150239\n"
-"682\n"
+"12090103.xhp\n"
+"hd_id3148575\n"
+"9\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Condition"
+msgstr "Kushti"
-#: 04060106.xhp
-#, fuzzy
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159192\n"
-"683\n"
+"12090103.xhp\n"
+"par_id3147394\n"
+"10\n"
"help.text"
-msgid "<item type=\"input\">=GCD_ADD(5;15;25)</item> returns 5."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp visibility=\"visible\" hid=\"SC:LISTBOX:RID_SCDLG_PIVOTFILTER:LB_COND3\">Select an operator to compare the <emph>Field name</emph> and <emph>Value</emph> entries.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3156048\n"
+"12090103.xhp\n"
+"par_id3144764\n"
+"11\n"
"help.text"
-msgid "<bookmark_value>ISEVEN function</bookmark_value><bookmark_value>even integers</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "The following operators are available:"
+msgstr "Shërbimi në vijues nuk është në dispozicion:"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3156048\n"
-"245\n"
+"12090103.xhp\n"
+"par_id3153415\n"
+"12\n"
"help.text"
-msgid "ISEVEN"
-msgstr "ISEVEN"
+msgid "<emph>Conditions:</emph>"
+msgstr "Duke vlerësuar kushtet e lansimit"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149169\n"
-"246\n"
+"12090103.xhp\n"
+"par_id3150324\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISTGERADE\">Returns TRUE if the value is an even integer, or FALSE if the value is odd.</ahelp>"
+msgid "="
msgstr ""
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146928\n"
-"247\n"
+"12090103.xhp\n"
+"par_id3153714\n"
+"14\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "equal"
+msgstr "barabartë"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151203\n"
-"248\n"
+"12090103.xhp\n"
+"par_id3154254\n"
+"15\n"
"help.text"
-msgid "ISEVEN(Value)"
-msgstr "Vlerë absolute"
+msgid "<"
+msgstr ""
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150491\n"
-"249\n"
+"12090103.xhp\n"
+"par_id3154703\n"
+"16\n"
"help.text"
-msgid "<emph>Value</emph> is the value to be checked."
-msgstr "Vlera që do të transformohet prapa."
+msgid "less than"
+msgstr "më pak se"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3445844\n"
+"12090103.xhp\n"
+"par_id3155335\n"
+"17\n"
"help.text"
-msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
+msgid ">"
msgstr ""
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154136\n"
-"250\n"
+"12090103.xhp\n"
+"par_id3147003\n"
+"18\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "greater than"
+msgstr "më e madhe se"
-#: 04060106.xhp
-#, fuzzy
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163813\n"
-"251\n"
+"12090103.xhp\n"
+"par_id3153270\n"
+"19\n"
"help.text"
-msgid "<item type=\"input\">=ISEVEN(48)</item> returns TRUE"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<="
+msgstr "<="
-#: 04060106.xhp
-#, fuzzy
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8378856\n"
+"12090103.xhp\n"
+"par_id3145257\n"
+"20\n"
"help.text"
-msgid "<item type=\"input\">=ISEVEN(33)</item> returns FALSE"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "less than or equal to"
+msgstr "më pak se ose barazi me"
-#: 04060106.xhp
-#, fuzzy
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7154759\n"
+"12090103.xhp\n"
+"par_id3145134\n"
+"21\n"
"help.text"
-msgid "<item type=\"input\">=ISEVEN(0)</item> returns TRUE"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid ">="
+msgstr ">="
-#: 04060106.xhp
-#, fuzzy
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1912289\n"
+"12090103.xhp\n"
+"par_id3151214\n"
+"22\n"
"help.text"
-msgid "<item type=\"input\">=ISEVEN(-2.1)</item> returns TRUE"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "greater than or equal to"
+msgstr "më e madhe se ose baraz me"
-#: 04060106.xhp
-#, fuzzy
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5627307\n"
+"12090103.xhp\n"
+"par_id3150345\n"
+"23\n"
"help.text"
-msgid "<item type=\"input\">=ISEVEN(3.999)</item> returns FALSE"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<>"
+msgstr "<>"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3156034\n"
+"12090103.xhp\n"
+"par_id3159101\n"
+"24\n"
"help.text"
-msgid "<bookmark_value>ISODD function</bookmark_value><bookmark_value>odd integers</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "not equal to"
+msgstr "jo e barabartë me"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3156034\n"
-"255\n"
+"12090103.xhp\n"
+"hd_id3150886\n"
+"25\n"
"help.text"
-msgid "ISODD"
-msgstr "ISODD"
+msgid "Value"
+msgstr "Vlerë"
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155910\n"
-"256\n"
+"12090103.xhp\n"
+"par_id3155506\n"
+"26\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ISTUNGERADE\">Returns TRUE if the value is odd, or FALSE if the number is even.</ahelp>"
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_PIVOTFILTER:ED_VAL3\" visibility=\"visible\">Select the value that you want to compare to the selected field.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090103.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3151006\n"
-"257\n"
+"12090103.xhp\n"
+"hd_id3146980\n"
+"27\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"More>>\">More>></link>"
+msgstr ""
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151375\n"
-"258\n"
+"12090104.xhp\n"
+"tit\n"
"help.text"
-msgid "ISODD(value)"
-msgstr "Vlerë absolute"
+msgid "Options"
+msgstr "Opcionet"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155139\n"
-"259\n"
+"12090104.xhp\n"
+"hd_id3149119\n"
+"1\n"
"help.text"
-msgid "<emph>Value</emph> is the value to be checked."
-msgstr "Vlera që do të transformohet prapa."
+msgid "<link href=\"text/scalc/01/12090104.xhp\" name=\"Options\">Options</link>"
+msgstr ""
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9027680\n"
+"12090104.xhp\n"
+"par_id3147102\n"
+"2\n"
"help.text"
-msgid "If Value is not an integer any digits after the decimal point are ignored. The sign of Value is also ignored."
+msgid "<variable id=\"zusaetzetext\"><ahelp hid=\"\" visibility=\"visible\">Displays or hides additional filtering options.</ahelp></variable>"
msgstr ""
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163723\n"
-"260\n"
+"12090104.xhp\n"
+"hd_id3147008\n"
+"3\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Options"
+msgstr "Opcionet"
-#: 04060106.xhp
-#, fuzzy
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155345\n"
-"261\n"
+"12090104.xhp\n"
+"hd_id3153662\n"
+"5\n"
"help.text"
-msgid "<item type=\"input\">=ISODD(33)</item> returns TRUE"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Case sensitive"
+msgstr "I ndjeshëm në madhësinë e shkronjave"
-#: 04060106.xhp
-#, fuzzy
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9392986\n"
+"12090104.xhp\n"
+"par_id3145673\n"
+"6\n"
"help.text"
-msgid "<item type=\"input\">=ISODD(48)</item> returns FALSE"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Distinguishes between uppercase and lowercase letters."
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5971251\n"
+"12090104.xhp\n"
+"hd_id3156327\n"
+"7\n"
"help.text"
-msgid "<item type=\"input\">=ISODD(3.999)</item> returns TRUE"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Regular Expression"
+msgstr "Shprehje e rregullt"
-#: 04060106.xhp
-#, fuzzy
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id4136478\n"
+"12090104.xhp\n"
+"par_id3151245\n"
+"8\n"
"help.text"
-msgid "<item type=\"input\">=ISODD(-3.1)</item> returns TRUE"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Allows you to use wildcards in the filter definition."
+msgstr ""
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3145213\n"
+"12090104.xhp\n"
+"par_id3147264\n"
+"29\n"
"help.text"
-msgid "<bookmark_value>LCM function</bookmark_value><bookmark_value>least common multiples</bookmark_value><bookmark_value>lowest common multiples</bookmark_value>"
+msgid "If the <emph>Regular Expression</emph> check box is selected, you can use EQUAL (=) and NOT EQUAL (<>) also in comparisons. You can also use the following functions: DCOUNTA, DGET, MATCH, COUNTIF, SUMIF, LOOKUP, VLOOKUP and HLOOKUP."
msgstr ""
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145213\n"
-"265\n"
+"12090104.xhp\n"
+"hd_id3153379\n"
+"30\n"
"help.text"
-msgid "LCM"
-msgstr "LCM"
+msgid "Unique records only"
+msgstr "Krijo vetëm rresht"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146814\n"
-"266\n"
+"12090104.xhp\n"
+"par_id3154138\n"
+"31\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KGV\">Returns the least common multiple of one or more integers.</ahelp>"
+msgid "Excludes duplicate rows in the list of filtered data."
msgstr ""
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3148632\n"
-"267\n"
+"12090104.xhp\n"
+"hd_id3156282\n"
+"32\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Data area"
+msgstr "Zona e të dhënave:"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147279\n"
-"268\n"
+"12090104.xhp\n"
+"par_id3150768\n"
+"33\n"
"help.text"
-msgid "LCM(Integer1; Integer2; ...; Integer30)"
+msgid "Displays the name of the filtered data area in the table."
msgstr ""
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156348\n"
-"269\n"
+"12090104.xhp\n"
+"hd_id3156424\n"
+"34\n"
"help.text"
-msgid "<emph>Integer1 to 30</emph> are up to 30 integers whose lowest common multiple is to be calculated."
-msgstr ""
+msgid "More<<"
+msgstr "Më shumë"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3156431\n"
-"270\n"
+"12090104.xhp\n"
+"par_id3125864\n"
+"35\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Hides the additional options."
+msgstr "Shiriti i opcioneve /Grafikat"
-#: 04060106.xhp
+#: 12090104.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154914\n"
-"271\n"
+"12090104.xhp\n"
+"par_id3154011\n"
"help.text"
-msgid "If you enter the numbers <item type=\"input\">512</item>;<item type=\"input\">1024</item> and <item type=\"input\">2000</item> in the Integer 1;2 and 3 text boxes, 128000 will be returned as the result."
+msgid "<link href=\"text/shared/01/02100001.xhp\" name=\"List of Regular Expressions\">List of Regular Expressions</link>"
msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3154230\n"
+"12090105.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>LCM_ADD function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "Data field"
+msgstr "Fusha e të dhënave"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154230\n"
-"684\n"
+"12090105.xhp\n"
+"bm_id7292397\n"
"help.text"
-msgid "LCM_ADD"
-msgstr "Shto elementin"
+msgid "<bookmark_value>calculating;pivot table</bookmark_value>"
+msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3149036\n"
-"685\n"
+"12090105.xhp\n"
+"hd_id3150871\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_LCM\"> The result is the lowest common multiple of a list of numbers.</ahelp>"
+msgid "Data field"
+msgstr "Fusha e të dhënave"
+
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_id3154124\n"
+"16\n"
+"help.text"
+msgid "The contents of this dialog is different for data fields in the <emph>Data</emph> area, and data fields in the <emph>Row</emph> or <emph>Column</emph> area of the <link href=\"text/scalc/01/12090102.xhp\" name=\"Pivot table\">Pivot Table</link> dialog."
msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153132\n"
-"686\n"
+"12090105.xhp\n"
+"hd_id3152596\n"
+"2\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Subtotals"
+msgstr "Nëntotalet"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154395\n"
-"687\n"
+"12090105.xhp\n"
+"par_id3151113\n"
+"3\n"
"help.text"
-msgid "LCM_ADD(Number(s))"
-msgstr "Format Numerik: Shto Vendin Decimal"
+msgid "<ahelp hid=\"HID_SC_PIVOTSUBT\">Specify the subtotals that you want to calculate.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3147377\n"
-"688\n"
+"12090105.xhp\n"
+"hd_id3145366\n"
+"4\n"
"help.text"
-msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
-msgstr "Siguron një numër të mbrendshëm për datën e dhënë."
+msgid "None"
+msgstr "Asnjë"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145122\n"
-"689\n"
+"12090105.xhp\n"
+"par_id3152576\n"
+"5\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_NONE\">Does not calculate subtotals.</ahelp>"
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145135\n"
-"690\n"
+"12090105.xhp\n"
+"hd_id3154012\n"
+"6\n"
"help.text"
-msgid "<item type=\"input\">=LCM_ADD(5;15;25)</item> returns 75."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Automatic"
+msgstr "Automatike"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3155802\n"
+"12090105.xhp\n"
+"par_id3155856\n"
+"7\n"
"help.text"
-msgid "<bookmark_value>COMBIN function</bookmark_value><bookmark_value>number of combinations</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_AUTO\">Automatically calculates subtotals.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155802\n"
-"273\n"
+"12090105.xhp\n"
+"hd_id3155411\n"
+"8\n"
"help.text"
-msgid "COMBIN"
-msgstr "COMBIN"
+msgid "User-defined"
+msgstr "Definuar nga shfrytëzuesi"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3156172\n"
-"274\n"
+"12090105.xhp\n"
+"par_id3149581\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN\">Returns the number of combinations for elements without repetition.</ahelp>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_PIVOTSUBT:BTN_USER\">Select this option, and then click the type of subtotal that you want to calculate in the list.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3156193\n"
-"275\n"
+"12090105.xhp\n"
+"hd_id3147124\n"
+"10\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Function"
+msgstr "Funksioni"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150223\n"
-"276\n"
+"12090105.xhp\n"
+"par_id3154490\n"
+"11\n"
"help.text"
-msgid "COMBIN(Count1; Count2)"
+msgid "<ahelp hid=\"SC:MULTILISTBOX:RID_SCDLG_PIVOTSUBT:LB_FUNC\">Click the type of subtotal that you want to calculate. This option is only available if the <emph>User-defined</emph> option is selected.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150313\n"
-"277\n"
+"12090105.xhp\n"
+"hd_id3154944\n"
+"14\n"
"help.text"
-msgid "<emph>Count1</emph> is the number of items in the set."
-msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
+msgid "Show elements without data"
+msgstr "Trego ~elementet pa të dhëna"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153830\n"
-"278\n"
+"12090105.xhp\n"
+"par_id3149403\n"
+"15\n"
"help.text"
-msgid "<emph>Count2</emph> is the number of items to choose from the set."
-msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_PIVOTSUBT:CB_SHOWALL\">Includes empty columns and rows in the results table.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6807458\n"
+"12090105.xhp\n"
+"hd_id3149122\n"
+"12\n"
"help.text"
-msgid "COMBIN returns the number of ordered ways to choose these items. For example if there are 3 items A, B and C in a set, you can choose 2 items in 3 different ways, namely AB, AC and BC."
+msgid "Name:"
+msgstr "Emri:"
+
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_id3150749\n"
+"13\n"
+"help.text"
+msgid "Lists the name of the selected data field."
msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7414471\n"
+"12090105.xhp\n"
+"par_idN106EC\n"
"help.text"
-msgid "COMBIN implements the formula: Count1!/(Count2!*(Count1-Count2)!)"
+msgid "More"
+msgstr "Më shumë"
+
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN106F0\n"
+"help.text"
+msgid "<ahelp hid=\".\">Expands or reduces the dialog. The <emph>More</emph> button is visible for data fields only.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153171\n"
-"279\n"
+"12090105.xhp\n"
+"par_idN106F3\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Options"
+msgstr "Opcionet"
-#: 04060106.xhp
-#, fuzzy
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153517\n"
-"280\n"
+"12090105.xhp\n"
+"par_idN106F7\n"
"help.text"
-msgid "<item type=\"input\">=COMBIN(3;2)</item> returns 3."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/scalc/01/12090106.xhp\">Data Field Options</link> dialog. The <emph>Options</emph> button is visible for column, row, or page fields only.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3150284\n"
+"12090105.xhp\n"
+"par_idN10708\n"
"help.text"
-msgid "<bookmark_value>COMBINA function</bookmark_value><bookmark_value>number of combinations with repetitions</bookmark_value>"
-msgstr "Llogarit vlerën e një numri Romak."
+msgid "If the dialog is expanded by the <emph>More</emph> button, the following items are added to the dialog:"
+msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3150284\n"
-"282\n"
+"12090105.xhp\n"
+"par_idN1070B\n"
"help.text"
-msgid "COMBINA"
-msgstr "COMBINA"
+msgid "Displayed value"
+msgstr "Vlerë absolute"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157894\n"
-"283\n"
+"12090105.xhp\n"
+"par_idN1070F\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KOMBINATIONEN2\">Returns the number of combinations of a subset of items including repetitions.</ahelp>"
+msgid "<ahelp hid=\".\">For each data field, you can select the type of display.</ahelp> For some types you can select additional information for a base field and a base item."
msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145752\n"
-"284\n"
+"12090105.xhp\n"
+"par_idN10712\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Type"
+msgstr "Tipi"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145765\n"
-"285\n"
+"12090105.xhp\n"
+"par_idN10716\n"
"help.text"
-msgid "COMBINA(Count1; Count2)"
+msgid "<ahelp hid=\"1495371266\">Select the type of calculating of the displayed value for the data field.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153372\n"
-"286\n"
+"12090105.xhp\n"
+"par_idN10724\n"
"help.text"
-msgid "<emph>Count1</emph> is the number of items in the set."
-msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
+msgid "Type"
+msgstr "Tipi"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155544\n"
-"287\n"
+"12090105.xhp\n"
+"par_idN1072A\n"
"help.text"
-msgid "<emph>Count2</emph> is the number of items to choose from the set."
-msgstr "Numri i vendeve deri në të cilin numri do të cungohet."
+msgid "Displayed value"
+msgstr "Vlerë absolute"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1997131\n"
+"12090105.xhp\n"
+"par_idN10731\n"
"help.text"
-msgid "COMBINA returns the number of unique ways to choose these items, where the order of choosing is irrelevant, and repetition of items is allowed. For example if there are 3 items A, B and C in a set, you can choose 2 items in 6 different ways, namely AA, AB, AC, BB, BC and CC."
+msgid "Normal"
+msgstr "Normal"
+
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN10737\n"
+"help.text"
+msgid "Results are shown unchanged"
msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2052064\n"
+"12090105.xhp\n"
+"par_idN1073E\n"
"help.text"
-msgid "COMBINA implements the formula: (Count1+Count2-1)! / (Count2!(Count1-1)!)"
+msgid "Difference from"
+msgstr "Nga fajli..."
+
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN10744\n"
+"help.text"
+msgid "From each result, its reference value (see below) is subtracted, and the difference is shown. Totals outside of the base field are shown as empty results."
msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154584\n"
-"288\n"
+"12090105.xhp\n"
+"par_idN10747\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<emph>Named item</emph>"
+msgstr "Statuti i artikullit ka ndryshuar"
-#: 04060106.xhp
-#, fuzzy
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152904\n"
-"289\n"
+"12090105.xhp\n"
+"par_idN1074C\n"
"help.text"
-msgid "<item type=\"input\">=COMBINA(3;2)</item> returns 6."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "If a base item name is specified, the reference value for a combination of field items is the result where the item in the base field is replaced by the specified base item."
+msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3156086\n"
+"12090105.xhp\n"
+"par_idN1074F\n"
"help.text"
-msgid "<bookmark_value>TRUNC function</bookmark_value><bookmark_value>decimal places;cutting off</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<emph>Previous item or Next item</emph>"
+msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3156086\n"
-"291\n"
+"12090105.xhp\n"
+"par_idN10754\n"
"help.text"
-msgid "TRUNC"
-msgstr "TRUNC"
+msgid "If \"previous item\" or \"next item\" is specified as the base item, the reference value is the result for the next visible member of the base field, in the base field's sort order."
+msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157866\n"
-"292\n"
+"12090105.xhp\n"
+"par_idN1075B\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_KUERZEN\">Truncates a number by removing decimal places.</ahelp>"
+msgid "% Of"
msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3148499\n"
-"293\n"
+"12090105.xhp\n"
+"par_idN10761\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Each result is divided by its reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
+msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148511\n"
-"294\n"
+"12090105.xhp\n"
+"par_idN1076A\n"
"help.text"
-msgid "TRUNC(Number; Count)"
-msgstr "Mos numëro rreshtat"
+msgid "% Difference from"
+msgstr "Nga fajli..."
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150796\n"
-"295\n"
+"12090105.xhp\n"
+"par_idN10770\n"
"help.text"
-msgid "Returns <emph>Number</emph> with at most <emph>Count</emph> decimal places. Excess decimal places are simply removed, irrespective of sign."
+msgid "From each result, its reference value is subtracted, and the difference is divided by the reference value. The reference value is determined in the same way as for \"Difference from\". Totals outside of the base field are shown as empty results."
msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3150816\n"
-"296\n"
+"12090105.xhp\n"
+"par_idN10777\n"
"help.text"
-msgid "<item type=\"literal\">TRUNC(Number; 0)</item> behaves as <item type=\"literal\">INT(Number)</item> for positive numbers, but effectively rounds towards zero for negative numbers."
+msgid "Running total in"
+msgstr "Gabim në ekzekutimin e shell-it në /target"
+
+#: 12090105.xhp
+msgctxt ""
+"12090105.xhp\n"
+"par_idN1077D\n"
+"help.text"
+msgid "Each result is added to the sum of the results for preceding items in the base field, in the base field's sort order, and the total sum is shown."
msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3148548\n"
-"557\n"
+"12090105.xhp\n"
+"par_idN10780\n"
"help.text"
-msgid "The <emph>visible</emph> decimal places of the result are specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>."
+msgid "Results are always summed, even if a different summary function was used to get each result."
msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152555\n"
-"297\n"
+"12090105.xhp\n"
+"par_idN10787\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "% of row"
+msgstr "Rresht"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152569\n"
-"298\n"
+"12090105.xhp\n"
+"par_idN1078D\n"
"help.text"
-msgid "<item type=\"input\">=TRUNC(1.239;2)</item> returns 1.23. The 9 is lost."
+msgid "Each result is divided by the total result for its row in the pivot table. If there are several data fields, the total for the result's data field is used. If there are subtotals with manually selected summary functions, the total with the data field's summary function is still used."
msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7050080\n"
+"12090105.xhp\n"
+"par_idN10794\n"
"help.text"
-msgid "<item type=\"input\">=TRUNC(-1.234999;3)</item> returns -1.234. All the 9s are lost."
-msgstr ""
+msgid "% of column"
+msgstr "Kolonë"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3153601\n"
+"12090105.xhp\n"
+"par_idN1079A\n"
"help.text"
-msgid "<bookmark_value>LN function</bookmark_value><bookmark_value>natural logarithm</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "Same as \"% of row\", but the total for the result's column is used."
+msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153601\n"
-"301\n"
+"12090105.xhp\n"
+"par_idN107A1\n"
"help.text"
-msgid "LN"
-msgstr "LN"
+msgid "% of total"
+msgstr "Gjithsejt"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154974\n"
-"302\n"
+"12090105.xhp\n"
+"par_idN107A7\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LN\">Returns the natural logarithm based on the constant e of a number.</ahelp> The constant e has a value of approximately 2.71828182845904."
+msgid "Same as \"% of row\", but the grand total for the result's data field is used."
msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154993\n"
-"303\n"
+"12090105.xhp\n"
+"par_idN107AE\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Index"
+msgstr "Indeks"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155284\n"
-"304\n"
+"12090105.xhp\n"
+"par_idN107B4\n"
"help.text"
-msgid "LN(Number)"
-msgstr "Numri i faqes"
+msgid "The row and column totals and the grand total, following the same rules as above, are used to calculate the following expression:"
+msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155297\n"
-"305\n"
+"12090105.xhp\n"
+"par_idN107B7\n"
"help.text"
-msgid "<emph>Number</emph> is the value whose natural logarithm is to be calculated."
+msgid "( original result * grand total ) / ( row total * column total )"
msgstr ""
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153852\n"
-"306\n"
+"12090105.xhp\n"
+"par_idN107BA\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Base field"
+msgstr "Emri i fushës"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153866\n"
-"307\n"
+"12090105.xhp\n"
+"par_idN107BE\n"
"help.text"
-msgid "<item type=\"input\">=LN(3)</item> returns the natural logarithm of 3 (approximately 1.0986)."
+msgid "<ahelp hid=\"1495371267\">Select the field from which the respective value is taken as base for the calculation.</ahelp>"
msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5747245\n"
+"12090105.xhp\n"
+"par_idN107C1\n"
"help.text"
-msgid "<item type=\"input\">=LN(EXP(321))</item> returns 321."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Base item"
+msgstr "Zgjedh artikullin:"
-#: 04060106.xhp
+#: 12090105.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3109813\n"
+"12090105.xhp\n"
+"par_idN107C5\n"
"help.text"
-msgid "<bookmark_value>LOG function</bookmark_value><bookmark_value>logarithms</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<ahelp hid=\"1495371268\">Select the item of the base field from which the respective value is taken as base for the calculation.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3109813\n"
-"311\n"
+"12090106.xhp\n"
+"tit\n"
"help.text"
-msgid "LOG"
-msgstr "LOG"
+msgid "Data Field Options"
+msgstr "Të dhëna të Adresës - Fusha e Caktuar"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3109841\n"
-"312\n"
+"12090106.xhp\n"
+"bm_id711386\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LOG\">Returns the logarithm of a number to the specified base.</ahelp>"
+msgid "<bookmark_value>hiding;data fields, from calculations in pivot table</bookmark_value><bookmark_value>display options in pivot table</bookmark_value><bookmark_value>sorting;options in pivot table</bookmark_value><bookmark_value>data field options for pivot table</bookmark_value>"
msgstr ""
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144719\n"
-"313\n"
+"12090106.xhp\n"
+"par_idN10542\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Data Field Options"
+msgstr "Të dhëna të Adresës - Fusha e Caktuar"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144732\n"
-"314\n"
+"12090106.xhp\n"
+"par_idN10546\n"
"help.text"
-msgid "LOG(Number; Base)"
-msgstr "Llogarit logaritmin me bazë 10 të një numri."
+msgid "You can specify additional options for column, row, and page data fields in the <link href=\"text/scalc/01/12090105.xhp\">pivot table</link>."
+msgstr ""
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144746\n"
-"315\n"
+"12090106.xhp\n"
+"par_idN10557\n"
"help.text"
-msgid "<emph>Number</emph> is the value whose logarithm is to be calculated."
-msgstr ""
+msgid "Sort by"
+msgstr "Klasifiko sipas"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152840\n"
-"316\n"
+"12090106.xhp\n"
+"par_idN1055B\n"
"help.text"
-msgid "<emph>Base</emph> (optional) is the base for the logarithm calculation. If omitted, Base 10 is assumed."
+msgid "<ahelp hid=\"1495387653\">Select the data field that you want to sort columns or rows by.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152860\n"
-"317\n"
+"12090106.xhp\n"
+"par_idN1055E\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Ascending"
+msgstr "Në rritje"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3154429\n"
-"318\n"
+"12090106.xhp\n"
+"par_idN10562\n"
"help.text"
-msgid "<item type=\"input\">=LOG(10;3)</item> returns the logarithm to base 3 of 10 (approximately 2.0959)."
+msgid "<ahelp hid=\"1495384580\">Sorts the values from the lowest value to the highest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5577562\n"
+"12090106.xhp\n"
+"par_idN10565\n"
"help.text"
-msgid "<item type=\"input\">=LOG(7^4;7)</item> returns 4."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Descending"
+msgstr "Në zvogëlim"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3154187\n"
+"12090106.xhp\n"
+"par_idN10569\n"
"help.text"
-msgid "<bookmark_value>LOG10 function</bookmark_value><bookmark_value>base-10 logarithm</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<ahelp hid=\"1495384581\">Sorts the values descending from the highest value to the lowest value. If the selected field is the field for which the dialog was opened, the items are sorted by name. If a data field was selected, the items are sorted by the resultant value of the selected data field.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3154187\n"
-"322\n"
+"12090106.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "LOG10"
-msgstr "LOG10"
+msgid "Manual"
+msgstr "Joautomatike"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155476\n"
-"323\n"
+"12090106.xhp\n"
+"par_idN10570\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_LOG10\">Returns the base-10 logarithm of a number.</ahelp>"
+msgid "<ahelp hid=\"1495384582\">Sorts values alphabetically.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155494\n"
-"324\n"
+"12090106.xhp\n"
+"par_idN10585\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Display options"
+msgstr "Shiriti i opcioneve"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159294\n"
-"325\n"
+"12090106.xhp\n"
+"par_idN10589\n"
"help.text"
-msgid "LOG10(Number)"
-msgstr "Numri i faqes"
+msgid "You can specify the display options for all row fields except for the last, innermost row field."
+msgstr ""
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159308\n"
-"326\n"
+"12090106.xhp\n"
+"par_idN1058C\n"
"help.text"
-msgid "Returns the logarithm to base 10 of <emph>Number</emph>."
-msgstr ""
+msgid "Layout"
+msgstr "Formëdhënje"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3159328\n"
-"327\n"
+"12090106.xhp\n"
+"par_idN10590\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<ahelp hid=\"1495387654\">Select the layout mode for the field in the list box.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157916\n"
-"328\n"
+"12090106.xhp\n"
+"par_idN10593\n"
"help.text"
-msgid "<item type=\"input\">=LOG10(5)</item> returns the base-10 logarithm of 5 (approximately 0.69897)."
+msgid "Empty line after each item"
msgstr ""
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3152518\n"
+"12090106.xhp\n"
+"par_idN10597\n"
"help.text"
-msgid "<bookmark_value>CEILING function</bookmark_value><bookmark_value>rounding;up to multiples of significance</bookmark_value>"
+msgid "<ahelp hid=\"1495385090\">Adds an empty row after the data for each item in the pivot table.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152518\n"
-"332\n"
+"12090106.xhp\n"
+"par_idN1059A\n"
"help.text"
-msgid "CEILING"
-msgstr "CEILING"
+msgid "Show automatically"
+msgstr "Shfaqje e sllajdeve"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153422\n"
-"558\n"
+"12090106.xhp\n"
+"par_idN1059E\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_OBERGRENZE\">Rounds a number up to the nearest multiple of Significance.</ahelp>"
+msgid "Displays the top or bottom nn items when you sort by a specified field."
msgstr ""
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3153440\n"
-"334\n"
+"12090106.xhp\n"
+"par_idN105A1\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Show"
+msgstr "Shfaq"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153454\n"
-"335\n"
+"12090106.xhp\n"
+"par_idN105A5\n"
"help.text"
-msgid "CEILING(Number; Significance; Mode)"
+msgid "<ahelp hid=\"1495385091\">Turns on the automatic show feature.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3153467\n"
-"336\n"
+"12090106.xhp\n"
+"par_idN105A8\n"
"help.text"
-msgid "<emph>Number</emph> is the number that is to be rounded up."
-msgstr "Numri i vendeve teposhtë deri tek të cili një numër do të rrumbulaksohet."
+msgid "items"
+msgstr "Artikujt në listë"
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155000\n"
-"337\n"
+"12090106.xhp\n"
+"par_idN105AC\n"
"help.text"
-msgid "<emph>Significance</emph> is the number to whose multiple the value is to be rounded up."
+msgid "<ahelp hid=\"1495390209\">Enter the maximum number of items that you want to show automatically.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155020\n"
-"559\n"
+"12090106.xhp\n"
+"par_idN105AF\n"
"help.text"
-msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of Number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
+msgid "From"
+msgstr "Nga"
+
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN105B3\n"
+"help.text"
+msgid "<ahelp hid=\"1495387655\">Shows the top or bottom items in the specified sort order.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163792\n"
-"629\n"
+"12090106.xhp\n"
+"par_idN105B6\n"
"help.text"
-msgid "If both parameters Number and Significance are negative and the Mode value is equal to zero or is not given, the results in $[officename] and Excel will differ after the import has been completed. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
+msgid "Using field"
+msgstr "Emri i fushës"
+
+#: 12090106.xhp
+msgctxt ""
+"12090106.xhp\n"
+"par_idN105BA\n"
+"help.text"
+msgid "<ahelp hid=\"1495387656\">Select the data field that you want to sort the data by.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145697\n"
-"338\n"
+"12090106.xhp\n"
+"par_idN105BD\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Hide items"
+msgstr "Fsheh sllajdin"
-#: 04060106.xhp
-#, fuzzy
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145710\n"
-"339\n"
+"12090106.xhp\n"
+"par_idN105C1\n"
"help.text"
-msgid "<item type=\"input\">=CEILING(-11;-2)</item> returns -10"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"59010\">Select the items that you want to hide from the calculations.</ahelp>"
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145725\n"
-"340\n"
+"12090106.xhp\n"
+"par_idN105C4\n"
"help.text"
-msgid "<item type=\"input\">=CEILING(-11;-2;0)</item> returns -10"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Hierarchy"
+msgstr "/usr/local - hierarki lokale"
-#: 04060106.xhp
-#, fuzzy
+#: 12090106.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145740\n"
-"341\n"
+"12090106.xhp\n"
+"par_idN105C8\n"
"help.text"
-msgid "<item type=\"input\">=CEILING(-11;-2;1)</item> returns -12"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"1495387657\">Select the hierarchy that you want to use. The pivot table must be based on an external source data that contains data hierarchies.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12090200.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3157762\n"
+"12090200.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>PI function</bookmark_value>"
-msgstr "Kthen vlerën e numrit Pi."
+msgid "Refresh"
+msgstr "Rifresko"
-#: 04060106.xhp
+#: 12090200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157762\n"
-"343\n"
+"12090200.xhp\n"
+"hd_id3151385\n"
+"1\n"
"help.text"
-msgid "PI"
-msgstr "PI"
+msgid "<link href=\"text/scalc/01/12090200.xhp\" name=\"Refresh\">Refresh</link>"
+msgstr ""
-#: 04060106.xhp
+#: 12090200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157790\n"
-"344\n"
+"12090200.xhp\n"
+"par_id3149456\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_PI\">Returns 3.14159265358979, the value of the mathematical constant PI to 14 decimal places.</ahelp>"
+msgid "<ahelp hid=\".uno:RecalcPivotTable\">Updates the pivot table.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157809\n"
-"345\n"
+"12090200.xhp\n"
+"par_id3150400\n"
+"3\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "After you import an Excel spreadsheet that contains a pivot table, click in the table, and then choose <emph>Data - Pivot Table - Refresh</emph>."
+msgstr ""
-#: 04060106.xhp
+#: 12090300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157822\n"
-"346\n"
+"12090300.xhp\n"
+"tit\n"
"help.text"
-msgid "PI()"
-msgstr "pi"
+msgid "Delete"
+msgstr "Fshije"
-#: 04060106.xhp
+#: 12090300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157836\n"
-"347\n"
+"12090300.xhp\n"
+"hd_id3150276\n"
+"1\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<link href=\"text/scalc/01/12090300.xhp\" name=\"Delete\">Delete</link>"
+msgstr ""
-#: 04060106.xhp
+#: 12090300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152370\n"
-"348\n"
+"12090300.xhp\n"
+"par_id3159400\n"
+"2\n"
"help.text"
-msgid "<item type=\"input\">=PI()</item> returns 3.14159265358979."
+msgid "<ahelp hid=\".uno:DeletePivotTable\" visibility=\"visible\">Deletes the selected pivot table.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3152418\n"
+"12090400.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>MULTINOMIAL function</bookmark_value>"
-msgstr "Veprimi përfundoi [Time]: [1]. Vlera kthyese [2]."
+msgid "Grouping"
+msgstr "Grupimi nuk është i mundshëm"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152418\n"
-"635\n"
+"12090400.xhp\n"
+"par_idN1054D\n"
"help.text"
-msgid "MULTINOMIAL"
-msgstr ""
+msgid "Grouping"
+msgstr "Grupimi nuk është i mundshëm"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152454\n"
-"636\n"
+"12090400.xhp\n"
+"par_idN10551\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_MULTINOMIAL\"> Returns the factorial of the sum of the arguments divided by the product of the factorials of the arguments.</ahelp>"
+msgid "Grouping pivot tables displays the <emph>Grouping</emph> dialog for either values or dates."
msgstr ""
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155646\n"
-"637\n"
+"12090400.xhp\n"
+"par_idN10568\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Start"
+msgstr "Fillo"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155660\n"
-"638\n"
+"12090400.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "MULTINOMIAL(Number(s))"
-msgstr "Numri i faqes"
+msgid "Specifies the start of the grouping."
+msgstr "Grupimi nuk është i mundshëm"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155673\n"
-"639\n"
+"12090400.xhp\n"
+"par_idN1056F\n"
"help.text"
-msgid "<emph>Number(s)</emph> is a list of up to 30 numbers."
-msgstr "Siguron një numër të mbrendshëm për datën e dhënë."
+msgid "Automatically"
+msgstr "Automatikisht"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155687\n"
-"640\n"
+"12090400.xhp\n"
+"par_idN10573\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Specifies whether to start grouping at the smallest value."
+msgstr ""
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3155701\n"
-"641\n"
+"12090400.xhp\n"
+"par_idN10576\n"
"help.text"
-msgid "<item type=\"input\">=MULTINOMIAL(F11:H11)</item> returns 1260, if F11 to H11 contain the values <item type=\"input\">2</item>, <item type=\"input\">3</item> and <item type=\"input\">4</item>. This corresponds to the formula =(2+3+4)! / (2!*3!*4!)"
+msgid "Manually at"
+msgstr "Në majë"
+
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN1057A\n"
+"help.text"
+msgid "Specifies whether to enter the start value for grouping yourself."
msgstr ""
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3155717\n"
+"12090400.xhp\n"
+"par_idN1057D\n"
"help.text"
-msgid "<bookmark_value>POWER function</bookmark_value>"
-msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+msgid "End"
+msgstr "Fund"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3155717\n"
-"350\n"
+"12090400.xhp\n"
+"par_idN10581\n"
"help.text"
-msgid "POWER"
-msgstr "POWER"
+msgid "Specifies the end of the grouping."
+msgstr "Grupimi nuk është i mundshëm"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159495\n"
-"351\n"
+"12090400.xhp\n"
+"par_idN10584\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_POTENZ\">Returns a number raised to another number.</ahelp>"
+msgid "Automatically"
+msgstr "Automatikisht"
+
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN10588\n"
+"help.text"
+msgid "Specifies whether to end grouping at the largest value."
msgstr ""
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3159513\n"
-"352\n"
+"12090400.xhp\n"
+"par_idN1058B\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Manually at"
+msgstr "Në majë"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159526\n"
-"353\n"
+"12090400.xhp\n"
+"par_idN1058F\n"
"help.text"
-msgid "POWER(Base; Exponent)"
+msgid "Specifies whether to enter the end value for grouping yourself."
msgstr ""
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159540\n"
-"354\n"
+"12090400.xhp\n"
+"par_idN10592\n"
"help.text"
-msgid "Returns <emph>Base</emph> raised to the power of <emph>Exponent</emph>."
-msgstr "E kthen njw numwr kompleks i cili wshtw i ngritur nw fuqi integjere"
+msgid "Group by"
+msgstr "~Grupo sipas"
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5081637\n"
+"12090400.xhp\n"
+"par_idN10596\n"
"help.text"
-msgid "The same result may be achieved by using the exponentiation operator ^:"
+msgid "Specifies the value range by which every group's limits are calculated."
msgstr ""
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9759514\n"
+"12090400.xhp\n"
+"par_idN10599\n"
"help.text"
-msgid "<item type=\"literal\">Base^Exponent</item>"
+msgid "Number of days"
+msgstr "Numri i faqes"
+
+#: 12090400.xhp
+msgctxt ""
+"12090400.xhp\n"
+"par_idN1059D\n"
+"help.text"
+msgid "In the case of grouping date values, specifies the number of days to group by."
msgstr ""
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3159580\n"
-"356\n"
+"12090400.xhp\n"
+"par_idN105A0\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Intervals"
+msgstr ""
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3159594\n"
-"357\n"
+"12090400.xhp\n"
+"par_idN105A4\n"
"help.text"
-msgid "<item type=\"input\">=POWER(4;3)</item> returns 64, which is 4 to the power of 3."
+msgid "In the case of grouping date values, specifies the intervals to group by."
msgstr ""
-#: 04060106.xhp
+#: 12090400.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1614429\n"
+"12090400.xhp\n"
+"par_idN105B2\n"
"help.text"
-msgid "=4^3 also returns 4 to the power of 3."
-msgstr "E kthen shumwn e serive tw fuqishme"
+msgid "<embedvar href=\"text/scalc/guide/datapilot_grouping.xhp#datapilot_grouping\"/>"
+msgstr ""
-#: 04060106.xhp
+#: 12100000.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3152651\n"
+"12100000.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>SERIESSUM function</bookmark_value>"
-msgstr "Mjeti. Vlera e mjetit të shprëndarjes Poisson."
+msgid "Refresh Range"
+msgstr "Rifresko brezin"
-#: 04060106.xhp
+#: 12100000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152651\n"
-"642\n"
+"12100000.xhp\n"
+"bm_id3153662\n"
"help.text"
-msgid "SERIESSUM"
+msgid "<bookmark_value>database ranges; refreshing</bookmark_value>"
msgstr ""
-#: 04060106.xhp
+#: 12100000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152688\n"
-"643\n"
+"12100000.xhp\n"
+"hd_id3153662\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Sums the first terms of a power series.</ahelp>"
+msgid "<link href=\"text/scalc/01/12100000.xhp\" name=\"Refresh Range\">Refresh Range</link>"
msgstr ""
-#: 04060106.xhp
+#: 12100000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152708\n"
-"644\n"
+"12100000.xhp\n"
+"par_id3153088\n"
+"2\n"
"help.text"
-msgid "SERIESSUM(x;n;m;coefficients) = coefficient_1*x^n + coefficient_2*x^(n+m) + coefficient_3*x^(n+2m) +...+ coefficient_i*x^(n+(i-1)m)"
+msgid "<variable id=\"aktualisieren\"><ahelp hid=\".uno:DataAreaRefresh\" visibility=\"visible\">Updates a data range that was inserted from an external database. The data in the sheet is updated to match the data in the external database.</ahelp></variable>"
msgstr ""
-#: 04060106.xhp
+#: 12120000.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152724\n"
-"645\n"
+"12120000.xhp\n"
+"tit\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Validity"
+msgstr "Vlershmëria"
-#: 04060106.xhp
+#: 12120000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_idN11BD9\n"
+"12120000.xhp\n"
+"hd_id3156347\n"
+"1\n"
"help.text"
-msgid "SERIESSUM(X; N; M; Coefficients)"
+msgid "Validity"
+msgstr "Vlershmëria"
+
+#: 12120000.xhp
+msgctxt ""
+"12120000.xhp\n"
+"par_id3153252\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"gueltigkeit\"><ahelp hid=\".uno:Validation\">Defines what data is valid for a selected cell or cell range.</ahelp></variable>"
msgstr ""
-#: 04060106.xhp
+#: 12120000.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152737\n"
-"646\n"
+"12120000.xhp\n"
+"par_idN105D1\n"
"help.text"
-msgid "<emph>X</emph> is the input value for the power series."
+msgid "You can also insert a list box from the Controls toolbar and link the list box to a cell. This way you can specify the valid values on the <link href=\"text/shared/02/01170102.xhp\">Data</link> page of the list box properties window."
msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144344\n"
-"647\n"
+"12120100.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>N</emph> is the initial power"
+msgid "Criteria"
+msgstr "Kriteret"
+
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"bm_id1464278\n"
+"help.text"
+msgid "<bookmark_value>selection lists;validity</bookmark_value>"
msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144357\n"
-"648\n"
+"12120100.xhp\n"
+"hd_id3153032\n"
+"1\n"
"help.text"
-msgid "<emph>M</emph> is the increment to increase N"
+msgid "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\">Criteria</link>"
msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144370\n"
-"649\n"
+"12120100.xhp\n"
+"par_id3156327\n"
+"2\n"
"help.text"
-msgid "<emph>Coefficients</emph> is a series of coefficients. For each coefficient the series sum is extended by one section."
+msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_VALUES\">Specify the validation rules for the selected cell(s).</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3144386\n"
+"12120100.xhp\n"
+"par_id3155923\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>PRODUCT function</bookmark_value><bookmark_value>numbers;multiplying</bookmark_value><bookmark_value>multiplying;numbers</bookmark_value>"
+msgid "For example, you can define criteria such as: \"Numbers between 1 and 10\" or \"Texts that are no more than 20 characters\"."
msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144386\n"
-"361\n"
+"12120100.xhp\n"
+"hd_id3153896\n"
+"5\n"
"help.text"
-msgid "PRODUCT"
-msgstr "PRODHIM"
+msgid "Allow"
+msgstr "~Lejo"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144414\n"
-"362\n"
+"12120100.xhp\n"
+"par_id3150400\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_PRODUKT\">Multiplies all the numbers given as arguments and returns the product.</ahelp>"
+msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_ALLOW\">Click a validation option for the selected cell(s).</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144433\n"
-"363\n"
+"12120100.xhp\n"
+"par_id3148797\n"
+"17\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "The following conditions are available:"
+msgstr "Shërbimi në vijues nuk është në dispozicion:"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144446\n"
-"364\n"
+"12120100.xhp\n"
+"par_id3150447\n"
+"18\n"
"help.text"
-msgid "PRODUCT(Number1; Number2; ...; Number30)"
-msgstr ""
+msgid "Condition"
+msgstr "Kushti"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144460\n"
-"365\n"
+"12120100.xhp\n"
+"par_id3155854\n"
+"19\n"
"help.text"
-msgid "<emph>Number1 to 30</emph> are up to 30 arguments whose product is to be calculated."
-msgstr ""
+msgid "Effect"
+msgstr "Efekti"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1589098\n"
+"12120100.xhp\n"
+"par_id3153092\n"
+"20\n"
"help.text"
-msgid "PRODUCT returns number1 * number2 * number3 * ..."
-msgstr ""
+msgid "All values"
+msgstr "Të gjitha vlerat"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144480\n"
-"366\n"
+"12120100.xhp\n"
+"par_id3155411\n"
+"21\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "No limitation."
+msgstr "Pa strukturë"
-#: 04060106.xhp
-#, fuzzy
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144494\n"
-"367\n"
+"12120100.xhp\n"
+"par_id3147434\n"
+"22\n"
"help.text"
-msgid "<item type=\"input\">=PRODUCT(2;3;4)</item> returns 24."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Whole number"
+msgstr "Numri i faqes"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3160340\n"
+"12120100.xhp\n"
+"par_id3154319\n"
+"23\n"
"help.text"
-msgid "<bookmark_value>SUMSQ function</bookmark_value><bookmark_value>square number additions</bookmark_value><bookmark_value>sums;of square numbers</bookmark_value>"
+msgid "Only whole numbers corresponding to the condition."
msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3160340\n"
-"369\n"
+"12120100.xhp\n"
+"par_id3145802\n"
+"24\n"
"help.text"
-msgid "SUMSQ"
-msgstr "SUMSQ"
+msgid "Decimal"
+msgstr "Decimale"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3160368\n"
-"370\n"
+"12120100.xhp\n"
+"par_id3153160\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_QUADRATESUMME\">If you want to calculate the sum of the squares of numbers (totaling up of the squares of the arguments), enter these into the text fields.</ahelp>"
+msgid "All numbers corresponding to the condition."
msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3160388\n"
-"371\n"
+"12120100.xhp\n"
+"par_id3149377\n"
+"26\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Date"
+msgstr "Data"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3160402\n"
-"372\n"
+"12120100.xhp\n"
+"par_id3150718\n"
+"27\n"
"help.text"
-msgid "SUMSQ(Number1; Number2; ...; Number30)"
+msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3160415\n"
-"373\n"
+"12120100.xhp\n"
+"par_id3146969\n"
+"28\n"
"help.text"
-msgid "<emph>Number1 to 30</emph> are up to 30 arguments the sum of whose squares is to be calculated."
+msgid "Time"
+msgstr "Koha"
+
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3155066\n"
+"29\n"
+"help.text"
+msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3160436\n"
-"374\n"
+"12120100.xhp\n"
+"par_idN106A0\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Cell range"
+msgstr "Brezi i numrave"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3160449\n"
-"375\n"
+"12120100.xhp\n"
+"par_idN106A5\n"
"help.text"
-msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3</item> and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 29 is returned as the result."
+msgid "Allow only values that are given in a cell range. The cell range can be specified explicitly, or as a named database range, or as a named range. The range may consist of one column or one row of cells. If you specify a range of columns and rows, only the first column is used."
msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3158247\n"
+"12120100.xhp\n"
+"par_idN106AB\n"
"help.text"
-msgid "<bookmark_value>MOD function</bookmark_value><bookmark_value>remainders of divisions</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "List"
+msgstr "Lista"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3158247\n"
-"387\n"
+"12120100.xhp\n"
+"par_idN106B0\n"
"help.text"
-msgid "MOD"
-msgstr "MOD"
+msgid "Allow only values or strings specified in a list. Strings and values can be mixed. Numbers evaluate to their value, so if you enter the number 1 in the list, the entry 100% is also valid."
+msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158276\n"
-"388\n"
+"12120100.xhp\n"
+"par_id3154756\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_REST\">Returns the remainder when one integer is divided by another.</ahelp>"
-msgstr ""
+msgid "Text length"
+msgstr "Gjatësia e tekstit"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3158294\n"
-"389\n"
+"12120100.xhp\n"
+"par_id3147339\n"
+"31\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Entries whose length corresponds to the condition."
+msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158308\n"
-"390\n"
+"12120100.xhp\n"
+"hd_id3154704\n"
+"7\n"
"help.text"
-msgid "MOD(Dividend; Divisor)"
-msgstr "Përpjestuesi më i madh"
+msgid "Allow blank cells"
+msgstr "Futi Qelitë Teposhtë"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158321\n"
-"391\n"
+"12120100.xhp\n"
+"par_id3153967\n"
+"8\n"
"help.text"
-msgid "For integer arguments this function returns Dividend modulo Divisor, that is the remainder when <emph>Dividend</emph> is divided by <emph>Divisor</emph>."
+msgid "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS\">In conjunction with <emph>Tools - Detective - Mark invalid Data</emph>, this defines that blank cells are shown as invalid data (disabled) or not (enabled).</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158341\n"
-"392\n"
+"12120100.xhp\n"
+"par_idN10709\n"
"help.text"
-msgid "This function is implemented as <item type=\"literal\">Dividend - Divisor * INT(Dividend/Divisor)</item> , and this formula gives the result if the arguments are not integer."
+msgid "Show selection list"
+msgstr "Zgjedhni listën e adresave"
+
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_idN1070D\n"
+"help.text"
+msgid "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST\">Shows a list of all valid strings or values to select from. The list can also be opened by selecting the cell and pressing Ctrl+D (Mac: Command+D).</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3158361\n"
-"393\n"
+"12120100.xhp\n"
+"par_idN10724\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Sort entries ascending"
+msgstr "Kombino hyrjet identike"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158374\n"
-"394\n"
+"12120100.xhp\n"
+"par_idN10728\n"
"help.text"
-msgid "<item type=\"input\">=MOD(22;3)</item> returns 1, the remainder when 22 is divided by 3."
+msgid "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST\">Sorts the selection list in ascending order and filters duplicates from the list. If not checked, the order from the data source is taken.</ahelp>"
msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1278420\n"
+"12120100.xhp\n"
+"par_idN1073F\n"
"help.text"
-msgid "<item type=\"input\">=MOD(11.25;2.5)</item> returns 1.25."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Source"
+msgstr "Burimi"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3144592\n"
+"12120100.xhp\n"
+"par_idN10743\n"
"help.text"
-msgid "<bookmark_value>QUOTIENT function</bookmark_value><bookmark_value>divisions</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<ahelp hid=\"sc:Edit:TP_VALIDATION_VALUES:EDT_MIN\">Enter the cell range that contains the valid values or text.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144592\n"
-"652\n"
+"12120100.xhp\n"
+"par_idN1075A\n"
"help.text"
-msgid "QUOTIENT"
+msgid "Entries"
+msgstr "Hyrjet"
+
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_idN1075E\n"
+"help.text"
+msgid "<ahelp hid=\"sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST\">Enter the entries that will be valid values or text strings.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144627\n"
-"653\n"
+"12120100.xhp\n"
+"hd_id3163807\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_QUOTIENT\">Returns the integer part of a division operation.</ahelp>"
+msgid "Data"
+msgstr "Të dhëna"
+
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3144502\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_VALUE\">Select the comparative operator that you want to use.</ahelp> The available operators depend on what you selected in the <emph>Allow </emph>box. If you select \"between\" or \"not between\", the <emph>Minimum</emph> and <emph>Maximum</emph> input boxes appear. Otherwise, only the <emph>Minimum</emph>, the <emph>Maximum, or the Value</emph> input boxes appear."
msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144646\n"
-"654\n"
+"12120100.xhp\n"
+"hd_id3153782\n"
+"11\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Value"
+msgstr "Vlerë"
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144659\n"
-"655\n"
+"12120100.xhp\n"
+"par_id3153266\n"
+"12\n"
"help.text"
-msgid "QUOTIENT(Numerator; Denominator)"
+msgid "Enter the value for the data validation option that you selected in the <emph>Allow </emph>box."
msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9038972\n"
+"12120100.xhp\n"
+"hd_id3149814\n"
+"13\n"
"help.text"
-msgid "Returns the integer part of <emph>Numerator</emph> divided by <emph>Denominator</emph>."
+msgid "Minimum"
+msgstr "Minimum"
+
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3153199\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MIN\">Enter the minimum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12120100.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7985168\n"
+"12120100.xhp\n"
+"hd_id3149035\n"
+"15\n"
"help.text"
-msgid "QUOTIENT is equivalent to <item type=\"literal\">INT(numerator/denominator)</item>, except that it may report errors with different error codes."
+msgid "Maximum"
+msgstr "Maksimum"
+
+#: 12120100.xhp
+msgctxt ""
+"12120100.xhp\n"
+"par_id3150089\n"
+"16\n"
+"help.text"
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MAX\">Enter the maximum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144674\n"
-"656\n"
+"12120200.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Input Help"
+msgstr "Ndihmë në Hyrje"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144687\n"
-"657\n"
+"12120200.xhp\n"
+"hd_id3156280\n"
+"1\n"
"help.text"
-msgid "<item type=\"input\">=QUOTIENT(11;3)</item> returns 3. The remainder of 2 is lost."
+msgid "<link href=\"text/scalc/01/12120200.xhp\" name=\"Input Help\">Input Help</link>"
msgstr ""
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3144702\n"
+"12120200.xhp\n"
+"par_id3147229\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>RADIANS function</bookmark_value><bookmark_value>converting;degrees, into radians</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected in the sheet.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144702\n"
-"377\n"
+"12120200.xhp\n"
+"hd_id3146986\n"
+"3\n"
"help.text"
-msgid "RADIANS"
-msgstr "RADIAN"
+msgid "Show input help when cell is selected"
+msgstr "~Trego inputin e ndihmës kur të jetë zgjedhur qelia"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158025\n"
-"378\n"
+"12120200.xhp\n"
+"par_id3153363\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_RAD\">Converts degrees to radians.</ahelp>"
+msgid "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_INPUTHELP:TSB_HELP\">Displays the message that you enter in the <emph>Contents</emph> box when the cell or cell range is selected in the sheet.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3158042\n"
-"379\n"
+"12120200.xhp\n"
+"par_id3154730\n"
+"5\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "If you enter text in the <emph>Contents</emph> box of this dialog, and then select and clear this check box, the text will be lost."
+msgstr ""
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158055\n"
-"380\n"
+"12120200.xhp\n"
+"hd_id3147394\n"
+"6\n"
"help.text"
-msgid "RADIANS(Number)"
-msgstr "Numri i faqes"
+msgid "Contents"
+msgstr "Përmbajtjet"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158069\n"
-"381\n"
+"12120200.xhp\n"
+"hd_id3149582\n"
+"8\n"
"help.text"
-msgid "<emph>Number</emph> is the angle in degrees to be converted to radians."
+msgid "Title"
+msgstr "Titulli"
+
+#: 12120200.xhp
+msgctxt ""
+"12120200.xhp\n"
+"par_id3149400\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_INPUTHELP:EDT_TITLE\">Enter the title that you want to display when the cell or cell range is selected.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id876186\n"
+"12120200.xhp\n"
+"hd_id3149121\n"
+"10\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Input help"
+msgstr "Ndihmë në Hyrje"
-#: 04060106.xhp
+#: 12120200.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3939634\n"
+"12120200.xhp\n"
+"par_id3150752\n"
+"11\n"
"help.text"
-msgid "<item type=\"input\">=RADIANS(90)</item> returns 1.5707963267949, which is PI/2 to Calc's accuracy."
+msgid "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_INPUTHELP:EDT_INPUTHELP\">Enter the message that you want to display when the cell or cell range is selected.</ahelp>"
msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3158121\n"
+"12120300.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>ROUND function</bookmark_value>"
-msgstr "I kthen vlerat absolute tw njw numri kompleks"
+msgid "Error Alert"
+msgstr "Alarm i Gabimit"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3158121\n"
-"398\n"
+"12120300.xhp\n"
+"hd_id3153821\n"
+"1\n"
"help.text"
-msgid "ROUND"
-msgstr "ROUND"
+msgid "<link href=\"text/scalc/01/12120300.xhp\" name=\"Error Alert\">Error Alert</link>"
+msgstr ""
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158150\n"
-"399\n"
+"12120300.xhp\n"
+"par_id3153379\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_RUNDEN\">Rounds a number to a certain number of decimal places.</ahelp>"
+msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_ERROR\">Define the error message that is displayed when invalid data is entered in a cell.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3158169\n"
-"400\n"
+"12120300.xhp\n"
+"par_id3154138\n"
+"25\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "You can also start a macro with an error message. A sample macro is provided at the end of this page."
+msgstr ""
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158182\n"
-"401\n"
+"12120300.xhp\n"
+"hd_id3156280\n"
+"3\n"
"help.text"
-msgid "ROUND(Number; Count)"
-msgstr "Numri qw tw rrumbullaksohet"
+msgid "Show error message when invalid values are entered."
+msgstr "Trego mesazhin e ~gabimit kur futen vlera të pavlefshme"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3158196\n"
-"402\n"
+"12120300.xhp\n"
+"par_id3150768\n"
+"4\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds to the nearest integer. If Count is negative, the function rounds to the nearest 10, 100, 1000, etc."
+msgid "<ahelp hid=\".\">Displays the error message that you enter in the <emph>Contents</emph> area when invalid data is entered in a cell.</ahelp> If enabled, the message is displayed to prevent an invalid entry."
msgstr ""
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id599688\n"
+"12120300.xhp\n"
+"par_id3146984\n"
+"5\n"
"help.text"
-msgid "This function rounds to the nearest number. See ROUNDDOWN and ROUNDUP for alternatives."
+msgid "In both cases, if you select \"Stop\", the invalid entry is deleted and the previous value is reentered in the cell. The same applies if you close the \"Warning\" and \"Information\" dialogs by clicking the <emph>Cancel </emph>button. If you close the dialogs with the <emph>OK</emph> button, the invalid entry is not deleted."
msgstr ""
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145863\n"
-"404\n"
+"12120300.xhp\n"
+"hd_id3152460\n"
+"6\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Contents"
+msgstr "Përmbajtjet"
-#: 04060106.xhp
-#, fuzzy
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145876\n"
-"405\n"
+"12120300.xhp\n"
+"hd_id3148646\n"
+"8\n"
"help.text"
-msgid "<item type=\"input\">=ROUND(2.348;2)</item> returns 2.35"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Action"
+msgstr "Veprim"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3145899\n"
-"406\n"
+"12120300.xhp\n"
+"par_id3151115\n"
+"9\n"
"help.text"
-msgid "<item type=\"input\">=ROUND(-32.4834;3)</item> returns -32.483. Change the cell format to see all decimals."
+msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_ERROR:LB_ACTION\">Select the action that you want to occur when invalid data is entered in a cell.</ahelp> The \"Stop\" action rejects the invalid entry and displays a dialog that you have to close by clicking <emph>OK</emph>. The \"Warning\" and \"Information\" actions display a dialog that can be closed by clicking <emph>OK</emph> or <emph>Cancel</emph>. The invalid entry is only rejected when you click <emph>Cancel</emph>."
msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1371501\n"
+"12120300.xhp\n"
+"hd_id3156441\n"
+"10\n"
"help.text"
-msgid "<item type=\"input\">=ROUND(2.348;0)</item> returns 2."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Browse"
+msgstr "Shfleto..."
-#: 04060106.xhp
-#, fuzzy
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id4661702\n"
+"12120300.xhp\n"
+"par_id3153160\n"
+"11\n"
"help.text"
-msgid "<item type=\"input\">=ROUND(2.5)</item> returns 3."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"SC:PUSHBUTTON:TP_VALIDATION_ERROR:BTN_SEARCH\">Opens the <link href=\"text/shared/01/06130000.xhp\" name=\"Macro\">Macro</link> dialog where you can select the macro that is executed when invalid data is entered in a cell. The macro is executed after the error message is displayed.</ahelp>"
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7868892\n"
+"12120300.xhp\n"
+"hd_id3153876\n"
+"12\n"
"help.text"
-msgid "<item type=\"input\">=ROUND(987.65;-2)</item> returns 1000."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Title"
+msgstr "Titulli"
-#: 04060106.xhp
-#, fuzzy
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3145991\n"
+"12120300.xhp\n"
+"par_id3149410\n"
+"13\n"
"help.text"
-msgid "<bookmark_value>ROUNDDOWN function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_ERROR:EDT_TITLE\">Enter the title of the macro or the error message that you want to display when invalid data is entered in a cell.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3145991\n"
-"24\n"
+"12120300.xhp\n"
+"hd_id3154510\n"
+"14\n"
"help.text"
-msgid "ROUNDDOWN"
-msgstr "ROUNDDOWN"
+msgid "Error message"
+msgstr "~Mesazhi i gabimit"
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146020\n"
-"25\n"
+"12120300.xhp\n"
+"par_id3149122\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ABRUNDEN\">Rounds a number down, toward zero, to a certain precision.</ahelp>"
+msgid "<ahelp hid=\"SC:MULTILINEEDIT:TP_VALIDATION_ERROR:EDT_ERROR\">Enter the message that you want to display when invalid data is entered in a cell.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: 12120300.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3146037\n"
-"26\n"
+"12120300.xhp\n"
+"par_id3150752\n"
+"16\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<emph>Sample macro:</emph>"
+msgstr "Ekzekuto fushën makro"
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146051\n"
-"27\n"
+"format_graphic.xhp\n"
+"tit\n"
"help.text"
-msgid "ROUNDDOWN(Number; Count)"
-msgstr "Mos numëro rreshtat"
+msgid "Graphic"
+msgstr "Grafikë"
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3146064\n"
-"28\n"
+"format_graphic.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded down (towards zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds down to an integer. If Count is negative, the function rounds down to the next 10, 100, 1000, etc."
+msgid "<link href=\"text/scalc/01/format_graphic.xhp\">Graphic</link>"
msgstr ""
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2188787\n"
+"format_graphic.xhp\n"
+"par_idN10558\n"
"help.text"
-msgid "This function rounds towards zero. See ROUNDUP and ROUND for alternatives."
+msgid "<ahelp hid=\".\">Opens a submenu to edit the properties of the selected object.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163164\n"
-"30\n"
+"format_graphic.xhp\n"
+"par_id1650440\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<link href=\"text/shared/01/05990000.xhp\">Define Text Attributes</link>"
+msgstr ""
-#: 04060106.xhp
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163178\n"
-"31\n"
+"format_graphic.xhp\n"
+"par_id363475\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(1.234;2)</item> returns 1.23."
+msgid "Sets the layout and anchoring properties for text in the selected drawing or text object."
msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5833307\n"
+"format_graphic.xhp\n"
+"par_id9746696\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(45.67;0)</item> returns 45."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Points"
+msgstr "Edito pikat"
-#: 04060106.xhp
-#, fuzzy
+#: format_graphic.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7726676\n"
+"format_graphic.xhp\n"
+"par_id2480544\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(-45.67)</item> returns -45."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\".\">Switches <emph>Edit Points</emph> mode for an inserted freeform line on and off.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3729361\n"
+"func_date.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDDOWN(987.65;-2)</item> returns 900."
-msgstr ""
+msgid "DATE"
+msgstr "DATA"
-#: 04060106.xhp
-#, fuzzy
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3163268\n"
+"func_date.xhp\n"
+"bm_id3155511\n"
"help.text"
-msgid "<bookmark_value>ROUNDUP function</bookmark_value>"
-msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+msgid "<bookmark_value>DATE function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163268\n"
-"140\n"
+"func_date.xhp\n"
+"hd_id3155511\n"
+"3\n"
"help.text"
-msgid "ROUNDUP"
-msgstr "ROUNDUP"
+msgid "<variable id=\"date\"><link href=\"text/scalc/01/func_date.xhp\">DATE</link></variable>"
+msgstr ""
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163297\n"
-"141\n"
+"func_date.xhp\n"
+"par_id3153551\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_AUFRUNDEN\">Rounds a number up, away from zero, to a certain precision.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function calculates a date specified by year, month, day and displays it in the cell's formatting.</ahelp> The default format of a cell containing the DATE function is the date format, but you can format the cells with any other number format."
msgstr ""
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163315\n"
-"142\n"
+"func_date.xhp\n"
+"hd_id3148590\n"
+"5\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163328\n"
-"143\n"
+"func_date.xhp\n"
+"par_id3150474\n"
+"6\n"
"help.text"
-msgid "ROUNDUP(Number; Count)"
-msgstr "Mos numëro rreshtat"
+msgid "DATE(Year; Month; Day)"
+msgstr "Çfarwdo dite nw muajin e dwshiruar"
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163342\n"
-"144\n"
+"func_date.xhp\n"
+"par_id3152815\n"
+"7\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded up (away from zero) to <emph>Count</emph> decimal places. If Count is omitted or zero, the function rounds up to an integer. If Count is negative, the function rounds up to the next 10, 100, 1000, etc."
+msgid "<emph>Year</emph> is an integer between 1583 and 9957 or between 0 and 99."
msgstr ""
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9573961\n"
+"func_date.xhp\n"
+"par_id3153222\n"
+"174\n"
"help.text"
-msgid "This function rounds away from zero. See ROUNDDOWN and ROUND for alternatives."
+msgid "In <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General </item>you can set from which year a two-digit number entry is recognized as 20xx."
msgstr ""
-#: 04060106.xhp
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163381\n"
-"146\n"
+"func_date.xhp\n"
+"par_id3155817\n"
+"8\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<emph>Month</emph> is an integer indicating the month."
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144786\n"
-"147\n"
+"func_date.xhp\n"
+"par_id3153183\n"
+"9\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDUP(1.1111;2)</item> returns 1.12."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<emph>Day</emph> is an integer indicating the day of the month."
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7700430\n"
+"func_date.xhp\n"
+"par_id3156260\n"
+"10\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDUP(1.2345;1)</item> returns 1.3."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "If the values for month and day are out of bounds, they are carried over to the next digit. If you enter <item type=\"input\">=DATE(00;12;31)</item> the result will be 12/31/00. If, on the other hand, you enter <item type=\"input\">=DATE(00;13;31)</item> the result will be 1/31/01."
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1180455\n"
+"func_date.xhp\n"
+"hd_id3147477\n"
+"12\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDUP(45.67;0)</item> returns 46."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Example"
+msgstr "Shembull"
-#: 04060106.xhp
-#, fuzzy
+#: func_date.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3405560\n"
+"func_date.xhp\n"
+"par_id3152589\n"
+"16\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDUP(-45.67)</item> returns -46."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<item type=\"input\">=DATE(00;1;31)</item> yields 1/31/00 if the cell format setting is MM/DD/YY."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3409527\n"
+"func_datedif.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=ROUNDUP(987.65;-2)</item> returns 1000."
+msgid "DATEDIF"
msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id5256537\n"
+"func_datedif.xhp\n"
+"bm_id3155511\n"
"help.text"
-msgid "<bookmark_value>SEC function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "<bookmark_value>DATEDIF function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id5187204\n"
-"149\n"
+"func_datedif.xhp\n"
+"hd_id3155511\n"
"help.text"
-msgid "SEC"
+msgid "<variable id=\"datedif\"><link href=\"text/scalc/01/func_datedif.xhp\">DATEDIF</link></variable>"
msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9954962\n"
-"150\n"
+"func_datedif.xhp\n"
+"par_id3153551\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SECANT\">Returns the secant of the given angle (in radians). The secant of an angle is equivalent to 1 divided by the cosine of that angle</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_DATUM\">This function returns the number of whole days, months or years between Start date and End date.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id422243\n"
-"151\n"
+"func_datedif.xhp\n"
+"hd_id3148590\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
-#, fuzzy
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2055913\n"
-"152\n"
+"func_datedif.xhp\n"
+"par_id3150474\n"
"help.text"
-msgid "SEC(Number)"
-msgstr "Numri i faqes"
+msgid "DATEDIF(Start date; End date; Interval)"
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9568170\n"
-"153\n"
+"func_datedif.xhp\n"
+"par_id3152815\n"
"help.text"
-msgid "Returns the (trigonometric) secant of <emph>Number</emph>, the angle in radians."
+msgid "<emph>Start date</emph> is the date from when the calculation is carried out."
msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9047465\n"
+"func_datedif.xhp\n"
+"par_id3155817\n"
"help.text"
-msgid "To return the secant of an angle in degrees, use the RADIANS function."
+msgid "<emph>End date</emph> is the date until the calculation is carried out. End date must be later, than Start date."
msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id9878918\n"
-"154\n"
+"func_datedif.xhp\n"
+"par_id3153183\n"
"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
+msgid "<emph>Interval</emph> is a string, accepted values are \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\"."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6935513\n"
-"155\n"
+"func_datedif.xhp\n"
+"par_id5735953\n"
"help.text"
-msgid "<item type=\"input\">=SEC(PI()/4)</item> returns approximately 1.4142135624, the inverse of the cosine of PI/4 radians."
+msgid "Value for \"Interval\""
msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3954287\n"
-"156\n"
+"func_datedif.xhp\n"
+"par_id8360850\n"
"help.text"
-msgid "<item type=\"input\">=SEC(RADIANS(60))</item> returns 2, the secant of 60 degrees."
-msgstr ""
+msgid "Return value"
+msgstr "Vlerë absolute"
-#: 04060106.xhp
-#, fuzzy
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id840005\n"
+"func_datedif.xhp\n"
+"par_id9648731\n"
"help.text"
-msgid "<bookmark_value>SECH function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "\"d\""
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id8661934\n"
-"159\n"
+"func_datedif.xhp\n"
+"par_id908841\n"
"help.text"
-msgid "SECH"
+msgid "Number of whole days between Start date and End date."
msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id408174\n"
-"160\n"
+"func_datedif.xhp\n"
+"par_id8193914\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SECANTHYP\">Returns the hyperbolic secant of a number.</ahelp>"
+msgid "\"m\""
msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id875988\n"
-"161\n"
+"func_datedif.xhp\n"
+"par_id9841608\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Number of whole months between Start date and End date."
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id4985391\n"
-"162\n"
+"func_datedif.xhp\n"
+"par_id2701803\n"
"help.text"
-msgid "SECH(Number)"
-msgstr "Numri i faqes"
+msgid "\"y\""
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1952124\n"
-"163\n"
+"func_datedif.xhp\n"
+"par_id2136295\n"
"help.text"
-msgid "Returns the hyperbolic secant of <emph>Number</emph>."
-msgstr "Kthen sinusin hiperbolik invers të një numri."
+msgid "Number of whole years between Start date and End date."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id9838764\n"
-"164\n"
+"func_datedif.xhp\n"
+"par_id9200109\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "\"ym\""
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1187764\n"
-"165\n"
+"func_datedif.xhp\n"
+"par_id4186223\n"
"help.text"
-msgid "<item type=\"input\">=SECH(0)</item> returns 1, the hyperbolic secant of 0."
+msgid "Number of whole months when subtracting years from the difference of Start date and End date."
msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3144877\n"
+"func_datedif.xhp\n"
+"par_id5766472\n"
"help.text"
-msgid "<bookmark_value>SIN function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "\"md\""
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144877\n"
-"408\n"
+"func_datedif.xhp\n"
+"par_id1491134\n"
"help.text"
-msgid "SIN"
-msgstr "SIN"
+msgid "Number of whole days when subtracting years and months from the difference of Start date and End date."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144906\n"
-"409\n"
+"func_datedif.xhp\n"
+"par_id5866472\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SIN\">Returns the sine of the given angle (in radians).</ahelp>"
+msgid "\"yd\""
msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144923\n"
-"410\n"
+"func_datedif.xhp\n"
+"par_id1591134\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "Number of whole days when subtracting years from the difference of Start date and End date."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144937\n"
-"411\n"
+"func_datedif.xhp\n"
+"hd_id3147477\n"
"help.text"
-msgid "SIN(Number)"
-msgstr "Numri i faqes"
+msgid "Example"
+msgstr "Shembull"
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144950\n"
-"412\n"
+"func_datedif.xhp\n"
+"par_id3152589\n"
"help.text"
-msgid "Returns the (trigonometric) sine of <emph>Number</emph>, the angle in radians."
+msgid "Birthday calculation. A man was born on 1974-04-17. Today is 2012-06-13."
msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8079470\n"
+"func_datedif.xhp\n"
+"par_id3252589\n"
"help.text"
-msgid "To return the sine of an angle in degrees, use the RADIANS function."
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"y\")</item> yields 38. <item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"ym\")</item> yields 1. <item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"md\")</item> yields 27. So he is 38 years, 1 month and 27 days old."
msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3144969\n"
-"413\n"
+"func_datedif.xhp\n"
+"par_id3352589\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"m\")</item> yields 457, he has been living for 457 months."
+msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3144983\n"
-"414\n"
+"func_datedif.xhp\n"
+"par_id3452589\n"
"help.text"
-msgid "<item type=\"input\">=SIN(PI()/2)</item> returns 1, the sine of PI/2 radians."
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"d\")</item> yields 13937, he has been living for 13937 days."
msgstr ""
-#: 04060106.xhp
+#: func_datedif.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3916440\n"
+"func_datedif.xhp\n"
+"par_id3752589\n"
"help.text"
-msgid "<item type=\"input\">=SIN(RADIANS(30))</item> returns 0.5, the sine of 30 degrees."
+msgid "<item type=\"input\">=DATEDIF(\"1974-04-17\";\"2012-06-13\";\"yd\")</item> yields 57, his birthday was 57 days ago."
msgstr ""
-#: 04060106.xhp
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3163397\n"
+"func_datevalue.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>SINH function</bookmark_value>"
+msgid "DATEVALUE"
+msgstr "DATEVALUE"
+
+#: func_datevalue.xhp
+msgctxt ""
+"func_datevalue.xhp\n"
+"bm_id3145621\n"
+"help.text"
+msgid "<bookmark_value>DATEVALUE function</bookmark_value>"
msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 04060106.xhp
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163397\n"
-"418\n"
+"func_datevalue.xhp\n"
+"hd_id3145621\n"
+"18\n"
"help.text"
-msgid "SINH"
-msgstr "SINH"
+msgid "<variable id=\"datevalue\"><link href=\"text/scalc/01/func_datevalue.xhp\">DATEVALUE</link></variable>"
+msgstr ""
-#: 04060106.xhp
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163426\n"
-"419\n"
+"func_datevalue.xhp\n"
+"par_id3145087\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SINHYP\">Returns the hyperbolic sine of a number.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_DATWERT\">Returns the internal date number for text in quotes.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163444\n"
-"420\n"
+"func_datevalue.xhp\n"
+"par_id3149281\n"
+"20\n"
+"help.text"
+msgid "The internal date number is returned as a number. The number is determined by the date system that is used by $[officename] to calculate dates."
+msgstr ""
+
+#: func_datevalue.xhp
+msgctxt ""
+"func_datevalue.xhp\n"
+"par_id0119200903491982\n"
+"help.text"
+msgid "If the text string also includes a time value, DATEVALUE only returns the integer part of the conversion."
+msgstr ""
+
+#: func_datevalue.xhp
+msgctxt ""
+"func_datevalue.xhp\n"
+"hd_id3156294\n"
+"21\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163457\n"
-"421\n"
+"func_datevalue.xhp\n"
+"par_id3149268\n"
+"22\n"
"help.text"
-msgid "SINH(Number)"
-msgstr "Numri i faqes"
+msgid "DATEVALUE(\"Text\")"
+msgstr "Vizato tekstin"
-#: 04060106.xhp
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163471\n"
-"422\n"
+"func_datevalue.xhp\n"
+"par_id3154819\n"
+"23\n"
"help.text"
-msgid "Returns the hyperbolic sine of <emph>Number</emph>."
-msgstr "Kthen sinusin hiperbolik invers të një numri."
+msgid "<emph>Text</emph> is a valid date expression and must be entered with quotation marks."
+msgstr ""
-#: 04060106.xhp
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163491\n"
-"423\n"
+"func_datevalue.xhp\n"
+"hd_id3156309\n"
+"24\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060106.xhp
+#: func_datevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163504\n"
-"424\n"
+"func_datevalue.xhp\n"
+"par_id3155841\n"
+"25\n"
"help.text"
-msgid "<item type=\"input\">=SINH(0)</item> returns 0, the hyperbolic sine of 0."
+msgid "<emph>=DATEVALUE(\"1954-07-20\")</emph> yields 19925."
msgstr ""
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3163596\n"
+"func_day.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>SUM function</bookmark_value><bookmark_value>adding;numbers in cell ranges</bookmark_value>"
+msgid "DAY"
+msgstr "Dita"
+
+#: func_day.xhp
+msgctxt ""
+"func_day.xhp\n"
+"bm_id3147317\n"
+"help.text"
+msgid "<bookmark_value>DAY function</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163596\n"
-"428\n"
+"func_day.xhp\n"
+"hd_id3147317\n"
+"106\n"
"help.text"
-msgid "SUM"
-msgstr "SUM"
+msgid "<variable id=\"day\"><link href=\"text/scalc/01/func_day.xhp\">DAY</link></variable>"
+msgstr ""
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163625\n"
-"429\n"
+"func_day.xhp\n"
+"par_id3147584\n"
+"107\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SUMME\">Adds all the numbers in a range of cells.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_TAG\">Returns the day of given date value.</ahelp> The day is returned as an integer between 1 and 31. You can also enter a negative date/time value."
msgstr ""
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163643\n"
-"430\n"
+"func_day.xhp\n"
+"hd_id3150487\n"
+"108\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163656\n"
-"431\n"
+"func_day.xhp\n"
+"par_id3149430\n"
+"109\n"
"help.text"
-msgid "SUM(Number1; Number2; ...; Number30)"
-msgstr ""
+msgid "DAY(Number)"
+msgstr "Numri i faqes"
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163671\n"
-"432\n"
+"func_day.xhp\n"
+"par_id3149443\n"
+"110\n"
"help.text"
-msgid "<emph>Number 1 to Number 30</emph> are up to 30 arguments whose sum is to be calculated."
+msgid "<emph>Number</emph>, as a time value, is a decimal, for which the day is to be returned."
msgstr ""
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163690\n"
-"433\n"
+"func_day.xhp\n"
+"hd_id3163809\n"
+"111\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Examples"
+msgstr "Shembuj:"
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163704\n"
-"434\n"
+"func_day.xhp\n"
+"par_id3151200\n"
+"112\n"
"help.text"
-msgid "If you enter the numbers <item type=\"input\">2</item>; <item type=\"input\">3 </item>and <item type=\"input\">4</item> in the Number 1; 2 and 3 text boxes, 9 will be returned as the result."
+msgid "DAY(1) returns 31 (since $[officename] starts counting at zero from December 30, 1899)"
msgstr ""
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151740\n"
-"556\n"
+"func_day.xhp\n"
+"par_id3154130\n"
+"113\n"
"help.text"
-msgid "<item type=\"input\">=SUM(A1;A3;B5)</item> calculates the sum of the three cells. <item type=\"input\">=SUM (A1:E10)</item> calculates the sum of all cells in the A1 to E10 cell range."
+msgid "DAY(NOW()) returns the current day."
msgstr ""
-#: 04060106.xhp
+#: func_day.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151756\n"
-"619\n"
+"func_day.xhp\n"
+"par_id3159190\n"
+"114\n"
"help.text"
-msgid "Conditions linked by AND can be used with the function SUM() in the following manner:"
+msgid "=DAY(C4) returns 5 if you enter 1901-08-05 in cell C4 (the date value might get formatted differently after you press Enter)."
msgstr ""
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151774\n"
-"620\n"
+"func_days.xhp\n"
+"tit\n"
"help.text"
-msgid "Example assumption: You have entered invoices into a table. Column A contains the date value of the invoice, column B the amounts. You want to find a formula that you can use to return the total of all amounts only for a specific month, e.g. only the amount for the period >=2008-01-01 to <2008-02-01. The range with the date values covers A1:A40, the range containing the amounts to be totaled is B1:B40. C1 contains the start date, 2008<item type=\"input\">-01-01</item>, of the invoices to be included and C2 the date, 2008<item type=\"input\">-02-01</item>, that is no longer included."
-msgstr ""
+msgid "DAYS"
+msgstr "DITËT"
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151799\n"
-"621\n"
+"func_days.xhp\n"
+"bm_id3151328\n"
"help.text"
-msgid "Enter the following formula as an array formula:"
+msgid "<bookmark_value>DAYS function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: func_days.xhp
+msgctxt ""
+"func_days.xhp\n"
+"hd_id3151328\n"
+"116\n"
+"help.text"
+msgid "<variable id=\"days\"><link href=\"text/scalc/01/func_days.xhp\">DAYS</link></variable>"
msgstr ""
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151813\n"
-"622\n"
+"func_days.xhp\n"
+"par_id3155139\n"
+"117\n"
"help.text"
-msgid "<item type=\"input\">=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)</item>"
+msgid "<ahelp hid=\"HID_FUNC_TAGE\">Calculates the difference between two date values.</ahelp> The result returns the number of days between the two days."
msgstr ""
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151828\n"
-"623\n"
+"func_days.xhp\n"
+"hd_id3155184\n"
+"118\n"
"help.text"
-msgid "In order to enter this as an array formula, you must press the Shift<switchinline select=\"sys\"><caseinline select=\"MAC\">+Command </caseinline><defaultinline>+ Ctrl</defaultinline></switchinline>+ Enter keys instead of simply pressing the Enter key to close the formula. The formula will then be shown in the <emph>Formula</emph> bar enclosed in braces."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: func_days.xhp
+msgctxt ""
+"func_days.xhp\n"
+"par_id3149578\n"
+"119\n"
+"help.text"
+msgid "DAYS(Date2; Date1)"
+msgstr "Offset në ditë:"
+
+#: func_days.xhp
+msgctxt ""
+"func_days.xhp\n"
+"par_id3151376\n"
+"120\n"
+"help.text"
+msgid "<emph>Date1</emph> is the start date, <emph>Date2</emph> is the end date. If <emph>Date2</emph> is an earlier date than <emph>Date1</emph> the result is a negative number."
msgstr ""
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151869\n"
-"624\n"
+"func_days.xhp\n"
+"hd_id3151001\n"
+"121\n"
"help.text"
-msgid "{=SUM((A1:A40>=C1)*(A1:A40<C2)*B1:B40)}"
+msgid "Examples"
+msgstr "Shembuj:"
+
+#: func_days.xhp
+msgctxt ""
+"func_days.xhp\n"
+"par_id3159101\n"
+"123\n"
+"help.text"
+msgid "=DAYS(\"2010-01-01\"; NOW()) returns the number of days from today until January 1, 2010."
msgstr ""
-#: 04060106.xhp
+#: func_days.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151884\n"
-"625\n"
+"func_days.xhp\n"
+"par_id3163720\n"
+"172\n"
"help.text"
-msgid "The formula is based on the fact that the result of a comparison is 1 if the criterion is met and 0 if it is not met. The individual comparison results will be treated as an array and used in matrix multiplication, and at the end the individual values will be totaled to give the result matrix."
+msgid "=DAYS(\"1990-10-10\";\"1980-10-10\") returns 3652 days."
msgstr ""
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3151957\n"
+"func_days360.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>SUMIF function</bookmark_value><bookmark_value>adding;specified numbers</bookmark_value>"
+msgid "DAYS360"
+msgstr "DITËT360"
+
+#: func_days360.xhp
+msgctxt ""
+"func_days360.xhp\n"
+"bm_id3148555\n"
+"help.text"
+msgid "<bookmark_value>DAYS360 function</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3151957\n"
-"436\n"
+"func_days360.xhp\n"
+"hd_id3148555\n"
+"124\n"
"help.text"
-msgid "SUMIF"
-msgstr "SUMIF"
+msgid "<variable id=\"days360\"><link href=\"text/scalc/01/func_days360.xhp\">DAYS360</link></variable>"
+msgstr ""
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3151986\n"
-"437\n"
+"func_days360.xhp\n"
+"par_id3156032\n"
+"125\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_SUMMEWENN\">Adds the cells specified by a given criteria.</ahelp> This function is used to browse a range when you search for a certain value."
+msgid "<ahelp hid=\"HID_FUNC_TAGE360\">Returns the difference between two dates based on the 360 day year used in interest calculations.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152015\n"
-"438\n"
+"func_days360.xhp\n"
+"hd_id3155347\n"
+"126\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152028\n"
-"439\n"
+"func_days360.xhp\n"
+"par_id3155313\n"
+"127\n"
"help.text"
-msgid "SUMIF(Range; Criteria; SumRange)"
-msgstr "Definon intervalin e qelive që pëmban kriteriumin e kërkimit."
+msgid "DAYS360(\"Date1\"; \"Date2\"; Type)"
+msgstr ""
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152043\n"
-"440\n"
+"func_days360.xhp\n"
+"par_id3145263\n"
+"128\n"
"help.text"
-msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+msgid "If <emph>Date2</emph> is earlier than <emph>Date1</emph>, the function will return a negative number."
+msgstr ""
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152062\n"
-"441\n"
+"func_days360.xhp\n"
+"par_id3151064\n"
+"129\n"
"help.text"
-msgid "<emph>Criteria</emph> is the cell in which the search criterion is shown, or the search criterion itself. If the criteria is written into the formula, it has to be surrounded by double quotes."
+msgid "The optional argument <emph>Type</emph> determines the type of difference calculation. If Type = 0 or if the argument is missing, the US method (NASD, National Association of Securities Dealers) is used. If Type <> 0, the European method is used."
msgstr ""
-#: 04060106.xhp
+#: func_days360.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152083\n"
-"442\n"
+"func_days360.xhp\n"
+"hd_id3148641\n"
+"130\n"
"help.text"
-msgid "<emph>SumRange</emph> is the range from which values are summed. If this parameter has not been indicated, the values found in the Range are summed."
+msgid "Examples"
+msgstr "Shembuj:"
+
+#: func_days360.xhp
+msgctxt ""
+"func_days360.xhp\n"
+"par_id3156348\n"
+"132\n"
+"help.text"
+msgid "=DAYS360(\"2000-01-01\";NOW()) returns the number of interest days from January 1, 2000 until today."
msgstr ""
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8347422\n"
+"func_eastersunday.xhp\n"
+"tit\n"
"help.text"
-msgid "SUMIF supports the reference concatenation operator (~) only in the Criteria parameter, and only if the optional SumRange parameter is not given."
+msgid "EASTERSUNDAY"
+msgstr "EASTERSUNDAY"
+
+#: func_eastersunday.xhp
+msgctxt ""
+"func_eastersunday.xhp\n"
+"bm_id3152960\n"
+"help.text"
+msgid "<bookmark_value>EASTERSUNDAY function</bookmark_value>"
+msgstr "Kthen vlerën llogjike SAKTË."
+
+#: func_eastersunday.xhp
+msgctxt ""
+"func_eastersunday.xhp\n"
+"hd_id3152960\n"
+"175\n"
+"help.text"
+msgid "<variable id=\"eastersunday\"><link href=\"text/scalc/01/func_eastersunday.xhp\">EASTERSUNDAY</link></variable>"
msgstr ""
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152110\n"
-"443\n"
+"func_eastersunday.xhp\n"
+"par_id3154570\n"
+"176\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<ahelp hid=\"HID_FUNC_OSTERSONNTAG\">Returns the date of Easter Sunday for the entered year.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152148\n"
-"626\n"
+"func_eastersunday.xhp\n"
+"hd_id9460127\n"
"help.text"
-msgid "To sum up only negative numbers: <item type=\"input\">=SUMIF(A1:A10;\"<0\")</item>"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
+
+#: func_eastersunday.xhp
+msgctxt ""
+"func_eastersunday.xhp\n"
+"par_id2113711\n"
+"help.text"
+msgid "EASTERSUNDAY(Year)"
msgstr ""
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6670125\n"
+"func_eastersunday.xhp\n"
+"par_id3938413\n"
"help.text"
-msgid "<item type=\"input\">=SUMIF(A1:A10;\">0\";B1:10)</item> - sums values from the range B1:B10 only if the corresponding values in the range A1:A10 are >0."
+msgid "<emph>Year</emph> is an integer between 1583 and 9956 or 0 and 99. You can also calculate other holidays by simple addition with this date."
msgstr ""
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6062196\n"
+"func_eastersunday.xhp\n"
+"par_id3156156\n"
+"177\n"
"help.text"
-msgid "See COUNTIF() for some more syntax examples that can be used with SUMIF()."
+msgid "Easter Monday = EASTERSUNDAY(Year) + 1"
msgstr ""
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3152195\n"
+"func_eastersunday.xhp\n"
+"par_id3147521\n"
+"178\n"
"help.text"
-msgid "<bookmark_value>TAN function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "Good Friday = EASTERSUNDAY(Year) - 2"
+msgstr ""
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152195\n"
-"446\n"
+"func_eastersunday.xhp\n"
+"par_id3146072\n"
+"179\n"
"help.text"
-msgid "TAN"
-msgstr "TAN"
+msgid "Pentecost Sunday = EASTERSUNDAY(Year) + 49"
+msgstr ""
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152224\n"
-"447\n"
+"func_eastersunday.xhp\n"
+"par_id3149553\n"
+"180\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TAN\">Returns the tangent of the given angle (in radians).</ahelp>"
+msgid "Pentecost Monday = EASTERSUNDAY(Year) + 50"
msgstr ""
-#: 04060106.xhp
+#: func_eastersunday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152242\n"
-"448\n"
+"func_eastersunday.xhp\n"
+"hd_id3155120\n"
+"181\n"
+"help.text"
+msgid "Examples"
+msgstr "Shembuj:"
+
+#: func_eastersunday.xhp
+msgctxt ""
+"func_eastersunday.xhp\n"
+"par_id3154472\n"
+"182\n"
+"help.text"
+msgid "=EASTERSUNDAY(2000) returns 2000-04-23."
+msgstr ""
+
+#: func_eastersunday.xhp
+msgctxt ""
+"func_eastersunday.xhp\n"
+"par_id3150940\n"
+"184\n"
+"help.text"
+msgid "EASTERSUNDAY(2000)+49 returns the internal serial number 36688. The result is 2000-06-11. Format the serial date number as a date, for example in the format YYYY-MM-DD."
+msgstr ""
+
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"tit\n"
+"help.text"
+msgid "EDATE"
+msgstr "DATA"
+
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"bm_id3151184\n"
+"help.text"
+msgid "<bookmark_value>EDATE function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"hd_id3151184\n"
+"213\n"
+"help.text"
+msgid "<variable id=\"edate\"><link href=\"text/scalc/01/func_edate.xhp\">EDATE</link></variable>"
+msgstr ""
+
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"par_id3150880\n"
+"214\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_EDATE\">The result is a date which is a number of m<emph>onths</emph> away from the <emph>start date</emph>. Only months are considered; days are not used for calculation.</ahelp>"
+msgstr ""
+
+#: func_edate.xhp
+msgctxt ""
+"func_edate.xhp\n"
+"hd_id3154647\n"
+"215\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152255\n"
-"449\n"
+"func_edate.xhp\n"
+"par_id3153212\n"
+"216\n"
"help.text"
-msgid "TAN(Number)"
-msgstr "Numri i faqes"
+msgid "EDATE(StartDate; Months)"
+msgstr ""
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152269\n"
-"450\n"
+"func_edate.xhp\n"
+"par_id3146860\n"
+"217\n"
"help.text"
-msgid "Returns the (trigonometric) tangent of <emph>Number</emph>, the angle in radians."
-msgstr ""
+msgid "<emph>StartDate</emph> is a date."
+msgstr "Data kur pwrfundon periudha e parw"
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5752128\n"
+"func_edate.xhp\n"
+"par_id3152929\n"
+"218\n"
"help.text"
-msgid "To return the tangent of an angle in degrees, use the RADIANS function."
+msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
msgstr ""
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3152287\n"
-"451\n"
+"func_edate.xhp\n"
+"hd_id3151289\n"
+"219\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3152301\n"
-"452\n"
+"func_edate.xhp\n"
+"par_id3155845\n"
+"220\n"
"help.text"
-msgid "<item type=\"input\">=TAN(PI()/4) </item>returns 1, the tangent of PI/4 radians."
+msgid "What date is one month prior to 3.31.2001?"
msgstr ""
-#: 04060106.xhp
+#: func_edate.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1804864\n"
+"func_edate.xhp\n"
+"par_id3155999\n"
+"221\n"
"help.text"
-msgid "<item type=\"input\">=TAN(RADIANS(45))</item> returns 1, the tangent of 45 degrees."
+msgid "<item type=\"input\">=EDATE(3.31.2001;-1)</item> returns 2.28.2001."
msgstr ""
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3165434\n"
+"func_eomonth.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>TANH function</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "EOMONTH"
+msgstr ""
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3165434\n"
-"456\n"
+"func_eomonth.xhp\n"
+"bm_id3150991\n"
"help.text"
-msgid "TANH"
-msgstr "TANH"
+msgid "<bookmark_value>EOMONTH function</bookmark_value>"
+msgstr "Llogarit vlerën e një numri Romak."
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165462\n"
-"457\n"
+"func_eomonth.xhp\n"
+"hd_id3150991\n"
+"231\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TANHYP\">Returns the hyperbolic tangent of a number.</ahelp>"
+msgid "<variable id=\"eomonth\"><link href=\"text/scalc/01/func_eomonth.xhp\">EOMONTH</link></variable>"
msgstr ""
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3165480\n"
-"458\n"
+"func_eomonth.xhp\n"
+"par_id3152766\n"
+"232\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_EOMONTH\">Returns the date of the last day of a month which falls m<emph>onths</emph> away from the s<emph>tart date</emph>.</ahelp>"
+msgstr ""
+
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"hd_id3150597\n"
+"233\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165494\n"
-"459\n"
+"func_eomonth.xhp\n"
+"par_id3150351\n"
+"234\n"
"help.text"
-msgid "TANH(Number)"
-msgstr "Numri i faqes"
+msgid "EOMONTH(StartDate; Months)"
+msgstr ""
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165508\n"
-"460\n"
+"func_eomonth.xhp\n"
+"par_id3146787\n"
+"235\n"
"help.text"
-msgid "Returns the hyperbolic tangent of <emph>Number</emph>."
-msgstr "Kthen cotangentin hiperbolik invers të një numri."
+msgid "<emph>StartDate</emph> is a date (the starting point of the calculation)."
+msgstr ""
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3165527\n"
-"461\n"
+"func_eomonth.xhp\n"
+"par_id3155615\n"
+"236\n"
+"help.text"
+msgid "<emph>Months</emph> is the number of months before (negative) or after (positive) the start date."
+msgstr ""
+
+#: func_eomonth.xhp
+msgctxt ""
+"func_eomonth.xhp\n"
+"hd_id3156335\n"
+"237\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165541\n"
-"462\n"
+"func_eomonth.xhp\n"
+"par_id3154829\n"
+"238\n"
"help.text"
-msgid "<item type=\"input\">=TANH(0)</item> returns 0, the hyperbolic tangent of 0."
+msgid "What is the last day of the month that falls 6 months after September 14 2001?"
msgstr ""
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3165633\n"
+"func_eomonth.xhp\n"
+"par_id3156143\n"
+"239\n"
"help.text"
-msgid "<bookmark_value>AutoFilter function; subtotals</bookmark_value><bookmark_value>sums;of filtered data</bookmark_value><bookmark_value>filtered data; sums</bookmark_value><bookmark_value>SUBTOTAL function</bookmark_value>"
+msgid "<item type=\"input\">=EOMONTH(DATE(2001;9;14);6)</item> returns the serial number 37346. Formatted as a date, this is 2002-03-31."
msgstr ""
-#: 04060106.xhp
+#: func_eomonth.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3165633\n"
-"466\n"
+"func_eomonth.xhp\n"
+"par_id3156144\n"
+"239\n"
"help.text"
-msgid "SUBTOTAL"
-msgstr "SUBTOTAL"
+msgid "<item type=\"input\">=EOMONTH(\"2001-09-14\";6)</item> works as well. If the date is given as string, it has to be in ISO format."
+msgstr ""
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165682\n"
-"467\n"
+"func_hour.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_TEILERGEBNIS\">Calculates subtotals.</ahelp> If a range already contains subtotals, these are not used for further calculations. Use this function with the AutoFilters to take only the filtered records into account."
+msgid "HOUR"
+msgstr "ORA"
+
+#: func_hour.xhp
+msgctxt ""
+"func_hour.xhp\n"
+"bm_id3154725\n"
+"help.text"
+msgid "<bookmark_value>HOUR function</bookmark_value>"
+msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+
+#: func_hour.xhp
+msgctxt ""
+"func_hour.xhp\n"
+"hd_id3154725\n"
+"96\n"
+"help.text"
+msgid "<variable id=\"hour\"><link href=\"text/scalc/01/func_hour.xhp\">HOUR</link></variable>"
msgstr ""
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3165704\n"
-"495\n"
+"func_hour.xhp\n"
+"par_id3149747\n"
+"97\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_STUNDE\">Returns the hour for a given time value.</ahelp> The hour is returned as an integer between 0 and 23."
+msgstr ""
+
+#: func_hour.xhp
+msgctxt ""
+"func_hour.xhp\n"
+"hd_id3149338\n"
+"98\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165717\n"
-"496\n"
+"func_hour.xhp\n"
+"par_id3150637\n"
+"99\n"
"help.text"
-msgid "SUBTOTAL(Function; Range)"
-msgstr "Vetëm brezi i numrave"
+msgid "HOUR(Number)"
+msgstr "Numri i faqes"
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165731\n"
-"497\n"
+"func_hour.xhp\n"
+"par_id3147547\n"
+"100\n"
"help.text"
-msgid "<emph>Function</emph> is a number that stands for one of the following functions:"
+msgid "<emph>Number</emph>, as a time value, is a decimal, for which the hour is to be returned."
msgstr ""
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165782\n"
-"469\n"
+"func_hour.xhp\n"
+"hd_id3153264\n"
+"101\n"
"help.text"
-msgid "Function index"
-msgstr "Index alfabetik"
+msgid "Examples"
+msgstr "Shembuj:"
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165806\n"
-"470\n"
+"func_hour.xhp\n"
+"par_id3159215\n"
+"103\n"
"help.text"
-msgid "Function"
-msgstr "Funksioni"
+msgid "<item type=\"input\">=HOUR(NOW())</item> returns the current hour"
+msgstr ""
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165833\n"
-"471\n"
+"func_hour.xhp\n"
+"par_id3145152\n"
+"104\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "<item type=\"input\">=HOUR(C4)</item> returns 17 if the contents of C4 = <item type=\"input\">17:20:00</item>."
+msgstr ""
-#: 04060106.xhp
+#: func_hour.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165856\n"
-"472\n"
+"func_hour.xhp\n"
+"par_id3154188\n"
+"105\n"
"help.text"
-msgid "AVERAGE"
-msgstr "MESATARE"
+msgid "<link href=\"text/scalc/01/04060102.xhp\" name=\"YEAR\">YEAR</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"NOW\">NOW</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MINUTE\">MINUTE</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"MONTH\">MONTH</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"DAY\">DAY</link>, <link href=\"text/scalc/01/04060102.xhp\" name=\"WEEKDAY\">WEEKDAY</link>."
+msgstr ""
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165883\n"
-"473\n"
+"func_minute.xhp\n"
+"tit\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "MINUTE"
+msgstr "MINUTA"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165906\n"
-"474\n"
+"func_minute.xhp\n"
+"bm_id3149803\n"
"help.text"
-msgid "COUNT"
-msgstr "COUNT"
+msgid "<bookmark_value>MINUTE function</bookmark_value>"
+msgstr "Gabim: Vlera nuk është në dispozicion"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165933\n"
-"475\n"
+"func_minute.xhp\n"
+"hd_id3149803\n"
+"66\n"
"help.text"
-msgid "3"
+msgid "<variable id=\"minute\"><link href=\"text/scalc/01/func_minute.xhp\">MINUTE</link></variable>"
msgstr ""
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165956\n"
-"476\n"
+"func_minute.xhp\n"
+"par_id3148988\n"
+"67\n"
"help.text"
-msgid "COUNTA"
-msgstr "COUNTA"
+msgid "<ahelp hid=\"HID_FUNC_MINUTE\">Calculates the minute for an internal time value.</ahelp> The minute is returned as a number between 0 and 59."
+msgstr ""
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165983\n"
-"477\n"
+"func_minute.xhp\n"
+"hd_id3154343\n"
+"68\n"
"help.text"
-msgid "4"
-msgstr "Yll 24-cepësh"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3166006\n"
-"478\n"
+"func_minute.xhp\n"
+"par_id3148660\n"
+"69\n"
"help.text"
-msgid "MAX"
-msgstr "MAX"
+msgid "MINUTE(Number)"
+msgstr "Numri i faqes"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3166033\n"
-"479\n"
+"func_minute.xhp\n"
+"par_id3154611\n"
+"70\n"
"help.text"
-msgid "5"
-msgstr "25%"
+msgid "<emph>Number</emph>, as a time value, is a decimal number where the number of the minute is to be returned."
+msgstr ""
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3166056\n"
-"480\n"
+"func_minute.xhp\n"
+"hd_id3145374\n"
+"71\n"
"help.text"
-msgid "MIN"
-msgstr "MIN"
+msgid "Examples"
+msgstr "Shembuj:"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143316\n"
-"481\n"
+"func_minute.xhp\n"
+"par_id3148463\n"
+"72\n"
"help.text"
-msgid "6"
-msgstr ""
+msgid "<item type=\"input\">=MINUTE(8.999)</item> returns 58"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143339\n"
-"482\n"
+"func_minute.xhp\n"
+"par_id3149419\n"
+"73\n"
"help.text"
-msgid "PRODUCT"
-msgstr "PRODHIM"
+msgid "<item type=\"input\">=MINUTE(8.9999)</item> returns 59"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060106.xhp
+#: func_minute.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143366\n"
-"483\n"
+"func_minute.xhp\n"
+"par_id3144755\n"
+"74\n"
"help.text"
-msgid "7"
+msgid "<item type=\"input\">=MINUTE(NOW())</item> returns the current minute value."
msgstr ""
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143389\n"
-"484\n"
+"func_month.xhp\n"
+"tit\n"
"help.text"
-msgid "STDEV"
-msgstr "STDEV"
+msgid "MONTH"
+msgstr "Muaj"
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143416\n"
-"485\n"
+"func_month.xhp\n"
+"bm_id3149936\n"
"help.text"
-msgid "8"
-msgstr ""
+msgid "<bookmark_value>MONTH function</bookmark_value>"
+msgstr "Gabim: Vlera nuk është në dispozicion"
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143439\n"
-"486\n"
+"func_month.xhp\n"
+"hd_id3149936\n"
+"76\n"
"help.text"
-msgid "STDEVP"
-msgstr "STDEVP"
+msgid "<variable id=\"month\"><link href=\"text/scalc/01/func_month.xhp\">MONTH</link></variable>"
+msgstr ""
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143466\n"
-"487\n"
+"func_month.xhp\n"
+"par_id3153538\n"
+"77\n"
"help.text"
-msgid "9"
+msgid "<ahelp hid=\"HID_FUNC_MONAT\">Returns the month for the given date value.</ahelp> The month is returned as an integer between 1 and 12."
msgstr ""
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143489\n"
-"488\n"
+"func_month.xhp\n"
+"hd_id3149517\n"
+"78\n"
"help.text"
-msgid "SUM"
-msgstr "SUM"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143516\n"
-"489\n"
+"func_month.xhp\n"
+"par_id3145602\n"
+"79\n"
"help.text"
-msgid "10"
-msgstr "Titullimi 10"
+msgid "MONTH(Number)"
+msgstr "Numri i faqes"
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143539\n"
-"490\n"
+"func_month.xhp\n"
+"par_id3149485\n"
+"80\n"
"help.text"
-msgid "VAR"
-msgstr "VAR"
+msgid "<emph>Number</emph>, as a time value, is a decimal for which the month is to be returned."
+msgstr ""
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143566\n"
-"491\n"
+"func_month.xhp\n"
+"hd_id3153322\n"
+"81\n"
"help.text"
-msgid "11"
-msgstr "1"
+msgid "Examples"
+msgstr "Shembuj:"
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143589\n"
-"492\n"
+"func_month.xhp\n"
+"par_id3149244\n"
+"83\n"
"help.text"
-msgid "VARP"
-msgstr "VARP"
+msgid "=MONTH(NOW()) returns the current month."
+msgstr ""
-#: 04060106.xhp
+#: func_month.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143606\n"
-"498\n"
+"func_month.xhp\n"
+"par_id3154790\n"
+"84\n"
"help.text"
-msgid "<emph>Range</emph> is the range whose cells are included."
+msgid "=MONTH(C4) returns 7 if you enter 2000-07-07 to cell C4 (that date value might get formatted differently after you press Enter)."
msgstr ""
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3143625\n"
-"499\n"
+"func_networkdays.xhp\n"
+"tit\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "NETWORKDAYS"
+msgstr ""
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143638\n"
-"562\n"
+"func_networkdays.xhp\n"
+"bm_id3151254\n"
"help.text"
-msgid "You have a table in the cell range A1:B5 containing cities in column A and accompanying figures in column B. You have used an AutoFilter so that you only see rows containing the city Hamburg. You want to see the sum of the figures that are displayed; that is, just the subtotal for the filtered rows. In this case the correct formula would be:"
+msgid "<bookmark_value>NETWORKDAYS function</bookmark_value>"
+msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+
+#: func_networkdays.xhp
+msgctxt ""
+"func_networkdays.xhp\n"
+"hd_id3151254\n"
+"240\n"
+"help.text"
+msgid "<variable id=\"networkdays\"><link href=\"text/scalc/01/func_networkdays.xhp\">NETWORKDAYS</link></variable>"
msgstr ""
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143658\n"
-"563\n"
+"func_networkdays.xhp\n"
+"par_id3153788\n"
+"241\n"
"help.text"
-msgid "<item type=\"input\">=SUBTOTAL(9;B2:B5)</item>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_NETWORKDAYS\">Returns the number of workdays between a <emph>start date and an end date</emph>. Holidays can be deducted.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3143672\n"
+"func_networkdays.xhp\n"
+"hd_id3148677\n"
+"242\n"
"help.text"
-msgid "<bookmark_value>Euro; converting</bookmark_value><bookmark_value>EUROCONVERT function</bookmark_value>"
-msgstr "Vlera tanishme. Vlera e tanishme e investimit."
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3143672\n"
-"564\n"
+"func_networkdays.xhp\n"
+"par_id3145775\n"
+"243\n"
"help.text"
-msgid "EUROCONVERT"
-msgstr "CONVERT"
+msgid "NETWORKDAYS(StartDate; EndDate; Holidays)"
+msgstr ""
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143708\n"
-"565\n"
+"func_networkdays.xhp\n"
+"par_id3153885\n"
+"244\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_UMRECHNEN\">Converts between old European national currency and to and from Euros.</ahelp>"
+msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
msgstr ""
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143731\n"
-"566\n"
+"func_networkdays.xhp\n"
+"par_id3151110\n"
+"245\n"
"help.text"
-msgid "<emph>Syntax</emph>"
-msgstr "**Gabim Sintaksor**"
+msgid "<emph>EndDate</emph> is the date up until when the calculation is carried out. If the end date is a workday, the day is included in the calculation."
+msgstr ""
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143748\n"
-"567\n"
+"func_networkdays.xhp\n"
+"par_id3154115\n"
+"246\n"
"help.text"
-msgid "EUROCONVERT(Value; \"From_currency\"; \"To_currency\", full_precision, triangulation_precision)"
+msgid "<emph>Holidays</emph> is an optional list of holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
msgstr ""
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143763\n"
-"568\n"
+"func_networkdays.xhp\n"
+"hd_id3146902\n"
+"247\n"
"help.text"
-msgid "<emph>Value</emph> is the amount of the currency to be converted."
+msgid "Example"
+msgstr "Shembull"
+
+#: func_networkdays.xhp
+msgctxt ""
+"func_networkdays.xhp\n"
+"par_id3154661\n"
+"248\n"
+"help.text"
+msgid "How many workdays fall between 2001-12-15 and 2002-01-15? The start date is located in C3 and the end date in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
msgstr ""
-#: 04060106.xhp
+#: func_networkdays.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143782\n"
-"569\n"
+"func_networkdays.xhp\n"
+"par_id3147328\n"
+"249\n"
"help.text"
-msgid "<emph>From_currency</emph> and <emph>To_currency</emph> are the currency units to convert from and to respectively. These must be text, the official abbreviation for the currency (for example, \"EUR\"). The rates (shown per Euro) were set by the European Commission."
+msgid "=NETWORKDAYS(C3;D3;F3:J3) returns 17 workdays."
msgstr ""
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id0119200904301810\n"
+"func_now.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>Full_precision</emph> is optional. If omitted or False, the result is rounded according to the decimals of the To currency. If Full_precision is True, the result is not rounded."
+msgid "NOW"
+msgstr "TANI"
+
+#: func_now.xhp
+msgctxt ""
+"func_now.xhp\n"
+"bm_id3150521\n"
+"help.text"
+msgid "<bookmark_value>NOW function</bookmark_value>"
+msgstr "Gabim: Vlera nuk është në dispozicion"
+
+#: func_now.xhp
+msgctxt ""
+"func_now.xhp\n"
+"hd_id3150521\n"
+"47\n"
+"help.text"
+msgid "<variable id=\"now\"><link href=\"text/scalc/01/func_now.xhp\">NOW</link></variable>"
msgstr ""
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id0119200904301815\n"
+"func_now.xhp\n"
+"par_id3148829\n"
+"48\n"
"help.text"
-msgid "<emph>Triangulation_precision</emph> is optional. If Triangulation_precision is given and >=3, the intermediate result of a triangular conversion (currency1,EUR,currency2) is rounded to that precision. If Triangulation_precision is omitted, the intermediate result is not rounded. Also if To currency is \"EUR\", Triangulation_precision is used as if triangulation was needed and conversion from EUR to EUR was applied."
+msgid "<ahelp hid=\"HID_FUNC_JETZT\">Returns the computer system date and time.</ahelp> The value is updated when you recalculate the document or each time a cell value is modified."
msgstr ""
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143819\n"
-"570\n"
+"func_now.xhp\n"
+"hd_id3146988\n"
+"49\n"
"help.text"
-msgid "<emph>Examples</emph>"
-msgstr "Emri i grupit"
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143837\n"
-"571\n"
+"func_now.xhp\n"
+"par_id3154897\n"
+"50\n"
"help.text"
-msgid "<item type=\"input\">=EUROCONVERT(100;\"ATS\";\"EUR\")</item> converts 100 Austrian Schillings into Euros."
+msgid "NOW()"
+msgstr "TANI"
+
+#: func_now.xhp
+msgctxt ""
+"func_now.xhp\n"
+"par_id4598529\n"
+"help.text"
+msgid "NOW is a function without arguments."
msgstr ""
-#: 04060106.xhp
+#: func_now.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3143853\n"
-"572\n"
+"func_now.xhp\n"
+"hd_id3154205\n"
+"51\n"
"help.text"
-msgid "<item type=\"input\">=EUROCONVERT(100;\"EUR\";\"DEM\")</item> converts 100 Euros into German Marks."
+msgid "Example"
+msgstr "Shembull"
+
+#: func_now.xhp
+msgctxt ""
+"func_now.xhp\n"
+"par_id3150774\n"
+"52\n"
+"help.text"
+msgid "<item type=\"input\">=NOW()-A1</item> returns the difference between the date in A1 and now. Format the result as a number."
msgstr ""
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id0908200902090676\n"
+"func_second.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>CONVERT function</bookmark_value>"
-msgstr "Vlera e kodit për karakterin."
+msgid "SECOND"
+msgstr "SEKONDA"
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id0908200902074836\n"
+"func_second.xhp\n"
+"bm_id3159390\n"
"help.text"
-msgid "CONVERT"
-msgstr "CONVERT"
+msgid "<bookmark_value>SECOND function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id0908200902131122\n"
+"func_second.xhp\n"
+"hd_id3159390\n"
+"86\n"
"help.text"
-msgid "<ahelp hid=\".\">Converts a value from one unit of measurement to another unit of measurement. The conversion factors are given in a list in the configuration.</ahelp>"
+msgid "<variable id=\"second\"><link href=\"text/scalc/01/func_second.xhp\">SECOND</link></variable>"
msgstr ""
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id0908200902475420\n"
+"func_second.xhp\n"
+"par_id3148974\n"
+"87\n"
"help.text"
-msgid "At one time the list of conversion factors included the legacy European currencies and the Euro (see examples below). We suggest using the new function EUROCONVERT for converting these currencies."
+msgid "<ahelp hid=\"HID_FUNC_SEKUNDE\">Returns the second for the given time value.</ahelp> The second is given as an integer between 0 and 59."
msgstr ""
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id0908200902131071\n"
+"func_second.xhp\n"
+"hd_id3154362\n"
+"88\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id0908200902131191\n"
+"func_second.xhp\n"
+"par_id3148407\n"
+"89\n"
"help.text"
-msgid "CONVERT(value;\"text\";\"text\")"
+msgid "SECOND(Number)"
+msgstr "Numri i dytw"
+
+#: func_second.xhp
+msgctxt ""
+"func_second.xhp\n"
+"par_id3155904\n"
+"90\n"
+"help.text"
+msgid "<emph>Number</emph>, as a time value, is a decimal, for which the second is to be returned."
msgstr ""
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id0908200902131152\n"
+"func_second.xhp\n"
+"hd_id3149992\n"
+"91\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Examples"
+msgstr "Shembuj:"
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id090820090213112\n"
+"func_second.xhp\n"
+"par_id3153350\n"
+"93\n"
"help.text"
-msgid "<item type=\"input\">=CONVERT(100;\"ATS\";\"EUR\")</item> returns the Euro value of 100 Austrian Schillings."
+msgid "<item type=\"input\">=SECOND(NOW())</item> returns the current second"
msgstr ""
-#: 04060106.xhp
+#: func_second.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id0908200902475431\n"
+"func_second.xhp\n"
+"par_id3150831\n"
+"94\n"
"help.text"
-msgid "=CONVERT(100;\"EUR\";\"DEM\") converts 100 Euros into German Marks."
+msgid "<item type=\"input\">=SECOND(C4)</item> returns 17 if contents of C4 = <item type=\"input\">12:20:17</item>."
msgstr ""
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3157177\n"
+"func_time.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>ODD function</bookmark_value><bookmark_value>rounding;up/down to nearest odd integer</bookmark_value>"
-msgstr ""
+msgid "TIME"
+msgstr "Koha"
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157177\n"
-"502\n"
+"func_time.xhp\n"
+"bm_id3154073\n"
"help.text"
-msgid "ODD"
-msgstr "ODD"
+msgid "<bookmark_value>TIME function</bookmark_value>"
+msgstr "Veprimi përfundoi [Time]: [1]. Vlera kthyese [2]."
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157205\n"
-"503\n"
+"func_time.xhp\n"
+"hd_id3154073\n"
+"149\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_UNGERADE\">Rounds a positive number up to the nearest odd integer and a negative number down to the nearest odd integer.</ahelp>"
+msgid "<variable id=\"time\"><link href=\"text/scalc/01/func_time.xhp\">TIME</link></variable>"
msgstr ""
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157223\n"
-"504\n"
+"func_time.xhp\n"
+"par_id3145762\n"
+"150\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_ZEIT\">TIME returns the current time value from values for hours, minutes and seconds.</ahelp> This function can be used to convert a time based on these three elements to a decimal time value."
+msgstr ""
+
+#: func_time.xhp
+msgctxt ""
+"func_time.xhp\n"
+"hd_id3155550\n"
+"151\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157237\n"
-"505\n"
+"func_time.xhp\n"
+"par_id3154584\n"
+"152\n"
"help.text"
-msgid "ODD(Number)"
-msgstr "Numri i faqes"
+msgid "TIME(Hour; Minute; Second)"
+msgstr ""
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157250\n"
-"506\n"
+"func_time.xhp\n"
+"par_id3152904\n"
+"153\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded to the next odd integer up, away from zero."
+msgid "Use an integer to set the <emph>Hour</emph>."
msgstr ""
-#: 04060106.xhp
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157270\n"
-"507\n"
+"func_time.xhp\n"
+"par_id3151346\n"
+"154\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Use an integer to set the <emph>Minute</emph>."
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157283\n"
-"508\n"
+"func_time.xhp\n"
+"par_id3151366\n"
+"155\n"
"help.text"
-msgid "<item type=\"input\">=ODD(1.2)</item> returns 3."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Use an integer to set the <emph>Second</emph>."
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id8746910\n"
+"func_time.xhp\n"
+"hd_id3145577\n"
+"156\n"
"help.text"
-msgid "<item type=\"input\">=ODD(1)</item> returns 1."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Examples"
+msgstr "Shembuj:"
-#: 04060106.xhp
-#, fuzzy
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9636524\n"
+"func_time.xhp\n"
+"par_id3156076\n"
+"157\n"
"help.text"
-msgid "<item type=\"input\">=ODD(0)</item> returns 1."
+msgid "<item type=\"input\">=TIME(0;0;0)</item> returns 00:00:00"
msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060106.xhp
-#, fuzzy
+#: func_time.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5675527\n"
+"func_time.xhp\n"
+"par_id3156090\n"
+"158\n"
"help.text"
-msgid "<item type=\"input\">=ODD(-3.1)</item> returns -5."
+msgid "<item type=\"input\">=TIME(4;20;4)</item> returns 04:20:04"
msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3157404\n"
+"func_timevalue.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>FLOOR function</bookmark_value><bookmark_value>rounding;down to nearest multiple of significance</bookmark_value>"
-msgstr ""
+msgid "TIMEVALUE"
+msgstr "TIMEVALUE"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157404\n"
-"512\n"
+"func_timevalue.xhp\n"
+"bm_id3146755\n"
"help.text"
-msgid "FLOOR"
-msgstr "FLOOR"
+msgid "<bookmark_value>TIMEVALUE function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157432\n"
-"513\n"
+"func_timevalue.xhp\n"
+"hd_id3146755\n"
+"160\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_UNTERGRENZE\">Rounds a number down to the nearest multiple of Significance.</ahelp>"
+msgid "<variable id=\"timevalue\"><link href=\"text/scalc/01/func_timevalue.xhp\">TIMEVALUE</link></variable>"
msgstr ""
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3157451\n"
-"514\n"
+"func_timevalue.xhp\n"
+"par_id3148502\n"
+"161\n"
"help.text"
-msgid "Syntax"
-msgstr "**Gabim Sintaksor**"
+msgid "<ahelp hid=\"HID_FUNC_ZEITWERT\">TIMEVALUE returns the internal time number from a text enclosed by quotes and which may show a possible time entry format.</ahelp>"
+msgstr ""
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157464\n"
-"515\n"
+"func_timevalue.xhp\n"
+"par_id3150794\n"
+"162\n"
"help.text"
-msgid "FLOOR(Number; Significance; Mode)"
+msgid "The internal number indicated as a decimal is the result of the date system used under $[officename] to calculate date entries."
msgstr ""
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157478\n"
-"516\n"
+"func_timevalue.xhp\n"
+"par_id011920090347118\n"
"help.text"
-msgid "<emph>Number</emph> is the number that is to be rounded down."
-msgstr "Numri i vendeve teposhtë deri tek të cili një numër do të rrumbulaksohet."
+msgid "If the text string also includes a year, month, or day, TIMEVALUE only returns the fractional part of the conversion."
+msgstr ""
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157497\n"
-"517\n"
+"func_timevalue.xhp\n"
+"hd_id3150810\n"
+"163\n"
"help.text"
-msgid "<emph>Significance</emph> is the value to whose multiple the number is to be rounded down."
-msgstr ""
+msgid "Syntax"
+msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3157517\n"
-"561\n"
+"func_timevalue.xhp\n"
+"par_id3150823\n"
+"164\n"
"help.text"
-msgid "<emph>Mode</emph> is an optional value. If the Mode value is given and not equal to zero, and if Number and Significance are negative, then rounding is done based on the absolute value of the number. This parameter is ignored when exporting to MS Excel as Excel does not know any third parameter."
-msgstr ""
+msgid "TIMEVALUE(\"Text\")"
+msgstr "Vizato tekstin"
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163894\n"
-"630\n"
+"func_timevalue.xhp\n"
+"par_id3152556\n"
+"165\n"
"help.text"
-msgid "If both parameters Number and Significance are negative, and if the Mode value is equal to zero or is not specified, then the results in $[officename] Calc and Excel will differ after exporting. If you export the spreadsheet to Excel, use Mode=1 to see the same results in Excel as in Calc."
+msgid "<emph>Text</emph> is a valid time expression and must be entered in quotation marks."
msgstr ""
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3163932\n"
-"518\n"
+"func_timevalue.xhp\n"
+"hd_id3146815\n"
+"166\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Examples"
+msgstr "Shembuj:"
-#: 04060106.xhp
-#, fuzzy
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163945\n"
-"519\n"
+"func_timevalue.xhp\n"
+"par_id3146829\n"
+"167\n"
"help.text"
-msgid "<item type=\"input\">=FLOOR( -11;-2)</item> returns -12"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<item type=\"input\">=TIMEVALUE(\"4PM\")</item> returns 0.67. When formatting in time format HH:MM:SS, you then get 16:00:00."
+msgstr ""
-#: 04060106.xhp
+#: func_timevalue.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163966\n"
-"520\n"
+"func_timevalue.xhp\n"
+"par_id3153632\n"
+"168\n"
"help.text"
-msgid "<item type=\"input\">=FLOOR( -11;-2;0)</item> returns -12"
+msgid "<item type=\"input\">=TIMEVALUE(\"24:00\")</item> returns 1. If you use the HH:MM:SS time format, the value is 00:00:00."
msgstr ""
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3163988\n"
-"521\n"
+"func_today.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=FLOOR( -11;-2;1)</item> returns -10"
-msgstr ""
+msgid "TODAY"
+msgstr "SOT"
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164086\n"
+"func_today.xhp\n"
+"bm_id3145659\n"
"help.text"
-msgid "<bookmark_value>SIGN function</bookmark_value><bookmark_value>algebraic signs</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<bookmark_value>TODAY function</bookmark_value>"
+msgstr "Vlera e kodit për karakterin."
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164086\n"
-"523\n"
+"func_today.xhp\n"
+"hd_id3145659\n"
+"29\n"
"help.text"
-msgid "SIGN"
-msgstr "SHENJA"
+msgid "<variable id=\"today\"><link href=\"text/scalc/01/func_today.xhp\">TODAY</link></variable>"
+msgstr ""
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164115\n"
-"524\n"
+"func_today.xhp\n"
+"par_id3153759\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_VORZEICHEN\">Returns the sign of a number. Returns 1 if the number is positive, -1 if negative and 0 if zero.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_HEUTE\">Returns the current computer system date.</ahelp> The value is updated when you reopen the document or modify the values of the document."
msgstr ""
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164136\n"
-"525\n"
+"func_today.xhp\n"
+"hd_id3154051\n"
+"31\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164150\n"
-"526\n"
+"func_today.xhp\n"
+"par_id3153154\n"
+"32\n"
"help.text"
-msgid "SIGN(Number)"
-msgstr "Kthen shenjën algjebrike të një numri."
+msgid "TODAY()"
+msgstr "Sot"
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164164\n"
-"527\n"
+"func_today.xhp\n"
+"par_id3154741\n"
+"33\n"
"help.text"
-msgid "<emph>Number</emph> is the number whose sign is to be determined."
-msgstr "Numri për të cilin shenja algjebrike do të caktohet."
+msgid "TODAY is a function without arguments."
+msgstr ""
-#: 04060106.xhp
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164183\n"
-"528\n"
+"func_today.xhp\n"
+"hd_id3153627\n"
+"34\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060106.xhp
-#, fuzzy
+#: func_today.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164197\n"
-"529\n"
+"func_today.xhp\n"
+"par_id3156106\n"
+"35\n"
"help.text"
-msgid "<item type=\"input\">=SIGN(3.4)</item> returns 1."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<item type=\"input\">TODAY()</item> returns the current computer system date."
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164212\n"
-"530\n"
+"func_weekday.xhp\n"
+"tit\n"
"help.text"
-msgid "<item type=\"input\">=SIGN(-4.5)</item> returns -1."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "WEEKDAY"
+msgstr "WEEKDAY"
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164252\n"
+"func_weekday.xhp\n"
+"bm_id3154925\n"
"help.text"
-msgid "<bookmark_value>MROUND function</bookmark_value><bookmark_value>nearest multiple</bookmark_value>"
+msgid "<bookmark_value>WEEKDAY function</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060106.xhp
-#, fuzzy
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164252\n"
-"658\n"
+"func_weekday.xhp\n"
+"hd_id3154925\n"
+"136\n"
"help.text"
-msgid "MROUND"
-msgstr "ROUND"
+msgid "<variable id=\"weekday\"><link href=\"text/scalc/01/func_weekday.xhp\">WEEKDAY</link></variable>"
+msgstr ""
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164288\n"
-"659\n"
+"func_weekday.xhp\n"
+"par_id3154228\n"
+"137\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_MROUND\">Returns a number rounded to the nearest multiple of another number.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_WOCHENTAG\">Returns the day of the week for the given date value.</ahelp> The day is returned as an integer between 1 (Sunday) and 7 (Saturday) if no type or type=1 is specified. If type=2, numbering begins at Monday=1; and if type=3 numbering begins at Monday=0."
msgstr ""
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164306\n"
-"660\n"
+"func_weekday.xhp\n"
+"hd_id3147217\n"
+"138\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164320\n"
-"661\n"
+"func_weekday.xhp\n"
+"par_id3149033\n"
+"139\n"
"help.text"
-msgid "MROUND(Number; Multiple)"
-msgstr "Përpjestuesi më i vogël"
+msgid "WEEKDAY(Number; Type)"
+msgstr "Zgjedh tipin e dokumentit"
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3486434\n"
+"func_weekday.xhp\n"
+"par_id3149046\n"
+"140\n"
"help.text"
-msgid "Returns <emph>Number</emph> rounded to the nearest multiple of <emph>Multiple</emph>."
+msgid "<emph>Number</emph>, as a date value, is a decimal for which the weekday is to be returned."
msgstr ""
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3068636\n"
+"func_weekday.xhp\n"
+"par_id3154394\n"
+"141\n"
"help.text"
-msgid "An alternative implementation would be <item type=\"literal\">Multiple * ROUND(Number/Multiple)</item>."
+msgid "<emph>Type</emph> determines the type of calculation. For Type=1, the weekdays are counted starting from Sunday (this is the default even when the Type parameter is missing). For Type=2, the weekdays are counted starting from Monday=1. For Type=3, the weekdays are counted starting from Monday=0."
msgstr ""
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164333\n"
-"662\n"
+"func_weekday.xhp\n"
+"par_id3156188\n"
+"142\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "These values apply only to the standard date format that you select under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph>."
+msgstr ""
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164347\n"
-"663\n"
+"func_weekday.xhp\n"
+"hd_id3153836\n"
+"143\n"
"help.text"
-msgid "<item type=\"input\">=MROUND(15.5;3)</item> returns 15, as 15.5 is closer to 15 (= 3*5) than to 18 (= 3*6)."
+msgid "Examples"
+msgstr "Shembuj:"
+
+#: func_weekday.xhp
+msgctxt ""
+"func_weekday.xhp\n"
+"par_id3150317\n"
+"144\n"
+"help.text"
+msgid "=WEEKDAY(\"2000-06-14\") returns 4 (the Type parameter is missing, therefore the standard count is used. The standard count starts with Sunday as day number 1. June 14, 2000 was a Wednesday and therefore day number 4)."
msgstr ""
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_idN14DD6\n"
+"func_weekday.xhp\n"
+"par_id3153174\n"
+"145\n"
"help.text"
-msgid "<item type=\"input\">=MROUND(1.4;0.5)</item> returns 1.5 (= 0.5*3)."
+msgid "=WEEKDAY(\"1996-07-24\";2) returns 3 (the Type parameter is 2, therefore Monday is day number 1. July 24, 1996 was a Wednesday and therefore day number 3)."
msgstr ""
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164375\n"
+"func_weekday.xhp\n"
+"par_id3153525\n"
+"146\n"
"help.text"
-msgid "<bookmark_value>SQRT function</bookmark_value><bookmark_value>square roots;positive numbers</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "=WEEKDAY(\"1996-07-24\";1) returns 4 (the Type parameter is 1, therefore Sunday is day number 1. July 24, 1996 was a Wednesday and therefore day number 4)."
+msgstr ""
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164375\n"
-"532\n"
+"func_weekday.xhp\n"
+"par_id3150575\n"
+"147\n"
"help.text"
-msgid "SQRT"
-msgstr "SQRT"
+msgid "=WEEKDAY(NOW()) returns the number of the current day."
+msgstr ""
-#: 04060106.xhp
+#: func_weekday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164404\n"
-"533\n"
+"func_weekday.xhp\n"
+"par_id3150588\n"
+"171\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_WURZEL\">Returns the positive square root of a number.</ahelp>"
+msgid "To obtain a function indicating whether a day in A1 is a business day, use the IF and WEEKDAY functions as follows: <br/>IF(WEEKDAY(A1;2)<6;\"Business day\";\"Weekend\")"
msgstr ""
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164424\n"
-"534\n"
+"func_weeknum.xhp\n"
+"tit\n"
+"help.text"
+msgid "WEEKNUM"
+msgstr "WEEKNUM"
+
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"bm_id3159161\n"
+"help.text"
+msgid "<bookmark_value>WEEKNUM function</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
+
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"hd_id3159161\n"
+"54\n"
+"help.text"
+msgid "<variable id=\"weeknum\"><link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link></variable>"
+msgstr ""
+
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id3149770\n"
+"55\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FUNC_KALENDERWOCHE\">WEEKNUM calculates the week number of the year for the internal date value.</ahelp>"
+msgstr ""
+
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_idN105E4\n"
+"help.text"
+msgid "The International Standard ISO 8601 has decreed that Monday shall be the first day of the week. A week that lies partly in one year and partly in another is assigned a number in the year in which most of its days lie. That means that week number 1 of any year is the week that contains the January 4th."
+msgstr ""
+
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"hd_id3153055\n"
+"56\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164437\n"
-"535\n"
+"func_weeknum.xhp\n"
+"par_id3147236\n"
+"57\n"
"help.text"
-msgid "SQRT(Number)"
-msgstr "Numri i faqes"
+msgid "WEEKNUM(Number; Mode)"
+msgstr "Modi i shikimit paraprak"
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164451\n"
-"536\n"
+"func_weeknum.xhp\n"
+"par_id3147511\n"
+"58\n"
"help.text"
-msgid "Returns the positive square root of <emph>Number</emph>."
+msgid "<emph>Number</emph> is the internal date number."
+msgstr "Siguron një numër të mbrendshëm për datën e dhënë."
+
+#: func_weeknum.xhp
+msgctxt ""
+"func_weeknum.xhp\n"
+"par_id3154269\n"
+"59\n"
+"help.text"
+msgid "<emph>Mode</emph> sets the start of the week and the calculation type."
msgstr ""
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6870021\n"
+"func_weeknum.xhp\n"
+"par_id3148930\n"
+"60\n"
"help.text"
-msgid "Number must be positive."
-msgstr "Emri duhet tw shkruhet gjithsesi."
+msgid "1 = Sunday"
+msgstr ""
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164471\n"
-"537\n"
+"func_weeknum.xhp\n"
+"par_id3154280\n"
+"61\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "2 = Monday"
+msgstr ""
-#: 04060106.xhp
-#, fuzzy
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164484\n"
-"538\n"
+"func_weeknum.xhp\n"
+"hd_id3146948\n"
+"62\n"
"help.text"
-msgid "<item type=\"input\">=SQRT(16)</item> returns 4."
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "Examples"
+msgstr "Shembuj:"
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3591723\n"
+"func_weeknum.xhp\n"
+"par_id3150704\n"
+"65\n"
"help.text"
-msgid "<item type=\"input\">=SQRT(-16)</item> returns an <item type=\"literal\">invalid argument</item> error."
+msgid "=WEEKNUM(\"1995-01-01\";1) returns 1"
msgstr ""
-#: 04060106.xhp
+#: func_weeknum.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164560\n"
+"func_weeknum.xhp\n"
+"par_id3149792\n"
+"64\n"
"help.text"
-msgid "<bookmark_value>SQRTPI function</bookmark_value><bookmark_value>square roots;products of Pi</bookmark_value>"
+msgid "=WEEKNUM(\"1995-01-01\";2) returns 52. If the week starts on Monday, Sunday belongs to the last week of the previous year."
+msgstr ""
+
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"tit\n"
+"help.text"
+msgid "WEEKNUM_ADD"
+msgstr "Shto elementin"
+
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"bm_id3166443\n"
+"help.text"
+msgid "<bookmark_value>WEEKNUM_ADD function</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164560\n"
-"665\n"
+"func_weeknumadd.xhp\n"
+"hd_id3166443\n"
+"222\n"
"help.text"
-msgid "SQRTPI"
+msgid "<variable id=\"weeknumadd\"><link href=\"text/scalc/01/func_weeknumadd.xhp\">WEEKNUM_ADD</link></variable>"
msgstr ""
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164596\n"
-"666\n"
+"func_weeknumadd.xhp\n"
+"par_id3152945\n"
+"223\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_SQRTPI\">Returns the square root of (PI times a number).</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_WEEKNUM\">The result indicates the number of the calendar week for a date.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164614\n"
-"667\n"
+"func_weeknumadd.xhp\n"
+"par_idN105DD\n"
+"help.text"
+msgid "The WEEKNUM_ADD function is designed to calculate week numbers exactly as Microsoft Excel does. Use the <link href=\"text/scalc/01/func_weeknum.xhp\">WEEKNUM</link> function, or format your date cells using the WW formatting code, when you need ISO 8601 week numbers."
+msgstr ""
+
+#: func_weeknumadd.xhp
+msgctxt ""
+"func_weeknumadd.xhp\n"
+"hd_id3153745\n"
+"224\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164627\n"
-"668\n"
+"func_weeknumadd.xhp\n"
+"par_id3153685\n"
+"225\n"
"help.text"
-msgid "SQRTPI(Number)"
-msgstr "Numri i faqes"
+msgid "WEEKNUM_ADD(Date; ReturnType)"
+msgstr ""
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id1501510\n"
+"func_weeknumadd.xhp\n"
+"par_id3159277\n"
+"226\n"
"help.text"
-msgid "Returns the positive square root of (PI multiplied by <emph>Number</emph>)."
-msgstr "E kthen rrwnjwn katrore tw numrit i cili wshtw shumwzuar nga pi"
+msgid "<emph>Date</emph> is the date within the calendar week."
+msgstr ""
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9929197\n"
+"func_weeknumadd.xhp\n"
+"par_id3154098\n"
+"227\n"
"help.text"
-msgid "This is equivalent to <item type=\"literal\">SQRT(PI()*Number)</item>."
+msgid "<emph>ReturnType</emph> is 1 for week beginning on a Sunday, 2 for week beginning on a Monday."
msgstr ""
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164641\n"
-"669\n"
+"func_weeknumadd.xhp\n"
+"hd_id3152886\n"
+"228\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164654\n"
-"670\n"
+"func_weeknumadd.xhp\n"
+"par_id3149973\n"
+"229\n"
"help.text"
-msgid "<item type=\"input\">=SQRTPI(2)</item> returns the squareroot of (2PI), approximately 2.506628."
+msgid "In which week number does 12.24.2001 fall?"
msgstr ""
-#: 04060106.xhp
+#: func_weeknumadd.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164669\n"
+"func_weeknumadd.xhp\n"
+"par_id3149914\n"
+"230\n"
"help.text"
-msgid "<bookmark_value>random numbers; between limits</bookmark_value><bookmark_value>RANDBETWEEN function</bookmark_value>"
+msgid "<item type=\"input\">=WEEKNUM_ADD(24.12.2001;1)</item> returns 52."
msgstr ""
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164669\n"
-"671\n"
+"func_workday.xhp\n"
+"tit\n"
"help.text"
-msgid "RANDBETWEEN"
+msgid "WORKDAY"
msgstr ""
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164711\n"
-"672\n"
+"func_workday.xhp\n"
+"bm_id3149012\n"
"help.text"
-msgid "<ahelp hid=\"HID_AAI_FUNC_RANDBETWEEN\">Returns an integer random number in a specified range.</ahelp>"
+msgid "<bookmark_value>WORKDAY function</bookmark_value>"
+msgstr "Vlerë ose e tip i papranueshëm i të dhënave"
+
+#: func_workday.xhp
+msgctxt ""
+"func_workday.xhp\n"
+"hd_id3149012\n"
+"186\n"
+"help.text"
+msgid "<variable id=\"workday\"><link href=\"text/scalc/01/func_workday.xhp\">WORKDAY</link></variable>"
msgstr ""
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164745\n"
-"673\n"
+"func_workday.xhp\n"
+"par_id3149893\n"
+"187\n"
+"help.text"
+msgid "<ahelp hid=\"HID_AAI_FUNC_WORKDAY\"> The result is a date number that can be formatted as a date. You then see the date of a day that is a certain number of <emph>workdays</emph> away from the <emph>start date</emph>.</ahelp>"
+msgstr ""
+
+#: func_workday.xhp
+msgctxt ""
+"func_workday.xhp\n"
+"hd_id3146944\n"
+"188\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164758\n"
-"674\n"
+"func_workday.xhp\n"
+"par_id3154844\n"
+"189\n"
"help.text"
-msgid "RANDBETWEEN(Bottom; Top)"
-msgstr "Nga fundi lartë"
+msgid "WORKDAY(StartDate; Days; Holidays)"
+msgstr ""
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id7112338\n"
+"func_workday.xhp\n"
+"par_id3147469\n"
+"190\n"
"help.text"
-msgid "Returns an integer random number between integers <emph>Bottom</emph> and <emph>Top</emph> (both inclusive)."
+msgid "<emph>StartDate</emph> is the date from when the calculation is carried out. If the start date is a workday, the day is included in the calculation."
msgstr ""
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2855616\n"
+"func_workday.xhp\n"
+"par_id3153038\n"
+"191\n"
"help.text"
-msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
+msgid "<emph>Days</emph> is the number of workdays. Positive value for a result after the start date, negative value for a result before the start date."
msgstr ""
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2091433\n"
+"func_workday.xhp\n"
+"par_id3150693\n"
+"192\n"
"help.text"
-msgid "To generate random numbers which never recalculate, copy cells containing this function, and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
+msgid "<emph>Holidays</emph> is a list of optional holidays. These are non-working days. Enter a cell range in which the holidays are listed individually."
msgstr ""
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164772\n"
-"675\n"
+"func_workday.xhp\n"
+"hd_id3150141\n"
+"193\n"
"help.text"
msgid "Example"
msgstr "Shembull"
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164785\n"
-"676\n"
+"func_workday.xhp\n"
+"par_id3152782\n"
+"194\n"
"help.text"
-msgid "<item type=\"input\">=RANDBETWEEN(20;30)</item> returns an integer of between 20 and 30."
+msgid "What date came 17 workdays after 1 December 2001? Enter the start date \"2001-12-01\" in C3 and the number of workdays in D3. Cells F3 to J3 contain the following Christmas and New Year holidays: \"2001-12-24\", \"2001-12-25\", \"2001-12-26\", \"2001-12-31\", \"2002-01-01\"."
msgstr ""
-#: 04060106.xhp
+#: func_workday.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164800\n"
+"func_workday.xhp\n"
+"par_id3146142\n"
+"195\n"
"help.text"
-msgid "<bookmark_value>RAND function</bookmark_value><bookmark_value>random numbers;between 0 and 1</bookmark_value>"
+msgid "=WORKDAY(C3;D3;F3:J3) returns 2001-12-28. Format the serial date number as a date, for example in the format YYYY-MM-DD."
+msgstr ""
+
+#: func_year.xhp
+msgctxt ""
+"func_year.xhp\n"
+"tit\n"
+"help.text"
+msgid "YEAR"
+msgstr "VITI"
+
+#: func_year.xhp
+msgctxt ""
+"func_year.xhp\n"
+"bm_id3153982\n"
+"help.text"
+msgid "<bookmark_value>YEAR function</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164800\n"
-"542\n"
+"func_year.xhp\n"
+"hd_id3153982\n"
+"37\n"
"help.text"
-msgid "RAND"
-msgstr "RAND"
+msgid "<variable id=\"year\"><link href=\"text/scalc/01/func_year.xhp\">YEAR</link></variable>"
+msgstr ""
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164829\n"
-"543\n"
+"func_year.xhp\n"
+"par_id3147496\n"
+"38\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZUFALLSZAHL\">Returns a random number between 0 and 1.</ahelp>"
+msgid "<ahelp hid=\"HID_FUNC_JAHR\">Returns the year as a number according to the internal calculation rules.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164870\n"
-"545\n"
+"func_year.xhp\n"
+"hd_id3146090\n"
+"39\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164884\n"
-"546\n"
+"func_year.xhp\n"
+"par_id3154304\n"
+"40\n"
"help.text"
-msgid "RAND()"
-msgstr "RAND"
+msgid "YEAR(Number)"
+msgstr "Numri i faqes"
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5092318\n"
+"func_year.xhp\n"
+"par_id3156013\n"
+"41\n"
"help.text"
-msgid "This function produces a new random number each time Calc recalculates. To force Calc to recalculate manually press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command </caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F9."
+msgid "<emph>Number</emph> shows the internal date value for which the year is to be returned."
msgstr ""
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9312417\n"
+"func_year.xhp\n"
+"hd_id3152797\n"
+"42\n"
"help.text"
-msgid "To generate random numbers which never recalculate, copy cells each containing =RAND(), and use <item type=\"menuitem\">Edit - Paste Special</item> (with <item type=\"menuitem\">Paste All</item> and <item type=\"menuitem\">Formulas</item> not marked and <item type=\"menuitem\">Numbers</item> marked)."
-msgstr ""
+msgid "Examples"
+msgstr "Shembuj:"
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id9089022\n"
+"func_year.xhp\n"
+"par_id3145668\n"
+"43\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "<item type=\"input\">=YEAR(1)</item> returns 1899"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 04060106.xhp
+#: func_year.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id9569078\n"
+"func_year.xhp\n"
+"par_id3151168\n"
+"44\n"
"help.text"
-msgid "<item type=\"input\">=RAND()</item> returns a random number between 0 and 1."
+msgid "<item type=\"input\">=YEAR(2)</item> returns 1900"
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: func_year.xhp
+msgctxt ""
+"func_year.xhp\n"
+"par_id3150115\n"
+"45\n"
+"help.text"
+msgid "<item type=\"input\">=YEAR(33333.33)</item> returns 1991"
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: func_yearfrac.xhp
+msgctxt ""
+"func_yearfrac.xhp\n"
+"tit\n"
+"help.text"
+msgid "YEARFRAC"
msgstr ""
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"bm_id3164897\n"
+"func_yearfrac.xhp\n"
+"bm_id3148735\n"
"help.text"
-msgid "<bookmark_value>COUNTIF function</bookmark_value><bookmark_value>counting;specified cells</bookmark_value>"
+msgid "<bookmark_value>YEARFRAC function</bookmark_value>"
msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164897\n"
-"547\n"
+"func_yearfrac.xhp\n"
+"hd_id3148735\n"
+"196\n"
"help.text"
-msgid "COUNTIF"
-msgstr "COUNTIF"
+msgid "<variable id=\"yearfrac\"><link href=\"text/scalc/01/func_yearfrac.xhp\">YEARFRAC</link></variable>"
+msgstr ""
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164926\n"
-"548\n"
+"func_yearfrac.xhp\n"
+"par_id3150899\n"
+"197\n"
"help.text"
-msgid "<ahelp hid=\"HID_FUNC_ZAEHLENWENN\">Returns the number of cells that meet with certain criteria within a cell range.</ahelp>"
+msgid "<ahelp hid=\"HID_AAI_FUNC_YEARFRAC\"> The result is a number between 0 and 1, representing the fraction of a year between <emph>StartDate</emph> and <emph>EndDate</emph>.</ahelp>"
msgstr ""
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3164953\n"
-"549\n"
+"func_yearfrac.xhp\n"
+"hd_id3155259\n"
+"198\n"
"help.text"
msgid "Syntax"
msgstr "**Gabim Sintaksor**"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164967\n"
-"550\n"
+"func_yearfrac.xhp\n"
+"par_id3155823\n"
+"199\n"
"help.text"
-msgid "COUNTIF(Range; Criteria)"
-msgstr "~Ruaj kriteret e filtrimit"
+msgid "YEARFRAC(StartDate; EndDate; Basis)"
+msgstr ""
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3164980\n"
-"551\n"
+"func_yearfrac.xhp\n"
+"par_id3145144\n"
+"200\n"
"help.text"
-msgid "<emph>Range</emph> is the range to which the criteria are to be applied."
-msgstr "Intervali i qelive në të cilin do të aplikohet kriteriumi."
+msgid "<emph>StartDate</emph> and <emph>EndDate</emph> are two date values."
+msgstr ""
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3165000\n"
-"552\n"
+"func_yearfrac.xhp\n"
+"par_id3149954\n"
+"201\n"
"help.text"
-msgid "<emph>Criteria</emph> indicates the criteria in the form of a number, an expression or a character string. These criteria determine which cells are counted. You may also enter a search text in the form of a regular expression, e.g. b.* for all words that begin with b. You may also indicate a cell range that contains the search criterion. If you search for literal text, enclose the text in double quotes."
+msgid "<emph>Basis</emph> is chosen from a list of options and indicates how the year is to be calculated."
msgstr ""
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"hd_id3165037\n"
-"553\n"
+"func_yearfrac.xhp\n"
+"par_id3146847\n"
+"202\n"
"help.text"
-msgid "Example"
-msgstr "Shembull"
+msgid "Basis"
+msgstr "Bazë"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3166505\n"
-"627\n"
+"func_yearfrac.xhp\n"
+"par_id3155956\n"
+"203\n"
"help.text"
-msgid "A1:A10 is a cell range containing the numbers <item type=\"input\">2000</item> to <item type=\"input\">2009</item>. Cell B1 contains the number <item type=\"input\">2006</item>. In cell B2, you enter a formula:"
+msgid "Calculation"
msgstr ""
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id3581652\n"
+"func_yearfrac.xhp\n"
+"par_id3154502\n"
+"204\n"
"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;2006)</item> - this returns 1"
-msgstr ""
+msgid "0 or missing"
+msgstr "OSE logjike"
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id708639\n"
+"func_yearfrac.xhp\n"
+"par_id3149877\n"
+"205\n"
"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;B1)</item> - this returns 1"
+msgid "US method (NASD), 12 months of 30 days each"
msgstr ""
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id5169225\n"
+"func_yearfrac.xhp\n"
+"par_id3148766\n"
+"250\n"
"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;\">=2006\") </item>- this returns 4"
+msgid "1"
msgstr ""
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id2118594\n"
+"func_yearfrac.xhp\n"
+"par_id3154326\n"
+"206\n"
"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;\"<\"&B1)</item> - when B1 contains <item type=\"input\">2006</item>, this returns 6"
-msgstr ""
+msgid "Exact number of days in months, exact number of days in year"
+msgstr "Muajt: Numri i muajve në vitin e parë të amortizimit."
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id166020\n"
+"func_yearfrac.xhp\n"
+"par_id3145245\n"
+"251\n"
"help.text"
-msgid "<item type=\"input\">=COUNTIF(A1:A10;C2)</item> where cell C2 contains the text <item type=\"input\">>2006</item> counts the number of cells in the range A1:A10 which are >2006"
+msgid "2"
msgstr ""
-#: 04060106.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04060106.xhp\n"
-"par_id6386913\n"
+"func_yearfrac.xhp\n"
+"par_id3155620\n"
+"207\n"
"help.text"
-msgid "To count only negative numbers: <item type=\"input\">=COUNTIF(A1:A10;\"<0\")</item>"
+msgid "Exact number of days in month, year has 360 days"
msgstr ""
-#: 06030400.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"06030400.xhp\n"
-"tit\n"
+"func_yearfrac.xhp\n"
+"par_id3145297\n"
+"252\n"
"help.text"
-msgid "Remove Dependents"
-msgstr "Largo Varësit"
+msgid "3"
+msgstr ""
-#: 06030400.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"06030400.xhp\n"
-"bm_id3147335\n"
+"func_yearfrac.xhp\n"
+"par_id3148394\n"
+"208\n"
"help.text"
-msgid "<bookmark_value>cells; removing dependents</bookmark_value>"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "Exact number of days in month, year has 365 days"
+msgstr ""
-#: 06030400.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"06030400.xhp\n"
-"hd_id3147335\n"
-"1\n"
+"func_yearfrac.xhp\n"
+"par_id3151022\n"
+"253\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06030400.xhp\" name=\"Remove Dependents\">Remove Dependents</link>"
+msgid "4"
msgstr ""
-#: 06030400.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"06030400.xhp\n"
-"par_id3148663\n"
-"2\n"
+"func_yearfrac.xhp\n"
+"par_id3150931\n"
+"209\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\".uno:ClearArrowDependents\">Deletes one level of tracer arrows created with <emph>Trace Dependents</emph>.</ahelp>"
+msgid "European method, 12 months of 30 days each"
msgstr ""
-#: 04010000.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04010000.xhp\n"
-"tit\n"
+"func_yearfrac.xhp\n"
+"hd_id3145626\n"
+"210\n"
"help.text"
-msgid "Manual Break"
-msgstr "~Thyerje Manuale"
+msgid "Example"
+msgstr "Shembull"
-#: 04010000.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04010000.xhp\n"
-"bm_id3153192\n"
+"func_yearfrac.xhp\n"
+"par_id3149007\n"
+"211\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; inserting breaks in</bookmark_value><bookmark_value>inserting; breaks</bookmark_value><bookmark_value>page breaks; inserting in spreadsheets</bookmark_value>"
+msgid "What fraction of the year 2008 lies between 2008-01-01 and 2008-07-01?"
msgstr ""
-#: 04010000.xhp
+#: func_yearfrac.xhp
msgctxt ""
-"04010000.xhp\n"
-"hd_id3153192\n"
-"1\n"
+"func_yearfrac.xhp\n"
+"par_id3154632\n"
+"212\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04010000.xhp\" name=\"Manual Break\">Manual Break</link>"
+msgid "=YEARFRAC(\"2008-01-01\"; \"2008-07-01\";0) returns 0.50."
msgstr ""
-#: 04010000.xhp
+#: solver.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3125864\n"
-"2\n"
+"solver.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">This command inserts manual row or column breaks to ensure that your data prints properly. You can insert a horizontal page break above, or a vertical page break to the left of, the active cell.</ahelp>"
+msgid "Solver"
msgstr ""
-#: 04010000.xhp
+#: solver.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3155133\n"
-"3\n"
+"solver.xhp\n"
+"bm_id7654652\n"
"help.text"
-msgid "Choose <link href=\"text/scalc/01/02190000.xhp\" name=\"Edit - Delete Manual Break\">Edit - Delete Manual Break</link> to remove breaks created manually."
+msgid "<bookmark_value>goal seeking;solver</bookmark_value><bookmark_value>what if operations;solver</bookmark_value><bookmark_value>back-solving</bookmark_value><bookmark_value>solver</bookmark_value>"
msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"tit\n"
+"solver.xhp\n"
+"hd_id9216284\n"
"help.text"
-msgid "Criteria"
-msgstr "Kriteret"
+msgid "<variable id=\"solver\"><link href=\"text/scalc/01/solver.xhp\">Solver</link></variable>"
+msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"bm_id1464278\n"
+"solver.xhp\n"
+"par_id9210486\n"
"help.text"
-msgid "<bookmark_value>selection lists;validity</bookmark_value>"
+msgid "<ahelp hid=\".\">Opens the Solver dialog. A solver allows to solve equations with multiple unknown variables by goal seeking methods.</ahelp>"
msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3153032\n"
-"1\n"
+"solver.xhp\n"
+"par_id8538773\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12120100.xhp\" name=\"Criteria\">Criteria</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or click the cell reference of the target cell. This field takes the address of the cell whose value is to be optimized.</ahelp>"
msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3156327\n"
-"2\n"
+"solver.xhp\n"
+"par_id7564012\n"
"help.text"
-msgid "<ahelp hid=\"SC:TABPAGE:TP_VALIDATION_VALUES\">Specify the validation rules for the selected cell(s).</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a maximum value of the target cell.</ahelp>"
msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3155923\n"
-"4\n"
+"solver.xhp\n"
+"par_id1186254\n"
"help.text"
-msgid "For example, you can define criteria such as: \"Numbers between 1 and 10\" or \"Texts that are no more than 20 characters\"."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation for a minimum value of the target cell.</ahelp>"
msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3153896\n"
-"5\n"
+"solver.xhp\n"
+"par_id7432477\n"
"help.text"
-msgid "Allow"
-msgstr "~Lejo"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Try to solve the equation to approach a given value of the target cell.</ahelp>"
+msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3150400\n"
-"6\n"
+"solver.xhp\n"
+"par_id7141026\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_ALLOW\">Click a validation option for the selected cell(s).</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the value or a cell reference.</ahelp>"
msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3148797\n"
-"17\n"
+"solver.xhp\n"
+"par_id8531449\n"
"help.text"
-msgid "The following conditions are available:"
-msgstr "Shërbimi në vijues nuk është në dispozicion:"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the cell range that can be changed.</ahelp>"
+msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3150447\n"
-"18\n"
+"solver.xhp\n"
+"par_id9183935\n"
"help.text"
-msgid "Condition"
-msgstr "Kushti"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a cell reference.</ahelp>"
+msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3155854\n"
-"19\n"
+"solver.xhp\n"
+"par_id946684\n"
"help.text"
-msgid "Effect"
-msgstr "Efekti"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select an operator from the list.</ahelp>"
+msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3153092\n"
-"20\n"
+"solver.xhp\n"
+"par_id9607226\n"
"help.text"
-msgid "All values"
-msgstr "Të gjitha vlerat"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a value or a cell reference.</ahelp>"
+msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3155411\n"
-"21\n"
+"solver.xhp\n"
+"par_id1939451\n"
"help.text"
-msgid "No limitation."
-msgstr "Pa strukturë"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to shrink or restore the dialog. You can click or select cells in the sheet. You can enter a cell reference manually in the input box.</ahelp>"
+msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3147434\n"
-"22\n"
+"solver.xhp\n"
+"par_id9038972\n"
"help.text"
-msgid "Whole number"
-msgstr "Numri i faqes"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to remove the row from the list. Any rows from below this row move up.</ahelp>"
+msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3154319\n"
-"23\n"
+"solver.xhp\n"
+"par_id2423780\n"
"help.text"
-msgid "Only whole numbers corresponding to the condition."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Options dialog.</ahelp>"
msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3145802\n"
-"24\n"
+"solver.xhp\n"
+"par_id2569658\n"
"help.text"
-msgid "Decimal"
-msgstr "Decimale"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to solve the equation with the current settings. The dialog settings are retained until you close the current document.</ahelp>"
+msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3153160\n"
-"25\n"
+"solver.xhp\n"
+"par_id5474410\n"
"help.text"
-msgid "All numbers corresponding to the condition."
+msgid "To solve equations with the solver"
msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3149377\n"
-"26\n"
+"solver.xhp\n"
+"par_id2216559\n"
"help.text"
-msgid "Date"
-msgstr "Data"
+msgid "The goal of the solver process is to find those variable values of an equation that result in an optimized value in the <emph>target cell</emph>, also named the \"objective\". You can choose whether the value in the target cell should be a maximum, a minimum, or approaching a given value."
+msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3150718\n"
-"27\n"
+"solver.xhp\n"
+"par_id7869502\n"
"help.text"
-msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
+msgid "The initial variable values are inserted in a rectangular cell range that you enter in the <emph>By changing cells</emph> box."
msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3146969\n"
-"28\n"
+"solver.xhp\n"
+"par_id9852900\n"
"help.text"
-msgid "Time"
-msgstr "Koha"
+msgid "You can define a series of limiting conditions that set constraints for some cells. For example, you can set the constraint that one of the variables or cells must not be bigger than another variable, or not bigger than a given value. You can also define the constraint that one or more variables must be integers (values without decimals), or binary values (where only 0 and 1 are allowed)."
+msgstr ""
-#: 12120100.xhp
+#: solver.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3155066\n"
-"29\n"
+"solver.xhp\n"
+"par_id5323953\n"
"help.text"
-msgid "All numbers corresponding to the condition. The entered values are formatted accordingly the next time the dialog is called up."
+msgid "The default solver engine supports only linear equations."
msgstr ""
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN106A0\n"
+"solver_options.xhp\n"
+"tit\n"
"help.text"
-msgid "Cell range"
-msgstr "Brezi i numrave"
+msgid "Options"
+msgstr "Opcionet"
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN106A5\n"
+"solver_options.xhp\n"
+"hd_id2794274\n"
"help.text"
-msgid "Allow only values that are given in a cell range. The cell range can be specified explicitly, or as a named database range, or as a named range. The range may consist of one column or one row of cells. If you specify a range of columns and rows, only the first column is used."
-msgstr ""
+msgid "Options"
+msgstr "Opcionet"
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN106AB\n"
+"solver_options.xhp\n"
+"par_id6776940\n"
"help.text"
-msgid "List"
-msgstr "Lista"
+msgid "The Options dialog for the <link href=\"text/scalc/01/solver.xhp\">Solver</link> is used to set some options."
+msgstr ""
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN106B0\n"
+"solver_options.xhp\n"
+"par_id393993\n"
"help.text"
-msgid "Allow only values or strings specified in a list. Strings and values can be mixed. Numbers evaluate to their value, so if you enter the number 1 in the list, the entry 100% is also valid."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a solver engine. The listbox is disabled if only one solver engine is installed. Solver engines can be installed as extensions.</ahelp>"
msgstr ""
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3154756\n"
-"30\n"
+"solver_options.xhp\n"
+"par_id5871761\n"
"help.text"
-msgid "Text length"
-msgstr "Gjatësia e tekstit"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Configure the current solver.</ahelp>"
+msgstr ""
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3147339\n"
-"31\n"
+"solver_options.xhp\n"
+"par_id6531266\n"
"help.text"
-msgid "Entries whose length corresponds to the condition."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">If the current entry in the Settings listbox allows to edit a value, you can click the Edit button. A dialog opens where you can change the value.</ahelp>"
msgstr ""
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3154704\n"
-"7\n"
+"solver_options.xhp\n"
+"par_id3912778\n"
"help.text"
-msgid "Allow blank cells"
-msgstr "Futi Qelitë Teposhtë"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter or change the value.</ahelp>"
+msgstr ""
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3153967\n"
-"8\n"
+"solver_options.xhp\n"
+"par_id3163853\n"
"help.text"
-msgid "<ahelp hid=\"SC:TRISTATEBOX:TP_VALIDATION_VALUES:TSB_ALLOW_BLANKS\">In conjunction with <emph>Tools - Detective - Mark invalid Data</emph>, this defines that blank cells are shown as invalid data (disabled) or not (enabled).</ahelp>"
+msgid "Use the Options dialog to configure the current solver engine."
msgstr ""
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN10709\n"
+"solver_options.xhp\n"
+"par_id121158\n"
"help.text"
-msgid "Show selection list"
-msgstr "Zgjedhni listën e adresave"
+msgid "You can install more solver engines as extensions, if available. Open Tools - Extension Manager and browse to the Extensions web site to search for extensions."
+msgstr ""
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN1070D\n"
+"solver_options.xhp\n"
+"par_id3806878\n"
"help.text"
-msgid "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SHOWLIST\">Shows a list of all valid strings or values to select from. The list can also be opened by selecting the cell and pressing Ctrl+D (Mac: Command+D).</ahelp>"
+msgid "Select the solver engine to use and to configure from the listbox. The listbox is disabled if onle one solver engine is installed."
msgstr ""
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN10724\n"
+"solver_options.xhp\n"
+"par_id130619\n"
"help.text"
-msgid "Sort entries ascending"
-msgstr "Kombino hyrjet identike"
+msgid "In the Settings box, check all settings that you want to use for the current goal seeking operation. If the current option offers different values, the Edit button is enabled. Click Edit to open a dialog where you can change the value."
+msgstr ""
-#: 12120100.xhp
+#: solver_options.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN10728\n"
+"solver_options.xhp\n"
+"par_id9999694\n"
"help.text"
-msgid "<ahelp hid=\"sc:CheckBox:TP_VALIDATION_VALUES:CB_SORTLIST\">Sorts the selection list in ascending order and filters duplicates from the list. If not checked, the order from the data source is taken.</ahelp>"
+msgid "Click OK to accept the changes and to go back to the <link href=\"text/scalc/01/solver.xhp\">Solver</link> dialog."
msgstr ""
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN1073F\n"
+"text2columns.xhp\n"
+"tit\n"
"help.text"
-msgid "Source"
-msgstr "Burimi"
+msgid "Text to Columns"
+msgstr "Shtyllat për tu përsëritur"
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN10743\n"
+"text2columns.xhp\n"
+"bm_id8004394\n"
"help.text"
-msgid "<ahelp hid=\"sc:Edit:TP_VALIDATION_VALUES:EDT_MIN\">Enter the cell range that contains the valid values or text.</ahelp>"
+msgid "<bookmark_value>text to columns</bookmark_value>"
+msgstr "**Tejmbushje e funksionit të katrorit**"
+
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"hd_id2300180\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/text2columns.xhp\">Text to Columns</link>"
msgstr ""
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN1075A\n"
+"text2columns.xhp\n"
+"par_id655232\n"
"help.text"
-msgid "Entries"
-msgstr "Hyrjet"
+msgid "<variable id=\"text2columns\">Opens the Text to Columns dialog, where you enter settings to expand the contents of selected cells to multiple cells. </variable>"
+msgstr ""
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_idN1075E\n"
+"text2columns.xhp\n"
+"hd_id9599597\n"
"help.text"
-msgid "<ahelp hid=\"sc:MultiLineEdit:TP_VALIDATION_VALUES:EDT_LIST\">Enter the entries that will be valid values or text strings.</ahelp>"
+msgid "To expand cell contents to multiple cells"
msgstr ""
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3163807\n"
-"9\n"
+"text2columns.xhp\n"
+"par_id2021546\n"
"help.text"
-msgid "Data"
-msgstr "Të dhëna"
+msgid "You can expand cells that contain comma separated values (CSV) into multiple cells in the same row."
+msgstr ""
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3144502\n"
-"10\n"
+"text2columns.xhp\n"
+"par_id2623981\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:TP_VALIDATION_VALUES:LB_VALUE\">Select the comparative operator that you want to use.</ahelp> The available operators depend on what you selected in the <emph>Allow </emph>box. If you select \"between\" or \"not between\", the <emph>Minimum</emph> and <emph>Maximum</emph> input boxes appear. Otherwise, only the <emph>Minimum</emph>, the <emph>Maximum, or the Value</emph> input boxes appear."
+msgid "For example, cell A1 contains the comma separated values <item type=\"literal\">1,2,3,4</item>, and cell A2 contains the text <item type=\"literal\">A,B,C,D</item>."
msgstr ""
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3153782\n"
-"11\n"
+"text2columns.xhp\n"
+"par_id7242042\n"
"help.text"
-msgid "Value"
-msgstr "Vlerë"
+msgid "Select the cell or cells that you want to expand."
+msgstr ""
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3153266\n"
-"12\n"
+"text2columns.xhp\n"
+"par_id6999420\n"
"help.text"
-msgid "Enter the value for the data validation option that you selected in the <emph>Allow </emph>box."
+msgid "Choose <emph>Data - Text to Columns</emph>."
msgstr ""
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3149814\n"
-"13\n"
+"text2columns.xhp\n"
+"par_id6334116\n"
"help.text"
-msgid "Minimum"
-msgstr "Minimum"
+msgid "You see the Text to Columns dialog."
+msgstr ""
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3153199\n"
-"14\n"
+"text2columns.xhp\n"
+"par_id9276406\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MIN\">Enter the minimum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
+msgid "Select the separator options. The preview shows how the current cell contents will be transformed into multiple cells."
msgstr ""
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"hd_id3149035\n"
-"15\n"
+"text2columns.xhp\n"
+"par_id8523819\n"
"help.text"
-msgid "Maximum"
-msgstr "Maksimum"
+msgid "You can select a fixed width and then click the ruler on the preview to set cell breakup positions."
+msgstr ""
-#: 12120100.xhp
+#: text2columns.xhp
msgctxt ""
-"12120100.xhp\n"
-"par_id3150089\n"
-"16\n"
+"text2columns.xhp\n"
+"par_id1517380\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:TP_VALIDATION_VALUES:EDT_MAX\">Enter the maximum value for the data validation option that you selected in the <emph>Allow </emph>box.</ahelp>"
+msgid "You can select or enter separator characters to define the positions of breaking points. The separator characters are removed from the resulting cell contents."
+msgstr ""
+
+#: text2columns.xhp
+msgctxt ""
+"text2columns.xhp\n"
+"par_id7110812\n"
+"help.text"
+msgid "In the example, you select the comma as a delimiter character. Cells A1 and A2 will be expanded to four columns each. A1 contains 1, B1 contains 2, and so on."
msgstr ""
diff --git a/source/sq/helpcontent2/source/text/scalc/02.po b/source/sq/helpcontent2/source/text/scalc/02.po
index 354fee210e4..0681bfd613d 100644
--- a/source/sq/helpcontent2/source/text/scalc/02.po
+++ b/source/sq/helpcontent2/source/text/scalc/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 19:07+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,278 +15,152 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: 10060000.xhp
+#: 02130000.xhp
msgctxt ""
-"10060000.xhp\n"
+"02130000.xhp\n"
"tit\n"
"help.text"
-msgid "Zoom Out"
-msgstr "Zvogëlo"
-
-#: 10060000.xhp
-msgctxt ""
-"10060000.xhp\n"
-"bm_id3153561\n"
-"help.text"
-msgid "<bookmark_value>page views;reducing scales</bookmark_value><bookmark_value>zooming;reducing page views</bookmark_value>"
-msgstr ""
+msgid "Number format: Currency"
+msgstr "Formati numerik: Valuta"
-#: 10060000.xhp
+#: 02130000.xhp
msgctxt ""
-"10060000.xhp\n"
-"hd_id3153561\n"
+"02130000.xhp\n"
+"hd_id3152892\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/10060000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
+msgid "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency\">Number format: Currency</link>"
msgstr ""
-#: 10060000.xhp
+#: 02130000.xhp
msgctxt ""
-"10060000.xhp\n"
-"par_id3151246\n"
+"02130000.xhp\n"
+"par_id3148837\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:ZoomOut\">Reduces the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
-msgstr ""
-
-#: 10060000.xhp
-msgctxt ""
-"10060000.xhp\n"
-"par_id3150398\n"
-"4\n"
-"help.text"
-msgid "The minimum zoom factor is 20%."
-msgstr ""
-
-#: 10060000.xhp
-msgctxt ""
-"10060000.xhp\n"
-"par_id3153770\n"
-"help.text"
-msgid "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Icon</alt></image>"
-msgstr ""
-
-#: 10060000.xhp
-msgctxt ""
-"10060000.xhp\n"
-"par_id3150440\n"
-"3\n"
-"help.text"
-msgid "Zooming Out"
-msgstr "Shuarje"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Insert"
-msgstr "Shto"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"bm_id3156329\n"
-"help.text"
-msgid "<bookmark_value>inserting; objects, toolbar icon</bookmark_value>"
-msgstr ""
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"hd_id3156329\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insert\">Insert</link>"
+msgid "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">Applies the default currency format to the selected cells.</ahelp>"
msgstr ""
-#: 18010000.xhp
+#: 02130000.xhp
msgctxt ""
-"18010000.xhp\n"
-"par_id3147336\n"
-"2\n"
+"02130000.xhp\n"
+"par_id3155267\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsertCtrl\">Click the arrow next to the icon to open the <emph>Insert </emph>toolbar, where you can add graphics and special characters to the current sheet.</ahelp>"
+msgid "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"alt_id3159096\">Icon</alt></image>"
msgstr ""
-#: 18010000.xhp
+#: 02130000.xhp
msgctxt ""
-"18010000.xhp\n"
-"par_id3148664\n"
+"02130000.xhp\n"
+"par_id3150214\n"
"3\n"
"help.text"
-msgid "Tools bar icon:"
-msgstr "Shiriti i Objektit Tekst"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"par_id3150767\n"
-"help.text"
-msgid "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Icon</alt></image>"
-msgstr ""
+msgid "Number Format: Currency"
+msgstr "Formati numerik: Valuta"
-#: 18010000.xhp
+#: 02130000.xhp
msgctxt ""
-"18010000.xhp\n"
-"par_id3146120\n"
+"02130000.xhp\n"
+"par_id3146776\n"
"4\n"
"help.text"
-msgid "Insert"
-msgstr "Shto"
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"par_id3153188\n"
-"6\n"
-"help.text"
-msgid "You can select the following icons:"
-msgstr "Mund të zgjedhësh një apo më shumë dispozitva."
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"hd_id4283883\n"
-"help.text"
-msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
-msgstr ""
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"hd_id3149410\n"
-"8\n"
-"help.text"
-msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
-msgstr ""
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"hd_id3151117\n"
-"7\n"
-"help.text"
-msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
-msgstr ""
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"hd_id3633533\n"
-"help.text"
-msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula</link>"
-msgstr ""
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"par_idN10769\n"
-"help.text"
-msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Insert Chart\">Chart</link>"
-msgstr ""
-
-#: 18010000.xhp
-msgctxt ""
-"18010000.xhp\n"
-"hd_id7581408\n"
-"help.text"
-msgid "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE Object</link>"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
msgstr ""
-#: 02170000.xhp
+#: 02140000.xhp
msgctxt ""
-"02170000.xhp\n"
+"02140000.xhp\n"
"tit\n"
"help.text"
-msgid "Number Format: Delete Decimal Place"
-msgstr "Format Numerik: Fshij Vendin Decimal"
+msgid "Number format: Percent"
+msgstr "Formati numerik: përqindje"
-#: 02170000.xhp
+#: 02140000.xhp
msgctxt ""
-"02170000.xhp\n"
-"hd_id3149164\n"
+"02140000.xhp\n"
+"hd_id3156329\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/02170000.xhp\" name=\"Number Format: Delete Decimal Place\">Number Format: Delete Decimal Place</link>"
+msgid "<link href=\"text/scalc/02/02140000.xhp\" name=\"Number format: Percent\">Number format: Percent</link>"
msgstr ""
-#: 02170000.xhp
+#: 02140000.xhp
msgctxt ""
-"02170000.xhp\n"
-"par_id3147264\n"
+"02140000.xhp\n"
+"par_id3155629\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumberFormatDecDecimals\">Removes one decimal place from the numbers in the selected cells.</ahelp>"
+msgid "<ahelp hid=\".uno:NumberFormatPercent\">Applies the percentage format to the selected cells.</ahelp>"
msgstr ""
-#: 02170000.xhp
+#: 02140000.xhp
msgctxt ""
-"02170000.xhp\n"
-"par_id3145173\n"
+"02140000.xhp\n"
+"par_id3153968\n"
"help.text"
-msgid "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153192\">Icon</alt></image>"
+msgid "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150869\">Icon</alt></image>"
msgstr ""
-#: 02170000.xhp
+#: 02140000.xhp
msgctxt ""
-"02170000.xhp\n"
-"par_id3154686\n"
+"02140000.xhp\n"
+"par_id3151114\n"
"3\n"
"help.text"
-msgid "Number Format: Delete Decimal Place"
-msgstr "Format Numerik: Fshij Vendin Decimal"
+msgid "Number Format: Percent"
+msgstr "Formati numerik: përqindje"
-#: 02130000.xhp
+#: 02140000.xhp
msgctxt ""
-"02130000.xhp\n"
-"tit\n"
+"02140000.xhp\n"
+"bm_id3149260\n"
"help.text"
-msgid "Number format: Currency"
-msgstr "Formati numerik: Valuta"
+msgid "<bookmark_value>percentage calculations</bookmark_value>"
+msgstr "Kthen rangun e përqindjes së një vlere në një mostër."
-#: 02130000.xhp
+#: 02140000.xhp
msgctxt ""
-"02130000.xhp\n"
-"hd_id3152892\n"
-"1\n"
+"02140000.xhp\n"
+"par_id3149260\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/scalc/02/02130000.xhp\" name=\"Number format: Currency\">Number format: Currency</link>"
+msgid "You can also enter a percentage sign (%) after a number in a cell:"
msgstr ""
-#: 02130000.xhp
+#: 02140000.xhp
msgctxt ""
-"02130000.xhp\n"
-"par_id3148837\n"
-"2\n"
+"02140000.xhp\n"
+"par_id3155411\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumberFormatCurrency\" visibility=\"visible\">Applies the default currency format to the selected cells.</ahelp>"
-msgstr ""
+msgid "1% corresponds to 0.01"
+msgstr "0 korespondon me 01/01/1904"
-#: 02130000.xhp
+#: 02140000.xhp
msgctxt ""
-"02130000.xhp\n"
-"par_id3155267\n"
+"02140000.xhp\n"
+"par_id3145749\n"
+"7\n"
"help.text"
-msgid "<image src=\"cmd/sc_currencyfield.png\" id=\"img_id3159096\"><alt id=\"alt_id3159096\">Icon</alt></image>"
+msgid "1 + 16% corresponds to 116% or 1.16"
msgstr ""
-#: 02130000.xhp
+#: 02140000.xhp
msgctxt ""
-"02130000.xhp\n"
-"par_id3150214\n"
-"3\n"
+"02140000.xhp\n"
+"par_id3148575\n"
+"8\n"
"help.text"
-msgid "Number Format: Currency"
-msgstr "Formati numerik: Valuta"
+msgid "1%% corresponds to 0.0001"
+msgstr "0 korespondon me 01/01/1904"
-#: 02130000.xhp
+#: 02140000.xhp
msgctxt ""
-"02130000.xhp\n"
-"par_id3146776\n"
-"4\n"
+"02140000.xhp\n"
+"par_id3159153\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>"
msgstr ""
#: 02150000.xhp
@@ -341,151 +215,150 @@ msgctxt ""
msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>."
msgstr ""
-#: 06070000.xhp
+#: 02160000.xhp
msgctxt ""
-"06070000.xhp\n"
+"02160000.xhp\n"
"tit\n"
"help.text"
-msgid "Accept"
-msgstr "Pranoj"
-
-#: 06070000.xhp
-msgctxt ""
-"06070000.xhp\n"
-"bm_id3143267\n"
-"help.text"
-msgid "<bookmark_value>formula bar; accepting inputs</bookmark_value><bookmark_value>functions; accepting input icon</bookmark_value>"
-msgstr ""
+msgid "Number Format: Add Decimal Place"
+msgstr "Format Numerik: Shto Vendin Decimal"
-#: 06070000.xhp
+#: 02160000.xhp
msgctxt ""
-"06070000.xhp\n"
-"hd_id3143267\n"
+"02160000.xhp\n"
+"hd_id3150275\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">Accept</link>"
+msgid "<link href=\"text/scalc/02/02160000.xhp\" name=\"Number Format: Add Decimal Place\">Number Format: Add Decimal Place</link>"
msgstr ""
-#: 06070000.xhp
+#: 02160000.xhp
msgctxt ""
-"06070000.xhp\n"
-"par_id3151245\n"
+"02160000.xhp\n"
+"par_id3150792\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_INSWIN_OK\">Accepts the contents of the <emph>Input line</emph>, and then inserts the contents into the current cell.</ahelp>"
+msgid "<ahelp hid=\".uno:NumberFormatIncDecimals\">Adds one decimal place to the numbers in the selected cells.</ahelp>"
msgstr ""
-#: 06070000.xhp
+#: 02160000.xhp
msgctxt ""
-"06070000.xhp\n"
-"par_id3150769\n"
+"02160000.xhp\n"
+"par_id3145787\n"
"help.text"
-msgid "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Icon</alt></image>"
+msgid "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145271\">Icon</alt></image>"
msgstr ""
-#: 06070000.xhp
+#: 02160000.xhp
msgctxt ""
-"06070000.xhp\n"
-"par_id3125864\n"
+"02160000.xhp\n"
+"par_id3149262\n"
"3\n"
"help.text"
-msgid "Accept"
-msgstr "Pranoj"
+msgid "Number Format: Add Decimal Place"
+msgstr "Format Numerik: Shto Vendin Decimal"
-#: 02140000.xhp
+#: 02170000.xhp
msgctxt ""
-"02140000.xhp\n"
+"02170000.xhp\n"
"tit\n"
"help.text"
-msgid "Number format: Percent"
-msgstr "Formati numerik: përqindje"
+msgid "Number Format: Delete Decimal Place"
+msgstr "Format Numerik: Fshij Vendin Decimal"
-#: 02140000.xhp
+#: 02170000.xhp
msgctxt ""
-"02140000.xhp\n"
-"hd_id3156329\n"
+"02170000.xhp\n"
+"hd_id3149164\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/02140000.xhp\" name=\"Number format: Percent\">Number format: Percent</link>"
+msgid "<link href=\"text/scalc/02/02170000.xhp\" name=\"Number Format: Delete Decimal Place\">Number Format: Delete Decimal Place</link>"
msgstr ""
-#: 02140000.xhp
+#: 02170000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3155629\n"
+"02170000.xhp\n"
+"par_id3147264\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumberFormatPercent\">Applies the percentage format to the selected cells.</ahelp>"
+msgid "<ahelp hid=\".uno:NumberFormatDecDecimals\">Removes one decimal place from the numbers in the selected cells.</ahelp>"
msgstr ""
-#: 02140000.xhp
+#: 02170000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3153968\n"
+"02170000.xhp\n"
+"par_id3145173\n"
"help.text"
-msgid "<image id=\"img_id3150869\" src=\"cmd/sc_numberformatpercent.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3150869\">Icon</alt></image>"
+msgid "<image id=\"img_id3153192\" src=\"cmd/sc_numberformatdecdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3153192\">Icon</alt></image>"
msgstr ""
-#: 02140000.xhp
+#: 02170000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3151114\n"
+"02170000.xhp\n"
+"par_id3154686\n"
"3\n"
"help.text"
-msgid "Number Format: Percent"
-msgstr "Formati numerik: përqindje"
+msgid "Number Format: Delete Decimal Place"
+msgstr "Format Numerik: Fshij Vendin Decimal"
-#: 02140000.xhp
+#: 06010000.xhp
msgctxt ""
-"02140000.xhp\n"
-"bm_id3149260\n"
+"06010000.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>percentage calculations</bookmark_value>"
-msgstr "Kthen rangun e përqindjes së një vlere në një mostër."
+msgid "Sheet Area"
+msgstr "Zona e Fletës"
-#: 02140000.xhp
+#: 06010000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3149260\n"
-"5\n"
+"06010000.xhp\n"
+"bm_id3156326\n"
"help.text"
-msgid "You can also enter a percentage sign (%) after a number in a cell:"
+msgid "<bookmark_value>formula bar; sheet area names</bookmark_value><bookmark_value>sheet area names</bookmark_value><bookmark_value>showing; cell references</bookmark_value><bookmark_value>cell references; showing</bookmark_value>"
msgstr ""
-#: 02140000.xhp
+#: 06010000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3155411\n"
-"6\n"
+"06010000.xhp\n"
+"hd_id3156326\n"
+"1\n"
"help.text"
-msgid "1% corresponds to 0.01"
-msgstr "0 korespondon me 01/01/1904"
+msgid "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">Name Box</link>"
+msgstr ""
-#: 02140000.xhp
+#: 06010000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3145749\n"
-"7\n"
+"06010000.xhp\n"
+"par_id3149656\n"
+"2\n"
"help.text"
-msgid "1 + 16% corresponds to 116% or 1.16"
+msgid "<ahelp hid=\"HID_INSWIN_POS\">Displays the reference for the current cell, the range of the selected cells, or the name of the area. You can also select a range of cells, and then type a name for that range into the <emph>Name Box</emph>.</ahelp>"
msgstr ""
-#: 02140000.xhp
+#: 06010000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3148575\n"
-"8\n"
+"06010000.xhp\n"
+"par_id3163710\n"
"help.text"
-msgid "1%% corresponds to 0.0001"
-msgstr "0 korespondon me 01/01/1904"
+msgid "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">Combo box sheet area</alt></image>"
+msgstr ""
-#: 02140000.xhp
+#: 06010000.xhp
msgctxt ""
-"02140000.xhp\n"
-"par_id3159153\n"
-"10\n"
+"06010000.xhp\n"
+"par_id3151118\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cell - Numbers\">Format - Cell - Numbers</link>"
+msgid "Name Box"
+msgstr "Kutia për kontrollim"
+
+#: 06010000.xhp
+msgctxt ""
+"06010000.xhp\n"
+"par_id3152596\n"
+"6\n"
+"help.text"
+msgid "To jump to a particular cell, or to select a cell range, type the cell reference, or cell range reference in this box, for example, F1, or A1:C4."
msgstr ""
#: 06030000.xhp
@@ -557,48 +430,91 @@ msgctxt ""
msgid "Click the <emph>Accept</emph> icon (green check mark) to use the formula displayed in the input line."
msgstr ""
-#: 02160000.xhp
+#: 06040000.xhp
msgctxt ""
-"02160000.xhp\n"
+"06040000.xhp\n"
"tit\n"
"help.text"
-msgid "Number Format: Add Decimal Place"
-msgstr "Format Numerik: Shto Vendin Decimal"
+msgid "Function"
+msgstr "Funksioni"
-#: 02160000.xhp
+#: 06040000.xhp
msgctxt ""
-"02160000.xhp\n"
-"hd_id3150275\n"
+"06040000.xhp\n"
+"bm_id3150084\n"
+"help.text"
+msgid "<bookmark_value>formula bar; functions</bookmark_value><bookmark_value>functions; formula bar icon</bookmark_value>"
+msgstr ""
+
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"hd_id3150084\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/02160000.xhp\" name=\"Number Format: Add Decimal Place\">Number Format: Add Decimal Place</link>"
+msgid "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">Function</link>"
msgstr ""
-#: 02160000.xhp
+#: 06040000.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3150792\n"
+"06040000.xhp\n"
+"par_id3151245\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:NumberFormatIncDecimals\">Adds one decimal place to the numbers in the selected cells.</ahelp>"
+msgid "<ahelp hid=\"HID_INSWIN_FUNC\">Adds a formula to the current cell. Click this icon, and then enter the formula in the <emph>Input line</emph>.</ahelp>"
msgstr ""
-#: 02160000.xhp
+#: 06040000.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3145787\n"
+"06040000.xhp\n"
+"par_id3153360\n"
+"3\n"
"help.text"
-msgid "<image id=\"img_id3145271\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145271\">Icon</alt></image>"
+msgid "This icon is only available when the <emph>Input line</emph> box is not active."
msgstr ""
-#: 02160000.xhp
+#: 06040000.xhp
msgctxt ""
-"02160000.xhp\n"
-"par_id3149262\n"
-"3\n"
+"06040000.xhp\n"
+"par_id3153770\n"
"help.text"
-msgid "Number Format: Add Decimal Place"
-msgstr "Format Numerik: Shto Vendin Decimal"
+msgid "<image id=\"img_id3145785\" src=\"sc/imglst/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Icon</alt></image>"
+msgstr ""
+
+#: 06040000.xhp
+msgctxt ""
+"06040000.xhp\n"
+"par_id3153951\n"
+"4\n"
+"help.text"
+msgid "Function"
+msgstr "Funksioni"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Input line"
+msgstr "Linja e hyrjeve"
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"hd_id3153821\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/06050000.xhp\" name=\"Input line\">Input line</link>"
+msgstr ""
+
+#: 06050000.xhp
+msgctxt ""
+"06050000.xhp\n"
+"par_id3155922\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_INSWIN_INPUT\">Enter the formula that you want to add to the current cell. You can also click the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link> icon to insert a predefined function into the formula.</ahelp>"
+msgstr ""
#: 06060000.xhp
msgctxt ""
@@ -651,119 +567,56 @@ msgctxt ""
msgid "Cancel"
msgstr "Anulo"
-#: 18020000.xhp
+#: 06070000.xhp
msgctxt ""
-"18020000.xhp\n"
+"06070000.xhp\n"
"tit\n"
"help.text"
-msgid "Insert Cells"
-msgstr "Futi Qelitë"
+msgid "Accept"
+msgstr "Pranoj"
-#: 18020000.xhp
+#: 06070000.xhp
msgctxt ""
-"18020000.xhp\n"
-"bm_id3150275\n"
+"06070000.xhp\n"
+"bm_id3143267\n"
"help.text"
-msgid "<bookmark_value>inserting; cells, toolbar icon</bookmark_value>"
+msgid "<bookmark_value>formula bar; accepting inputs</bookmark_value><bookmark_value>functions; accepting input icon</bookmark_value>"
msgstr ""
-#: 18020000.xhp
+#: 06070000.xhp
msgctxt ""
-"18020000.xhp\n"
-"hd_id3150275\n"
+"06070000.xhp\n"
+"hd_id3143267\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/18020000.xhp\" name=\"Insert Cells\">Insert Cells</link>"
+msgid "<link href=\"text/scalc/02/06070000.xhp\" name=\"Accept\">Accept</link>"
msgstr ""
-#: 18020000.xhp
+#: 06070000.xhp
msgctxt ""
-"18020000.xhp\n"
-"par_id3156024\n"
+"06070000.xhp\n"
+"par_id3151245\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsCellsCtrl\">Click the arrow next to the icon to open the <emph>Insert Cells </emph>toolbar, where you can insert cells, rows, and columns into the current sheet.</ahelp>"
-msgstr ""
-
-#: 18020000.xhp
-msgctxt ""
-"18020000.xhp\n"
-"par_id3150398\n"
-"3\n"
-"help.text"
-msgid "Tools bar icon:"
-msgstr "Shiriti i Objektit Tekst"
-
-#: 18020000.xhp
-msgctxt ""
-"18020000.xhp\n"
-"par_id3150767\n"
-"5\n"
-"help.text"
-msgid "You can select the following icons:"
-msgstr "Mund të zgjedhësh një apo më shumë dispozitva."
-
-#: 18020000.xhp
-msgctxt ""
-"18020000.xhp\n"
-"hd_id3150439\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Down\">Insert Cells Down</link>"
-msgstr ""
-
-#: 18020000.xhp
-msgctxt ""
-"18020000.xhp\n"
-"hd_id3146119\n"
-"7\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">Insert Cells Right</link>"
-msgstr ""
-
-#: 18020000.xhp
-msgctxt ""
-"18020000.xhp\n"
-"hd_id3153190\n"
-"8\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">Rows</link>"
-msgstr ""
-
-#: 18020000.xhp
-msgctxt ""
-"18020000.xhp\n"
-"hd_id3153726\n"
-"9\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columns\">Columns</link>"
+msgid "<ahelp hid=\"HID_INSWIN_OK\">Accepts the contents of the <emph>Input line</emph>, and then inserts the contents into the current cell.</ahelp>"
msgstr ""
-#: 06050000.xhp
-msgctxt ""
-"06050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Input line"
-msgstr "Linja e hyrjeve"
-
-#: 06050000.xhp
+#: 06070000.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3153821\n"
-"1\n"
+"06070000.xhp\n"
+"par_id3150769\n"
"help.text"
-msgid "<link href=\"text/scalc/02/06050000.xhp\" name=\"Input line\">Input line</link>"
+msgid "<image id=\"img_id3156422\" src=\"svx/res/nu07.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3156422\">Icon</alt></image>"
msgstr ""
-#: 06050000.xhp
+#: 06070000.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3155922\n"
-"2\n"
+"06070000.xhp\n"
+"par_id3125864\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_INSWIN_INPUT\">Enter the formula that you want to add to the current cell. You can also click the <link href=\"text/scalc/01/04060000.xhp\" name=\"Function Wizard\">Function Wizard</link> icon to insert a predefined function into the formula.</ahelp>"
-msgstr ""
+msgid "Accept"
+msgstr "Pranoj"
#: 06080000.xhp
msgctxt ""
@@ -817,6 +670,32 @@ msgctxt ""
msgid "<ahelp hid=\"HID_DLGSTYLES_LISTBOX\">Click the formatting theme that you want to apply, and then click <emph>OK</emph>.</ahelp>"
msgstr ""
+#: 08010000.xhp
+msgctxt ""
+"08010000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Position in document"
+msgstr "Pozita në dokument"
+
+#: 08010000.xhp
+msgctxt ""
+"08010000.xhp\n"
+"hd_id3145119\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/08010000.xhp\" name=\"Position in document\">Position in document</link>"
+msgstr ""
+
+#: 08010000.xhp
+msgctxt ""
+"08010000.xhp\n"
+"par_id3147265\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:StatusDocPos\">Displays the number of the current sheet and the total number of sheets in the spreadsheet.</ahelp>"
+msgstr ""
+
#: 08080000.xhp
msgctxt ""
"08080000.xhp\n"
@@ -869,208 +748,329 @@ msgctxt ""
msgid "<link href=\"text/scalc/05/02140000.xhp\" name=\"Error codes\">Error codes</link>"
msgstr ""
-#: 06040000.xhp
+#: 10050000.xhp
msgctxt ""
-"06040000.xhp\n"
+"10050000.xhp\n"
"tit\n"
"help.text"
-msgid "Function"
-msgstr "Funksioni"
+msgid "Zoom In"
+msgstr "Zmadho"
-#: 06040000.xhp
+#: 10050000.xhp
msgctxt ""
-"06040000.xhp\n"
-"bm_id3150084\n"
+"10050000.xhp\n"
+"bm_id3148491\n"
"help.text"
-msgid "<bookmark_value>formula bar; functions</bookmark_value><bookmark_value>functions; formula bar icon</bookmark_value>"
+msgid "<bookmark_value>page views; increasing scales</bookmark_value><bookmark_value>increasing scales in page view</bookmark_value><bookmark_value>zooming;enlarging page views</bookmark_value>"
msgstr ""
-#: 06040000.xhp
+#: 10050000.xhp
msgctxt ""
-"06040000.xhp\n"
-"hd_id3150084\n"
+"10050000.xhp\n"
+"hd_id3148491\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/06040000.xhp\" name=\"Function\">Function</link>"
+msgid "<link href=\"text/scalc/02/10050000.xhp\" name=\"Zoom In\">Zoom In</link>"
msgstr ""
-#: 06040000.xhp
+#: 10050000.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3151245\n"
+"10050000.xhp\n"
+"par_id3145069\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_INSWIN_FUNC\">Adds a formula to the current cell. Click this icon, and then enter the formula in the <emph>Input line</emph>.</ahelp>"
+msgid "<ahelp hid=\".uno:ZoomIn\">Enlarges the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
msgstr ""
-#: 06040000.xhp
+#: 10050000.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3153360\n"
-"3\n"
+"10050000.xhp\n"
+"par_id3145171\n"
+"4\n"
"help.text"
-msgid "This icon is only available when the <emph>Input line</emph> box is not active."
+msgid "The maximum zoom factor is 400%."
msgstr ""
-#: 06040000.xhp
+#: 10050000.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3153770\n"
+"10050000.xhp\n"
+"par_id3155854\n"
"help.text"
-msgid "<image id=\"img_id3145785\" src=\"sc/imglst/sc26049.png\" width=\"5.64mm\" height=\"5.64mm\"><alt id=\"alt_id3145785\">Icon</alt></image>"
+msgid "<image id=\"img_id3151116\" src=\"cmd/sc_zoomin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151116\">Icon</alt></image>"
msgstr ""
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"par_id3153951\n"
-"4\n"
-"help.text"
-msgid "Function"
-msgstr "Funksioni"
-
#: 10050000.xhp
msgctxt ""
"10050000.xhp\n"
-"tit\n"
+"par_id3145273\n"
+"3\n"
"help.text"
msgid "Zoom In"
msgstr "Zmadho"
-#: 10050000.xhp
+#: 10060000.xhp
msgctxt ""
-"10050000.xhp\n"
-"bm_id3148491\n"
+"10060000.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>page views; increasing scales</bookmark_value><bookmark_value>increasing scales in page view</bookmark_value><bookmark_value>zooming;enlarging page views</bookmark_value>"
+msgid "Zoom Out"
+msgstr "Zvogëlo"
+
+#: 10060000.xhp
+msgctxt ""
+"10060000.xhp\n"
+"bm_id3153561\n"
+"help.text"
+msgid "<bookmark_value>page views;reducing scales</bookmark_value><bookmark_value>zooming;reducing page views</bookmark_value>"
msgstr ""
-#: 10050000.xhp
+#: 10060000.xhp
msgctxt ""
-"10050000.xhp\n"
-"hd_id3148491\n"
+"10060000.xhp\n"
+"hd_id3153561\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/10050000.xhp\" name=\"Zoom In\">Zoom In</link>"
+msgid "<link href=\"text/scalc/02/10060000.xhp\" name=\"Zoom Out\">Zoom Out</link>"
msgstr ""
-#: 10050000.xhp
+#: 10060000.xhp
msgctxt ""
-"10050000.xhp\n"
-"par_id3145069\n"
+"10060000.xhp\n"
+"par_id3151246\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:ZoomIn\">Enlarges the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
+msgid "<ahelp hid=\".uno:ZoomOut\">Reduces the screen display of the current document. The current zoom factor is displayed on the <emph>Status Bar</emph>.</ahelp>"
msgstr ""
-#: 10050000.xhp
+#: 10060000.xhp
msgctxt ""
-"10050000.xhp\n"
-"par_id3145171\n"
+"10060000.xhp\n"
+"par_id3150398\n"
"4\n"
"help.text"
-msgid "The maximum zoom factor is 400%."
+msgid "The minimum zoom factor is 20%."
msgstr ""
-#: 10050000.xhp
+#: 10060000.xhp
msgctxt ""
-"10050000.xhp\n"
-"par_id3155854\n"
+"10060000.xhp\n"
+"par_id3153770\n"
"help.text"
-msgid "<image id=\"img_id3151116\" src=\"cmd/sc_helpzoomin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3151116\">Icon</alt></image>"
+msgid "<image id=\"img_id3155131\" src=\"cmd/sc_zoomout.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155131\">Icon</alt></image>"
msgstr ""
-#: 10050000.xhp
+#: 10060000.xhp
msgctxt ""
-"10050000.xhp\n"
-"par_id3145273\n"
+"10060000.xhp\n"
+"par_id3150440\n"
"3\n"
"help.text"
-msgid "Zoom In"
-msgstr "Zmadho"
+msgid "Zooming Out"
+msgstr "Shuarje"
-#: 06010000.xhp
+#: 18010000.xhp
msgctxt ""
-"06010000.xhp\n"
+"18010000.xhp\n"
"tit\n"
"help.text"
-msgid "Sheet Area"
-msgstr "Zona e Fletës"
+msgid "Insert"
+msgstr "Shto"
-#: 06010000.xhp
+#: 18010000.xhp
msgctxt ""
-"06010000.xhp\n"
-"bm_id3156326\n"
+"18010000.xhp\n"
+"bm_id3156329\n"
"help.text"
-msgid "<bookmark_value>formula bar; sheet area names</bookmark_value><bookmark_value>sheet area names</bookmark_value><bookmark_value>showing; cell references</bookmark_value><bookmark_value>cell references; showing</bookmark_value>"
+msgid "<bookmark_value>inserting; objects, toolbar icon</bookmark_value>"
msgstr ""
-#: 06010000.xhp
+#: 18010000.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3156326\n"
+"18010000.xhp\n"
+"hd_id3156329\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/06010000.xhp\" name=\"Name Box\">Name Box</link>"
+msgid "<link href=\"text/scalc/02/18010000.xhp\" name=\"Insert\">Insert</link>"
msgstr ""
-#: 06010000.xhp
+#: 18010000.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3149656\n"
+"18010000.xhp\n"
+"par_id3147336\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_INSWIN_POS\">Displays the reference for the current cell, the range of the selected cells, or the name of the area. You can also select a range of cells, and then type a name for that range into the <emph>Name Box</emph>.</ahelp>"
+msgid "<ahelp hid=\".uno:InsertCtrl\">Click the arrow next to the icon to open the <emph>Insert </emph>toolbar, where you can add graphics and special characters to the current sheet.</ahelp>"
msgstr ""
-#: 06010000.xhp
+#: 18010000.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3163710\n"
+"18010000.xhp\n"
+"par_id3148664\n"
+"3\n"
"help.text"
-msgid "<image id=\"img_id3152576\" src=\"res/helpimg/calcein.png\" width=\"1.2398inch\" height=\"0.2398inch\" localize=\"true\"><alt id=\"alt_id3152576\">Combo box sheet area</alt></image>"
+msgid "Tools bar icon:"
+msgstr "Shiriti i Objektit Tekst"
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"par_id3150767\n"
+"help.text"
+msgid "<image id=\"img_id3156423\" src=\"cmd/sc_insertgraphic.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156423\">Icon</alt></image>"
msgstr ""
-#: 06010000.xhp
+#: 18010000.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3151118\n"
+"18010000.xhp\n"
+"par_id3146120\n"
"4\n"
"help.text"
-msgid "Name Box"
-msgstr "Kutia për kontrollim"
+msgid "Insert"
+msgstr "Shto"
-#: 06010000.xhp
+#: 18010000.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3152596\n"
+"18010000.xhp\n"
+"par_id3153188\n"
"6\n"
"help.text"
-msgid "To jump to a particular cell, or to select a cell range, type the cell reference, or cell range reference in this box, for example, F1, or A1:C4."
+msgid "You can select the following icons:"
+msgstr "Mund të zgjedhësh një apo më shumë dispozitva."
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id4283883\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04160500.xhp\" name=\"Floating Frame\">Floating Frame</link>"
msgstr ""
-#: 08010000.xhp
+#: 18010000.xhp
msgctxt ""
-"08010000.xhp\n"
+"18010000.xhp\n"
+"hd_id3149410\n"
+"8\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04100000.xhp\" name=\"Special Character\">Special Character</link>"
+msgstr ""
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id3151117\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
+msgstr ""
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id3633533\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula</link>"
+msgstr ""
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"par_idN10769\n"
+"help.text"
+msgid "<link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Insert Chart\">Chart</link>"
+msgstr ""
+
+#: 18010000.xhp
+msgctxt ""
+"18010000.xhp\n"
+"hd_id7581408\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE Object</link>"
+msgstr ""
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
"tit\n"
"help.text"
-msgid "Position in document"
-msgstr "Pozita në dokument"
+msgid "Insert Cells"
+msgstr "Futi Qelitë"
-#: 08010000.xhp
+#: 18020000.xhp
msgctxt ""
-"08010000.xhp\n"
-"hd_id3145119\n"
+"18020000.xhp\n"
+"bm_id3150275\n"
+"help.text"
+msgid "<bookmark_value>inserting; cells, toolbar icon</bookmark_value>"
+msgstr ""
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3150275\n"
"1\n"
"help.text"
-msgid "<link href=\"text/scalc/02/08010000.xhp\" name=\"Position in document\">Position in document</link>"
+msgid "<link href=\"text/scalc/02/18020000.xhp\" name=\"Insert Cells\">Insert Cells</link>"
msgstr ""
-#: 08010000.xhp
+#: 18020000.xhp
msgctxt ""
-"08010000.xhp\n"
-"par_id3147265\n"
+"18020000.xhp\n"
+"par_id3156024\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:StatusDocPos\">Displays the number of the current sheet and the total number of sheets in the spreadsheet.</ahelp>"
+msgid "<ahelp hid=\".uno:InsCellsCtrl\">Click the arrow next to the icon to open the <emph>Insert Cells </emph>toolbar, where you can insert cells, rows, and columns into the current sheet.</ahelp>"
+msgstr ""
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"par_id3150398\n"
+"3\n"
+"help.text"
+msgid "Tools bar icon:"
+msgstr "Shiriti i Objektit Tekst"
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"par_id3150767\n"
+"5\n"
+"help.text"
+msgid "You can select the following icons:"
+msgstr "Mund të zgjedhësh një apo më shumë dispozitva."
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3150439\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Down\">Insert Cells Down</link>"
+msgstr ""
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3146119\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Insert Cells Right\">Insert Cells Right</link>"
+msgstr ""
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3153190\n"
+"8\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Rows\">Rows</link>"
+msgstr ""
+
+#: 18020000.xhp
+msgctxt ""
+"18020000.xhp\n"
+"hd_id3153726\n"
+"9\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04020000.xhp\" name=\"Columns\">Columns</link>"
msgstr ""
diff --git a/source/sq/helpcontent2/source/text/scalc/04.po b/source/sq/helpcontent2/source/text/scalc/04.po
index f6ebb677fde..577126fc39b 100644
--- a/source/sq/helpcontent2/source/text/scalc/04.po
+++ b/source/sq/helpcontent2/source/text/scalc/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2012-07-04 18:42+0200\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1304,7 +1304,6 @@ msgid "Standard format"
msgstr "Formati numerik: standard"
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3154205\n"
@@ -1366,7 +1365,6 @@ msgid "Changes the focus by moving backwards through the areas and buttons of th
msgstr ""
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3148484\n"
@@ -1385,7 +1383,6 @@ msgid "Moves the focus up one item in the current dialog area."
msgstr ""
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3154273\n"
@@ -1404,7 +1401,6 @@ msgid "Moves the focus down one item in the current dialog area."
msgstr ""
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3148912\n"
@@ -1423,7 +1419,6 @@ msgid "Moves the focus one item to the left in the current dialog area."
msgstr ""
#: 01020000.xhp
-#, fuzzy
msgctxt ""
"01020000.xhp\n"
"hd_id3150712\n"
diff --git a/source/sq/helpcontent2/source/text/scalc/05.po b/source/sq/helpcontent2/source/text/scalc/05.po
index 10a9ca923fb..54e5deb8a25 100644
--- a/source/sq/helpcontent2/source/text/scalc/05.po
+++ b/source/sq/helpcontent2/source/text/scalc/05.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
-"PO-Revision-Date: 2011-04-25 12:39+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"PO-Revision-Date: 2013-02-12 23:29+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sq\n"
"MIME-Version: 1.0\n"
@@ -14,6 +14,7 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1360711745.0\n"
#: 02140000.xhp
msgctxt ""
@@ -115,7 +116,7 @@ msgctxt ""
"13\n"
"help.text"
msgid "none"
-msgstr ""
+msgstr "asnjë"
#: 02140000.xhp
msgctxt ""
@@ -969,7 +970,7 @@ msgctxt ""
"par_id2629474\n"
"help.text"
msgid "A1: <Empty>"
-msgstr ""
+msgstr "Grup i zbraztë"
#: empty_cells.xhp
msgctxt ""
diff --git a/source/sq/helpcontent2/source/text/scalc/guide.po b/source/sq/helpcontent2/source/text/scalc/guide.po
index 06c3bc6b5b3..2b4dc6f4184 100644
--- a/source/sq/helpcontent2/source/text/scalc/guide.po
+++ b/source/sq/helpcontent2/source/text/scalc/guide.po
@@ -3,9 +3,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
-"PO-Revision-Date: 2011-04-05 19:07+0200\n"
-"Last-Translator: Andras <timar74@gmail.com>\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
+"PO-Revision-Date: 2013-02-12 23:29+0000\n"
+"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sq\n"
"MIME-Version: 1.0\n"
@@ -14,1530 +14,375 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1360711747.0\n"
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
+"address_auto.xhp\n"
"tit\n"
"help.text"
-msgid "Using Scenarios"
-msgstr "Duke përdorur Ndihmën"
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"bm_id3149664\n"
-"help.text"
-msgid "<bookmark_value>scenarios; creating/editing/deleting</bookmark_value><bookmark_value>opening;scenarios</bookmark_value><bookmark_value>selecting;scenarios in Navigator</bookmark_value>"
-msgstr ""
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"hd_id3125863\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\" name=\"Using Scenarios\">Using Scenarios</link></variable>"
-msgstr ""
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3150869\n"
-"2\n"
-"help.text"
-msgid "A $[officename] Calc scenario is a set of cell values that can be used within your calculations. You assign a name to every scenario on your sheet. Define several scenarios on the same sheet, each with some different values in the cells. Then you can easily switch the sets of cell values by their name and immediately observe the results. Scenarios are a tool to test out \"what-if\" questions."
-msgstr ""
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"hd_id3149255\n"
-"15\n"
-"help.text"
-msgid "Creating Your Own Scenarios"
-msgstr ""
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3154704\n"
-"16\n"
-"help.text"
-msgid "To create a scenario, select all the cells that provide the data for the scenario."
-msgstr ""
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3154020\n"
-"17\n"
-"help.text"
-msgid "Select the cells that contain the values that will change between scenarios. To select multiple cells, hold down the <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline></item> key as you click each cell."
-msgstr ""
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3150364\n"
-"18\n"
-"help.text"
-msgid "Choose <emph>Tools - Scenarios</emph>. The <emph>Create Scenario</emph> dialog appears."
-msgstr ""
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3166426\n"
-"19\n"
-"help.text"
-msgid "Enter a name for the new scenario and leave the other fields unchanged with their default values. Close the dialog with OK. Your new scenario is automatically activated."
-msgstr ""
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"hd_id3149664\n"
-"3\n"
-"help.text"
-msgid "Using Scenarios"
-msgstr "Duke përdorur Ndihmën"
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3153415\n"
-"11\n"
-"help.text"
-msgid "Scenarios can be selected in the Navigator:"
-msgstr ""
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3150752\n"
-"12\n"
-"help.text"
-msgid "Open the Navigator with the <emph>Navigator</emph> icon <image id=\"img_id1593676\" src=\"cmd/sc_navigator.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id1593676\">Navigator icon</alt></image> on the Standard bar."
-msgstr ""
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3155764\n"
-"13\n"
-"help.text"
-msgid "Click the <emph>Scenarios</emph> icon <image id=\"img_id7617114\" src=\"sc/imglst/navipi/na07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id7617114\">Scenarios icon</alt></image> in the Navigator."
-msgstr ""
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3154256\n"
-"14\n"
-"help.text"
-msgid "In the Navigator, you see the defined scenarios with the comments that were entered when the scenarios were created."
+msgid "Recognizing Names as Addressing"
msgstr ""
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"par_id1243629\n"
+"address_auto.xhp\n"
+"bm_id3148797\n"
"help.text"
-msgid "Double-click a scenario name in the Navigator to apply that scenario to the current sheet."
+msgid "<bookmark_value>automatic addressing in tables</bookmark_value> <bookmark_value>natural language addressing</bookmark_value> <bookmark_value>formulas; using row/column labels</bookmark_value> <bookmark_value>text in cells; as addressing</bookmark_value> <bookmark_value>addressing; automatic</bookmark_value> <bookmark_value>name recognition on/off</bookmark_value> <bookmark_value>row headers;using in formulas</bookmark_value> <bookmark_value>column headers;using in formulas</bookmark_value> <bookmark_value>columns; finding labels automatically</bookmark_value> <bookmark_value>rows; finding labels automatically</bookmark_value> <bookmark_value>recognizing; column and row labels</bookmark_value>"
msgstr ""
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"par_id9044770\n"
+"address_auto.xhp\n"
+"hd_id3148797\n"
+"20\n"
"help.text"
-msgid "To delete a scenario, right-click the name in the Navigator and choose <emph>Delete</emph>."
+msgid "<variable id=\"address_auto\"><link href=\"text/scalc/guide/address_auto.xhp\" name=\"Recognizing Names as Addressing\">Recognizing Names as Addressing</link></variable>"
msgstr ""
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"par_id3674123\n"
+"address_auto.xhp\n"
+"par_id3152597\n"
+"21\n"
"help.text"
-msgid "To edit a scenario, right-click the name in the Navigator and choose <emph>Properties</emph>."
+msgid "You can use cells with text to refer to the rows or to the columns that contain the cells."
msgstr ""
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"par_id3424481\n"
+"address_auto.xhp\n"
+"par_id3156283\n"
"help.text"
-msgid "To hide the border of a set of cells that are part of a scenario, open the <emph>Properties</emph> dialog for each scenario that affects the cells and clear the Display border checkbox. Hiding the border also removes the listbox on the sheet where you can choose the scenarios."
+msgid "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"2.1291in\" height=\"0.8709in\" localize=\"true\"><alt id=\"alt_id3154942\">Example spreadsheet</alt></image>"
msgstr ""
-#: scenario.xhp
+#: address_auto.xhp
msgctxt ""
-"scenario.xhp\n"
-"par_id3154368\n"
+"address_auto.xhp\n"
+"par_id3154512\n"
"22\n"
"help.text"
-msgid "If you want to know which values in the scenario affect other values, choose <emph>Tools - Detective - Trace Dependents</emph>. You see arrows to the cells that are directly dependent on the current cell."
-msgstr ""
-
-#: scenario.xhp
-msgctxt ""
-"scenario.xhp\n"
-"par_id3154484\n"
-"29\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Creating Scenarios\">Creating Scenarios</link>"
-msgstr ""
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"tit\n"
-"help.text"
-msgid "Applying Multiple Sheets"
-msgstr "Selekto të Gjitha Fletët"
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"bm_id3154759\n"
-"help.text"
-msgid "<bookmark_value>sheets; inserting</bookmark_value> <bookmark_value>inserting; sheets</bookmark_value> <bookmark_value>sheets; selecting multiple</bookmark_value> <bookmark_value>appending sheets</bookmark_value> <bookmark_value>selecting;multiple sheets</bookmark_value> <bookmark_value>multiple sheets</bookmark_value> <bookmark_value>calculating;multiple sheets</bookmark_value>"
-msgstr ""
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"hd_id3154759\n"
-"9\n"
-"help.text"
-msgid "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Applying Multiple Sheets\">Applying Multiple Sheets</link></variable>"
-msgstr ""
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"hd_id3148576\n"
-"10\n"
-"help.text"
-msgid "Inserting a Sheet"
-msgstr "Largo mbrojtjen nga fleta"
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"par_id3154731\n"
-"4\n"
-"help.text"
-msgid "Choose <item type=\"menuitem\">Insert - Sheet</item> to insert a new sheet or an existing sheet from another file."
-msgstr ""
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"par_id05092009140203598\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog box where you can assign macros to sheet events.</ahelp>"
-msgstr ""
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"par_id05092009140203523\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a window where you can assign a color to the sheet tab.</ahelp>"
-msgstr ""
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"par_id050920091402035\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to select all sheets in the document.</ahelp>"
-msgstr ""
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"par_id0509200914020391\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to deselect all sheets in the document, except the current sheet.</ahelp>"
-msgstr ""
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"hd_id3154491\n"
-"11\n"
-"help.text"
-msgid "Selecting Multiple Sheets"
-msgstr "Selekto të Gjitha Fletët"
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"par_id3145251\n"
-"6\n"
-"help.text"
-msgid "The sheet tab of the current sheet is always visible in white in front of the other sheet tabs. The other sheet tabs are gray when they are not selected. By clicking other sheet tabs while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> you can select multiple sheets."
-msgstr ""
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"par_idN106B7\n"
-"help.text"
-msgid "You can use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard."
-msgstr ""
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"hd_id3155600\n"
-"12\n"
-"help.text"
-msgid "Undoing a Selection"
-msgstr "Zgjedhja e databazës"
-
-#: multitables.xhp
-msgctxt ""
-"multitables.xhp\n"
-"par_id3146969\n"
-"13\n"
-"help.text"
-msgid "To undo the selection of a sheet, click its sheet tab again while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key. The sheet that is currently visible cannot be removed from the selection."
+msgid "In the example spreadsheet, you can use the string <item type=\"literal\">'Column One'</item> in a formula to refer to the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">B5</item>, or <item type=\"literal\">'Column Two'</item> for the cell range <item type=\"literal\">C2</item> to <item type=\"literal\">C5</item>. You can also use <item type=\"literal\">'Row One'</item> for the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">D3</item>, or <item type=\"literal\">'Row Two'</item> for the cell range <item type=\"literal\">B4</item> to <item type=\"literal\">D4</item>. The result of a formula that uses a cell name, for example, <item type=\"literal\">SUM('Column One')</item>, is 600."
msgstr ""
-#: multitables.xhp
+#: address_auto.xhp
msgctxt ""
-"multitables.xhp\n"
-"hd_id3156382\n"
-"15\n"
+"address_auto.xhp\n"
+"par_id3155443\n"
+"24\n"
"help.text"
-msgid "Calculating Across Multiple Sheets"
+msgid "This function is active by default. To turn this function off, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph> and clear the <emph>Automatically find column and row labels</emph> check box."
msgstr ""
-#: multitables.xhp
+#: address_auto.xhp
msgctxt ""
-"multitables.xhp\n"
-"par_id3155333\n"
-"16\n"
+"address_auto.xhp\n"
+"par_id3149210\n"
+"37\n"
"help.text"
-msgid "You can refer to a range of sheets in a formula by specifying the first and last sheet of the range, for example, <item type=\"literal\">=SUM(Sheet1.A1:Sheet3.A1) </item>sums up all A1 cells on Sheet1 through Sheet3."
+msgid "If you want a name to be automatically recognized by Calc, the name must start with a letter and be composed of alphanumeric characters. If you enter the name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must enter a backslash in front of the quotation mark, for example, <item type=\"literal\">'Harry\\'s Bar'.</item>"
msgstr ""
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
+"auto_off.xhp\n"
"tit\n"
"help.text"
-msgid "Formatting Spreadsheets"
-msgstr "Formatizimi i hyrjeve"
+msgid "Deactivating Automatic Changes"
+msgstr "Mbroje regjistrin e ndryshimeve"
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"bm_id3154125\n"
+"auto_off.xhp\n"
+"bm_id3149456\n"
"help.text"
-msgid "<bookmark_value>text in cells; formatting</bookmark_value><bookmark_value>spreadsheets;formatting</bookmark_value><bookmark_value>backgrounds;cells and pages</bookmark_value><bookmark_value>borders;cells and pages</bookmark_value><bookmark_value>formatting;spreadsheets</bookmark_value><bookmark_value>numbers; formatting options for selected cells</bookmark_value><bookmark_value>cells; number formats</bookmark_value><bookmark_value>currencies;formats</bookmark_value>"
+msgid "<bookmark_value>deactivating; automatic changes</bookmark_value> <bookmark_value>tables; deactivating automatic changes in</bookmark_value> <bookmark_value>AutoInput function on/off</bookmark_value> <bookmark_value>text in cells;AutoInput function</bookmark_value> <bookmark_value>cells; AutoInput function of text</bookmark_value> <bookmark_value>input support in spreadsheets</bookmark_value> <bookmark_value>changing; input in cells</bookmark_value> <bookmark_value>AutoCorrect function;cell contents</bookmark_value> <bookmark_value>cell input;AutoInput function</bookmark_value> <bookmark_value>lowercase letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>capital letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>date formats;avoiding conversion to</bookmark_value> <bookmark_value>number completion on/off</bookmark_value> <bookmark_value>text completion on/off</bookmark_value> <bookmark_value>word completion on/off</bookmark_value>"
msgstr ""
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"hd_id3154125\n"
-"6\n"
+"auto_off.xhp\n"
+"hd_id3149456\n"
+"1\n"
"help.text"
-msgid "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Designing Spreadsheets\">Formatting Spreadsheets</link></variable>"
+msgid "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Deactivating Automatic Changes\">Deactivating Automatic Changes</link></variable>"
msgstr ""
-#: format_table.xhp
-msgctxt ""
-"format_table.xhp\n"
-"hd_id3153912\n"
-"13\n"
-"help.text"
-msgid "Formatting Text in a Spreadsheet"
-msgstr "Trego ndryshimet në tabelar"
-
-#: format_table.xhp
-msgctxt ""
-"format_table.xhp\n"
-"par_id3144772\n"
-"14\n"
-"help.text"
-msgid "Select the text you want to format."
-msgstr "A dëshironi të kontrolloni tekstin kryesor?"
-
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id3155268\n"
-"15\n"
+"auto_off.xhp\n"
+"par_id3156442\n"
+"2\n"
"help.text"
-msgid "Choose the desired text attributes from the <emph>Formatting </emph>Bar. You can also choose <emph>Format - Cells</emph>. The <emph>Format Cells</emph> dialog will appear in which you can choose various text attributes on the <emph>Font</emph> tab page."
+msgid "By default, $[officename] automatically corrects many common typing errors and applies formatting while you type. You can immediately undo any automatic changes with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z."
msgstr ""
-#: format_table.xhp
-msgctxt ""
-"format_table.xhp\n"
-"hd_id3149899\n"
-"16\n"
-"help.text"
-msgid "Formatting Numbers in a Spreadsheet"
-msgstr "Trego ndryshimet në tabelar"
-
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id3159226\n"
-"17\n"
+"auto_off.xhp\n"
+"par_id3145273\n"
+"3\n"
"help.text"
-msgid "Select the cells containing the numbers you want to format."
+msgid "The following shows you how to deactivate and reactivate the automatic changes in $[officename] Calc:"
msgstr ""
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id3150046\n"
-"18\n"
+"auto_off.xhp\n"
+"hd_id3145748\n"
+"4\n"
"help.text"
-msgid "To format numbers in the default currency format or as percentages, use the icons on the <emph>Formatting </emph>Bar. For other formats, choose <emph>Format - Cells</emph>. You can choose from the preset formats or define your own on the <emph>Numbers</emph> tab page."
+msgid "Automatic Text or Number Completion"
msgstr ""
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"hd_id3153483\n"
-"19\n"
+"auto_off.xhp\n"
+"par_id3154730\n"
+"5\n"
"help.text"
-msgid "Formatting Borders and Backgrounds for Cells and Pages"
+msgid "When making an entry in a cell, $[officename] Calc automatically suggests matching input found in the same column. This function is known as <emph>AutoInput</emph>."
msgstr ""
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id3154733\n"
-"20\n"
+"auto_off.xhp\n"
+"par_id3153878\n"
+"6\n"
"help.text"
-msgid "You can assign a format to any group of cells by first selecting the cells (for multiple selection, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when clicking), and then activating the <emph>Format Cells</emph> dialog in <item type=\"menuitem\">Format - Cell</item>. In this dialog, you can select attributes such as shadows and backgrounds."
+msgid "To turn the AutoInput on and off, set or remove the check mark in front of <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\"><emph>Tools - Cell Contents - AutoInput</emph></link>."
msgstr ""
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id3145116\n"
+"auto_off.xhp\n"
+"hd_id3146972\n"
"21\n"
"help.text"
-msgid "To apply formatting attributes to an entire sheet, choose <emph>Format - Page</emph>. You can define headers and footers, for example, to appear on each printed page."
+msgid "Automatic Conversion to Date Format"
msgstr ""
-#: format_table.xhp
+#: auto_off.xhp
msgctxt ""
-"format_table.xhp\n"
-"par_id3145389\n"
+"auto_off.xhp\n"
+"par_id3153707\n"
"22\n"
"help.text"
-msgid "An image that you have loaded with <item type=\"menuitem\">Format - Page - Background</item> is only visible in print or in the page preview. To display a background image on screen as well, insert the graphic image by choosing <item type=\"menuitem\">Insert - Picture - From File</item> and arrange the image behind the cells by choosing <item type=\"menuitem\">Format - Arrange - To Background</item>. Use the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> to select the background image."
-msgstr ""
-
-#: format_table.xhp
-msgctxt ""
-"format_table.xhp\n"
-"par_id2837916\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\">Number Formatting Options</link>"
-msgstr ""
-
-#: format_table.xhp
-msgctxt ""
-"format_table.xhp\n"
-"par_id2614215\n"
-"help.text"
-msgid "<link href=\"text/scalc/guide/background.xhp\">Backgrounds for Cells</link>"
+msgid "$[officename] Calc automatically converts certain entries to dates. For example, the entry <emph>1.1</emph> may be interpreted as January 1 of the current year, according to the locale settings of your operating system, and then displayed according to the date format applied to the cell."
msgstr ""
-#: goalseek.xhp
-msgctxt ""
-"goalseek.xhp\n"
-"tit\n"
-"help.text"
-msgid "Applying Goal Seek"
-msgstr "Aktivizo Kërkuesin e Qëllimit"
-
-#: goalseek.xhp
+#: auto_off.xhp
msgctxt ""
-"goalseek.xhp\n"
-"bm_id3145068\n"
+"auto_off.xhp\n"
+"par_id3159267\n"
+"23\n"
"help.text"
-msgid "<bookmark_value>goal seeking;example</bookmark_value><bookmark_value>equations in goal seek</bookmark_value><bookmark_value>calculating;variables in equations</bookmark_value><bookmark_value>variables;calculating equations</bookmark_value><bookmark_value>examples;goal seek</bookmark_value>"
+msgid "To ensure that an entry is interpreted as text, add an apostrophe at the beginning of the entry. The apostrophe is not displayed in the cell."
msgstr ""
-#: goalseek.xhp
+#: auto_off.xhp
msgctxt ""
-"goalseek.xhp\n"
-"hd_id3145068\n"
-"22\n"
+"auto_off.xhp\n"
+"hd_id3150043\n"
+"7\n"
"help.text"
-msgid "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Applying Goal Seek\">Applying Goal Seek</link></variable>"
+msgid "Quotation Marks Replaced by Custom Quotes"
msgstr ""
-#: goalseek.xhp
+#: auto_off.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3145171\n"
-"2\n"
+"auto_off.xhp\n"
+"par_id3155333\n"
+"9\n"
"help.text"
-msgid "With the help of Goal Seek you can calculate a value that, as part of a formula, leads to the result you specify for the formula. You thus define the formula with several fixed values and one variable value and the result of the formula."
+msgid "Choose <emph>Tools - AutoCorrect Options</emph>. Go to the <emph>Localized Options</emph> tab and unmark <emph>Replace</emph>."
msgstr ""
-#: goalseek.xhp
-msgctxt ""
-"goalseek.xhp\n"
-"hd_id3153966\n"
-"14\n"
-"help.text"
-msgid "Goal Seek Example"
-msgstr "Aktivizo Kërkuesin e Qëllimit"
-
-#: goalseek.xhp
+#: auto_off.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3150871\n"
-"4\n"
+"auto_off.xhp\n"
+"hd_id3149565\n"
+"11\n"
"help.text"
-msgid "To calculate annual interest (I), create a table with the values for the capital (C), number of years (n), and interest rate (i). The formula is:"
+msgid "Cell Content Always Begins With Uppercase"
msgstr ""
-#: goalseek.xhp
+#: auto_off.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3152596\n"
-"5\n"
+"auto_off.xhp\n"
+"par_id3147001\n"
+"13\n"
"help.text"
-msgid "I = C * n* i"
+msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Options</item> tab. Unmark <item type=\"menuitem\">Capitalize first letter of every sentence</item>."
msgstr ""
-#: goalseek.xhp
+#: auto_off.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3155335\n"
+"auto_off.xhp\n"
+"hd_id3150345\n"
"15\n"
"help.text"
-msgid "Let us assume that the interest rate <item type=\"literal\">i</item> of 7.5% and the number of years <item type=\"literal\">n</item> (1) will remain constant. However, you want to know how much the investment capital <item type=\"literal\">C</item> would have to be modified in order to attain a particular return <item type=\"literal\">I</item>. For this example, calculate how much capital <item type=\"literal\">C</item> would be required if you want an annual return of $15,000."
-msgstr ""
-
-#: goalseek.xhp
-msgctxt ""
-"goalseek.xhp\n"
-"par_id3155960\n"
-"6\n"
-"help.text"
-msgid "Enter each of the values for Capital <item type=\"literal\">C</item> (an arbitrary value like <item type=\"literal\">$100,000</item>), number of years <item type=\"literal\">n </item>(<item type=\"literal\">1</item>), and interest rate <item type=\"literal\">i</item> (<item type=\"literal\">7.5%</item>) in one cell each. Enter the formula to calculate the interest <item type=\"literal\">I</item> in another cell. Instead of <item type=\"literal\">C</item>, <item type=\"literal\">n</item>, and <item type=\"literal\">i</item> use the <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">reference to the cell</link> with the corresponding value."
-msgstr ""
-
-#: goalseek.xhp
-msgctxt ""
-"goalseek.xhp\n"
-"par_id3147001\n"
-"16\n"
-"help.text"
-msgid "Place the cursor in the cell containing the interest <item type=\"literal\">I</item>, and choose <emph>Tools - Goal Seek</emph>. The <emph>Goal Seek</emph> dialog appears."
-msgstr ""
+msgid "Replace Word With Another Word"
+msgstr "Zëvendëso të 1rën... me të 1^rën..."
-#: goalseek.xhp
+#: auto_off.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3150088\n"
+"auto_off.xhp\n"
+"par_id3166425\n"
"17\n"
"help.text"
-msgid "The correct cell is already entered in the field <emph>Formula Cell</emph>."
-msgstr ""
-
-#: goalseek.xhp
-msgctxt ""
-"goalseek.xhp\n"
-"par_id3166426\n"
-"18\n"
-"help.text"
-msgid "Place the cursor in the field <emph>Variable Cell</emph>. In the sheet, click in the cell that contains the value to be changed, in this example it is the cell with the capital value <item type=\"literal\">C</item>."
+msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Replace</item> tab. Select the word pair and click <item type=\"menuitem\">Delete</item>."
msgstr ""
-#: goalseek.xhp
+#: auto_off.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3150369\n"
+"auto_off.xhp\n"
+"par_id3152992\n"
"19\n"
"help.text"
-msgid "Enter the expected result of the formula in the <emph>Target Value</emph> text box. In this example, the value is 15,000. Click <emph>OK</emph>."
+msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\">Tools - Cell Contents - AutoInput</link>"
msgstr ""
-#: goalseek.xhp
+#: auto_off.xhp
msgctxt ""
-"goalseek.xhp\n"
-"par_id3146978\n"
+"auto_off.xhp\n"
+"par_id3154368\n"
"20\n"
"help.text"
-msgid "A dialog appears informing you that the Goal Seek was successful. Click <emph>Yes</emph> to enter the result in the cell with the variable value."
-msgstr ""
-
-#: goalseek.xhp
-msgctxt ""
-"goalseek.xhp\n"
-"par_id3149409\n"
-"23\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
-msgstr ""
-
-#: fraction_enter.xhp
-msgctxt ""
-"fraction_enter.xhp\n"
-"tit\n"
-"help.text"
-msgid "Entering Fractions"
-msgstr ""
-
-#: fraction_enter.xhp
-msgctxt ""
-"fraction_enter.xhp\n"
-"bm_id3155411\n"
-"help.text"
-msgid "<bookmark_value>fractions; entering</bookmark_value><bookmark_value>numbers; entering fractions </bookmark_value><bookmark_value>inserting;fractions</bookmark_value>"
-msgstr ""
-
-#: fraction_enter.xhp
-msgctxt ""
-"fraction_enter.xhp\n"
-"hd_id3155411\n"
-"41\n"
-"help.text"
-msgid "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Entering Fractions \">Entering Fractions </link></variable>"
-msgstr ""
-
-#: fraction_enter.xhp
-msgctxt ""
-"fraction_enter.xhp\n"
-"par_id3153968\n"
-"40\n"
-"help.text"
-msgid "You can enter a fractional number in a cell and use it for calculation:"
-msgstr ""
-
-#: fraction_enter.xhp
-msgctxt ""
-"fraction_enter.xhp\n"
-"par_id3155133\n"
-"42\n"
-"help.text"
-msgid "Enter \"0 1/5\" in a cell (without the quotation marks) and press the input key. In the input line above the spreadsheet you will see the value 0.2, which is used for the calculation."
-msgstr ""
-
-#: fraction_enter.xhp
-msgctxt ""
-"fraction_enter.xhp\n"
-"par_id3145750\n"
-"43\n"
-"help.text"
-msgid "If you enter \"0 1/2\" AutoCorrect causes the three characters 1, / and 2 to be replaced by a single character. The same applies to 1/4 and 3/4. This replacement is defined in <emph>Tools - AutoCorrect Options - Options</emph> tab."
-msgstr ""
-
-#: fraction_enter.xhp
-msgctxt ""
-"fraction_enter.xhp\n"
-"par_id3145367\n"
-"44\n"
-"help.text"
-msgid "If you want to see multi-digit fractions such as \"1/10\", you must change the cell format to the multi-digit fraction view. Open the context menu of the cell, and choose <emph>Format cells. </emph>Select \"Fraction\" from the <emph>Category</emph> field, and then select \"-1234 10/81\". You can then enter fractions such as 12/31 or 12/32 - the fractions are, however, automatically reduced, so that in the last example you would see 3/8."
-msgstr ""
-
-#: datapilot_filtertable.xhp
-#, fuzzy
-msgctxt ""
-"datapilot_filtertable.xhp\n"
-"tit\n"
-"help.text"
-msgid "Filtering Pivot Tables"
-msgstr "DataPilot tabelat nuk mund të mbulojnë njëra tjetrën."
-
-#: datapilot_filtertable.xhp
-#, fuzzy
-msgctxt ""
-"datapilot_filtertable.xhp\n"
-"bm_id3150792\n"
-"help.text"
-msgid "<bookmark_value>pivot table function; filtering tables</bookmark_value><bookmark_value>filtering;pivot tables</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: datapilot_filtertable.xhp
-msgctxt ""
-"datapilot_filtertable.xhp\n"
-"hd_id3150792\n"
-"help.text"
-msgid "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Filtering Pivot Tables\">Filtering Pivot Tables</link></variable>"
-msgstr ""
-
-#: datapilot_filtertable.xhp
-msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id3153192\n"
-"help.text"
-msgid "You can use filters to remove unwanted data from a pivot table."
-msgstr ""
-
-#: datapilot_filtertable.xhp
-msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id3150441\n"
-"help.text"
-msgid "Click the <emph>Filter</emph> button in the sheet to call up the dialog for the filter conditions. Alternatively, call up the context menu of the pivot table and select the <emph>Filter</emph> command. The <link href=\"text/scalc/01/12090103.xhp\" name=\"Filter\"><emph>Filter</emph></link> dialog appears. Here you can filter the pivot table."
-msgstr ""
-
-#: datapilot_filtertable.xhp
-msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id315044199\n"
-"help.text"
-msgid "You can also click the arrow on a button in the pivot table to show a pop-up window. In this pop-up window, you can edit the visibility settings of the associated field."
-msgstr ""
-
-#: datapilot_filtertable.xhp
-msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344485\n"
-"help.text"
-msgid "The pop-up window displays a list of field members associated with that field. A check box is placed to the left of each field member name. When a field has an alternative display name that differs from its original name, that name is displayed in the list."
-msgstr ""
-
-#: datapilot_filtertable.xhp
-msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344449\n"
-"help.text"
-msgid "Enable or disable a checkbox to show or hide the associated field member in the pivot table."
-msgstr ""
-
-#: datapilot_filtertable.xhp
-msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344493\n"
-"help.text"
-msgid "Enable or disable the <emph>All</emph> checkbox to show all or none of the field members."
-msgstr ""
-
-#: datapilot_filtertable.xhp
-msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344431\n"
-"help.text"
-msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Show only the current item</item> button to show only the selected field member. All other field members are hidden in the pivot table."
-msgstr ""
-
-#: datapilot_filtertable.xhp
-msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344484\n"
-"help.text"
-msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Hide only the current item</item> button to hide only the selected field member. All other field members are shown in the pivot table."
-msgstr ""
-
-#: datapilot_filtertable.xhp
-msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344578\n"
-"help.text"
-msgid "Commands enable you to sort the field members in ascending order, descending order, or using a custom sort list."
-msgstr ""
-
-#: datapilot_filtertable.xhp
-msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344584\n"
-"help.text"
-msgid "To edit the custom sort lists, open <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists."
-msgstr ""
-
-#: datapilot_filtertable.xhp
-msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344811\n"
-"help.text"
-msgid "The arrow to open the pop-up window is normally black. When the field contains one or more hidden field members, the arrow is blue and displays a tiny square at its lower-right corner."
-msgstr ""
-
-#: datapilot_filtertable.xhp
-msgctxt ""
-"datapilot_filtertable.xhp\n"
-"par_id0720201001344884\n"
-"help.text"
-msgid "You can also open the pop-up window by positioning the cell cursor at the button and pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+D."
+msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"Tools - AutoCorrect\">Tools - AutoCorrect Options</link>"
msgstr ""
-#: table_rotate.xhp
+#: autofilter.xhp
msgctxt ""
-"table_rotate.xhp\n"
+"autofilter.xhp\n"
"tit\n"
"help.text"
-msgid "Rotating Tables (Transposing)"
-msgstr "E hyra në tabela"
-
-#: table_rotate.xhp
-msgctxt ""
-"table_rotate.xhp\n"
-"bm_id3154346\n"
-"help.text"
-msgid "<bookmark_value>tables; transposing</bookmark_value><bookmark_value>transposing tables</bookmark_value><bookmark_value>inverting tables</bookmark_value><bookmark_value>swapping tables</bookmark_value><bookmark_value>columns; swap with rows</bookmark_value><bookmark_value>rows; swapping with columns</bookmark_value><bookmark_value>tables; rotating</bookmark_value><bookmark_value>rotating; tables</bookmark_value>"
-msgstr ""
-
-#: table_rotate.xhp
-msgctxt ""
-"table_rotate.xhp\n"
-"hd_id3154346\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate.xhp\" name=\"Rotating Tables (Transposing)\">Rotating Tables (Transposing)</link></variable>"
-msgstr ""
-
-#: table_rotate.xhp
-msgctxt ""
-"table_rotate.xhp\n"
-"par_id3154013\n"
-"2\n"
-"help.text"
-msgid "In $[officename] Calc, there is a way to \"rotate\" a spreadsheet so that rows become columns and columns become rows."
-msgstr ""
+msgid "Applying AutoFilter"
+msgstr "~Fshehe Filtrin Automatik"
-#: table_rotate.xhp
+#: autofilter.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"par_id3153142\n"
-"3\n"
+"autofilter.xhp\n"
+"bm_id3156423\n"
"help.text"
-msgid "Select the cell range that you want to transpose."
+msgid "<bookmark_value>filters, see also AutoFilter function</bookmark_value> <bookmark_value>AutoFilter function;applying</bookmark_value> <bookmark_value>sheets; filter values</bookmark_value> <bookmark_value>numbers; filter sheets</bookmark_value> <bookmark_value>columns; AutoFilter function</bookmark_value> <bookmark_value>drop-down menus in sheet columns</bookmark_value> <bookmark_value>database ranges; AutoFilter function</bookmark_value>"
msgstr ""
-#: table_rotate.xhp
-msgctxt ""
-"table_rotate.xhp\n"
-"par_id3153191\n"
-"4\n"
-"help.text"
-msgid "Choose <emph>Edit - Cut</emph>."
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: table_rotate.xhp
+#: autofilter.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"par_id3148575\n"
+"autofilter.xhp\n"
+"hd_id3156423\n"
"6\n"
"help.text"
-msgid "Click the cell that is to be the top left cell in the result."
+msgid "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Applying AutoFilter\">Applying AutoFilter</link></variable>"
msgstr ""
-#: table_rotate.xhp
+#: autofilter.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"par_id3156286\n"
+"autofilter.xhp\n"
+"par_id3147427\n"
"7\n"
"help.text"
-msgid "Choose <emph>Edit - Paste Special</emph>."
-msgstr ""
-
-#: table_rotate.xhp
-msgctxt ""
-"table_rotate.xhp\n"
-"par_id3144764\n"
-"8\n"
-"help.text"
-msgid "In the dialog, mark <emph>Paste all</emph> and <emph>Transpose</emph>."
+msgid "The <emph>AutoFilter</emph> function inserts a combo box on one or more data columns that lets you select the records (rows) to be displayed."
msgstr ""
-#: table_rotate.xhp
+#: autofilter.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"par_id3155600\n"
+"autofilter.xhp\n"
+"par_id3152576\n"
"9\n"
"help.text"
-msgid "If you now click OK the columns and rows are transposed."
+msgid "Select the columns you want to use AutoFilter on."
msgstr ""
-#: table_rotate.xhp
+#: autofilter.xhp
msgctxt ""
-"table_rotate.xhp\n"
-"par_id3146969\n"
+"autofilter.xhp\n"
+"par_id3153157\n"
"10\n"
"help.text"
-msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
-msgstr ""
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"tit\n"
-"help.text"
-msgid "Inserting External Data in Table (WebQuery)"
-msgstr ""
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"bm_id3154346\n"
-"help.text"
-msgid "<bookmark_value>HTML WebQuery</bookmark_value><bookmark_value>ranges; inserting in tables</bookmark_value><bookmark_value>external data; inserting</bookmark_value><bookmark_value>tables; inserting external data</bookmark_value><bookmark_value>web pages; importing data</bookmark_value><bookmark_value>WebQuery filter</bookmark_value><bookmark_value>inserting; external data</bookmark_value><bookmark_value>data sources; external data</bookmark_value>"
-msgstr ""
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"hd_id3125863\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\" name=\"Inserting External Data in Table (WebQuery)\">Inserting External Data in Table (WebQuery)</link></variable>"
-msgstr ""
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"par_id3155131\n"
-"3\n"
-"help.text"
-msgid "With the help of the <emph>Web Page Query ($[officename] Calc)</emph> import filter, you can insert tables from HTML documents in a Calc spreadsheet."
-msgstr ""
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"par_id3148575\n"
-"4\n"
-"help.text"
-msgid "You can use the same method to insert ranges defined by name from a Calc or Microsoft Excel spreadsheet."
-msgstr ""
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"par_id3149664\n"
-"5\n"
-"help.text"
-msgid "The following insert methods are available:"
-msgstr ""
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"hd_id3146976\n"
-"6\n"
-"help.text"
-msgid "Inserting by Dialog"
-msgstr "**Pjesëtim me zero**"
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"par_id3154319\n"
-"7\n"
-"help.text"
-msgid "Set the cell cursor at the cell where the new content will be inserted."
-msgstr ""
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"par_id3145750\n"
-"8\n"
-"help.text"
-msgid "Choose <emph>Insert - Link to External Data</emph>. This opens the <link href=\"text/scalc/01/04090000.xhp\">External Data</link> dialog."
-msgstr ""
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"par_id3149958\n"
-"9\n"
-"help.text"
-msgid "Enter the URL of the HTML document or the name of the spreadsheet. Press Enter when finished. Click the <emph>...</emph> button to open a file selection dialog."
+msgid "Choose <emph>Data - Filter - AutoFilter</emph>. The combo box arrows are visible in the first row of the range selected."
msgstr ""
-#: webquery.xhp
+#: autofilter.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3149400\n"
-"10\n"
+"autofilter.xhp\n"
+"par_id3154510\n"
+"11\n"
"help.text"
-msgid "In the large list box of the dialog, select the named ranges or tables you want to insert."
+msgid "Run the filter by clicking the drop-down arrow in the column heading and choosing an item."
msgstr ""
-#: webquery.xhp
+#: autofilter.xhp
msgctxt ""
-"webquery.xhp\n"
+"autofilter.xhp\n"
"par_id3155064\n"
-"11\n"
+"13\n"
"help.text"
-msgid "You can also specify that the ranges or tables are updated every n seconds."
+msgid "Only those rows whose contents meet the filter criteria are displayed. The other rows are filtered. You can see if rows have been filtered from the discontinuous row numbers. The column that has been used for the filter is identified by a different color for the arrow button."
msgstr ""
-#: webquery.xhp
+#: autofilter.xhp
msgctxt ""
-"webquery.xhp\n"
-"par_id3155443\n"
-"30\n"
+"autofilter.xhp\n"
+"par_id9216589\n"
"help.text"
-msgid "The import filter can create names for cell ranges on the fly. As much formatting as possible is retained, while the filter intentionally does not load any images."
+msgid "When you apply an additional AutoFilter on another column of a filtered data range, then the other combo boxes list only the filtered data."
msgstr ""
-#: webquery.xhp
+#: autofilter.xhp
msgctxt ""
-"webquery.xhp\n"
-"hd_id3149021\n"
+"autofilter.xhp\n"
+"par_id3153714\n"
"12\n"
"help.text"
-msgid "Inserting by Navigator"
-msgstr "Navigator kyçur/çkyçur"
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"par_id3153965\n"
-"14\n"
-"help.text"
-msgid "Open two documents: the $[officename] Calc spreadsheet in which the external data is to be inserted (target document) and the document from which the external data derives (source document)."
-msgstr ""
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"par_id3150205\n"
-"16\n"
-"help.text"
-msgid "In the target document open the Navigator."
-msgstr "Hape këtë dokument në modin vetëm-lexo"
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"par_id3152990\n"
-"18\n"
-"help.text"
-msgid "In the lower combo box of the Navigator select the source document. The Navigator now shows the range names and database ranges or the tables contained in the source document."
-msgstr ""
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"par_id3148842\n"
-"20\n"
-"help.text"
-msgid "In the Navigator select the <emph>Insert as link</emph> drag mode <image id=\"img_id3152985\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Icon</alt></image>."
-msgstr ""
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"par_id3157978\n"
-"22\n"
-"help.text"
-msgid "Drag the desired external data from the Navigator into the target document."
-msgstr ""
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"par_id3144768\n"
-"23\n"
-"help.text"
-msgid "If you have loaded an HTML document with the <emph>Web Page Query</emph> filter as the source document, you will find the tables in the Navigator, named continuously from \"HTML_table1\" onwards, and also two range names that have been created:"
-msgstr ""
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"par_id3152873\n"
-"24\n"
-"help.text"
-msgid "<item type=\"literal\">HTML_all</item> - designates the entire document"
-msgstr ""
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"par_id3149897\n"
-"25\n"
-"help.text"
-msgid "<item type=\"literal\">HTML_tables</item> - designates all HTML tables in the document"
-msgstr ""
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"hd_id3149126\n"
-"26\n"
-"help.text"
-msgid "Editing the external data"
-msgstr "Burime tjera të jashtme të të dhënave"
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"par_id3159228\n"
-"27\n"
-"help.text"
-msgid "Open <emph>Edit - Links</emph>. Here you can edit the link to the external data."
-msgstr ""
-
-#: webquery.xhp
-msgctxt ""
-"webquery.xhp\n"
-"par_id3154650\n"
-"28\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External data dialog\">External data dialog</link>"
-msgstr ""
-
-#: cellcopy.xhp
-msgctxt ""
-"cellcopy.xhp\n"
-"tit\n"
-"help.text"
-msgid "Only Copy Visible Cells"
-msgstr ""
-
-#: cellcopy.xhp
-msgctxt ""
-"cellcopy.xhp\n"
-"bm_id3150440\n"
-"help.text"
-msgid "<bookmark_value>cells; copying/deleting/formatting/moving</bookmark_value> <bookmark_value>rows;visible and invisible</bookmark_value> <bookmark_value>copying; visible cells only</bookmark_value> <bookmark_value>formatting;visible cells only</bookmark_value> <bookmark_value>moving;visible cells only</bookmark_value> <bookmark_value>deleting;visible cells only</bookmark_value> <bookmark_value>invisible cells</bookmark_value> <bookmark_value>filters;copying visible cells only</bookmark_value> <bookmark_value>hidden cells</bookmark_value>"
-msgstr ""
-
-#: cellcopy.xhp
-msgctxt ""
-"cellcopy.xhp\n"
-"hd_id3150440\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" name=\"Only Copy Visible Cells\">Only Copy Visible Cells</link></variable>"
-msgstr ""
-
-#: cellcopy.xhp
-msgctxt ""
-"cellcopy.xhp\n"
-"par_id3148577\n"
-"2\n"
-"help.text"
-msgid "Assume you have hidden a few rows in a cell range. Now you want to copy, delete, or format only the remaining visible rows."
-msgstr ""
-
-#: cellcopy.xhp
-msgctxt ""
-"cellcopy.xhp\n"
-"par_id3154729\n"
-"3\n"
-"help.text"
-msgid "$[officename] behavior depends on how the cells were made invisible, by a filter or manually."
-msgstr ""
-
-#: cellcopy.xhp
-msgctxt ""
-"cellcopy.xhp\n"
-"par_id3155603\n"
-"4\n"
-"help.text"
-msgid "Method and Action"
-msgstr "Fillo veprimin e objektit"
-
-#: cellcopy.xhp
-msgctxt ""
-"cellcopy.xhp\n"
-"par_id3150751\n"
-"5\n"
-"help.text"
-msgid "Result"
-msgstr "Rezultat"
-
-#: cellcopy.xhp
-msgctxt ""
-"cellcopy.xhp\n"
-"par_id3149018\n"
-"6\n"
-"help.text"
-msgid "Cells were filtered by AutoFilters, standard filters or advanced filters."
-msgstr ""
-
-#: cellcopy.xhp
-msgctxt ""
-"cellcopy.xhp\n"
-"par_id3150044\n"
-"7\n"
-"help.text"
-msgid "Copy, delete, move, or format a selection of currently visible cells."
-msgstr ""
-
-#: cellcopy.xhp
-msgctxt ""
-"cellcopy.xhp\n"
-"par_id3146918\n"
-"8\n"
-"help.text"
-msgid "Only the visible cells of the selection are copied, deleted, moved, or formatted."
+msgid "To display all records again, select the \"all<emph>\"</emph> entry in the AutoFilter combo box. If you choose \"Standard<emph>\"</emph>, the <item type=\"menuitem\">Standard Filter</item> dialog appears, allowing you to set up a standard filter. Choose \"Top 10\" to display the highest 10 values only."
msgstr ""
-#: cellcopy.xhp
+#: autofilter.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3166427\n"
-"12\n"
+"autofilter.xhp\n"
+"par_id3147340\n"
+"19\n"
"help.text"
-msgid "Cells were hidden using the <emph>Hide</emph> command in the context menu of the row or column headers, or through an <link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">outline</link>."
+msgid "To stop using AutoFilter, reselect all cells selected in step 1 and once again choose <emph>Data - Filter - AutoFilter</emph>."
msgstr ""
-#: cellcopy.xhp
+#: autofilter.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3152990\n"
-"13\n"
+"autofilter.xhp\n"
+"par_id4303415\n"
"help.text"
-msgid "Copy, delete, move, or format a selection of currently visible cells."
+msgid "To assign different AutoFilters to different sheets, you must first define a database range on each sheet."
msgstr ""
-#: cellcopy.xhp
+#: autofilter.xhp
msgctxt ""
-"cellcopy.xhp\n"
-"par_id3154371\n"
+"autofilter.xhp\n"
+"par_id3159236\n"
"14\n"
"help.text"
-msgid "All cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted."
-msgstr ""
-
-#: datapilot_deletetable.xhp
-#, fuzzy
-msgctxt ""
-"datapilot_deletetable.xhp\n"
-"tit\n"
-"help.text"
-msgid "Deleting Pivot Tables"
-msgstr "DataPilot tabelat nuk mund të mbulojnë njëra tjetrën."
-
-#: datapilot_deletetable.xhp
-#, fuzzy
-msgctxt ""
-"datapilot_deletetable.xhp\n"
-"bm_id3153726\n"
-"help.text"
-msgid "<bookmark_value>pivot table function; deleting tables</bookmark_value> <bookmark_value>deleting;pivot tables</bookmark_value>"
-msgstr "Shndërron një vlerë në tekst."
-
-#: datapilot_deletetable.xhp
-msgctxt ""
-"datapilot_deletetable.xhp\n"
-"hd_id3153726\n"
-"31\n"
-"help.text"
-msgid "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Deleting Pivot Tables\">Deleting Pivot Tables</link></variable>"
-msgstr ""
-
-#: datapilot_deletetable.xhp
-msgctxt ""
-"datapilot_deletetable.xhp\n"
-"par_id3154014\n"
-"32\n"
-"help.text"
-msgid "In order to delete a pivot table, click any cell in the pivot table, then choose <emph>Delete</emph> in the context menu."
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"tit\n"
-"help.text"
-msgid "Converting Text to Numbers"
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"bm_id3145068\n"
-"help.text"
-msgid "<bookmark_value>formats; text as numbers</bookmark_value> <bookmark_value>time format conversion</bookmark_value> <bookmark_value>date formats;conversion</bookmark_value> <bookmark_value>converting;text, into numbers</bookmark_value>"
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"hd_id0908200901265171\n"
-"help.text"
-msgid "<variable id=\"numbers_text\"><link href=\"text/scalc/guide/numbers_text.xhp\" name=\"Converting Text to Numbers\">Converting Text to Numbers</link></variable>"
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265127\n"
-"help.text"
-msgid "Calc converts text inside cells to the respective numeric values if an unambiguous conversion is possible. If no conversion is possible, Calc returns a #VALUE! error."
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265196\n"
-"help.text"
-msgid "Only integer numbers including exponent are converted, and ISO 8601 dates and times in their extended formats with separators. Anything else, like fractional numbers with decimal separators or dates other than ISO 8601, is not converted, as the text string would be locale dependent. Leading and trailing blanks are ignored."
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265220\n"
-"help.text"
-msgid "The following ISO 8601 formats are converted:"
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265288\n"
-"help.text"
-msgid "CCYY-MM-DD"
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265267\n"
-"help.text"
-msgid "CCYY-MM-DDThh:mm"
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265248\n"
-"help.text"
-msgid "CCYY-MM-DDThh:mm:ss"
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265374\n"
-"help.text"
-msgid "CCYY-MM-DDThh:mm:ss,s"
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265327\n"
-"help.text"
-msgid "CCYY-MM-DDThh:mm:ss.s"
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265399\n"
-"help.text"
-msgid "hh:mm"
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265347\n"
-"help.text"
-msgid "hh:mm:ss"
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265349\n"
-"help.text"
-msgid "hh:mm:ss,s"
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265342\n"
-"help.text"
-msgid "hh:mm:ss.s"
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265491\n"
-"help.text"
-msgid "The century code CC may not be omitted. Instead of the T date and time separator, exactly one space character may be used."
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265467\n"
-"help.text"
-msgid "If a date is given, it must be a valid Gregorian calendar date. In this case the optional time must be in the range 00:00 to 23:59:59.99999..."
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265420\n"
-"help.text"
-msgid "If only a time string is given, it may have an hours value of more than 24, while minutes and seconds can have a maximum value of 59."
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265448\n"
-"help.text"
-msgid "The conversion is done for single arguments only, as in =A1+A2, or =\"1E2\"+1. Cell range arguments are not affected, so SUM(A1:A2) differs from A1+A2 if at least one of the two cells contain a convertible string."
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id090820090126540\n"
-"help.text"
-msgid "Strings inside formulas are also converted, such as in =\"1999-11-22\"+42, which returns the date 42 days after November 22nd, 1999. Calculations involving localized dates as strings inside the formula return an error. For example, the localized date string \"11/22/1999\" or \"22.11.1999\" cannot be used for the automatic conversion."
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"hd_id1005200903485368\n"
-"help.text"
-msgid "Example"
-msgstr "Shembuj:"
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id1005200903485359\n"
-"help.text"
-msgid "In A1 enter the text <item type=\"literal\">'1e2</item> (which is converted to the number 100 internally)."
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id1005200903485341\n"
-"help.text"
-msgid "In A2 enter <item type=\"literal\">=A1+1</item> (which correctly results in 101)."
-msgstr ""
-
-#: numbers_text.xhp
-msgctxt ""
-"numbers_text.xhp\n"
-"par_id0908200901265544\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
-msgstr ""
-
-#: note_insert.xhp
-msgctxt ""
-"note_insert.xhp\n"
-"tit\n"
-"help.text"
-msgid "Inserting and Editing Comments"
-msgstr "Korrespondenca personale dhe dokumentet"
-
-#: note_insert.xhp
-msgctxt ""
-"note_insert.xhp\n"
-"bm_id3153968\n"
-"help.text"
-msgid "<bookmark_value>comments; on cells</bookmark_value> <bookmark_value>cells;comments</bookmark_value> <bookmark_value>remarks on cells</bookmark_value> <bookmark_value>formatting;comments on cells</bookmark_value> <bookmark_value>viewing;comments on cells</bookmark_value> <bookmark_value>displaying; comments</bookmark_value>"
-msgstr ""
-
-#: note_insert.xhp
-msgctxt ""
-"note_insert.xhp\n"
-"hd_id3153968\n"
-"31\n"
-"help.text"
-msgid "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.xhp\" name=\"Inserting and Editing Comments\">Inserting and Editing Comments</link></variable>"
-msgstr ""
-
-#: note_insert.xhp
-msgctxt ""
-"note_insert.xhp\n"
-"par_id3150440\n"
-"32\n"
-"help.text"
-msgid "You can assign a comment to each cell by choosing <link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\"><emph>Insert - Comment</emph></link>. The comment is indicated by a small red square, the comment indicator, in the cell."
-msgstr ""
-
-#: note_insert.xhp
-msgctxt ""
-"note_insert.xhp\n"
-"par_id3145750\n"
-"34\n"
-"help.text"
-msgid "The comment is visible whenever the mouse pointer is over the cell, provided you have activated <emph>Help - Tips</emph> or - <emph>Extended Tips</emph>."
-msgstr ""
-
-#: note_insert.xhp
-msgctxt ""
-"note_insert.xhp\n"
-"par_id3148575\n"
-"33\n"
-"help.text"
-msgid "When you select the cell, you can choose <emph>Show Comment</emph> from the context menu of the cell. Doing so keeps the comment visible until you deactivate the <emph>Show Comment</emph> command from the same context menu."
-msgstr ""
-
-#: note_insert.xhp
-msgctxt ""
-"note_insert.xhp\n"
-"par_id3149958\n"
-"35\n"
-"help.text"
-msgid "To edit a permanently visible comment, just click in it. If you delete the entire text of the comment, the comment itself is deleted."
-msgstr ""
-
-#: note_insert.xhp
-msgctxt ""
-"note_insert.xhp\n"
-"par_idN10699\n"
-"help.text"
-msgid "Move or resize each comment as you like."
-msgstr ""
-
-#: note_insert.xhp
-msgctxt ""
-"note_insert.xhp\n"
-"par_idN1069D\n"
-"help.text"
-msgid "Format each comment by specifying background color, transparency, border style, and text alignment. Choose the commands from the context menu of the comment."
-msgstr ""
-
-#: note_insert.xhp
-msgctxt ""
-"note_insert.xhp\n"
-"par_id3144764\n"
-"38\n"
-"help.text"
-msgid "To show or hide the comment indicator, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph> and mark or unmark the <emph>Comment indicator</emph> check box."
+msgid "The arithmetic functions also take account of the cells that are not visible due to an applied filter. For example, a sum of an entire column will also total the values in the filtered cells. Apply the <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link> function if only the cells visible after the application of a filter are to be taken into account."
msgstr ""
-#: note_insert.xhp
+#: autofilter.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_id3150715\n"
-"39\n"
+"autofilter.xhp\n"
+"par_id3152985\n"
+"16\n"
"help.text"
-msgid "To display a help tip for a selected cell, use <emph>Data - Validity - Input Help</emph>."
+msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFilter\">Data - Filter - AutoFilter</link>"
msgstr ""
-#: note_insert.xhp
+#: autofilter.xhp
msgctxt ""
-"note_insert.xhp\n"
-"par_id3153707\n"
-"36\n"
+"autofilter.xhp\n"
+"par_id3154484\n"
+"17\n"
"help.text"
-msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\">Insert - Comment</link>"
+msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link>"
msgstr ""
#: autoformat.xhp
@@ -1710,1371 +555,1069 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/05110000.xhp\" name=\"Format - AutoFormat\">Format - AutoFormat</link>"
msgstr ""
-#: table_view.xhp
+#: background.xhp
msgctxt ""
-"table_view.xhp\n"
+"background.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Table Views"
-msgstr "Shiriti i Objektit Tabelë"
+msgid "Defining Background Colors or Background Graphics"
+msgstr ""
-#: table_view.xhp
+#: background.xhp
msgctxt ""
-"table_view.xhp\n"
-"bm_id3147304\n"
+"background.xhp\n"
+"bm_id3149346\n"
"help.text"
-msgid "<bookmark_value>row headers; hiding</bookmark_value><bookmark_value>column headers; hiding</bookmark_value><bookmark_value>tables; views</bookmark_value><bookmark_value>views; tables</bookmark_value><bookmark_value>grids;hiding lines in sheets</bookmark_value><bookmark_value>hiding;headers/grid lines</bookmark_value><bookmark_value>changing;table views</bookmark_value>"
+msgid "<bookmark_value>spreadsheets; backgrounds</bookmark_value> <bookmark_value>backgrounds;cell ranges</bookmark_value> <bookmark_value>tables; backgrounds</bookmark_value> <bookmark_value>cells; backgrounds</bookmark_value> <bookmark_value>rows, see also cells</bookmark_value> <bookmark_value>columns, see also cells</bookmark_value>"
msgstr ""
-#: table_view.xhp
+#: background.xhp
msgctxt ""
-"table_view.xhp\n"
-"hd_id3147304\n"
+"background.xhp\n"
+"hd_id3149346\n"
"1\n"
"help.text"
-msgid "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp\" name=\"Changing Table Views\">Changing Table Views</link></variable>"
+msgid "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Defining Background Colors or Background Graphics\">Defining Background Colors or Background Graphics</link></variable>"
msgstr ""
-#: table_view.xhp
+#: background.xhp
msgctxt ""
-"table_view.xhp\n"
-"par_id3153192\n"
-"2\n"
+"background.xhp\n"
+"par_id9520249\n"
"help.text"
-msgid "To hide column and line headers in a table:"
+msgid "You can define a background color or use a graphic as a background for cell ranges in $[officename] Calc."
msgstr ""
-#: table_view.xhp
+#: background.xhp
msgctxt ""
-"table_view.xhp\n"
-"par_id3153768\n"
-"3\n"
+"background.xhp\n"
+"hd_id3144760\n"
+"16\n"
"help.text"
-msgid "Under the menu item <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc,</emph> go to the <emph>View</emph> tab page. Unmark<emph> Column/row headers</emph>. Confirm with <emph>OK</emph>."
+msgid "Applying a Background Color to a $[officename] Calc Spreadsheet"
msgstr ""
-#: table_view.xhp
+#: background.xhp
msgctxt ""
-"table_view.xhp\n"
-"par_id3147436\n"
-"4\n"
+"background.xhp\n"
+"par_id3155429\n"
+"17\n"
"help.text"
-msgid "To hide grid lines:"
-msgstr "Rrjeta (rreshtat dhe karakteret)"
+msgid "Select the cells."
+msgstr "Bashko qelizat"
-#: table_view.xhp
+#: background.xhp
msgctxt ""
-"table_view.xhp\n"
-"par_id3153726\n"
-"5\n"
+"background.xhp\n"
+"par_id3149260\n"
+"18\n"
"help.text"
-msgid "Under the menu item <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph><emph>,</emph> go to the <emph>View</emph> tab page. Unmark <emph>Grid lines</emph>. Confirm with <emph>OK</emph>."
+msgid "Choose <emph>Format - Cells</emph> (or <emph>Format Cells</emph> from the context menu)."
msgstr ""
-#: calc_timevalues.xhp
-msgctxt ""
-"calc_timevalues.xhp\n"
-"tit\n"
-"help.text"
-msgid "Calculating Time Differences"
-msgstr "**Format i gabuar kohor**"
-
-#: calc_timevalues.xhp
+#: background.xhp
msgctxt ""
-"calc_timevalues.xhp\n"
-"bm_id3150769\n"
+"background.xhp\n"
+"par_id3152938\n"
+"19\n"
"help.text"
-msgid "<bookmark_value>calculating;time differences</bookmark_value><bookmark_value>time differences</bookmark_value>"
+msgid "On the <emph>Background</emph> tab page, select the background color."
msgstr ""
-#: calc_timevalues.xhp
+#: background.xhp
msgctxt ""
-"calc_timevalues.xhp\n"
-"hd_id3150769\n"
-"53\n"
+"background.xhp\n"
+"hd_id3146974\n"
+"20\n"
"help.text"
-msgid "<variable id=\"calc_timevalues\"><link href=\"text/scalc/guide/calc_timevalues.xhp\" name=\"Calculating Time Differences\">Calculating Time Differences</link></variable>"
-msgstr ""
+msgid "Graphics in the Background of Cells"
+msgstr "Numron qelitë e zbrazëta në një interval të caktuar."
-#: calc_timevalues.xhp
+#: background.xhp
msgctxt ""
-"calc_timevalues.xhp\n"
-"par_id3149263\n"
-"54\n"
+"background.xhp\n"
+"par_id3155414\n"
+"21\n"
"help.text"
-msgid "If you want to calculate time differences, for example, the time between 23:30 and 01:10 in the same night, use the following formula:"
+msgid "Choose <emph>Insert - Picture - From File</emph>."
msgstr ""
-#: calc_timevalues.xhp
+#: background.xhp
msgctxt ""
-"calc_timevalues.xhp\n"
-"par_id3159153\n"
-"55\n"
+"background.xhp\n"
+"par_id3149664\n"
+"22\n"
"help.text"
-msgid "=(B2<A2)+B2-A2"
+msgid "Select the graphic and click <emph>Open</emph>."
msgstr ""
-#: calc_timevalues.xhp
+#: background.xhp
msgctxt ""
-"calc_timevalues.xhp\n"
-"par_id3152598\n"
-"56\n"
+"background.xhp\n"
+"par_id3153575\n"
+"23\n"
"help.text"
-msgid "The later time is B2 and the earlier time is A2. The result of the example is 01:40 or 1 hour and 40 minutes."
+msgid "The graphic is inserted anchored to the current cell. You can move and scale the graphic as you want. In your context menu you can use the <emph>Arrange - To Background</emph> command to place this in the background. To select a graphic that has been placed in the background, use the <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link></caseinline><defaultinline>Navigator</defaultinline></switchinline>."
msgstr ""
-#: calc_timevalues.xhp
+#: background.xhp
msgctxt ""
-"calc_timevalues.xhp\n"
-"par_id3145271\n"
-"57\n"
+"background.xhp\n"
+"par_id51576\n"
"help.text"
-msgid "In the formula, an entire 24-hour day has a value of 1 and one hour has a value of 1/24. The logical value in parentheses is 0 or 1, corresponding to 0 or 24 hours. The result returned by the formula is automatically issued in time format due to the sequence of the operands."
+msgid "<link href=\"text/shared/guide/background.xhp\">Watermarks</link>"
msgstr ""
-#: text_numbers.xhp
-msgctxt ""
-"text_numbers.xhp\n"
-"tit\n"
-"help.text"
-msgid "Formatting Numbers as Text"
-msgstr "Kthen referencën në një qeli si tekst."
-
-#: text_numbers.xhp
+#: background.xhp
msgctxt ""
-"text_numbers.xhp\n"
-"bm_id3145068\n"
+"background.xhp\n"
+"par_id3156180\n"
+"30\n"
"help.text"
-msgid "<bookmark_value>numbers;entering as text</bookmark_value> <bookmark_value>text formats; for numbers</bookmark_value> <bookmark_value>formats; numbers as text</bookmark_value> <bookmark_value>cell formats; text/numbers</bookmark_value> <bookmark_value>formatting;numbers as text</bookmark_value>"
+msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\"><emph>Background</emph> tab page</link>"
msgstr ""
-#: text_numbers.xhp
+#: background.xhp
msgctxt ""
-"text_numbers.xhp\n"
-"hd_id3145068\n"
-"46\n"
+"background.xhp\n"
+"par_id7601245\n"
"help.text"
-msgid "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers.xhp\" name=\"Formatting Numbers as Text\">Formatting Numbers as Text</link></variable>"
+msgid "<link href=\"text/scalc/guide/format_table.xhp\">Formatting Spreadsheets</link>"
msgstr ""
-#: text_numbers.xhp
+#: borders.xhp
msgctxt ""
-"text_numbers.xhp\n"
-"par_id3156280\n"
-"43\n"
+"borders.xhp\n"
+"tit\n"
"help.text"
-msgid "You can format numbers as text in $[officename] Calc. Open the context menu of a cell or range of cells and choose <emph>Format Cells - Numbers</emph>, then select \"Text\" from the <emph>Category</emph> list. Any numbers subsequently entered into the formatted range are interpreted as text. The display of these \"numbers\" is left-justified, just as with other text."
+msgid "User Defined Borders in Cells"
msgstr ""
-#: text_numbers.xhp
+#: borders.xhp
msgctxt ""
-"text_numbers.xhp\n"
-"par_id3149377\n"
-"44\n"
+"borders.xhp\n"
+"bm_id3457441\n"
"help.text"
-msgid "If you have already entered normal numbers in cells and have afterwards changed the format of the cells to \"Text\", the numbers will remain normal numbers. They will not be converted. Only numbers entered afterwards, or numbers which are then edited, will become text numbers."
+msgid "<bookmark_value>cells;borders</bookmark_value> <bookmark_value>line arrangements with cells</bookmark_value> <bookmark_value>borders;cells</bookmark_value>"
msgstr ""
-#: text_numbers.xhp
+#: borders.xhp
msgctxt ""
-"text_numbers.xhp\n"
-"par_id3144765\n"
-"45\n"
+"borders.xhp\n"
+"hd_id4544816\n"
"help.text"
-msgid "If you decide to enter a number directly as text, enter an apostrophe (') first. For example, for years in column headings, you can enter '1999, '2000 and '2001. The apostrophe is not visible in the cell, it only indicates that the entry is to be recognized as a text. This is useful if, for example, you enter a telephone number or postal code that begins with a zero (0), because a zero (0) at the start of a sequence of digits is removed in normal number formats."
+msgid "<variable id=\"borders\"><link href=\"text/scalc/guide/borders.xhp\">User Defined Borders in Cells</link></variable>"
msgstr ""
-#: text_numbers.xhp
+#: borders.xhp
msgctxt ""
-"text_numbers.xhp\n"
-"par_id3156284\n"
-"47\n"
+"borders.xhp\n"
+"par_id2320017\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
+msgid "You can apply a variety of different lines to selected cells."
msgstr ""
-#: html_doc.xhp
+#: borders.xhp
msgctxt ""
-"html_doc.xhp\n"
-"tit\n"
+"borders.xhp\n"
+"par_id8055665\n"
"help.text"
-msgid "Saving and Opening Sheets in HTML"
+msgid "Select the cell or a block of cells."
msgstr ""
-#: html_doc.xhp
+#: borders.xhp
msgctxt ""
-"html_doc.xhp\n"
-"bm_id3150542\n"
+"borders.xhp\n"
+"par_id9181188\n"
"help.text"
-msgid "<bookmark_value>HTML; sheets</bookmark_value><bookmark_value>sheets; HTML</bookmark_value><bookmark_value>saving; sheets in HTML</bookmark_value><bookmark_value>opening; sheets in HTML</bookmark_value>"
-msgstr ""
+msgid "Choose <item type=\"menuitem\">Format - Cells</item>."
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: html_doc.xhp
+#: borders.xhp
msgctxt ""
-"html_doc.xhp\n"
-"hd_id3150542\n"
-"1\n"
+"borders.xhp\n"
+"par_id9947508\n"
"help.text"
-msgid "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" name=\"Saving and Opening Sheets in HTML\">Saving and Opening Sheets in HTML</link></variable>"
+msgid "In the dialog, click the <emph>Borders</emph> tab."
msgstr ""
-#: html_doc.xhp
+#: borders.xhp
msgctxt ""
-"html_doc.xhp\n"
-"hd_id3154124\n"
-"2\n"
+"borders.xhp\n"
+"par_id7907956\n"
"help.text"
-msgid "Saving Sheets in HTML"
+msgid "Choose the border options you want to apply and click OK."
msgstr ""
-#: html_doc.xhp
+#: borders.xhp
msgctxt ""
-"html_doc.xhp\n"
-"par_id3145785\n"
-"3\n"
+"borders.xhp\n"
+"par_id1342204\n"
"help.text"
-msgid "<item type=\"productname\">%PRODUCTNAME</item> Calc saves all the sheets of a Calc document together as an HTML document. At the beginning of the HTML document, a heading and a list of hyperlinks are automatically added which lead to the individual sheets within the document."
+msgid "The options in the <emph>Line arrangement</emph> area can be used to apply multiple border styles."
msgstr ""
-#: html_doc.xhp
+#: borders.xhp
msgctxt ""
-"html_doc.xhp\n"
-"par_id3155854\n"
-"4\n"
+"borders.xhp\n"
+"hd_id4454481\n"
"help.text"
-msgid "Numbers are shown as written. In addition, in the <SDVAL> HTML tag, the exact internal number value is written so that after opening the HTML document with <item type=\"productname\">%PRODUCTNAME</item> you know you have the exact values."
-msgstr ""
+msgid "Selection of cells"
+msgstr "Bashko qelizat"
-#: html_doc.xhp
+#: borders.xhp
msgctxt ""
-"html_doc.xhp\n"
-"par_id3153188\n"
-"5\n"
+"borders.xhp\n"
+"par_id7251503\n"
"help.text"
-msgid "To save the current Calc document as HTML, choose <emph>File - Save As</emph>."
+msgid "Depending on the selection of cells, the area looks different."
msgstr ""
-#: html_doc.xhp
+#: borders.xhp
msgctxt ""
-"html_doc.xhp\n"
-"par_id3148645\n"
-"6\n"
+"borders.xhp\n"
+"par_id8716696\n"
"help.text"
-msgid "In the <emph>File type</emph> list box, in the area with the other <item type=\"productname\">%PRODUCTNAME</item> Calc filters, choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\"."
-msgstr ""
+msgid "Selection"
+msgstr "Selektimet"
-#: html_doc.xhp
+#: borders.xhp
msgctxt ""
-"html_doc.xhp\n"
-"par_id3154729\n"
-"7\n"
+"borders.xhp\n"
+"par_id4677877\n"
"help.text"
-msgid "Enter a <emph>File name</emph> and click <emph>Save</emph>."
-msgstr ""
+msgid "Line arrangement area"
+msgstr "Zona e numrit të sllajdit"
-#: html_doc.xhp
+#: borders.xhp
msgctxt ""
-"html_doc.xhp\n"
-"hd_id3149379\n"
-"8\n"
+"borders.xhp\n"
+"par_id807824\n"
"help.text"
-msgid "Opening Sheets in HTML"
-msgstr ""
+msgid "One cell"
+msgstr "Qeliza e tabelës"
-#: html_doc.xhp
+#: borders.xhp
msgctxt ""
-"html_doc.xhp\n"
-"par_id3149959\n"
-"10\n"
+"borders.xhp\n"
+"par_id8473464\n"
"help.text"
-msgid "<item type=\"productname\">%PRODUCTNAME</item> offers various filters for opening HTML files, which you can select under <emph>File - Open</emph> in the <emph>Files of type</emph> list box:"
+msgid "<image id=\"img_id1737113\" src=\"res/helpimg/border_ca_1.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1737113\">borders with one cell selected</alt></image>"
msgstr ""
-#: html_doc.xhp
+#: borders.xhp
msgctxt ""
-"html_doc.xhp\n"
-"par_id3146969\n"
-"15\n"
+"borders.xhp\n"
+"par_id3509933\n"
"help.text"
-msgid "Choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\" to open in <item type=\"productname\">%PRODUCTNAME</item> Calc."
-msgstr ""
+msgid "Cells in a column"
+msgstr "Shtylla në interval"
-#: html_doc.xhp
+#: borders.xhp
msgctxt ""
-"html_doc.xhp\n"
-"par_id3155446\n"
-"16\n"
+"borders.xhp\n"
+"par_id6635639\n"
"help.text"
-msgid "All <item type=\"productname\">%PRODUCTNAME</item> Calc options are now available to you. However, not all options that <item type=\"productname\">%PRODUCTNAME</item> Calc offers for editing can be saved in HTML format."
+msgid "<image id=\"img_id1680959\" src=\"res/helpimg/border_ca_2.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1680959\">borders with a column selected</alt></image>"
msgstr ""
-#: html_doc.xhp
+#: borders.xhp
msgctxt ""
-"html_doc.xhp\n"
-"par_id3150370\n"
-"17\n"
+"borders.xhp\n"
+"par_id8073366\n"
"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"File - Open\">File - Open</link>"
-msgstr ""
+msgid "Cells in a row"
+msgstr "Rreshti në interval."
-#: html_doc.xhp
+#: borders.xhp
msgctxt ""
-"html_doc.xhp\n"
-"par_id3150199\n"
-"18\n"
+"borders.xhp\n"
+"par_id6054567\n"
"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"File - Save As\">File - Save As</link>"
+msgid "<image id=\"img_id9623096\" src=\"res/helpimg/border_ca_3.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id9623096\">borders with a row selected</alt></image>"
msgstr ""
-#: datapilot_updatetable.xhp
-#, fuzzy
-msgctxt ""
-"datapilot_updatetable.xhp\n"
-"tit\n"
-"help.text"
-msgid "Updating Pivot Tables"
-msgstr "DataPilot tabelat nuk mund të mbulojnë njëra tjetrën."
-
-#: datapilot_updatetable.xhp
-#, fuzzy
-msgctxt ""
-"datapilot_updatetable.xhp\n"
-"bm_id3150792\n"
-"help.text"
-msgid "<bookmark_value>pivot table import</bookmark_value><bookmark_value>pivot table function; refreshing tables</bookmark_value><bookmark_value>recalculating;pivot tables</bookmark_value><bookmark_value>updating;pivot tables</bookmark_value>"
-msgstr "Shndërron një vlerë në tekst."
-
-#: datapilot_updatetable.xhp
+#: borders.xhp
msgctxt ""
-"datapilot_updatetable.xhp\n"
-"hd_id3150792\n"
-"33\n"
+"borders.xhp\n"
+"par_id466322\n"
"help.text"
-msgid "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Updating Pivot Tables\">Updating Pivot Tables</link></variable>"
+msgid "Cells in a block of 2x2 or more"
msgstr ""
-#: datapilot_updatetable.xhp
+#: borders.xhp
msgctxt ""
-"datapilot_updatetable.xhp\n"
-"par_id3154684\n"
-"34\n"
+"borders.xhp\n"
+"par_id4511551\n"
"help.text"
-msgid "If the data of the source sheet has been changed, $[officename] recalculates the pivot table. To recalculate the table, choose <emph>Data - Pivot Table - Refresh</emph>. Do the same after you have imported an Excel pivot table into $[officename] Calc."
+msgid "<image id=\"img_id8139591\" src=\"res/helpimg/border_ca_4.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id8139591\">borders with a block selected</alt></image>"
msgstr ""
-#: relativ_absolut_ref.xhp
+#: borders.xhp
msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"tit\n"
+"borders.xhp\n"
+"par_id5383465\n"
"help.text"
-msgid "Addresses and References, Absolute and Relative"
+msgid "You cannot apply borders to multiple selections."
msgstr ""
-#: relativ_absolut_ref.xhp
+#: borders.xhp
msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"bm_id3156423\n"
+"borders.xhp\n"
+"hd_id7790154\n"
"help.text"
-msgid "<bookmark_value>addressing; relative and absolute</bookmark_value><bookmark_value>references; absolute/relative</bookmark_value><bookmark_value>absolute addresses in spreadsheets</bookmark_value><bookmark_value>relative addresses</bookmark_value><bookmark_value>absolute references in spreadsheets</bookmark_value><bookmark_value>relative references</bookmark_value><bookmark_value>references; to cells</bookmark_value><bookmark_value>cells; references</bookmark_value>"
-msgstr ""
+msgid "Default Settings"
+msgstr "Rregullimet e parazgjedhura"
-#: relativ_absolut_ref.xhp
+#: borders.xhp
msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"hd_id3156423\n"
-"53\n"
+"borders.xhp\n"
+"par_id2918485\n"
"help.text"
-msgid "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relativ_absolut_ref.xhp\" name=\"Addresses and References, Absolute and Relative\">Addresses and References, Absolute and Relative</link></variable>"
+msgid "Click one of the <emph>Default</emph> icons to set or reset multiple borders."
msgstr ""
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"hd_id3163712\n"
-"3\n"
-"help.text"
-msgid "Relative Addressing"
-msgstr "Madhësitë relative"
-
-#: relativ_absolut_ref.xhp
+#: borders.xhp
msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3146119\n"
-"4\n"
+"borders.xhp\n"
+"par_id1836909\n"
"help.text"
-msgid "The cell in column A, row 1 is addressed as A1. You can address a range of adjacent cells by first entering the coordinates of the upper left cell of the area, then a colon followed by the coordinates of the lower right cell. For example, the square formed by the first four cells in the upper left corner is addressed as A1:B2."
+msgid "The thin gray lines inside an icon show the borders that will be reset or cleared."
msgstr ""
-#: relativ_absolut_ref.xhp
+#: borders.xhp
msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3154730\n"
-"5\n"
+"borders.xhp\n"
+"par_id5212561\n"
"help.text"
-msgid "By addressing an area in this way, you are making a relative reference to A1:B2. Relative here means that the reference to this area will be adjusted automatically when you copy the formulas."
+msgid "The dark lines inside an icon show the lines that will be set using the selected line style and color."
msgstr ""
-#: relativ_absolut_ref.xhp
-msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"hd_id3149377\n"
-"6\n"
-"help.text"
-msgid "Absolute Addressing"
-msgstr "Vlerë absolute"
-
-#: relativ_absolut_ref.xhp
+#: borders.xhp
msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3154943\n"
-"7\n"
+"borders.xhp\n"
+"par_id4818872\n"
"help.text"
-msgid "Absolute references are the opposite of relative addressing. A dollar sign is placed before each letter and number in an absolute reference, for example, $A$1:$B$2."
+msgid "The thick gray lines inside an icon show the lines that will not be changed."
msgstr ""
-#: relativ_absolut_ref.xhp
+#: borders.xhp
msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3147338\n"
-"36\n"
+"borders.xhp\n"
+"hd_id8989226\n"
"help.text"
-msgid "$[officename] can convert the current reference, in which the cursor is positioned in the input line, from relative to absolute and vice versa by pressing Shift +F4. If you start with a relative address such as A1, the first time you press this key combination, both row and column are set to absolute references ($A$1). The second time, only the row (A$1), and the third time, only the column ($A1). If you press the key combination once more, both column and row references are switched back to relative (A1)"
-msgstr ""
+msgid "Examples"
+msgstr "Shembuj:"
-#: relativ_absolut_ref.xhp
+#: borders.xhp
msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3153963\n"
-"52\n"
+"borders.xhp\n"
+"par_id622577\n"
"help.text"
-msgid "$[officename] Calc shows the references to a formula. If, for example you click the formula =SUM(A1:C5;D15:D24) in a cell, the two referenced areas in the sheet will be highlighted in color. For example, the formula component \"A1:C5\" may be in blue and the cell range in question bordered in the same shade of blue. The next formula component \"D15:D24\" can be marked in red in the same way."
+msgid "Select a block of about 8x8 cells, then choose <emph>Format - Cells - Borders</emph>."
msgstr ""
-#: relativ_absolut_ref.xhp
+#: borders.xhp
msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"hd_id3154704\n"
-"29\n"
+"borders.xhp\n"
+"par_id8119754\n"
"help.text"
-msgid "When to Use Relative and Absolute References"
+msgid "<image id=\"img_id7261268\" src=\"res/helpimg/border_ca_5.png\" width=\"1.0937in\" height=\"0.2189in\"><alt id=\"alt_id7261268\">default icon row of Borders tab page</alt></image>"
msgstr ""
-#: relativ_absolut_ref.xhp
+#: borders.xhp
msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3147346\n"
-"8\n"
+"borders.xhp\n"
+"par_id8964201\n"
"help.text"
-msgid "What distinguishes a relative reference? Assume you want to calculate in cell E1 the sum of the cells in range A1:B2. The formula to enter into E1 would be: =SUM(A1:B2). If you later decide to insert a new column in front of column A, the elements you want to add would then be in B1:C2 and the formula would be in F1, not in E1. After inserting the new column, you would therefore have to check and correct all formulas in the sheet, and possibly in other sheets."
+msgid "Click the left icon to clear all lines. This removes all outer borders, all inner lines, and all diagonal lines."
msgstr ""
-#: relativ_absolut_ref.xhp
+#: borders.xhp
msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3155335\n"
-"9\n"
+"borders.xhp\n"
+"par_id6048463\n"
"help.text"
-msgid "Fortunately, $[officename] does this work for you. After having inserted a new column A, the formula =SUM(A1:B2) will be automatically updated to =SUM(B1:C2). Row numbers will also be automatically adjusted when a new row 1 is inserted. Absolute and relative references are always adjusted in $[officename] Calc whenever the referenced area is moved. But be careful if you are copying a formula since in that case only the relative references will be adjusted, not the absolute references."
+msgid "Click the second icon from the left to set an outer border and to remove all other lines."
msgstr ""
-#: relativ_absolut_ref.xhp
+#: borders.xhp
msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3145791\n"
-"39\n"
+"borders.xhp\n"
+"par_id1495406\n"
"help.text"
-msgid "Absolute references are used when a calculation refers to one specific cell in your sheet. If a formula that refers to exactly this cell is copied relatively to a cell below the original cell, the reference will also be moved down if you did not define the cell coordinates as absolute."
+msgid "Click the rightmost icon to set an outer border. The inner lines are not changed, except the diagonal lines, which will be removed."
msgstr ""
-#: relativ_absolut_ref.xhp
+#: borders.xhp
msgctxt ""
-"relativ_absolut_ref.xhp\n"
-"par_id3147005\n"
-"10\n"
+"borders.xhp\n"
+"par_id9269386\n"
"help.text"
-msgid "Aside from when new rows and columns are inserted, references can also change when an existing formula referring to particular cells is copied to another area of the sheet. Assume you entered the formula =SUM(A1:A9) in row 10. If you want to calculate the sum for the adjacent column to the right, simply copy this formula to the cell to the right. The copy of the formula in column B will be automatically adjusted to =SUM(B1:B9)."
+msgid "Now you can continue to see which lines the other icons will set or remove."
msgstr ""
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"tit\n"
+"borders.xhp\n"
+"hd_id3593554\n"
"help.text"
-msgid "Moving Cells by Drag-and-Drop"
-msgstr ""
+msgid "User Defined Settings"
+msgstr "Indeks i definuar nga shfrytëzuesi"
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"bm_id3155686\n"
+"borders.xhp\n"
+"par_id4018066\n"
"help.text"
-msgid "<bookmark_value>drag and drop; moving cells</bookmark_value><bookmark_value>cells; moving by drag and drop </bookmark_value><bookmark_value>columns;moving by drag and drop</bookmark_value><bookmark_value>moving;cells by drag and drop</bookmark_value><bookmark_value>inserting;cells, by drag and drop</bookmark_value>"
+msgid "In the <emph>User defined</emph> area, you can click to set or remove individual lines. The preview shows lines in three different states."
msgstr ""
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"hd_id986358\n"
+"borders.xhp\n"
+"par_id8004699\n"
"help.text"
-msgid "<variable id=\"move_dragdrop\"><link href=\"text/scalc/guide/move_dragdrop.xhp\">Moving Cells by Drag-and-Drop</link></variable>"
+msgid "Repeatedly click an edge or a corner to switch through the three different states."
msgstr ""
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2760093\n"
+"borders.xhp\n"
+"par_id8037659\n"
"help.text"
-msgid "When you drag-and-drop a selection of cells on a Calc sheet, the cells normally overwrite the existing cells in the area where you drop. This is the normal <emph>overwrite mode</emph>."
-msgstr ""
+msgid "Line types"
+msgstr "Llojet e fajllave"
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id9527268\n"
+"borders.xhp\n"
+"par_id2305978\n"
"help.text"
-msgid "When you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while releasing the mouse button, you enter the <emph>insert mode</emph>."
-msgstr ""
+msgid "Image"
+msgstr "Fotografi"
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id79653\n"
+"borders.xhp\n"
+"par_id8716086\n"
"help.text"
-msgid "In insert mode, the existing cells where you drop will be shifted to the right or to the bottom, and the dropped cells are inserted into the now empty positions without overwriting."
-msgstr ""
+msgid "Meaning"
+msgstr "Kernimi"
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id8676717\n"
+"borders.xhp\n"
+"par_id3978087\n"
"help.text"
-msgid "The surrounding box of the moved cells looks different in insert mode."
-msgstr ""
+msgid "A black line"
+msgstr "Stili i linjës"
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id3968932\n"
+"borders.xhp\n"
+"par_id4065065\n"
"help.text"
-msgid "In overwrite mode you see all four borders around the selected area. In insert mode you see only the left border when target cells will be shifted to the right. You see only the upper border when target cells will be shifted down."
+msgid "<image id=\"img_id9379863\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9379863\">solid line for user defined border</alt></image>"
msgstr ""
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id7399517\n"
+"borders.xhp\n"
+"par_id6987823\n"
"help.text"
-msgid "Whether the target area will be shifted to the right or to the bottom depends on the distance between source and target cells, if you move within the same sheet. It depends on the number of horizontal or vertical cells in the moved area, if you move to a different sheet."
+msgid "A black line sets the corresponding line of the selected cells. The line is shown as a dotted line when you choose the 0.05 pt line style. Double lines are shown when you select a double line style."
msgstr ""
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id8040406\n"
+"borders.xhp\n"
+"par_id1209143\n"
"help.text"
-msgid "If you move cells in insert mode within the same row (only horizontally), then after insertion of the cells, all cells will be shifted to the left to fill the source area."
-msgstr ""
+msgid "A gray line"
+msgstr "Stili i linjës"
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2586748\n"
+"borders.xhp\n"
+"par_id6653340\n"
"help.text"
-msgid "In both modes, you can hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, or <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift keys while you release the mouse button to insert a copy or a link, respectively."
+msgid "<image id=\"img_id6972563\" src=\"res/helpimg/border_ca_gray.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id6972563\">gray line for user defined border</alt></image>"
msgstr ""
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id5814081\n"
+"borders.xhp\n"
+"par_id2278817\n"
"help.text"
-msgid "Keys pressed while releasing the mouse button"
+msgid "A gray line is shown when the corresponding line of the selected cells will not be changed. No line will be set or removed at this position."
msgstr ""
-#: move_dragdrop.xhp
-msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id6581316\n"
-"help.text"
-msgid "Result"
-msgstr "Rezultat"
-
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id9906613\n"
+"borders.xhp\n"
+"par_id5374919\n"
"help.text"
-msgid "No key"
-msgstr "Lloj kyç"
+msgid "A white line"
+msgstr "Stili i linjës"
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2815637\n"
+"borders.xhp\n"
+"par_id52491\n"
"help.text"
-msgid "Cells are moved and overwrite the cells in the target area. Source cells are emptied."
+msgid "<image id=\"img_id3801080\" src=\"res/helpimg/border_ca_white.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id3801080\">white line for user defined border</alt></image>"
msgstr ""
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id6161687\n"
+"borders.xhp\n"
+"par_id372325\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key"
+msgid "A white line is shown when the corresponding line of the selected cells will be removed."
msgstr ""
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id4278389\n"
+"borders.xhp\n"
+"hd_id7282937\n"
"help.text"
-msgid "Cells are copied and overwrite the cells in the target area. Source cells stay as they are."
-msgstr ""
+msgid "Examples"
+msgstr "Shembuj:"
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2805566\n"
+"borders.xhp\n"
+"par_id4230780\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift keys"
+msgid "Select a single cell, then choose <emph>Format - Cells - Borders</emph>."
msgstr ""
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id5369121\n"
+"borders.xhp\n"
+"par_id1712393\n"
"help.text"
-msgid "Links to the source cells are inserted and overwrite the cells in the target area. Source cells stay as they are."
+msgid "Click the lower edge to set a very thin line as a lower border. All other lines will be removed from the cell."
msgstr ""
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id9518723\n"
+"borders.xhp\n"
+"par_id5149693\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key"
+msgid "<image id=\"img_id9467452\" src=\"res/helpimg/border_ca_6.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9467452\">setting a thin lower border</alt></image>"
msgstr ""
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2926419\n"
+"borders.xhp\n"
+"par_id5759453\n"
"help.text"
-msgid "Cells are moved and shift the cells in the target area to the right or to the bottom. Source cells are emptied, except if you move within the same rows on the same sheet."
+msgid "Choose a thicker line style and click the lower edge. This sets a thicker line as a lower border."
msgstr ""
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id4021423\n"
+"borders.xhp\n"
+"par_id6342051\n"
"help.text"
-msgid "If you move within the same rows on the same sheet, the cells in the target area shift to the right, and then the whole row shifts to fill the source area."
+msgid "<image id=\"img_id7431562\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id7431562\">setting a thick line as a border</alt></image>"
msgstr ""
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2783898\n"
+"borders.xhp\n"
+"par_id5775322\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command </caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline> keys"
+msgid "Click the second <emph>Default</emph> icon from the left to set all four borders. Then repeatedly click the lower edge until a white line is shown. This removes the lower border."
msgstr ""
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id2785119\n"
+"borders.xhp\n"
+"par_id2882778\n"
"help.text"
-msgid "Cells are copied and shift the cells in the target area to the right or to the bottom. Source cells stay as they are."
+msgid "<image id=\"img_id8155766.00000001\" src=\"res/helpimg/border_ca_8.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id8155766.00000001\">removing lower border</alt></image>"
msgstr ""
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id584124\n"
+"borders.xhp\n"
+"par_id8102053\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Shift keys"
+msgid "You can combine several line types and styles. The last image shows how to set thick outer borders (the thick black lines), while any diagonal lines inside the cell will not be touched (gray lines)."
msgstr ""
-#: move_dragdrop.xhp
+#: borders.xhp
msgctxt ""
-"move_dragdrop.xhp\n"
-"par_id5590990\n"
+"borders.xhp\n"
+"par_id2102420\n"
"help.text"
-msgid "Links to the source cells are inserted and shift the cells in the target area to the right or to the bottom. Source cells stay as they are."
+msgid "<image id=\"img_id5380718\" src=\"res/helpimg/border_ca_9.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id5380718\">advanced example for cell borders</alt></image>"
msgstr ""
-#: calculate.xhp
+#: calc_date.xhp
msgctxt ""
-"calculate.xhp\n"
+"calc_date.xhp\n"
"tit\n"
"help.text"
-msgid "Calculating in Spreadsheets"
-msgstr "Microsoft &Excel tabela kalkuluese"
-
-#: calculate.xhp
-#, fuzzy
-msgctxt ""
-"calculate.xhp\n"
-"bm_id3150791\n"
-"help.text"
-msgid "<bookmark_value>spreadsheets; calculating</bookmark_value><bookmark_value>calculating; spreadsheets</bookmark_value><bookmark_value>formulas; calculating</bookmark_value>"
-msgstr "Shndërron një vlerë në tekst."
-
-#: calculate.xhp
-msgctxt ""
-"calculate.xhp\n"
-"hd_id3150791\n"
-"help.text"
-msgid "<variable id=\"calculate\"><link href=\"text/scalc/guide/calculate.xhp\" name=\"Calculating in Spreadsheets\">Calculating in Spreadsheets</link></variable>"
+msgid "Calculating With Dates and Times"
msgstr ""
-#: calculate.xhp
+#: calc_date.xhp
msgctxt ""
-"calculate.xhp\n"
-"par_id3146120\n"
+"calc_date.xhp\n"
+"bm_id3146120\n"
"help.text"
-msgid "The following is an example of a calculation in $[officename] Calc."
+msgid "<bookmark_value>dates; in cells</bookmark_value> <bookmark_value>times; in cells</bookmark_value> <bookmark_value>cells;date and time formats</bookmark_value> <bookmark_value>current date and time values</bookmark_value>"
msgstr ""
-#: calculate.xhp
+#: calc_date.xhp
msgctxt ""
-"calculate.xhp\n"
-"par_id3153951\n"
+"calc_date.xhp\n"
+"hd_id3146120\n"
+"11\n"
"help.text"
-msgid "Click in a cell, and type a number"
+msgid "<variable id=\"calc_date\"><link href=\"text/scalc/guide/calc_date.xhp\" name=\"Calculating With Dates and Times\">Calculating With Dates and Times</link></variable>"
msgstr ""
-#: calculate.xhp
-#, fuzzy
-msgctxt ""
-"calculate.xhp\n"
-"par_idN10656\n"
-"help.text"
-msgid "Press Enter."
-msgstr "[Shtyp enter për të vazhduar]"
-
-#: calculate.xhp
+#: calc_date.xhp
msgctxt ""
-"calculate.xhp\n"
-"par_idN1065D\n"
+"calc_date.xhp\n"
+"par_id3154320\n"
+"12\n"
"help.text"
-msgid "The cursor moves down to the next cell."
+msgid "In $[officename] Calc, you can perform calculations with current date and time values. As an example, to find out exactly how old you are in seconds or hours, follow the following steps:"
msgstr ""
-#: calculate.xhp
-msgctxt ""
-"calculate.xhp\n"
-"par_id3155064\n"
-"help.text"
-msgid "Enter another number."
-msgstr "Numwr tjetwr kompleks"
-
-#: calculate.xhp
+#: calc_date.xhp
msgctxt ""
-"calculate.xhp\n"
-"par_idN1066F\n"
+"calc_date.xhp\n"
+"par_id3150750\n"
+"13\n"
"help.text"
-msgid "Press the Tab key."
+msgid "In a spreadsheet, enter your birthday in cell A1."
msgstr ""
-#: calculate.xhp
+#: calc_date.xhp
msgctxt ""
-"calculate.xhp\n"
-"par_idN10676\n"
+"calc_date.xhp\n"
+"par_id3145642\n"
+"14\n"
"help.text"
-msgid "The cursor moves to the right into the next cell."
+msgid "Enter the following formula in cell A3: <item type=\"literal\">=NOW()-A1</item>"
msgstr ""
-#: calculate.xhp
+#: calc_date.xhp
msgctxt ""
-"calculate.xhp\n"
-"par_id3154253\n"
+"calc_date.xhp\n"
+"par_id3149020\n"
+"52\n"
"help.text"
-msgid "Type in a formula, for example, <item type=\"literal\">=A3 * A4 / 100.</item>"
+msgid "After pressing the <item type=\"keycode\">Enter</item> key you will see the result in date format. Since the result should show the difference between two dates as a number of days, you must format cell A3 as a number."
msgstr ""
-#: calculate.xhp
-#, fuzzy
+#: calc_date.xhp
msgctxt ""
-"calculate.xhp\n"
-"par_idN1068B\n"
+"calc_date.xhp\n"
+"par_id3155335\n"
+"53\n"
"help.text"
-msgid "Press Enter."
-msgstr "[Shtyp enter për të vazhduar]"
+msgid "Place the cursor in cell A3, right-click to open a context menu and choose <emph>Format Cells</emph>."
+msgstr ""
-#: calculate.xhp
+#: calc_date.xhp
msgctxt ""
-"calculate.xhp\n"
+"calc_date.xhp\n"
"par_id3147343\n"
+"54\n"
"help.text"
-msgid "The result of the formula appears in the cell. If you want, you can edit the formula in the input line of the Formula bar."
+msgid "The <item type=\"menuitem\">Format Cells</item> dialog appears. On the <item type=\"menuitem\">Numbers</item> tab, the \"Number\" category will appear already highlighted. The format is set to \"General\", which causes the result of a calculation containing date entries to be displayed as a date. To display the result as a number, set the number format to \"-1,234\" and close the dialog with the <item type=\"menuitem\">OK</item> button."
msgstr ""
-#: calculate.xhp
+#: calc_date.xhp
msgctxt ""
-"calculate.xhp\n"
-"par_id3155378\n"
+"calc_date.xhp\n"
+"par_id3147001\n"
+"15\n"
"help.text"
-msgid "When you edit a formula, the new result is calculated automatically."
+msgid "The number of days between today's date and the specified date is displayed in cell A3."
msgstr ""
-#: text_rotate.xhp
-msgctxt ""
-"text_rotate.xhp\n"
-"tit\n"
-"help.text"
-msgid "Rotating Text"
-msgstr "Vizato tekstin"
-
-#: text_rotate.xhp
+#: calc_date.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"bm_id3151112\n"
+"calc_date.xhp\n"
+"par_id3150304\n"
+"16\n"
"help.text"
-msgid "<bookmark_value>cells; rotating text</bookmark_value> <bookmark_value>rotating; text in cells</bookmark_value> <bookmark_value>text in cells; writing vertically</bookmark_value>"
+msgid "Experiment with some additional formulas: in A4 enter =A3*24 to calculate the hours, in A5 enter =A4*60 for the minutes, and in A6 enter =A5*60 for seconds. Press the <item type=\"keycode\">Enter</item> key after each formula."
msgstr ""
-#: text_rotate.xhp
+#: calc_date.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"hd_id3151112\n"
-"1\n"
+"calc_date.xhp\n"
+"par_id3149207\n"
+"17\n"
"help.text"
-msgid "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\" name=\"Rotating Text\">Rotating Text</link></variable>"
+msgid "The time since your date of birth will be calculated and displayed in the various units. The values are calculated as of the exact moment when you entered the last formula and pressed the <item type=\"keycode\">Enter</item> key. This value is not automatically updated, although \"Now\" continuously changes. In the <emph>Tools</emph> menu, the menu item <emph>Cell Contents - AutoCalculate</emph> is normally active; however, automatic calculation does not apply to the function NOW. This ensures that your computer is not solely occupied with updating the sheet."
msgstr ""
-#: text_rotate.xhp
+#: calc_series.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"par_id3145171\n"
-"2\n"
+"calc_series.xhp\n"
+"tit\n"
"help.text"
-msgid "Select the cells whose text you want to rotate."
-msgstr ""
+msgid "Automatically Calculating Series"
+msgstr "Të Dhënat Serike $(ROW)"
-#: text_rotate.xhp
+#: calc_series.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"par_id3155133\n"
-"3\n"
+"calc_series.xhp\n"
+"bm_id3150769\n"
"help.text"
-msgid "Choose <emph>Format - Cells</emph>. You will see the <emph>Format Cells</emph> dialog."
+msgid "<bookmark_value>series; calculating</bookmark_value> <bookmark_value>calculating; series</bookmark_value> <bookmark_value>linear series</bookmark_value> <bookmark_value>growth series</bookmark_value> <bookmark_value>date series</bookmark_value> <bookmark_value>powers of 2 calculations</bookmark_value> <bookmark_value>cells; filling automatically</bookmark_value> <bookmark_value>automatic cell filling</bookmark_value> <bookmark_value>AutoFill function</bookmark_value> <bookmark_value>filling;cells, automatically</bookmark_value>"
msgstr ""
-#: text_rotate.xhp
+#: calc_series.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"par_id3155854\n"
-"4\n"
+"calc_series.xhp\n"
+"hd_id3150769\n"
+"6\n"
"help.text"
-msgid "Click the <emph>Alignment</emph> tab."
+msgid "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Automatically Calculating Series\">Automatically Filling in Data Based on Adjacent Cells</link></variable>"
msgstr ""
-#: text_rotate.xhp
+#: calc_series.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"par_id3147426\n"
-"5\n"
+"calc_series.xhp\n"
+"par_idN106A8\n"
"help.text"
-msgid "In the <emph>Text orientation</emph> area use the mouse to select in the preview wheel the direction in which the text is to be rotated. Click <emph>OK</emph>."
+msgid "You can automatically fill cells with data with the AutoFill command or the Series command."
msgstr ""
-#: text_rotate.xhp
+#: calc_series.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"par_id3148456\n"
-"7\n"
+"calc_series.xhp\n"
+"par_idN106D3\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cells\">Format - Cells</link>"
-msgstr ""
+msgid "Using AutoFill"
+msgstr "Duke përdorur Ndihmën"
-#: text_rotate.xhp
+#: calc_series.xhp
msgctxt ""
-"text_rotate.xhp\n"
-"par_id3154944\n"
-"8\n"
+"calc_series.xhp\n"
+"par_idN106D7\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\">Format - Cells - Alignment</link>"
+msgid "AutoFill automatically generates a data series based on a defined pattern."
msgstr ""
-#: cell_protect.xhp
+#: calc_series.xhp
msgctxt ""
-"cell_protect.xhp\n"
-"tit\n"
+"calc_series.xhp\n"
+"par_id3154319\n"
+"7\n"
"help.text"
-msgid "Protecting Cells from Changes"
+msgid "On a sheet, click in a cell, and type a number."
msgstr ""
-#: cell_protect.xhp
+#: calc_series.xhp
msgctxt ""
-"cell_protect.xhp\n"
-"bm_id3146119\n"
+"calc_series.xhp\n"
+"par_idN106CB\n"
"help.text"
-msgid "<bookmark_value>protecting;cells and sheets</bookmark_value> <bookmark_value>cells; protecting</bookmark_value> <bookmark_value>cell protection; enabling</bookmark_value> <bookmark_value>sheets; protecting</bookmark_value> <bookmark_value>documents; protecting</bookmark_value> <bookmark_value>cells; hiding for printing</bookmark_value> <bookmark_value>changing; sheet protection</bookmark_value> <bookmark_value>hiding;formulas</bookmark_value> <bookmark_value>formulas;hiding</bookmark_value>"
+msgid "Click in another cell and then click back in the cell where you typed the number."
msgstr ""
-#: cell_protect.xhp
+#: calc_series.xhp
msgctxt ""
-"cell_protect.xhp\n"
-"hd_id3146119\n"
-"5\n"
+"calc_series.xhp\n"
+"par_id3145272\n"
+"16\n"
"help.text"
-msgid "<variable id=\"cell_protect\"><link href=\"text/scalc/guide/cell_protect.xhp\" name=\"Protecting Cells from Changes\">Protecting Cells from Changes</link></variable>"
+msgid "Drag the fill handle in the bottom right corner of the cell across the cells that you want to fill, and release the mouse button."
msgstr ""
-#: cell_protect.xhp
+#: calc_series.xhp
msgctxt ""
-"cell_protect.xhp\n"
-"par_id3153368\n"
+"calc_series.xhp\n"
+"par_id3145801\n"
"17\n"
"help.text"
-msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can protect sheets and the document as a whole. You can choose whether the cells are protected against accidental changes, whether the formulas can be viewed from within Calc, whether the cells are visible or whether the cells can be printed."
+msgid "The cells are filled with ascending numbers."
msgstr ""
-#: cell_protect.xhp
+#: calc_series.xhp
msgctxt ""
-"cell_protect.xhp\n"
-"par_id3145261\n"
-"18\n"
+"calc_series.xhp\n"
+"par_idN106EE\n"
"help.text"
-msgid "Protection can be provided by means of a password, but it does not have to be. If you have assigned a password, protection can only be removed once the correct password has been entered."
+msgid "To quickly create a list of consecutive days, enter <item type=\"literal\">Monday</item> in a cell, and drag the fill handle."
msgstr ""
-#: cell_protect.xhp
+#: calc_series.xhp
msgctxt ""
-"cell_protect.xhp\n"
-"par_id3148576\n"
-"19\n"
+"calc_series.xhp\n"
+"par_id9720145\n"
"help.text"
-msgid "Note that the cell protection for cells with the <emph>Protected</emph> attribute is only effective when you protect the whole sheet. In the default condition, every cell has the <emph>Protected</emph> attribute. Therefore you must remove the attribute selectively for those cells where the user may make changes. You then protect the whole sheet and save the document."
+msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
msgstr ""
-#: cell_protect.xhp
+#: calc_series.xhp
msgctxt ""
-"cell_protect.xhp\n"
-"par_id5974303\n"
+"calc_series.xhp\n"
+"par_id3154490\n"
+"18\n"
"help.text"
-msgid "These protection features are just switches to prevent accidental action. The features are not intended to provide any secure protection. For example, by exporting a sheet to another file format, a user may be able to surpass the protection features. There is only one secure protection: the password that you can apply when saving an OpenDocument file. A file that has been saved with a password can be opened only with the same password."
+msgid "If you select two or more adjacent cells that contain different numbers, and drag, the remaining cells are filled with the arithmetic pattern that is recognized in the numbers. The AutoFill function also recognizes customized lists that are defined under <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</item>."
msgstr ""
-#: cell_protect.xhp
+#: calc_series.xhp
msgctxt ""
-"cell_protect.xhp\n"
-"par_idN1066B\n"
+"calc_series.xhp\n"
+"par_idN10737\n"
"help.text"
-msgid "Select the cells that you want to specify the cell protection options for."
+msgid "You can double-click the fill handle to automatically fill all empty columns of the current data block. For example, first enter Jan into A1 and drag the fill handle down to A12 to get the twelve months in the first column. Now enter some values into B1 and C1. Select those two cells, and double-click the fill handle. This fills automatically the data block B1:C12."
msgstr ""
-#: cell_protect.xhp
+#: calc_series.xhp
msgctxt ""
-"cell_protect.xhp\n"
-"par_id3149019\n"
-"7\n"
+"calc_series.xhp\n"
+"par_idN10713\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Cells</item> and click the <emph>Cell Protection</emph> tab."
-msgstr ""
+msgid "Using a Defined Series"
+msgstr "Të Dhënat Serike $(ROW)"
-#: cell_protect.xhp
+#: calc_series.xhp
msgctxt ""
-"cell_protect.xhp\n"
-"par_id3152985\n"
+"calc_series.xhp\n"
+"par_id3150749\n"
"9\n"
"help.text"
-msgid "Select the protection options that you want. All options will be applied only after you protect the sheet from the Tools menu - see below."
-msgstr ""
-
-#: cell_protect.xhp
-msgctxt ""
-"cell_protect.xhp\n"
-"par_id31529866655\n"
-"help.text"
-msgid "Uncheck <emph>Protected</emph> to allow the user to change the currently selected cells."
-msgstr ""
-
-#: cell_protect.xhp
-msgctxt ""
-"cell_protect.xhp\n"
-"par_id3152898\n"
-"10\n"
-"help.text"
-msgid "Select <emph>Protected</emph> to prevent changes to the contents and the format of a cell."
-msgstr ""
-
-#: cell_protect.xhp
-msgctxt ""
-"cell_protect.xhp\n"
-"par_idN1069A\n"
-"help.text"
-msgid "Select <emph>Hide formula</emph> to hide and to protect formulas from changes."
-msgstr ""
-
-#: cell_protect.xhp
-msgctxt ""
-"cell_protect.xhp\n"
-"par_idN106A1\n"
-"help.text"
-msgid "Select <emph>Hide when printing</emph> to hide protected cells in the printed document. The cells are not hidden onscreen."
+msgid "Select the cell range in the sheet that you want to fill."
msgstr ""
-#: cell_protect.xhp
-msgctxt ""
-"cell_protect.xhp\n"
-"par_id3152872\n"
-"11\n"
-"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-
-#: cell_protect.xhp
+#: calc_series.xhp
msgctxt ""
-"cell_protect.xhp\n"
-"par_id3145362\n"
-"12\n"
+"calc_series.xhp\n"
+"par_id3154754\n"
+"19\n"
"help.text"
-msgid "Apply the protection options."
-msgstr "Apliko AutoFormat Opcionet"
+msgid "Choose <item type=\"menuitem\">Edit - Fill - Series</item>."
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: cell_protect.xhp
+#: calc_series.xhp
msgctxt ""
-"cell_protect.xhp\n"
-"par_idN106C0\n"
+"calc_series.xhp\n"
+"par_idN10716\n"
"help.text"
-msgid "To protect the cells from being changed / viewed / printed according to your settings in the <emph>Format - Cells</emph> dialog, choose <item type=\"menuitem\">Tools - Protect Document - Sheet</item>."
-msgstr ""
+msgid "Select the parameters for the series."
+msgstr "Parametra shtesë për modulin ${MODULE}:"
-#: cell_protect.xhp
+#: calc_series.xhp
msgctxt ""
-"cell_protect.xhp\n"
-"par_idN106C7\n"
+"calc_series.xhp\n"
+"par_idN10731\n"
"help.text"
-msgid "To protect the structure of the document, for example the count, <link href=\"text/scalc/guide/rename_table.xhp\">names</link>, and order of the sheets, from being changed, choose <item type=\"menuitem\">Tools - Protect Document - Document</item>."
+msgid "If you select a <emph>linear</emph> series, the increment that you enter is <emph>added</emph> to each consecutive number in the series to create the next value."
msgstr ""
-#: cell_protect.xhp
+#: calc_series.xhp
msgctxt ""
-"cell_protect.xhp\n"
-"par_idN106CF\n"
+"calc_series.xhp\n"
+"par_idN1073C\n"
"help.text"
-msgid "(Optional) Enter a password."
+msgid "If you select a <emph>growth</emph> series, the increment that you enter is <emph>multiplied</emph> by each consecutive number to create the next value."
msgstr ""
-#: cell_protect.xhp
+#: calc_series.xhp
msgctxt ""
-"cell_protect.xhp\n"
-"par_idN106D2\n"
+"calc_series.xhp\n"
+"par_idN10747\n"
"help.text"
-msgid "If you forget your password, you cannot deactivate the protection. If you only want to protect cells from accidental changes, set the sheet protection, but do not enter a password."
+msgid "If you select a <emph>date</emph> series, the increment that you enter is added to the time unit that you specify."
msgstr ""
-#: cell_protect.xhp
-#, fuzzy
-msgctxt ""
-"cell_protect.xhp\n"
-"par_id3153810\n"
-"13\n"
-"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-
-#: cell_protect.xhp
+#: calc_series.xhp
msgctxt ""
-"cell_protect.xhp\n"
-"par_idN10B8C\n"
+"calc_series.xhp\n"
+"par_id3159173\n"
+"20\n"
"help.text"
-msgid "<embedvar href=\"text/shared/guide/digital_signatures.xhp#digital_signatures\"/>"
+msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
msgstr ""
-#: database_define.xhp
+#: calc_timevalues.xhp
msgctxt ""
-"database_define.xhp\n"
+"calc_timevalues.xhp\n"
"tit\n"
"help.text"
-msgid "Defining Database Ranges"
-msgstr "Inte~rvalet e Printimit"
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"bm_id3154758\n"
-"help.text"
-msgid "<bookmark_value>tables; database ranges</bookmark_value> <bookmark_value>database ranges; defining</bookmark_value> <bookmark_value>ranges; defining database ranges</bookmark_value> <bookmark_value>defining;database ranges</bookmark_value>"
-msgstr ""
-
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"hd_id3154758\n"
-"31\n"
-"help.text"
-msgid "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Defining Database Ranges\">Defining a Database Range</link></variable>"
-msgstr ""
+msgid "Calculating Time Differences"
+msgstr "**Format i gabuar kohor**"
-#: database_define.xhp
+#: calc_timevalues.xhp
msgctxt ""
-"database_define.xhp\n"
-"par_id3153768\n"
-"81\n"
+"calc_timevalues.xhp\n"
+"bm_id3150769\n"
"help.text"
-msgid "You can define a range of cells in a spreadsheet to use as a database. Each row in this database range corresponds to a database record and each cell in a row corresponds to a database field. You can sort, group, search, and perform calculations on the range as you would in a database."
+msgid "<bookmark_value>calculating;time differences</bookmark_value><bookmark_value>time differences</bookmark_value>"
msgstr ""
-#: database_define.xhp
+#: calc_timevalues.xhp
msgctxt ""
-"database_define.xhp\n"
-"par_id3145801\n"
-"82\n"
+"calc_timevalues.xhp\n"
+"hd_id3150769\n"
+"53\n"
"help.text"
-msgid "You can only edit and access a database range in the spreadsheet that contains the range. You cannot access the database range in the %PRODUCTNAME Data Sources view."
+msgid "<variable id=\"calc_timevalues\"><link href=\"text/scalc/guide/calc_timevalues.xhp\" name=\"Calculating Time Differences\">Calculating Time Differences</link></variable>"
msgstr ""
-#: database_define.xhp
+#: calc_timevalues.xhp
msgctxt ""
-"database_define.xhp\n"
-"par_idN10648\n"
+"calc_timevalues.xhp\n"
+"par_id3149263\n"
+"54\n"
"help.text"
-msgid "To define a database range"
+msgid "If you want to calculate time differences, for example, the time between 23:30 and 01:10 in the same night, use the following formula:"
msgstr ""
-#: database_define.xhp
+#: calc_timevalues.xhp
msgctxt ""
-"database_define.xhp\n"
-"par_id3155064\n"
-"41\n"
+"calc_timevalues.xhp\n"
+"par_id3159153\n"
+"55\n"
"help.text"
-msgid "Select the range of cells that you want to define as a database range."
+msgid "=(B2<A2)+B2-A2"
msgstr ""
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_idN10654\n"
-"help.text"
-msgid "Choose <item type=\"menuitem\">Data - Define Range</item>."
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: database_define.xhp
+#: calc_timevalues.xhp
msgctxt ""
-"database_define.xhp\n"
-"par_id3153715\n"
-"72\n"
+"calc_timevalues.xhp\n"
+"par_id3152598\n"
+"56\n"
"help.text"
-msgid "In the <emph>Name</emph> box, enter a name for the database range."
+msgid "The later time is B2 and the earlier time is A2. The result of the example is 01:40 or 1 hour and 40 minutes."
msgstr ""
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_idN1066A\n"
-"help.text"
-msgid "Click <emph>More</emph>."
-msgstr "Më shumë kontrolla të databazës"
-
-#: database_define.xhp
+#: calc_timevalues.xhp
msgctxt ""
-"database_define.xhp\n"
-"par_id3154253\n"
-"42\n"
+"calc_timevalues.xhp\n"
+"par_id3145271\n"
+"57\n"
"help.text"
-msgid "Specify the options for the database range."
+msgid "In the formula, an entire 24-hour day has a value of 1 and one hour has a value of 1/24. The logical value in parentheses is 0 or 1, corresponding to 0 or 24 hours. The result returned by the formula is automatically issued in time format due to the sequence of the operands."
msgstr ""
-#: database_define.xhp
-msgctxt ""
-"database_define.xhp\n"
-"par_idN10675\n"
-"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-
-#: value_with_name.xhp
+#: calculate.xhp
msgctxt ""
-"value_with_name.xhp\n"
+"calculate.xhp\n"
"tit\n"
"help.text"
-msgid "Naming Cells"
-msgstr "Bashko qelizat"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"bm_id3147434\n"
-"help.text"
-msgid "<bookmark_value>cells; defining names</bookmark_value> <bookmark_value>names; defining for cells</bookmark_value> <bookmark_value>values; defining names</bookmark_value> <bookmark_value>constants definition</bookmark_value> <bookmark_value>variables; defining names</bookmark_value> <bookmark_value>cell ranges; defining names</bookmark_value> <bookmark_value>defining;names for cell ranges</bookmark_value> <bookmark_value>formulas; defining names</bookmark_value> <bookmark_value>addressing; by defined names</bookmark_value> <bookmark_value>cell names; defining/addressing</bookmark_value> <bookmark_value>references; by defined names</bookmark_value> <bookmark_value>allowed cell names</bookmark_value> <bookmark_value>renaming;cells</bookmark_value>"
-msgstr ""
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"hd_id3147434\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"value_with_name\"><link href=\"text/scalc/guide/value_with_name.xhp\" name=\"Naming Cells\">Naming Cells</link></variable>"
-msgstr ""
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"hd_id4391918\n"
-"help.text"
-msgid "Allowed names"
-msgstr "Emrat e Objekteve"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id2129581\n"
-"help.text"
-msgid "Names in Calc can contain letters, numeric characters, and some special characters. Names must start with a letter or an underline character."
-msgstr ""
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id1120029\n"
-"help.text"
-msgid "Allowed special characters:"
-msgstr "Hyrja e karaktereve alfanumerike"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id3362224\n"
-"help.text"
-msgid "underline (_)"
-msgstr "Nënvizim"
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id4891506\n"
-"help.text"
-msgid "period (.) - allowed within a name, but not as first or last character"
-msgstr ""
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id2816553\n"
-"help.text"
-msgid "blank ( ) - allowed within a name, but not as first or last character, and not for a cell range"
-msgstr ""
-
-#: value_with_name.xhp
-msgctxt ""
-"value_with_name.xhp\n"
-"par_id328989\n"
-"help.text"
-msgid "Names must not be the same as cell references. For example, the name A1 is invalid because A1 is a cell reference to the top left cell."
-msgstr ""
+msgid "Calculating in Spreadsheets"
+msgstr "Microsoft &Excel tabela kalkuluese"
-#: value_with_name.xhp
+#: calculate.xhp
msgctxt ""
-"value_with_name.xhp\n"
-"par_id32898987\n"
+"calculate.xhp\n"
+"bm_id3150791\n"
"help.text"
-msgid "Names must not start with the letter R followed by a number. See the ADDRESS function for more information."
-msgstr ""
+msgid "<bookmark_value>spreadsheets; calculating</bookmark_value><bookmark_value>calculating; spreadsheets</bookmark_value><bookmark_value>formulas; calculating</bookmark_value>"
+msgstr "Shndërron një vlerë në tekst."
-#: value_with_name.xhp
+#: calculate.xhp
msgctxt ""
-"value_with_name.xhp\n"
-"par_id4769737\n"
+"calculate.xhp\n"
+"hd_id3150791\n"
"help.text"
-msgid "Names for cell ranges must not include blanks. Blanks are allowed within names for single cells, sheets and documents."
+msgid "<variable id=\"calculate\"><link href=\"text/scalc/guide/calculate.xhp\" name=\"Calculating in Spreadsheets\">Calculating in Spreadsheets</link></variable>"
msgstr ""
-#: value_with_name.xhp
+#: calculate.xhp
msgctxt ""
-"value_with_name.xhp\n"
-"hd_id1226233\n"
+"calculate.xhp\n"
+"par_id3146120\n"
"help.text"
-msgid "Naming cells and formulas"
+msgid "The following is an example of a calculation in $[officename] Calc."
msgstr ""
-#: value_with_name.xhp
+#: calculate.xhp
msgctxt ""
-"value_with_name.xhp\n"
-"par_id5489364\n"
+"calculate.xhp\n"
+"par_id3153951\n"
"help.text"
-msgid "A good way of making the references to cells and cell ranges in formulas legible is to give the ranges names. For example, you can name the range A1:B2 <emph>Start</emph>. You can then write a formula such as \"=SUM(Start)\". Even after you insert or delete rows or columns, $[officename] still correctly assigns the ranges identified by name. Range names must not contain any spaces."
+msgid "Click in a cell, and type a number"
msgstr ""
-#: value_with_name.xhp
+#: calculate.xhp
msgctxt ""
-"value_with_name.xhp\n"
-"par_id953398\n"
+"calculate.xhp\n"
+"par_idN10656\n"
"help.text"
-msgid "For example, it is much easier to read a formula for sales tax if you can write \"= Amount * Tax_rate\" instead of \"= A5 * B12\". In this case, you would name cell A5 \"Amount\" and cell B12 \"Tax_rate.\""
-msgstr ""
+msgid "Press Enter."
+msgstr "[Shtyp enter për të vazhduar]"
-#: value_with_name.xhp
+#: calculate.xhp
msgctxt ""
-"value_with_name.xhp\n"
-"par_id4889675\n"
+"calculate.xhp\n"
+"par_idN1065D\n"
"help.text"
-msgid "Use the <emph>Define Names</emph> dialog to define names for formulas or parts of formulas you need more often. In order to specify range names,"
+msgid "The cursor moves down to the next cell."
msgstr ""
-#: value_with_name.xhp
+#: calculate.xhp
msgctxt ""
-"value_with_name.xhp\n"
-"par_id3153954\n"
-"3\n"
+"calculate.xhp\n"
+"par_id3155064\n"
"help.text"
-msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
-msgstr ""
+msgid "Enter another number."
+msgstr "Numwr tjetwr kompleks"
-#: value_with_name.xhp
+#: calculate.xhp
msgctxt ""
-"value_with_name.xhp\n"
-"par_id3156283\n"
-"4\n"
+"calculate.xhp\n"
+"par_idN1066F\n"
"help.text"
-msgid "Type the name of the selected area in the <emph>Name</emph> field. Click <emph>Add</emph>. The newly defined name appears in the list below. Click OK to close the dialog."
+msgid "Press the Tab key."
msgstr ""
-#: value_with_name.xhp
+#: calculate.xhp
msgctxt ""
-"value_with_name.xhp\n"
-"par_id5774101\n"
+"calculate.xhp\n"
+"par_idN10676\n"
"help.text"
-msgid "You can also name other cell ranges in this dialog by entering the name in the field and then selecting the respective cells."
+msgid "The cursor moves to the right into the next cell."
msgstr ""
-#: value_with_name.xhp
+#: calculate.xhp
msgctxt ""
-"value_with_name.xhp\n"
-"par_id3154942\n"
-"5\n"
+"calculate.xhp\n"
+"par_id3154253\n"
"help.text"
-msgid "If you type the name in a formula, after the first few characters entered you will see the entire name as a tip."
+msgid "Type in a formula, for example, <item type=\"literal\">=A3 * A4 / 100.</item>"
msgstr ""
-#: value_with_name.xhp
+#: calculate.xhp
msgctxt ""
-"value_with_name.xhp\n"
-"par_id3154510\n"
-"6\n"
+"calculate.xhp\n"
+"par_idN1068B\n"
"help.text"
-msgid "Press the Enter key in order to accept the name from the tip."
-msgstr ""
+msgid "Press Enter."
+msgstr "[Shtyp enter për të vazhduar]"
-#: value_with_name.xhp
+#: calculate.xhp
msgctxt ""
-"value_with_name.xhp\n"
-"par_id3150749\n"
-"7\n"
+"calculate.xhp\n"
+"par_id3147343\n"
"help.text"
-msgid "If more than one name starts with the same characters, you can scroll through all the names using the Tab key."
+msgid "The result of the formula appears in the cell. If you want, you can edit the formula in the input line of the Formula bar."
msgstr ""
-#: value_with_name.xhp
+#: calculate.xhp
msgctxt ""
-"value_with_name.xhp\n"
-"par_id3153711\n"
-"8\n"
+"calculate.xhp\n"
+"par_id3155378\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
+msgid "When you edit a formula, the new result is calculated automatically."
msgstr ""
#: cell_enter.xhp
@@ -3205,768 +1748,633 @@ msgctxt ""
msgid "See <link href=\"text/scalc/guide/calc_series.xhp\">Automatically Filling in Data Based on Adjacent Cells</link>."
msgstr ""
-#: row_height.xhp
+#: cell_protect.xhp
msgctxt ""
-"row_height.xhp\n"
+"cell_protect.xhp\n"
"tit\n"
"help.text"
-msgid "Changing Row Height or Column Width"
+msgid "Protecting Cells from Changes"
msgstr ""
-#: row_height.xhp
+#: cell_protect.xhp
msgctxt ""
-"row_height.xhp\n"
-"bm_id3145748\n"
+"cell_protect.xhp\n"
+"bm_id3146119\n"
"help.text"
-msgid "<bookmark_value>heights of cells</bookmark_value><bookmark_value>cell heights</bookmark_value><bookmark_value>cell widths</bookmark_value><bookmark_value>cells; heights and widths</bookmark_value><bookmark_value>widths of cells</bookmark_value><bookmark_value>column widths</bookmark_value><bookmark_value>rows; heights</bookmark_value><bookmark_value>columns; widths</bookmark_value><bookmark_value>changing;row heights/column widths</bookmark_value>"
+msgid "<bookmark_value>protecting;cells and sheets</bookmark_value> <bookmark_value>cells; protecting</bookmark_value> <bookmark_value>cell protection; enabling</bookmark_value> <bookmark_value>sheets; protecting</bookmark_value> <bookmark_value>documents; protecting</bookmark_value> <bookmark_value>cells; hiding for printing</bookmark_value> <bookmark_value>changing; sheet protection</bookmark_value> <bookmark_value>hiding;formulas</bookmark_value> <bookmark_value>formulas;hiding</bookmark_value>"
msgstr ""
-#: row_height.xhp
+#: cell_protect.xhp
msgctxt ""
-"row_height.xhp\n"
-"hd_id3145748\n"
-"1\n"
+"cell_protect.xhp\n"
+"hd_id3146119\n"
+"5\n"
"help.text"
-msgid "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp\" name=\"Changing Row Height or Column Width\">Changing Row Height or Column Width</link></variable>"
+msgid "<variable id=\"cell_protect\"><link href=\"text/scalc/guide/cell_protect.xhp\" name=\"Protecting Cells from Changes\">Protecting Cells from Changes</link></variable>"
msgstr ""
-#: row_height.xhp
+#: cell_protect.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3154017\n"
-"2\n"
+"cell_protect.xhp\n"
+"par_id3153368\n"
+"17\n"
"help.text"
-msgid "You can change the height of the rows with the mouse or through the dialog."
+msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can protect sheets and the document as a whole. You can choose whether the cells are protected against accidental changes, whether the formulas can be viewed from within Calc, whether the cells are visible or whether the cells can be printed."
msgstr ""
-#: row_height.xhp
+#: cell_protect.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3154702\n"
-"3\n"
+"cell_protect.xhp\n"
+"par_id3145261\n"
+"18\n"
"help.text"
-msgid "What is described here for rows and row height applies accordingly for columns and column width."
+msgid "Protection can be provided by means of a password, but it does not have to be. If you have assigned a password, protection can only be removed once the correct password has been entered."
msgstr ""
-#: row_height.xhp
+#: cell_protect.xhp
msgctxt ""
-"row_height.xhp\n"
-"hd_id3153963\n"
-"4\n"
+"cell_protect.xhp\n"
+"par_id3148576\n"
+"19\n"
"help.text"
-msgid "Using the mouse to change the row height or column width"
+msgid "Note that the cell protection for cells with the <emph>Protected</emph> attribute is only effective when you protect the whole sheet. In the default condition, every cell has the <emph>Protected</emph> attribute. Therefore you must remove the attribute selectively for those cells where the user may make changes. You then protect the whole sheet and save the document."
msgstr ""
-#: row_height.xhp
+#: cell_protect.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3154020\n"
-"5\n"
+"cell_protect.xhp\n"
+"par_id5974303\n"
"help.text"
-msgid "Click the area of the headers on the separator below the current row, keep the mouse button pressed and drag up or down in order to change the row height."
+msgid "These protection features are just switches to prevent accidental action. The features are not intended to provide any secure protection. For example, by exporting a sheet to another file format, a user may be able to surpass the protection features. There is only one secure protection: the password that you can apply when saving an OpenDocument file. A file that has been saved with a password can be opened only with the same password."
msgstr ""
-#: row_height.xhp
+#: cell_protect.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3159237\n"
-"6\n"
+"cell_protect.xhp\n"
+"par_idN1066B\n"
"help.text"
-msgid "Select the optimal row height by double-clicking the separator below the row."
+msgid "Select the cells that you want to specify the cell protection options for."
msgstr ""
-#: row_height.xhp
+#: cell_protect.xhp
msgctxt ""
-"row_height.xhp\n"
-"hd_id3154659\n"
+"cell_protect.xhp\n"
+"par_id3149019\n"
"7\n"
"help.text"
-msgid "Using the dialog to change the row height or column width"
-msgstr ""
-
-#: row_height.xhp
-msgctxt ""
-"row_height.xhp\n"
-"par_id3150367\n"
-"8\n"
-"help.text"
-msgid "Click the row so that you achieve the focus."
+msgid "Choose <item type=\"menuitem\">Format - Cells</item> and click the <emph>Cell Protection</emph> tab."
msgstr ""
-#: row_height.xhp
+#: cell_protect.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3166432\n"
+"cell_protect.xhp\n"
+"par_id3152985\n"
"9\n"
"help.text"
-msgid "Start the context menu on the header at the left-hand side."
+msgid "Select the protection options that you want. All options will be applied only after you protect the sheet from the Tools menu - see below."
msgstr ""
-#: row_height.xhp
+#: cell_protect.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3150519\n"
-"10\n"
+"cell_protect.xhp\n"
+"par_id31529866655\n"
"help.text"
-msgid "You will see the commands <emph>Row Height</emph> and <emph>Optimal row height</emph>. Choosing either opens a dialog."
+msgid "Uncheck <emph>Protected</emph> to allow the user to change the currently selected cells."
msgstr ""
-#: row_height.xhp
+#: cell_protect.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3154487\n"
-"11\n"
+"cell_protect.xhp\n"
+"par_id3152898\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Row height\">Row height</link>"
+msgid "Select <emph>Protected</emph> to prevent changes to the contents and the format of a cell."
msgstr ""
-#: row_height.xhp
+#: cell_protect.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3149408\n"
-"12\n"
+"cell_protect.xhp\n"
+"par_idN1069A\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal row height\">Optimal row height</link>"
+msgid "Select <emph>Hide formula</emph> to hide and to protect formulas from changes."
msgstr ""
-#: row_height.xhp
+#: cell_protect.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3153305\n"
-"13\n"
+"cell_protect.xhp\n"
+"par_idN106A1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Column width\">Column width</link>"
+msgid "Select <emph>Hide when printing</emph> to hide protected cells in the printed document. The cells are not hidden onscreen."
msgstr ""
-#: row_height.xhp
+#: cell_protect.xhp
msgctxt ""
-"row_height.xhp\n"
-"par_id3153815\n"
-"14\n"
+"cell_protect.xhp\n"
+"par_id3152872\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal column width\">Optimal column width</link>"
-msgstr ""
+msgid "Click <emph>OK</emph>."
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-#: line_fix.xhp
+#: cell_protect.xhp
msgctxt ""
-"line_fix.xhp\n"
-"tit\n"
+"cell_protect.xhp\n"
+"par_id3145362\n"
+"12\n"
"help.text"
-msgid "Freezing Rows or Columns as Headers"
-msgstr ""
+msgid "Apply the protection options."
+msgstr "Apliko AutoFormat Opcionet"
-#: line_fix.xhp
+#: cell_protect.xhp
msgctxt ""
-"line_fix.xhp\n"
-"bm_id3154684\n"
+"cell_protect.xhp\n"
+"par_idN106C0\n"
"help.text"
-msgid "<bookmark_value>tables; freezing</bookmark_value><bookmark_value>title rows; freezing during table split</bookmark_value><bookmark_value>rows; freezing</bookmark_value><bookmark_value>columns; freezing</bookmark_value><bookmark_value>freezing rows or columns</bookmark_value><bookmark_value>headers; freezing during table split</bookmark_value><bookmark_value>scrolling prevention in tables</bookmark_value><bookmark_value>windows; splitting</bookmark_value><bookmark_value>tables; splitting windows</bookmark_value>"
+msgid "To protect the cells from being changed / viewed / printed according to your settings in the <emph>Format - Cells</emph> dialog, choose <item type=\"menuitem\">Tools - Protect Document - Sheet</item>."
msgstr ""
-#: line_fix.xhp
+#: cell_protect.xhp
msgctxt ""
-"line_fix.xhp\n"
-"hd_id3154684\n"
-"1\n"
+"cell_protect.xhp\n"
+"par_idN106C7\n"
"help.text"
-msgid "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Freezing Rows or Columns as Headers\">Freezing Rows or Columns as Headers</link></variable>"
+msgid "To protect the structure of the document, for example the count, <link href=\"text/scalc/guide/rename_table.xhp\">names</link>, and order of the sheets, from being changed, choose <item type=\"menuitem\">Tools - Protect Document - Document</item>."
msgstr ""
-#: line_fix.xhp
+#: cell_protect.xhp
msgctxt ""
-"line_fix.xhp\n"
-"par_id3148576\n"
-"2\n"
+"cell_protect.xhp\n"
+"par_idN106CF\n"
"help.text"
-msgid "If you have long rows or columns of data that extend beyond the viewable area of the sheet, you can freeze some rows or columns, which allows you to see the frozen columns or rows as you scroll through the rest of the data."
+msgid "(Optional) Enter a password."
msgstr ""
-#: line_fix.xhp
+#: cell_protect.xhp
msgctxt ""
-"line_fix.xhp\n"
-"par_id3156441\n"
-"3\n"
+"cell_protect.xhp\n"
+"par_idN106D2\n"
"help.text"
-msgid "Select the row below, or the column to the right of the row or column that you want to be in the frozen region. All rows above, or all columns to the left of the selection are frozen."
+msgid "If you forget your password, you cannot deactivate the protection. If you only want to protect cells from accidental changes, set the sheet protection, but do not enter a password."
msgstr ""
-#: line_fix.xhp
+#: cell_protect.xhp
msgctxt ""
-"line_fix.xhp\n"
-"par_id3153158\n"
+"cell_protect.xhp\n"
+"par_id3153810\n"
"13\n"
"help.text"
-msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
-msgstr ""
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3156286\n"
-"4\n"
-"help.text"
-msgid "Choose <emph>Window - Freeze</emph>."
-msgstr ""
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3151073\n"
-"5\n"
-"help.text"
-msgid "To deactivate, choose <emph>Window - Freeze </emph>again."
-msgstr ""
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3155335\n"
-"7\n"
-"help.text"
-msgid "If the area defined is to be scrollable, apply the <emph>Window - Split</emph> command."
-msgstr ""
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3147345\n"
-"8\n"
-"help.text"
-msgid "If you want to print a certain row on all pages of a document, choose <emph>Format - Print ranges - Edit</emph>."
-msgstr ""
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3147004\n"
-"9\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Window - Freeze\">Window - Freeze</link>"
-msgstr ""
-
-#: line_fix.xhp
-msgctxt ""
-"line_fix.xhp\n"
-"par_id3150088\n"
-"10\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Window - Split\">Window - Split</link>"
-msgstr ""
+msgid "Click <emph>OK</emph>."
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-#: line_fix.xhp
+#: cell_protect.xhp
msgctxt ""
-"line_fix.xhp\n"
-"par_id3150304\n"
-"11\n"
+"cell_protect.xhp\n"
+"par_idN10B8C\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
+msgid "<embedvar href=\"text/shared/guide/digital_signatures.xhp#digital_signatures\"/>"
msgstr ""
-#: address_auto.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"address_auto.xhp\n"
+"cell_unprotect.xhp\n"
"tit\n"
"help.text"
-msgid "Recognizing Names as Addressing"
-msgstr ""
-
-#: address_auto.xhp
-msgctxt ""
-"address_auto.xhp\n"
-"bm_id3148797\n"
-"help.text"
-msgid "<bookmark_value>automatic addressing in tables</bookmark_value> <bookmark_value>natural language addressing</bookmark_value> <bookmark_value>formulas; using row/column labels</bookmark_value> <bookmark_value>text in cells; as addressing</bookmark_value> <bookmark_value>addressing; automatic</bookmark_value> <bookmark_value>name recognition on/off</bookmark_value> <bookmark_value>row headers;using in formulas</bookmark_value> <bookmark_value>column headers;using in formulas</bookmark_value> <bookmark_value>columns; finding labels automatically</bookmark_value> <bookmark_value>rows; finding labels automatically</bookmark_value> <bookmark_value>recognizing; column and row labels</bookmark_value>"
-msgstr ""
+msgid "Unprotecting Cells"
+msgstr "Bashko qelizat"
-#: address_auto.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"address_auto.xhp\n"
-"hd_id3148797\n"
-"20\n"
+"cell_unprotect.xhp\n"
+"bm_id3153252\n"
"help.text"
-msgid "<variable id=\"address_auto\"><link href=\"text/scalc/guide/address_auto.xhp\" name=\"Recognizing Names as Addressing\">Recognizing Names as Addressing</link></variable>"
+msgid "<bookmark_value>cell protection; unprotecting</bookmark_value> <bookmark_value>protecting; unprotecting cells</bookmark_value> <bookmark_value>unprotecting cells</bookmark_value>"
msgstr ""
-#: address_auto.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"address_auto.xhp\n"
-"par_id3152597\n"
-"21\n"
+"cell_unprotect.xhp\n"
+"hd_id3153252\n"
+"14\n"
"help.text"
-msgid "You can use cells with text to refer to the rows or to the columns that contain the cells."
+msgid "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Unprotecting Cells\">Unprotecting Cells</link> </variable>"
msgstr ""
-#: address_auto.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"address_auto.xhp\n"
-"par_id3156283\n"
+"cell_unprotect.xhp\n"
+"par_id3151112\n"
+"15\n"
"help.text"
-msgid "<image id=\"img_id3154942\" src=\"res/helpimg/names_as_addressing.png\" width=\"2.1291in\" height=\"0.8709in\" localize=\"true\"><alt id=\"alt_id3154942\">Example spreadsheet</alt></image>"
+msgid "Click the sheet for which you want to cancel the protection."
msgstr ""
-#: address_auto.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"address_auto.xhp\n"
-"par_id3154512\n"
-"22\n"
+"cell_unprotect.xhp\n"
+"par_id3149656\n"
+"16\n"
"help.text"
-msgid "In the example spreadsheet, you can use the string <item type=\"literal\">'Column One'</item> in a formula to refer to the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">B5</item>, or <item type=\"literal\">'Column Two'</item> for the cell range <item type=\"literal\">C2</item> to <item type=\"literal\">C5</item>. You can also use <item type=\"literal\">'Row One'</item> for the cell range <item type=\"literal\">B3</item> to <item type=\"literal\">D3</item>, or <item type=\"literal\">'Row Two'</item> for the cell range <item type=\"literal\">B4</item> to <item type=\"literal\">D4</item>. The result of a formula that uses a cell name, for example, <item type=\"literal\">SUM('Column One')</item>, is 600."
+msgid "Select <emph>Tools - Protect Document</emph>, then choose <emph>Sheet</emph> or <emph>Document</emph> to remove the check mark indicating the protected status."
msgstr ""
-#: address_auto.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"address_auto.xhp\n"
-"par_id3155443\n"
-"24\n"
+"cell_unprotect.xhp\n"
+"par_id3145171\n"
+"17\n"
"help.text"
-msgid "This function is active by default. To turn this function off, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Calculate</emph> and clear the <emph>Automatically find column and row labels</emph> check box."
+msgid "If you have assigned a password, enter it in this dialog and click <emph>OK</emph>."
msgstr ""
-#: address_auto.xhp
+#: cell_unprotect.xhp
msgctxt ""
-"address_auto.xhp\n"
-"par_id3149210\n"
-"37\n"
+"cell_unprotect.xhp\n"
+"par_id3153771\n"
+"18\n"
"help.text"
-msgid "If you want a name to be automatically recognized by Calc, the name must start with a letter and be composed of alphanumeric characters. If you enter the name in the formula yourself, enclose the name in single quotation marks ('). If a single quotation mark appears in a name, you must enter a backslash in front of the quotation mark, for example, <item type=\"literal\">'Harry\\'s Bar'.</item>"
+msgid "The cells can now be edited, the formulas can be viewed, and all cells can be printed until you reactivate the protection for the sheet or document."
msgstr ""
-#: filters.xhp
+#: cellcopy.xhp
msgctxt ""
-"filters.xhp\n"
+"cellcopy.xhp\n"
"tit\n"
"help.text"
-msgid "Applying Filters"
-msgstr "Objektet/grafikat"
+msgid "Only Copy Visible Cells"
+msgstr ""
-#: filters.xhp
+#: cellcopy.xhp
msgctxt ""
-"filters.xhp\n"
-"bm_id3153896\n"
+"cellcopy.xhp\n"
+"bm_id3150440\n"
"help.text"
-msgid "<bookmark_value>filters; applying/removing</bookmark_value> <bookmark_value>rows;removing/redisplaying with filters</bookmark_value> <bookmark_value>removing;filters</bookmark_value>"
+msgid "<bookmark_value>cells; copying/deleting/formatting/moving</bookmark_value> <bookmark_value>rows;visible and invisible</bookmark_value> <bookmark_value>copying; visible cells only</bookmark_value> <bookmark_value>formatting;visible cells only</bookmark_value> <bookmark_value>moving;visible cells only</bookmark_value> <bookmark_value>deleting;visible cells only</bookmark_value> <bookmark_value>invisible cells</bookmark_value> <bookmark_value>filters;copying visible cells only</bookmark_value> <bookmark_value>hidden cells</bookmark_value>"
msgstr ""
-#: filters.xhp
+#: cellcopy.xhp
msgctxt ""
-"filters.xhp\n"
-"hd_id3153896\n"
-"70\n"
+"cellcopy.xhp\n"
+"hd_id3150440\n"
+"1\n"
"help.text"
-msgid "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Applying Filters\">Applying Filters</link></variable>"
+msgid "<variable id=\"cellcopy\"><link href=\"text/scalc/guide/cellcopy.xhp\" name=\"Only Copy Visible Cells\">Only Copy Visible Cells</link></variable>"
msgstr ""
-#: filters.xhp
+#: cellcopy.xhp
msgctxt ""
-"filters.xhp\n"
-"par_id3150869\n"
+"cellcopy.xhp\n"
+"par_id3148577\n"
"2\n"
"help.text"
-msgid "Filters and advanced filters allow you to work on certain filtered rows (records) of a data range. In the spreadsheets in $[officename] there are various possibilities for applying filters."
+msgid "Assume you have hidden a few rows in a cell range. Now you want to copy, delete, or format only the remaining visible rows."
msgstr ""
-#: filters.xhp
+#: cellcopy.xhp
msgctxt ""
-"filters.xhp\n"
-"par_id3155131\n"
+"cellcopy.xhp\n"
+"par_id3154729\n"
"3\n"
"help.text"
-msgid "One use for the <emph>AutoFilter</emph> function is to quickly restrict the display to records with identical entries in a data field."
+msgid "$[officename] behavior depends on how the cells were made invisible, by a filter or manually."
msgstr ""
-#: filters.xhp
+#: cellcopy.xhp
msgctxt ""
-"filters.xhp\n"
-"par_id3146119\n"
+"cellcopy.xhp\n"
+"par_id3155603\n"
"4\n"
"help.text"
-msgid "In the <emph>Standard Filter</emph> dialog, you can also define ranges which contain the values in particular data fields. You can use the standard filter to connect the conditions with either a logical AND or a logical OR operator."
-msgstr ""
+msgid "Method and Action"
+msgstr "Fillo veprimin e objektit"
-#: filters.xhp
+#: cellcopy.xhp
msgctxt ""
-"filters.xhp\n"
-"par_id3150010\n"
+"cellcopy.xhp\n"
+"par_id3150751\n"
"5\n"
"help.text"
-msgid "The <emph>Advanced filter</emph> allows up to a total of eight filter conditions. With advanced filters you enter the conditions directly into the sheet."
-msgstr ""
-
-#: filters.xhp
-msgctxt ""
-"filters.xhp\n"
-"par_id9384746\n"
-"help.text"
-msgid "To remove a filter, so that you see all cells again, click inside the area where the filter was applied, then choose <item type=\"menuitem\">Data - Filter - Remove Filter</item>."
-msgstr ""
+msgid "Result"
+msgstr "Rezultat"
-#: filters.xhp
+#: cellcopy.xhp
msgctxt ""
-"filters.xhp\n"
-"par_idN10663\n"
+"cellcopy.xhp\n"
+"par_id3149018\n"
+"6\n"
"help.text"
-msgid "When you select multiple rows from an area where a filter was applied, then this selection can include rows that are visible and rows that are hidden by the filter. If you then apply formatting, or delete the selected rows, this action then applies only to the visible rows. The hidden rows are not affected."
+msgid "Cells were filtered by AutoFilters, standard filters or advanced filters."
msgstr ""
-#: filters.xhp
+#: cellcopy.xhp
msgctxt ""
-"filters.xhp\n"
-"par_id218817\n"
+"cellcopy.xhp\n"
+"par_id3150044\n"
+"7\n"
"help.text"
-msgid "This is the opposite to rows that you have hidden manually by the <emph>Format - Rows - Hide Rows</emph> command. Manually hidden rows are deleted when you delete a selection that contains them."
+msgid "Copy, delete, move, or format a selection of currently visible cells."
msgstr ""
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"tit\n"
-"help.text"
-msgid "Automatically Calculating Series"
-msgstr "Të Dhënat Serike $(ROW)"
-
-#: calc_series.xhp
+#: cellcopy.xhp
msgctxt ""
-"calc_series.xhp\n"
-"bm_id3150769\n"
+"cellcopy.xhp\n"
+"par_id3146918\n"
+"8\n"
"help.text"
-msgid "<bookmark_value>series; calculating</bookmark_value> <bookmark_value>calculating; series</bookmark_value> <bookmark_value>linear series</bookmark_value> <bookmark_value>growth series</bookmark_value> <bookmark_value>date series</bookmark_value> <bookmark_value>powers of 2 calculations</bookmark_value> <bookmark_value>cells; filling automatically</bookmark_value> <bookmark_value>automatic cell filling</bookmark_value> <bookmark_value>AutoFill function</bookmark_value> <bookmark_value>filling;cells, automatically</bookmark_value>"
+msgid "Only the visible cells of the selection are copied, deleted, moved, or formatted."
msgstr ""
-#: calc_series.xhp
+#: cellcopy.xhp
msgctxt ""
-"calc_series.xhp\n"
-"hd_id3150769\n"
-"6\n"
+"cellcopy.xhp\n"
+"par_id3166427\n"
+"12\n"
"help.text"
-msgid "<variable id=\"calc_series\"><link href=\"text/scalc/guide/calc_series.xhp\" name=\"Automatically Calculating Series\">Automatically Filling in Data Based on Adjacent Cells</link></variable>"
+msgid "Cells were hidden using the <emph>Hide</emph> command in the context menu of the row or column headers, or through an <link href=\"text/scalc/01/12080000.xhp\" name=\"outline\">outline</link>."
msgstr ""
-#: calc_series.xhp
+#: cellcopy.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN106A8\n"
+"cellcopy.xhp\n"
+"par_id3152990\n"
+"13\n"
"help.text"
-msgid "You can automatically fill cells with data with the AutoFill command or the Series command."
+msgid "Copy, delete, move, or format a selection of currently visible cells."
msgstr ""
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"par_idN106D3\n"
-"help.text"
-msgid "Using AutoFill"
-msgstr "Duke përdorur Ndihmën"
-
-#: calc_series.xhp
+#: cellcopy.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN106D7\n"
+"cellcopy.xhp\n"
+"par_id3154371\n"
+"14\n"
"help.text"
-msgid "AutoFill automatically generates a data series based on a defined pattern."
+msgid "All cells of the selection, including the hidden cells, are copied, deleted, moved, or formatted."
msgstr ""
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id3154319\n"
-"7\n"
+"cellreference_dragdrop.xhp\n"
+"tit\n"
"help.text"
-msgid "On a sheet, click in a cell, and type a number."
+msgid "Referencing Cells by Drag-and-Drop"
msgstr ""
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN106CB\n"
+"cellreference_dragdrop.xhp\n"
+"bm_id3154686\n"
"help.text"
-msgid "Click in another cell and then click back in the cell where you typed the number."
+msgid "<bookmark_value>drag and drop; referencing cells</bookmark_value> <bookmark_value>cells; referencing by drag and drop </bookmark_value> <bookmark_value>references;inserting by drag and drop</bookmark_value> <bookmark_value>inserting;references, by drag and drop</bookmark_value>"
msgstr ""
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id3145272\n"
+"cellreference_dragdrop.xhp\n"
+"hd_id3154686\n"
"16\n"
"help.text"
-msgid "Drag the fill handle in the bottom right corner of the cell across the cells that you want to fill, and release the mouse button."
+msgid "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\" name=\"Referencing Cells by Drag-and-Drop\">Referencing Cells by Drag-and-Drop</link></variable>"
msgstr ""
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id3145801\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3156444\n"
"17\n"
"help.text"
-msgid "The cells are filled with ascending numbers."
+msgid "With the help of the Navigator you can reference cells from one sheet to another sheet in the same document or in a different document. The cells can be inserted as a copy, link, or hyperlink. The range to be inserted must be defined with a name in the original file so that it can be inserted in the target file."
msgstr ""
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN106EE\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3152576\n"
+"25\n"
"help.text"
-msgid "To quickly create a list of consecutive days, enter <item type=\"literal\">Monday</item> in a cell, and drag the fill handle."
+msgid "Open the document that contains the source cells."
msgstr ""
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id9720145\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3154011\n"
+"26\n"
"help.text"
-msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
+msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
msgstr ""
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id3154490\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3151073\n"
"18\n"
"help.text"
-msgid "If you select two or more adjacent cells that contain different numbers, and drag, the remaining cells are filled with the arithmetic pattern that is recognized in the numbers. The AutoFill function also recognizes customized lists that are defined under <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</item>."
+msgid "Open the sheet in which you want to insert something."
msgstr ""
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN10737\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3154732\n"
+"19\n"
"help.text"
-msgid "You can double-click the fill handle to automatically fill all empty columns of the current data block. For example, first enter Jan into A1 and drag the fill handle down to A12 to get the twelve months in the first column. Now enter some values into B1 and C1. Select those two cells, and double-click the fill handle. This fills automatically the data block B1:C12."
+msgid "Open the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>. In the lower box of the Navigator select the source file."
msgstr ""
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"par_idN10713\n"
-"help.text"
-msgid "Using a Defined Series"
-msgstr "Të Dhënat Serike $(ROW)"
-
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id3150749\n"
-"9\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3150752\n"
+"22\n"
"help.text"
-msgid "Select the cell range in the sheet that you want to fill."
+msgid "In the Navigator, the source file object appears under \"Range names\"."
msgstr ""
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
+"cellreference_dragdrop.xhp\n"
"par_id3154754\n"
-"19\n"
-"help.text"
-msgid "Choose <item type=\"menuitem\">Edit - Fill - Series</item>."
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"par_idN10716\n"
-"help.text"
-msgid "Select the parameters for the series."
-msgstr "Parametra shtesë për modulin ${MODULE}:"
-
-#: calc_series.xhp
-msgctxt ""
-"calc_series.xhp\n"
-"par_idN10731\n"
+"27\n"
"help.text"
-msgid "If you select a <emph>linear</emph> series, the increment that you enter is <emph>added</emph> to each consecutive number in the series to create the next value."
+msgid "Using the <emph>Drag Mode</emph> icon in Navigator, choose whether you want the reference to be a hyperlink, link, or copy."
msgstr ""
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN1073C\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3154256\n"
+"23\n"
"help.text"
-msgid "If you select a <emph>growth</emph> series, the increment that you enter is <emph>multiplied</emph> by each consecutive number to create the next value."
+msgid "Click the name under \"Range names\" in the Navigator, and drag into the cell of the current sheet where you want to insert the reference."
msgstr ""
-#: calc_series.xhp
+#: cellreference_dragdrop.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_idN10747\n"
+"cellreference_dragdrop.xhp\n"
+"par_id3149565\n"
+"24\n"
"help.text"
-msgid "If you select a <emph>date</emph> series, the increment that you enter is added to the time unit that you specify."
+msgid "This method can also be used to insert a range from another sheet of the same document into the current sheet. Select the active document as source in step 4 above."
msgstr ""
-#: calc_series.xhp
+#: cellreferences.xhp
msgctxt ""
-"calc_series.xhp\n"
-"par_id3159173\n"
-"20\n"
+"cellreferences.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
+msgid "Referencing a Cell in Another Document"
msgstr ""
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"tit\n"
+"cellreferences.xhp\n"
+"bm_id3147436\n"
"help.text"
-msgid "Deactivating Automatic Changes"
-msgstr "Mbroje regjistrin e ndryshimeve"
+msgid "<bookmark_value>sheet references</bookmark_value> <bookmark_value>references; to cells in other sheets/documents</bookmark_value> <bookmark_value>cells; operating in another document</bookmark_value> <bookmark_value>documents;references</bookmark_value>"
+msgstr ""
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"bm_id3149456\n"
+"cellreferences.xhp\n"
+"hd_id3147436\n"
+"9\n"
"help.text"
-msgid "<bookmark_value>deactivating; automatic changes</bookmark_value> <bookmark_value>tables; deactivating automatic changes in</bookmark_value> <bookmark_value>AutoInput function on/off</bookmark_value> <bookmark_value>text in cells;AutoInput function</bookmark_value> <bookmark_value>cells; AutoInput function of text</bookmark_value> <bookmark_value>input support in spreadsheets</bookmark_value> <bookmark_value>changing; input in cells</bookmark_value> <bookmark_value>AutoCorrect function;cell contents</bookmark_value> <bookmark_value>cell input;AutoInput function</bookmark_value> <bookmark_value>lowercase letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>capital letters;AutoInput function (in cells)</bookmark_value> <bookmark_value>date formats;avoiding conversion to</bookmark_value> <bookmark_value>number completion on/off</bookmark_value> <bookmark_value>text completion on/off</bookmark_value> <bookmark_value>word completion on/off</bookmark_value>"
+msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Referencing Other Sheets\">Referencing Other Sheets</link></variable>"
msgstr ""
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"hd_id3149456\n"
-"1\n"
+"cellreferences.xhp\n"
+"par_id9663075\n"
"help.text"
-msgid "<variable id=\"auto_off\"><link href=\"text/scalc/guide/auto_off.xhp\" name=\"Deactivating Automatic Changes\">Deactivating Automatic Changes</link></variable>"
+msgid "In a sheet cell you can show a reference to a cell in another sheet."
msgstr ""
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3156442\n"
-"2\n"
+"cellreferences.xhp\n"
+"par_id1879329\n"
"help.text"
-msgid "By default, $[officename] automatically corrects many common typing errors and applies formatting while you type. You can immediately undo any automatic changes with <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z."
+msgid "In the same way, a reference can also be made to a cell from another document provided that this document has already been saved as a file."
msgstr ""
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3145273\n"
-"3\n"
+"cellreferences.xhp\n"
+"hd_id7122409\n"
"help.text"
-msgid "The following shows you how to deactivate and reactivate the automatic changes in $[officename] Calc:"
+msgid "To Reference a Cell in the Same Document"
msgstr ""
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"hd_id3145748\n"
-"4\n"
+"cellreferences.xhp\n"
+"par_id2078005\n"
"help.text"
-msgid "Automatic Text or Number Completion"
-msgstr ""
+msgid "Open a new, empty spreadsheet."
+msgstr "Hape në një dritare të re"
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3154730\n"
-"5\n"
+"cellreferences.xhp\n"
+"par_id4943693\n"
"help.text"
-msgid "When making an entry in a cell, $[officename] Calc automatically suggests matching input found in the same column. This function is known as <emph>AutoInput</emph>."
+msgid "By way of example, enter the following formula in cell A1 of Sheet1:"
msgstr ""
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3153878\n"
-"6\n"
+"cellreferences.xhp\n"
+"par_id9064302\n"
"help.text"
-msgid "To turn the AutoInput on and off, set or remove the check mark in front of <link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\"><emph>Tools - Cell Contents - AutoInput</emph></link>."
+msgid "<item type=\"literal\">=Sheet2.A1</item>"
msgstr ""
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"hd_id3146972\n"
-"21\n"
+"cellreferences.xhp\n"
+"par_id7609790\n"
"help.text"
-msgid "Automatic Conversion to Date Format"
+msgid "Click the <emph>Sheet 2</emph> tab at the bottom of the spreadsheet. Set the cursor in cell A1 there and enter text or a number."
msgstr ""
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3153707\n"
-"22\n"
+"cellreferences.xhp\n"
+"par_id809961\n"
"help.text"
-msgid "$[officename] Calc automatically converts certain entries to dates. For example, the entry <emph>1.1</emph> may be interpreted as January 1 of the current year, according to the locale settings of your operating system, and then displayed according to the date format applied to the cell."
+msgid "If you switch back to Sheet1, you will see the same content in cell A1 there. If the contents of Sheet2.A1 change, then the contents of Sheet1.A1 also change."
msgstr ""
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3159267\n"
-"23\n"
+"cellreferences.xhp\n"
+"hd_id9209570\n"
"help.text"
-msgid "To ensure that an entry is interpreted as text, add an apostrophe at the beginning of the entry. The apostrophe is not displayed in the cell."
+msgid "To Reference a Cell in Another Document"
msgstr ""
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"hd_id3150043\n"
-"7\n"
+"cellreferences.xhp\n"
+"par_id5949278\n"
"help.text"
-msgid "Quotation Marks Replaced by Custom Quotes"
+msgid "Choose <emph>File - Open</emph>, to load an existing spreadsheet document."
msgstr ""
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3155333\n"
-"9\n"
+"cellreferences.xhp\n"
+"par_id8001953\n"
"help.text"
-msgid "Choose <emph>Tools - AutoCorrect Options</emph>. Go to the <emph>Localized Options</emph> tab and unmark <emph>Replace</emph>."
+msgid "Choose <emph>File - New</emph>, to open a new spreadsheet document. Set the cursor in the cell where you want to insert the external data and enter an equals sign to indicate that you want to begin a formula."
msgstr ""
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"hd_id3149565\n"
-"11\n"
+"cellreferences.xhp\n"
+"par_id8571123\n"
"help.text"
-msgid "Cell Content Always Begins With Uppercase"
+msgid "Now switch to the document you have just loaded. Click the cell with the data that you want to insert in the new document."
msgstr ""
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3147001\n"
-"13\n"
+"cellreferences.xhp\n"
+"par_id8261665\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Options</item> tab. Unmark <item type=\"menuitem\">Capitalize first letter of every sentence</item>."
+msgid "Switch back to the new spreadsheet. In the input line you will now see how $[officename] Calc has added the reference to the formula for you."
msgstr ""
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"hd_id3150345\n"
-"15\n"
+"cellreferences.xhp\n"
+"par_id5888241\n"
"help.text"
-msgid "Replace Word With Another Word"
-msgstr "Zëvendëso të 1rën... me të 1^rën..."
+msgid "The reference to a cell of another document contains the name of the other document in single inverted commas, then a hash #, then the name of the sheet of the other document, followed by a point and the name of the cell."
+msgstr ""
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3166425\n"
-"17\n"
+"cellreferences.xhp\n"
+"par_id7697683\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - AutoCorrect Options</item>. Go to the <item type=\"menuitem\">Replace</item> tab. Select the word pair and click <item type=\"menuitem\">Delete</item>."
+msgid "Confirm the formula by clicking the green check mark."
msgstr ""
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3152992\n"
-"19\n"
+"cellreferences.xhp\n"
+"par_id7099826\n"
"help.text"
-msgid "<link href=\"text/scalc/01/06130000.xhp\" name=\"Tools - Cell Contents - AutoInput\">Tools - Cell Contents - AutoInput</link>"
+msgid "If you drag the box in the lower right corner of the active cell to select a range of cells, $[officename] automatically inserts the corresponding references in the adjacent cells. As a result, the sheet name is preceded with a \"$\" sign to designate it as an absolute reference."
msgstr ""
-#: auto_off.xhp
+#: cellreferences.xhp
msgctxt ""
-"auto_off.xhp\n"
-"par_id3154368\n"
-"20\n"
+"cellreferences.xhp\n"
+"par_id674459\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"Tools - AutoCorrect\">Tools - AutoCorrect Options</link>"
+msgid "If you examine the name of the other document in this formula, you will notice that it is written as a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>. This means that you can also enter a URL from the Internet."
msgstr ""
#: cellreferences_url.xhp
@@ -4074,1358 +2482,553 @@ msgctxt ""
msgid "Under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01040900.xhp\" name=\"Spreadsheet - General\"><item type=\"menuitem\">%PRODUCTNAME Calc - General</item></link> you can choose to have the update, when opened, automatically carried out either always, upon request or never. The update can be started manually in the dialog under <item type=\"menuitem\">Edit - Links</item>."
msgstr ""
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"tit\n"
-"help.text"
-msgid "Navigating Through Sheets Tabs"
-msgstr ""
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"bm_id3150769\n"
-"help.text"
-msgid "<bookmark_value>sheets; showing multiple</bookmark_value><bookmark_value>sheet tabs;using</bookmark_value><bookmark_value>views;multiple sheets</bookmark_value>"
-msgstr ""
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"hd_id3150769\n"
-"4\n"
-"help.text"
-msgid "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables.xhp\" name=\"Navigating Through Sheet Tabs\">Navigating Through Sheet Tabs</link> </variable>"
-msgstr ""
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"par_id3153771\n"
-"3\n"
-"help.text"
-msgid "By default $[officename] displays three sheets \"Sheet1\" to \"Sheet3\", in each new spreadsheet. You can switch between sheets in a spreadsheet using the sheet tabs at the bottom of the screen."
-msgstr ""
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"par_idN106AF\n"
-"help.text"
-msgid "<image id=\"img_id4829822\" src=\"res/helpimg/sheettabs.png\" width=\"3.3335inch\" height=\"0.7638inch\" localize=\"true\"><alt id=\"alt_id4829822\">Sheet Tabs</alt></image>"
-msgstr ""
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"par_id3153144\n"
-"help.text"
-msgid "<image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"0.6563inch\" height=\"0.1457inch\"><alt id=\"alt_id3156441\">Icon</alt></image>"
-msgstr ""
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"par_id3147396\n"
-"5\n"
-"help.text"
-msgid "Use the navigation buttons to display all the sheets belonging to your document. Clicking the button on the far left or the far right displays, respectively, the first or last sheet tab. The middle buttons allow the user to scroll forward and backward through all sheet tabs. To display the sheet itself click on the sheet tab."
-msgstr ""
-
-#: multi_tables.xhp
-msgctxt ""
-"multi_tables.xhp\n"
-"par_id3149379\n"
-"6\n"
-"help.text"
-msgid "If there is insufficient space to display all the sheet tabs, you can increase it by pointing to the separator between the scrollbar and the sheet tabs, pressing the mouse button and, keeping the mouse button pressed, dragging to the right. In doing so you will be sharing the available space between the sheet tabs and horizontal scrollbar."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"tit\n"
-"help.text"
-msgid "Applying Multiple Operations"
-msgstr "Përpjestuesi më i vogël"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"bm_id3147559\n"
-"help.text"
-msgid "<bookmark_value>multiple operations</bookmark_value><bookmark_value>what if operations;two variables</bookmark_value><bookmark_value>tables; multiple operations in</bookmark_value><bookmark_value>data tables; multiple operations in</bookmark_value><bookmark_value>cross-classified tables</bookmark_value>"
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3147559\n"
-"5\n"
-"help.text"
-msgid "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\" name=\"Applying Multiple Operations\">Applying Multiple Operations</link></variable>"
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3145171\n"
-"1\n"
-"help.text"
-msgid "Multiple Operations in Columns or Rows"
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id4123966\n"
-"help.text"
-msgid "The <item type=\"menuitem\">Data - Multiple Operations</item> command provides a planning tool for \"what if\" questions. In your spreadsheet, you enter a formula to calculate a result from values that are stored in other cells. Then, you set up a cell range where you enter some fixed values, and the Multiple Operations command will calculate the results depending on the formula."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3156424\n"
-"2\n"
-"help.text"
-msgid "In the <emph>Formulas</emph> field, enter the cell reference to the formula that applies to the data range. In the <emph>Column input cell/Row input cell</emph> field, enter the cell reference to the corresponding cell that is part of the formula. This can be explained best by examples:"
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3159153\n"
-"7\n"
-"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3153189\n"
-"8\n"
-"help.text"
-msgid "You produce toys which you sell for $10 each. Each toy costs $2 to make, in addition to which you have fixed costs of $10,000 per year. How much profit will you make in a year if you sell a particular number of toys?"
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id6478774\n"
-"help.text"
-msgid "<image id=\"img_id1621753\" src=\"res/helpimg/what-if.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id1621753\">what-if sheet area</alt></image>"
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3145239\n"
-"41\n"
-"help.text"
-msgid "Calculating With One Formula and One Variable"
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3146888\n"
-"42\n"
-"help.text"
-msgid "To calculate the profit, first enter any number as the quantity (items sold) - in this example 2000. The profit is found from the formula Profit=Quantity * (Selling price - Direct costs) - Fixed costs. Enter this formula in B5."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3157875\n"
-"43\n"
-"help.text"
-msgid "In column D enter given annual sales, one below the other; for example, 500 to 5000, in steps of 500."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3159115\n"
-"44\n"
-"help.text"
-msgid "Select the range D2:E11, and thus the values in column D and the empty cells alongside in column E."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149723\n"
-"45\n"
-"help.text"
-msgid "Choose <emph>Data - Multiple operations</emph>."
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149149\n"
-"46\n"
-"help.text"
-msgid "With the cursor in the <emph>Formulas </emph>field, click cell B5."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149355\n"
-"47\n"
-"help.text"
-msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4. This means that B4, the quantity, is the variable in the formula, which is replaced by the selected column values."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149009\n"
-"48\n"
-"help.text"
-msgid "Close the dialog with <emph>OK</emph>. You see the profits for the different quantities in column E."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3148725\n"
-"49\n"
-"help.text"
-msgid "Calculating with Several Formulas Simultaneously"
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3146880\n"
-"50\n"
-"help.text"
-msgid "Delete column E."
-msgstr "Fshije kolonën"
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3154675\n"
-"51\n"
-"help.text"
-msgid "Enter the following formula in C5: = B5 / B4. You are now calculating the annual profit per item sold."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3148885\n"
-"52\n"
-"help.text"
-msgid "Select the range D2:F11, thus three columns."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3147474\n"
-"53\n"
-"help.text"
-msgid "Choose <emph>Data - Multiple Operations</emph>."
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3154846\n"
-"54\n"
-"help.text"
-msgid "With the cursor in the <emph>Formulas</emph> field, select cells B5 thru C5."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3153931\n"
-"55\n"
-"help.text"
-msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3150862\n"
-"56\n"
-"help.text"
-msgid "Close the dialog with <emph>OK</emph>. You will now see the profits in column E and the annual profit per item in column F."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3146139\n"
-"3\n"
-"help.text"
-msgid "Multiple Operations Across Rows and Columns"
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3148584\n"
-"4\n"
-"help.text"
-msgid "<item type=\"productname\">%PRODUCTNAME</item> allows you to carry out joint multiple operations for columns and rows in so-called cross-tables. The formula cell has to refer to both the data range arranged in rows and the one arranged in columns. Select the range defined by both data ranges and call the multiple operation dialog. Enter the reference to the formula in the <emph>Formulas</emph> field. The <emph>Row input cell</emph> and the <emph>Column input cell</emph> fields are used to enter the reference to the corresponding cells of the formula."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"hd_id3149949\n"
-"57\n"
-"help.text"
-msgid "Calculating with Two Variables"
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3154808\n"
-"58\n"
-"help.text"
-msgid "Consider columns A and B of the sample table above. You now want to vary not just the quantity produced annually, but also the selling price, and you are interested in the profit in each case."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149731\n"
-"59\n"
-"help.text"
-msgid "Expand the table shown above. D2 thru D11 contain the numbers 500, 1000 and so on, up to 5000. In E1 through H1 enter the numbers 8, 10, 15 and 20."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3152810\n"
-"95\n"
-"help.text"
-msgid "Select the range D1:H11."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3153620\n"
-"96\n"
-"help.text"
-msgid "Choose <emph>Data - Multiple Operations</emph>."
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149981\n"
-"97\n"
-"help.text"
-msgid "With the cursor in the <emph>Formulas</emph> field, click cell B5."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3156113\n"
-"98\n"
-"help.text"
-msgid "Set the cursor in the <emph>Row input cell</emph> field and click cell B1. This means that B1, the selling price, is the horizontally entered variable (with the values 8, 10, 15 and 20)."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3154049\n"
-"99\n"
-"help.text"
-msgid "Set the cursor in the <emph>Column input cell</emph> field and click in B4. This means that B4, the quantity, is the vertically entered variable."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3149141\n"
-"100\n"
-"help.text"
-msgid "Close the dialog with OK. You see the profits for the different selling prices in the range E2:H11."
-msgstr ""
-
-#: multioperation.xhp
-msgctxt ""
-"multioperation.xhp\n"
-"par_id3155104\n"
-"101\n"
-"help.text"
-msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple operations\">Multiple operations</link>"
-msgstr ""
-
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
+"cellstyle_by_formula.xhp\n"
"tit\n"
"help.text"
-msgid "Shortcut Keys (%PRODUCTNAME Calc Accessibility)"
-msgstr ""
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"bm_id3145120\n"
-"help.text"
-msgid "<bookmark_value>accessibility; %PRODUCTNAME Calc shortcuts</bookmark_value><bookmark_value>shortcut keys;%PRODUCTNAME Calc accessibility</bookmark_value>"
+msgid "Assigning Formats by Formula"
msgstr ""
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"hd_id3145120\n"
-"1\n"
+"cellstyle_by_formula.xhp\n"
+"bm_id3145673\n"
"help.text"
-msgid "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" name=\"Shortcut Keys (%PRODUCTNAME Calc Accessibility)\">Shortcut Keys (<item type=\"productname\">%PRODUCTNAME</item> Calc Accessibility)</link></variable>"
+msgid "<bookmark_value>formats; assigning by formulas</bookmark_value> <bookmark_value>cell formats; assigning by formulas</bookmark_value> <bookmark_value>STYLE function example</bookmark_value> <bookmark_value>cell styles;assigning by formulas</bookmark_value> <bookmark_value>formulas;assigning cell formats</bookmark_value>"
msgstr ""
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3154760\n"
+"cellstyle_by_formula.xhp\n"
+"hd_id3145673\n"
"13\n"
"help.text"
-msgid "Refer also to the lists of shortcut keys for <item type=\"productname\">%PRODUCTNAME</item> Calc and <item type=\"productname\">%PRODUCTNAME</item> in general."
-msgstr ""
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"hd_id3153360\n"
-"12\n"
-"help.text"
-msgid "Cell Selection Mode"
-msgstr "Modi i shikimit paraprak"
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"par_id3150870\n"
-"help.text"
-msgid "<image id=\"img_id3150439\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3150439\">Icon</alt></image>"
-msgstr ""
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"par_id3154319\n"
-"11\n"
-"help.text"
-msgid "In a text box that has a button to minimize the dialog, press <item type=\"keycode\">F2</item> to enter the cell selection mode. Select any number of cells, then press <item type=\"keycode\">F2</item> again to show the dialog."
-msgstr ""
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"par_id3145272\n"
-"10\n"
-"help.text"
-msgid "In the cell selection mode, you can use the common navigation keys to select cells."
+msgid "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Assigning Formats by Formula\">Assigning Formats by Formula</link> </variable>"
msgstr ""
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"hd_id3148646\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3150275\n"
"14\n"
"help.text"
-msgid "Controlling the Outline"
-msgstr "Shiriti i konturës"
+msgid "The STYLE() function can be added to an existing formula in a cell. For example, together with the CURRENT function, you can color a cell depending on its value. The formula =...+STYLE(IF(CURRENT()>3; \"Red\"; \"Green\")) applies the cell style \"Red\" to cells if the value is greater than 3, otherwise the cell style \"Green\" is applied."
+msgstr ""
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3146120\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3151385\n"
"15\n"
"help.text"
-msgid "You can use the keyboard in <link href=\"text/scalc/01/12080000.xhp\" name=\"Outline\">Outline</link>:"
+msgid "If you would like to apply a formula to all cells in a selected area, you can use the <item type=\"menuitem\">Find & Replace</item> dialog."
msgstr ""
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3147394\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3149456\n"
"16\n"
"help.text"
-msgid "Press <item type=\"keycode\">F6</item> or <item type=\"keycode\">Shift+F6</item> until the vertical or horizontal outline window has the focus."
+msgid "Select all the desired cells."
msgstr ""
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3149379\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3148797\n"
"17\n"
"help.text"
-msgid "<item type=\"keycode\">Tab</item> - cycle through all visible buttons from top to bottom or from left to right."
+msgid "Select the menu command <emph>Edit - Find & Replace</emph>."
msgstr ""
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3156286\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3150767\n"
"18\n"
"help.text"
-msgid "<item type=\"keycode\">Shift+Tab</item> - cycle through all visible buttons in the opposite direction."
+msgid "For the <item type=\"menuitem\">Search for</item> term, enter: .<item type=\"literal\">*</item>"
msgstr ""
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3149403\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3153770\n"
"19\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+1 to Command+8</caseinline><defaultinline>Ctrl+1 to Ctrl+8</defaultinline></switchinline> - show all levels up to the specified number; hide all higher levels."
+msgid "\".*\" is a regular expression that designates the contents of the current cell."
msgstr ""
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3150329\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3153143\n"
"20\n"
"help.text"
-msgid "Use <item type=\"keycode\">+</item> or <item type=\"keycode\">-</item> to show or hide the focused outline group."
+msgid "Enter the following formula in the <item type=\"menuitem\">Replace with</item> field: <item type=\"literal\">=&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))</item>"
msgstr ""
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3155446\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3146975\n"
"21\n"
"help.text"
-msgid "Press <item type=\"keycode\">Enter</item> to activate the focused button."
+msgid "The \"&\" symbol designates the current contents of the <emph>Search for</emph> field. The line must begin with an equal sign, since it is a formula. It is assumed that the cell styles \"Red\" and \"Green\" already exist."
msgstr ""
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3154253\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3149262\n"
"22\n"
"help.text"
-msgid "Use <item type=\"keycode\">Up</item>, <item type=\"keycode\">Down</item>, <item type=\"keycode\">Left</item>, or <item type=\"keycode\">Right</item> arrow to cycle through all buttons in the current level."
+msgid "Mark the fields <link href=\"text/shared/01/02100000.xhp\" name=\"Regular expressions\"><emph>Regular expressions</emph></link> and <emph>Current selection only</emph>. Click <emph>Find All</emph>."
msgstr ""
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"hd_id3147343\n"
-"8\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3144767\n"
+"24\n"
"help.text"
-msgid "Selecting a Drawing Object or a Graphic"
+msgid "All cells with contents that were included in the selection are now highlighted."
msgstr ""
-#: keyboard.xhp
+#: cellstyle_by_formula.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_idN107AA\n"
+"cellstyle_by_formula.xhp\n"
+"par_id3147127\n"
+"23\n"
"help.text"
-msgid "Choose View - Toolbars - Drawing to open the Drawing toolbar."
+msgid "Click <item type=\"menuitem\">Replace all</item>."
msgstr ""
-#: keyboard.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3155333\n"
-"7\n"
+"cellstyle_conditional.xhp\n"
+"tit\n"
"help.text"
-msgid "Press <item type=\"keycode\">F6</item> until the <emph>Drawing</emph> toolbar is selected."
-msgstr ""
+msgid "Applying Conditional Formatting"
+msgstr "Duke formatuar dokumentin automatikisht"
-#: keyboard.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3150345\n"
-"4\n"
+"cellstyle_conditional.xhp\n"
+"bm_id3149263\n"
"help.text"
-msgid "If the selection tool is active, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. This selects the first drawing object or graphic in the sheet."
+msgid "<bookmark_value>conditional formatting; cells</bookmark_value> <bookmark_value>cells; conditional formatting</bookmark_value> <bookmark_value>formatting; conditional formatting</bookmark_value> <bookmark_value>styles;conditional styles</bookmark_value> <bookmark_value>cell formats; conditional</bookmark_value> <bookmark_value>random numbers;examples</bookmark_value> <bookmark_value>cell styles; copying</bookmark_value> <bookmark_value>copying; cell styles</bookmark_value> <bookmark_value>tables; copying cell styles</bookmark_value>"
msgstr ""
-#: keyboard.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3159240\n"
-"3\n"
+"cellstyle_conditional.xhp\n"
+"hd_id3149263\n"
+"24\n"
"help.text"
-msgid "With <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 you set the focus to the document."
+msgid "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\" name=\"Applying Conditional Formatting\">Applying Conditional Formatting</link></variable>"
msgstr ""
-#: keyboard.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3155379\n"
-"2\n"
+"cellstyle_conditional.xhp\n"
+"par_id3159156\n"
+"25\n"
"help.text"
-msgid "Now you can use <item type=\"keycode\">Tab</item> to select the next drawing object or graphic and <item type=\"keycode\">Shift+Tab</item> to select the previous one."
+msgid "Using the menu command <emph>Format - Conditional formatting</emph>, the dialog allows you to define up to three conditions per cell, which must be met in order for the selected cells to have a particular format."
msgstr ""
-#: formula_copy.xhp
-msgctxt ""
-"formula_copy.xhp\n"
-"tit\n"
-"help.text"
-msgid "Copying Formulas"
-msgstr "Duke kopjuar ndarjen..."
-
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"bm_id3151113\n"
+"cellstyle_conditional.xhp\n"
+"par_id8039796\n"
"help.text"
-msgid "<bookmark_value>formulas; copying and pasting</bookmark_value><bookmark_value>copying; formulas</bookmark_value><bookmark_value>pasting;formulas</bookmark_value>"
+msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose <emph>Tools - Cell Contents - AutoCalculate</emph> (you see a check mark next to the command when AutoCalculate is enabled)."
msgstr ""
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"hd_id3151113\n"
-"54\n"
+"cellstyle_conditional.xhp\n"
+"par_id3154944\n"
+"26\n"
"help.text"
-msgid "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Copying Formulas\">Copying Formulas</link></variable>"
+msgid "With conditional formatting, you can, for example, highlight the totals that exceed the average value of all totals. If the totals change, the formatting changes correspondingly, without having to apply other styles manually."
msgstr ""
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3156424\n"
-"11\n"
+"cellstyle_conditional.xhp\n"
+"hd_id4480727\n"
"help.text"
-msgid "There are various ways to copy a formula. One suggested method is:"
+msgid "To Define the Conditions"
msgstr ""
-#: formula_copy.xhp
-msgctxt ""
-"formula_copy.xhp\n"
-"par_id3150439\n"
-"30\n"
-"help.text"
-msgid "Select the cell containing the formula."
-msgstr "Qelia duhet të përmbajë një formulë."
-
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3154319\n"
-"31\n"
+"cellstyle_conditional.xhp\n"
+"par_id3154490\n"
+"27\n"
"help.text"
-msgid "Choose <emph>Edit - Copy</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C to copy it."
+msgid "Select the cells to which you want to apply a conditional style."
msgstr ""
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3159155\n"
-"32\n"
+"cellstyle_conditional.xhp\n"
+"par_id3155603\n"
+"28\n"
"help.text"
-msgid "Select the cell into which you want the formula to be copied."
+msgid "Choose <emph>Format - Conditional Formatting</emph>."
msgstr ""
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3153728\n"
-"33\n"
+"cellstyle_conditional.xhp\n"
+"par_id3146969\n"
+"29\n"
"help.text"
-msgid "Choose <emph>Edit - Paste</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V. The formula will be positioned in the new cell."
+msgid "Enter the condition(s) into the dialog box. The dialog is described in detail in <link href=\"text/scalc/01/05120000.xhp\" name=\"$[officename] Help\">$[officename] Help</link>, and an example is provided below:"
msgstr ""
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3149961\n"
-"34\n"
+"cellstyle_conditional.xhp\n"
+"hd_id3155766\n"
+"38\n"
"help.text"
-msgid "If you want to copy a formula into multiple cells, there is a quick and easy way to copy into adjacent cell areas:"
+msgid "Example of Conditional Formatting: Highlighting Totals Above/Under the Average Value"
msgstr ""
-#: formula_copy.xhp
-msgctxt ""
-"formula_copy.xhp\n"
-"par_id3149400\n"
-"12\n"
-"help.text"
-msgid "Select the cell containing the formula."
-msgstr "Qelia duhet të përmbajë një formulë."
-
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3154018\n"
-"13\n"
+"cellstyle_conditional.xhp\n"
+"hd_id4341868\n"
"help.text"
-msgid "Position the mouse on the bottom right of the highlighted border of the cell, and continue holding down the mouse button until the pointer changes to a cross-hair symbol."
+msgid "Step1: Generate Number Values"
msgstr ""
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3150749\n"
-"14\n"
+"cellstyle_conditional.xhp\n"
+"par_id3150043\n"
+"39\n"
"help.text"
-msgid "With the mouse button pressed, drag it down or to the right over all the cells into which you want to copy the formula."
+msgid "You want to give certain values in your tables particular emphasis. For example, in a table of turnovers, you can show all the values above the average in green and all those below the average in red. This is possible with conditional formatting."
msgstr ""
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3153714\n"
-"15\n"
+"cellstyle_conditional.xhp\n"
+"par_id3155337\n"
+"40\n"
"help.text"
-msgid "When you release the mouse button, the formula will be copied into the cells and automatically adjusted."
+msgid "First of all, write a table in which a few different values occur. For your test you can create tables with any random numbers:"
msgstr ""
-#: formula_copy.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"formula_copy.xhp\n"
-"par_id3156385\n"
-"53\n"
+"cellstyle_conditional.xhp\n"
+"par_id3149565\n"
+"41\n"
"help.text"
-msgid "If you do not want values and texts to be automatically adjusted, then hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when dragging. Formulas, however, are always adjusted accordingly."
+msgid "In one of the cells enter the formula =RAND(), and you will obtain a random number between 0 and 1. If you want integers of between 0 and 50, enter the formula =INT(RAND()*50)."
msgstr ""
-#: datapilot.xhp
-#, fuzzy
-msgctxt ""
-"datapilot.xhp\n"
-"tit\n"
-"help.text"
-msgid "Pivot Table"
-msgstr "Indeksi i tabelave"
-
-#: datapilot.xhp
-#, fuzzy
-msgctxt ""
-"datapilot.xhp\n"
-"bm_id3150448\n"
-"help.text"
-msgid "<bookmark_value>pivot table function; introduction</bookmark_value><bookmark_value>DataPilot, see pivot table function</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: datapilot.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"datapilot.xhp\n"
-"hd_id3150448\n"
-"7\n"
+"cellstyle_conditional.xhp\n"
+"par_id3149258\n"
+"42\n"
"help.text"
-msgid "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">Pivot Table</link></variable>"
+msgid "Copy the formula to create a row of random numbers. Click the bottom right corner of the selected cell, and drag to the right until the desired cell range is selected."
msgstr ""
-#: datapilot.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"datapilot.xhp\n"
-"par_id3156024\n"
-"2\n"
+"cellstyle_conditional.xhp\n"
+"par_id3159236\n"
+"43\n"
"help.text"
-msgid "The <emph>pivot table</emph> (formerly known as <emph>DataPilot</emph>) allows you to combine, compare, and analyze large amounts of data. You can view different summaries of the source data, you can display the details of areas of interest, and you can create reports."
+msgid "In the same way as described above, drag down the corner of the rightmost cell in order to create more rows of random numbers."
msgstr ""
-#: datapilot.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"datapilot.xhp\n"
-"par_id3145069\n"
-"9\n"
+"cellstyle_conditional.xhp\n"
+"hd_id3149211\n"
+"44\n"
"help.text"
-msgid "A table that has been created as a <link href=\"text/scalc/01/12090000.xhp\" name=\"pivot table\">pivot table</link> is an interactive table. Data can be arranged, rearranged or summarized according to different points of view."
+msgid "Step 2: Define Cell Styles"
msgstr ""
-#: currency_format.xhp
-msgctxt ""
-"currency_format.xhp\n"
-"tit\n"
-"help.text"
-msgid "Cells in Currency Format"
-msgstr "Të dhënat janë në format të gabuar"
-
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"bm_id3156329\n"
+"cellstyle_conditional.xhp\n"
+"par_id3154659\n"
+"45\n"
"help.text"
-msgid "<bookmark_value>currency formats; spreadsheets</bookmark_value><bookmark_value>cells; currency formats</bookmark_value><bookmark_value>international currency formats</bookmark_value><bookmark_value>formats; currency formats in cells</bookmark_value><bookmark_value>currencies; default currencies</bookmark_value><bookmark_value>defaults;currency formats</bookmark_value><bookmark_value>changing;currency formats</bookmark_value>"
+msgid "The next step is to apply a cell style to all values that represent above-average turnover, and one to those that are below the average. Ensure that the Styles and Formatting window is visible before proceeding."
msgstr ""
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"hd_id3156329\n"
+"cellstyle_conditional.xhp\n"
+"par_id3150883\n"
"46\n"
"help.text"
-msgid "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\" name=\"Cells in Currency Format\">Cells in Currency Format</link></variable>"
+msgid "Click in a blank cell and select the command <emph>Format Cells</emph> in the context menu."
msgstr ""
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"par_id3153968\n"
+"cellstyle_conditional.xhp\n"
+"par_id3155529\n"
"47\n"
"help.text"
-msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can give numbers any currency format. When you click the <item type=\"menuitem\">Currency</item> icon <image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\">Icon</alt></image> in the <item type=\"menuitem\">Formatting</item> bar to format a number, the cell is given the default currency format set under <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</item>."
+msgid "In the <emph>Format Cells</emph> dialog on the <emph>Background</emph> tab, select a background color. Click <emph>OK</emph>."
msgstr ""
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"par_id3150010\n"
+"cellstyle_conditional.xhp\n"
+"par_id3154484\n"
"48\n"
"help.text"
-msgid "Exchanging of <item type=\"productname\">%PRODUCTNAME</item> Calc documents can lead to misunderstandings, if your <item type=\"productname\">%PRODUCTNAME</item> Calc document is loaded by a user who uses a different default currency format."
-msgstr ""
-
-#: currency_format.xhp
-msgctxt ""
-"currency_format.xhp\n"
-"par_id3156442\n"
-"52\n"
-"help.text"
-msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can define that a number that you have formatted as \"1,234.50 €\", still remains in euros in another country and does not become dollars."
+msgid "In the Styles and Formatting window, click the <emph>New Style from Selection</emph> icon. Enter the name of the new style. For this example, name the style \"Above\"."
msgstr ""
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"par_id3151075\n"
+"cellstyle_conditional.xhp\n"
+"par_id3152889\n"
"49\n"
"help.text"
-msgid "You can change the currency format in the <item type=\"menuitem\">Format Cells</item> dialog (choose <item type=\"menuitem\">Format - Cells - Numbers</item> tab) by two country settings. In the <item type=\"menuitem\">Language</item> combo box select the basic setting for decimal and thousands separators. In the <item type=\"menuitem\">Format</item> list box you can select the currency symbol and its position."
+msgid "To define a second style, click again in a blank cell and proceed as described above. Assign a different background color for the cell and assign a name (for this example, \"Below\")."
msgstr ""
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"par_id3150749\n"
-"50\n"
+"cellstyle_conditional.xhp\n"
+"hd_id3148704\n"
+"60\n"
"help.text"
-msgid "For example, if the language is set to \"Default\" and you are using a german locale setting, the currency format will be \"1.234,00 €\". A point is used before the thousand digits and a comma before the decimal places. If you now select the subordinate currency format \"$ English (US)\" from the <item type=\"menuitem\">Format</item> list box , you will get the following format: \"$ 1.234,00\". As you can see, the separators have remained the same. Only the currency symbol has been changed and converted, but the underlying format of the notation remains the same as in the locale setting."
+msgid "Step 3: Calculate Average"
msgstr ""
-#: currency_format.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"currency_format.xhp\n"
-"par_id3145640\n"
+"cellstyle_conditional.xhp\n"
+"par_id3148837\n"
"51\n"
"help.text"
-msgid "If, under <item type=\"menuitem\">Language</item>, you convert the cells to \"English (US)\", the English-language locale setting is also transferred and the default currency format is now \"$ 1,234.00\"."
-msgstr ""
-
-#: currency_format.xhp
-msgctxt ""
-"currency_format.xhp\n"
-"par_id3154255\n"
-"53\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
-msgstr ""
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"tit\n"
-"help.text"
-msgid "Selecting Multiple Cells"
-msgstr "Futi Qelitë Teposhtë"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"bm_id3153361\n"
-"help.text"
-msgid "<bookmark_value>cells; selecting</bookmark_value> <bookmark_value>marking cells</bookmark_value> <bookmark_value>selecting;cells</bookmark_value> <bookmark_value>multiple cells selection</bookmark_value> <bookmark_value>selection modes in spreadsheets</bookmark_value> <bookmark_value>tables; selecting ranges</bookmark_value>"
-msgstr ""
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"hd_id3153361\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\" name=\"Selecting Multiple Cells\">Selecting Multiple Cells</link></variable>"
-msgstr ""
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"hd_id3145272\n"
-"2\n"
-"help.text"
-msgid "Select a rectangular range"
-msgstr "Selekto Intervalin e Databazës"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3149261\n"
-"3\n"
-"help.text"
-msgid "With the mouse button pressed, drag from one corner to the diagonally opposed corner of the range."
-msgstr ""
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"hd_id3151119\n"
-"4\n"
-"help.text"
-msgid "Mark a single cell"
-msgstr "Ndaj qelizën në"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3146975\n"
-"19\n"
-"help.text"
-msgid "Do one of the following:"
-msgstr "Gabimi në vazhdim ka ndodhur:"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3163710\n"
-"20\n"
-"help.text"
-msgid "Click, then Shift-click the cell."
-msgstr ""
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3149959\n"
-"5\n"
-"help.text"
-msgid "Pressing the mouse button, drag a range across two cells, do not release the mouse button, and then drag back to the first cell. Release the mouse button. You can now move the individual cell by drag and drop."
-msgstr ""
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"hd_id3154942\n"
-"6\n"
-"help.text"
-msgid "Select various dispersed cells"
-msgstr ""
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id1001200901072060\n"
-"help.text"
-msgid "Do one of the following:"
-msgstr "Gabimi në vazhdim ka ndodhur:"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3156284\n"
-"7\n"
-"help.text"
-msgid "Mark at least one cell. Then while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, click each of the additional cells."
-msgstr ""
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id1001200901072023\n"
-"help.text"
-msgid "Click the STD / EXT / ADD area in the status bar until it shows ADD. Now click all cells that you want to select."
-msgstr ""
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"hd_id3146971\n"
-"8\n"
-"help.text"
-msgid "Switch marking mode"
-msgstr "Modi i shikimit paraprak"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3155064\n"
-"9\n"
-"help.text"
-msgid "On the status bar, click the box with the legend STD / EXT / ADD to switch the marking mode:"
-msgstr ""
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3159264\n"
-"10\n"
-"help.text"
-msgid "Field contents"
-msgstr "Tabela e përmbajtjeve"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3155337\n"
-"11\n"
-"help.text"
-msgid "Effect of clicking the mouse"
-msgstr "Miu mbi objektin"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3149568\n"
-"12\n"
-"help.text"
-msgid "STD"
-msgstr "STD"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3148486\n"
-"13\n"
-"help.text"
-msgid "A mouse click selects the cell you have clicked on. Unmarks all marked cells."
-msgstr ""
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3150090\n"
-"14\n"
-"help.text"
-msgid "EXT"
-msgstr "EXT"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3150305\n"
-"15\n"
-"help.text"
-msgid "A mouse click marks a rectangular range from the current cell to the cell you clicked. Alternatively, Shift-click a cell."
-msgstr ""
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3145587\n"
-"16\n"
-"help.text"
-msgid "ADD"
-msgstr "ADD"
-
-#: mark_cells.xhp
-msgctxt ""
-"mark_cells.xhp\n"
-"par_id3154368\n"
-"17\n"
-"help.text"
-msgid "A mouse click in a cell adds it to the already marked cells. A mouse click in a marked cell unmarks it. Alternatively, <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click the cells."
+msgid "In our particular example, we are calculating the average of the random values. The result is placed in a cell:"
msgstr ""
-#: mark_cells.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"mark_cells.xhp\n"
-"par_id3154487\n"
-"18\n"
+"cellstyle_conditional.xhp\n"
+"par_id3144768\n"
+"52\n"
"help.text"
-msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status bar\">Status bar</link>"
+msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
msgstr ""
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"tit\n"
+"cellstyle_conditional.xhp\n"
+"par_id3156016\n"
+"53\n"
"help.text"
-msgid "Entering a Number with Leading Zeros"
+msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink / Maximize</item></link> icon."
msgstr ""
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"bm_id3147560\n"
+"cellstyle_conditional.xhp\n"
+"par_id3153246\n"
+"54\n"
"help.text"
-msgid "<bookmark_value>zero values; entering leading zeros</bookmark_value> <bookmark_value>numbers; with leading zeros</bookmark_value> <bookmark_value>leading zeros</bookmark_value> <bookmark_value>integers with leading zeros</bookmark_value> <bookmark_value>cells; changing text/number formats</bookmark_value> <bookmark_value>formats; changing text/number</bookmark_value> <bookmark_value>text in cells; changing to numbers</bookmark_value> <bookmark_value>converting;text with leading zeros, into numbers</bookmark_value>"
+msgid "Close the Function Wizard with <item type=\"menuitem\">OK</item>."
msgstr ""
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"hd_id3147560\n"
-"67\n"
+"cellstyle_conditional.xhp\n"
+"hd_id3149898\n"
+"50\n"
"help.text"
-msgid "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\" name=\"Entering a Number with Leading Zeros\">Entering a Number with Leading Zeros</link></variable>"
+msgid "Step 4: Apply Cell Styles"
msgstr ""
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3153194\n"
+"cellstyle_conditional.xhp\n"
+"par_id3149126\n"
"55\n"
"help.text"
-msgid "There are various ways to enter integers starting with a zero:"
+msgid "Now you can apply the conditional formatting to the sheet:"
msgstr ""
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3146119\n"
+"cellstyle_conditional.xhp\n"
+"par_id3150049\n"
"56\n"
"help.text"
-msgid "Enter the number as text. The easiest way is to enter the number starting with an apostrophe (for example, <item type=\"input\">'0987</item>). The apostrophe will not appear in the cell, and the number will be formatted as text. Because it is in text format, however, you cannot calculate with this number."
+msgid "Select all cells with the random numbers."
msgstr ""
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3154013\n"
+"cellstyle_conditional.xhp\n"
+"par_id3153801\n"
"57\n"
"help.text"
-msgid "Format a cell with a number format such as <item type=\"input\">\\0000</item>. This format can be assigned in the <emph>Format code</emph> field under the <emph>Format - Cells - Numbers</emph> tab, and defines the cell display as \"always put a zero first and then the integer, having at least three places, and filled with zeros at the left if less than three digits\"."
+msgid "Choose the <emph>Format - Conditional Formatting</emph> command to open the corresponding dialog."
msgstr ""
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3153158\n"
+"cellstyle_conditional.xhp\n"
+"par_id3153013\n"
"58\n"
"help.text"
-msgid "If you want to apply a numerical format to a column of numbers in text format (for example, text \"000123\" becomes number \"123\"), do the following:"
-msgstr ""
-
-#: integer_leading_zero.xhp
-msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3149377\n"
-"59\n"
-"help.text"
-msgid "Select the column in which the digits are found in text format. Set the cell format in that column as \"Number\"."
-msgstr ""
-
-#: integer_leading_zero.xhp
-msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3154944\n"
-"60\n"
-"help.text"
-msgid "Choose <emph>Edit - Find & Replace</emph>"
+msgid "Define the condition as follows: If cell value is less than J14, format with cell style \"Below\", and if cell value is greater than or equal to J14, format with cell style \"Above\"."
msgstr ""
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3154510\n"
+"cellstyle_conditional.xhp\n"
+"hd_id3155761\n"
"61\n"
"help.text"
-msgid "In the <emph>Search for</emph> box, enter <item type=\"input\">^[0-9]</item>"
+msgid "Step 5: Copy Cell Style"
msgstr ""
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3155068\n"
+"cellstyle_conditional.xhp\n"
+"par_id3145320\n"
"62\n"
"help.text"
-msgid "In the <emph>Replace with</emph> box, enter <item type=\"input\">&</item>"
+msgid "To apply the conditional formatting to other cells later:"
msgstr ""
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3149018\n"
+"cellstyle_conditional.xhp\n"
+"par_id3153074\n"
"63\n"
"help.text"
-msgid "Check <emph>Regular expressions</emph>"
+msgid "Click one of the cells that has been assigned conditional formatting."
msgstr ""
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3156382\n"
+"cellstyle_conditional.xhp\n"
+"par_id3149051\n"
"64\n"
"help.text"
-msgid "Check <emph>Current selection only</emph>"
-msgstr ""
+msgid "Copy the cell to the clipboard."
+msgstr "Deri tek qelia tjetër e pambrojtur"
-#: integer_leading_zero.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"integer_leading_zero.xhp\n"
-"par_id3146916\n"
+"cellstyle_conditional.xhp\n"
+"par_id3150436\n"
"65\n"
"help.text"
-msgid "Click <emph>Replace All</emph>"
-msgstr ""
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"tit\n"
-"help.text"
-msgid "Referencing a Cell in Another Document"
-msgstr ""
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"bm_id3147436\n"
-"help.text"
-msgid "<bookmark_value>sheet references</bookmark_value> <bookmark_value>references; to cells in other sheets/documents</bookmark_value> <bookmark_value>cells; operating in another document</bookmark_value> <bookmark_value>documents;references</bookmark_value>"
-msgstr ""
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"hd_id3147436\n"
-"9\n"
-"help.text"
-msgid "<variable id=\"cellreferences\"><link href=\"text/scalc/guide/cellreferences.xhp\" name=\"Referencing Other Sheets\">Referencing Other Sheets</link></variable>"
-msgstr ""
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"par_id9663075\n"
-"help.text"
-msgid "In a sheet cell you can show a reference to a cell in another sheet."
-msgstr ""
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"par_id1879329\n"
-"help.text"
-msgid "In the same way, a reference can also be made to a cell from another document provided that this document has already been saved as a file."
-msgstr ""
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"hd_id7122409\n"
-"help.text"
-msgid "To Reference a Cell in the Same Document"
-msgstr ""
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"par_id2078005\n"
-"help.text"
-msgid "Open a new, empty spreadsheet."
-msgstr "Hape në një dritare të re"
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"par_id4943693\n"
-"help.text"
-msgid "By way of example, enter the following formula in cell A1 of Sheet1:"
-msgstr ""
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"par_id9064302\n"
-"help.text"
-msgid "<item type=\"literal\">=Sheet2.A1</item>"
-msgstr ""
-
-#: cellreferences.xhp
-msgctxt ""
-"cellreferences.xhp\n"
-"par_id7609790\n"
-"help.text"
-msgid "Click the <emph>Sheet 2</emph> tab at the bottom of the spreadsheet. Set the cursor in cell A1 there and enter text or a number."
+msgid "Select the cells that are to receive this same formatting."
msgstr ""
-#: cellreferences.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id809961\n"
+"cellstyle_conditional.xhp\n"
+"par_id3147298\n"
+"66\n"
"help.text"
-msgid "If you switch back to Sheet1, you will see the same content in cell A1 there. If the contents of Sheet2.A1 change, then the contents of Sheet1.A1 also change."
+msgid "Choose <emph>Edit - Paste Special</emph>. The <emph>Paste Special</emph> dialog appears."
msgstr ""
-#: cellreferences.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"hd_id9209570\n"
+"cellstyle_conditional.xhp\n"
+"par_id3166465\n"
+"67\n"
"help.text"
-msgid "To Reference a Cell in Another Document"
+msgid "In the <emph>Selection</emph> area, check only the <emph>Formats</emph> box. All other boxes must be unchecked. Click <emph>OK</emph>."
msgstr ""
-#: cellreferences.xhp
+#: cellstyle_conditional.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id5949278\n"
+"cellstyle_conditional.xhp\n"
+"par_id3159123\n"
+"68\n"
"help.text"
-msgid "Choose <emph>File - Open</emph>, to load an existing spreadsheet document."
+msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Format - Conditional formatting\">Format - Conditional formatting</link>"
msgstr ""
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id8001953\n"
+"cellstyle_minusvalue.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph>File - New</emph>, to open a new spreadsheet document. Set the cursor in the cell where you want to insert the external data and enter an equals sign to indicate that you want to begin a formula."
-msgstr ""
+msgid "Highlighting Negative Numbers"
+msgstr "Bashkësia e numrave natyral"
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id8571123\n"
+"cellstyle_minusvalue.xhp\n"
+"bm_id3147434\n"
"help.text"
-msgid "Now switch to the document you have just loaded. Click the cell with the data that you want to insert in the new document."
+msgid "<bookmark_value>negative numbers</bookmark_value> <bookmark_value>numbers; highlighting negative numbers</bookmark_value> <bookmark_value>highlighting;negative numbers</bookmark_value> <bookmark_value>colors;negative numbers</bookmark_value> <bookmark_value>number formats;colors for negative numbers</bookmark_value>"
msgstr ""
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id8261665\n"
+"cellstyle_minusvalue.xhp\n"
+"hd_id3147434\n"
+"31\n"
"help.text"
-msgid "Switch back to the new spreadsheet. In the input line you will now see how $[officename] Calc has added the reference to the formula for you."
+msgid "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\" name=\"Highlighting Negative Numbers\">Highlighting Negative Numbers</link></variable>"
msgstr ""
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id5888241\n"
+"cellstyle_minusvalue.xhp\n"
+"par_id3153878\n"
+"33\n"
"help.text"
-msgid "The reference to a cell of another document contains the name of the other document in single inverted commas, then a hash #, then the name of the sheet of the other document, followed by a point and the name of the cell."
+msgid "You can format cells with a number format that highlights negative numbers in red. Alternatively, you can define your own number format in which negative numbers are highlighted in other colors."
msgstr ""
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id7697683\n"
+"cellstyle_minusvalue.xhp\n"
+"par_id3155600\n"
+"34\n"
"help.text"
-msgid "Confirm the formula by clicking the green check mark."
+msgid "Select the cells and choose <emph>Format - Cells</emph>."
msgstr ""
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id7099826\n"
+"cellstyle_minusvalue.xhp\n"
+"par_id3146969\n"
+"35\n"
"help.text"
-msgid "If you drag the box in the lower right corner of the active cell to select a range of cells, $[officename] automatically inserts the corresponding references in the adjacent cells. As a result, the sheet name is preceded with a \"$\" sign to designate it as an absolute reference."
+msgid "On the <emph>Numbers</emph> tab, select a number format and mark <emph>Negative numbers red</emph> check box. Click <emph>OK</emph>."
msgstr ""
-#: cellreferences.xhp
+#: cellstyle_minusvalue.xhp
msgctxt ""
-"cellreferences.xhp\n"
-"par_id674459\n"
+"cellstyle_minusvalue.xhp\n"
+"par_id3145640\n"
+"36\n"
"help.text"
-msgid "If you examine the name of the other document in this formula, you will notice that it is written as a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>. This means that you can also enter a URL from the Internet."
+msgid "The cell number format is defined in two parts. The format for positive numbers and zero is defined in front of the semicolon; after the semicolon the formula for negative numbers is defined. You can change the code (RED) under <item type=\"menuitem\">Format code</item>. For example, instead of RED, enter <item type=\"literal\">YELLOW</item>. If the new code appears in the list after clicking the <item type=\"menuitem\">Add</item> icon, this is a valid entry."
msgstr ""
#: consolidate.xhp
@@ -5641,7 +3244,6 @@ msgid "<link href=\"text/scalc/01/12070000.xhp\" name=\"Data - Consolidate\">Dat
msgstr ""
#: csv_files.xhp
-#, fuzzy
msgctxt ""
"csv_files.xhp\n"
"tit\n"
@@ -5900,762 +3502,869 @@ msgctxt ""
msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
+"csv_formula.xhp\n"
"tit\n"
"help.text"
-msgid "Filter: Applying Advanced Filters"
+msgid "Importing and Exporting Text Files"
+msgstr "Korrespondenca personale dhe dokumentet"
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"bm_id3153726\n"
+"help.text"
+msgid "<bookmark_value>csv files;formulas</bookmark_value> <bookmark_value>formulas; importing/exporting as csv files</bookmark_value> <bookmark_value>exporting;formulas as csv files</bookmark_value> <bookmark_value>importing;csv files with formulas</bookmark_value>"
msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"bm_id3148798\n"
+"csv_formula.xhp\n"
+"hd_id3153726\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>filters;defining advanced filters </bookmark_value><bookmark_value>advanced filters</bookmark_value><bookmark_value>defining; advanced filters</bookmark_value><bookmark_value>database ranges; advanced filters</bookmark_value>"
+msgid "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\" name=\"Importing and Exporting Text Files\">Importing and Exporting CSV Text Files with Formulas</link></variable>"
msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"hd_id3148798\n"
+"csv_formula.xhp\n"
+"par_id3149402\n"
+"2\n"
+"help.text"
+msgid "Comma separated values (CSV) files are text files that contain the cell contents of a single sheet. Commas, semicolons, or other characters can be used as the field delimiters between the cells. Text strings are put in quotation marks, numbers are written without quotation marks."
+msgstr ""
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"hd_id3150715\n"
+"15\n"
+"help.text"
+msgid "To Import a CSV File"
+msgstr "Format i panjohur i fajllit!"
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3153709\n"
+"16\n"
+"help.text"
+msgid "Choose <emph>File - Open</emph>."
+msgstr "Nuk mund ta hap fajllin $(URL1)."
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3155445\n"
+"17\n"
+"help.text"
+msgid "In the <emph>File type</emph> field, select the format \"Text CSV\". Select the file and click <emph>Open</emph>. When a file has the .csv extension, the file type is automatically recognized."
+msgstr ""
+
+#: csv_formula.xhp
+msgctxt ""
+"csv_formula.xhp\n"
+"par_id3149565\n"
"18\n"
"help.text"
-msgid "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Filter: Applying Advanced Filters\">Filter: Applying Advanced Filters</link> </variable>"
+msgid "You will see the <item type=\"menuitem\">Text Import</item> dialog. Click <item type=\"menuitem\">OK</item>."
msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3145785\n"
+"csv_formula.xhp\n"
+"par_id3149255\n"
"19\n"
"help.text"
-msgid "Copy the column headers of the sheet ranges to be filtered into an empty area of the sheet, and then enter the criteria for the filter in a row beneath the headers. Horizontally arranged data in a row will always be logically connected with AND, and vertically arranged data in a column will always be logically connected with OR."
+msgid "If the csv file contains formulas, but you want to import the results of those formulas, then choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph> and clear the <emph>Formulas</emph> check box."
msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153142\n"
-"20\n"
+"csv_formula.xhp\n"
+"hd_id3154022\n"
+"3\n"
"help.text"
-msgid "Once you have created a filter matrix, select the sheet ranges to be filtered. Open the <emph>Advanced Filter</emph> dialog by choosing <emph>Data - Filter - Advanced Filter</emph>, and define the filter conditions."
+msgid "To Export Formulas and Values as CSV Files"
msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153726\n"
-"21\n"
+"csv_formula.xhp\n"
+"par_id3150342\n"
+"4\n"
"help.text"
-msgid "Then click OK, and you will see that only the rows from the original sheet whose contents have met the search criteria are still visible. All other rows are temporarily hidden and can be made to reappear with the <emph>Format - Row - Show </emph>command."
+msgid "Click the sheet to be written as a csv file."
msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3149664\n"
-"22\n"
+"csv_formula.xhp\n"
+"par_id3166423\n"
+"5\n"
"help.text"
-msgid "<emph>Example</emph>"
+msgid "If you want to export the formulas as formulas, for example, in the form =SUM(A1:B5), proceed as follows:"
msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3147427\n"
-"23\n"
+"csv_formula.xhp\n"
+"par_id3155111\n"
+"6\n"
"help.text"
-msgid "Load a spreadsheet with a large number of records. We are using a fictional <emph>Turnover</emph> document, but you can just as easily use any other document. The document has the following layout:"
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph>."
msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3154510\n"
-"24\n"
+"csv_formula.xhp\n"
+"par_id3150200\n"
+"7\n"
"help.text"
-msgid "<emph>A</emph>"
-msgstr "Shto në adresë"
+msgid "Under <emph>Display</emph>, mark the <emph>Formulas</emph> check box. Click <emph>OK</emph>."
+msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150327\n"
-"25\n"
+"csv_formula.xhp\n"
+"par_id3154484\n"
+"8\n"
"help.text"
-msgid "<emph>B</emph>"
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+msgid "If you want to export the calculation results instead of the formulas, do not mark <emph>Formulas</emph>."
+msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3154756\n"
-"26\n"
+"csv_formula.xhp\n"
+"par_id3148702\n"
+"9\n"
"help.text"
-msgid "<emph>C</emph>"
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+msgid "Choose <emph>File - Save as</emph>. You will see the <emph>Save as</emph> dialog."
+msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3155335\n"
-"27\n"
+"csv_formula.xhp\n"
+"par_id3153912\n"
+"10\n"
"help.text"
-msgid "<emph>D</emph>"
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+msgid "In the <item type=\"menuitem\">File type</item> field select the format \"Text CSV\"."
+msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3146315\n"
-"28\n"
+"csv_formula.xhp\n"
+"par_id3157978\n"
+"13\n"
"help.text"
-msgid "<emph>E</emph>"
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+msgid "Enter a name and click <emph>Save</emph>."
+msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3145790\n"
-"29\n"
+"csv_formula.xhp\n"
+"par_id3152869\n"
+"23\n"
"help.text"
-msgid "<emph>1</emph>"
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+msgid "From the <emph>Export of text files</emph> dialog that appears, select the character set and the field and text delimiters for the data to be exported, and confirm with <emph>OK</emph>."
+msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3159239\n"
-"30\n"
+"csv_formula.xhp\n"
+"par_id3150050\n"
+"14\n"
"help.text"
-msgid "Month"
-msgstr "Muaj"
+msgid "If necessary, after you have saved, clear the <emph>Formulas</emph> check box to see the calculated results in the table again."
+msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150086\n"
-"31\n"
+"csv_formula.xhp\n"
+"par_id3153487\n"
+"20\n"
"help.text"
-msgid "Standard"
-msgstr "Standarde"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
+msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150202\n"
-"32\n"
+"csv_formula.xhp\n"
+"par_id3153008\n"
+"21\n"
"help.text"
-msgid "Business"
-msgstr "Biznes"
+msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Export text files</link>"
+msgstr ""
-#: specialfilter.xhp
+#: csv_formula.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150883\n"
-"33\n"
+"csv_formula.xhp\n"
+"par_id3155595\n"
+"22\n"
"help.text"
-msgid "Luxury"
+msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
msgstr ""
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3152987\n"
-"34\n"
+"currency_format.xhp\n"
+"tit\n"
"help.text"
-msgid "Suite"
-msgstr ""
+msgid "Cells in Currency Format"
+msgstr "Të dhënat janë në format të gabuar"
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3154486\n"
-"35\n"
+"currency_format.xhp\n"
+"bm_id3156329\n"
"help.text"
-msgid "<emph>2</emph>"
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+msgid "<bookmark_value>currency formats; spreadsheets</bookmark_value><bookmark_value>cells; currency formats</bookmark_value><bookmark_value>international currency formats</bookmark_value><bookmark_value>formats; currency formats in cells</bookmark_value><bookmark_value>currencies; default currencies</bookmark_value><bookmark_value>defaults;currency formats</bookmark_value><bookmark_value>changing;currency formats</bookmark_value>"
+msgstr ""
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3148839\n"
-"36\n"
+"currency_format.xhp\n"
+"hd_id3156329\n"
+"46\n"
"help.text"
-msgid "January"
+msgid "<variable id=\"currency_format\"><link href=\"text/scalc/guide/currency_format.xhp\" name=\"Cells in Currency Format\">Cells in Currency Format</link></variable>"
msgstr ""
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153816\n"
-"37\n"
+"currency_format.xhp\n"
+"par_id3153968\n"
+"47\n"
"help.text"
-msgid "125600"
+msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can give numbers any currency format. When you click the <item type=\"menuitem\">Currency</item> icon <image id=\"img_id3150791\" src=\"cmd/sc_currencyfield.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3150791\">Icon</alt></image> in the <item type=\"menuitem\">Formatting</item> bar to format a number, the cell is given the default currency format set under <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</item>."
msgstr ""
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3157978\n"
-"38\n"
+"currency_format.xhp\n"
+"par_id3150010\n"
+"48\n"
"help.text"
-msgid "200500"
+msgid "Exchanging of <item type=\"productname\">%PRODUCTNAME</item> Calc documents can lead to misunderstandings, if your <item type=\"productname\">%PRODUCTNAME</item> Calc document is loaded by a user who uses a different default currency format."
msgstr ""
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3155268\n"
-"39\n"
+"currency_format.xhp\n"
+"par_id3156442\n"
+"52\n"
"help.text"
-msgid "240000"
+msgid "In <item type=\"productname\">%PRODUCTNAME</item> Calc you can define that a number that you have formatted as \"1,234.50 €\", still remains in euros in another country and does not become dollars."
msgstr ""
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153286\n"
-"40\n"
+"currency_format.xhp\n"
+"par_id3151075\n"
+"49\n"
"help.text"
-msgid "170000"
+msgid "You can change the currency format in the <item type=\"menuitem\">Format Cells</item> dialog (choose <item type=\"menuitem\">Format - Cells - Numbers</item> tab) by two country settings. In the <item type=\"menuitem\">Language</item> combo box select the basic setting for decimal and thousands separators. In the <item type=\"menuitem\">Format</item> list box you can select the currency symbol and its position."
msgstr ""
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3146782\n"
-"41\n"
+"currency_format.xhp\n"
+"par_id3150749\n"
+"50\n"
"help.text"
-msgid "<emph>3</emph>"
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+msgid "For example, if the language is set to \"Default\" and you are using a german locale setting, the currency format will be \"1.234,00 €\". A point is used before the thousand digits and a comma before the decimal places. If you now select the subordinate currency format \"$ English (US)\" from the <item type=\"menuitem\">Format</item> list box , you will get the following format: \"$ 1.234,00\". As you can see, the separators have remained the same. Only the currency symbol has been changed and converted, but the underlying format of the notation remains the same as in the locale setting."
+msgstr ""
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3149900\n"
-"42\n"
+"currency_format.xhp\n"
+"par_id3145640\n"
+"51\n"
"help.text"
-msgid "February"
+msgid "If, under <item type=\"menuitem\">Language</item>, you convert the cells to \"English (US)\", the English-language locale setting is also transferred and the default currency format is now \"$ 1,234.00\"."
msgstr ""
-#: specialfilter.xhp
+#: currency_format.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3154763\n"
-"43\n"
+"currency_format.xhp\n"
+"par_id3154255\n"
+"53\n"
"help.text"
-msgid "160000"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
msgstr ""
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150050\n"
-"44\n"
+"database_define.xhp\n"
+"tit\n"
"help.text"
-msgid "180300"
+msgid "Defining Database Ranges"
+msgstr "Inte~rvalet e Printimit"
+
+#: database_define.xhp
+msgctxt ""
+"database_define.xhp\n"
+"bm_id3154758\n"
+"help.text"
+msgid "<bookmark_value>tables; database ranges</bookmark_value> <bookmark_value>database ranges; defining</bookmark_value> <bookmark_value>ranges; defining database ranges</bookmark_value> <bookmark_value>defining;database ranges</bookmark_value>"
msgstr ""
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153801\n"
-"45\n"
+"database_define.xhp\n"
+"hd_id3154758\n"
+"31\n"
"help.text"
-msgid "362000"
+msgid "<variable id=\"database_define\"><link href=\"text/scalc/guide/database_define.xhp\" name=\"Defining Database Ranges\">Defining a Database Range</link></variable>"
msgstr ""
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3154708\n"
-"46\n"
+"database_define.xhp\n"
+"par_id3153768\n"
+"81\n"
"help.text"
-msgid "220000"
+msgid "You can define a range of cells in a spreadsheet to use as a database. Each row in this database range corresponds to a database record and each cell in a row corresponds to a database field. You can sort, group, search, and perform calculations on the range as you would in a database."
msgstr ""
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3151191\n"
-"47\n"
+"database_define.xhp\n"
+"par_id3145801\n"
+"82\n"
"help.text"
-msgid "<emph>4</emph>"
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+msgid "You can only edit and access a database range in the spreadsheet that contains the range. You cannot access the database range in the %PRODUCTNAME Data Sources view."
+msgstr ""
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3147250\n"
-"48\n"
+"database_define.xhp\n"
+"par_idN10648\n"
"help.text"
-msgid "March"
+msgid "To define a database range"
msgstr ""
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153334\n"
-"49\n"
+"database_define.xhp\n"
+"par_id3155064\n"
+"41\n"
"help.text"
-msgid "170000"
+msgid "Select the range of cells that you want to define as a database range."
msgstr ""
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3151391\n"
-"50\n"
+"database_define.xhp\n"
+"par_idN10654\n"
"help.text"
-msgid "and so on..."
-msgstr "mbështjell konturën në"
+msgid "Choose <item type=\"menuitem\">Data - Define Range</item>."
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3147300\n"
-"51\n"
+"database_define.xhp\n"
+"par_id3153715\n"
+"72\n"
"help.text"
-msgid "Copy row 1 with the row headers (field names), to row 20, for example. Enter the filter conditions linked with OR in rows 21, 22, and so on."
+msgid "In the <emph>Name</emph> box, enter a name for the database range."
msgstr ""
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3159115\n"
-"52\n"
+"database_define.xhp\n"
+"par_idN1066A\n"
"help.text"
-msgid "<emph>A</emph>"
-msgstr "Shto në adresë"
+msgid "Click <emph>More</emph>."
+msgstr "Më shumë kontrolla të databazës"
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3146886\n"
-"53\n"
+"database_define.xhp\n"
+"par_id3154253\n"
+"42\n"
"help.text"
-msgid "<emph>B</emph>"
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+msgid "Specify the options for the database range."
+msgstr ""
-#: specialfilter.xhp
+#: database_define.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153124\n"
-"54\n"
+"database_define.xhp\n"
+"par_idN10675\n"
"help.text"
-msgid "<emph>C</emph>"
+msgid "Click <emph>OK</emph>."
msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3152979\n"
-"55\n"
+"database_filter.xhp\n"
+"tit\n"
"help.text"
-msgid "<emph>D</emph>"
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+msgid "Filtering Cell Ranges"
+msgstr "Inte~rvalet e Printimit"
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3145827\n"
-"56\n"
+"database_filter.xhp\n"
+"bm_id3153541\n"
"help.text"
-msgid "<emph>E</emph>"
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+msgid "<bookmark_value>cell ranges;applying/removing filters</bookmark_value> <bookmark_value>filtering;cell ranges/database ranges</bookmark_value> <bookmark_value>database ranges;applying/removing filters</bookmark_value> <bookmark_value>removing;cell range filters</bookmark_value>"
+msgstr ""
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3149892\n"
-"57\n"
+"database_filter.xhp\n"
+"hd_id3153541\n"
+"47\n"
"help.text"
-msgid "<emph>20</emph>"
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+msgid "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\" name=\"Filtering Cell Ranges\">Filtering Cell Ranges</link></variable>"
+msgstr ""
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150693\n"
-"58\n"
+"database_filter.xhp\n"
+"par_id3145069\n"
+"48\n"
"help.text"
-msgid "Month"
-msgstr "Muaj"
+msgid "You can use several filters to filter cell ranges in spreadsheets. A standard filter uses the options that you specify to filter the data. An AutoFilter filters data according to a specific value or string. An advanced filter uses filter criteria from specified cells."
+msgstr ""
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3147475\n"
-"59\n"
+"database_filter.xhp\n"
+"par_idN10682\n"
"help.text"
-msgid "Standard"
-msgstr "Standarde"
+msgid "To Apply a Standard Filter to a Cell Range"
+msgstr "Referenca në një qeli ose një interval."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3154846\n"
-"60\n"
+"database_filter.xhp\n"
+"par_id3150398\n"
+"50\n"
"help.text"
-msgid "Business"
-msgstr "Biznes"
+msgid "Click in a cell range."
+msgstr "Referenca në një qeli ose një interval."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153082\n"
-"61\n"
+"database_filter.xhp\n"
+"par_idN10693\n"
"help.text"
-msgid "Luxury"
-msgstr ""
+msgid "Choose <item type=\"menuitem\">Data - Filter - Standard Filter</item>."
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3149506\n"
-"62\n"
+"database_filter.xhp\n"
+"par_id3156422\n"
+"51\n"
"help.text"
-msgid "Suite"
+msgid "In the <emph>Standard Filter</emph> dialog, specify the filter options that you want."
msgstr ""
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3149188\n"
-"63\n"
+"database_filter.xhp\n"
+"par_idN106A5\n"
"help.text"
-msgid "<emph>21</emph>"
+msgid "Click <emph>OK</emph>."
msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3149956\n"
-"64\n"
+"database_filter.xhp\n"
+"par_id3153143\n"
+"52\n"
"help.text"
-msgid "January"
+msgid "The records that match the filter options that you specified are shown."
msgstr ""
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3150865\n"
-"65\n"
+"database_filter.xhp\n"
+"par_id3153728\n"
+"53\n"
"help.text"
-msgid "<emph>22</emph>"
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+msgid "To Apply an AutoFilter to a Cell Range"
+msgstr "Referenca në një qeli ose një interval."
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3155957\n"
-"66\n"
+"database_filter.xhp\n"
+"par_id3144764\n"
+"54\n"
"help.text"
-msgid "<160000"
+msgid "Click in a cell range or a database range."
msgstr ""
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3153566\n"
-"67\n"
+"database_filter.xhp\n"
+"par_id9303872\n"
"help.text"
-msgid "Specify that only rows which either have the value <item type=\"literal\">January</item> in the <emph>Month</emph> cells OR a value of under 160000 in the <emph>Standard</emph> cells will be displayed."
+msgid "If you want to apply multiple AutoFilters to the same sheet, you must first define database ranges, then apply the AutoFilters to the database ranges."
msgstr ""
-#: specialfilter.xhp
+#: database_filter.xhp
msgctxt ""
-"specialfilter.xhp\n"
-"par_id3147372\n"
-"68\n"
+"database_filter.xhp\n"
+"par_id3154944\n"
+"55\n"
"help.text"
-msgid "Choose <emph>Data - Filter - Advanced Filter</emph>, and then select the range A20:E22. After you click OK, only the filtered rows will be displayed. The other rows will be hidden from view."
-msgstr ""
+msgid "Choose <item type=\"menuitem\">Data - Filter - AutoFilter</item>."
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: csv_formula.xhp
+#: database_filter.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"tit\n"
+"database_filter.xhp\n"
+"par_idN106DB\n"
"help.text"
-msgid "Importing and Exporting Text Files"
+msgid "An arrow button is added to the head of each column in the database range."
msgstr ""
-#: csv_formula.xhp
+#: database_filter.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"bm_id3153726\n"
+"database_filter.xhp\n"
+"par_id3153878\n"
+"56\n"
"help.text"
-msgid "<bookmark_value>csv files;formulas</bookmark_value> <bookmark_value>formulas; importing/exporting as csv files</bookmark_value> <bookmark_value>exporting;formulas as csv files</bookmark_value> <bookmark_value>importing;csv files with formulas</bookmark_value>"
+msgid "Click the arrow button in the column that contains the value or string that you want to set as the filter criteria."
msgstr ""
-#: csv_formula.xhp
+#: database_filter.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"hd_id3153726\n"
-"1\n"
+"database_filter.xhp\n"
+"par_idN10749\n"
"help.text"
-msgid "<variable id=\"csv_formula\"><link href=\"text/scalc/guide/csv_formula.xhp\" name=\"Importing and Exporting Text Files\">Importing and Exporting CSV Text Files with Formulas</link></variable>"
+msgid "Select the value or string that you want to use as the filter criteria."
msgstr ""
-#: csv_formula.xhp
+#: database_filter.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3149402\n"
-"2\n"
+"database_filter.xhp\n"
+"par_idN1074C\n"
"help.text"
-msgid "Comma separated values (CSV) files are text files that contain the cell contents of a single sheet. Commas, semicolons, or other characters can be used as the field delimiters between the cells. Text strings are put in quotation marks, numbers are written without quotation marks."
+msgid "The records that match the filter criteria that you selected are shown."
msgstr ""
-#: csv_formula.xhp
+#: database_filter.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"hd_id3150715\n"
-"15\n"
+"database_filter.xhp\n"
+"par_idN106E8\n"
"help.text"
-msgid "To Import a CSV File"
-msgstr "Format i panjohur i fajllit!"
+msgid "To Remove a Filter From a Cell Range"
+msgstr "Kthen një referencë në një qeli nga një interval i definuar."
-#: csv_formula.xhp
+#: database_filter.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3153709\n"
-"16\n"
+"database_filter.xhp\n"
+"par_idN1075C\n"
"help.text"
-msgid "Choose <emph>File - Open</emph>."
+msgid "Click in a filtered cell range."
+msgstr ""
+
+#: database_filter.xhp
+msgctxt ""
+"database_filter.xhp\n"
+"par_idN106EC\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Data - Filter - Remove Filter</item>."
msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: csv_formula.xhp
+#: database_filter.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3155445\n"
-"17\n"
+"database_filter.xhp\n"
+"par_id4525284\n"
"help.text"
-msgid "In the <emph>File type</emph> field, select the format \"Text CSV\". Select the file and click <emph>Open</emph>. When a file has the .csv extension, the file type is automatically recognized."
+msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wiki page about defining a data range</link>"
msgstr ""
-#: csv_formula.xhp
+#: database_sort.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3149565\n"
-"18\n"
+"database_sort.xhp\n"
+"tit\n"
"help.text"
-msgid "You will see the <item type=\"menuitem\">Text Import</item> dialog. Click <item type=\"menuitem\">OK</item>."
+msgid "Sorting Data"
+msgstr "Inte~rvalet e Printimit"
+
+#: database_sort.xhp
+msgctxt ""
+"database_sort.xhp\n"
+"bm_id3150767\n"
+"help.text"
+msgid "<bookmark_value>database ranges; sorting</bookmark_value> <bookmark_value>sorting; database ranges</bookmark_value> <bookmark_value>data;sorting in databases</bookmark_value>"
msgstr ""
-#: csv_formula.xhp
+#: database_sort.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3149255\n"
-"19\n"
+"database_sort.xhp\n"
+"hd_id3150767\n"
+"44\n"
"help.text"
-msgid "If the csv file contains formulas, but you want to import the results of those formulas, then choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph> and clear the <emph>Formulas</emph> check box."
+msgid "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Sorting Database Ranges\">Sorting Data</link></variable>"
msgstr ""
-#: csv_formula.xhp
+#: database_sort.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"hd_id3154022\n"
-"3\n"
+"database_sort.xhp\n"
+"par_id3145751\n"
+"45\n"
"help.text"
-msgid "To Export Formulas and Values as CSV Files"
+msgid "Click in a database range."
+msgstr "Numri i dështimeve në intervalin provues."
+
+#: database_sort.xhp
+msgctxt ""
+"database_sort.xhp\n"
+"par_id121020081121549\n"
+"help.text"
+msgid "If you select a range of cells, only these cells will get sorted. If you just click one cell without selecting, then the whole database range will get sorted."
msgstr ""
-#: csv_formula.xhp
+#: database_sort.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3150342\n"
-"4\n"
+"database_sort.xhp\n"
+"par_idN10635\n"
"help.text"
-msgid "Click the sheet to be written as a csv file."
+msgid "Choose <item type=\"menuitem\">Data - Sort</item>."
+msgstr "Nuk mund ta hap fajllin $(URL1)."
+
+#: database_sort.xhp
+msgctxt ""
+"database_sort.xhp\n"
+"par_id121020081121547\n"
+"help.text"
+msgid "The range of cells that will get sorted is shown in inverted colors."
msgstr ""
-#: csv_formula.xhp
+#: database_sort.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3166423\n"
-"5\n"
+"database_sort.xhp\n"
+"par_idN10645\n"
"help.text"
-msgid "If you want to export the formulas as formulas, for example, in the form =SUM(A1:B5), proceed as follows:"
+msgid "Select the sort options that you want."
msgstr ""
-#: csv_formula.xhp
+#: database_sort.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3155111\n"
-"6\n"
+"database_sort.xhp\n"
+"par_idN1063D\n"
"help.text"
-msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph>."
+msgid "Click <emph>OK</emph>."
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+
+#: database_sort.xhp
+msgctxt ""
+"database_sort.xhp\n"
+"par_id1846980\n"
+"help.text"
+msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wiki page about defining a data range</link>"
msgstr ""
-#: csv_formula.xhp
+#: datapilot.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3150200\n"
+"datapilot.xhp\n"
+"tit\n"
+"help.text"
+msgid "Pivot Table"
+msgstr "Indeksi i tabelave"
+
+#: datapilot.xhp
+msgctxt ""
+"datapilot.xhp\n"
+"bm_id3150448\n"
+"help.text"
+msgid "<bookmark_value>pivot table function; introduction</bookmark_value><bookmark_value>DataPilot, see pivot table function</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: datapilot.xhp
+msgctxt ""
+"datapilot.xhp\n"
+"hd_id3150448\n"
"7\n"
"help.text"
-msgid "Under <emph>Display</emph>, mark the <emph>Formulas</emph> check box. Click <emph>OK</emph>."
+msgid "<variable id=\"datapilot\"><link href=\"text/scalc/guide/datapilot.xhp\" name=\"Pivot Table\">Pivot Table</link></variable>"
msgstr ""
-#: csv_formula.xhp
+#: datapilot.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3154484\n"
-"8\n"
+"datapilot.xhp\n"
+"par_id3156024\n"
+"2\n"
"help.text"
-msgid "If you want to export the calculation results instead of the formulas, do not mark <emph>Formulas</emph>."
+msgid "The <emph>pivot table</emph> (formerly known as <emph>DataPilot</emph>) allows you to combine, compare, and analyze large amounts of data. You can view different summaries of the source data, you can display the details of areas of interest, and you can create reports."
msgstr ""
-#: csv_formula.xhp
+#: datapilot.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3148702\n"
+"datapilot.xhp\n"
+"par_id3145069\n"
"9\n"
"help.text"
-msgid "Choose <emph>File - Save as</emph>. You will see the <emph>Save as</emph> dialog."
+msgid "A table that has been created as a <link href=\"text/scalc/01/12090000.xhp\" name=\"pivot table\">pivot table</link> is an interactive table. Data can be arranged, rearranged or summarized according to different points of view."
msgstr ""
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3153912\n"
-"10\n"
+"datapilot_createtable.xhp\n"
+"tit\n"
"help.text"
-msgid "In the <item type=\"menuitem\">File type</item> field select the format \"Text CSV\"."
-msgstr ""
+msgid "Creating Pivot Tables"
+msgstr "DataPilot tabelat nuk mund të mbulojnë njëra tjetrën."
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3157978\n"
-"13\n"
+"datapilot_createtable.xhp\n"
+"bm_id3148491\n"
"help.text"
-msgid "Enter a name and click <emph>Save</emph>."
-msgstr ""
+msgid "<bookmark_value>pivot tables</bookmark_value> <bookmark_value>pivot table function; calling up and applying</bookmark_value>"
+msgstr "Shndërron një vlerë në tekst."
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3152869\n"
-"23\n"
+"datapilot_createtable.xhp\n"
+"hd_id3148491\n"
+"7\n"
"help.text"
-msgid "From the <emph>Export of text files</emph> dialog that appears, select the character set and the field and text delimiters for the data to be exported, and confirm with <emph>OK</emph>."
+msgid "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Creating Pivot Tables\">Creating Pivot Tables</link></variable>"
msgstr ""
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3150050\n"
-"14\n"
+"datapilot_createtable.xhp\n"
+"par_id3156023\n"
+"8\n"
"help.text"
-msgid "If necessary, after you have saved, clear the <emph>Formulas</emph> check box to see the calculated results in the table again."
+msgid "Position the cursor within a range of cells containing values, row and column headings."
msgstr ""
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3153487\n"
-"20\n"
+"datapilot_createtable.xhp\n"
+"par_id3147264\n"
+"9\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
+msgid "Choose <emph>Data - Pivot Table - Create</emph>. The <emph>Select Source</emph> dialog appears. Choose <emph>Current selection</emph> and confirm with <emph>OK</emph>. The table headings are shown as buttons in the <emph>Pivot Table</emph> dialog. Drag these buttons as required and drop them into the layout areas \"Page Fields\", \"Column Fields\", \"Row Fields\" and \"Data Fields\"."
msgstr ""
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3153008\n"
-"21\n"
+"datapilot_createtable.xhp\n"
+"par_id3150868\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export text files\">Export text files</link>"
+msgid "Drag the desired buttons into one of the four areas."
msgstr ""
-#: csv_formula.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"csv_formula.xhp\n"
-"par_id3155595\n"
-"22\n"
+"datapilot_createtable.xhp\n"
+"par_id7599414\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000208.xhp\" name=\"Import text files\">Import text files</link>"
+msgid "Drag a button to the <emph>Page Fields</emph> area to create a button and a listbox on top of the generated pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the generated pivot table to use another page field as a filter."
msgstr ""
-#: datapilot_grouping.xhp
-#, fuzzy
+#: datapilot_createtable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"tit\n"
+"datapilot_createtable.xhp\n"
+"par_id3154011\n"
+"11\n"
"help.text"
-msgid "Grouping Pivot Tables"
-msgstr "DataPilot tabelat nuk mund të mbulojnë njëra tjetrën."
+msgid "If the button is dropped in the <emph>Data Fields</emph> area it will be given a caption that also shows the formula that will be used to calculate the data."
+msgstr ""
-#: datapilot_grouping.xhp
-#, fuzzy
+#: datapilot_createtable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"bm_id4195684\n"
+"datapilot_createtable.xhp\n"
+"par_id3146974\n"
+"16\n"
"help.text"
-msgid "<bookmark_value>grouping; pivot tables</bookmark_value><bookmark_value>pivot table function;grouping table entries</bookmark_value><bookmark_value>ungrouping entries in pivot tables</bookmark_value>"
-msgstr "Shndërron një vlerë në tekst."
+msgid "By double-clicking on one of the fields in the <emph>Data Fields</emph> area you can call up the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog."
+msgstr ""
-#: datapilot_grouping.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_idN10643\n"
+"datapilot_createtable.xhp\n"
+"par_id3156286\n"
+"17\n"
"help.text"
-msgid "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Grouping Pivot Tables</link></variable>"
+msgid "Use the <item type=\"menuitem\">Data Field</item> dialog to select the calculations to be used for the data. To make a multiple selection, press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while clicking the desired calculation."
msgstr ""
-#: datapilot_grouping.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_idN10661\n"
+"datapilot_createtable.xhp\n"
+"par_id3150329\n"
+"13\n"
"help.text"
-msgid "The resulting pivot table can contain many different entries. By grouping the entries, you can improve the visible result."
+msgid "The order of the buttons can be changed at any time by moving them to a different position in the area with the mouse."
msgstr ""
-#: datapilot_grouping.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_idN10667\n"
+"datapilot_createtable.xhp\n"
+"par_id3153714\n"
+"14\n"
"help.text"
-msgid "Select a cell or range of cells in the pivot table."
+msgid "Remove a button by dragging it back to the area of the other buttons at the right of the dialog."
msgstr ""
-#: datapilot_grouping.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_idN1066B\n"
+"datapilot_createtable.xhp\n"
+"par_id3147338\n"
+"15\n"
"help.text"
-msgid "Choose <emph>Data - Group and Outline - Group</emph>."
+msgid "To open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog, double-click one of the buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> area. Use the dialog to select if and to what extent <item type=\"productname\">%PRODUCTNAME</item> calculates display subtotals."
msgstr ""
-#: datapilot_grouping.xhp
+#: datapilot_createtable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_idN1066E\n"
+"datapilot_createtable.xhp\n"
+"par_id3154020\n"
+"18\n"
"help.text"
-msgid "Depending on the format of the selected cells, either a new group field is added to the pivot table, or you see one of the two <link href=\"text/scalc/01/12090400.xhp\">Grouping</link> dialogs, either for numeric values, or for date values."
+msgid "Exit the Pivot Table dialog by pressing OK. A <emph>Filter</emph> button will now be inserted, or a page button for every data field that you dropped in the <emph>Page Fields</emph> area. The pivot table is inserted further down."
msgstr ""
-#: datapilot_grouping.xhp
+#: datapilot_deletetable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_id3328653\n"
+"datapilot_deletetable.xhp\n"
+"tit\n"
"help.text"
-msgid "The pivot table must be organized in a way that grouping can be applied."
+msgid "Deleting Pivot Tables"
+msgstr "DataPilot tabelat nuk mund të mbulojnë njëra tjetrën."
+
+#: datapilot_deletetable.xhp
+msgctxt ""
+"datapilot_deletetable.xhp\n"
+"bm_id3153726\n"
+"help.text"
+msgid "<bookmark_value>pivot table function; deleting tables</bookmark_value> <bookmark_value>deleting;pivot tables</bookmark_value>"
+msgstr "Shndërron një vlerë në tekst."
+
+#: datapilot_deletetable.xhp
+msgctxt ""
+"datapilot_deletetable.xhp\n"
+"hd_id3153726\n"
+"31\n"
+"help.text"
+msgid "<variable id=\"datapilot_deletetable\"><link href=\"text/scalc/guide/datapilot_deletetable.xhp\" name=\"Deleting Pivot Tables\">Deleting Pivot Tables</link></variable>"
msgstr ""
-#: datapilot_grouping.xhp
+#: datapilot_deletetable.xhp
msgctxt ""
-"datapilot_grouping.xhp\n"
-"par_idN10682\n"
+"datapilot_deletetable.xhp\n"
+"par_id3154014\n"
+"32\n"
"help.text"
-msgid "To remove a grouping, click inside the group, then choose <emph>Data - Group and Outline - Ungroup</emph>."
+msgid "In order to delete a pivot table, click any cell in the pivot table, then choose <emph>Delete</emph> in the context menu."
msgstr ""
#: datapilot_edittable.xhp
-#, fuzzy
msgctxt ""
"datapilot_edittable.xhp\n"
"tit\n"
@@ -6664,7 +4373,6 @@ msgid "Editing Pivot Tables"
msgstr "DataPilot tabelat nuk mund të mbulojnë njëra tjetrën."
#: datapilot_edittable.xhp
-#, fuzzy
msgctxt ""
"datapilot_edittable.xhp\n"
"bm_id3148663\n"
@@ -6741,146 +4449,291 @@ msgctxt ""
msgid "You can assign custom display names to fields, field members, subtotals (with some restrictions), and grand totals inside pivot tables. A custom display name is assigned to an item by overwriting the original name with another name."
msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
+"datapilot_filtertable.xhp\n"
"tit\n"
"help.text"
-msgid "Using Rounded Off Numbers"
+msgid "Filtering Pivot Tables"
+msgstr "DataPilot tabelat nuk mund të mbulojnë njëra tjetrën."
+
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"bm_id3150792\n"
+"help.text"
+msgid "<bookmark_value>pivot table function; filtering tables</bookmark_value><bookmark_value>filtering;pivot tables</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+
+#: datapilot_filtertable.xhp
+msgctxt ""
+"datapilot_filtertable.xhp\n"
+"hd_id3150792\n"
+"help.text"
+msgid "<variable id=\"datapilot_filtertable\"><link href=\"text/scalc/guide/datapilot_filtertable.xhp\" name=\"Filtering Pivot Tables\">Filtering Pivot Tables</link></variable>"
msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"bm_id3153361\n"
+"datapilot_filtertable.xhp\n"
+"par_id3153192\n"
"help.text"
-msgid "<bookmark_value>numbers; rounded off</bookmark_value><bookmark_value>rounded off numbers</bookmark_value><bookmark_value>exact numbers in $[officename] Calc</bookmark_value><bookmark_value>decimal places; showing</bookmark_value><bookmark_value>changing;number of decimal places</bookmark_value><bookmark_value>values;rounded in calculations</bookmark_value><bookmark_value>calculating;rounded off values</bookmark_value><bookmark_value>numbers; decimal places</bookmark_value><bookmark_value>precision as shown</bookmark_value><bookmark_value>rounding precision</bookmark_value><bookmark_value>spreadsheets; values as shown</bookmark_value>"
+msgid "You can use filters to remove unwanted data from a pivot table."
msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"hd_id3156422\n"
-"2\n"
+"datapilot_filtertable.xhp\n"
+"par_id3150441\n"
"help.text"
-msgid "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding_numbers.xhp\" name=\"Using Rounded Off Numbers\">Using Rounded Off Numbers</link></variable>"
+msgid "Click the <emph>Filter</emph> button in the sheet to call up the dialog for the filter conditions. Alternatively, call up the context menu of the pivot table and select the <emph>Filter</emph> command. The <link href=\"text/scalc/01/12090103.xhp\" name=\"Filter\"><emph>Filter</emph></link> dialog appears. Here you can filter the pivot table."
msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3153726\n"
-"3\n"
+"datapilot_filtertable.xhp\n"
+"par_id315044199\n"
"help.text"
-msgid "In $[officename] Calc, all decimal numbers are displayed rounded off to two decimal places."
+msgid "You can also click the arrow on a button in the pivot table to show a pop-up window. In this pop-up window, you can edit the visibility settings of the associated field."
msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"hd_id3152596\n"
-"4\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344485\n"
"help.text"
-msgid "To change this for selected cells"
+msgid "The pop-up window displays a list of field members associated with that field. A check box is placed to the left of each field member name. When a field has an alternative display name that differs from its original name, that name is displayed in the list."
msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3154321\n"
-"5\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344449\n"
"help.text"
-msgid "Mark all the cells you want to modify."
+msgid "Enable or disable a checkbox to show or hide the associated field member in the pivot table."
msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3147428\n"
-"6\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344493\n"
"help.text"
-msgid "Choose <emph>Format - Cells</emph> and go to the <emph>Numbers</emph> tab page."
+msgid "Enable or disable the <emph>All</emph> checkbox to show all or none of the field members."
msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3153876\n"
-"7\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344431\n"
"help.text"
-msgid "In the <emph>Category</emph> field, select <emph>Number</emph>. Under <emph>Options</emph>, change the number of <emph>Decimal places</emph> and exit the dialog with OK."
+msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Show only the current item</item> button to show only the selected field member. All other field members are hidden in the pivot table."
msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"hd_id3155415\n"
-"8\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344484\n"
"help.text"
-msgid "To change this everywhere"
+msgid "Select a field member in the pop-up window and click the <item type=\"menuitem\">Hide only the current item</item> button to hide only the selected field member. All other field members are shown in the pivot table."
msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3150715\n"
-"9\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344578\n"
"help.text"
-msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>."
+msgid "Commands enable you to sort the field members in ascending order, descending order, or using a custom sort list."
msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3153707\n"
-"10\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344584\n"
"help.text"
-msgid "Go to the <emph>Calculate</emph> page. Modify the number of <emph>Decimal places</emph> and exit the dialog with OK."
+msgid "To edit the custom sort lists, open <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists."
msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"hd_id3154755\n"
-"11\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344811\n"
"help.text"
-msgid "To calculate with the rounded off numbers instead of the internal exact values"
+msgid "The arrow to open the pop-up window is normally black. When the field contains one or more hidden field members, the arrow is blue and displays a tiny square at its lower-right corner."
msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_filtertable.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3150045\n"
-"12\n"
+"datapilot_filtertable.xhp\n"
+"par_id0720201001344884\n"
"help.text"
-msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>."
+msgid "You can also open the pop-up window by positioning the cell cursor at the button and pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+D."
msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_grouping.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3146920\n"
-"13\n"
+"datapilot_grouping.xhp\n"
+"tit\n"
"help.text"
-msgid "Go to the <emph>Calculate</emph> page. Mark the <emph>Precision as shown</emph> field and exit the dialog with OK."
+msgid "Grouping Pivot Tables"
+msgstr "DataPilot tabelat nuk mund të mbulojnë njëra tjetrën."
+
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"bm_id4195684\n"
+"help.text"
+msgid "<bookmark_value>grouping; pivot tables</bookmark_value><bookmark_value>pivot table function;grouping table entries</bookmark_value><bookmark_value>ungrouping entries in pivot tables</bookmark_value>"
+msgstr "Shndërron një vlerë në tekst."
+
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_idN10643\n"
+"help.text"
+msgid "<variable id=\"datapilot_grouping\"><link href=\"text/scalc/guide/datapilot_grouping.xhp\">Grouping Pivot Tables</link></variable>"
msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_grouping.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3145790\n"
-"14\n"
+"datapilot_grouping.xhp\n"
+"par_idN10661\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgid "The resulting pivot table can contain many different entries. By grouping the entries, you can improve the visible result."
msgstr ""
-#: rounding_numbers.xhp
+#: datapilot_grouping.xhp
msgctxt ""
-"rounding_numbers.xhp\n"
-"par_id3147005\n"
-"15\n"
+"datapilot_grouping.xhp\n"
+"par_idN10667\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Calculate\">Calculate</link>"
+msgid "Select a cell or range of cells in the pivot table."
+msgstr ""
+
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_idN1066B\n"
+"help.text"
+msgid "Choose <emph>Data - Group and Outline - Group</emph>."
+msgstr ""
+
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_idN1066E\n"
+"help.text"
+msgid "Depending on the format of the selected cells, either a new group field is added to the pivot table, or you see one of the two <link href=\"text/scalc/01/12090400.xhp\">Grouping</link> dialogs, either for numeric values, or for date values."
+msgstr ""
+
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_id3328653\n"
+"help.text"
+msgid "The pivot table must be organized in a way that grouping can be applied."
+msgstr ""
+
+#: datapilot_grouping.xhp
+msgctxt ""
+"datapilot_grouping.xhp\n"
+"par_idN10682\n"
+"help.text"
+msgid "To remove a grouping, click inside the group, then choose <emph>Data - Group and Outline - Ungroup</emph>."
+msgstr ""
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting Pivot Table Output Ranges"
+msgstr "DataPilot tabelat nuk mund të mbulojnë njëra tjetrën."
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"bm_id3148663\n"
+"help.text"
+msgid "<bookmark_value>pivot table function; preventing data overwriting</bookmark_value><bookmark_value>output ranges of pivot tables</bookmark_value>"
+msgstr "Shndërron një vlerë në tekst."
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"hd_id3148663\n"
+"19\n"
+"help.text"
+msgid "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Selecting Pivot Table Output Ranges\">Selecting Pivot Table Output Ranges</link></variable>"
+msgstr ""
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"par_id3154123\n"
+"20\n"
+"help.text"
+msgid "Click the button <emph>More</emph> in the <emph>Pivot Table</emph> dialog. The dialog will be extended."
+msgstr ""
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"par_id3153771\n"
+"21\n"
+"help.text"
+msgid "You can select a named range in which the pivot table is to be created, from the <emph>Results to</emph> box. If the results range does not have a name, enter the coordinates of the upper left cell of the range into the field to the right of the <emph>Results to</emph> box. You can also click on the appropriate cell to have the coordinates entered accordingly."
+msgstr ""
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"par_id3146974\n"
+"23\n"
+"help.text"
+msgid "If you mark the <emph>Ignore empty rows</emph> check box, they will not be taken into account when the pivot table is created."
+msgstr ""
+
+#: datapilot_tipps.xhp
+msgctxt ""
+"datapilot_tipps.xhp\n"
+"par_id3145273\n"
+"24\n"
+"help.text"
+msgid "If the <emph>Identify categories</emph> check box is marked, the categories will be identified by their headings and assigned accordingly when the pivot table is created."
+msgstr ""
+
+#: datapilot_updatetable.xhp
+msgctxt ""
+"datapilot_updatetable.xhp\n"
+"tit\n"
+"help.text"
+msgid "Updating Pivot Tables"
+msgstr "DataPilot tabelat nuk mund të mbulojnë njëra tjetrën."
+
+#: datapilot_updatetable.xhp
+msgctxt ""
+"datapilot_updatetable.xhp\n"
+"bm_id3150792\n"
+"help.text"
+msgid "<bookmark_value>pivot table import</bookmark_value><bookmark_value>pivot table function; refreshing tables</bookmark_value><bookmark_value>recalculating;pivot tables</bookmark_value><bookmark_value>updating;pivot tables</bookmark_value>"
+msgstr "Shndërron një vlerë në tekst."
+
+#: datapilot_updatetable.xhp
+msgctxt ""
+"datapilot_updatetable.xhp\n"
+"hd_id3150792\n"
+"33\n"
+"help.text"
+msgid "<variable id=\"datapilot_updatetable\"><link href=\"text/scalc/guide/datapilot_updatetable.xhp\" name=\"Updating Pivot Tables\">Updating Pivot Tables</link></variable>"
+msgstr ""
+
+#: datapilot_updatetable.xhp
+msgctxt ""
+"datapilot_updatetable.xhp\n"
+"par_id3154684\n"
+"34\n"
+"help.text"
+msgid "If the data of the source sheet has been changed, $[officename] recalculates the pivot table. To recalculate the table, choose <emph>Data - Pivot Table - Refresh</emph>. Do the same after you have imported an Excel pivot table into $[officename] Calc."
msgstr ""
#: dbase_files.xhp
@@ -6889,7 +4742,7 @@ msgctxt ""
"tit\n"
"help.text"
msgid "Importing and Exporting dBASE Files"
-msgstr ""
+msgstr "Korrespondenca personale dhe dokumentet"
#: dbase_files.xhp
msgctxt ""
@@ -7107,6 +4960,275 @@ msgctxt ""
msgid "Only the data on the current sheet is exported."
msgstr ""
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting Themes for Sheets"
+msgstr ""
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"bm_id3150791\n"
+"help.text"
+msgid "<bookmark_value>theme selection for sheets</bookmark_value><bookmark_value>layout;spreadsheets</bookmark_value><bookmark_value>cell styles; selecting</bookmark_value><bookmark_value>selecting;formatting themes</bookmark_value><bookmark_value>sheets;formatting themes</bookmark_value><bookmark_value>formats;themes for sheets</bookmark_value><bookmark_value>formatting;themes for sheets</bookmark_value>"
+msgstr ""
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"hd_id3150791\n"
+"6\n"
+"help.text"
+msgid "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Selecting Themes for Sheets\">Selecting Themes for Sheets</link> </variable>"
+msgstr ""
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3145786\n"
+"13\n"
+"help.text"
+msgid "$[officename] Calc comes with a predefined set of formatting themes that you can apply to your spreadsheets."
+msgstr ""
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3154490\n"
+"16\n"
+"help.text"
+msgid "It is not possible to add themes to Calc, and they cannot be modified. However, you can modify their styles after you apply them to a spreadsheet."
+msgstr ""
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3154757\n"
+"17\n"
+"help.text"
+msgid "Before you format a sheet with a theme, you have to apply at least one custom cell style to the cells on the sheet. You can then change the cell formatting by selecting and applying a theme in the <emph>Theme Selection</emph> dialog."
+msgstr ""
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3156382\n"
+"18\n"
+"help.text"
+msgid "To apply a custom cell style to a cell, you can open the Styles and Formatting window and, in its lower list box, set the Custom Styles view. A list of the existing custom defined cell styles will be displayed. Double click a name from the Styles and Formatting window to apply this style to the selected cells."
+msgstr ""
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3153963\n"
+"19\n"
+"help.text"
+msgid "To apply a theme to a spreadsheet:"
+msgstr "Apliko në të gjitha sllajdet"
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3146920\n"
+"15\n"
+"help.text"
+msgid "Click the <emph>Choose Themes</emph> icon in the <emph>Tools</emph> bar."
+msgstr ""
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3148488\n"
+"20\n"
+"help.text"
+msgid "The <emph>Theme Selection</emph> dialog appears. This dialog lists the available themes for the whole spreadsheet and the Styles and Formatting window lists the custom styles for specific cells."
+msgstr ""
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3155114\n"
+"9\n"
+"help.text"
+msgid "In the <emph>Theme Selection </emph>dialog, select the theme that you want to apply to the spreadsheet."
+msgstr ""
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3150090\n"
+"21\n"
+"help.text"
+msgid "Click OK"
+msgstr "Kliko në objekt"
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3150201\n"
+"22\n"
+"help.text"
+msgid "As soon as you select another theme in the <emph>Theme Selection</emph> dialog, some of the properties of the custom style will be applied to the current spreadsheet. The modifications will be immediately visible in your spreadsheet."
+msgstr ""
+
+#: design.xhp
+msgctxt ""
+"design.xhp\n"
+"par_id3146979\n"
+"12\n"
+"help.text"
+msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme selection\">Theme selection</link>"
+msgstr ""
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"tit\n"
+"help.text"
+msgid "Copying to Multiple Sheets"
+msgstr "Referencat në një interval (të shumëfisht)."
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"bm_id3149456\n"
+"help.text"
+msgid "<bookmark_value>copying;values, to multiple sheets</bookmark_value><bookmark_value>pasting;values in multiple sheets</bookmark_value><bookmark_value>data;inserting in multiple sheets</bookmark_value> <bookmark_value>sheets; simultaneous multiple filling</bookmark_value>"
+msgstr ""
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"hd_id3149456\n"
+"3\n"
+"help.text"
+msgid "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\" name=\"Copying to Multiple Sheets\">Copying to Multiple Sheets</link> </variable>"
+msgstr ""
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"par_id3150868\n"
+"6\n"
+"help.text"
+msgid "In $[officename] Calc, you can insert values, text or formulas that are simultaneously copied to other selected sheets of your document."
+msgstr ""
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"par_id3153768\n"
+"8\n"
+"help.text"
+msgid "Select all desired sheets by holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key and clicking the corresponding register tabs that are still gray at the bottom margin of the workspace. All selected register tabs are now white."
+msgstr ""
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"par_idN10614\n"
+"help.text"
+msgid "You can use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard."
+msgstr ""
+
+#: edit_multitables.xhp
+msgctxt ""
+"edit_multitables.xhp\n"
+"par_id3147435\n"
+"7\n"
+"help.text"
+msgid "Now when you insert values, text or formulas into the active sheet, they will also appear in the identical positions in the other selected sheets. For example, data entered in cell A1 of the active sheet is automatically entered into cell A1 of any other seleted sheet."
+msgstr ""
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"tit\n"
+"help.text"
+msgid "Applying Filters"
+msgstr "Objektet/grafikat"
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"bm_id3153896\n"
+"help.text"
+msgid "<bookmark_value>filters; applying/removing</bookmark_value> <bookmark_value>rows;removing/redisplaying with filters</bookmark_value> <bookmark_value>removing;filters</bookmark_value>"
+msgstr ""
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"hd_id3153896\n"
+"70\n"
+"help.text"
+msgid "<variable id=\"filters\"><link href=\"text/scalc/guide/filters.xhp\" name=\"Applying Filters\">Applying Filters</link></variable>"
+msgstr ""
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id3150869\n"
+"2\n"
+"help.text"
+msgid "Filters and advanced filters allow you to work on certain filtered rows (records) of a data range. In the spreadsheets in $[officename] there are various possibilities for applying filters."
+msgstr ""
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id3155131\n"
+"3\n"
+"help.text"
+msgid "One use for the <emph>AutoFilter</emph> function is to quickly restrict the display to records with identical entries in a data field."
+msgstr ""
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id3146119\n"
+"4\n"
+"help.text"
+msgid "In the <emph>Standard Filter</emph> dialog, you can also define ranges which contain the values in particular data fields. You can use the standard filter to connect the conditions with either a logical AND or a logical OR operator."
+msgstr ""
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id3150010\n"
+"5\n"
+"help.text"
+msgid "The <emph>Advanced filter</emph> allows up to a total of eight filter conditions. With advanced filters you enter the conditions directly into the sheet."
+msgstr ""
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id9384746\n"
+"help.text"
+msgid "To remove a filter, so that you see all cells again, click inside the area where the filter was applied, then choose <item type=\"menuitem\">Data - Filter - Remove Filter</item>."
+msgstr ""
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_idN10663\n"
+"help.text"
+msgid "When you select multiple rows from an area where a filter was applied, then this selection can include rows that are visible and rows that are hidden by the filter. If you then apply formatting, or delete the selected rows, this action then applies only to the visible rows. The hidden rows are not affected."
+msgstr ""
+
+#: filters.xhp
+msgctxt ""
+"filters.xhp\n"
+"par_id218817\n"
+"help.text"
+msgid "This is the opposite to rows that you have hidden manually by the <emph>Format - Rows - Hide Rows</emph> command. Manually hidden rows are deleted when you delete a selection that contains them."
+msgstr ""
+
#: finding.xhp
msgctxt ""
"finding.xhp\n"
@@ -7185,7 +5307,7 @@ msgctxt ""
"par_id7214270\n"
"help.text"
msgid "Click <emph>More Options</emph> to expand the dialog."
-msgstr ""
+msgstr "Shiriti i opcioneve /Grafikat"
#: finding.xhp
msgctxt ""
@@ -7315,708 +5437,795 @@ msgctxt ""
msgid "Use the Navigator for inserting objects and links within the same document or from other open documents."
msgstr ""
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
+"format_table.xhp\n"
"tit\n"
"help.text"
-msgid "Instructions for Using $[officename] Calc"
-msgstr ""
+msgid "Formatting Spreadsheets"
+msgstr "Formatizimi i hyrjeve"
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"bm_id3150770\n"
+"format_table.xhp\n"
+"bm_id3154125\n"
"help.text"
-msgid "<bookmark_value>HowTos for Calc</bookmark_value><bookmark_value>instructions; $[officename] Calc</bookmark_value>"
+msgid "<bookmark_value>text in cells; formatting</bookmark_value><bookmark_value>spreadsheets;formatting</bookmark_value><bookmark_value>backgrounds;cells and pages</bookmark_value><bookmark_value>borders;cells and pages</bookmark_value><bookmark_value>formatting;spreadsheets</bookmark_value><bookmark_value>numbers; formatting options for selected cells</bookmark_value><bookmark_value>cells; number formats</bookmark_value><bookmark_value>currencies;formats</bookmark_value>"
msgstr ""
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3150770\n"
-"1\n"
+"format_table.xhp\n"
+"hd_id3154125\n"
+"6\n"
"help.text"
-msgid "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"Instructions for Using $[officename] Calc\">Instructions for Using $[officename] Calc</link></variable>"
+msgid "<variable id=\"format_table\"><link href=\"text/scalc/guide/format_table.xhp\" name=\"Designing Spreadsheets\">Formatting Spreadsheets</link></variable>"
msgstr ""
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3145748\n"
-"2\n"
+"format_table.xhp\n"
+"hd_id3153912\n"
+"13\n"
"help.text"
-msgid "Formatting Tables and Cells"
-msgstr "~Të gjitha Indekset dhe Tabelat"
+msgid "Formatting Text in a Spreadsheet"
+msgstr "Trego ndryshimet në tabelar"
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3154022\n"
-"3\n"
+"format_table.xhp\n"
+"par_id3144772\n"
+"14\n"
"help.text"
-msgid "Entering Values and Formulas"
-msgstr ""
+msgid "Select the text you want to format."
+msgstr "A dëshironi të kontrolloni tekstin kryesor?"
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3152899\n"
-"4\n"
+"format_table.xhp\n"
+"par_id3155268\n"
+"15\n"
"help.text"
-msgid "Entering References"
-msgstr "Shkruaj referencat"
+msgid "Choose the desired text attributes from the <emph>Formatting </emph>Bar. You can also choose <emph>Format - Cells</emph>. The <emph>Format Cells</emph> dialog will appear in which you can choose various text attributes on the <emph>Font</emph> tab page."
+msgstr ""
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3155382\n"
-"5\n"
+"format_table.xhp\n"
+"hd_id3149899\n"
+"16\n"
"help.text"
-msgid "Database Ranges in Tables"
-msgstr "Tabela \"#\" është e panjohur në databazë."
+msgid "Formatting Numbers in a Spreadsheet"
+msgstr "Trego ndryshimet në tabelar"
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3159229\n"
-"6\n"
+"format_table.xhp\n"
+"par_id3159226\n"
+"17\n"
"help.text"
-msgid "Advanced Calculations"
-msgstr "Parametrat e avancuar..."
+msgid "Select the cells containing the numbers you want to format."
+msgstr ""
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3153070\n"
-"7\n"
+"format_table.xhp\n"
+"par_id3150046\n"
+"18\n"
"help.text"
-msgid "Printing and Page Preview"
-msgstr "Shikim paraprak i faqes: faqe të shumëfishta"
+msgid "To format numbers in the default currency format or as percentages, use the icons on the <emph>Formatting </emph>Bar. For other formats, choose <emph>Format - Cells</emph>. You can choose from the preset formats or define your own on the <emph>Numbers</emph> tab page."
+msgstr ""
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3150437\n"
-"8\n"
+"format_table.xhp\n"
+"hd_id3153483\n"
+"19\n"
"help.text"
-msgid "Importing and Exporting Documents"
-msgstr "Korrespondenca personale dhe dokumentet"
+msgid "Formatting Borders and Backgrounds for Cells and Pages"
+msgstr ""
-#: main.xhp
+#: format_table.xhp
msgctxt ""
-"main.xhp\n"
-"hd_id3166464\n"
-"9\n"
+"format_table.xhp\n"
+"par_id3154733\n"
+"20\n"
"help.text"
-msgid "Miscellaneous"
-msgstr "Të ndryshme"
+msgid "You can assign a format to any group of cells by first selecting the cells (for multiple selection, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when clicking), and then activating the <emph>Format Cells</emph> dialog in <item type=\"menuitem\">Format - Cell</item>. In this dialog, you can select attributes such as shadows and backgrounds."
+msgstr ""
-#: validity.xhp
+#: format_table.xhp
msgctxt ""
-"validity.xhp\n"
-"tit\n"
+"format_table.xhp\n"
+"par_id3145116\n"
+"21\n"
"help.text"
-msgid "Validity of Cell Contents"
-msgstr "Tabela e përmbajtjeve të sllajdit"
+msgid "To apply formatting attributes to an entire sheet, choose <emph>Format - Page</emph>. You can define headers and footers, for example, to appear on each printed page."
+msgstr ""
-#: validity.xhp
+#: format_table.xhp
msgctxt ""
-"validity.xhp\n"
-"bm_id3156442\n"
+"format_table.xhp\n"
+"par_id3145389\n"
+"22\n"
"help.text"
-msgid "<bookmark_value>values; limiting on input</bookmark_value><bookmark_value>limits; specifying value limits on input</bookmark_value><bookmark_value>permitted cell contents</bookmark_value><bookmark_value>data validity</bookmark_value><bookmark_value>validity</bookmark_value><bookmark_value>cells; validity</bookmark_value><bookmark_value>error messages; defining for incorrect input</bookmark_value><bookmark_value>actions in case of incorrect input</bookmark_value><bookmark_value>Help tips; defining text for cell input</bookmark_value><bookmark_value>comments;help text for cells</bookmark_value><bookmark_value>cells; defining input help</bookmark_value><bookmark_value>macros; running when incorrect input</bookmark_value><bookmark_value>data; validity check</bookmark_value>"
+msgid "An image that you have loaded with <item type=\"menuitem\">Format - Page - Background</item> is only visible in print or in the page preview. To display a background image on screen as well, insert the graphic image by choosing <item type=\"menuitem\">Insert - Picture - From File</item> and arrange the image behind the cells by choosing <item type=\"menuitem\">Format - Arrange - To Background</item>. Use the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link> to select the background image."
msgstr ""
-#: validity.xhp
+#: format_table.xhp
msgctxt ""
-"validity.xhp\n"
-"hd_id3156442\n"
-"22\n"
+"format_table.xhp\n"
+"par_id2837916\n"
"help.text"
-msgid "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\" name=\"Validity of Cell Contents\">Validity of Cell Contents</link></variable>"
+msgid "<link href=\"text/shared/01/05020300.xhp\">Number Formatting Options</link>"
msgstr ""
-#: validity.xhp
+#: format_table.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3156283\n"
-"2\n"
+"format_table.xhp\n"
+"par_id2614215\n"
"help.text"
-msgid "For each cell, you can define entries to be valid. Invalid entries to a cell will be rejected."
+msgid "<link href=\"text/scalc/guide/background.xhp\">Backgrounds for Cells</link>"
msgstr ""
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3145252\n"
-"3\n"
+"format_value.xhp\n"
+"tit\n"
"help.text"
-msgid "The validity rule is activated when a new value is entered. If an invalid value has already been inserted into the cell, or if you insert a value in the cell either with drag-and-drop or by copying and pasting, the validity rule will not take effect."
+msgid "Formatting Numbers With Decimals"
+msgstr "Kontrollo fjalët me numra"
+
+#: format_value.xhp
+msgctxt ""
+"format_value.xhp\n"
+"bm_id3145367\n"
+"help.text"
+msgid "<bookmark_value>numbers;formatting decimals</bookmark_value> <bookmark_value>formats; numbers in tables</bookmark_value> <bookmark_value>tables; number formats</bookmark_value> <bookmark_value>defaults; number formats in spreadsheets</bookmark_value> <bookmark_value>decimal places;formatting numbers</bookmark_value> <bookmark_value>formatting;numbers with decimals</bookmark_value> <bookmark_value>formatting;adding/deleting decimal places</bookmark_value> <bookmark_value>number formats; adding/deleting decimal places in cells</bookmark_value> <bookmark_value>deleting; decimal places</bookmark_value> <bookmark_value>decimal places; adding/deleting</bookmark_value>"
msgstr ""
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id5174718\n"
+"format_value.xhp\n"
+"hd_id3145367\n"
+"4\n"
"help.text"
-msgid "You can choose <emph>Tools - Detective</emph> at any time and choose the command <link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\"><emph>Mark Invalid Data</emph></link> to display which cells contain invalid values."
+msgid "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\" name=\"Formatting Numbers With Decimals\">Formatting Numbers With Decimals</link></variable>"
msgstr ""
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"hd_id3155603\n"
+"format_value.xhp\n"
+"par_id3148576\n"
"5\n"
"help.text"
-msgid "Using Cell Contents Validity"
+msgid "Enter a number into the sheet, for example, 1234.5678. This number will be displayed in the default number format, with two decimal places. You will see 1234.57 when you confirm the entry. Only the display in the document will be rounded off; internally, the number retains all four decimal places after the decimal point."
msgstr ""
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3155959\n"
-"6\n"
+"format_value.xhp\n"
+"par_id3154012\n"
+"12\n"
"help.text"
-msgid "Select the cells for which you want to define a new validity rule."
+msgid "To format numbers with decimals:"
msgstr ""
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3148837\n"
-"8\n"
+"format_value.xhp\n"
+"par_id3147394\n"
+"6\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Data - Validity</item>."
-msgstr "Nuk mund ta hap fajllin $(URL1)."
+msgid "Set the cursor at the number and choose <emph>Format - Cells</emph> to start the <emph>Format Cells</emph> dialog."
+msgstr ""
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3156020\n"
+"format_value.xhp\n"
+"par_id3153157\n"
"9\n"
"help.text"
-msgid "On the <emph>Criteria</emph> tab page, enter the conditions for new values entered into cells."
+msgid "On the <emph>Numbers</emph> tab you will see a selection of predefined number formats. In the bottom right in the dialog you will see a preview of how your current number would look if you were to give it a particular format."
msgstr ""
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3159208\n"
-"10\n"
+"format_value.xhp\n"
+"par_id3155766\n"
"help.text"
-msgid "In the <emph>Allow</emph> field, select an option."
+msgid "<image id=\"img_id3149021\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149021\">Icon</alt></image>"
msgstr ""
-#: validity.xhp
+#: format_value.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3153011\n"
-"11\n"
+"format_value.xhp\n"
+"par_id3149256\n"
+"10\n"
"help.text"
-msgid "If you select \"Whole Numbers\", values such as \"12.5\" are not allowed. Choosing \"Date\" allows date information both in the local date format as well as in the form of a <link href=\"text/sbasic/shared/03030101.xhp\" name=\"serial date\">serial date</link>. Similarly, the \"Time\" condition permits time values such as \"12:00\" or serial time numbers. \"Text Length\" stipulates that cells are allowed to contain text only."
+msgid "If you only want to modify the number of the decimal places displayed, the easiest method is to use the <emph>Number Format: Add Decimal Place</emph> or <emph>Number Format: Delete Decimal Place</emph> icons on the Formatting Bar."
msgstr ""
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id9224829\n"
+"format_value_userdef.xhp\n"
+"tit\n"
"help.text"
-msgid "Select \"List\" to enter a list of valid entries."
-msgstr ""
+msgid "User-defined Number Formats"
+msgstr "Indeks i ri i përcaktuar nga shfrytëzuesi"
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3149317\n"
-"13\n"
+"format_value_userdef.xhp\n"
+"bm_id3143268\n"
"help.text"
-msgid "Select the next condition under <emph>Data</emph>. According to what you choose, additional options will be selectable."
+msgid "<bookmark_value>numbers;user-defined formatting</bookmark_value> <bookmark_value>formatting; user-defined numbers</bookmark_value> <bookmark_value>number formats; millions</bookmark_value> <bookmark_value>format codes; user-defined number formats</bookmark_value>"
msgstr ""
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3151389\n"
-"15\n"
+"format_value_userdef.xhp\n"
+"hd_id3143268\n"
+"26\n"
"help.text"
-msgid "After you have determined the conditions for cell validity, you can use the other two tab pages to create message boxes:"
+msgid "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\" name=\"User-defined Number Formats\">User-defined Number Formats</link></variable>"
msgstr ""
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3159261\n"
-"16\n"
+"format_value_userdef.xhp\n"
+"par_id3150400\n"
+"1\n"
"help.text"
-msgid "On the <emph>Input Help</emph> tab page, enter the title and the text of the tip, which will then be displayed if the cell is selected."
+msgid "You can define your own number formats to display numbers in <item type=\"productname\">%PRODUCTNAME</item> Calc."
msgstr ""
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3156396\n"
-"17\n"
+"format_value_userdef.xhp\n"
+"par_id3150767\n"
+"2\n"
"help.text"
-msgid "On the <emph>Error Alert</emph> tab page, select the action to be carried out in the event of an error."
+msgid "As an example, to display the number 10,200,000 as 10.2 Million:"
msgstr ""
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3147416\n"
-"18\n"
+"format_value_userdef.xhp\n"
+"par_id3150868\n"
+"3\n"
"help.text"
-msgid "If you select \"Stop\" as the action, invalid entries are not accepted, and the previous cell contents are retained."
+msgid "Select the cells to which you want to apply a new, user-defined format."
msgstr ""
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3150033\n"
-"19\n"
+"format_value_userdef.xhp\n"
+"par_id3149664\n"
+"4\n"
"help.text"
-msgid "Select \"Warning\" or \"Information\" to display a dialog in which the entry can either be canceled or accepted."
+msgid "Choose <emph>Format - Cells - Numbers</emph>."
msgstr ""
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3149947\n"
-"20\n"
+"format_value_userdef.xhp\n"
+"par_id3149260\n"
+"5\n"
"help.text"
-msgid "If you select \"Macro\", then by using the <emph>Browse</emph> button you can specify a macro to be run in the event of an error."
+msgid "In the <emph>Categories</emph> list box select \"User-defined\"."
msgstr ""
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3149011\n"
-"35\n"
+"format_value_userdef.xhp\n"
+"par_id3148646\n"
+"6\n"
"help.text"
-msgid "To display the error message, select <emph>Show error message when invalid values are entered</emph>."
+msgid "In the <emph>Format code</emph> text box enter the following code:"
msgstr ""
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3148586\n"
-"21\n"
+"format_value_userdef.xhp\n"
+"par_id3152596\n"
+"7\n"
"help.text"
-msgid "After changing the action for a cell on the <emph>Error Alert</emph> tab page and closing the dialog with OK, you must first select another cell before the change takes effect."
-msgstr ""
+msgid "0.0,, \"Million\""
+msgstr "Pamja 100%"
-#: validity.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"validity.xhp\n"
-"par_id3154805\n"
-"30\n"
+"format_value_userdef.xhp\n"
+"par_id3144764\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Data - Validity\">Data - Validity</link>"
-msgstr ""
+msgid "Click OK."
+msgstr "Kliko në objekt"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"tit\n"
+"format_value_userdef.xhp\n"
+"par_id3155417\n"
+"9\n"
"help.text"
-msgid "Defining Background Colors or Background Graphics"
+msgid "The following table shows the effects of rounding, thousands delimiters (,), decimal delimiters (.) and the placeholders # and 0."
msgstr ""
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"bm_id3149346\n"
+"format_value_userdef.xhp\n"
+"par_id3146971\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>spreadsheets; backgrounds</bookmark_value> <bookmark_value>backgrounds;cell ranges</bookmark_value> <bookmark_value>tables; backgrounds</bookmark_value> <bookmark_value>cells; backgrounds</bookmark_value> <bookmark_value>rows, see also cells</bookmark_value> <bookmark_value>columns, see also cells</bookmark_value>"
-msgstr ""
+msgid "Number"
+msgstr "Numri"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"hd_id3149346\n"
-"1\n"
+"format_value_userdef.xhp\n"
+"par_id3154757\n"
+"11\n"
"help.text"
-msgid "<variable id=\"background\"><link href=\"text/scalc/guide/background.xhp\" name=\"Defining Background Colors or Background Graphics\">Defining Background Colors or Background Graphics</link></variable>"
-msgstr ""
+msgid ".#,, \"Million\""
+msgstr "Pamja 100%"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id9520249\n"
+"format_value_userdef.xhp\n"
+"par_id3147338\n"
+"12\n"
"help.text"
-msgid "You can define a background color or use a graphic as a background for cell ranges in $[officename] Calc."
+msgid "0.0,, \"Million\""
+msgstr "Pamja 100%"
+
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3146920\n"
+"13\n"
+"help.text"
+msgid "#,, \"Million\""
+msgstr "Pamja 100%"
+
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3147344\n"
+"14\n"
+"help.text"
+msgid "10200000"
msgstr ""
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"hd_id3144760\n"
+"format_value_userdef.xhp\n"
+"par_id3147003\n"
+"15\n"
+"help.text"
+msgid "10.2 Million"
+msgstr "Titullimi 10"
+
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3166426\n"
"16\n"
"help.text"
-msgid "Applying a Background Color to a $[officename] Calc Spreadsheet"
-msgstr ""
+msgid "10.2 Million"
+msgstr "Titullimi 10"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3155429\n"
+"format_value_userdef.xhp\n"
+"par_id3155113\n"
"17\n"
"help.text"
-msgid "Select the cells."
-msgstr "Bashko qelizat"
+msgid "10 Million"
+msgstr "Titullimi 10"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3149260\n"
+"format_value_userdef.xhp\n"
+"par_id3150369\n"
"18\n"
"help.text"
-msgid "Choose <emph>Format - Cells</emph> (or <emph>Format Cells</emph> from the context menu)."
+msgid "500000"
msgstr ""
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3152938\n"
+"format_value_userdef.xhp\n"
+"par_id3145585\n"
"19\n"
"help.text"
-msgid "On the <emph>Background</emph> tab page, select the background color."
-msgstr ""
+msgid ".5 Million"
+msgstr "Titullimi 10"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"hd_id3146974\n"
+"format_value_userdef.xhp\n"
+"par_id3154486\n"
"20\n"
"help.text"
-msgid "Graphics in the Background of Cells"
-msgstr "Numron qelitë e zbrazëta në një interval të caktuar."
+msgid "0.5 Million"
+msgstr "Titullimi 10"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3155414\n"
+"format_value_userdef.xhp\n"
+"par_id3146114\n"
"21\n"
"help.text"
-msgid "Choose <emph>Insert - Picture - From File</emph>."
-msgstr ""
+msgid "1 Million"
+msgstr "Titullimi 10"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3149664\n"
+"format_value_userdef.xhp\n"
+"par_id3155810\n"
"22\n"
"help.text"
-msgid "Select the graphic and click <emph>Open</emph>."
+msgid "100000000"
msgstr ""
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3153575\n"
+"format_value_userdef.xhp\n"
+"par_id3153818\n"
"23\n"
"help.text"
-msgid "The graphic is inserted anchored to the current cell. You can move and scale the graphic as you want. In your context menu you can use the <emph>Arrange - To Background</emph> command to place this in the background. To select a graphic that has been placed in the background, use the <switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link></caseinline><defaultinline>Navigator</defaultinline></switchinline>."
-msgstr ""
+msgid "100. Million"
+msgstr "Pamja 100%"
-#: background.xhp
+#: format_value_userdef.xhp
msgctxt ""
-"background.xhp\n"
-"par_id51576\n"
+"format_value_userdef.xhp\n"
+"par_id3151241\n"
+"24\n"
"help.text"
-msgid "<link href=\"text/shared/guide/background.xhp\">Watermarks</link>"
+msgid "100.0 Million"
+msgstr "Pamja 100%"
+
+#: format_value_userdef.xhp
+msgctxt ""
+"format_value_userdef.xhp\n"
+"par_id3144771\n"
+"25\n"
+"help.text"
+msgid "100 Million"
+msgstr "Pamja 100%"
+
+#: formula_copy.xhp
+msgctxt ""
+"formula_copy.xhp\n"
+"tit\n"
+"help.text"
+msgid "Copying Formulas"
+msgstr "Duke kopjuar ndarjen..."
+
+#: formula_copy.xhp
+msgctxt ""
+"formula_copy.xhp\n"
+"bm_id3151113\n"
+"help.text"
+msgid "<bookmark_value>formulas; copying and pasting</bookmark_value><bookmark_value>copying; formulas</bookmark_value><bookmark_value>pasting;formulas</bookmark_value>"
msgstr ""
-#: background.xhp
+#: formula_copy.xhp
msgctxt ""
-"background.xhp\n"
-"par_id3156180\n"
-"30\n"
+"formula_copy.xhp\n"
+"hd_id3151113\n"
+"54\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background tab page\"><emph>Background</emph> tab page</link>"
+msgid "<variable id=\"formula_copy\"><link href=\"text/scalc/guide/formula_copy.xhp\" name=\"Copying Formulas\">Copying Formulas</link></variable>"
msgstr ""
-#: background.xhp
+#: formula_copy.xhp
msgctxt ""
-"background.xhp\n"
-"par_id7601245\n"
+"formula_copy.xhp\n"
+"par_id3156424\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/scalc/guide/format_table.xhp\">Formatting Spreadsheets</link>"
+msgid "There are various ways to copy a formula. One suggested method is:"
msgstr ""
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"tit\n"
+"formula_copy.xhp\n"
+"par_id3150439\n"
+"30\n"
"help.text"
-msgid "Text Superscript / Subscript"
-msgstr "Shiriti i Objektit Tekst"
+msgid "Select the cell containing the formula."
+msgstr "Qelia duhet të përmbajë një formulë."
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"bm_id3151112\n"
+"formula_copy.xhp\n"
+"par_id3154319\n"
+"31\n"
"help.text"
-msgid "<bookmark_value>superscript text in cells</bookmark_value><bookmark_value>subscript text in cells</bookmark_value><bookmark_value>cells; text super/sub</bookmark_value><bookmark_value>characters;superscript/subscript</bookmark_value>"
+msgid "Choose <emph>Edit - Copy</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C to copy it."
msgstr ""
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"hd_id3151112\n"
-"1\n"
+"formula_copy.xhp\n"
+"par_id3159155\n"
+"32\n"
"help.text"
-msgid "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_subscript.xhp\" name=\"Text Superscript / Subscript\">Text Superscript / Subscript</link></variable>"
+msgid "Select the cell into which you want the formula to be copied."
msgstr ""
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"par_id3154684\n"
-"2\n"
+"formula_copy.xhp\n"
+"par_id3153728\n"
+"33\n"
"help.text"
-msgid "In the cell, select the character that you want to put in superscript or subscript."
+msgid "Choose <emph>Edit - Paste</emph>, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V. The formula will be positioned in the new cell."
msgstr ""
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"par_id3150439\n"
-"3\n"
+"formula_copy.xhp\n"
+"par_id3149961\n"
+"34\n"
"help.text"
-msgid "If, for example, you want to write H20 with a subscript 2, select the 2 in the cell (not in the input line)."
+msgid "If you want to copy a formula into multiple cells, there is a quick and easy way to copy into adjacent cell areas:"
msgstr ""
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"par_id3149260\n"
-"4\n"
+"formula_copy.xhp\n"
+"par_id3149400\n"
+"12\n"
"help.text"
-msgid "Open the context menu for the selected character and choose <emph>Character</emph>. You will see the <emph>Character</emph> dialog."
+msgid "Select the cell containing the formula."
+msgstr "Qelia duhet të përmbajë një formulë."
+
+#: formula_copy.xhp
+msgctxt ""
+"formula_copy.xhp\n"
+"par_id3154018\n"
+"13\n"
+"help.text"
+msgid "Position the mouse on the bottom right of the highlighted border of the cell, and continue holding down the mouse button until the pointer changes to a cross-hair symbol."
msgstr ""
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"par_id3153142\n"
-"5\n"
+"formula_copy.xhp\n"
+"par_id3150749\n"
+"14\n"
"help.text"
-msgid "Click the <emph>Font Position</emph> tab."
+msgid "With the mouse button pressed, drag it down or to the right over all the cells into which you want to copy the formula."
msgstr ""
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"par_id3153954\n"
-"6\n"
+"formula_copy.xhp\n"
+"par_id3153714\n"
+"15\n"
"help.text"
-msgid "Select the <emph>Subscript</emph> option and click OK."
+msgid "When you release the mouse button, the formula will be copied into the cells and automatically adjusted."
msgstr ""
-#: super_subscript.xhp
+#: formula_copy.xhp
msgctxt ""
-"super_subscript.xhp\n"
-"par_id3153876\n"
-"7\n"
+"formula_copy.xhp\n"
+"par_id3156385\n"
+"53\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Context menu - Character - Font Position\">Context menu - Character - Font Position</link>"
+msgid "If you do not want values and texts to be automatically adjusted, then hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key when dragging. Formulas, however, are always adjusted accordingly."
msgstr ""
-#: datapilot_createtable.xhp
-#, fuzzy
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
+"formula_enter.xhp\n"
"tit\n"
"help.text"
-msgid "Creating Pivot Tables"
-msgstr "DataPilot tabelat nuk mund të mbulojnë njëra tjetrën."
+msgid "Entering Formulas"
+msgstr "Formulat nuk formojnë një shtyllë."
-#: datapilot_createtable.xhp
-#, fuzzy
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"bm_id3148491\n"
+"formula_enter.xhp\n"
+"bm_id3150868\n"
"help.text"
-msgid "<bookmark_value>pivot tables</bookmark_value> <bookmark_value>pivot table function; calling up and applying</bookmark_value>"
-msgstr "Shndërron një vlerë në tekst."
+msgid "<bookmark_value>formula bar; input line</bookmark_value><bookmark_value>input line in formula bar</bookmark_value><bookmark_value>formulas; inputting</bookmark_value><bookmark_value>inserting;formulas</bookmark_value>"
+msgstr ""
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"hd_id3148491\n"
-"7\n"
+"formula_enter.xhp\n"
+"hd_id3150868\n"
+"9\n"
"help.text"
-msgid "<variable id=\"datapilot_createtable\"><link href=\"text/scalc/guide/datapilot_createtable.xhp\" name=\"Creating Pivot Tables\">Creating Pivot Tables</link></variable>"
+msgid "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\" name=\"Entering Formulas\">Entering Formulas</link></variable>"
msgstr ""
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3156023\n"
-"8\n"
+"formula_enter.xhp\n"
+"par_id6848353\n"
"help.text"
-msgid "Position the cursor within a range of cells containing values, row and column headings."
+msgid "You can enter formulas in several ways: using the icons, or by typing on the keyboard, or by a mixture of both methods."
msgstr ""
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3147264\n"
-"9\n"
+"formula_enter.xhp\n"
+"par_id3145364\n"
+"10\n"
"help.text"
-msgid "Choose <emph>Data - Pivot Table - Create</emph>. The <emph>Select Source</emph> dialog appears. Choose <emph>Current selection</emph> and confirm with <emph>OK</emph>. The table headings are shown as buttons in the <emph>Pivot Table</emph> dialog. Drag these buttons as required and drop them into the layout areas \"Page Fields\", \"Column Fields\", \"Row Fields\" and \"Data Fields\"."
+msgid "Click the cell in which you want to enter the formula."
msgstr ""
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3150868\n"
-"10\n"
+"formula_enter.xhp\n"
+"par_id3150012\n"
+"11\n"
"help.text"
-msgid "Drag the desired buttons into one of the four areas."
+msgid "Click the <emph>Function</emph> icon on the Formula Bar."
msgstr ""
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id7599414\n"
+"formula_enter.xhp\n"
+"par_id3156441\n"
+"12\n"
"help.text"
-msgid "Drag a button to the <emph>Page Fields</emph> area to create a button and a listbox on top of the generated pivot table. The listbox can be used to filter the pivot table by the contents of the selected item. You can use drag-and-drop within the generated pivot table to use another page field as a filter."
+msgid "You will now see an equals sign in the input line and you can begin to input the formula."
msgstr ""
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3154011\n"
-"11\n"
+"formula_enter.xhp\n"
+"par_id3153726\n"
+"3\n"
"help.text"
-msgid "If the button is dropped in the <emph>Data Fields</emph> area it will be given a caption that also shows the formula that will be used to calculate the data."
+msgid "After entering the required values, press Enter or click <emph>Accept</emph> to insert the result in the active cell. If you want to clear your entry in the input line, press Escape or click <emph>Cancel</emph>."
msgstr ""
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3146974\n"
-"16\n"
+"formula_enter.xhp\n"
+"par_id3147394\n"
+"8\n"
"help.text"
-msgid "By double-clicking on one of the fields in the <emph>Data Fields</emph> area you can call up the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog."
+msgid "You can also enter the values and the formulas directly into the cells, even if you cannot see an input cursor. Formulas must always begin with an equals sign."
msgstr ""
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3156286\n"
-"17\n"
+"formula_enter.xhp\n"
+"par_id4206976\n"
"help.text"
-msgid "Use the <item type=\"menuitem\">Data Field</item> dialog to select the calculations to be used for the data. To make a multiple selection, press the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key while clicking the desired calculation."
+msgid "You can also press the + or - key on the numerical keyboard to start a formula. NumLock must be \"on\". For example, press the following keys in succession:"
msgstr ""
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3150329\n"
-"13\n"
+"formula_enter.xhp\n"
+"par_id1836909\n"
"help.text"
-msgid "The order of the buttons can be changed at any time by moving them to a different position in the area with the mouse."
+msgid "+ 5 0 - 8 Enter"
+msgstr "Qendër"
+
+#: formula_enter.xhp
+msgctxt ""
+"formula_enter.xhp\n"
+"par_id8171330\n"
+"help.text"
+msgid "You see the result <item type=\"literal\">42</item> in the cell. The cell contains the formula <item type=\"literal\">=+50-8</item>."
msgstr ""
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3153714\n"
-"14\n"
+"formula_enter.xhp\n"
+"par_id3155764\n"
+"6\n"
"help.text"
-msgid "Remove a button by dragging it back to the area of the other buttons at the right of the dialog."
+msgid "If you are editing a formula with references, the references and the associated cells will be highlighted with the same color. You can now resize the reference border using the mouse, and the reference in the formula displayed in the input line also changes. <emph>Show references in color</emph> can be deactivated under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>."
msgstr ""
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3147338\n"
-"15\n"
+"formula_enter.xhp\n"
+"par_id3149210\n"
+"7\n"
"help.text"
-msgid "To open the <link href=\"text/scalc/01/12090105.xhp\" name=\"Data Field\"><emph>Data Field</emph></link> dialog, double-click one of the buttons in the <emph>Row Fields</emph> or <emph>Column Fields</emph> area. Use the dialog to select if and to what extent <item type=\"productname\">%PRODUCTNAME</item> calculates display subtotals."
+msgid "<variable id=\"tip\">If you would like to view the calculation of individual elements of a formula, select the respective elements and press F9. For example, in the formula =SUM(A1:B12)*SUM(C1:D12) select the section SUM(C1:D12) and press F9 to view the subtotal for this area. </variable>"
msgstr ""
-#: datapilot_createtable.xhp
+#: formula_enter.xhp
msgctxt ""
-"datapilot_createtable.xhp\n"
-"par_id3154020\n"
-"18\n"
+"formula_enter.xhp\n"
+"par_id3150304\n"
+"5\n"
"help.text"
-msgid "Exit the Pivot Table dialog by pressing OK. A <emph>Filter</emph> button will now be inserted, or a page button for every data field that you dropped in the <emph>Page Fields</emph> area. The pivot table is inserted further down."
+msgid "If an error occurs when creating the formula, an <link href=\"text/scalc/05/02140000.xhp\" name=\"error message\">error message</link> appears in the active cell."
msgstr ""
-#: text_wrap.xhp
+#: formula_enter.xhp
msgctxt ""
-"text_wrap.xhp\n"
+"formula_enter.xhp\n"
+"par_id3152993\n"
+"13\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula bar\">Formula bar</link>"
+msgstr ""
+
+#: formula_value.xhp
+msgctxt ""
+"formula_value.xhp\n"
"tit\n"
"help.text"
-msgid "Writing Multi-line Text"
-msgstr "Teksti u rreshtua në rreshtin bazament"
+msgid "Displaying Formulas or Values"
+msgstr ""
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"bm_id3154346\n"
+"formula_value.xhp\n"
+"bm_id3153195\n"
"help.text"
-msgid "<bookmark_value>text in cells; multi-line</bookmark_value><bookmark_value>cells; text breaks</bookmark_value><bookmark_value>breaks in cells</bookmark_value><bookmark_value>multi-line text in cells</bookmark_value>"
+msgid "<bookmark_value>formulas; displaying in cells</bookmark_value><bookmark_value>values; displaying in tables</bookmark_value><bookmark_value>tables; displaying formulas/values</bookmark_value><bookmark_value>results display vs. formulas display</bookmark_value><bookmark_value>displaying; formulas instead of results</bookmark_value>"
msgstr ""
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"hd_id3154346\n"
-"42\n"
+"formula_value.xhp\n"
+"hd_id3153195\n"
+"1\n"
"help.text"
-msgid "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\" name=\"Writing Multi-line Text\">Writing Multi-line Text</link></variable>"
+msgid "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\" name=\"Displaying Formulas or Values\">Displaying Formulas or Values</link></variable>"
msgstr ""
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"par_id3156280\n"
-"41\n"
+"formula_value.xhp\n"
+"par_id3150010\n"
+"2\n"
"help.text"
-msgid "Pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter keys inserts a manual line break. This shortcut only works directly in the cell, not in the input line."
+msgid "If you want to display the formulas in the cells, for example in the form =SUM(A1:B5), proceed as follows:"
msgstr ""
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"par_id3153142\n"
-"43\n"
+"formula_value.xhp\n"
+"par_id3151116\n"
+"3\n"
"help.text"
-msgid "If you want the text to automatically break at the right border of the cell, proceed as follows:"
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph>."
msgstr ""
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"par_id3153951\n"
-"44\n"
+"formula_value.xhp\n"
+"par_id3146120\n"
+"4\n"
"help.text"
-msgid "Select all the cells where you want the text to break at the right border."
+msgid "In the <emph>Display</emph> area mark the <emph>Formulas</emph> box. Click OK."
msgstr ""
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"par_id3148575\n"
-"45\n"
+"formula_value.xhp\n"
+"par_id3147396\n"
+"5\n"
"help.text"
-msgid "In <emph>Format - Cells - Alignment</emph>, mark the <emph>Wrap text automatically</emph> option and click OK."
+msgid "If you want to view the calculation results instead of the formula, do not mark the Formulas box."
msgstr ""
-#: text_wrap.xhp
+#: formula_value.xhp
msgctxt ""
-"text_wrap.xhp\n"
-"par_id3145799\n"
-"46\n"
+"formula_value.xhp\n"
+"par_id3153157\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cell\">Format - Cell</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
msgstr ""
#: formulas.xhp
@@ -8028,7 +6237,6 @@ msgid "Calculating With Formulas"
msgstr "Pamja më e mirë me"
#: formulas.xhp
-#, fuzzy
msgctxt ""
"formulas.xhp\n"
"bm_id3155411\n"
@@ -8234,1478 +6442,2474 @@ msgctxt ""
msgid "<link href=\"text/scalc/01/04060000.xhp\" name=\"AutoPilot: Functions\">Function Wizard</link>"
msgstr ""
-#: rename_table.xhp
+#: fraction_enter.xhp
msgctxt ""
-"rename_table.xhp\n"
+"fraction_enter.xhp\n"
"tit\n"
"help.text"
-msgid "Renaming Sheets"
-msgstr "Selekto Fletët"
+msgid "Entering Fractions"
+msgstr ""
-#: rename_table.xhp
+#: fraction_enter.xhp
msgctxt ""
-"rename_table.xhp\n"
-"bm_id3150398\n"
+"fraction_enter.xhp\n"
+"bm_id3155411\n"
"help.text"
-msgid "<bookmark_value>renaming;sheets</bookmark_value> <bookmark_value>sheet tabs;renaming</bookmark_value> <bookmark_value>tables;renaming</bookmark_value> <bookmark_value>names; sheets</bookmark_value>"
+msgid "<bookmark_value>fractions; entering</bookmark_value><bookmark_value>numbers; entering fractions </bookmark_value><bookmark_value>inserting;fractions</bookmark_value>"
msgstr ""
-#: rename_table.xhp
+#: fraction_enter.xhp
msgctxt ""
-"rename_table.xhp\n"
-"hd_id3150398\n"
-"11\n"
+"fraction_enter.xhp\n"
+"hd_id3155411\n"
+"41\n"
"help.text"
-msgid "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\" name=\"Renaming Sheets\">Renaming Sheets</link></variable>"
+msgid "<variable id=\"fraction_enter\"><link href=\"text/scalc/guide/fraction_enter.xhp\" name=\"Entering Fractions \">Entering Fractions </link></variable>"
msgstr ""
-#: rename_table.xhp
+#: fraction_enter.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id3155131\n"
-"12\n"
+"fraction_enter.xhp\n"
+"par_id3153968\n"
+"40\n"
"help.text"
-msgid "Click the name of the sheet that you want to change."
+msgid "You can enter a fractional number in a cell and use it for calculation:"
msgstr ""
-#: rename_table.xhp
+#: fraction_enter.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id3146976\n"
-"13\n"
+"fraction_enter.xhp\n"
+"par_id3155133\n"
+"42\n"
"help.text"
-msgid "Open the context menu and choose the <emph>Rename Sheet</emph> command. A dialog box appears where you can enter a new name."
+msgid "Enter \"0 1/5\" in a cell (without the quotation marks) and press the input key. In the input line above the spreadsheet you will see the value 0.2, which is used for the calculation."
msgstr ""
-#: rename_table.xhp
+#: fraction_enter.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id3149260\n"
+"fraction_enter.xhp\n"
+"par_id3145750\n"
+"43\n"
+"help.text"
+msgid "If you enter \"0 1/2\" AutoCorrect causes the three characters 1, / and 2 to be replaced by a single character. The same applies to 1/4 and 3/4. This replacement is defined in <emph>Tools - AutoCorrect Options - Options</emph> tab."
+msgstr ""
+
+#: fraction_enter.xhp
+msgctxt ""
+"fraction_enter.xhp\n"
+"par_id3145367\n"
+"44\n"
+"help.text"
+msgid "If you want to see multi-digit fractions such as \"1/10\", you must change the cell format to the multi-digit fraction view. Open the context menu of the cell, and choose <emph>Format cells. </emph>Select \"Fraction\" from the <emph>Category</emph> field, and then select \"-1234 10/81\". You can then enter fractions such as 12/31 or 12/32 - the fractions are, however, automatically reduced, so that in the last example you would see 3/8."
+msgstr ""
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"tit\n"
+"help.text"
+msgid "Applying Goal Seek"
+msgstr "Aktivizo Kërkuesin e Qëllimit"
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"bm_id3145068\n"
+"help.text"
+msgid "<bookmark_value>goal seeking;example</bookmark_value><bookmark_value>equations in goal seek</bookmark_value><bookmark_value>calculating;variables in equations</bookmark_value><bookmark_value>variables;calculating equations</bookmark_value><bookmark_value>examples;goal seek</bookmark_value>"
+msgstr ""
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"hd_id3145068\n"
+"22\n"
+"help.text"
+msgid "<variable id=\"goalseek\"><link href=\"text/scalc/guide/goalseek.xhp\" name=\"Applying Goal Seek\">Applying Goal Seek</link></variable>"
+msgstr ""
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3145171\n"
+"2\n"
+"help.text"
+msgid "With the help of Goal Seek you can calculate a value that, as part of a formula, leads to the result you specify for the formula. You thus define the formula with several fixed values and one variable value and the result of the formula."
+msgstr ""
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"hd_id3153966\n"
+"14\n"
+"help.text"
+msgid "Goal Seek Example"
+msgstr "Aktivizo Kërkuesin e Qëllimit"
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3150871\n"
+"4\n"
+"help.text"
+msgid "To calculate annual interest (I), create a table with the values for the capital (C), number of years (n), and interest rate (i). The formula is:"
+msgstr ""
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3152596\n"
+"5\n"
+"help.text"
+msgid "I = C * n* i"
+msgstr ""
+
+#: goalseek.xhp
+msgctxt ""
+"goalseek.xhp\n"
+"par_id3155335\n"
"15\n"
"help.text"
-msgid "Enter a new name for the sheet and click <emph>OK</emph>."
+msgid "Let us assume that the interest rate <item type=\"literal\">i</item> of 7.5% and the number of years <item type=\"literal\">n</item> (1) will remain constant. However, you want to know how much the investment capital <item type=\"literal\">C</item> would have to be modified in order to attain a particular return <item type=\"literal\">I</item>. For this example, calculate how much capital <item type=\"literal\">C</item> would be required if you want an annual return of $15,000."
msgstr ""
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id3149667\n"
-"27\n"
+"goalseek.xhp\n"
+"par_id3155960\n"
+"6\n"
"help.text"
-msgid "Alternatively, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key</defaultinline></switchinline> and click on any sheet name and enter the new name directly."
+msgid "Enter each of the values for Capital <item type=\"literal\">C</item> (an arbitrary value like <item type=\"literal\">$100,000</item>), number of years <item type=\"literal\">n </item>(<item type=\"literal\">1</item>), and interest rate <item type=\"literal\">i</item> (<item type=\"literal\">7.5%</item>) in one cell each. Enter the formula to calculate the interest <item type=\"literal\">I</item> in another cell. Instead of <item type=\"literal\">C</item>, <item type=\"literal\">n</item>, and <item type=\"literal\">i</item> use the <link href=\"text/scalc/guide/relativ_absolut_ref.xhp\">reference to the cell</link> with the corresponding value."
msgstr ""
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810502833\n"
+"goalseek.xhp\n"
+"par_id3147001\n"
+"16\n"
"help.text"
-msgid "Sheet names can contain almost any character. Some naming restrictions apply when you want to save the spreadsheet to Microsoft Excel format."
+msgid "Place the cursor in the cell containing the interest <item type=\"literal\">I</item>, and choose <emph>Tools - Goal Seek</emph>. The <emph>Goal Seek</emph> dialog appears."
msgstr ""
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id090920081050283\n"
+"goalseek.xhp\n"
+"par_id3150088\n"
+"17\n"
"help.text"
-msgid "When saving to Microsoft Excel format, the following characters are not allowed in sheet names:"
+msgid "The correct cell is already entered in the field <emph>Formula Cell</emph>."
msgstr ""
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id090920081050281\n"
+"goalseek.xhp\n"
+"par_id3166426\n"
+"18\n"
"help.text"
-msgid "colon :"
+msgid "Place the cursor in the field <emph>Variable Cell</emph>. In the sheet, click in the cell that contains the value to be changed, in this example it is the cell with the capital value <item type=\"literal\">C</item>."
msgstr ""
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810502897\n"
+"goalseek.xhp\n"
+"par_id3150369\n"
+"19\n"
"help.text"
-msgid "back slash \\"
-msgstr "Pjesëtim (/)"
+msgid "Enter the expected result of the formula in the <emph>Target Value</emph> text box. In this example, the value is 15,000. Click <emph>OK</emph>."
+msgstr ""
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id090920081050299\n"
+"goalseek.xhp\n"
+"par_id3146978\n"
+"20\n"
"help.text"
-msgid "forward slash /"
-msgstr "Pjesëtim (/)"
+msgid "A dialog appears informing you that the Goal Seek was successful. Click <emph>Yes</emph> to enter the result in the cell with the variable value."
+msgstr ""
-#: rename_table.xhp
+#: goalseek.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810502913\n"
+"goalseek.xhp\n"
+"par_id3149409\n"
+"23\n"
"help.text"
-msgid "question mark ?"
-msgstr "Shenjë piksimi"
+msgid "<link href=\"text/scalc/01/06040000.xhp\" name=\"Goal Seek\">Goal Seek</link>"
+msgstr ""
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id090920081050298\n"
+"html_doc.xhp\n"
+"tit\n"
"help.text"
-msgid "asterisk *"
+msgid "Saving and Opening Sheets in HTML"
msgstr ""
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810502969\n"
+"html_doc.xhp\n"
+"bm_id3150542\n"
"help.text"
-msgid "left square bracket ["
-msgstr "Kllapa të mesme të dyfishta"
+msgid "<bookmark_value>HTML; sheets</bookmark_value><bookmark_value>sheets; HTML</bookmark_value><bookmark_value>saving; sheets in HTML</bookmark_value><bookmark_value>opening; sheets in HTML</bookmark_value>"
+msgstr ""
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810502910\n"
+"html_doc.xhp\n"
+"hd_id3150542\n"
+"1\n"
"help.text"
-msgid "right square bracket ]"
-msgstr "Kllapa të mesme të dyfishta"
+msgid "<variable id=\"html_doc\"><link href=\"text/scalc/guide/html_doc.xhp\" name=\"Saving and Opening Sheets in HTML\">Saving and Opening Sheets in HTML</link></variable>"
+msgstr ""
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810502971\n"
+"html_doc.xhp\n"
+"hd_id3154124\n"
+"2\n"
"help.text"
-msgid "single quote ' as the first or last character of the name"
+msgid "Saving Sheets in HTML"
msgstr ""
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id090920081050307\n"
+"html_doc.xhp\n"
+"par_id3145785\n"
+"3\n"
"help.text"
-msgid "In cell references, a sheet name has to be enclosed in single quotes ' if the name contains other characters than alphanumeric or underscore. A single quote contained within a name has to be escaped by doubling it (two single quotes). For example, you want to reference the cell A1 on a sheet with the following name:"
+msgid "<item type=\"productname\">%PRODUCTNAME</item> Calc saves all the sheets of a Calc document together as an HTML document. At the beginning of the HTML document, a heading and a list of hyperlinks are automatically added which lead to the individual sheets within the document."
msgstr ""
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810503071\n"
+"html_doc.xhp\n"
+"par_id3155854\n"
+"4\n"
"help.text"
-msgid "This year's sheet"
-msgstr "Deri në faqen tjetër"
+msgid "Numbers are shown as written. In addition, in the <SDVAL> HTML tag, the exact internal number value is written so that after opening the HTML document with <item type=\"productname\">%PRODUCTNAME</item> you know you have the exact values."
+msgstr ""
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810503054\n"
+"html_doc.xhp\n"
+"par_id3153188\n"
+"5\n"
"help.text"
-msgid "The reference must be enclosed in single quotes, and the one single quote inside the name must be doubled:"
+msgid "To save the current Calc document as HTML, choose <emph>File - Save As</emph>."
msgstr ""
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id0909200810503069\n"
+"html_doc.xhp\n"
+"par_id3148645\n"
+"6\n"
"help.text"
-msgid "'This year''s sheet'.A1"
-msgstr "Kontrollimi i drejtëshkrimit të kësaj flete është përfunduar."
+msgid "In the <emph>File type</emph> list box, in the area with the other <item type=\"productname\">%PRODUCTNAME</item> Calc filters, choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\"."
+msgstr ""
-#: rename_table.xhp
+#: html_doc.xhp
msgctxt ""
-"rename_table.xhp\n"
-"par_id3155444\n"
+"html_doc.xhp\n"
+"par_id3154729\n"
+"7\n"
+"help.text"
+msgid "Enter a <emph>File name</emph> and click <emph>Save</emph>."
+msgstr ""
+
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"hd_id3149379\n"
+"8\n"
+"help.text"
+msgid "Opening Sheets in HTML"
+msgstr ""
+
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3149959\n"
+"10\n"
+"help.text"
+msgid "<item type=\"productname\">%PRODUCTNAME</item> offers various filters for opening HTML files, which you can select under <emph>File - Open</emph> in the <emph>Files of type</emph> list box:"
+msgstr ""
+
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3146969\n"
+"15\n"
+"help.text"
+msgid "Choose the file type \"HTML Document (<item type=\"productname\">%PRODUCTNAME</item> Calc)\" to open in <item type=\"productname\">%PRODUCTNAME</item> Calc."
+msgstr ""
+
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3155446\n"
"16\n"
"help.text"
-msgid "The name of a sheet is independent of the name of the spreadsheet. You enter the spreadsheet name when you save it for the first time as a file. The document can contain up to 256 individual sheets, which can have different names."
+msgid "All <item type=\"productname\">%PRODUCTNAME</item> Calc options are now available to you. However, not all options that <item type=\"productname\">%PRODUCTNAME</item> Calc offers for editing can be saved in HTML format."
msgstr ""
-#: datapilot_tipps.xhp
-#, fuzzy
+#: html_doc.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
+"html_doc.xhp\n"
+"par_id3150370\n"
+"17\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"File - Open\">File - Open</link>"
+msgstr ""
+
+#: html_doc.xhp
+msgctxt ""
+"html_doc.xhp\n"
+"par_id3150199\n"
+"18\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"File - Save As\">File - Save As</link>"
+msgstr ""
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
"tit\n"
"help.text"
-msgid "Selecting Pivot Table Output Ranges"
-msgstr "DataPilot tabelat nuk mund të mbulojnë njëra tjetrën."
+msgid "Entering a Number with Leading Zeros"
+msgstr ""
-#: datapilot_tipps.xhp
-#, fuzzy
+#: integer_leading_zero.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
-"bm_id3148663\n"
+"integer_leading_zero.xhp\n"
+"bm_id3147560\n"
"help.text"
-msgid "<bookmark_value>pivot table function; preventing data overwriting</bookmark_value><bookmark_value>output ranges of pivot tables</bookmark_value>"
-msgstr "Shndërron një vlerë në tekst."
+msgid "<bookmark_value>zero values; entering leading zeros</bookmark_value> <bookmark_value>numbers; with leading zeros</bookmark_value> <bookmark_value>leading zeros</bookmark_value> <bookmark_value>integers with leading zeros</bookmark_value> <bookmark_value>cells; changing text/number formats</bookmark_value> <bookmark_value>formats; changing text/number</bookmark_value> <bookmark_value>text in cells; changing to numbers</bookmark_value> <bookmark_value>converting;text with leading zeros, into numbers</bookmark_value>"
+msgstr ""
-#: datapilot_tipps.xhp
+#: integer_leading_zero.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
-"hd_id3148663\n"
+"integer_leading_zero.xhp\n"
+"hd_id3147560\n"
+"67\n"
+"help.text"
+msgid "<variable id=\"integer_leading_zero\"><link href=\"text/scalc/guide/integer_leading_zero.xhp\" name=\"Entering a Number with Leading Zeros\">Entering a Number with Leading Zeros</link></variable>"
+msgstr ""
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3153194\n"
+"55\n"
+"help.text"
+msgid "There are various ways to enter integers starting with a zero:"
+msgstr ""
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3146119\n"
+"56\n"
+"help.text"
+msgid "Enter the number as text. The easiest way is to enter the number starting with an apostrophe (for example, <item type=\"input\">'0987</item>). The apostrophe will not appear in the cell, and the number will be formatted as text. Because it is in text format, however, you cannot calculate with this number."
+msgstr ""
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3154013\n"
+"57\n"
+"help.text"
+msgid "Format a cell with a number format such as <item type=\"input\">\\0000</item>. This format can be assigned in the <emph>Format code</emph> field under the <emph>Format - Cells - Numbers</emph> tab, and defines the cell display as \"always put a zero first and then the integer, having at least three places, and filled with zeros at the left if less than three digits\"."
+msgstr ""
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3153158\n"
+"58\n"
+"help.text"
+msgid "If you want to apply a numerical format to a column of numbers in text format (for example, text \"000123\" becomes number \"123\"), do the following:"
+msgstr ""
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3149377\n"
+"59\n"
+"help.text"
+msgid "Select the column in which the digits are found in text format. Set the cell format in that column as \"Number\"."
+msgstr ""
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3154944\n"
+"60\n"
+"help.text"
+msgid "Choose <emph>Edit - Find & Replace</emph>"
+msgstr ""
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3154510\n"
+"61\n"
+"help.text"
+msgid "In the <emph>Search for</emph> box, enter <item type=\"input\">^[0-9]</item>"
+msgstr ""
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3155068\n"
+"62\n"
+"help.text"
+msgid "In the <emph>Replace with</emph> box, enter <item type=\"input\">&</item>"
+msgstr ""
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3149018\n"
+"63\n"
+"help.text"
+msgid "Check <emph>Regular expressions</emph>"
+msgstr ""
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3156382\n"
+"64\n"
+"help.text"
+msgid "Check <emph>Current selection only</emph>"
+msgstr ""
+
+#: integer_leading_zero.xhp
+msgctxt ""
+"integer_leading_zero.xhp\n"
+"par_id3146916\n"
+"65\n"
+"help.text"
+msgid "Click <emph>Replace All</emph>"
+msgstr ""
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"tit\n"
+"help.text"
+msgid "Shortcut Keys (%PRODUCTNAME Calc Accessibility)"
+msgstr ""
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"bm_id3145120\n"
+"help.text"
+msgid "<bookmark_value>accessibility; %PRODUCTNAME Calc shortcuts</bookmark_value><bookmark_value>shortcut keys;%PRODUCTNAME Calc accessibility</bookmark_value>"
+msgstr ""
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"hd_id3145120\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"keyboard\"><link href=\"text/scalc/guide/keyboard.xhp\" name=\"Shortcut Keys (%PRODUCTNAME Calc Accessibility)\">Shortcut Keys (<item type=\"productname\">%PRODUCTNAME</item> Calc Accessibility)</link></variable>"
+msgstr ""
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3154760\n"
+"13\n"
+"help.text"
+msgid "Refer also to the lists of shortcut keys for <item type=\"productname\">%PRODUCTNAME</item> Calc and <item type=\"productname\">%PRODUCTNAME</item> in general."
+msgstr ""
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"hd_id3153360\n"
+"12\n"
+"help.text"
+msgid "Cell Selection Mode"
+msgstr "Modi i shikimit paraprak"
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3150870\n"
+"help.text"
+msgid "<image id=\"img_id3150439\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3150439\">Icon</alt></image>"
+msgstr ""
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3154319\n"
+"11\n"
+"help.text"
+msgid "In a text box that has a button to minimize the dialog, press <item type=\"keycode\">F2</item> to enter the cell selection mode. Select any number of cells, then press <item type=\"keycode\">F2</item> again to show the dialog."
+msgstr ""
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3145272\n"
+"10\n"
+"help.text"
+msgid "In the cell selection mode, you can use the common navigation keys to select cells."
+msgstr ""
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"hd_id3148646\n"
+"14\n"
+"help.text"
+msgid "Controlling the Outline"
+msgstr "Shiriti i konturës"
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3146120\n"
+"15\n"
+"help.text"
+msgid "You can use the keyboard in <link href=\"text/scalc/01/12080000.xhp\" name=\"Outline\">Outline</link>:"
+msgstr ""
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3147394\n"
+"16\n"
+"help.text"
+msgid "Press <item type=\"keycode\">F6</item> or <item type=\"keycode\">Shift+F6</item> until the vertical or horizontal outline window has the focus."
+msgstr ""
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3149379\n"
+"17\n"
+"help.text"
+msgid "<item type=\"keycode\">Tab</item> - cycle through all visible buttons from top to bottom or from left to right."
+msgstr ""
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3156286\n"
+"18\n"
+"help.text"
+msgid "<item type=\"keycode\">Shift+Tab</item> - cycle through all visible buttons in the opposite direction."
+msgstr ""
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3149403\n"
"19\n"
"help.text"
-msgid "<variable id=\"datapilot_tipps\"><link href=\"text/scalc/guide/datapilot_tipps.xhp\" name=\"Selecting Pivot Table Output Ranges\">Selecting Pivot Table Output Ranges</link></variable>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+1 to Command+8</caseinline><defaultinline>Ctrl+1 to Ctrl+8</defaultinline></switchinline> - show all levels up to the specified number; hide all higher levels."
msgstr ""
-#: datapilot_tipps.xhp
+#: keyboard.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
-"par_id3154123\n"
+"keyboard.xhp\n"
+"par_id3150329\n"
"20\n"
"help.text"
-msgid "Click the button <emph>More</emph> in the <emph>Pivot Table</emph> dialog. The dialog will be extended."
+msgid "Use <item type=\"keycode\">+</item> or <item type=\"keycode\">-</item> to show or hide the focused outline group."
msgstr ""
-#: datapilot_tipps.xhp
+#: keyboard.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
-"par_id3153771\n"
+"keyboard.xhp\n"
+"par_id3155446\n"
"21\n"
"help.text"
-msgid "You can select a named range in which the pivot table is to be created, from the <emph>Results to</emph> box. If the results range does not have a name, enter the coordinates of the upper left cell of the range into the field to the right of the <emph>Results to</emph> box. You can also click on the appropriate cell to have the coordinates entered accordingly."
+msgid "Press <item type=\"keycode\">Enter</item> to activate the focused button."
msgstr ""
-#: datapilot_tipps.xhp
+#: keyboard.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
-"par_id3146974\n"
-"23\n"
+"keyboard.xhp\n"
+"par_id3154253\n"
+"22\n"
"help.text"
-msgid "If you mark the <emph>Ignore empty rows</emph> check box, they will not be taken into account when the pivot table is created."
+msgid "Use <item type=\"keycode\">Up</item>, <item type=\"keycode\">Down</item>, <item type=\"keycode\">Left</item>, or <item type=\"keycode\">Right</item> arrow to cycle through all buttons in the current level."
msgstr ""
-#: datapilot_tipps.xhp
+#: keyboard.xhp
msgctxt ""
-"datapilot_tipps.xhp\n"
-"par_id3145273\n"
-"24\n"
+"keyboard.xhp\n"
+"hd_id3147343\n"
+"8\n"
"help.text"
-msgid "If the <emph>Identify categories</emph> check box is marked, the categories will be identified by their headings and assigned accordingly when the pivot table is created."
+msgid "Selecting a Drawing Object or a Graphic"
msgstr ""
-#: autofilter.xhp
+#: keyboard.xhp
msgctxt ""
-"autofilter.xhp\n"
+"keyboard.xhp\n"
+"par_idN107AA\n"
+"help.text"
+msgid "Choose View - Toolbars - Drawing to open the Drawing toolbar."
+msgstr ""
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3155333\n"
+"7\n"
+"help.text"
+msgid "Press <item type=\"keycode\">F6</item> until the <emph>Drawing</emph> toolbar is selected."
+msgstr ""
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3150345\n"
+"4\n"
+"help.text"
+msgid "If the selection tool is active, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter. This selects the first drawing object or graphic in the sheet."
+msgstr ""
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3159240\n"
+"3\n"
+"help.text"
+msgid "With <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6 you set the focus to the document."
+msgstr ""
+
+#: keyboard.xhp
+msgctxt ""
+"keyboard.xhp\n"
+"par_id3155379\n"
+"2\n"
+"help.text"
+msgid "Now you can use <item type=\"keycode\">Tab</item> to select the next drawing object or graphic and <item type=\"keycode\">Shift+Tab</item> to select the previous one."
+msgstr ""
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
"tit\n"
"help.text"
-msgid "Applying AutoFilter"
-msgstr "~Fshehe Filtrin Automatik"
+msgid "Freezing Rows or Columns as Headers"
+msgstr ""
-#: autofilter.xhp
+#: line_fix.xhp
msgctxt ""
-"autofilter.xhp\n"
-"bm_id3156423\n"
+"line_fix.xhp\n"
+"bm_id3154684\n"
"help.text"
-msgid "<bookmark_value>filters, see also AutoFilter function</bookmark_value> <bookmark_value>AutoFilter function;applying</bookmark_value> <bookmark_value>sheets; filter values</bookmark_value> <bookmark_value>numbers; filter sheets</bookmark_value> <bookmark_value>columns; AutoFilter function</bookmark_value> <bookmark_value>drop-down menus in sheet columns</bookmark_value> <bookmark_value>database ranges; AutoFilter function</bookmark_value>"
+msgid "<bookmark_value>tables; freezing</bookmark_value><bookmark_value>title rows; freezing during table split</bookmark_value><bookmark_value>rows; freezing</bookmark_value><bookmark_value>columns; freezing</bookmark_value><bookmark_value>freezing rows or columns</bookmark_value><bookmark_value>headers; freezing during table split</bookmark_value><bookmark_value>scrolling prevention in tables</bookmark_value><bookmark_value>windows; splitting</bookmark_value><bookmark_value>tables; splitting windows</bookmark_value>"
msgstr ""
-#: autofilter.xhp
+#: line_fix.xhp
msgctxt ""
-"autofilter.xhp\n"
-"hd_id3156423\n"
-"6\n"
+"line_fix.xhp\n"
+"hd_id3154684\n"
+"1\n"
"help.text"
-msgid "<variable id=\"autofilter\"><link href=\"text/scalc/guide/autofilter.xhp\" name=\"Applying AutoFilter\">Applying AutoFilter</link></variable>"
+msgid "<variable id=\"line_fix\"><link href=\"text/scalc/guide/line_fix.xhp\" name=\"Freezing Rows or Columns as Headers\">Freezing Rows or Columns as Headers</link></variable>"
msgstr ""
-#: autofilter.xhp
+#: line_fix.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3147427\n"
+"line_fix.xhp\n"
+"par_id3148576\n"
+"2\n"
+"help.text"
+msgid "If you have long rows or columns of data that extend beyond the viewable area of the sheet, you can freeze some rows or columns, which allows you to see the frozen columns or rows as you scroll through the rest of the data."
+msgstr ""
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3156441\n"
+"3\n"
+"help.text"
+msgid "Select the row below, or the column to the right of the row or column that you want to be in the frozen region. All rows above, or all columns to the left of the selection are frozen."
+msgstr ""
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3153158\n"
+"13\n"
+"help.text"
+msgid "To freeze both horizontally and vertically, select the <emph>cell</emph> that is below the row and to the right of the column that you want to freeze."
+msgstr ""
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3156286\n"
+"4\n"
+"help.text"
+msgid "Choose <emph>Window - Freeze</emph>."
+msgstr ""
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3151073\n"
+"5\n"
+"help.text"
+msgid "To deactivate, choose <emph>Window - Freeze </emph>again."
+msgstr ""
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3155335\n"
"7\n"
"help.text"
-msgid "The <emph>AutoFilter</emph> function inserts a combo box on one or more data columns that lets you select the records (rows) to be displayed."
+msgid "If the area defined is to be scrollable, apply the <emph>Window - Split</emph> command."
msgstr ""
-#: autofilter.xhp
+#: line_fix.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3152576\n"
+"line_fix.xhp\n"
+"par_id3147345\n"
+"8\n"
+"help.text"
+msgid "If you want to print a certain row on all pages of a document, choose <emph>Format - Print ranges - Edit</emph>."
+msgstr ""
+
+#: line_fix.xhp
+msgctxt ""
+"line_fix.xhp\n"
+"par_id3147004\n"
"9\n"
"help.text"
-msgid "Select the columns you want to use AutoFilter on."
+msgid "<link href=\"text/scalc/01/07090000.xhp\" name=\"Window - Freeze\">Window - Freeze</link>"
msgstr ""
-#: autofilter.xhp
+#: line_fix.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3153157\n"
+"line_fix.xhp\n"
+"par_id3150088\n"
"10\n"
"help.text"
-msgid "Choose <emph>Data - Filter - AutoFilter</emph>. The combo box arrows are visible in the first row of the range selected."
+msgid "<link href=\"text/scalc/01/07080000.xhp\" name=\"Window - Split\">Window - Split</link>"
msgstr ""
-#: autofilter.xhp
+#: line_fix.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3154510\n"
+"line_fix.xhp\n"
+"par_id3150304\n"
"11\n"
"help.text"
-msgid "Run the filter by clicking the drop-down arrow in the column heading and choosing an item."
+msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
msgstr ""
-#: autofilter.xhp
+#: main.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3155064\n"
-"13\n"
+"main.xhp\n"
+"tit\n"
"help.text"
-msgid "Only those rows whose contents meet the filter criteria are displayed. The other rows are filtered. You can see if rows have been filtered from the discontinuous row numbers. The column that has been used for the filter is identified by a different color for the arrow button."
+msgid "Instructions for Using $[officename] Calc"
msgstr ""
-#: autofilter.xhp
+#: main.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id9216589\n"
+"main.xhp\n"
+"bm_id3150770\n"
"help.text"
-msgid "When you apply an additional AutoFilter on another column of a filtered data range, then the other combo boxes list only the filtered data."
+msgid "<bookmark_value>HowTos for Calc</bookmark_value><bookmark_value>instructions; $[officename] Calc</bookmark_value>"
msgstr ""
-#: autofilter.xhp
+#: main.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3153714\n"
-"12\n"
+"main.xhp\n"
+"hd_id3150770\n"
+"1\n"
"help.text"
-msgid "To display all records again, select the \"all<emph>\"</emph> entry in the AutoFilter combo box. If you choose \"Standard<emph>\"</emph>, the <item type=\"menuitem\">Standard Filter</item> dialog appears, allowing you to set up a standard filter. Choose \"Top 10\" to display the highest 10 values only."
+msgid "<variable id=\"main\"><link href=\"text/scalc/guide/main.xhp\" name=\"Instructions for Using $[officename] Calc\">Instructions for Using $[officename] Calc</link></variable>"
msgstr ""
-#: autofilter.xhp
+#: main.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3147340\n"
+"main.xhp\n"
+"hd_id3145748\n"
+"2\n"
+"help.text"
+msgid "Formatting Tables and Cells"
+msgstr "~Të gjitha Indekset dhe Tabelat"
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3154022\n"
+"3\n"
+"help.text"
+msgid "Entering Values and Formulas"
+msgstr ""
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3152899\n"
+"4\n"
+"help.text"
+msgid "Entering References"
+msgstr "Shkruaj referencat"
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3155382\n"
+"5\n"
+"help.text"
+msgid "Database Ranges in Tables"
+msgstr "Tabela \"#\" është e panjohur në databazë."
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3159229\n"
+"6\n"
+"help.text"
+msgid "Advanced Calculations"
+msgstr "Parametrat e avancuar..."
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3153070\n"
+"7\n"
+"help.text"
+msgid "Printing and Page Preview"
+msgstr "Shikim paraprak i faqes: faqe të shumëfishta"
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3150437\n"
+"8\n"
+"help.text"
+msgid "Importing and Exporting Documents"
+msgstr "Korrespondenca personale dhe dokumentet"
+
+#: main.xhp
+msgctxt ""
+"main.xhp\n"
+"hd_id3166464\n"
+"9\n"
+"help.text"
+msgid "Miscellaneous"
+msgstr "Të ndryshme"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"tit\n"
+"help.text"
+msgid "Selecting Multiple Cells"
+msgstr "Futi Qelitë Teposhtë"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"bm_id3153361\n"
+"help.text"
+msgid "<bookmark_value>cells; selecting</bookmark_value> <bookmark_value>marking cells</bookmark_value> <bookmark_value>selecting;cells</bookmark_value> <bookmark_value>multiple cells selection</bookmark_value> <bookmark_value>selection modes in spreadsheets</bookmark_value> <bookmark_value>tables; selecting ranges</bookmark_value>"
+msgstr ""
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3153361\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"mark_cells\"><link href=\"text/scalc/guide/mark_cells.xhp\" name=\"Selecting Multiple Cells\">Selecting Multiple Cells</link></variable>"
+msgstr ""
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3145272\n"
+"2\n"
+"help.text"
+msgid "Select a rectangular range"
+msgstr "Selekto Intervalin e Databazës"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3149261\n"
+"3\n"
+"help.text"
+msgid "With the mouse button pressed, drag from one corner to the diagonally opposed corner of the range."
+msgstr ""
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3151119\n"
+"4\n"
+"help.text"
+msgid "Mark a single cell"
+msgstr "Ndaj qelizën në"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3146975\n"
"19\n"
"help.text"
-msgid "To stop using AutoFilter, reselect all cells selected in step 1 and once again choose <emph>Data - Filter - AutoFilter</emph>."
+msgid "Do one of the following:"
+msgstr "Gabimi në vazhdim ka ndodhur:"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3163710\n"
+"20\n"
+"help.text"
+msgid "Click, then Shift-click the cell."
msgstr ""
-#: autofilter.xhp
+#: mark_cells.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id4303415\n"
+"mark_cells.xhp\n"
+"par_id3149959\n"
+"5\n"
"help.text"
-msgid "To assign different AutoFilters to different sheets, you must first define a database range on each sheet."
+msgid "Pressing the mouse button, drag a range across two cells, do not release the mouse button, and then drag back to the first cell. Release the mouse button. You can now move the individual cell by drag and drop."
msgstr ""
-#: autofilter.xhp
+#: mark_cells.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3159236\n"
+"mark_cells.xhp\n"
+"hd_id3154942\n"
+"6\n"
+"help.text"
+msgid "Select various dispersed cells"
+msgstr ""
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id1001200901072060\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr "Gabimi në vazhdim ka ndodhur:"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3156284\n"
+"7\n"
+"help.text"
+msgid "Mark at least one cell. Then while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>, click each of the additional cells."
+msgstr ""
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id1001200901072023\n"
+"help.text"
+msgid "Click the STD / EXT / ADD area in the status bar until it shows ADD. Now click all cells that you want to select."
+msgstr ""
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"hd_id3146971\n"
+"8\n"
+"help.text"
+msgid "Switch marking mode"
+msgstr "Modi i shikimit paraprak"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3155064\n"
+"9\n"
+"help.text"
+msgid "On the status bar, click the box with the legend STD / EXT / ADD to switch the marking mode:"
+msgstr ""
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3159264\n"
+"10\n"
+"help.text"
+msgid "Field contents"
+msgstr "Tabela e përmbajtjeve"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3155337\n"
+"11\n"
+"help.text"
+msgid "Effect of clicking the mouse"
+msgstr "Miu mbi objektin"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3149568\n"
+"12\n"
+"help.text"
+msgid "STD"
+msgstr "STD"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3148486\n"
+"13\n"
+"help.text"
+msgid "A mouse click selects the cell you have clicked on. Unmarks all marked cells."
+msgstr ""
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3150090\n"
"14\n"
"help.text"
-msgid "The arithmetic functions also take account of the cells that are not visible due to an applied filter. For example, a sum of an entire column will also total the values in the filtered cells. Apply the <link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link> function if only the cells visible after the application of a filter are to be taken into account."
+msgid "EXT"
+msgstr "EXT"
+
+#: mark_cells.xhp
+msgctxt ""
+"mark_cells.xhp\n"
+"par_id3150305\n"
+"15\n"
+"help.text"
+msgid "A mouse click marks a rectangular range from the current cell to the cell you clicked. Alternatively, Shift-click a cell."
msgstr ""
-#: autofilter.xhp
+#: mark_cells.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3152985\n"
+"mark_cells.xhp\n"
+"par_id3145587\n"
"16\n"
"help.text"
-msgid "<link href=\"text/scalc/01/12040100.xhp\" name=\"Data - Filter - AutoFilter\">Data - Filter - AutoFilter</link>"
-msgstr ""
+msgid "ADD"
+msgstr "ADD"
-#: autofilter.xhp
+#: mark_cells.xhp
msgctxt ""
-"autofilter.xhp\n"
-"par_id3154484\n"
+"mark_cells.xhp\n"
+"par_id3154368\n"
"17\n"
"help.text"
-msgid "<link href=\"text/scalc/01/04060106.xhp\" name=\"SUBTOTAL\">SUBTOTAL</link>"
+msgid "A mouse click in a cell adds it to the already marked cells. A mouse click in a marked cell unmarks it. Alternatively, <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click the cells."
msgstr ""
-#: cellreference_dragdrop.xhp
+#: mark_cells.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
+"mark_cells.xhp\n"
+"par_id3154487\n"
+"18\n"
+"help.text"
+msgid "<link href=\"text/scalc/main0208.xhp\" name=\"Status bar\">Status bar</link>"
+msgstr ""
+
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
"tit\n"
"help.text"
-msgid "Referencing Cells by Drag-and-Drop"
+msgid "Entering Matrix Formulas"
+msgstr "Formulat nuk formojnë një shtyllë."
+
+#: matrixformula.xhp
+msgctxt ""
+"matrixformula.xhp\n"
+"bm_id3153969\n"
+"help.text"
+msgid "<bookmark_value>matrices; entering matrix formulas</bookmark_value><bookmark_value>formulas; matrix formulas</bookmark_value><bookmark_value>inserting;matrix formulas</bookmark_value>"
msgstr ""
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"bm_id3154686\n"
+"matrixformula.xhp\n"
+"hd_id3153969\n"
+"13\n"
"help.text"
-msgid "<bookmark_value>drag and drop; referencing cells</bookmark_value> <bookmark_value>cells; referencing by drag and drop </bookmark_value> <bookmark_value>references;inserting by drag and drop</bookmark_value> <bookmark_value>inserting;references, by drag and drop</bookmark_value>"
+msgid "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Entering Matrix Formulas\">Entering Matrix Formulas</link></variable>"
msgstr ""
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"hd_id3154686\n"
-"16\n"
+"matrixformula.xhp\n"
+"par_id3153144\n"
+"14\n"
"help.text"
-msgid "<variable id=\"cellreference_dragdrop\"><link href=\"text/scalc/guide/cellreference_dragdrop.xhp\" name=\"Referencing Cells by Drag-and-Drop\">Referencing Cells by Drag-and-Drop</link></variable>"
+msgid "The following is an example of how you can enter a matrix formula, without going into the details of matrix functions."
msgstr ""
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3156444\n"
-"17\n"
+"matrixformula.xhp\n"
+"par_id3153188\n"
+"15\n"
"help.text"
-msgid "With the help of the Navigator you can reference cells from one sheet to another sheet in the same document or in a different document. The cells can be inserted as a copy, link, or hyperlink. The range to be inserted must be defined with a name in the original file so that it can be inserted in the target file."
+msgid "Assume you have entered 10 numbers in Columns A and B (A1:A10 and B1:B10), and would like to calculate the sum of each row in Column C."
msgstr ""
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3152576\n"
-"25\n"
+"matrixformula.xhp\n"
+"par_id3154321\n"
+"16\n"
"help.text"
-msgid "Open the document that contains the source cells."
+msgid "Using the mouse, select the range C1:C10, in which the results are to be displayed."
msgstr ""
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3154011\n"
-"26\n"
+"matrixformula.xhp\n"
+"par_id3149260\n"
+"17\n"
"help.text"
-msgid "To set the source range as the range, select the cells and choose <emph>Insert - Names - Define</emph>. Save the source document, and do not close it."
+msgid "Press F2, or click in the input line of the Formula bar."
msgstr ""
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3151073\n"
+"matrixformula.xhp\n"
+"par_id3154944\n"
"18\n"
"help.text"
-msgid "Open the sheet in which you want to insert something."
-msgstr ""
+msgid "Enter an equal sign (=)."
+msgstr "Nuk është baraz me"
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3154732\n"
+"matrixformula.xhp\n"
+"par_id3145252\n"
"19\n"
"help.text"
-msgid "Open the <link href=\"text/scalc/01/02110000.xhp\" name=\"Navigator\">Navigator</link>. In the lower box of the Navigator select the source file."
+msgid "Select the range A1:A10, which contains the first values for the sum formula."
msgstr ""
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3150752\n"
-"22\n"
+"matrixformula.xhp\n"
+"par_id3144767\n"
+"20\n"
"help.text"
-msgid "In the Navigator, the source file object appears under \"Range names\"."
+msgid "Press the (+) key from the numerical keypad."
msgstr ""
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3154754\n"
-"27\n"
+"matrixformula.xhp\n"
+"par_id3154018\n"
+"21\n"
"help.text"
-msgid "Using the <emph>Drag Mode</emph> icon in Navigator, choose whether you want the reference to be a hyperlink, link, or copy."
+msgid "Select the numbers in the second column in cells B1:B10."
msgstr ""
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3154256\n"
-"23\n"
+"matrixformula.xhp\n"
+"par_id3150716\n"
+"22\n"
"help.text"
-msgid "Click the name under \"Range names\" in the Navigator, and drag into the cell of the current sheet where you want to insert the reference."
+msgid "End the input with the matrix key combination: Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
msgstr ""
-#: cellreference_dragdrop.xhp
+#: matrixformula.xhp
msgctxt ""
-"cellreference_dragdrop.xhp\n"
-"par_id3149565\n"
-"24\n"
+"matrixformula.xhp\n"
+"par_id3145640\n"
+"23\n"
"help.text"
-msgid "This method can also be used to insert a range from another sheet of the same document into the current sheet. Select the active document as source in step 4 above."
+msgid "The matrix area is automatically protected against modifications, such as deleting rows or columns. It is, however, possible to edit any formatting, such as the cell background."
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
+"move_dragdrop.xhp\n"
"tit\n"
"help.text"
-msgid "Using Print Ranges on a Spreadsheet"
+msgid "Moving Cells by Drag-and-Drop"
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"bm_id14648\n"
+"move_dragdrop.xhp\n"
+"bm_id3155686\n"
"help.text"
-msgid "<bookmark_value>exporting;cells</bookmark_value><bookmark_value>printing; cells</bookmark_value><bookmark_value>ranges;print ranges</bookmark_value><bookmark_value>PDF export of print ranges</bookmark_value><bookmark_value>cell ranges; printing</bookmark_value><bookmark_value>cells; print ranges</bookmark_value><bookmark_value>print ranges</bookmark_value><bookmark_value>clearing, see also deleting/removing</bookmark_value><bookmark_value>defining;print ranges</bookmark_value><bookmark_value>extending print ranges</bookmark_value><bookmark_value>deleting;print ranges</bookmark_value>"
+msgid "<bookmark_value>drag and drop; moving cells</bookmark_value><bookmark_value>cells; moving by drag and drop </bookmark_value><bookmark_value>columns;moving by drag and drop</bookmark_value><bookmark_value>moving;cells by drag and drop</bookmark_value><bookmark_value>inserting;cells, by drag and drop</bookmark_value>"
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN108D7\n"
+"move_dragdrop.xhp\n"
+"hd_id986358\n"
"help.text"
-msgid "<variable id=\"printranges\"><link href=\"text/scalc/guide/printranges.xhp\">Defining Print Ranges on a Sheet</link> </variable>"
+msgid "<variable id=\"move_dragdrop\"><link href=\"text/scalc/guide/move_dragdrop.xhp\">Moving Cells by Drag-and-Drop</link></variable>"
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN108F5\n"
+"move_dragdrop.xhp\n"
+"par_id2760093\n"
"help.text"
-msgid "You can define which range of cells on a spreadsheet to print."
+msgid "When you drag-and-drop a selection of cells on a Calc sheet, the cells normally overwrite the existing cells in the area where you drop. This is the normal <emph>overwrite mode</emph>."
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN108FB\n"
+"move_dragdrop.xhp\n"
+"par_id9527268\n"
"help.text"
-msgid "The cells on the sheet that are not part of the defined print range are not printed or exported. Sheets without a defined print range are not printed and not exported to a PDF file, unless the document uses the Excel file format."
+msgid "When you hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key while releasing the mouse button, you enter the <emph>insert mode</emph>."
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN1077A\n"
+"move_dragdrop.xhp\n"
+"par_id79653\n"
"help.text"
-msgid "For files opened in Excel format, all sheets that do not contain a defined print range are printed. The same behavior occurs when you export the Excel formatted spreadsheet to a PDF file."
+msgid "In insert mode, the existing cells where you drop will be shifted to the right or to the bottom, and the dropped cells are inserted into the now empty positions without overwriting."
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN108FE\n"
+"move_dragdrop.xhp\n"
+"par_id8676717\n"
"help.text"
-msgid "To Define a Print Range"
+msgid "The surrounding box of the moved cells looks different in insert mode."
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10905\n"
+"move_dragdrop.xhp\n"
+"par_id3968932\n"
"help.text"
-msgid "Select the cells that you want to print."
-msgstr "A dëshironi të kontrolloni tekstin kryesor?"
+msgid "In overwrite mode you see all four borders around the selected area. In insert mode you see only the left border when target cells will be shifted to the right. You see only the upper border when target cells will be shifted down."
+msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10909\n"
+"move_dragdrop.xhp\n"
+"par_id7399517\n"
"help.text"
-msgid "Choose <emph>Format - Print Ranges - Define</emph>."
+msgid "Whether the target area will be shifted to the right or to the bottom depends on the distance between source and target cells, if you move within the same sheet. It depends on the number of horizontal or vertical cells in the moved area, if you move to a different sheet."
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10910\n"
+"move_dragdrop.xhp\n"
+"par_id8040406\n"
"help.text"
-msgid "To Add Cells to a Print Range"
+msgid "If you move cells in insert mode within the same row (only horizontally), then after insertion of the cells, all cells will be shifted to the left to fill the source area."
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10917\n"
+"move_dragdrop.xhp\n"
+"par_id2586748\n"
"help.text"
-msgid "Select the cells that you want to add to the existing print range."
+msgid "In both modes, you can hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key, or <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift keys while you release the mouse button to insert a copy or a link, respectively."
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN1091B\n"
+"move_dragdrop.xhp\n"
+"par_id5814081\n"
"help.text"
-msgid "Choose <emph>Format - Print Ranges - Add</emph>."
+msgid "Keys pressed while releasing the mouse button"
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10922\n"
+"move_dragdrop.xhp\n"
+"par_id6581316\n"
"help.text"
-msgid "To Clear a Print Range"
+msgid "Result"
+msgstr "Rezultat"
+
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id9906613\n"
+"help.text"
+msgid "No key"
+msgstr "Lloj kyç"
+
+#: move_dragdrop.xhp
+msgctxt ""
+"move_dragdrop.xhp\n"
+"par_id2815637\n"
+"help.text"
+msgid "Cells are moved and overwrite the cells in the target area. Source cells are emptied."
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10929\n"
+"move_dragdrop.xhp\n"
+"par_id6161687\n"
"help.text"
-msgid "Choose <emph>Format - Print Ranges - Remove</emph>."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key"
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10953\n"
+"move_dragdrop.xhp\n"
+"par_id4278389\n"
"help.text"
-msgid "Using the Page Break Preview to Edit Print Ranges"
+msgid "Cells are copied and overwrite the cells in the target area. Source cells stay as they are."
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN1093E\n"
+"move_dragdrop.xhp\n"
+"par_id2805566\n"
"help.text"
-msgid "In the <emph>Page Break Preview</emph>, print ranges as well as page break regions are outlined by a blue border and contain a centered page number in gray. Nonprinting areas have a gray background."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift keys"
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_id3153143\n"
-"8\n"
+"move_dragdrop.xhp\n"
+"par_id5369121\n"
"help.text"
-msgid "To define a new page break region, drag the border to a new location. When you define a new page break region, an automatic page break is replaced by a manual page break."
+msgid "Links to the source cells are inserted and overwrite the cells in the target area. Source cells stay as they are."
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10930\n"
+"move_dragdrop.xhp\n"
+"par_id9518723\n"
"help.text"
-msgid "To View and Edit Print Ranges"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option</caseinline><defaultinline>Alt</defaultinline></switchinline> key"
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10937\n"
+"move_dragdrop.xhp\n"
+"par_id2926419\n"
"help.text"
-msgid "Choose <emph>View - Page Break Preview</emph>."
-msgstr "Nuk mund ta hap fajllin $(URL1)."
+msgid "Cells are moved and shift the cells in the target area to the right or to the bottom. Source cells are emptied, except if you move within the same rows on the same sheet."
+msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN1082A\n"
+"move_dragdrop.xhp\n"
+"par_id4021423\n"
"help.text"
-msgid "To change the default zoom factor of the <emph>Page Break Preview</emph>, double click the percentage value on the <emph>Status</emph> bar, and select a new zoom factor."
+msgid "If you move within the same rows on the same sheet, the cells in the target area shift to the right, and then the whole row shifts to fill the source area."
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10836\n"
+"move_dragdrop.xhp\n"
+"par_id2783898\n"
"help.text"
-msgid "Edit the print range."
-msgstr "Edito Intervalin e Printimit"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command </caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline> keys"
+msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10944\n"
+"move_dragdrop.xhp\n"
+"par_id2785119\n"
"help.text"
-msgid "To change the size of a print range, drag a border of the range to a new location."
+msgid "Cells are copied and shift the cells in the target area to the right or to the bottom. Source cells stay as they are."
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_id3151075\n"
-"12\n"
+"move_dragdrop.xhp\n"
+"par_id584124\n"
"help.text"
-msgid "To delete a manual page break that is contained in a print range, drag the border of the page break outside of the print range."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Option+Command</caseinline><defaultinline>Alt+Ctrl</defaultinline></switchinline>+Shift keys"
msgstr ""
-#: printranges.xhp
+#: move_dragdrop.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10948\n"
+"move_dragdrop.xhp\n"
+"par_id5590990\n"
"help.text"
-msgid "To clear a print range, drag a border of the range onto the opposite border of the range."
+msgid "Links to the source cells are inserted and shift the cells in the target area to the right or to the bottom. Source cells stay as they are."
msgstr ""
-#: printranges.xhp
+#: multi_tables.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN10862\n"
+"multi_tables.xhp\n"
+"tit\n"
"help.text"
-msgid "To exit the <emph>Page Break Preview</emph>, choose <emph>View - Normal</emph>."
+msgid "Navigating Through Sheets Tabs"
msgstr ""
-#: printranges.xhp
+#: multi_tables.xhp
msgctxt ""
-"printranges.xhp\n"
-"par_idN109CF\n"
+"multi_tables.xhp\n"
+"bm_id3150769\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05080300.xhp\">Editing Print Ranges</link>"
+msgid "<bookmark_value>sheets; showing multiple</bookmark_value><bookmark_value>sheet tabs;using</bookmark_value><bookmark_value>views;multiple sheets</bookmark_value>"
msgstr ""
-#: borders.xhp
+#: multi_tables.xhp
msgctxt ""
-"borders.xhp\n"
+"multi_tables.xhp\n"
+"hd_id3150769\n"
+"4\n"
+"help.text"
+msgid "<variable id=\"multi_tables\"><link href=\"text/scalc/guide/multi_tables.xhp\" name=\"Navigating Through Sheet Tabs\">Navigating Through Sheet Tabs</link> </variable>"
+msgstr ""
+
+#: multi_tables.xhp
+msgctxt ""
+"multi_tables.xhp\n"
+"par_id3153771\n"
+"3\n"
+"help.text"
+msgid "By default $[officename] displays three sheets \"Sheet1\" to \"Sheet3\", in each new spreadsheet. You can switch between sheets in a spreadsheet using the sheet tabs at the bottom of the screen."
+msgstr ""
+
+#: multi_tables.xhp
+msgctxt ""
+"multi_tables.xhp\n"
+"par_idN106AF\n"
+"help.text"
+msgid "<image id=\"img_id4829822\" src=\"res/helpimg/sheettabs.png\" width=\"3.3335inch\" height=\"0.7638inch\" localize=\"true\"><alt id=\"alt_id4829822\">Sheet Tabs</alt></image>"
+msgstr ""
+
+#: multi_tables.xhp
+msgctxt ""
+"multi_tables.xhp\n"
+"par_id3153144\n"
+"help.text"
+msgid "<image id=\"img_id3156441\" src=\"res/helpimg/calcnav.png\" width=\"0.6563inch\" height=\"0.1457inch\"><alt id=\"alt_id3156441\">Icon</alt></image>"
+msgstr ""
+
+#: multi_tables.xhp
+msgctxt ""
+"multi_tables.xhp\n"
+"par_id3147396\n"
+"5\n"
+"help.text"
+msgid "Use the navigation buttons to display all the sheets belonging to your document. Clicking the button on the far left or the far right displays, respectively, the first or last sheet tab. The middle buttons allow the user to scroll forward and backward through all sheet tabs. To display the sheet itself click on the sheet tab."
+msgstr ""
+
+#: multi_tables.xhp
+msgctxt ""
+"multi_tables.xhp\n"
+"par_id3149379\n"
+"6\n"
+"help.text"
+msgid "If there is insufficient space to display all the sheet tabs, you can increase it by pointing to the separator between the scrollbar and the sheet tabs, pressing the mouse button and, keeping the mouse button pressed, dragging to the right. In doing so you will be sharing the available space between the sheet tabs and horizontal scrollbar."
+msgstr ""
+
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
"tit\n"
"help.text"
-msgid "User Defined Borders in Cells"
+msgid "Applying Multiple Operations"
+msgstr "Përpjestuesi më i vogël"
+
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"bm_id3147559\n"
+"help.text"
+msgid "<bookmark_value>multiple operations</bookmark_value><bookmark_value>what if operations;two variables</bookmark_value><bookmark_value>tables; multiple operations in</bookmark_value><bookmark_value>data tables; multiple operations in</bookmark_value><bookmark_value>cross-classified tables</bookmark_value>"
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"bm_id3457441\n"
+"multioperation.xhp\n"
+"hd_id3147559\n"
+"5\n"
"help.text"
-msgid "<bookmark_value>cells;borders</bookmark_value> <bookmark_value>line arrangements with cells</bookmark_value> <bookmark_value>borders;cells</bookmark_value>"
+msgid "<variable id=\"multioperation\"><link href=\"text/scalc/guide/multioperation.xhp\" name=\"Applying Multiple Operations\">Applying Multiple Operations</link></variable>"
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"hd_id4544816\n"
+"multioperation.xhp\n"
+"hd_id3145171\n"
+"1\n"
"help.text"
-msgid "<variable id=\"borders\"><link href=\"text/scalc/guide/borders.xhp\">User Defined Borders in Cells</link></variable>"
+msgid "Multiple Operations in Columns or Rows"
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id2320017\n"
+"multioperation.xhp\n"
+"par_id4123966\n"
"help.text"
-msgid "You can apply a variety of different lines to selected cells."
+msgid "The <item type=\"menuitem\">Data - Multiple Operations</item> command provides a planning tool for \"what if\" questions. In your spreadsheet, you enter a formula to calculate a result from values that are stored in other cells. Then, you set up a cell range where you enter some fixed values, and the Multiple Operations command will calculate the results depending on the formula."
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8055665\n"
+"multioperation.xhp\n"
+"par_id3156424\n"
+"2\n"
"help.text"
-msgid "Select the cell or a block of cells."
+msgid "In the <emph>Formulas</emph> field, enter the cell reference to the formula that applies to the data range. In the <emph>Column input cell/Row input cell</emph> field, enter the cell reference to the corresponding cell that is part of the formula. This can be explained best by examples:"
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id9181188\n"
+"multioperation.xhp\n"
+"hd_id3159153\n"
+"7\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Format - Cells</item>."
-msgstr "Nuk mund ta hap fajllin $(URL1)."
+msgid "Examples"
+msgstr "Shembuj:"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id9947508\n"
+"multioperation.xhp\n"
+"par_id3153189\n"
+"8\n"
"help.text"
-msgid "In the dialog, click the <emph>Borders</emph> tab."
+msgid "You produce toys which you sell for $10 each. Each toy costs $2 to make, in addition to which you have fixed costs of $10,000 per year. How much profit will you make in a year if you sell a particular number of toys?"
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id7907956\n"
+"multioperation.xhp\n"
+"par_id6478774\n"
"help.text"
-msgid "Choose the border options you want to apply and click OK."
+msgid "<image id=\"img_id1621753\" src=\"res/helpimg/what-if.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id1621753\">what-if sheet area</alt></image>"
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id1342204\n"
+"multioperation.xhp\n"
+"hd_id3145239\n"
+"41\n"
"help.text"
-msgid "The options in the <emph>Line arrangement</emph> area can be used to apply multiple border styles."
+msgid "Calculating With One Formula and One Variable"
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"hd_id4454481\n"
+"multioperation.xhp\n"
+"par_id3146888\n"
+"42\n"
"help.text"
-msgid "Selection of cells"
-msgstr "Bashko qelizat"
+msgid "To calculate the profit, first enter any number as the quantity (items sold) - in this example 2000. The profit is found from the formula Profit=Quantity * (Selling price - Direct costs) - Fixed costs. Enter this formula in B5."
+msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id7251503\n"
+"multioperation.xhp\n"
+"par_id3157875\n"
+"43\n"
"help.text"
-msgid "Depending on the selection of cells, the area looks different."
+msgid "In column D enter given annual sales, one below the other; for example, 500 to 5000, in steps of 500."
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8716696\n"
+"multioperation.xhp\n"
+"par_id3159115\n"
+"44\n"
"help.text"
-msgid "Selection"
-msgstr "Selektimet"
+msgid "Select the range D2:E11, and thus the values in column D and the empty cells alongside in column E."
+msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id4677877\n"
+"multioperation.xhp\n"
+"par_id3149723\n"
+"45\n"
"help.text"
-msgid "Line arrangement area"
-msgstr "Zona e numrit të sllajdit"
+msgid "Choose <emph>Data - Multiple operations</emph>."
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id807824\n"
+"multioperation.xhp\n"
+"par_id3149149\n"
+"46\n"
"help.text"
-msgid "One cell"
-msgstr "Qeliza e tabelës"
+msgid "With the cursor in the <emph>Formulas </emph>field, click cell B5."
+msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8473464\n"
+"multioperation.xhp\n"
+"par_id3149355\n"
+"47\n"
"help.text"
-msgid "<image id=\"img_id1737113\" src=\"res/helpimg/border_ca_1.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1737113\">borders with one cell selected</alt></image>"
+msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4. This means that B4, the quantity, is the variable in the formula, which is replaced by the selected column values."
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id3509933\n"
+"multioperation.xhp\n"
+"par_id3149009\n"
+"48\n"
"help.text"
-msgid "Cells in a column"
-msgstr "Shtylla në interval"
+msgid "Close the dialog with <emph>OK</emph>. You see the profits for the different quantities in column E."
+msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id6635639\n"
+"multioperation.xhp\n"
+"hd_id3148725\n"
+"49\n"
"help.text"
-msgid "<image id=\"img_id1680959\" src=\"res/helpimg/border_ca_2.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id1680959\">borders with a column selected</alt></image>"
+msgid "Calculating with Several Formulas Simultaneously"
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8073366\n"
+"multioperation.xhp\n"
+"par_id3146880\n"
+"50\n"
"help.text"
-msgid "Cells in a row"
-msgstr "Rreshti në interval."
+msgid "Delete column E."
+msgstr "Fshije kolonën"
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id6054567\n"
+"multioperation.xhp\n"
+"par_id3154675\n"
+"51\n"
"help.text"
-msgid "<image id=\"img_id9623096\" src=\"res/helpimg/border_ca_3.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id9623096\">borders with a row selected</alt></image>"
+msgid "Enter the following formula in C5: = B5 / B4. You are now calculating the annual profit per item sold."
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id466322\n"
+"multioperation.xhp\n"
+"par_id3148885\n"
+"52\n"
"help.text"
-msgid "Cells in a block of 2x2 or more"
+msgid "Select the range D2:F11, thus three columns."
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id4511551\n"
+"multioperation.xhp\n"
+"par_id3147474\n"
+"53\n"
"help.text"
-msgid "<image id=\"img_id8139591\" src=\"res/helpimg/border_ca_4.png\" width=\"1.2602in\" height=\"1.5937in\"><alt id=\"alt_id8139591\">borders with a block selected</alt></image>"
+msgid "Choose <emph>Data - Multiple Operations</emph>."
+msgstr "Nuk mund ta hap fajllin $(URL1)."
+
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3154846\n"
+"54\n"
+"help.text"
+msgid "With the cursor in the <emph>Formulas</emph> field, select cells B5 thru C5."
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id5383465\n"
+"multioperation.xhp\n"
+"par_id3153931\n"
+"55\n"
"help.text"
-msgid "You cannot apply borders to multiple selections."
+msgid "Set the cursor in the <emph>Column input cell</emph> field and click cell B4."
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"hd_id7790154\n"
+"multioperation.xhp\n"
+"par_id3150862\n"
+"56\n"
"help.text"
-msgid "Default Settings"
-msgstr "Rregullimet e parazgjedhura"
+msgid "Close the dialog with <emph>OK</emph>. You will now see the profits in column E and the annual profit per item in column F."
+msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id2918485\n"
+"multioperation.xhp\n"
+"hd_id3146139\n"
+"3\n"
"help.text"
-msgid "Click one of the <emph>Default</emph> icons to set or reset multiple borders."
+msgid "Multiple Operations Across Rows and Columns"
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id1836909\n"
+"multioperation.xhp\n"
+"par_id3148584\n"
+"4\n"
"help.text"
-msgid "The thin gray lines inside an icon show the borders that will be reset or cleared."
+msgid "<item type=\"productname\">%PRODUCTNAME</item> allows you to carry out joint multiple operations for columns and rows in so-called cross-tables. The formula cell has to refer to both the data range arranged in rows and the one arranged in columns. Select the range defined by both data ranges and call the multiple operation dialog. Enter the reference to the formula in the <emph>Formulas</emph> field. The <emph>Row input cell</emph> and the <emph>Column input cell</emph> fields are used to enter the reference to the corresponding cells of the formula."
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id5212561\n"
+"multioperation.xhp\n"
+"hd_id3149949\n"
+"57\n"
"help.text"
-msgid "The dark lines inside an icon show the lines that will be set using the selected line style and color."
+msgid "Calculating with Two Variables"
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id4818872\n"
+"multioperation.xhp\n"
+"par_id3154808\n"
+"58\n"
"help.text"
-msgid "The thick gray lines inside an icon show the lines that will not be changed."
+msgid "Consider columns A and B of the sample table above. You now want to vary not just the quantity produced annually, but also the selling price, and you are interested in the profit in each case."
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"hd_id8989226\n"
+"multioperation.xhp\n"
+"par_id3149731\n"
+"59\n"
"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
+msgid "Expand the table shown above. D2 thru D11 contain the numbers 500, 1000 and so on, up to 5000. In E1 through H1 enter the numbers 8, 10, 15 and 20."
+msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id622577\n"
+"multioperation.xhp\n"
+"par_id3152810\n"
+"95\n"
"help.text"
-msgid "Select a block of about 8x8 cells, then choose <emph>Format - Cells - Borders</emph>."
+msgid "Select the range D1:H11."
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8119754\n"
+"multioperation.xhp\n"
+"par_id3153620\n"
+"96\n"
"help.text"
-msgid "<image id=\"img_id7261268\" src=\"res/helpimg/border_ca_5.png\" width=\"1.0937in\" height=\"0.2189in\"><alt id=\"alt_id7261268\">default icon row of Borders tab page</alt></image>"
+msgid "Choose <emph>Data - Multiple Operations</emph>."
+msgstr "Nuk mund ta hap fajllin $(URL1)."
+
+#: multioperation.xhp
+msgctxt ""
+"multioperation.xhp\n"
+"par_id3149981\n"
+"97\n"
+"help.text"
+msgid "With the cursor in the <emph>Formulas</emph> field, click cell B5."
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8964201\n"
+"multioperation.xhp\n"
+"par_id3156113\n"
+"98\n"
"help.text"
-msgid "Click the left icon to clear all lines. This removes all outer borders, all inner lines, and all diagonal lines."
+msgid "Set the cursor in the <emph>Row input cell</emph> field and click cell B1. This means that B1, the selling price, is the horizontally entered variable (with the values 8, 10, 15 and 20)."
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id6048463\n"
+"multioperation.xhp\n"
+"par_id3154049\n"
+"99\n"
"help.text"
-msgid "Click the second icon from the left to set an outer border and to remove all other lines."
+msgid "Set the cursor in the <emph>Column input cell</emph> field and click in B4. This means that B4, the quantity, is the vertically entered variable."
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id1495406\n"
+"multioperation.xhp\n"
+"par_id3149141\n"
+"100\n"
"help.text"
-msgid "Click the rightmost icon to set an outer border. The inner lines are not changed, except the diagonal lines, which will be removed."
+msgid "Close the dialog with OK. You see the profits for the different selling prices in the range E2:H11."
msgstr ""
-#: borders.xhp
+#: multioperation.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id9269386\n"
+"multioperation.xhp\n"
+"par_id3155104\n"
+"101\n"
"help.text"
-msgid "Now you can continue to see which lines the other icons will set or remove."
+msgid "<link href=\"text/scalc/01/12060000.xhp\" name=\"Multiple operations\">Multiple operations</link>"
msgstr ""
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"hd_id3593554\n"
+"multitables.xhp\n"
+"tit\n"
"help.text"
-msgid "User Defined Settings"
-msgstr "Indeks i definuar nga shfrytëzuesi"
+msgid "Applying Multiple Sheets"
+msgstr "Selekto të Gjitha Fletët"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id4018066\n"
+"multitables.xhp\n"
+"bm_id3154759\n"
"help.text"
-msgid "In the <emph>User defined</emph> area, you can click to set or remove individual lines. The preview shows lines in three different states."
+msgid "<bookmark_value>sheets; inserting</bookmark_value> <bookmark_value>inserting; sheets</bookmark_value> <bookmark_value>sheets; selecting multiple</bookmark_value> <bookmark_value>appending sheets</bookmark_value> <bookmark_value>selecting;multiple sheets</bookmark_value> <bookmark_value>multiple sheets</bookmark_value> <bookmark_value>calculating;multiple sheets</bookmark_value>"
msgstr ""
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8004699\n"
+"multitables.xhp\n"
+"hd_id3154759\n"
+"9\n"
"help.text"
-msgid "Repeatedly click an edge or a corner to switch through the three different states."
+msgid "<variable id=\"multitables\"><link href=\"text/scalc/guide/multitables.xhp\" name=\"Applying Multiple Sheets\">Applying Multiple Sheets</link></variable>"
msgstr ""
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8037659\n"
+"multitables.xhp\n"
+"hd_id3148576\n"
+"10\n"
"help.text"
-msgid "Line types"
-msgstr "Llojet e fajllave"
+msgid "Inserting a Sheet"
+msgstr "Largo mbrojtjen nga fleta"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id2305978\n"
+"multitables.xhp\n"
+"par_id3154731\n"
+"4\n"
"help.text"
-msgid "Image"
-msgstr "Fotografi"
+msgid "Choose <item type=\"menuitem\">Insert - Sheet</item> to insert a new sheet or an existing sheet from another file."
+msgstr ""
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8716086\n"
+"multitables.xhp\n"
+"par_id05092009140203598\n"
"help.text"
-msgid "Meaning"
-msgstr "Kernimi"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog box where you can assign macros to sheet events.</ahelp>"
+msgstr ""
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id3978087\n"
+"multitables.xhp\n"
+"par_id05092009140203523\n"
"help.text"
-msgid "A black line"
-msgstr "Stili i linjës"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a window where you can assign a color to the sheet tab.</ahelp>"
+msgstr ""
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id4065065\n"
+"multitables.xhp\n"
+"par_id050920091402035\n"
"help.text"
-msgid "<image id=\"img_id9379863\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9379863\">solid line for user defined border</alt></image>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to select all sheets in the document.</ahelp>"
msgstr ""
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id6987823\n"
+"multitables.xhp\n"
+"par_id0509200914020391\n"
"help.text"
-msgid "A black line sets the corresponding line of the selected cells. The line is shown as a dotted line when you choose the 0.05 pt line style. Double lines are shown when you select a double line style."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to deselect all sheets in the document, except the current sheet.</ahelp>"
msgstr ""
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id1209143\n"
+"multitables.xhp\n"
+"hd_id3154491\n"
+"11\n"
"help.text"
-msgid "A gray line"
-msgstr "Stili i linjës"
+msgid "Selecting Multiple Sheets"
+msgstr "Selekto të Gjitha Fletët"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id6653340\n"
+"multitables.xhp\n"
+"par_id3145251\n"
+"6\n"
"help.text"
-msgid "<image id=\"img_id6972563\" src=\"res/helpimg/border_ca_gray.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id6972563\">gray line for user defined border</alt></image>"
+msgid "The sheet tab of the current sheet is always visible in white in front of the other sheet tabs. The other sheet tabs are gray when they are not selected. By clicking other sheet tabs while pressing <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> you can select multiple sheets."
msgstr ""
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id2278817\n"
+"multitables.xhp\n"
+"par_idN106B7\n"
"help.text"
-msgid "A gray line is shown when the corresponding line of the selected cells will not be changed. No line will be set or removed at this position."
+msgid "You can use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard."
msgstr ""
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id5374919\n"
+"multitables.xhp\n"
+"hd_id3155600\n"
+"12\n"
"help.text"
-msgid "A white line"
-msgstr "Stili i linjës"
+msgid "Undoing a Selection"
+msgstr "Zgjedhja e databazës"
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id52491\n"
+"multitables.xhp\n"
+"par_id3146969\n"
+"13\n"
"help.text"
-msgid "<image id=\"img_id3801080\" src=\"res/helpimg/border_ca_white.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id3801080\">white line for user defined border</alt></image>"
+msgid "To undo the selection of a sheet, click its sheet tab again while pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key. The sheet that is currently visible cannot be removed from the selection."
msgstr ""
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id372325\n"
+"multitables.xhp\n"
+"hd_id3156382\n"
+"15\n"
"help.text"
-msgid "A white line is shown when the corresponding line of the selected cells will be removed."
+msgid "Calculating Across Multiple Sheets"
msgstr ""
-#: borders.xhp
+#: multitables.xhp
msgctxt ""
-"borders.xhp\n"
-"hd_id7282937\n"
+"multitables.xhp\n"
+"par_id3155333\n"
+"16\n"
"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
+msgid "You can refer to a range of sheets in a formula by specifying the first and last sheet of the range, for example, <item type=\"literal\">=SUM(Sheet1.A1:Sheet3.A1) </item>sums up all A1 cells on Sheet1 through Sheet3."
+msgstr ""
-#: borders.xhp
+#: note_insert.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id4230780\n"
+"note_insert.xhp\n"
+"tit\n"
"help.text"
-msgid "Select a single cell, then choose <emph>Format - Cells - Borders</emph>."
+msgid "Inserting and Editing Comments"
+msgstr "Korrespondenca personale dhe dokumentet"
+
+#: note_insert.xhp
+msgctxt ""
+"note_insert.xhp\n"
+"bm_id3153968\n"
+"help.text"
+msgid "<bookmark_value>comments; on cells</bookmark_value> <bookmark_value>cells;comments</bookmark_value> <bookmark_value>remarks on cells</bookmark_value> <bookmark_value>formatting;comments on cells</bookmark_value> <bookmark_value>viewing;comments on cells</bookmark_value> <bookmark_value>displaying; comments</bookmark_value>"
msgstr ""
-#: borders.xhp
+#: note_insert.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id1712393\n"
+"note_insert.xhp\n"
+"hd_id3153968\n"
+"31\n"
"help.text"
-msgid "Click the lower edge to set a very thin line as a lower border. All other lines will be removed from the cell."
+msgid "<variable id=\"note_insert\"><link href=\"text/scalc/guide/note_insert.xhp\" name=\"Inserting and Editing Comments\">Inserting and Editing Comments</link></variable>"
msgstr ""
-#: borders.xhp
+#: note_insert.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id5149693\n"
+"note_insert.xhp\n"
+"par_id3150440\n"
+"32\n"
"help.text"
-msgid "<image id=\"img_id9467452\" src=\"res/helpimg/border_ca_6.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id9467452\">setting a thin lower border</alt></image>"
+msgid "You can assign a comment to each cell by choosing <link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\"><emph>Insert - Comment</emph></link>. The comment is indicated by a small red square, the comment indicator, in the cell."
msgstr ""
-#: borders.xhp
+#: note_insert.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id5759453\n"
+"note_insert.xhp\n"
+"par_id3145750\n"
+"34\n"
"help.text"
-msgid "Choose a thicker line style and click the lower edge. This sets a thicker line as a lower border."
+msgid "The comment is visible whenever the mouse pointer is over the cell, provided you have activated <emph>Help - Tips</emph> or - <emph>Extended Tips</emph>."
msgstr ""
-#: borders.xhp
+#: note_insert.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id6342051\n"
+"note_insert.xhp\n"
+"par_id3148575\n"
+"33\n"
"help.text"
-msgid "<image id=\"img_id7431562\" src=\"res/helpimg/border_ca_7.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id7431562\">setting a thick line as a border</alt></image>"
+msgid "When you select the cell, you can choose <emph>Show Comment</emph> from the context menu of the cell. Doing so keeps the comment visible until you deactivate the <emph>Show Comment</emph> command from the same context menu."
msgstr ""
-#: borders.xhp
+#: note_insert.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id5775322\n"
+"note_insert.xhp\n"
+"par_id3149958\n"
+"35\n"
"help.text"
-msgid "Click the second <emph>Default</emph> icon from the left to set all four borders. Then repeatedly click the lower edge until a white line is shown. This removes the lower border."
+msgid "To edit a permanently visible comment, just click in it. If you delete the entire text of the comment, the comment itself is deleted."
msgstr ""
-#: borders.xhp
+#: note_insert.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id2882778\n"
+"note_insert.xhp\n"
+"par_idN10699\n"
"help.text"
-msgid "<image id=\"img_id8155766.00000001\" src=\"res/helpimg/border_ca_8.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id8155766.00000001\">removing lower border</alt></image>"
+msgid "Move or resize each comment as you like."
msgstr ""
-#: borders.xhp
+#: note_insert.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id8102053\n"
+"note_insert.xhp\n"
+"par_idN1069D\n"
"help.text"
-msgid "You can combine several line types and styles. The last image shows how to set thick outer borders (the thick black lines), while any diagonal lines inside the cell will not be touched (gray lines)."
+msgid "Format each comment by specifying background color, transparency, border style, and text alignment. Choose the commands from the context menu of the comment."
msgstr ""
-#: borders.xhp
+#: note_insert.xhp
msgctxt ""
-"borders.xhp\n"
-"par_id2102420\n"
+"note_insert.xhp\n"
+"par_id3144764\n"
+"38\n"
"help.text"
-msgid "<image id=\"img_id5380718\" src=\"res/helpimg/border_ca_9.png\" width=\"1.2602in\" height=\"1.1252in\"><alt id=\"alt_id5380718\">advanced example for cell borders</alt></image>"
+msgid "To show or hide the comment indicator, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph> and mark or unmark the <emph>Comment indicator</emph> check box."
msgstr ""
-#: userdefined_function.xhp
+#: note_insert.xhp
msgctxt ""
-"userdefined_function.xhp\n"
+"note_insert.xhp\n"
+"par_id3150715\n"
+"39\n"
+"help.text"
+msgid "To display a help tip for a selected cell, use <emph>Data - Validity - Input Help</emph>."
+msgstr ""
+
+#: note_insert.xhp
+msgctxt ""
+"note_insert.xhp\n"
+"par_id3153707\n"
+"36\n"
+"help.text"
+msgid "<link href=\"text/shared/01/04050000.xhp\" name=\"Insert - Comment\">Insert - Comment</link>"
+msgstr ""
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
"tit\n"
"help.text"
-msgid "User-Defined Functions"
-msgstr "Indeks i definuar nga shfrytëzuesi"
+msgid "Converting Text to Numbers"
+msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"bm_id3155411\n"
+"numbers_text.xhp\n"
+"bm_id3145068\n"
"help.text"
-msgid "<bookmark_value>functions; user-defined</bookmark_value><bookmark_value>user-defined functions</bookmark_value><bookmark_value>Basic IDE for user-defined functions</bookmark_value><bookmark_value>IDE; Basic IDE</bookmark_value><bookmark_value>programming;functions</bookmark_value>"
+msgid "<bookmark_value>formats; text as numbers</bookmark_value> <bookmark_value>time format conversion</bookmark_value> <bookmark_value>date formats;conversion</bookmark_value> <bookmark_value>converting;text, into numbers</bookmark_value>"
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"hd_id3155411\n"
-"1\n"
+"numbers_text.xhp\n"
+"hd_id0908200901265171\n"
"help.text"
-msgid "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Defining Functions Yourself\">User-Defined Functions</link></variable>"
+msgid "<variable id=\"numbers_text\"><link href=\"text/scalc/guide/numbers_text.xhp\" name=\"Converting Text to Numbers\">Converting Text to Numbers</link></variable>"
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3153969\n"
-"2\n"
+"numbers_text.xhp\n"
+"par_id0908200901265127\n"
"help.text"
-msgid "You can apply user-defined functions in $[officename] Calc in the following ways:"
+msgid "Calc converts text inside cells to the respective numeric values if an unambiguous conversion is possible. If no conversion is possible, Calc returns a #VALUE! error."
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3145366\n"
-"4\n"
+"numbers_text.xhp\n"
+"par_id0908200901265196\n"
"help.text"
-msgid "You can define your own functions using the Basic-IDE. This method requires a basic knowledge of programming."
+msgid "Only integer numbers including exponent are converted, and ISO 8601 dates and times in their extended formats with separators. Anything else, like fractional numbers with decimal separators or dates other than ISO 8601, is not converted, as the text string would be locale dependent. Leading and trailing blanks are ignored."
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3153768\n"
-"3\n"
+"numbers_text.xhp\n"
+"par_id0908200901265220\n"
"help.text"
-msgid "You can program functions as <link href=\"text/scalc/01/04060111.xhp\" name=\"add-ins\">add-ins</link>. This method requires an advanced knowledge of programming."
+msgid "The following ISO 8601 formats are converted:"
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"hd_id3149260\n"
-"6\n"
+"numbers_text.xhp\n"
+"par_id0908200901265288\n"
"help.text"
-msgid "Defining A Function Using %PRODUCTNAME Basic"
+msgid "CCYY-MM-DD"
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3148456\n"
-"7\n"
+"numbers_text.xhp\n"
+"par_id0908200901265267\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item>."
+msgid "CCYY-MM-DDThh:mm"
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3154510\n"
-"8\n"
+"numbers_text.xhp\n"
+"par_id0908200901265248\n"
"help.text"
-msgid "Click the <emph>Edit</emph> button. You will now see the Basic IDE."
+msgid "CCYY-MM-DDThh:mm:ss"
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3150327\n"
-"9\n"
+"numbers_text.xhp\n"
+"par_id0908200901265374\n"
"help.text"
-msgid "Enter the function code. In this example, we define a <item type=\"literal\">VOL(a; b; c)</item> function that calculates the volume of a rectangular solid with side lengths <item type=\"literal\">a</item>, <item type=\"literal\">b</item> and <item type=\"literal\">c</item>:"
+msgid "CCYY-MM-DDThh:mm:ss,s"
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3155443\n"
-"10\n"
+"numbers_text.xhp\n"
+"par_id0908200901265327\n"
"help.text"
-msgid "Close the Basic-IDE window."
+msgid "CCYY-MM-DDThh:mm:ss.s"
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3150043\n"
-"11\n"
+"numbers_text.xhp\n"
+"par_id0908200901265399\n"
"help.text"
-msgid "Your function is automatically saved in the default module and is now available. If you apply the function in a Calc document that is to be used on another computer, you can copy the function to the Calc document as described in the next section."
+msgid "hh:mm"
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"hd_id3147340\n"
-"18\n"
+"numbers_text.xhp\n"
+"par_id0908200901265347\n"
"help.text"
-msgid "Copying a Function To a Document"
-msgstr "Drejtpërdrejt në fund të dokumentit"
+msgid "hh:mm:ss"
+msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3145232\n"
-"19\n"
+"numbers_text.xhp\n"
+"par_id0908200901265349\n"
"help.text"
-msgid "In stage 2 of \"Defining A Function Using %PRODUCTNAME Basic\", in the <emph>Macro</emph> dialog you clicked on <emph>Edit </emph>. As the default, in the <emph>Macro from</emph> field the <emph>My Macros - Standard - Module1</emph> module is selected. The <emph>Standard</emph> library resides locally in your user directory."
+msgid "hh:mm:ss,s"
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3154022\n"
-"20\n"
+"numbers_text.xhp\n"
+"par_id0908200901265342\n"
"help.text"
-msgid "If you want to copy the user-defined function to a Calc document:"
+msgid "hh:mm:ss.s"
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3150304\n"
-"21\n"
+"numbers_text.xhp\n"
+"par_id0908200901265491\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
+msgid "The century code CC may not be omitted. Instead of the T date and time separator, exactly one space character may be used."
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3150086\n"
-"22\n"
+"numbers_text.xhp\n"
+"par_id0908200901265467\n"
"help.text"
-msgid "In the <emph>Macro from</emph> field select <emph>My Macros - Standard - Module1</emph> and click <emph>Edit</emph>."
+msgid "If a date is given, it must be a valid Gregorian calendar date. In this case the optional time must be in the range 00:00 to 23:59:59.99999..."
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3166430\n"
-"23\n"
+"numbers_text.xhp\n"
+"par_id0908200901265420\n"
"help.text"
-msgid "In the Basic-IDE, select the source of your user-defined function and copy it to the clipboard."
+msgid "If only a time string is given, it may have an hours value of more than 24, while minutes and seconds can have a maximum value of 59."
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_idN1081D\n"
+"numbers_text.xhp\n"
+"par_id0908200901265448\n"
"help.text"
-msgid "Close the Basic-IDE."
-msgstr "Master IDE%s, ndarja Nr. %s [%s]"
+msgid "The conversion is done for single arguments only, as in =A1+A2, or =\"1E2\"+1. Cell range arguments are not affected, so SUM(A1:A2) differs from A1+A2 if at least one of the two cells contain a convertible string."
+msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3150517\n"
-"24\n"
+"numbers_text.xhp\n"
+"par_id090820090126540\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
+msgid "Strings inside formulas are also converted, such as in =\"1999-11-22\"+42, which returns the date 42 days after November 22nd, 1999. Calculations involving localized dates as strings inside the formula return an error. For example, the localized date string \"11/22/1999\" or \"22.11.1999\" cannot be used for the automatic conversion."
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3145384\n"
-"25\n"
+"numbers_text.xhp\n"
+"hd_id1005200903485368\n"
"help.text"
-msgid "In the <emph>Macro from</emph> field select <emph>(Name of the Calc document) - Standard - Module1</emph>. Click <emph>Edit</emph>."
+msgid "Example"
+msgstr "Shembuj:"
+
+#: numbers_text.xhp
+msgctxt ""
+"numbers_text.xhp\n"
+"par_id1005200903485359\n"
+"help.text"
+msgid "In A1 enter the text <item type=\"literal\">'1e2</item> (which is converted to the number 100 internally)."
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3148699\n"
-"26\n"
+"numbers_text.xhp\n"
+"par_id1005200903485341\n"
"help.text"
-msgid "Paste the clipboard contents in the Basic-IDE of the document."
+msgid "In A2 enter <item type=\"literal\">=A1+1</item> (which correctly results in 101)."
msgstr ""
-#: userdefined_function.xhp
+#: numbers_text.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"hd_id3153305\n"
-"12\n"
+"numbers_text.xhp\n"
+"par_id0908200901265544\n"
"help.text"
-msgid "Applying a User-defined Function in $[officename] Calc"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
msgstr ""
-#: userdefined_function.xhp
+#: print_details.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3148869\n"
+"print_details.xhp\n"
+"tit\n"
+"help.text"
+msgid "Printing Sheet Details"
+msgstr "Shfaq detajet e konfigurimit"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"bm_id3154346\n"
+"help.text"
+msgid "<bookmark_value>printing;sheet details</bookmark_value><bookmark_value>sheets; printing details</bookmark_value><bookmark_value>grids; printing sheet grids</bookmark_value><bookmark_value>formulas; printing, instead of results</bookmark_value><bookmark_value>comments; printing</bookmark_value><bookmark_value>charts;printing</bookmark_value><bookmark_value>sheet grids; printing</bookmark_value><bookmark_value>cells; printing grids</bookmark_value><bookmark_value>borders; printing cells</bookmark_value><bookmark_value>zero values; printing</bookmark_value><bookmark_value>null values; printing</bookmark_value><bookmark_value>draw objects;printing</bookmark_value>"
+msgstr ""
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"hd_id3154346\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_details.xhp\" name=\"Printing Sheet Details\">Printing Sheet Details</link></variable>"
+msgstr ""
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3153728\n"
+"2\n"
+"help.text"
+msgid "When printing a sheet you can select which details are to be printed:"
+msgstr ""
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3150010\n"
+"3\n"
+"help.text"
+msgid "Row and column headers"
+msgstr "~Krerët e shtyllës dhe rreshtit"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3154013\n"
+"4\n"
+"help.text"
+msgid "Sheet grid"
+msgstr "Rrjeta e dukshme"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3145273\n"
+"5\n"
+"help.text"
+msgid "Comments"
+msgstr "Përmbajtjet"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3145801\n"
+"6\n"
+"help.text"
+msgid "Objects and graphics"
+msgstr "Grafikat dhe objektet"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3154491\n"
+"7\n"
+"help.text"
+msgid "Charts"
+msgstr "Diagramet"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3154731\n"
+"8\n"
+"help.text"
+msgid "Drawing objects"
+msgstr "Objektet e vizatimit"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3149400\n"
+"9\n"
+"help.text"
+msgid "Formulas"
+msgstr "Formulat"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3150752\n"
+"10\n"
+"help.text"
+msgid "To choose the details proceed as follows:"
+msgstr ""
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3145640\n"
+"11\n"
+"help.text"
+msgid "Select the sheet you want to print."
+msgstr "A dëshironi të kontrolloni tekstin kryesor?"
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3150042\n"
+"12\n"
+"help.text"
+msgid "Choose <emph>Format - Page</emph>."
+msgstr "Nuk mund ta hap fajllin $(URL1)."
+
+#: print_details.xhp
+msgctxt ""
+"print_details.xhp\n"
+"par_id3147340\n"
"13\n"
"help.text"
-msgid "Once you have defined the function <item type=\"literal\">VOL(a; b; c)</item> in the Basic-IDE, you can apply it the same way as the built-in functions of $[officename] Calc."
+msgid "The command is not visible if the sheet was opened with write protection on. In that case, click the <emph>Edit File </emph>icon on the <emph>Standard</emph> Bar."
msgstr ""
-#: userdefined_function.xhp
+#: print_details.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3148606\n"
+"print_details.xhp\n"
+"par_id3146916\n"
"14\n"
"help.text"
-msgid "Open a Calc document and enter numbers for the function parameters <item type=\"literal\">a</item>, <item type=\"literal\">b</item>, and <item type=\"literal\">c</item> in cells A1, B1, and C1."
+msgid "Select the <emph>Sheet</emph> tab. In the <emph>Print </emph>area mark the details to be printed and click OK."
msgstr ""
-#: userdefined_function.xhp
+#: print_details.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3156019\n"
+"print_details.xhp\n"
+"par_id3145789\n"
"15\n"
"help.text"
-msgid "Set the cursor in another cell and enter the following:"
-msgstr ""
+msgid "Print the document."
+msgstr "Printo dokumentin"
-#: userdefined_function.xhp
+#: print_details.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3155264\n"
+"print_details.xhp\n"
+"par_id3150345\n"
"16\n"
"help.text"
-msgid "=VOL(A1;B1;C1)"
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
msgstr ""
-#: userdefined_function.xhp
+#: print_exact.xhp
msgctxt ""
-"userdefined_function.xhp\n"
-"par_id3146776\n"
-"17\n"
+"print_exact.xhp\n"
+"tit\n"
"help.text"
-msgid "The function is evaluated and you will see the result in the selected cell."
+msgid "Defining Number of Pages for Printing"
msgstr ""
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"tit\n"
+"print_exact.xhp\n"
+"bm_id3153194\n"
"help.text"
-msgid "Highlighting Negative Numbers"
-msgstr "Bashkësia e numrave natyral"
+msgid "<bookmark_value>printing; sheet counts</bookmark_value><bookmark_value>sheets; printing sheet counts</bookmark_value><bookmark_value>page breaks; spreadsheet preview</bookmark_value><bookmark_value>editing;print ranges</bookmark_value><bookmark_value>viewing;print ranges</bookmark_value><bookmark_value>previews;page breaks for printing</bookmark_value>"
+msgstr ""
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"bm_id3147434\n"
+"print_exact.xhp\n"
+"hd_id3153194\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>negative numbers</bookmark_value> <bookmark_value>numbers; highlighting negative numbers</bookmark_value> <bookmark_value>highlighting;negative numbers</bookmark_value> <bookmark_value>colors;negative numbers</bookmark_value> <bookmark_value>number formats;colors for negative numbers</bookmark_value>"
+msgid "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.xhp\" name=\"Defining Number of Pages for Printing\">Defining Number of Pages for Printing</link></variable>"
msgstr ""
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"hd_id3147434\n"
-"31\n"
+"print_exact.xhp\n"
+"par_id3153771\n"
+"2\n"
"help.text"
-msgid "<variable id=\"cellstyle_minusvalue\"><link href=\"text/scalc/guide/cellstyle_minusvalue.xhp\" name=\"Highlighting Negative Numbers\">Highlighting Negative Numbers</link></variable>"
+msgid "If a sheet is too large for a single printed page, $[officename] Calc will print the current sheet evenly divided over several pages. Since the automatic page break does not always take place in the optimal position, you can define the page distribution yourself."
msgstr ""
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"par_id3153878\n"
-"33\n"
+"print_exact.xhp\n"
+"par_id3159155\n"
+"3\n"
"help.text"
-msgid "You can format cells with a number format that highlights negative numbers in red. Alternatively, you can define your own number format in which negative numbers are highlighted in other colors."
+msgid "Go to the sheet to be printed."
msgstr ""
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"par_id3155600\n"
-"34\n"
+"print_exact.xhp\n"
+"par_id3150012\n"
+"4\n"
"help.text"
-msgid "Select the cells and choose <emph>Format - Cells</emph>."
+msgid "Choose <emph>View - Page Break Preview</emph>."
+msgstr "Nuk mund ta hap fajllin $(URL1)."
+
+#: print_exact.xhp
+msgctxt ""
+"print_exact.xhp\n"
+"par_id3146974\n"
+"5\n"
+"help.text"
+msgid "You will see the automatic distribution of the sheet across the print pages. The automatically created print ranges are indicated by dark blue lines, and the user-defined ones by light blue lines. The page breaks (line breaks and column breaks) are marked as black lines."
msgstr ""
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"par_id3146969\n"
-"35\n"
+"print_exact.xhp\n"
+"par_id3152578\n"
+"6\n"
"help.text"
-msgid "On the <emph>Numbers</emph> tab, select a number format and mark <emph>Negative numbers red</emph> check box. Click <emph>OK</emph>."
+msgid "You can move the blue lines with the mouse. You will find further options in the Context menu, including adding an additional print range, removing the scaling and inserting additional manual line and column breaks."
msgstr ""
-#: cellstyle_minusvalue.xhp
+#: print_exact.xhp
msgctxt ""
-"cellstyle_minusvalue.xhp\n"
-"par_id3145640\n"
-"36\n"
+"print_exact.xhp\n"
+"par_id3151073\n"
+"7\n"
"help.text"
-msgid "The cell number format is defined in two parts. The format for positive numbers and zero is defined in front of the semicolon; after the semicolon the formula for negative numbers is defined. You can change the code (RED) under <item type=\"menuitem\">Format code</item>. For example, instead of RED, enter <item type=\"literal\">YELLOW</item>. If the new code appears in the list after clicking the <item type=\"menuitem\">Add</item> icon, this is a valid entry."
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
msgstr ""
#: print_landscape.xhp
@@ -9891,1731 +9095,1770 @@ msgctxt ""
msgid "<link href=\"text/scalc/guide/printranges.xhp\">Defining Print Ranges on a Sheet</link>"
msgstr ""
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
+"print_title_row.xhp\n"
"tit\n"
"help.text"
-msgid "Calculating With Dates and Times"
+msgid "Printing Rows or Columns on Every Page"
msgstr ""
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"bm_id3146120\n"
+"print_title_row.xhp\n"
+"bm_id3151112\n"
"help.text"
-msgid "<bookmark_value>dates; in cells</bookmark_value> <bookmark_value>times; in cells</bookmark_value> <bookmark_value>cells;date and time formats</bookmark_value> <bookmark_value>current date and time values</bookmark_value>"
+msgid "<bookmark_value>printing; sheets on multiple pages</bookmark_value><bookmark_value>sheets; printing on multiple pages</bookmark_value><bookmark_value>rows; repeating when printing</bookmark_value><bookmark_value>columns; repeating when printing</bookmark_value><bookmark_value>repeating;columns/rows on printed pages</bookmark_value><bookmark_value>title rows; printing on all sheets</bookmark_value><bookmark_value>headers; printing on sheets</bookmark_value><bookmark_value>footers; printing on sheets</bookmark_value><bookmark_value>printing; rows/columns as table headings</bookmark_value><bookmark_value>headings;repeating rows/columns as</bookmark_value>"
msgstr ""
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"hd_id3146120\n"
-"11\n"
+"print_title_row.xhp\n"
+"hd_id3153727\n"
+"21\n"
"help.text"
-msgid "<variable id=\"calc_date\"><link href=\"text/scalc/guide/calc_date.xhp\" name=\"Calculating With Dates and Times\">Calculating With Dates and Times</link></variable>"
+msgid "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_title_row.xhp\" name=\"Printing Rows or Columns on Every Page\">Printing Rows or Columns on Every Page</link></variable>"
msgstr ""
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3154320\n"
-"12\n"
+"print_title_row.xhp\n"
+"par_id3154014\n"
+"2\n"
"help.text"
-msgid "In $[officename] Calc, you can perform calculations with current date and time values. As an example, to find out exactly how old you are in seconds or hours, follow the following steps:"
+msgid "If you have a sheet that is so large that it will be printed multiple pages, you can set up rows or columns to repeat on each printed page."
msgstr ""
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3150750\n"
-"13\n"
+"print_title_row.xhp\n"
+"par_id3146975\n"
+"7\n"
"help.text"
-msgid "In a spreadsheet, enter your birthday in cell A1."
+msgid "As an example, If you want to print the top two rows of the sheet as well as the first column (A)on all pages, do the following:"
msgstr ""
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3145642\n"
-"14\n"
+"print_title_row.xhp\n"
+"par_id3163710\n"
+"8\n"
"help.text"
-msgid "Enter the following formula in cell A3: <item type=\"literal\">=NOW()-A1</item>"
+msgid "Choose <emph>Format - Print Ranges - Edit</emph>. The <emph>Edit Print Ranges</emph> dialog appears."
msgstr ""
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3149020\n"
-"52\n"
+"print_title_row.xhp\n"
+"par_id3149958\n"
+"9\n"
"help.text"
-msgid "After pressing the <item type=\"keycode\">Enter</item> key you will see the result in date format. Since the result should show the difference between two dates as a number of days, you must format cell A3 as a number."
+msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area."
msgstr ""
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3155335\n"
-"53\n"
+"print_title_row.xhp\n"
+"par_id3145800\n"
+"10\n"
"help.text"
-msgid "Place the cursor in cell A3, right-click to open a context menu and choose <emph>Format Cells</emph>."
+msgid "The dialog shrinks so that you can see more of the sheet."
msgstr ""
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3147343\n"
-"54\n"
+"print_title_row.xhp\n"
+"par_id3155602\n"
+"11\n"
"help.text"
-msgid "The <item type=\"menuitem\">Format Cells</item> dialog appears. On the <item type=\"menuitem\">Numbers</item> tab, the \"Number\" category will appear already highlighted. The format is set to \"General\", which causes the result of a calculation containing date entries to be displayed as a date. To display the result as a number, set the number format to \"-1,234\" and close the dialog with the <item type=\"menuitem\">OK</item> button."
+msgid "Select the first two rows and, for this example, click cell A1 and drag to A2."
msgstr ""
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3147001\n"
-"15\n"
+"print_title_row.xhp\n"
+"par_id3154018\n"
+"12\n"
"help.text"
-msgid "The number of days between today's date and the specified date is displayed in cell A3."
+msgid "In the shrunk dialog you will see $1:$2. Rows 1 and 2 are now rows to repeat."
msgstr ""
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3150304\n"
-"16\n"
+"print_title_row.xhp\n"
+"par_id3153707\n"
+"13\n"
"help.text"
-msgid "Experiment with some additional formulas: in A4 enter =A3*24 to calculate the hours, in A5 enter =A4*60 for the minutes, and in A6 enter =A5*60 for seconds. Press the <item type=\"keycode\">Enter</item> key after each formula."
+msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area. The dialog is restored again."
msgstr ""
-#: calc_date.xhp
+#: print_title_row.xhp
msgctxt ""
-"calc_date.xhp\n"
-"par_id3149207\n"
-"17\n"
+"print_title_row.xhp\n"
+"par_id3155443\n"
+"14\n"
"help.text"
-msgid "The time since your date of birth will be calculated and displayed in the various units. The values are calculated as of the exact moment when you entered the last formula and pressed the <item type=\"keycode\">Enter</item> key. This value is not automatically updated, although \"Now\" continuously changes. In the <emph>Tools</emph> menu, the menu item <emph>Cell Contents - AutoCalculate</emph> is normally active; however, automatic calculation does not apply to the function NOW. This ensures that your computer is not solely occupied with updating the sheet."
+msgid "If you also want column A as a column to repeat, click the icon at the far right of the <emph>Columns to repeat</emph> area."
msgstr ""
-#: format_value_userdef.xhp
+#: print_title_row.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"tit\n"
+"print_title_row.xhp\n"
+"par_id3154256\n"
+"15\n"
"help.text"
-msgid "User-defined Number Formats"
-msgstr "Indeks i ri i përcaktuar nga shfrytëzuesi"
+msgid "Click column A (not in the column header)."
+msgstr ""
-#: format_value_userdef.xhp
+#: print_title_row.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"bm_id3143268\n"
+"print_title_row.xhp\n"
+"par_id3154704\n"
+"16\n"
"help.text"
-msgid "<bookmark_value>numbers;user-defined formatting</bookmark_value> <bookmark_value>formatting; user-defined numbers</bookmark_value> <bookmark_value>number formats; millions</bookmark_value> <bookmark_value>format codes; user-defined number formats</bookmark_value>"
+msgid "Click the icon again at the far right of the <emph>Columns to repeat</emph> area."
msgstr ""
-#: format_value_userdef.xhp
+#: print_title_row.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"hd_id3143268\n"
-"26\n"
+"print_title_row.xhp\n"
+"par_id3150088\n"
+"17\n"
"help.text"
-msgid "<variable id=\"format_value_userdef\"><link href=\"text/scalc/guide/format_value_userdef.xhp\" name=\"User-defined Number Formats\">User-defined Number Formats</link></variable>"
+msgid "Rows to repeat are rows from the sheet. You can define headers and footers to be printed on each print page independently of this in <emph>Format - Page</emph>."
msgstr ""
-#: format_value_userdef.xhp
+#: print_title_row.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3150400\n"
-"1\n"
+"print_title_row.xhp\n"
+"par_id3155380\n"
+"18\n"
"help.text"
-msgid "You can define your own number formats to display numbers in <item type=\"productname\">%PRODUCTNAME</item> Calc."
+msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
msgstr ""
-#: format_value_userdef.xhp
+#: print_title_row.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3150767\n"
-"2\n"
+"print_title_row.xhp\n"
+"par_id3154371\n"
+"19\n"
"help.text"
-msgid "As an example, to display the number 10,200,000 as 10.2 Million:"
+msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
msgstr ""
-#: format_value_userdef.xhp
+#: print_title_row.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3150868\n"
-"3\n"
+"print_title_row.xhp\n"
+"par_id3146113\n"
+"20\n"
"help.text"
-msgid "Select the cells to which you want to apply a new, user-defined format."
+msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format - Page - (Header / Footer)\">Format - Page - (Header / Footer)</link>"
msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3149664\n"
-"4\n"
+"printranges.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph>Format - Cells - Numbers</emph>."
+msgid "Using Print Ranges on a Spreadsheet"
msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3149260\n"
-"5\n"
+"printranges.xhp\n"
+"bm_id14648\n"
"help.text"
-msgid "In the <emph>Categories</emph> list box select \"User-defined\"."
+msgid "<bookmark_value>exporting;cells</bookmark_value><bookmark_value>printing; cells</bookmark_value><bookmark_value>ranges;print ranges</bookmark_value><bookmark_value>PDF export of print ranges</bookmark_value><bookmark_value>cell ranges; printing</bookmark_value><bookmark_value>cells; print ranges</bookmark_value><bookmark_value>print ranges</bookmark_value><bookmark_value>clearing, see also deleting/removing</bookmark_value><bookmark_value>defining;print ranges</bookmark_value><bookmark_value>extending print ranges</bookmark_value><bookmark_value>deleting;print ranges</bookmark_value>"
msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3148646\n"
-"6\n"
+"printranges.xhp\n"
+"par_idN108D7\n"
"help.text"
-msgid "In the <emph>Format code</emph> text box enter the following code:"
+msgid "<variable id=\"printranges\"><link href=\"text/scalc/guide/printranges.xhp\">Defining Print Ranges on a Sheet</link> </variable>"
msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3152596\n"
-"7\n"
+"printranges.xhp\n"
+"par_idN108F5\n"
"help.text"
-msgid "0.0,, \"Million\""
-msgstr "Pamja 100%"
+msgid "You can define which range of cells on a spreadsheet to print."
+msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3144764\n"
-"8\n"
+"printranges.xhp\n"
+"par_idN108FB\n"
"help.text"
-msgid "Click OK."
-msgstr "Kliko në objekt"
+msgid "The cells on the sheet that are not part of the defined print range are not printed or exported. Sheets without a defined print range are not printed and not exported to a PDF file, unless the document uses the Excel file format."
+msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3155417\n"
-"9\n"
+"printranges.xhp\n"
+"par_idN1077A\n"
"help.text"
-msgid "The following table shows the effects of rounding, thousands delimiters (,), decimal delimiters (.) and the placeholders # and 0."
+msgid "For files opened in Excel format, all sheets that do not contain a defined print range are printed. The same behavior occurs when you export the Excel formatted spreadsheet to a PDF file."
msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3146971\n"
-"10\n"
+"printranges.xhp\n"
+"par_idN108FE\n"
"help.text"
-msgid "Number"
-msgstr "Numri"
+msgid "To Define a Print Range"
+msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3154757\n"
-"11\n"
+"printranges.xhp\n"
+"par_idN10905\n"
"help.text"
-msgid ".#,, \"Million\""
-msgstr "Pamja 100%"
+msgid "Select the cells that you want to print."
+msgstr "A dëshironi të kontrolloni tekstin kryesor?"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3147338\n"
-"12\n"
+"printranges.xhp\n"
+"par_idN10909\n"
"help.text"
-msgid "0.0,, \"Million\""
-msgstr "Pamja 100%"
+msgid "Choose <emph>Format - Print Ranges - Define</emph>."
+msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3146920\n"
-"13\n"
+"printranges.xhp\n"
+"par_idN10910\n"
"help.text"
-msgid "#,, \"Million\""
-msgstr "Pamja 100%"
+msgid "To Add Cells to a Print Range"
+msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3147344\n"
-"14\n"
+"printranges.xhp\n"
+"par_idN10917\n"
"help.text"
-msgid "10200000"
+msgid "Select the cells that you want to add to the existing print range."
msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3147003\n"
-"15\n"
+"printranges.xhp\n"
+"par_idN1091B\n"
"help.text"
-msgid "10.2 Million"
-msgstr "Titullimi 10"
+msgid "Choose <emph>Format - Print Ranges - Add</emph>."
+msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3166426\n"
-"16\n"
+"printranges.xhp\n"
+"par_idN10922\n"
"help.text"
-msgid "10.2 Million"
-msgstr "Titullimi 10"
+msgid "To Clear a Print Range"
+msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3155113\n"
-"17\n"
+"printranges.xhp\n"
+"par_idN10929\n"
"help.text"
-msgid "10 Million"
-msgstr "Titullimi 10"
+msgid "Choose <emph>Format - Print Ranges - Remove</emph>."
+msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3150369\n"
-"18\n"
+"printranges.xhp\n"
+"par_idN10953\n"
"help.text"
-msgid "500000"
+msgid "Using the Page Break Preview to Edit Print Ranges"
msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3145585\n"
-"19\n"
+"printranges.xhp\n"
+"par_idN1093E\n"
"help.text"
-msgid ".5 Million"
-msgstr "Titullimi 10"
+msgid "In the <emph>Page Break Preview</emph>, print ranges as well as page break regions are outlined by a blue border and contain a centered page number in gray. Nonprinting areas have a gray background."
+msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3154486\n"
-"20\n"
+"printranges.xhp\n"
+"par_id3153143\n"
+"8\n"
"help.text"
-msgid "0.5 Million"
-msgstr "Titullimi 10"
+msgid "To define a new page break region, drag the border to a new location. When you define a new page break region, an automatic page break is replaced by a manual page break."
+msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3146114\n"
-"21\n"
+"printranges.xhp\n"
+"par_idN10930\n"
"help.text"
-msgid "1 Million"
-msgstr "Titullimi 10"
+msgid "To View and Edit Print Ranges"
+msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3155810\n"
-"22\n"
+"printranges.xhp\n"
+"par_idN10937\n"
"help.text"
-msgid "100000000"
-msgstr ""
+msgid "Choose <emph>View - Page Break Preview</emph>."
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3153818\n"
-"23\n"
+"printranges.xhp\n"
+"par_idN1082A\n"
"help.text"
-msgid "100. Million"
-msgstr "Pamja 100%"
+msgid "To change the default zoom factor of the <emph>Page Break Preview</emph>, double click the percentage value on the <emph>Status</emph> bar, and select a new zoom factor."
+msgstr ""
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3151241\n"
-"24\n"
+"printranges.xhp\n"
+"par_idN10836\n"
"help.text"
-msgid "100.0 Million"
-msgstr "Pamja 100%"
+msgid "Edit the print range."
+msgstr "Edito Intervalin e Printimit"
-#: format_value_userdef.xhp
+#: printranges.xhp
msgctxt ""
-"format_value_userdef.xhp\n"
-"par_id3144771\n"
-"25\n"
+"printranges.xhp\n"
+"par_idN10944\n"
"help.text"
-msgid "100 Million"
-msgstr "Pamja 100%"
+msgid "To change the size of a print range, drag a border of the range to a new location."
+msgstr ""
-#: edit_multitables.xhp
+#: printranges.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"tit\n"
+"printranges.xhp\n"
+"par_id3151075\n"
+"12\n"
"help.text"
-msgid "Copying to Multiple Sheets"
-msgstr "Referencat në një interval (të shumëfisht)."
+msgid "To delete a manual page break that is contained in a print range, drag the border of the page break outside of the print range."
+msgstr ""
-#: edit_multitables.xhp
+#: printranges.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"bm_id3149456\n"
+"printranges.xhp\n"
+"par_idN10948\n"
"help.text"
-msgid "<bookmark_value>copying;values, to multiple sheets</bookmark_value><bookmark_value>pasting;values in multiple sheets</bookmark_value><bookmark_value>data;inserting in multiple sheets</bookmark_value> <bookmark_value>sheets; simultaneous multiple filling</bookmark_value>"
+msgid "To clear a print range, drag a border of the range onto the opposite border of the range."
msgstr ""
-#: edit_multitables.xhp
+#: printranges.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"hd_id3149456\n"
-"3\n"
+"printranges.xhp\n"
+"par_idN10862\n"
"help.text"
-msgid "<variable id=\"edit_multitables\"><link href=\"text/scalc/guide/edit_multitables.xhp\" name=\"Copying to Multiple Sheets\">Copying to Multiple Sheets</link> </variable>"
+msgid "To exit the <emph>Page Break Preview</emph>, choose <emph>View - Normal</emph>."
msgstr ""
-#: edit_multitables.xhp
+#: printranges.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"par_id3150868\n"
-"6\n"
+"printranges.xhp\n"
+"par_idN109CF\n"
"help.text"
-msgid "In $[officename] Calc, you can insert values, text or formulas that are simultaneously copied to other selected sheets of your document."
+msgid "<link href=\"text/scalc/01/05080300.xhp\">Editing Print Ranges</link>"
msgstr ""
-#: edit_multitables.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"par_id3153768\n"
-"8\n"
+"relativ_absolut_ref.xhp\n"
+"tit\n"
"help.text"
-msgid "Select all desired sheets by holding down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> key and clicking the corresponding register tabs that are still gray at the bottom margin of the workspace. All selected register tabs are now white."
+msgid "Addresses and References, Absolute and Relative"
msgstr ""
-#: edit_multitables.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"par_idN10614\n"
+"relativ_absolut_ref.xhp\n"
+"bm_id3156423\n"
"help.text"
-msgid "You can use Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down to select multiple sheets using the keyboard."
+msgid "<bookmark_value>addressing; relative and absolute</bookmark_value><bookmark_value>references; absolute/relative</bookmark_value><bookmark_value>absolute addresses in spreadsheets</bookmark_value><bookmark_value>relative addresses</bookmark_value><bookmark_value>absolute references in spreadsheets</bookmark_value><bookmark_value>relative references</bookmark_value><bookmark_value>references; to cells</bookmark_value><bookmark_value>cells; references</bookmark_value>"
msgstr ""
-#: edit_multitables.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"edit_multitables.xhp\n"
-"par_id3147435\n"
-"7\n"
+"relativ_absolut_ref.xhp\n"
+"hd_id3156423\n"
+"53\n"
"help.text"
-msgid "Now when you insert values, text or formulas into the active sheet, they will also appear in the identical positions in the other selected sheets. For example, data entered in cell A1 of the active sheet is automatically entered into cell A1 of any other seleted sheet."
+msgid "<variable id=\"relativ_absolut_ref\"><link href=\"text/scalc/guide/relativ_absolut_ref.xhp\" name=\"Addresses and References, Absolute and Relative\">Addresses and References, Absolute and Relative</link></variable>"
msgstr ""
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"tit\n"
+"relativ_absolut_ref.xhp\n"
+"hd_id3163712\n"
+"3\n"
"help.text"
-msgid "Applying Sort Lists"
-msgstr "Nuk mund të renditë zgjedhjen"
+msgid "Relative Addressing"
+msgstr "Madhësitë relative"
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"bm_id3150870\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3146119\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>filling;customized lists</bookmark_value><bookmark_value>sort lists;applying</bookmark_value><bookmark_value>defining;sort lists</bookmark_value><bookmark_value>geometric lists</bookmark_value><bookmark_value>arithmetic lists</bookmark_value><bookmark_value>series;sort lists</bookmark_value><bookmark_value>lists; user-defined</bookmark_value><bookmark_value>customized lists</bookmark_value>"
+msgid "The cell in column A, row 1 is addressed as A1. You can address a range of adjacent cells by first entering the coordinates of the upper left cell of the area, then a colon followed by the coordinates of the lower right cell. For example, the square formed by the first four cells in the upper left corner is addressed as A1:B2."
msgstr ""
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"hd_id3150870\n"
-"3\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3154730\n"
+"5\n"
"help.text"
-msgid "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.xhp\" name=\"Applying Sort Lists\">Applying Sort Lists</link> </variable>"
+msgid "By addressing an area in this way, you are making a relative reference to A1:B2. Relative here means that the reference to this area will be adjusted automatically when you copy the formulas."
msgstr ""
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"par_id3159154\n"
+"relativ_absolut_ref.xhp\n"
+"hd_id3149377\n"
+"6\n"
+"help.text"
+msgid "Absolute Addressing"
+msgstr "Vlerë absolute"
+
+#: relativ_absolut_ref.xhp
+msgctxt ""
+"relativ_absolut_ref.xhp\n"
+"par_id3154943\n"
"7\n"
"help.text"
-msgid "Sort lists allow you to type one piece of information in a cell, then drag it to fill in a consecutive list of items."
+msgid "Absolute references are the opposite of relative addressing. A dollar sign is placed before each letter and number in an absolute reference, for example, $A$1:$B$2."
msgstr ""
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"par_id3148645\n"
-"4\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3147338\n"
+"36\n"
"help.text"
-msgid "For example, enter the text \"Jan\" or \"January\" in an empty cell. Select the cell and click the mouse on the lower right corner of the cell border. Then drag the selected cell a few cells to the right or downwards. When you release the mouse button, the highlighted cells will be filled with the names of the months."
+msgid "$[officename] can convert the current reference, in which the cursor is positioned in the input line, from relative to absolute and vice versa by pressing Shift +F4. If you start with a relative address such as A1, the first time you press this key combination, both row and column are set to absolute references ($A$1). The second time, only the row (A$1), and the third time, only the column ($A1). If you press the key combination once more, both column and row references are switched back to relative (A1)"
msgstr ""
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"par_id2367931\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3153963\n"
+"52\n"
"help.text"
-msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
+msgid "$[officename] Calc shows the references to a formula. If, for example you click the formula =SUM(A1:C5;D15:D24) in a cell, the two referenced areas in the sheet will be highlighted in color. For example, the formula component \"A1:C5\" may be in blue and the cell range in question bordered in the same shade of blue. The next formula component \"D15:D24\" can be marked in red in the same way."
msgstr ""
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"par_id3152577\n"
-"5\n"
+"relativ_absolut_ref.xhp\n"
+"hd_id3154704\n"
+"29\n"
"help.text"
-msgid "The predefined series can be found under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</emph>. You can also create your own lists of text strings tailored to your needs, such as a list of your company's branch offices. When you use the information in these lists later (for example, as headings), just enter the first name in the list and expand the entry by dragging it with your mouse."
+msgid "When to Use Relative and Absolute References"
msgstr ""
-#: sorted_list.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"sorted_list.xhp\n"
-"par_id3147434\n"
-"6\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3147346\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
+msgid "What distinguishes a relative reference? Assume you want to calculate in cell E1 the sum of the cells in range A1:B2. The formula to enter into E1 would be: =SUM(A1:B2). If you later decide to insert a new column in front of column A, the elements you want to add would then be in B1:C2 and the formula would be in F1, not in E1. After inserting the new column, you would therefore have to check and correct all formulas in the sheet, and possibly in other sheets."
msgstr ""
-#: formula_enter.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"tit\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3155335\n"
+"9\n"
"help.text"
-msgid "Entering Formulas"
-msgstr "Formulat nuk formojnë një shtyllë."
+msgid "Fortunately, $[officename] does this work for you. After having inserted a new column A, the formula =SUM(A1:B2) will be automatically updated to =SUM(B1:C2). Row numbers will also be automatically adjusted when a new row 1 is inserted. Absolute and relative references are always adjusted in $[officename] Calc whenever the referenced area is moved. But be careful if you are copying a formula since in that case only the relative references will be adjusted, not the absolute references."
+msgstr ""
-#: formula_enter.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"bm_id3150868\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3145791\n"
+"39\n"
"help.text"
-msgid "<bookmark_value>formula bar; input line</bookmark_value><bookmark_value>input line in formula bar</bookmark_value><bookmark_value>formulas; inputting</bookmark_value><bookmark_value>inserting;formulas</bookmark_value>"
+msgid "Absolute references are used when a calculation refers to one specific cell in your sheet. If a formula that refers to exactly this cell is copied relatively to a cell below the original cell, the reference will also be moved down if you did not define the cell coordinates as absolute."
msgstr ""
-#: formula_enter.xhp
+#: relativ_absolut_ref.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"hd_id3150868\n"
-"9\n"
+"relativ_absolut_ref.xhp\n"
+"par_id3147005\n"
+"10\n"
"help.text"
-msgid "<variable id=\"formula_enter\"><link href=\"text/scalc/guide/formula_enter.xhp\" name=\"Entering Formulas\">Entering Formulas</link></variable>"
+msgid "Aside from when new rows and columns are inserted, references can also change when an existing formula referring to particular cells is copied to another area of the sheet. Assume you entered the formula =SUM(A1:A9) in row 10. If you want to calculate the sum for the adjacent column to the right, simply copy this formula to the cell to the right. The copy of the formula in column B will be automatically adjusted to =SUM(B1:B9)."
msgstr ""
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id6848353\n"
+"rename_table.xhp\n"
+"tit\n"
"help.text"
-msgid "You can enter formulas in several ways: using the icons, or by typing on the keyboard, or by a mixture of both methods."
-msgstr ""
+msgid "Renaming Sheets"
+msgstr "Selekto Fletët"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3145364\n"
-"10\n"
+"rename_table.xhp\n"
+"bm_id3150398\n"
"help.text"
-msgid "Click the cell in which you want to enter the formula."
+msgid "<bookmark_value>renaming;sheets</bookmark_value> <bookmark_value>sheet tabs;renaming</bookmark_value> <bookmark_value>tables;renaming</bookmark_value> <bookmark_value>names; sheets</bookmark_value>"
msgstr ""
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3150012\n"
+"rename_table.xhp\n"
+"hd_id3150398\n"
"11\n"
"help.text"
-msgid "Click the <emph>Function</emph> icon on the Formula Bar."
+msgid "<variable id=\"rename_table\"><link href=\"text/scalc/guide/rename_table.xhp\" name=\"Renaming Sheets\">Renaming Sheets</link></variable>"
msgstr ""
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3156441\n"
+"rename_table.xhp\n"
+"par_id3155131\n"
"12\n"
"help.text"
-msgid "You will now see an equals sign in the input line and you can begin to input the formula."
+msgid "Click the name of the sheet that you want to change."
msgstr ""
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3153726\n"
-"3\n"
+"rename_table.xhp\n"
+"par_id3146976\n"
+"13\n"
"help.text"
-msgid "After entering the required values, press Enter or click <emph>Accept</emph> to insert the result in the active cell. If you want to clear your entry in the input line, press Escape or click <emph>Cancel</emph>."
+msgid "Open the context menu and choose the <emph>Rename Sheet</emph> command. A dialog box appears where you can enter a new name."
msgstr ""
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3147394\n"
-"8\n"
+"rename_table.xhp\n"
+"par_id3149260\n"
+"15\n"
"help.text"
-msgid "You can also enter the values and the formulas directly into the cells, even if you cannot see an input cursor. Formulas must always begin with an equals sign."
+msgid "Enter a new name for the sheet and click <emph>OK</emph>."
msgstr ""
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id4206976\n"
+"rename_table.xhp\n"
+"par_id3149667\n"
+"27\n"
"help.text"
-msgid "You can also press the + or - key on the numerical keyboard to start a formula. NumLock must be \"on\". For example, press the following keys in succession:"
+msgid "Alternatively, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key</defaultinline></switchinline> and click on any sheet name and enter the new name directly."
msgstr ""
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id1836909\n"
+"rename_table.xhp\n"
+"par_id0909200810502833\n"
"help.text"
-msgid "+ 5 0 - 8 Enter"
-msgstr "Qendër"
+msgid "Sheet names can contain almost any character. Some naming restrictions apply when you want to save the spreadsheet to Microsoft Excel format."
+msgstr ""
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id8171330\n"
+"rename_table.xhp\n"
+"par_id090920081050283\n"
"help.text"
-msgid "You see the result <item type=\"literal\">42</item> in the cell. The cell contains the formula <item type=\"literal\">=+50-8</item>."
+msgid "When saving to Microsoft Excel format, the following characters are not allowed in sheet names:"
msgstr ""
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3155764\n"
-"6\n"
+"rename_table.xhp\n"
+"par_id090920081050281\n"
"help.text"
-msgid "If you are editing a formula with references, the references and the associated cells will be highlighted with the same color. You can now resize the reference border using the mouse, and the reference in the formula displayed in the input line also changes. <emph>Show references in color</emph> can be deactivated under <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060300.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>."
+msgid "colon :"
msgstr ""
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3149210\n"
-"7\n"
+"rename_table.xhp\n"
+"par_id0909200810502897\n"
"help.text"
-msgid "<variable id=\"tip\">If you would like to view the calculation of individual elements of a formula, select the respective elements and press F9. For example, in the formula =SUM(A1:B12)*SUM(C1:D12) select the section SUM(C1:D12) and press F9 to view the subtotal for this area. </variable>"
-msgstr ""
+msgid "back slash \\"
+msgstr "Pjesëtim (/)"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3150304\n"
-"5\n"
+"rename_table.xhp\n"
+"par_id090920081050299\n"
"help.text"
-msgid "If an error occurs when creating the formula, an <link href=\"text/scalc/05/02140000.xhp\" name=\"error message\">error message</link> appears in the active cell."
-msgstr ""
+msgid "forward slash /"
+msgstr "Pjesëtim (/)"
-#: formula_enter.xhp
+#: rename_table.xhp
msgctxt ""
-"formula_enter.xhp\n"
-"par_id3152993\n"
-"13\n"
+"rename_table.xhp\n"
+"par_id0909200810502913\n"
"help.text"
-msgid "<link href=\"text/scalc/main0206.xhp\" name=\"Formula bar\">Formula bar</link>"
-msgstr ""
+msgid "question mark ?"
+msgstr "Shenjë piksimi"
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"tit\n"
+"rename_table.xhp\n"
+"par_id090920081050298\n"
"help.text"
-msgid "Assigning Formats by Formula"
+msgid "asterisk *"
msgstr ""
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"bm_id3145673\n"
+"rename_table.xhp\n"
+"par_id0909200810502969\n"
"help.text"
-msgid "<bookmark_value>formats; assigning by formulas</bookmark_value> <bookmark_value>cell formats; assigning by formulas</bookmark_value> <bookmark_value>STYLE function example</bookmark_value> <bookmark_value>cell styles;assigning by formulas</bookmark_value> <bookmark_value>formulas;assigning cell formats</bookmark_value>"
-msgstr ""
+msgid "left square bracket ["
+msgstr "Kllapa të mesme të dyfishta"
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"hd_id3145673\n"
-"13\n"
+"rename_table.xhp\n"
+"par_id0909200810502910\n"
"help.text"
-msgid "<variable id=\"cellstyle_by_formula\"><link href=\"text/scalc/guide/cellstyle_by_formula.xhp\" name=\"Assigning Formats by Formula\">Assigning Formats by Formula</link> </variable>"
-msgstr ""
+msgid "right square bracket ]"
+msgstr "Kllapa të mesme të dyfishta"
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3150275\n"
-"14\n"
+"rename_table.xhp\n"
+"par_id0909200810502971\n"
"help.text"
-msgid "The STYLE() function can be added to an existing formula in a cell. For example, together with the CURRENT function, you can color a cell depending on its value. The formula =...+STYLE(IF(CURRENT()>3; \"Red\"; \"Green\")) applies the cell style \"Red\" to cells if the value is greater than 3, otherwise the cell style \"Green\" is applied."
+msgid "single quote ' as the first or last character of the name"
msgstr ""
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3151385\n"
-"15\n"
+"rename_table.xhp\n"
+"par_id090920081050307\n"
"help.text"
-msgid "If you would like to apply a formula to all cells in a selected area, you can use the <item type=\"menuitem\">Find & Replace</item> dialog."
+msgid "In cell references, a sheet name has to be enclosed in single quotes ' if the name contains other characters than alphanumeric or underscore. A single quote contained within a name has to be escaped by doubling it (two single quotes). For example, you want to reference the cell A1 on a sheet with the following name:"
msgstr ""
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3149456\n"
-"16\n"
+"rename_table.xhp\n"
+"par_id0909200810503071\n"
"help.text"
-msgid "Select all the desired cells."
+msgid "This year's sheet"
+msgstr "Deri në faqen tjetër"
+
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id0909200810503054\n"
+"help.text"
+msgid "The reference must be enclosed in single quotes, and the one single quote inside the name must be doubled:"
msgstr ""
-#: cellstyle_by_formula.xhp
+#: rename_table.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3148797\n"
-"17\n"
+"rename_table.xhp\n"
+"par_id0909200810503069\n"
"help.text"
-msgid "Select the menu command <emph>Edit - Find & Replace</emph>."
+msgid "'This year''s sheet'.A1"
+msgstr "Kontrollimi i drejtëshkrimit të kësaj flete është përfunduar."
+
+#: rename_table.xhp
+msgctxt ""
+"rename_table.xhp\n"
+"par_id3155444\n"
+"16\n"
+"help.text"
+msgid "The name of a sheet is independent of the name of the spreadsheet. You enter the spreadsheet name when you save it for the first time as a file. The document can contain up to 256 individual sheets, which can have different names."
msgstr ""
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3150767\n"
-"18\n"
+"rounding_numbers.xhp\n"
+"tit\n"
"help.text"
-msgid "For the <item type=\"menuitem\">Search for</item> term, enter: .<item type=\"literal\">*</item>"
+msgid "Using Rounded Off Numbers"
msgstr ""
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3153770\n"
-"19\n"
+"rounding_numbers.xhp\n"
+"bm_id3153361\n"
"help.text"
-msgid "\".*\" is a regular expression that designates the contents of the current cell."
+msgid "<bookmark_value>numbers; rounded off</bookmark_value><bookmark_value>rounded off numbers</bookmark_value><bookmark_value>exact numbers in $[officename] Calc</bookmark_value><bookmark_value>decimal places; showing</bookmark_value><bookmark_value>changing;number of decimal places</bookmark_value><bookmark_value>values;rounded in calculations</bookmark_value><bookmark_value>calculating;rounded off values</bookmark_value><bookmark_value>numbers; decimal places</bookmark_value><bookmark_value>precision as shown</bookmark_value><bookmark_value>rounding precision</bookmark_value><bookmark_value>spreadsheets; values as shown</bookmark_value>"
msgstr ""
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3153143\n"
-"20\n"
+"rounding_numbers.xhp\n"
+"hd_id3156422\n"
+"2\n"
"help.text"
-msgid "Enter the following formula in the <item type=\"menuitem\">Replace with</item> field: <item type=\"literal\">=&+STYLE(IF(CURRENT()>3;\"Red\";\"Green\"))</item>"
+msgid "<variable id=\"rounding_numbers\"><link href=\"text/scalc/guide/rounding_numbers.xhp\" name=\"Using Rounded Off Numbers\">Using Rounded Off Numbers</link></variable>"
msgstr ""
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3146975\n"
-"21\n"
+"rounding_numbers.xhp\n"
+"par_id3153726\n"
+"3\n"
"help.text"
-msgid "The \"&\" symbol designates the current contents of the <emph>Search for</emph> field. The line must begin with an equal sign, since it is a formula. It is assumed that the cell styles \"Red\" and \"Green\" already exist."
+msgid "In $[officename] Calc, all decimal numbers are displayed rounded off to two decimal places."
msgstr ""
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3149262\n"
-"22\n"
+"rounding_numbers.xhp\n"
+"hd_id3152596\n"
+"4\n"
"help.text"
-msgid "Mark the fields <link href=\"text/shared/01/02100000.xhp\" name=\"Regular expressions\"><emph>Regular expressions</emph></link> and <emph>Current selection only</emph>. Click <emph>Find All</emph>."
+msgid "To change this for selected cells"
msgstr ""
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3144767\n"
-"24\n"
+"rounding_numbers.xhp\n"
+"par_id3154321\n"
+"5\n"
"help.text"
-msgid "All cells with contents that were included in the selection are now highlighted."
+msgid "Mark all the cells you want to modify."
msgstr ""
-#: cellstyle_by_formula.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"cellstyle_by_formula.xhp\n"
-"par_id3147127\n"
-"23\n"
+"rounding_numbers.xhp\n"
+"par_id3147428\n"
+"6\n"
"help.text"
-msgid "Click <item type=\"menuitem\">Replace all</item>."
+msgid "Choose <emph>Format - Cells</emph> and go to the <emph>Numbers</emph> tab page."
msgstr ""
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"tit\n"
+"rounding_numbers.xhp\n"
+"par_id3153876\n"
+"7\n"
"help.text"
-msgid "Defining Number of Pages for Printing"
+msgid "In the <emph>Category</emph> field, select <emph>Number</emph>. Under <emph>Options</emph>, change the number of <emph>Decimal places</emph> and exit the dialog with OK."
msgstr ""
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"bm_id3153194\n"
+"rounding_numbers.xhp\n"
+"hd_id3155415\n"
+"8\n"
"help.text"
-msgid "<bookmark_value>printing; sheet counts</bookmark_value><bookmark_value>sheets; printing sheet counts</bookmark_value><bookmark_value>page breaks; spreadsheet preview</bookmark_value><bookmark_value>editing;print ranges</bookmark_value><bookmark_value>viewing;print ranges</bookmark_value><bookmark_value>previews;page breaks for printing</bookmark_value>"
+msgid "To change this everywhere"
msgstr ""
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"hd_id3153194\n"
-"1\n"
+"rounding_numbers.xhp\n"
+"par_id3150715\n"
+"9\n"
"help.text"
-msgid "<variable id=\"print_exact\"><link href=\"text/scalc/guide/print_exact.xhp\" name=\"Defining Number of Pages for Printing\">Defining Number of Pages for Printing</link></variable>"
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>."
msgstr ""
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"par_id3153771\n"
-"2\n"
+"rounding_numbers.xhp\n"
+"par_id3153707\n"
+"10\n"
"help.text"
-msgid "If a sheet is too large for a single printed page, $[officename] Calc will print the current sheet evenly divided over several pages. Since the automatic page break does not always take place in the optimal position, you can define the page distribution yourself."
+msgid "Go to the <emph>Calculate</emph> page. Modify the number of <emph>Decimal places</emph> and exit the dialog with OK."
msgstr ""
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"par_id3159155\n"
-"3\n"
+"rounding_numbers.xhp\n"
+"hd_id3154755\n"
+"11\n"
"help.text"
-msgid "Go to the sheet to be printed."
+msgid "To calculate with the rounded off numbers instead of the internal exact values"
msgstr ""
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"par_id3150012\n"
-"4\n"
+"rounding_numbers.xhp\n"
+"par_id3150045\n"
+"12\n"
"help.text"
-msgid "Choose <emph>View - Page Break Preview</emph>."
-msgstr "Nuk mund ta hap fajllin $(URL1)."
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph>."
+msgstr ""
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"par_id3146974\n"
-"5\n"
+"rounding_numbers.xhp\n"
+"par_id3146920\n"
+"13\n"
"help.text"
-msgid "You will see the automatic distribution of the sheet across the print pages. The automatically created print ranges are indicated by dark blue lines, and the user-defined ones by light blue lines. The page breaks (line breaks and column breaks) are marked as black lines."
+msgid "Go to the <emph>Calculate</emph> page. Mark the <emph>Precision as shown</emph> field and exit the dialog with OK."
msgstr ""
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"par_id3152578\n"
-"6\n"
+"rounding_numbers.xhp\n"
+"par_id3145790\n"
+"14\n"
"help.text"
-msgid "You can move the blue lines with the mouse. You will find further options in the Context menu, including adding an additional print range, removing the scaling and inserting additional manual line and column breaks."
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
msgstr ""
-#: print_exact.xhp
+#: rounding_numbers.xhp
msgctxt ""
-"print_exact.xhp\n"
-"par_id3151073\n"
-"7\n"
+"rounding_numbers.xhp\n"
+"par_id3147005\n"
+"15\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
+msgid "<link href=\"text/shared/optionen/01060500.xhp\" name=\"Calculate\">Calculate</link>"
msgstr ""
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
+"row_height.xhp\n"
"tit\n"
"help.text"
-msgid "Filtering Cell Ranges"
-msgstr "Inte~rvalet e Printimit"
+msgid "Changing Row Height or Column Width"
+msgstr ""
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"bm_id3153541\n"
+"row_height.xhp\n"
+"bm_id3145748\n"
"help.text"
-msgid "<bookmark_value>cell ranges;applying/removing filters</bookmark_value> <bookmark_value>filtering;cell ranges/database ranges</bookmark_value> <bookmark_value>database ranges;applying/removing filters</bookmark_value> <bookmark_value>removing;cell range filters</bookmark_value>"
+msgid "<bookmark_value>heights of cells</bookmark_value><bookmark_value>cell heights</bookmark_value><bookmark_value>cell widths</bookmark_value><bookmark_value>cells; heights and widths</bookmark_value><bookmark_value>widths of cells</bookmark_value><bookmark_value>column widths</bookmark_value><bookmark_value>rows; heights</bookmark_value><bookmark_value>columns; widths</bookmark_value><bookmark_value>changing;row heights/column widths</bookmark_value>"
msgstr ""
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"hd_id3153541\n"
-"47\n"
+"row_height.xhp\n"
+"hd_id3145748\n"
+"1\n"
"help.text"
-msgid "<variable id=\"database_filter\"><link href=\"text/scalc/guide/database_filter.xhp\" name=\"Filtering Cell Ranges\">Filtering Cell Ranges</link></variable>"
+msgid "<variable id=\"row_height\"><link href=\"text/scalc/guide/row_height.xhp\" name=\"Changing Row Height or Column Width\">Changing Row Height or Column Width</link></variable>"
msgstr ""
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3145069\n"
-"48\n"
+"row_height.xhp\n"
+"par_id3154017\n"
+"2\n"
"help.text"
-msgid "You can use several filters to filter cell ranges in spreadsheets. A standard filter uses the options that you specify to filter the data. An AutoFilter filters data according to a specific value or string. An advanced filter uses filter criteria from specified cells."
+msgid "You can change the height of the rows with the mouse or through the dialog."
msgstr ""
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN10682\n"
+"row_height.xhp\n"
+"par_id3154702\n"
+"3\n"
"help.text"
-msgid "To Apply a Standard Filter to a Cell Range"
-msgstr "Referenca në një qeli ose një interval."
+msgid "What is described here for rows and row height applies accordingly for columns and column width."
+msgstr ""
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3150398\n"
-"50\n"
+"row_height.xhp\n"
+"hd_id3153963\n"
+"4\n"
"help.text"
-msgid "Click in a cell range."
-msgstr "Referenca në një qeli ose një interval."
+msgid "Using the mouse to change the row height or column width"
+msgstr ""
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN10693\n"
+"row_height.xhp\n"
+"par_id3154020\n"
+"5\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Data - Filter - Standard Filter</item>."
-msgstr "Nuk mund ta hap fajllin $(URL1)."
+msgid "Click the area of the headers on the separator below the current row, keep the mouse button pressed and drag up or down in order to change the row height."
+msgstr ""
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3156422\n"
-"51\n"
+"row_height.xhp\n"
+"par_id3159237\n"
+"6\n"
"help.text"
-msgid "In the <emph>Standard Filter</emph> dialog, specify the filter options that you want."
+msgid "Select the optimal row height by double-clicking the separator below the row."
msgstr ""
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN106A5\n"
+"row_height.xhp\n"
+"hd_id3154659\n"
+"7\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+msgid "Using the dialog to change the row height or column width"
+msgstr ""
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3153143\n"
-"52\n"
+"row_height.xhp\n"
+"par_id3150367\n"
+"8\n"
"help.text"
-msgid "The records that match the filter options that you specified are shown."
+msgid "Click the row so that you achieve the focus."
msgstr ""
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3153728\n"
-"53\n"
+"row_height.xhp\n"
+"par_id3166432\n"
+"9\n"
"help.text"
-msgid "To Apply an AutoFilter to a Cell Range"
-msgstr "Referenca në një qeli ose një interval."
+msgid "Start the context menu on the header at the left-hand side."
+msgstr ""
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3144764\n"
-"54\n"
+"row_height.xhp\n"
+"par_id3150519\n"
+"10\n"
"help.text"
-msgid "Click in a cell range or a database range."
+msgid "You will see the commands <emph>Row Height</emph> and <emph>Optimal row height</emph>. Choosing either opens a dialog."
msgstr ""
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id9303872\n"
+"row_height.xhp\n"
+"par_id3154487\n"
+"11\n"
"help.text"
-msgid "If you want to apply multiple AutoFilters to the same sheet, you must first define database ranges, then apply the AutoFilters to the database ranges."
+msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Row height\">Row height</link>"
msgstr ""
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3154944\n"
-"55\n"
+"row_height.xhp\n"
+"par_id3149408\n"
+"12\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Data - Filter - AutoFilter</item>."
-msgstr "Nuk mund ta hap fajllin $(URL1)."
+msgid "<link href=\"text/scalc/01/05030200.xhp\" name=\"Optimal row height\">Optimal row height</link>"
+msgstr ""
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN106DB\n"
+"row_height.xhp\n"
+"par_id3153305\n"
+"13\n"
"help.text"
-msgid "An arrow button is added to the head of each column in the database range."
+msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Column width\">Column width</link>"
msgstr ""
-#: database_filter.xhp
+#: row_height.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id3153878\n"
-"56\n"
+"row_height.xhp\n"
+"par_id3153815\n"
+"14\n"
"help.text"
-msgid "Click the arrow button in the column that contains the value or string that you want to set as the filter criteria."
+msgid "<link href=\"text/scalc/01/05040200.xhp\" name=\"Optimal column width\">Optimal column width</link>"
msgstr ""
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN10749\n"
+"scenario.xhp\n"
+"tit\n"
"help.text"
-msgid "Select the value or string that you want to use as the filter criteria."
-msgstr ""
+msgid "Using Scenarios"
+msgstr "Duke përdorur Ndihmën"
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN1074C\n"
+"scenario.xhp\n"
+"bm_id3149664\n"
"help.text"
-msgid "The records that match the filter criteria that you selected are shown."
+msgid "<bookmark_value>scenarios; creating/editing/deleting</bookmark_value><bookmark_value>opening;scenarios</bookmark_value><bookmark_value>selecting;scenarios in Navigator</bookmark_value>"
msgstr ""
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN106E8\n"
+"scenario.xhp\n"
+"hd_id3125863\n"
+"1\n"
"help.text"
-msgid "To Remove a Filter From a Cell Range"
-msgstr "Kthen një referencë në një qeli nga një interval i definuar."
+msgid "<variable id=\"scenario\"><link href=\"text/scalc/guide/scenario.xhp\" name=\"Using Scenarios\">Using Scenarios</link></variable>"
+msgstr ""
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN1075C\n"
+"scenario.xhp\n"
+"par_id3150869\n"
+"2\n"
"help.text"
-msgid "Click in a filtered cell range."
+msgid "A $[officename] Calc scenario is a set of cell values that can be used within your calculations. You assign a name to every scenario on your sheet. Define several scenarios on the same sheet, each with some different values in the cells. Then you can easily switch the sets of cell values by their name and immediately observe the results. Scenarios are a tool to test out \"what-if\" questions."
msgstr ""
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_idN106EC\n"
+"scenario.xhp\n"
+"hd_id3149255\n"
+"15\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Data - Filter - Remove Filter</item>."
-msgstr "Nuk mund ta hap fajllin $(URL1)."
+msgid "Creating Your Own Scenarios"
+msgstr ""
-#: database_filter.xhp
+#: scenario.xhp
msgctxt ""
-"database_filter.xhp\n"
-"par_id4525284\n"
+"scenario.xhp\n"
+"par_id3154704\n"
+"16\n"
"help.text"
-msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wiki page about defining a data range</link>"
+msgid "To create a scenario, select all the cells that provide the data for the scenario."
msgstr ""
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"tit\n"
+"scenario.xhp\n"
+"par_id3154020\n"
+"17\n"
"help.text"
-msgid "Selecting Themes for Sheets"
+msgid "Select the cells that contain the values that will change between scenarios. To select multiple cells, hold down the <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline></item> key as you click each cell."
msgstr ""
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"bm_id3150791\n"
+"scenario.xhp\n"
+"par_id3150364\n"
+"18\n"
"help.text"
-msgid "<bookmark_value>theme selection for sheets</bookmark_value><bookmark_value>layout;spreadsheets</bookmark_value><bookmark_value>cell styles; selecting</bookmark_value><bookmark_value>selecting;formatting themes</bookmark_value><bookmark_value>sheets;formatting themes</bookmark_value><bookmark_value>formats;themes for sheets</bookmark_value><bookmark_value>formatting;themes for sheets</bookmark_value>"
+msgid "Choose <emph>Tools - Scenarios</emph>. The <emph>Create Scenario</emph> dialog appears."
msgstr ""
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"hd_id3150791\n"
-"6\n"
+"scenario.xhp\n"
+"par_id3166426\n"
+"19\n"
"help.text"
-msgid "<variable id=\"design\"><link href=\"text/scalc/guide/design.xhp\" name=\"Selecting Themes for Sheets\">Selecting Themes for Sheets</link> </variable>"
+msgid "Enter a name for the new scenario and leave the other fields unchanged with their default values. Close the dialog with OK. Your new scenario is automatically activated."
msgstr ""
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3145786\n"
-"13\n"
+"scenario.xhp\n"
+"hd_id3149664\n"
+"3\n"
"help.text"
-msgid "$[officename] Calc comes with a predefined set of formatting themes that you can apply to your spreadsheets."
-msgstr ""
+msgid "Using Scenarios"
+msgstr "Duke përdorur Ndihmën"
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3154490\n"
-"16\n"
+"scenario.xhp\n"
+"par_id3153415\n"
+"11\n"
"help.text"
-msgid "It is not possible to add themes to Calc, and they cannot be modified. However, you can modify their styles after you apply them to a spreadsheet."
+msgid "Scenarios can be selected in the Navigator:"
msgstr ""
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3154757\n"
-"17\n"
+"scenario.xhp\n"
+"par_id3150752\n"
+"12\n"
"help.text"
-msgid "Before you format a sheet with a theme, you have to apply at least one custom cell style to the cells on the sheet. You can then change the cell formatting by selecting and applying a theme in the <emph>Theme Selection</emph> dialog."
+msgid "Open the Navigator with the <emph>Navigator</emph> icon <image id=\"img_id1593676\" src=\"cmd/sc_navigator.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id1593676\">Navigator icon</alt></image> on the Standard bar."
msgstr ""
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3156382\n"
-"18\n"
+"scenario.xhp\n"
+"par_id3155764\n"
+"13\n"
"help.text"
-msgid "To apply a custom cell style to a cell, you can open the Styles and Formatting window and, in its lower list box, set the Custom Styles view. A list of the existing custom defined cell styles will be displayed. Double click a name from the Styles and Formatting window to apply this style to the selected cells."
+msgid "Click the <emph>Scenarios</emph> icon <image id=\"img_id7617114\" src=\"sc/imglst/na07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id7617114\">Scenarios icon</alt></image> in the Navigator."
msgstr ""
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3153963\n"
-"19\n"
+"scenario.xhp\n"
+"par_id3154256\n"
+"14\n"
"help.text"
-msgid "To apply a theme to a spreadsheet:"
-msgstr "Apliko në të gjitha sllajdet"
+msgid "In the Navigator, you see the defined scenarios with the comments that were entered when the scenarios were created."
+msgstr ""
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3146920\n"
-"15\n"
+"scenario.xhp\n"
+"par_id1243629\n"
"help.text"
-msgid "Click the <emph>Choose Themes</emph> icon in the <emph>Tools</emph> bar."
+msgid "Double-click a scenario name in the Navigator to apply that scenario to the current sheet."
msgstr ""
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3148488\n"
-"20\n"
+"scenario.xhp\n"
+"par_id9044770\n"
"help.text"
-msgid "The <emph>Theme Selection</emph> dialog appears. This dialog lists the available themes for the whole spreadsheet and the Styles and Formatting window lists the custom styles for specific cells."
+msgid "To delete a scenario, right-click the name in the Navigator and choose <emph>Delete</emph>."
msgstr ""
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3155114\n"
-"9\n"
+"scenario.xhp\n"
+"par_id3674123\n"
"help.text"
-msgid "In the <emph>Theme Selection </emph>dialog, select the theme that you want to apply to the spreadsheet."
+msgid "To edit a scenario, right-click the name in the Navigator and choose <emph>Properties</emph>."
msgstr ""
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3150090\n"
-"21\n"
+"scenario.xhp\n"
+"par_id3424481\n"
"help.text"
-msgid "Click OK"
-msgstr "Kliko në objekt"
+msgid "To hide the border of a set of cells that are part of a scenario, open the <emph>Properties</emph> dialog for each scenario that affects the cells and clear the Display border checkbox. Hiding the border also removes the listbox on the sheet where you can choose the scenarios."
+msgstr ""
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3150201\n"
+"scenario.xhp\n"
+"par_id3154368\n"
"22\n"
"help.text"
-msgid "As soon as you select another theme in the <emph>Theme Selection</emph> dialog, some of the properties of the custom style will be applied to the current spreadsheet. The modifications will be immediately visible in your spreadsheet."
+msgid "If you want to know which values in the scenario affect other values, choose <emph>Tools - Detective - Trace Dependents</emph>. You see arrows to the cells that are directly dependent on the current cell."
msgstr ""
-#: design.xhp
+#: scenario.xhp
msgctxt ""
-"design.xhp\n"
-"par_id3146979\n"
-"12\n"
+"scenario.xhp\n"
+"par_id3154484\n"
+"29\n"
"help.text"
-msgid "<link href=\"text/scalc/02/06080000.xhp\" name=\"Theme selection\">Theme selection</link>"
+msgid "<link href=\"text/scalc/01/06050000.xhp\" name=\"Creating Scenarios\">Creating Scenarios</link>"
msgstr ""
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
+"sorted_list.xhp\n"
"tit\n"
"help.text"
-msgid "Unprotecting Cells"
-msgstr "Bashko qelizat"
+msgid "Applying Sort Lists"
+msgstr "Nuk mund të renditë zgjedhjen"
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"bm_id3153252\n"
+"sorted_list.xhp\n"
+"bm_id3150870\n"
"help.text"
-msgid "<bookmark_value>cell protection; unprotecting</bookmark_value> <bookmark_value>protecting; unprotecting cells</bookmark_value> <bookmark_value>unprotecting cells</bookmark_value>"
+msgid "<bookmark_value>filling;customized lists</bookmark_value><bookmark_value>sort lists;applying</bookmark_value><bookmark_value>defining;sort lists</bookmark_value><bookmark_value>geometric lists</bookmark_value><bookmark_value>arithmetic lists</bookmark_value><bookmark_value>series;sort lists</bookmark_value><bookmark_value>lists; user-defined</bookmark_value><bookmark_value>customized lists</bookmark_value>"
msgstr ""
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"hd_id3153252\n"
-"14\n"
+"sorted_list.xhp\n"
+"hd_id3150870\n"
+"3\n"
"help.text"
-msgid "<variable id=\"cell_unprotect\"><link href=\"text/scalc/guide/cell_unprotect.xhp\" name=\"Unprotecting Cells\">Unprotecting Cells</link> </variable>"
+msgid "<variable id=\"sorted_list\"><link href=\"text/scalc/guide/sorted_list.xhp\" name=\"Applying Sort Lists\">Applying Sort Lists</link> </variable>"
msgstr ""
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"par_id3151112\n"
-"15\n"
+"sorted_list.xhp\n"
+"par_id3159154\n"
+"7\n"
"help.text"
-msgid "Click the sheet for which you want to cancel the protection."
+msgid "Sort lists allow you to type one piece of information in a cell, then drag it to fill in a consecutive list of items."
msgstr ""
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"par_id3149656\n"
-"16\n"
+"sorted_list.xhp\n"
+"par_id3148645\n"
+"4\n"
"help.text"
-msgid "Select <emph>Tools - Protect Document</emph>, then choose <emph>Sheet</emph> or <emph>Document</emph> to remove the check mark indicating the protected status."
+msgid "For example, enter the text \"Jan\" or \"January\" in an empty cell. Select the cell and click the mouse on the lower right corner of the cell border. Then drag the selected cell a few cells to the right or downwards. When you release the mouse button, the highlighted cells will be filled with the names of the months."
msgstr ""
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"par_id3145171\n"
-"17\n"
+"sorted_list.xhp\n"
+"par_id2367931\n"
"help.text"
-msgid "If you have assigned a password, enter it in this dialog and click <emph>OK</emph>."
+msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> if you do not want to fill the cells with different values."
msgstr ""
-#: cell_unprotect.xhp
+#: sorted_list.xhp
msgctxt ""
-"cell_unprotect.xhp\n"
-"par_id3153771\n"
-"18\n"
+"sorted_list.xhp\n"
+"par_id3152577\n"
+"5\n"
"help.text"
-msgid "The cells can now be edited, the formulas can be viewed, and all cells can be printed until you reactivate the protection for the sheet or document."
+msgid "The predefined series can be found under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - Sort Lists</emph>. You can also create your own lists of text strings tailored to your needs, such as a list of your company's branch offices. When you use the information in these lists later (for example, as headings), just enter the first name in the list and expand the entry by dragging it with your mouse."
msgstr ""
-#: year2000.xhp
+#: sorted_list.xhp
msgctxt ""
-"year2000.xhp\n"
-"tit\n"
+"sorted_list.xhp\n"
+"par_id3147434\n"
+"6\n"
"help.text"
-msgid "19xx/20xx Years"
+msgid "<link href=\"text/shared/optionen/01060400.xhp\" name=\"Sort lists\">Sort lists</link>"
msgstr ""
-#: year2000.xhp
+#: specialfilter.xhp
msgctxt ""
-"year2000.xhp\n"
-"bm_id3150439\n"
+"specialfilter.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>years; 2-digits</bookmark_value><bookmark_value>dates; 19xx/20xx</bookmark_value>"
+msgid "Filter: Applying Advanced Filters"
msgstr ""
-#: year2000.xhp
+#: specialfilter.xhp
msgctxt ""
-"year2000.xhp\n"
-"hd_id3150439\n"
-"18\n"
+"specialfilter.xhp\n"
+"bm_id3148798\n"
"help.text"
-msgid "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\" name=\"19xx/20xx Years\">19xx/20xx Years</link></variable>"
+msgid "<bookmark_value>filters;defining advanced filters </bookmark_value><bookmark_value>advanced filters</bookmark_value><bookmark_value>defining; advanced filters</bookmark_value><bookmark_value>database ranges; advanced filters</bookmark_value>"
msgstr ""
-#: year2000.xhp
+#: specialfilter.xhp
msgctxt ""
-"year2000.xhp\n"
-"par_id3151116\n"
-"17\n"
+"specialfilter.xhp\n"
+"hd_id3148798\n"
+"18\n"
"help.text"
-msgid "The year in a date entry is often entered as two digits. Internally, the year is managed by $[officename] as four digits, so that in the calculation of the difference from 1/1/99 to 1/1/01, the result will correctly be two years."
+msgid "<variable id=\"specialfilter\"><link href=\"text/scalc/guide/specialfilter.xhp\" name=\"Filter: Applying Advanced Filters\">Filter: Applying Advanced Filters</link> </variable>"
msgstr ""
-#: year2000.xhp
+#: specialfilter.xhp
msgctxt ""
-"year2000.xhp\n"
-"par_id3154011\n"
+"specialfilter.xhp\n"
+"par_id3145785\n"
"19\n"
"help.text"
-msgid "Under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General</emph> you can define the century that is used when you enter a year with only two digits. The default is 1930 to 2029."
+msgid "Copy the column headers of the sheet ranges to be filtered into an empty area of the sheet, and then enter the criteria for the filter in a row beneath the headers. Horizontally arranged data in a row will always be logically connected with AND, and vertically arranged data in a column will always be logically connected with OR."
msgstr ""
-#: year2000.xhp
+#: specialfilter.xhp
msgctxt ""
-"year2000.xhp\n"
-"par_id3150010\n"
+"specialfilter.xhp\n"
+"par_id3153142\n"
"20\n"
"help.text"
-msgid "This means that if you enter a date of 1/1/30 or higher, it will be treated internally as 1/1/1930 or higher. All lower two-digit years apply to the 20xx century. So, for example, 1/1/20 is converted into 1/1/2020."
+msgid "Once you have created a filter matrix, select the sheet ranges to be filtered. Open the <emph>Advanced Filter</emph> dialog by choosing <emph>Data - Filter - Advanced Filter</emph>, and define the filter conditions."
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"tit\n"
+"specialfilter.xhp\n"
+"par_id3153726\n"
+"21\n"
"help.text"
-msgid "Applying Conditional Formatting"
-msgstr "Duke formatuar dokumentin automatikisht"
+msgid "Then click OK, and you will see that only the rows from the original sheet whose contents have met the search criteria are still visible. All other rows are temporarily hidden and can be made to reappear with the <emph>Format - Row - Show </emph>command."
+msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"bm_id3149263\n"
+"specialfilter.xhp\n"
+"par_id3149664\n"
+"22\n"
"help.text"
-msgid "<bookmark_value>conditional formatting; cells</bookmark_value> <bookmark_value>cells; conditional formatting</bookmark_value> <bookmark_value>formatting; conditional formatting</bookmark_value> <bookmark_value>styles;conditional styles</bookmark_value> <bookmark_value>cell formats; conditional</bookmark_value> <bookmark_value>random numbers;examples</bookmark_value> <bookmark_value>cell styles; copying</bookmark_value> <bookmark_value>copying; cell styles</bookmark_value> <bookmark_value>tables; copying cell styles</bookmark_value>"
+msgid "<emph>Example</emph>"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id3149263\n"
-"24\n"
+"specialfilter.xhp\n"
+"par_id3147427\n"
+"23\n"
"help.text"
-msgid "<variable id=\"cellstyle_conditional\"><link href=\"text/scalc/guide/cellstyle_conditional.xhp\" name=\"Applying Conditional Formatting\">Applying Conditional Formatting</link></variable>"
+msgid "Load a spreadsheet with a large number of records. We are using a fictional <emph>Turnover</emph> document, but you can just as easily use any other document. The document has the following layout:"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3159156\n"
-"25\n"
+"specialfilter.xhp\n"
+"par_id3154510\n"
+"24\n"
"help.text"
-msgid "Using the menu command <emph>Format - Conditional formatting</emph>, the dialog allows you to define up to three conditions per cell, which must be met in order for the selected cells to have a particular format."
-msgstr ""
+msgid "<emph>A</emph>"
+msgstr "Shto në adresë"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id8039796\n"
+"specialfilter.xhp\n"
+"par_id3150327\n"
+"25\n"
"help.text"
-msgid "To apply conditional formatting, AutoCalculate must be enabled. Choose <emph>Tools - Cell Contents - AutoCalculate</emph> (you see a check mark next to the command when AutoCalculate is enabled)."
-msgstr ""
+msgid "<emph>B</emph>"
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3154944\n"
+"specialfilter.xhp\n"
+"par_id3154756\n"
"26\n"
"help.text"
-msgid "With conditional formatting, you can, for example, highlight the totals that exceed the average value of all totals. If the totals change, the formatting changes correspondingly, without having to apply other styles manually."
-msgstr ""
+msgid "<emph>C</emph>"
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id4480727\n"
+"specialfilter.xhp\n"
+"par_id3155335\n"
+"27\n"
"help.text"
-msgid "To Define the Conditions"
-msgstr ""
+msgid "<emph>D</emph>"
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3154490\n"
-"27\n"
+"specialfilter.xhp\n"
+"par_id3146315\n"
+"28\n"
"help.text"
-msgid "Select the cells to which you want to apply a conditional style."
+msgid "<emph>E</emph>"
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3145790\n"
+"29\n"
+"help.text"
+msgid "<emph>1</emph>"
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3159239\n"
+"30\n"
+"help.text"
+msgid "Month"
+msgstr "Muaj"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3150086\n"
+"31\n"
+"help.text"
+msgid "Standard"
+msgstr "Standarde"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3150202\n"
+"32\n"
+"help.text"
+msgid "Business"
+msgstr "Biznes"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3150883\n"
+"33\n"
+"help.text"
+msgid "Luxury"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3155603\n"
-"28\n"
+"specialfilter.xhp\n"
+"par_id3152987\n"
+"34\n"
"help.text"
-msgid "Choose <emph>Format - Conditional Formatting</emph>."
+msgid "Suite"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3146969\n"
-"29\n"
+"specialfilter.xhp\n"
+"par_id3154486\n"
+"35\n"
"help.text"
-msgid "Enter the condition(s) into the dialog box. The dialog is described in detail in <link href=\"text/scalc/01/05120000.xhp\" name=\"$[officename] Help\">$[officename] Help</link>, and an example is provided below:"
+msgid "<emph>2</emph>"
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3148839\n"
+"36\n"
+"help.text"
+msgid "January"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id3155766\n"
-"38\n"
+"specialfilter.xhp\n"
+"par_id3153816\n"
+"37\n"
"help.text"
-msgid "Example of Conditional Formatting: Highlighting Totals Above/Under the Average Value"
+msgid "125600"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id4341868\n"
+"specialfilter.xhp\n"
+"par_id3157978\n"
+"38\n"
"help.text"
-msgid "Step1: Generate Number Values"
+msgid "200500"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3150043\n"
+"specialfilter.xhp\n"
+"par_id3155268\n"
"39\n"
"help.text"
-msgid "You want to give certain values in your tables particular emphasis. For example, in a table of turnovers, you can show all the values above the average in green and all those below the average in red. This is possible with conditional formatting."
+msgid "240000"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3155337\n"
+"specialfilter.xhp\n"
+"par_id3153286\n"
"40\n"
"help.text"
-msgid "First of all, write a table in which a few different values occur. For your test you can create tables with any random numbers:"
+msgid "170000"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3149565\n"
+"specialfilter.xhp\n"
+"par_id3146782\n"
"41\n"
"help.text"
-msgid "In one of the cells enter the formula =RAND(), and you will obtain a random number between 0 and 1. If you want integers of between 0 and 50, enter the formula =INT(RAND()*50)."
-msgstr ""
+msgid "<emph>3</emph>"
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3149258\n"
+"specialfilter.xhp\n"
+"par_id3149900\n"
"42\n"
"help.text"
-msgid "Copy the formula to create a row of random numbers. Click the bottom right corner of the selected cell, and drag to the right until the desired cell range is selected."
+msgid "February"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3159236\n"
+"specialfilter.xhp\n"
+"par_id3154763\n"
"43\n"
"help.text"
-msgid "In the same way as described above, drag down the corner of the rightmost cell in order to create more rows of random numbers."
+msgid "160000"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id3149211\n"
+"specialfilter.xhp\n"
+"par_id3150050\n"
"44\n"
"help.text"
-msgid "Step 2: Define Cell Styles"
+msgid "180300"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3154659\n"
+"specialfilter.xhp\n"
+"par_id3153801\n"
"45\n"
"help.text"
-msgid "The next step is to apply a cell style to all values that represent above-average turnover, and one to those that are below the average. Ensure that the Styles and Formatting window is visible before proceeding."
+msgid "362000"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3150883\n"
+"specialfilter.xhp\n"
+"par_id3154708\n"
"46\n"
"help.text"
-msgid "Click in a blank cell and select the command <emph>Format Cells</emph> in the context menu."
+msgid "220000"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3155529\n"
+"specialfilter.xhp\n"
+"par_id3151191\n"
"47\n"
"help.text"
-msgid "In the <emph>Format Cells</emph> dialog on the <emph>Background</emph> tab, select a background color. Click <emph>OK</emph>."
-msgstr ""
+msgid "<emph>4</emph>"
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3154484\n"
+"specialfilter.xhp\n"
+"par_id3147250\n"
"48\n"
"help.text"
-msgid "In the Styles and Formatting window, click the <emph>New Style from Selection</emph> icon. Enter the name of the new style. For this example, name the style \"Above\"."
+msgid "March"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3152889\n"
+"specialfilter.xhp\n"
+"par_id3153334\n"
"49\n"
"help.text"
-msgid "To define a second style, click again in a blank cell and proceed as described above. Assign a different background color for the cell and assign a name (for this example, \"Below\")."
+msgid "170000"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id3148704\n"
-"60\n"
+"specialfilter.xhp\n"
+"par_id3151391\n"
+"50\n"
"help.text"
-msgid "Step 3: Calculate Average"
-msgstr ""
+msgid "and so on..."
+msgstr "mbështjell konturën në"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3148837\n"
+"specialfilter.xhp\n"
+"par_id3147300\n"
"51\n"
"help.text"
-msgid "In our particular example, we are calculating the average of the random values. The result is placed in a cell:"
+msgid "Copy row 1 with the row headers (field names), to row 20, for example. Enter the filter conditions linked with OR in rows 21, 22, and so on."
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3144768\n"
+"specialfilter.xhp\n"
+"par_id3159115\n"
"52\n"
"help.text"
-msgid "Set the cursor in a blank cell, for example, J14, and choose <emph>Insert - Function</emph>."
-msgstr ""
+msgid "<emph>A</emph>"
+msgstr "Shto në adresë"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3156016\n"
+"specialfilter.xhp\n"
+"par_id3146886\n"
"53\n"
"help.text"
-msgid "Select the AVERAGE function. Use the mouse to select all your random numbers. If you cannot see the entire range, because the Function Wizard is obscuring it, you can temporarily shrink the dialog using the <link href=\"text/shared/00/00000001.xhp#eingabesymbol\" name=\"Shrink or Maximize\"><item type=\"menuitem\">Shrink / Maximize</item></link> icon."
-msgstr ""
+msgid "<emph>B</emph>"
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3153246\n"
+"specialfilter.xhp\n"
+"par_id3153124\n"
"54\n"
"help.text"
-msgid "Close the Function Wizard with <item type=\"menuitem\">OK</item>."
-msgstr ""
-
-#: cellstyle_conditional.xhp
-msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id3149898\n"
-"50\n"
-"help.text"
-msgid "Step 4: Apply Cell Styles"
-msgstr ""
+msgid "<emph>C</emph>"
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3149126\n"
+"specialfilter.xhp\n"
+"par_id3152979\n"
"55\n"
"help.text"
-msgid "Now you can apply the conditional formatting to the sheet:"
-msgstr ""
+msgid "<emph>D</emph>"
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3150049\n"
+"specialfilter.xhp\n"
+"par_id3145827\n"
"56\n"
"help.text"
-msgid "Select all cells with the random numbers."
-msgstr ""
+msgid "<emph>E</emph>"
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3153801\n"
+"specialfilter.xhp\n"
+"par_id3149892\n"
"57\n"
"help.text"
-msgid "Choose the <emph>Format - Conditional Formatting</emph> command to open the corresponding dialog."
-msgstr ""
+msgid "<emph>20</emph>"
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3153013\n"
+"specialfilter.xhp\n"
+"par_id3150693\n"
"58\n"
"help.text"
-msgid "Define the condition as follows: If cell value is less than J14, format with cell style \"Below\", and if cell value is greater than or equal to J14, format with cell style \"Above\"."
-msgstr ""
+msgid "Month"
+msgstr "Muaj"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"hd_id3155761\n"
+"specialfilter.xhp\n"
+"par_id3147475\n"
+"59\n"
+"help.text"
+msgid "Standard"
+msgstr "Standarde"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3154846\n"
+"60\n"
+"help.text"
+msgid "Business"
+msgstr "Biznes"
+
+#: specialfilter.xhp
+msgctxt ""
+"specialfilter.xhp\n"
+"par_id3153082\n"
"61\n"
"help.text"
-msgid "Step 5: Copy Cell Style"
+msgid "Luxury"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3145320\n"
+"specialfilter.xhp\n"
+"par_id3149506\n"
"62\n"
"help.text"
-msgid "To apply the conditional formatting to other cells later:"
+msgid "Suite"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3153074\n"
+"specialfilter.xhp\n"
+"par_id3149188\n"
"63\n"
"help.text"
-msgid "Click one of the cells that has been assigned conditional formatting."
-msgstr ""
+msgid "<emph>21</emph>"
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3149051\n"
+"specialfilter.xhp\n"
+"par_id3149956\n"
"64\n"
"help.text"
-msgid "Copy the cell to the clipboard."
-msgstr "Deri tek qelia tjetër e pambrojtur"
+msgid "January"
+msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3150436\n"
+"specialfilter.xhp\n"
+"par_id3150865\n"
"65\n"
"help.text"
-msgid "Select the cells that are to receive this same formatting."
-msgstr ""
+msgid "<emph>22</emph>"
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3147298\n"
+"specialfilter.xhp\n"
+"par_id3155957\n"
"66\n"
"help.text"
-msgid "Choose <emph>Edit - Paste Special</emph>. The <emph>Paste Special</emph> dialog appears."
+msgid "<160000"
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3166465\n"
+"specialfilter.xhp\n"
+"par_id3153566\n"
"67\n"
"help.text"
-msgid "In the <emph>Selection</emph> area, check only the <emph>Formats</emph> box. All other boxes must be unchecked. Click <emph>OK</emph>."
+msgid "Specify that only rows which either have the value <item type=\"literal\">January</item> in the <emph>Month</emph> cells OR a value of under 160000 in the <emph>Standard</emph> cells will be displayed."
msgstr ""
-#: cellstyle_conditional.xhp
+#: specialfilter.xhp
msgctxt ""
-"cellstyle_conditional.xhp\n"
-"par_id3159123\n"
+"specialfilter.xhp\n"
+"par_id3147372\n"
"68\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05120000.xhp\" name=\"Format - Conditional formatting\">Format - Conditional formatting</link>"
+msgid "Choose <emph>Data - Filter - Advanced Filter</emph>, and then select the range A20:E22. After you click OK, only the filtered rows will be displayed. The other rows will be hidden from view."
msgstr ""
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
+"super_subscript.xhp\n"
"tit\n"
"help.text"
-msgid "Entering Matrix Formulas"
-msgstr "Formulat nuk formojnë një shtyllë."
-
-#: matrixformula.xhp
-msgctxt ""
-"matrixformula.xhp\n"
-"bm_id3153969\n"
-"help.text"
-msgid "<bookmark_value>matrices; entering matrix formulas</bookmark_value><bookmark_value>formulas; matrix formulas</bookmark_value><bookmark_value>inserting;matrix formulas</bookmark_value>"
-msgstr ""
+msgid "Text Superscript / Subscript"
+msgstr "Shiriti i Objektit Tekst"
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"hd_id3153969\n"
-"13\n"
+"super_subscript.xhp\n"
+"bm_id3151112\n"
"help.text"
-msgid "<variable id=\"matrixformula\"><link href=\"text/scalc/guide/matrixformula.xhp\" name=\"Entering Matrix Formulas\">Entering Matrix Formulas</link></variable>"
+msgid "<bookmark_value>superscript text in cells</bookmark_value><bookmark_value>subscript text in cells</bookmark_value><bookmark_value>cells; text super/sub</bookmark_value><bookmark_value>characters;superscript/subscript</bookmark_value>"
msgstr ""
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"par_id3153144\n"
-"14\n"
+"super_subscript.xhp\n"
+"hd_id3151112\n"
+"1\n"
"help.text"
-msgid "The following is an example of how you can enter a matrix formula, without going into the details of matrix functions."
+msgid "<variable id=\"super_subscript\"><link href=\"text/scalc/guide/super_subscript.xhp\" name=\"Text Superscript / Subscript\">Text Superscript / Subscript</link></variable>"
msgstr ""
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"par_id3153188\n"
-"15\n"
+"super_subscript.xhp\n"
+"par_id3154684\n"
+"2\n"
"help.text"
-msgid "Assume you have entered 10 numbers in Columns A and B (A1:A10 and B1:B10), and would like to calculate the sum of each row in Column C."
+msgid "In the cell, select the character that you want to put in superscript or subscript."
msgstr ""
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"par_id3154321\n"
-"16\n"
+"super_subscript.xhp\n"
+"par_id3150439\n"
+"3\n"
"help.text"
-msgid "Using the mouse, select the range C1:C10, in which the results are to be displayed."
+msgid "If, for example, you want to write H20 with a subscript 2, select the 2 in the cell (not in the input line)."
msgstr ""
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
+"super_subscript.xhp\n"
"par_id3149260\n"
-"17\n"
-"help.text"
-msgid "Press F2, or click in the input line of the Formula bar."
-msgstr ""
-
-#: matrixformula.xhp
-msgctxt ""
-"matrixformula.xhp\n"
-"par_id3154944\n"
-"18\n"
-"help.text"
-msgid "Enter an equal sign (=)."
-msgstr "Nuk është baraz me"
-
-#: matrixformula.xhp
-msgctxt ""
-"matrixformula.xhp\n"
-"par_id3145252\n"
-"19\n"
-"help.text"
-msgid "Select the range A1:A10, which contains the first values for the sum formula."
-msgstr ""
-
-#: matrixformula.xhp
-msgctxt ""
-"matrixformula.xhp\n"
-"par_id3144767\n"
-"20\n"
+"4\n"
"help.text"
-msgid "Press the (+) key from the numerical keypad."
+msgid "Open the context menu for the selected character and choose <emph>Character</emph>. You will see the <emph>Character</emph> dialog."
msgstr ""
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"par_id3154018\n"
-"21\n"
+"super_subscript.xhp\n"
+"par_id3153142\n"
+"5\n"
"help.text"
-msgid "Select the numbers in the second column in cells B1:B10."
+msgid "Click the <emph>Font Position</emph> tab."
msgstr ""
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"par_id3150716\n"
-"22\n"
+"super_subscript.xhp\n"
+"par_id3153954\n"
+"6\n"
"help.text"
-msgid "End the input with the matrix key combination: Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter."
+msgid "Select the <emph>Subscript</emph> option and click OK."
msgstr ""
-#: matrixformula.xhp
+#: super_subscript.xhp
msgctxt ""
-"matrixformula.xhp\n"
-"par_id3145640\n"
-"23\n"
+"super_subscript.xhp\n"
+"par_id3153876\n"
+"7\n"
"help.text"
-msgid "The matrix area is automatically protected against modifications, such as deleting rows or columns. It is, however, possible to edit any formatting, such as the cell background."
+msgid "<link href=\"text/shared/01/05020500.xhp\" name=\"Context menu - Character - Font Position\">Context menu - Character - Font Position</link>"
msgstr ""
#: table_cellmerge.xhp
@@ -11706,552 +10949,1288 @@ msgctxt ""
msgid "Choose <emph>Format - Merge Cells - Split Cells</emph>."
msgstr ""
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
+"table_rotate.xhp\n"
"tit\n"
"help.text"
-msgid "Sorting Data"
-msgstr "Inte~rvalet e Printimit"
+msgid "Rotating Tables (Transposing)"
+msgstr "E hyra në tabela"
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"bm_id3150767\n"
+"table_rotate.xhp\n"
+"bm_id3154346\n"
"help.text"
-msgid "<bookmark_value>database ranges; sorting</bookmark_value> <bookmark_value>sorting; database ranges</bookmark_value> <bookmark_value>data;sorting in databases</bookmark_value>"
+msgid "<bookmark_value>tables; transposing</bookmark_value><bookmark_value>transposing tables</bookmark_value><bookmark_value>inverting tables</bookmark_value><bookmark_value>swapping tables</bookmark_value><bookmark_value>columns; swap with rows</bookmark_value><bookmark_value>rows; swapping with columns</bookmark_value><bookmark_value>tables; rotating</bookmark_value><bookmark_value>rotating; tables</bookmark_value>"
msgstr ""
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"hd_id3150767\n"
-"44\n"
+"table_rotate.xhp\n"
+"hd_id3154346\n"
+"1\n"
"help.text"
-msgid "<variable id=\"database_sort\"><link href=\"text/scalc/guide/database_sort.xhp\" name=\"Sorting Database Ranges\">Sorting Data</link></variable>"
+msgid "<variable id=\"table_rotate\"><link href=\"text/scalc/guide/table_rotate.xhp\" name=\"Rotating Tables (Transposing)\">Rotating Tables (Transposing)</link></variable>"
msgstr ""
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_id3145751\n"
-"45\n"
+"table_rotate.xhp\n"
+"par_id3154013\n"
+"2\n"
"help.text"
-msgid "Click in a database range."
-msgstr "Numri i dështimeve në intervalin provues."
+msgid "In $[officename] Calc, there is a way to \"rotate\" a spreadsheet so that rows become columns and columns become rows."
+msgstr ""
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_id121020081121549\n"
+"table_rotate.xhp\n"
+"par_id3153142\n"
+"3\n"
"help.text"
-msgid "If you select a range of cells, only these cells will get sorted. If you just click one cell without selecting, then the whole database range will get sorted."
+msgid "Select the cell range that you want to transpose."
msgstr ""
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_idN10635\n"
+"table_rotate.xhp\n"
+"par_id3153191\n"
+"4\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Data - Sort</item>."
+msgid "Choose <emph>Edit - Cut</emph>."
msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_id121020081121547\n"
+"table_rotate.xhp\n"
+"par_id3148575\n"
+"6\n"
"help.text"
-msgid "The range of cells that will get sorted is shown in inverted colors."
+msgid "Click the cell that is to be the top left cell in the result."
msgstr ""
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_idN10645\n"
+"table_rotate.xhp\n"
+"par_id3156286\n"
+"7\n"
"help.text"
-msgid "Select the sort options that you want."
+msgid "Choose <emph>Edit - Paste Special</emph>."
msgstr ""
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_idN1063D\n"
+"table_rotate.xhp\n"
+"par_id3144764\n"
+"8\n"
"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+msgid "In the dialog, mark <emph>Paste all</emph> and <emph>Transpose</emph>."
+msgstr ""
-#: database_sort.xhp
+#: table_rotate.xhp
msgctxt ""
-"database_sort.xhp\n"
-"par_id1846980\n"
+"table_rotate.xhp\n"
+"par_id3155600\n"
+"9\n"
"help.text"
-msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Defining_a_Data_Range\">Wiki page about defining a data range</link>"
+msgid "If you now click OK the columns and rows are transposed."
msgstr ""
-#: formula_value.xhp
+#: table_rotate.xhp
msgctxt ""
-"formula_value.xhp\n"
-"tit\n"
+"table_rotate.xhp\n"
+"par_id3146969\n"
+"10\n"
"help.text"
-msgid "Displaying Formulas or Values"
+msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
msgstr ""
-#: formula_value.xhp
+#: table_view.xhp
msgctxt ""
-"formula_value.xhp\n"
-"bm_id3153195\n"
+"table_view.xhp\n"
+"tit\n"
"help.text"
-msgid "<bookmark_value>formulas; displaying in cells</bookmark_value><bookmark_value>values; displaying in tables</bookmark_value><bookmark_value>tables; displaying formulas/values</bookmark_value><bookmark_value>results display vs. formulas display</bookmark_value><bookmark_value>displaying; formulas instead of results</bookmark_value>"
+msgid "Changing Table Views"
+msgstr "Shiriti i Objektit Tabelë"
+
+#: table_view.xhp
+msgctxt ""
+"table_view.xhp\n"
+"bm_id3147304\n"
+"help.text"
+msgid "<bookmark_value>row headers; hiding</bookmark_value><bookmark_value>column headers; hiding</bookmark_value><bookmark_value>tables; views</bookmark_value><bookmark_value>views; tables</bookmark_value><bookmark_value>grids;hiding lines in sheets</bookmark_value><bookmark_value>hiding;headers/grid lines</bookmark_value><bookmark_value>changing;table views</bookmark_value>"
msgstr ""
-#: formula_value.xhp
+#: table_view.xhp
msgctxt ""
-"formula_value.xhp\n"
-"hd_id3153195\n"
+"table_view.xhp\n"
+"hd_id3147304\n"
"1\n"
"help.text"
-msgid "<variable id=\"formula_value\"><link href=\"text/scalc/guide/formula_value.xhp\" name=\"Displaying Formulas or Values\">Displaying Formulas or Values</link></variable>"
+msgid "<variable id=\"table_view\"><link href=\"text/scalc/guide/table_view.xhp\" name=\"Changing Table Views\">Changing Table Views</link></variable>"
msgstr ""
-#: formula_value.xhp
+#: table_view.xhp
msgctxt ""
-"formula_value.xhp\n"
-"par_id3150010\n"
+"table_view.xhp\n"
+"par_id3153192\n"
"2\n"
"help.text"
-msgid "If you want to display the formulas in the cells, for example in the form =SUM(A1:B5), proceed as follows:"
+msgid "To hide column and line headers in a table:"
msgstr ""
-#: formula_value.xhp
+#: table_view.xhp
msgctxt ""
-"formula_value.xhp\n"
-"par_id3151116\n"
+"table_view.xhp\n"
+"par_id3153768\n"
"3\n"
"help.text"
-msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc - View</emph>."
+msgid "Under the menu item <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc,</emph> go to the <emph>View</emph> tab page. Unmark<emph> Column/row headers</emph>. Confirm with <emph>OK</emph>."
msgstr ""
-#: formula_value.xhp
+#: table_view.xhp
msgctxt ""
-"formula_value.xhp\n"
-"par_id3146120\n"
+"table_view.xhp\n"
+"par_id3147436\n"
"4\n"
"help.text"
-msgid "In the <emph>Display</emph> area mark the <emph>Formulas</emph> box. Click OK."
-msgstr ""
+msgid "To hide grid lines:"
+msgstr "Rrjeta (rreshtat dhe karakteret)"
-#: formula_value.xhp
+#: table_view.xhp
msgctxt ""
-"formula_value.xhp\n"
-"par_id3147396\n"
+"table_view.xhp\n"
+"par_id3153726\n"
"5\n"
"help.text"
-msgid "If you want to view the calculation results instead of the formula, do not mark the Formulas box."
+msgid "Under the menu item <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Calc</emph><emph>,</emph> go to the <emph>View</emph> tab page. Unmark <emph>Grid lines</emph>. Confirm with <emph>OK</emph>."
msgstr ""
-#: formula_value.xhp
+#: text_numbers.xhp
msgctxt ""
-"formula_value.xhp\n"
-"par_id3153157\n"
-"6\n"
+"text_numbers.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060100.xhp\" name=\"Spreadsheet - View\">%PRODUCTNAME Calc - View</link>"
+msgid "Formatting Numbers as Text"
+msgstr "Kthen referencën në një qeli si tekst."
+
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"bm_id3145068\n"
+"help.text"
+msgid "<bookmark_value>numbers;entering as text</bookmark_value> <bookmark_value>text formats; for numbers</bookmark_value> <bookmark_value>formats; numbers as text</bookmark_value> <bookmark_value>cell formats; text/numbers</bookmark_value> <bookmark_value>formatting;numbers as text</bookmark_value>"
msgstr ""
-#: format_value.xhp
+#: text_numbers.xhp
msgctxt ""
-"format_value.xhp\n"
+"text_numbers.xhp\n"
+"hd_id3145068\n"
+"46\n"
+"help.text"
+msgid "<variable id=\"text_numbers\"><link href=\"text/scalc/guide/text_numbers.xhp\" name=\"Formatting Numbers as Text\">Formatting Numbers as Text</link></variable>"
+msgstr ""
+
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"par_id3156280\n"
+"43\n"
+"help.text"
+msgid "You can format numbers as text in $[officename] Calc. Open the context menu of a cell or range of cells and choose <emph>Format Cells - Numbers</emph>, then select \"Text\" from the <emph>Category</emph> list. Any numbers subsequently entered into the formatted range are interpreted as text. The display of these \"numbers\" is left-justified, just as with other text."
+msgstr ""
+
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"par_id3149377\n"
+"44\n"
+"help.text"
+msgid "If you have already entered normal numbers in cells and have afterwards changed the format of the cells to \"Text\", the numbers will remain normal numbers. They will not be converted. Only numbers entered afterwards, or numbers which are then edited, will become text numbers."
+msgstr ""
+
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"par_id3144765\n"
+"45\n"
+"help.text"
+msgid "If you decide to enter a number directly as text, enter an apostrophe (') first. For example, for years in column headings, you can enter '1999, '2000 and '2001. The apostrophe is not visible in the cell, it only indicates that the entry is to be recognized as a text. This is useful if, for example, you enter a telephone number or postal code that begins with a zero (0), because a zero (0) at the start of a sequence of digits is removed in normal number formats."
+msgstr ""
+
+#: text_numbers.xhp
+msgctxt ""
+"text_numbers.xhp\n"
+"par_id3156284\n"
+"47\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format - Cells - Numbers\">Format - Cells - Numbers</link>"
+msgstr ""
+
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
"tit\n"
"help.text"
-msgid "Formatting Numbers With Decimals"
-msgstr "Kontrollo fjalët me numra"
+msgid "Rotating Text"
+msgstr "Vizato tekstin"
-#: format_value.xhp
+#: text_rotate.xhp
msgctxt ""
-"format_value.xhp\n"
-"bm_id3145367\n"
+"text_rotate.xhp\n"
+"bm_id3151112\n"
"help.text"
-msgid "<bookmark_value>numbers;formatting decimals</bookmark_value> <bookmark_value>formats; numbers in tables</bookmark_value> <bookmark_value>tables; number formats</bookmark_value> <bookmark_value>defaults; number formats in spreadsheets</bookmark_value> <bookmark_value>decimal places;formatting numbers</bookmark_value> <bookmark_value>formatting;numbers with decimals</bookmark_value> <bookmark_value>formatting;adding/deleting decimal places</bookmark_value> <bookmark_value>number formats; adding/deleting decimal places in cells</bookmark_value> <bookmark_value>deleting; decimal places</bookmark_value> <bookmark_value>decimal places; adding/deleting</bookmark_value>"
+msgid "<bookmark_value>cells; rotating text</bookmark_value> <bookmark_value>rotating; text in cells</bookmark_value> <bookmark_value>text in cells; writing vertically</bookmark_value>"
msgstr ""
-#: format_value.xhp
+#: text_rotate.xhp
msgctxt ""
-"format_value.xhp\n"
-"hd_id3145367\n"
+"text_rotate.xhp\n"
+"hd_id3151112\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"text_rotate\"><link href=\"text/scalc/guide/text_rotate.xhp\" name=\"Rotating Text\">Rotating Text</link></variable>"
+msgstr ""
+
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
+"par_id3145171\n"
+"2\n"
+"help.text"
+msgid "Select the cells whose text you want to rotate."
+msgstr ""
+
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
+"par_id3155133\n"
+"3\n"
+"help.text"
+msgid "Choose <emph>Format - Cells</emph>. You will see the <emph>Format Cells</emph> dialog."
+msgstr ""
+
+#: text_rotate.xhp
+msgctxt ""
+"text_rotate.xhp\n"
+"par_id3155854\n"
"4\n"
"help.text"
-msgid "<variable id=\"format_value\"><link href=\"text/scalc/guide/format_value.xhp\" name=\"Formatting Numbers With Decimals\">Formatting Numbers With Decimals</link></variable>"
+msgid "Click the <emph>Alignment</emph> tab."
msgstr ""
-#: format_value.xhp
+#: text_rotate.xhp
msgctxt ""
-"format_value.xhp\n"
-"par_id3148576\n"
+"text_rotate.xhp\n"
+"par_id3147426\n"
"5\n"
"help.text"
-msgid "Enter a number into the sheet, for example, 1234.5678. This number will be displayed in the default number format, with two decimal places. You will see 1234.57 when you confirm the entry. Only the display in the document will be rounded off; internally, the number retains all four decimal places after the decimal point."
+msgid "In the <emph>Text orientation</emph> area use the mouse to select in the preview wheel the direction in which the text is to be rotated. Click <emph>OK</emph>."
msgstr ""
-#: format_value.xhp
+#: text_rotate.xhp
msgctxt ""
-"format_value.xhp\n"
-"par_id3154012\n"
-"12\n"
+"text_rotate.xhp\n"
+"par_id3148456\n"
+"7\n"
"help.text"
-msgid "To format numbers with decimals:"
+msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cells\">Format - Cells</link>"
msgstr ""
-#: format_value.xhp
+#: text_rotate.xhp
msgctxt ""
-"format_value.xhp\n"
-"par_id3147394\n"
-"6\n"
+"text_rotate.xhp\n"
+"par_id3154944\n"
+"8\n"
"help.text"
-msgid "Set the cursor at the number and choose <emph>Format - Cells</emph> to start the <emph>Format Cells</emph> dialog."
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Format - Cells - Alignment\">Format - Cells - Alignment</link>"
msgstr ""
-#: format_value.xhp
+#: text_wrap.xhp
msgctxt ""
-"format_value.xhp\n"
-"par_id3153157\n"
-"9\n"
+"text_wrap.xhp\n"
+"tit\n"
"help.text"
-msgid "On the <emph>Numbers</emph> tab you will see a selection of predefined number formats. In the bottom right in the dialog you will see a preview of how your current number would look if you were to give it a particular format."
+msgid "Writing Multi-line Text"
+msgstr "Teksti u rreshtua në rreshtin bazament"
+
+#: text_wrap.xhp
+msgctxt ""
+"text_wrap.xhp\n"
+"bm_id3154346\n"
+"help.text"
+msgid "<bookmark_value>text in cells; multi-line</bookmark_value><bookmark_value>cells; text breaks</bookmark_value><bookmark_value>breaks in cells</bookmark_value><bookmark_value>multi-line text in cells</bookmark_value>"
msgstr ""
-#: format_value.xhp
+#: text_wrap.xhp
msgctxt ""
-"format_value.xhp\n"
-"par_id3155766\n"
+"text_wrap.xhp\n"
+"hd_id3154346\n"
+"42\n"
"help.text"
-msgid "<image id=\"img_id3149021\" src=\"cmd/sc_numberformatincdecimals.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3149021\">Icon</alt></image>"
+msgid "<variable id=\"text_wrap\"><link href=\"text/scalc/guide/text_wrap.xhp\" name=\"Writing Multi-line Text\">Writing Multi-line Text</link></variable>"
msgstr ""
-#: format_value.xhp
+#: text_wrap.xhp
msgctxt ""
-"format_value.xhp\n"
-"par_id3149256\n"
-"10\n"
+"text_wrap.xhp\n"
+"par_id3156280\n"
+"41\n"
"help.text"
-msgid "If you only want to modify the number of the decimal places displayed, the easiest method is to use the <emph>Number Format: Add Decimal Place</emph> or <emph>Number Format: Delete Decimal Place</emph> icons on the Formatting Bar."
+msgid "Pressing the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter keys inserts a manual line break. This shortcut works directly in the cell or in the input line. The input line can be expaneded to the multi-line by the Down arrow button on the right."
msgstr ""
-#: print_title_row.xhp
+#: text_wrap.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"tit\n"
+"text_wrap.xhp\n"
+"par_id3153142\n"
+"43\n"
"help.text"
-msgid "Printing Rows or Columns on Every Page"
+msgid "If you want the text to automatically break at the right border of the cell, proceed as follows:"
msgstr ""
-#: print_title_row.xhp
+#: text_wrap.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"bm_id3151112\n"
+"text_wrap.xhp\n"
+"par_id3153951\n"
+"44\n"
"help.text"
-msgid "<bookmark_value>printing; sheets on multiple pages</bookmark_value><bookmark_value>sheets; printing on multiple pages</bookmark_value><bookmark_value>rows; repeating when printing</bookmark_value><bookmark_value>columns; repeating when printing</bookmark_value><bookmark_value>repeating;columns/rows on printed pages</bookmark_value><bookmark_value>title rows; printing on all sheets</bookmark_value><bookmark_value>headers; printing on sheets</bookmark_value><bookmark_value>footers; printing on sheets</bookmark_value><bookmark_value>printing; rows/columns as table headings</bookmark_value><bookmark_value>headings;repeating rows/columns as</bookmark_value>"
+msgid "Select all the cells where you want the text to break at the right border."
msgstr ""
-#: print_title_row.xhp
+#: text_wrap.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"hd_id3153727\n"
-"21\n"
+"text_wrap.xhp\n"
+"par_id3148575\n"
+"45\n"
"help.text"
-msgid "<variable id=\"print_title_row\"><link href=\"text/scalc/guide/print_title_row.xhp\" name=\"Printing Rows or Columns on Every Page\">Printing Rows or Columns on Every Page</link></variable>"
+msgid "In <emph>Format - Cells - Alignment</emph>, mark the <emph>Wrap text automatically</emph> option and click OK."
msgstr ""
-#: print_title_row.xhp
+#: text_wrap.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3154014\n"
+"text_wrap.xhp\n"
+"par_id3145799\n"
+"46\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/05020000.xhp\" name=\"Format - Cell\">Format - Cell</link>"
+msgstr ""
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"tit\n"
+"help.text"
+msgid "User-Defined Functions"
+msgstr "Indeks i definuar nga shfrytëzuesi"
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"bm_id3155411\n"
+"help.text"
+msgid "<bookmark_value>functions; user-defined</bookmark_value><bookmark_value>user-defined functions</bookmark_value><bookmark_value>Basic IDE for user-defined functions</bookmark_value><bookmark_value>IDE; Basic IDE</bookmark_value><bookmark_value>programming;functions</bookmark_value>"
+msgstr ""
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"hd_id3155411\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"userdefined_function\"><link href=\"text/scalc/guide/userdefined_function.xhp\" name=\"Defining Functions Yourself\">User-Defined Functions</link></variable>"
+msgstr ""
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3153969\n"
"2\n"
"help.text"
-msgid "If you have a sheet that is so large that it will be printed multiple pages, you can set up rows or columns to repeat on each printed page."
+msgid "You can apply user-defined functions in $[officename] Calc in the following ways:"
msgstr ""
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3146975\n"
+"userdefined_function.xhp\n"
+"par_id3145366\n"
+"4\n"
+"help.text"
+msgid "You can define your own functions using the Basic-IDE. This method requires a basic knowledge of programming."
+msgstr ""
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3153768\n"
+"3\n"
+"help.text"
+msgid "You can program functions as <link href=\"text/scalc/01/04060111.xhp\" name=\"add-ins\">add-ins</link>. This method requires an advanced knowledge of programming."
+msgstr ""
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"hd_id3149260\n"
+"6\n"
+"help.text"
+msgid "Defining A Function Using %PRODUCTNAME Basic"
+msgstr ""
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3148456\n"
"7\n"
"help.text"
-msgid "As an example, If you want to print the top two rows of the sheet as well as the first column (A)on all pages, do the following:"
+msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item>."
msgstr ""
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3163710\n"
+"userdefined_function.xhp\n"
+"par_id3154510\n"
"8\n"
"help.text"
-msgid "Choose <emph>Format - Print Ranges - Edit</emph>. The <emph>Edit Print Ranges</emph> dialog appears."
+msgid "Click the <emph>Edit</emph> button. You will now see the Basic IDE."
msgstr ""
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3149958\n"
+"userdefined_function.xhp\n"
+"par_id3150327\n"
"9\n"
"help.text"
-msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area."
+msgid "Enter the function code. In this example, we define a <item type=\"literal\">VOL(a; b; c)</item> function that calculates the volume of a rectangular solid with side lengths <item type=\"literal\">a</item>, <item type=\"literal\">b</item> and <item type=\"literal\">c</item>:"
msgstr ""
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3145800\n"
+"userdefined_function.xhp\n"
+"par_id3155443\n"
"10\n"
"help.text"
-msgid "The dialog shrinks so that you can see more of the sheet."
+msgid "Close the Basic-IDE window."
msgstr ""
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3155602\n"
+"userdefined_function.xhp\n"
+"par_id3150043\n"
"11\n"
"help.text"
-msgid "Select the first two rows and, for this example, click cell A1 and drag to A2."
+msgid "Your function is automatically saved in the default module and is now available. If you apply the function in a Calc document that is to be used on another computer, you can copy the function to the Calc document as described in the next section."
msgstr ""
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3154018\n"
+"userdefined_function.xhp\n"
+"hd_id3147340\n"
+"18\n"
+"help.text"
+msgid "Copying a Function To a Document"
+msgstr "Drejtpërdrejt në fund të dokumentit"
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3145232\n"
+"19\n"
+"help.text"
+msgid "In stage 2 of \"Defining A Function Using %PRODUCTNAME Basic\", in the <emph>Macro</emph> dialog you clicked on <emph>Edit </emph>. As the default, in the <emph>Macro from</emph> field the <emph>My Macros - Standard - Module1</emph> module is selected. The <emph>Standard</emph> library resides locally in your user directory."
+msgstr ""
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3154022\n"
+"20\n"
+"help.text"
+msgid "If you want to copy the user-defined function to a Calc document:"
+msgstr ""
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3150304\n"
+"21\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
+msgstr ""
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3150086\n"
+"22\n"
+"help.text"
+msgid "In the <emph>Macro from</emph> field select <emph>My Macros - Standard - Module1</emph> and click <emph>Edit</emph>."
+msgstr ""
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3166430\n"
+"23\n"
+"help.text"
+msgid "In the Basic-IDE, select the source of your user-defined function and copy it to the clipboard."
+msgstr ""
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_idN1081D\n"
+"help.text"
+msgid "Close the Basic-IDE."
+msgstr "Master IDE%s, ndarja Nr. %s [%s]"
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3150517\n"
+"24\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Tools - Macros - Organize Macros - %PRODUCTNAME Basic</item> ."
+msgstr ""
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3145384\n"
+"25\n"
+"help.text"
+msgid "In the <emph>Macro from</emph> field select <emph>(Name of the Calc document) - Standard - Module1</emph>. Click <emph>Edit</emph>."
+msgstr ""
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"par_id3148699\n"
+"26\n"
+"help.text"
+msgid "Paste the clipboard contents in the Basic-IDE of the document."
+msgstr ""
+
+#: userdefined_function.xhp
+msgctxt ""
+"userdefined_function.xhp\n"
+"hd_id3153305\n"
"12\n"
"help.text"
-msgid "In the shrunk dialog you will see $1:$2. Rows 1 and 2 are now rows to repeat."
+msgid "Applying a User-defined Function in $[officename] Calc"
msgstr ""
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3153707\n"
+"userdefined_function.xhp\n"
+"par_id3148869\n"
"13\n"
"help.text"
-msgid "Click the icon at the far right of the <emph>Rows to repeat</emph> area. The dialog is restored again."
+msgid "Once you have defined the function <item type=\"literal\">VOL(a; b; c)</item> in the Basic-IDE, you can apply it the same way as the built-in functions of $[officename] Calc."
msgstr ""
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3155443\n"
+"userdefined_function.xhp\n"
+"par_id3148606\n"
"14\n"
"help.text"
-msgid "If you also want column A as a column to repeat, click the icon at the far right of the <emph>Columns to repeat</emph> area."
+msgid "Open a Calc document and enter numbers for the function parameters <item type=\"literal\">a</item>, <item type=\"literal\">b</item>, and <item type=\"literal\">c</item> in cells A1, B1, and C1."
msgstr ""
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3154256\n"
+"userdefined_function.xhp\n"
+"par_id3156019\n"
"15\n"
"help.text"
-msgid "Click column A (not in the column header)."
+msgid "Set the cursor in another cell and enter the following:"
msgstr ""
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3154704\n"
+"userdefined_function.xhp\n"
+"par_id3155264\n"
"16\n"
"help.text"
-msgid "Click the icon again at the far right of the <emph>Columns to repeat</emph> area."
+msgid "=VOL(A1;B1;C1)"
msgstr ""
-#: print_title_row.xhp
+#: userdefined_function.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3150088\n"
+"userdefined_function.xhp\n"
+"par_id3146776\n"
"17\n"
"help.text"
-msgid "Rows to repeat are rows from the sheet. You can define headers and footers to be printed on each print page independently of this in <emph>Format - Page</emph>."
+msgid "The function is evaluated and you will see the result in the selected cell."
msgstr ""
-#: print_title_row.xhp
+#: validity.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3155380\n"
+"validity.xhp\n"
+"tit\n"
+"help.text"
+msgid "Validity of Cell Contents"
+msgstr "Tabela e përmbajtjeve të sllajdit"
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"bm_id3156442\n"
+"help.text"
+msgid "<bookmark_value>values; limiting on input</bookmark_value><bookmark_value>limits; specifying value limits on input</bookmark_value><bookmark_value>permitted cell contents</bookmark_value><bookmark_value>data validity</bookmark_value><bookmark_value>validity</bookmark_value><bookmark_value>cells; validity</bookmark_value><bookmark_value>error messages; defining for incorrect input</bookmark_value><bookmark_value>actions in case of incorrect input</bookmark_value><bookmark_value>Help tips; defining text for cell input</bookmark_value><bookmark_value>comments;help text for cells</bookmark_value><bookmark_value>cells; defining input help</bookmark_value><bookmark_value>macros; running when incorrect input</bookmark_value><bookmark_value>data; validity check</bookmark_value>"
+msgstr ""
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"hd_id3156442\n"
+"22\n"
+"help.text"
+msgid "<variable id=\"validity\"><link href=\"text/scalc/guide/validity.xhp\" name=\"Validity of Cell Contents\">Validity of Cell Contents</link></variable>"
+msgstr ""
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3156283\n"
+"2\n"
+"help.text"
+msgid "For each cell, you can define entries to be valid. Invalid entries to a cell will be rejected."
+msgstr ""
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3145252\n"
+"3\n"
+"help.text"
+msgid "The validity rule is activated when a new value is entered. If an invalid value has already been inserted into the cell, or if you insert a value in the cell either with drag-and-drop or by copying and pasting, the validity rule will not take effect."
+msgstr ""
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id5174718\n"
+"help.text"
+msgid "You can choose <emph>Tools - Detective</emph> at any time and choose the command <link href=\"text/scalc/01/06030800.xhp\" name=\"Mark Invalid Data\"><emph>Mark Invalid Data</emph></link> to display which cells contain invalid values."
+msgstr ""
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"hd_id3155603\n"
+"5\n"
+"help.text"
+msgid "Using Cell Contents Validity"
+msgstr ""
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3155959\n"
+"6\n"
+"help.text"
+msgid "Select the cells for which you want to define a new validity rule."
+msgstr ""
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3148837\n"
+"8\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Data - Validity</item>."
+msgstr "Nuk mund ta hap fajllin $(URL1)."
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3156020\n"
+"9\n"
+"help.text"
+msgid "On the <emph>Criteria</emph> tab page, enter the conditions for new values entered into cells."
+msgstr ""
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3159208\n"
+"10\n"
+"help.text"
+msgid "In the <emph>Allow</emph> field, select an option."
+msgstr ""
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3153011\n"
+"11\n"
+"help.text"
+msgid "If you select \"Whole Numbers\", values such as \"12.5\" are not allowed. Choosing \"Date\" allows date information both in the local date format as well as in the form of a <link href=\"text/sbasic/shared/03030101.xhp\" name=\"serial date\">serial date</link>. Similarly, the \"Time\" condition permits time values such as \"12:00\" or serial time numbers. \"Text Length\" stipulates that cells are allowed to contain text only."
+msgstr ""
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id9224829\n"
+"help.text"
+msgid "Select \"List\" to enter a list of valid entries."
+msgstr ""
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3149317\n"
+"13\n"
+"help.text"
+msgid "Select the next condition under <emph>Data</emph>. According to what you choose, additional options will be selectable."
+msgstr ""
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3151389\n"
+"15\n"
+"help.text"
+msgid "After you have determined the conditions for cell validity, you can use the other two tab pages to create message boxes:"
+msgstr ""
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3159261\n"
+"16\n"
+"help.text"
+msgid "On the <emph>Input Help</emph> tab page, enter the title and the text of the tip, which will then be displayed if the cell is selected."
+msgstr ""
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3156396\n"
+"17\n"
+"help.text"
+msgid "On the <emph>Error Alert</emph> tab page, select the action to be carried out in the event of an error."
+msgstr ""
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3147416\n"
"18\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
+msgid "If you select \"Stop\" as the action, invalid entries are not accepted, and the previous cell contents are retained."
msgstr ""
-#: print_title_row.xhp
+#: validity.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3154371\n"
+"validity.xhp\n"
+"par_id3150033\n"
"19\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05080300.xhp\" name=\"Format - Print ranges - Edit\">Format - Print ranges - Edit</link>"
+msgid "Select \"Warning\" or \"Information\" to display a dialog in which the entry can either be canceled or accepted."
msgstr ""
-#: print_title_row.xhp
+#: validity.xhp
msgctxt ""
-"print_title_row.xhp\n"
-"par_id3146113\n"
+"validity.xhp\n"
+"par_id3149947\n"
"20\n"
"help.text"
-msgid "<link href=\"text/scalc/01/05070000.xhp\" name=\"Format - Page - (Header / Footer)\">Format - Page - (Header / Footer)</link>"
+msgid "If you select \"Macro\", then by using the <emph>Browse</emph> button you can specify a macro to be run in the event of an error."
msgstr ""
-#: print_details.xhp
+#: validity.xhp
msgctxt ""
-"print_details.xhp\n"
+"validity.xhp\n"
+"par_id3149011\n"
+"35\n"
+"help.text"
+msgid "To display the error message, select <emph>Show error message when invalid values are entered</emph>."
+msgstr ""
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3148586\n"
+"21\n"
+"help.text"
+msgid "After changing the action for a cell on the <emph>Error Alert</emph> tab page and closing the dialog with OK, you must first select another cell before the change takes effect."
+msgstr ""
+
+#: validity.xhp
+msgctxt ""
+"validity.xhp\n"
+"par_id3154805\n"
+"30\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/12120000.xhp\" name=\"Data - Validity\">Data - Validity</link>"
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
"tit\n"
"help.text"
-msgid "Printing Sheet Details"
-msgstr "Shfaq detajet e konfigurimit"
+msgid "Naming Cells"
+msgstr "Bashko qelizat"
-#: print_details.xhp
+#: value_with_name.xhp
msgctxt ""
-"print_details.xhp\n"
-"bm_id3154346\n"
+"value_with_name.xhp\n"
+"bm_id3147434\n"
"help.text"
-msgid "<bookmark_value>printing;sheet details</bookmark_value><bookmark_value>sheets; printing details</bookmark_value><bookmark_value>grids; printing sheet grids</bookmark_value><bookmark_value>formulas; printing, instead of results</bookmark_value><bookmark_value>comments; printing</bookmark_value><bookmark_value>charts;printing</bookmark_value><bookmark_value>sheet grids; printing</bookmark_value><bookmark_value>cells; printing grids</bookmark_value><bookmark_value>borders; printing cells</bookmark_value><bookmark_value>zero values; printing</bookmark_value><bookmark_value>null values; printing</bookmark_value><bookmark_value>draw objects;printing</bookmark_value>"
+msgid "<bookmark_value>cells; defining names</bookmark_value> <bookmark_value>names; defining for cells</bookmark_value> <bookmark_value>values; defining names</bookmark_value> <bookmark_value>constants definition</bookmark_value> <bookmark_value>variables; defining names</bookmark_value> <bookmark_value>cell ranges; defining names</bookmark_value> <bookmark_value>defining;names for cell ranges</bookmark_value> <bookmark_value>formulas; defining names</bookmark_value> <bookmark_value>addressing; by defined names</bookmark_value> <bookmark_value>cell names; defining/addressing</bookmark_value> <bookmark_value>references; by defined names</bookmark_value> <bookmark_value>allowed cell names</bookmark_value> <bookmark_value>renaming;cells</bookmark_value>"
msgstr ""
-#: print_details.xhp
+#: value_with_name.xhp
msgctxt ""
-"print_details.xhp\n"
-"hd_id3154346\n"
+"value_with_name.xhp\n"
+"hd_id3147434\n"
"1\n"
"help.text"
-msgid "<variable id=\"print_details\"><link href=\"text/scalc/guide/print_details.xhp\" name=\"Printing Sheet Details\">Printing Sheet Details</link></variable>"
+msgid "<variable id=\"value_with_name\"><link href=\"text/scalc/guide/value_with_name.xhp\" name=\"Naming Cells\">Naming Cells</link></variable>"
msgstr ""
-#: print_details.xhp
+#: value_with_name.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3153728\n"
+"value_with_name.xhp\n"
+"hd_id4391918\n"
+"help.text"
+msgid "Allowed names"
+msgstr "Emrat e Objekteve"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id2129581\n"
+"help.text"
+msgid "Names in Calc can contain letters, numeric characters, and some special characters. Names must start with a letter or an underline character."
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id1120029\n"
+"help.text"
+msgid "Allowed special characters:"
+msgstr "Hyrja e karaktereve alfanumerike"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3362224\n"
+"help.text"
+msgid "underline (_)"
+msgstr "Nënvizim"
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id4891506\n"
+"help.text"
+msgid "period (.) - allowed within a name, but not as first or last character"
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id2816553\n"
+"help.text"
+msgid "blank ( ) - allowed within a name, but not as first or last character, and not for a cell range"
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id328989\n"
+"help.text"
+msgid "Names must not be the same as cell references. For example, the name A1 is invalid because A1 is a cell reference to the top left cell."
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id32898987\n"
+"help.text"
+msgid "Names must not start with the letter R followed by a number. See the ADDRESS function for more information."
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id4769737\n"
+"help.text"
+msgid "Names for cell ranges must not include blanks. Blanks are allowed within names for single cells, sheets and documents."
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"hd_id1226233\n"
+"help.text"
+msgid "Naming cells and formulas"
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id5489364\n"
+"help.text"
+msgid "A good way of making the references to cells and cell ranges in formulas legible is to give the ranges names. For example, you can name the range A1:B2 <emph>Start</emph>. You can then write a formula such as \"=SUM(Start)\". Even after you insert or delete rows or columns, $[officename] still correctly assigns the ranges identified by name. Range names must not contain any spaces."
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id953398\n"
+"help.text"
+msgid "For example, it is much easier to read a formula for sales tax if you can write \"= Amount * Tax_rate\" instead of \"= A5 * B12\". In this case, you would name cell A5 \"Amount\" and cell B12 \"Tax_rate.\""
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id4889675\n"
+"help.text"
+msgid "Use the <emph>Define Names</emph> dialog to define names for formulas or parts of formulas you need more often. In order to specify range names,"
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3153954\n"
+"3\n"
+"help.text"
+msgid "Select a cell or range of cells, then choose <emph>Insert - Names - Define</emph>. The <emph>Define Names</emph> dialog appears."
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3156283\n"
+"4\n"
+"help.text"
+msgid "Type the name of the selected area in the <emph>Name</emph> field. Click <emph>Add</emph>. The newly defined name appears in the list below. Click OK to close the dialog."
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id5774101\n"
+"help.text"
+msgid "You can also name other cell ranges in this dialog by entering the name in the field and then selecting the respective cells."
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3154942\n"
+"5\n"
+"help.text"
+msgid "If you type the name in a formula, after the first few characters entered you will see the entire name as a tip."
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3154510\n"
+"6\n"
+"help.text"
+msgid "Press the Enter key in order to accept the name from the tip."
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3150749\n"
+"7\n"
+"help.text"
+msgid "If more than one name starts with the same characters, you can scroll through all the names using the Tab key."
+msgstr ""
+
+#: value_with_name.xhp
+msgctxt ""
+"value_with_name.xhp\n"
+"par_id3153711\n"
+"8\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04070100.xhp\" name=\"Insert - Names - Define\">Insert - Names - Define</link>"
+msgstr ""
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"tit\n"
+"help.text"
+msgid "Inserting External Data in Table (WebQuery)"
+msgstr ""
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"bm_id3154346\n"
+"help.text"
+msgid "<bookmark_value>HTML WebQuery</bookmark_value><bookmark_value>ranges; inserting in tables</bookmark_value><bookmark_value>external data; inserting</bookmark_value><bookmark_value>tables; inserting external data</bookmark_value><bookmark_value>web pages; importing data</bookmark_value><bookmark_value>WebQuery filter</bookmark_value><bookmark_value>inserting; external data</bookmark_value><bookmark_value>data sources; external data</bookmark_value>"
+msgstr ""
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"hd_id3125863\n"
"2\n"
"help.text"
-msgid "When printing a sheet you can select which details are to be printed:"
+msgid "<variable id=\"webquery\"><link href=\"text/scalc/guide/webquery.xhp\" name=\"Inserting External Data in Table (WebQuery)\">Inserting External Data in Table (WebQuery)</link></variable>"
msgstr ""
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3150010\n"
+"webquery.xhp\n"
+"par_id3155131\n"
"3\n"
"help.text"
-msgid "Row and column headers"
-msgstr "~Krerët e shtyllës dhe rreshtit"
+msgid "With the help of the <emph>Web Page Query ($[officename] Calc)</emph> import filter, you can insert tables from HTML documents in a Calc spreadsheet."
+msgstr ""
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3154013\n"
+"webquery.xhp\n"
+"par_id3148575\n"
"4\n"
"help.text"
-msgid "Sheet grid"
-msgstr "Rrjeta e dukshme"
+msgid "You can use the same method to insert ranges defined by name from a Calc or Microsoft Excel spreadsheet."
+msgstr ""
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3145273\n"
+"webquery.xhp\n"
+"par_id3149664\n"
"5\n"
"help.text"
-msgid "Comments"
-msgstr "Përmbajtjet"
+msgid "The following insert methods are available:"
+msgstr ""
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3145801\n"
+"webquery.xhp\n"
+"hd_id3146976\n"
"6\n"
"help.text"
-msgid "Objects and graphics"
-msgstr "Grafikat dhe objektet"
+msgid "Inserting by Dialog"
+msgstr "**Pjesëtim me zero**"
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3154491\n"
+"webquery.xhp\n"
+"par_id3154319\n"
"7\n"
"help.text"
-msgid "Charts"
-msgstr "Diagramet"
+msgid "Set the cell cursor at the cell where the new content will be inserted."
+msgstr ""
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3154731\n"
+"webquery.xhp\n"
+"par_id3145750\n"
"8\n"
"help.text"
-msgid "Drawing objects"
-msgstr "Objektet e vizatimit"
+msgid "Choose <emph>Insert - Link to External Data</emph>. This opens the <link href=\"text/scalc/01/04090000.xhp\">External Data</link> dialog."
+msgstr ""
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3149400\n"
+"webquery.xhp\n"
+"par_id3149958\n"
"9\n"
"help.text"
-msgid "Formulas"
-msgstr "Formulat"
+msgid "Enter the URL of the HTML document or the name of the spreadsheet. Press Enter when finished. Click the <emph>...</emph> button to open a file selection dialog."
+msgstr ""
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3150752\n"
+"webquery.xhp\n"
+"par_id3149400\n"
"10\n"
"help.text"
-msgid "To choose the details proceed as follows:"
+msgid "In the large list box of the dialog, select the named ranges or tables you want to insert."
msgstr ""
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3145640\n"
+"webquery.xhp\n"
+"par_id3155064\n"
"11\n"
"help.text"
-msgid "Select the sheet you want to print."
-msgstr "A dëshironi të kontrolloni tekstin kryesor?"
+msgid "You can also specify that the ranges or tables are updated every n seconds."
+msgstr ""
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3150042\n"
+"webquery.xhp\n"
+"par_id3155443\n"
+"30\n"
+"help.text"
+msgid "The import filter can create names for cell ranges on the fly. As much formatting as possible is retained, while the filter intentionally does not load any images."
+msgstr ""
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"hd_id3149021\n"
"12\n"
"help.text"
-msgid "Choose <emph>Format - Page</emph>."
-msgstr "Nuk mund ta hap fajllin $(URL1)."
+msgid "Inserting by Navigator"
+msgstr "Navigator kyçur/çkyçur"
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3147340\n"
-"13\n"
+"webquery.xhp\n"
+"par_id3153965\n"
+"14\n"
"help.text"
-msgid "The command is not visible if the sheet was opened with write protection on. In that case, click the <emph>Edit File </emph>icon on the <emph>Standard</emph> Bar."
+msgid "Open two documents: the $[officename] Calc spreadsheet in which the external data is to be inserted (target document) and the document from which the external data derives (source document)."
msgstr ""
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3146916\n"
-"14\n"
+"webquery.xhp\n"
+"par_id3150205\n"
+"16\n"
"help.text"
-msgid "Select the <emph>Sheet</emph> tab. In the <emph>Print </emph>area mark the details to be printed and click OK."
+msgid "In the target document open the Navigator."
+msgstr "Hape këtë dokument në modin vetëm-lexo"
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3152990\n"
+"18\n"
+"help.text"
+msgid "In the lower combo box of the Navigator select the source document. The Navigator now shows the range names and database ranges or the tables contained in the source document."
msgstr ""
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3145789\n"
-"15\n"
+"webquery.xhp\n"
+"par_id3148842\n"
+"20\n"
"help.text"
-msgid "Print the document."
-msgstr "Printo dokumentin"
+msgid "In the Navigator select the <emph>Insert as link</emph> drag mode <image id=\"img_id3152985\" src=\"sw/imglst/sc20238.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152985\">Icon</alt></image>."
+msgstr ""
-#: print_details.xhp
+#: webquery.xhp
msgctxt ""
-"print_details.xhp\n"
-"par_id3150345\n"
-"16\n"
+"webquery.xhp\n"
+"par_id3157978\n"
+"22\n"
"help.text"
-msgid "<link href=\"text/scalc/01/03100000.xhp\" name=\"View - Page Break Preview\">View - Page Break Preview</link>"
+msgid "Drag the desired external data from the Navigator into the target document."
+msgstr ""
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3144768\n"
+"23\n"
+"help.text"
+msgid "If you have loaded an HTML document with the <emph>Web Page Query</emph> filter as the source document, you will find the tables in the Navigator, named continuously from \"HTML_table1\" onwards, and also two range names that have been created:"
+msgstr ""
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3152873\n"
+"24\n"
+"help.text"
+msgid "<item type=\"literal\">HTML_all</item> - designates the entire document"
+msgstr ""
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3149897\n"
+"25\n"
+"help.text"
+msgid "<item type=\"literal\">HTML_tables</item> - designates all HTML tables in the document"
+msgstr ""
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"hd_id3149126\n"
+"26\n"
+"help.text"
+msgid "Editing the external data"
+msgstr "Burime tjera të jashtme të të dhënave"
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3159228\n"
+"27\n"
+"help.text"
+msgid "Open <emph>Edit - Links</emph>. Here you can edit the link to the external data."
+msgstr ""
+
+#: webquery.xhp
+msgctxt ""
+"webquery.xhp\n"
+"par_id3154650\n"
+"28\n"
+"help.text"
+msgid "<link href=\"text/scalc/01/04090000.xhp\" name=\"External data dialog\">External data dialog</link>"
+msgstr ""
+
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"tit\n"
+"help.text"
+msgid "19xx/20xx Years"
+msgstr ""
+
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"bm_id3150439\n"
+"help.text"
+msgid "<bookmark_value>years; 2-digits</bookmark_value><bookmark_value>dates; 19xx/20xx</bookmark_value>"
+msgstr ""
+
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"hd_id3150439\n"
+"18\n"
+"help.text"
+msgid "<variable id=\"year2000\"><link href=\"text/scalc/guide/year2000.xhp\" name=\"19xx/20xx Years\">19xx/20xx Years</link></variable>"
+msgstr ""
+
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"par_id3151116\n"
+"17\n"
+"help.text"
+msgid "The year in a date entry is often entered as two digits. Internally, the year is managed by $[officename] as four digits, so that in the calculation of the difference from 1/1/99 to 1/1/01, the result will correctly be two years."
+msgstr ""
+
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"par_id3154011\n"
+"19\n"
+"help.text"
+msgid "Under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - General</emph> you can define the century that is used when you enter a year with only two digits. The default is 1930 to 2029."
+msgstr ""
+
+#: year2000.xhp
+msgctxt ""
+"year2000.xhp\n"
+"par_id3150010\n"
+"20\n"
+"help.text"
+msgid "This means that if you enter a date of 1/1/30 or higher, it will be treated internally as 1/1/1930 or higher. All lower two-digit years apply to the 20xx century. So, for example, 1/1/20 is converted into 1/1/2020."
msgstr ""
diff --git a/source/sq/helpcontent2/source/text/schart.po b/source/sq/helpcontent2/source/text/schart.po
index 6fb2feb766e..30e51a828ce 100644
--- a/source/sq/helpcontent2/source/text/schart.po
+++ b/source/sq/helpcontent2/source/text/schart.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 19:07+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,237 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"tit\n"
-"help.text"
-msgid "$[officename] Chart Features"
-msgstr "Duke publikuar veçoritë e produktit"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3150543\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/schart/main0503.xhp\" name=\"$[officename] Chart Features\">$[officename] Chart Features</link>"
-msgstr ""
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3150868\n"
-"2\n"
-"help.text"
-msgid "Charts allow you to present data so that it is easy to visualize."
-msgstr ""
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3146974\n"
-"6\n"
-"help.text"
-msgid "You can create a chart from source data in a Calc spreadsheet or a Writer table. When the chart is embedded in the same document as the data, it stays linked to the data, so that the chart automatically updates when you change the source data."
-msgstr ""
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3153143\n"
-"7\n"
-"help.text"
-msgid "Chart Types"
-msgstr "Llojet e fajllave"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3151112\n"
-"8\n"
-"help.text"
-msgid "Choose from a variety of 3D charts and 2D charts, such as bar charts, line charts, stock charts. You can change chart types with a few clicks of the mouse."
-msgstr ""
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"hd_id3149665\n"
-"10\n"
-"help.text"
-msgid "Individual Formatting"
-msgstr "Formatizimi i hyrjeve"
-
-#: main0503.xhp
-msgctxt ""
-"main0503.xhp\n"
-"par_id3156441\n"
-"11\n"
-"help.text"
-msgid "You can customize individual chart elements, such as axes, data labels, and legends, by right-clicking them in the chart, or with toolbar icons and menu commands."
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"tit\n"
-"help.text"
-msgid "Formatting Bar"
-msgstr "Shiriti i kontrollit"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200911433792\n"
-"help.text"
-msgid "<link href=\"text/schart/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200911433835\n"
-"help.text"
-msgid "The Formatting Bar is shown when a chart is set to edit mode. Double-click a chart to enter edit mode. Click outside the chart to leave edit mode."
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200911433878\n"
-"help.text"
-msgid "You can edit the formatting of a chart using the controls and icons on the Formatting Bar."
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300436\n"
-"help.text"
-msgid "Select Chart Element"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300479\n"
-"help.text"
-msgid "<ahelp hid=\".\">Select the element from the chart that you want to format. The element gets selected in the chart preview. Click Format Selection to open the properties dialog for the selected element.</ahelp>"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300555\n"
-"help.text"
-msgid "Format Selection"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300539\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the properties dialog for the selected element.</ahelp>"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300545\n"
-"help.text"
-msgid "Chart Type"
-msgstr "Llojet e fajllave"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300594\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Chart Type dialog.</ahelp>"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300537\n"
-"help.text"
-msgid "Chart Data Table"
-msgstr "Të dhëna Diagrami"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300699\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Data Table dialog where you can edit the chart data.</ahelp>"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300672\n"
-"help.text"
-msgid "Horizontal Grid On/Off"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300630\n"
-"help.text"
-msgid "<ahelp hid=\".\">The Horizontal Grid On/Off icon on the Formatting bar toggles the visibility of the grid display for the Y axis.</ahelp>"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300738\n"
-"help.text"
-msgid "Legend On/Off"
-msgstr "Legjenda kyçur/çkyçur"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id081020090230076\n"
-"help.text"
-msgid "<ahelp hid=\".\">To show or hide a legend, click Legend On/Off on the Formatting bar.</ahelp>"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id0810200902300785\n"
-"help.text"
-msgid "Scale Text"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300784\n"
-"help.text"
-msgid "<ahelp hid=\".\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id081020090230087\n"
-"help.text"
-msgid "Automatic Layout"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id0810200902300834\n"
-"help.text"
-msgid "<ahelp hid=\".\">Moves all chart elements to their default positions inside the current chart. This function does not alter the chart type or any other attributes other than the position of elements.</ahelp>"
-msgstr ""
-
#: main0000.xhp
msgctxt ""
"main0000.xhp\n"
@@ -792,3 +561,234 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\".\" visibility=\"hidden\">Resets all data points to default format.</ahelp>"
msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"tit\n"
+"help.text"
+msgid "Formatting Bar"
+msgstr "Shiriti i kontrollit"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200911433792\n"
+"help.text"
+msgid "<link href=\"text/schart/main0202.xhp\" name=\"Formatting Bar\">Formatting Bar</link>"
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200911433835\n"
+"help.text"
+msgid "The Formatting Bar is shown when a chart is set to edit mode. Double-click a chart to enter edit mode. Click outside the chart to leave edit mode."
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200911433878\n"
+"help.text"
+msgid "You can edit the formatting of a chart using the controls and icons on the Formatting Bar."
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300436\n"
+"help.text"
+msgid "Select Chart Element"
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300479\n"
+"help.text"
+msgid "<ahelp hid=\".\">Select the element from the chart that you want to format. The element gets selected in the chart preview. Click Format Selection to open the properties dialog for the selected element.</ahelp>"
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300555\n"
+"help.text"
+msgid "Format Selection"
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300539\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the properties dialog for the selected element.</ahelp>"
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300545\n"
+"help.text"
+msgid "Chart Type"
+msgstr "Llojet e fajllave"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300594\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Chart Type dialog.</ahelp>"
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300537\n"
+"help.text"
+msgid "Chart Data Table"
+msgstr "Të dhëna Diagrami"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300699\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Data Table dialog where you can edit the chart data.</ahelp>"
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300672\n"
+"help.text"
+msgid "Horizontal Grid On/Off"
+msgstr "Rrjeti horizontale kyqur/çkyqur"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300630\n"
+"help.text"
+msgid "<ahelp hid=\".\">The Horizontal Grid On/Off icon on the Formatting bar toggles the visibility of the grid display for the Y axis.</ahelp>"
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300738\n"
+"help.text"
+msgid "Legend On/Off"
+msgstr "Legjenda kyçur/çkyçur"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id081020090230076\n"
+"help.text"
+msgid "<ahelp hid=\".\">To show or hide a legend, click Legend On/Off on the Formatting bar.</ahelp>"
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id0810200902300785\n"
+"help.text"
+msgid "Scale Text"
+msgstr "Shkallëzo tekstin"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300784\n"
+"help.text"
+msgid "<ahelp hid=\".\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id081020090230087\n"
+"help.text"
+msgid "Automatic Layout"
+msgstr "Ndrysho formëdhënien..."
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id0810200902300834\n"
+"help.text"
+msgid "<ahelp hid=\".\">Moves all chart elements to their default positions inside the current chart. This function does not alter the chart type or any other attributes other than the position of elements.</ahelp>"
+msgstr ""
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] Chart Features"
+msgstr "Duke publikuar veçoritë e produktit"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3150543\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/schart/main0503.xhp\" name=\"$[officename] Chart Features\">$[officename] Chart Features</link>"
+msgstr ""
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3150868\n"
+"2\n"
+"help.text"
+msgid "Charts allow you to present data so that it is easy to visualize."
+msgstr ""
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3146974\n"
+"6\n"
+"help.text"
+msgid "You can create a chart from source data in a Calc spreadsheet or a Writer table. When the chart is embedded in the same document as the data, it stays linked to the data, so that the chart automatically updates when you change the source data."
+msgstr ""
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3153143\n"
+"7\n"
+"help.text"
+msgid "Chart Types"
+msgstr "Llojet e fajllave"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3151112\n"
+"8\n"
+"help.text"
+msgid "Choose from a variety of 3D charts and 2D charts, such as bar charts, line charts, stock charts. You can change chart types with a few clicks of the mouse."
+msgstr ""
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"hd_id3149665\n"
+"10\n"
+"help.text"
+msgid "Individual Formatting"
+msgstr "Formatizimi i hyrjeve"
+
+#: main0503.xhp
+msgctxt ""
+"main0503.xhp\n"
+"par_id3156441\n"
+"11\n"
+"help.text"
+msgid "You can customize individual chart elements, such as axes, data labels, and legends, by right-clicking them in the chart, or with toolbar icons and menu commands."
+msgstr ""
diff --git a/source/sq/helpcontent2/source/text/schart/00.po b/source/sq/helpcontent2/source/text/schart/00.po
index c5580073ebc..f9b5f197c90 100644
--- a/source/sq/helpcontent2/source/text/schart/00.po
+++ b/source/sq/helpcontent2/source/text/schart/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 19:07+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -554,5 +554,13 @@ msgctxt ""
"00000004.xhp\n"
"par_id733359\n"
"help.text"
-msgid "<variable id=\"slp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, mark Smooth lines checkbox, then click the Properties button.</variable>"
+msgid "<variable id=\"smlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Smooth in the Lines type dropdown, then click the Properties button.</variable>"
+msgstr ""
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id8513095\n"
+"help.text"
+msgid "<variable id=\"stlp\">In the Chart Type dialog of a Line chart or XY chart that displays lines, choose Stepped in the Lines type dropdown, then click the Properties button.</variable>"
msgstr ""
diff --git a/source/sq/helpcontent2/source/text/schart/01.po b/source/sq/helpcontent2/source/text/schart/01.po
index 826f53b372b..722ae5b5e7a 100644
--- a/source/sq/helpcontent2/source/text/schart/01.po
+++ b/source/sq/helpcontent2/source/text/schart/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-12 22:01+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,732 +15,923 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
+"03010000.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Type Pie"
-msgstr "Redakto Tipin e Diagramit"
+msgid "Data Table"
+msgstr "Të dhënat tabelare"
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"bm_id7621997\n"
+"03010000.xhp\n"
+"hd_id3150869\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>donut charts</bookmark_value> <bookmark_value>pie charts;types</bookmark_value> <bookmark_value>chart types;pie/donut</bookmark_value>"
+msgid "<link href=\"text/schart/01/03010000.xhp\" name=\"Data Table\">Data Table</link>"
msgstr ""
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"hd_id3365276\n"
+"03010000.xhp\n"
+"par_id3151115\n"
+"2\n"
"help.text"
-msgid "<variable id=\"type_pie\"><link href=\"text/schart/01/type_pie.xhp\">Chart Type Pie</link></variable>"
+msgid "<ahelp hid=\".uno:DiagramData\">Opens the<emph> Data Table </emph>dialog where you can edit the chart data.</ahelp>"
msgstr ""
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"par_id245979\n"
+"03010000.xhp\n"
+"par_id3149667\n"
+"51\n"
"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgid "The<emph> Data Table </emph>dialog is not available if you insert a chart that is based on a Calc sheet or on a Writer table."
msgstr ""
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"hd_id5799432\n"
+"03010000.xhp\n"
+"par_id6746421\n"
"help.text"
-msgid "Pie"
-msgstr "Kulaq rrethor"
+msgid "<link href=\"text/swriter/01/06990000.xhp\">To update a chart manually when a Writer table got changed</link>"
+msgstr ""
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"par_id6549272\n"
+"03010000.xhp\n"
+"par_id2565996\n"
"help.text"
-msgid "A pie chart shows values as circular sectors of the total circle. The length of the arc, or the area of each sector, is proportional to its value."
+msgid "Some changes will become visible only after you close and reopen the dialog."
msgstr ""
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"par_id6529740\n"
+"03010000.xhp\n"
+"hd_id6129947\n"
"help.text"
-msgid "Pie - this subtype shows sectors as colored areas of the total pie, for one data column only. In the created chart, you can click and drag any sector to separate that sector from the remaining pie or to join it back."
-msgstr ""
+msgid "To change chart data"
+msgstr "Modifiko zonën e të dhënave për grafikon"
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"par_id9121982\n"
+"03010000.xhp\n"
+"par_id8141117\n"
"help.text"
-msgid "Exploded pie - this subtype shows the sectors already separated from each other. In the created chart, you can click and drag any sector to move it along a radial from the pie's center."
+msgid "When you create a chart that is based on default data, or when you copy a chart into your document, you can open the Data Table dialog to enter your own data. The chart responds to the data in a live preview."
msgstr ""
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"par_id3808404\n"
+"03010000.xhp\n"
+"par_id9487594\n"
"help.text"
-msgid "Donut - this subtype can show multiple data columns. Each data column is shown as one donut shape with a hole inside, where the next data column can be shown. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center."
+msgid "Close the Chart Data dialog to apply all changes to the chart. Choose <emph>Edit - Undo</emph> to cancel the changes."
msgstr ""
-#: type_pie.xhp
+#: 03010000.xhp
msgctxt ""
-"type_pie.xhp\n"
-"par_id2394482\n"
+"03010000.xhp\n"
+"par_id4149906\n"
"help.text"
-msgid "Exploded donut - this subtype shows the outer sectors already separated from the remaining donut. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center."
+msgid "Insert or select a chart that is not based on existing cell data."
msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"tit\n"
+"03010000.xhp\n"
+"par_id6064943\n"
"help.text"
-msgid "Chart Wizard - Chart Type"
-msgstr "Redakto Tipin e Diagramit"
+msgid "Choose <emph>View - Chart Data Table</emph> to open the Data Table dialog."
+msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"bm_id4266792\n"
+"03010000.xhp\n"
+"par_id3236182\n"
"help.text"
-msgid "<bookmark_value>charts;choosing chart types</bookmark_value>"
+msgid "The data series are organized in columns. The role of the left most column is set to categories or data labels respectively. The contents of the left most column are always formatted as text. You can insert more text columns to be used as hierarchical labels."
msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"hd_id1536606\n"
+"03010000.xhp\n"
+"par_id9799798\n"
"help.text"
-msgid "<variable id=\"wiz_chart_type\"><link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard - Chart Type</link></variable>"
+msgid "Click a cell in the dialog and change the contents. Click another cell to see the changed contents in the preview."
msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id6006958\n"
+"03010000.xhp\n"
+"par_id1251258\n"
"help.text"
-msgid "On the first page of the Chart Wizard you can <link href=\"text/schart/01/choose_chart_type.xhp\">choose a chart type</link>."
+msgid "Enter the name of the data series in the text box above the column."
msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"hd_id3919186\n"
+"03010000.xhp\n"
+"par_id743430\n"
"help.text"
-msgid "To choose a chart type"
-msgstr "Të lutem zgjidh llojin e tastierës për ta konfiguruar."
+msgid "Use the icons above the table to insert or delete rows and columns. For data series with multiple columns, only whole data series can be inserted or deleted."
+msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id3453169\n"
+"03010000.xhp\n"
+"par_id8111819\n"
"help.text"
-msgid "Choose a basic <link href=\"text/schart/01/choose_chart_type.xhp\">chart type</link>: click any of the entries labeled Column, Bar, Pie, and so on."
+msgid "The order of the data series in the chart is the same as in the data table. Use the <emph>Move Series Right</emph> icon to switch the current column with its neighbor on the right."
msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id8406933\n"
+"03010000.xhp\n"
+"par_id9116794\n"
"help.text"
-msgid "The contents on the right side will change to offer more options depending on the basic chart type."
+msgid "The order of the categories or data points in the chart is the same as in the data table. Use the <emph>Move Row Down</emph> icon to switch the current row with its neighbor below."
msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id8230231\n"
+"03010000.xhp\n"
+"par_id3150297\n"
+"20\n"
"help.text"
-msgid "Optionally, click any of the options. While you change the settings in the wizard, watch the preview in the document to see how the chart will look."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new row below the current row.</ahelp>"
msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id3267006\n"
+"03010000.xhp\n"
+"par_id3145384\n"
+"23\n"
"help.text"
-msgid "Press <item type=\"keycode\">Shift+F1</item> and point to a control to see an extended help text."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new data series after the current column.</ahelp>"
msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id7251503\n"
+"03010000.xhp\n"
+"par_id3152297\n"
"help.text"
-msgid "Click <emph>Finish</emph> on any wizard page to close the wizard and create the chart using the current settings."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new text column after the current column for hierarchical axes descriptions.</ahelp>"
msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id3191625\n"
+"03010000.xhp\n"
+"par_id3159231\n"
+"26\n"
"help.text"
-msgid "Click <emph>Next</emph> to see the next wizard page, or click the entries on the left side of the wizard to go to that page."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current row. It is not possible to delete the label row.</ahelp>"
msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id7659535\n"
+"03010000.xhp\n"
+"par_id3153336\n"
+"29\n"
"help.text"
-msgid "Click <emph>Back</emph> to see the previous wizard page."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current series or text column. It is not possible to delete the first text column.</ahelp>"
msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id8420056\n"
+"03010000.xhp\n"
+"par_id4089175\n"
"help.text"
-msgid "Click <emph>Cancel</emph> to close the wizard without creating a chart."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current column with its neighbor at the right.</ahelp>"
msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id2284920\n"
+"03010000.xhp\n"
+"par_id3949095\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to go to the named wizard page.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current row with its neighbor below.</ahelp>"
msgstr ""
-#: wiz_chart_type.xhp
+#: 03010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id3184301\n"
+"03010000.xhp\n"
+"par_id6697286\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a basic chart type.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter names for the data series.</ahelp>"
msgstr ""
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id2129276\n"
+"04010000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a sub type of the basic chart type.</ahelp>"
-msgstr ""
+msgid "Titles"
+msgstr "Titujt"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id9719229\n"
+"04010000.xhp\n"
+"hd_id3147345\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enables a 3D look for the data values.</ahelp>"
-msgstr ""
+msgid "Titles"
+msgstr "Titujt"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id3860896\n"
+"04010000.xhp\n"
+"par_id3150298\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the type of 3D look.</ahelp>"
+msgid "<variable id=\"titel\"><ahelp hid=\".uno:InsertMenuTitles\">Opens a dialog to enter or modify the titles in a chart.</ahelp></variable> You can define the text for the main title, subtitle and the axis labels, and specify if they are displayed."
msgstr ""
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id4041871\n"
+"04010000.xhp\n"
+"hd_id3150207\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a shape from the list.</ahelp>"
-msgstr ""
+msgid "Main Title"
+msgstr "Titulli kryesor"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id9930722\n"
+"04010000.xhp\n"
+"par_id3150371\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays stacked series for Line charts.</ahelp>"
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_MAINTITLE\">Marking the <emph>Main Title</emph> option activates the main title. Enter the desired title in the corresponding text field.</ahelp>"
msgstr ""
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id5749687\n"
+"04010000.xhp\n"
+"hd_id3146980\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Stack series display values on top of each other.</ahelp>"
-msgstr ""
+msgid "Subtitle"
+msgstr "Nëntitull"
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id79348\n"
+"04010000.xhp\n"
+"par_id3149404\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Stack series display values as percent.</ahelp>"
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_SUBTITLE\">Marking the <emph>Subtitle</emph> option activates the subtitle. Enter the desired title in the corresponding text field.</ahelp>"
msgstr ""
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id2414014\n"
+"04010000.xhp\n"
+"par_id3152901\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">The lines are shown as curves.</ahelp>"
+msgid "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">Click <emph>Title On/Off</emph> on the Formatting bar to show or hide the title and subtitle.</ahelp></variable>"
msgstr ""
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id7617114\n"
+"04010000.xhp\n"
+"hd_id3156018\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to set the curve properties.</ahelp>"
+msgid "X axis"
+msgstr "Boshti X"
+
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3152869\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_X_AXIS\">Marking the <emph>X axis</emph> option activates the X axis title. Enter the desired title in the corresponding text field.</ahelp>"
msgstr ""
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id6649372\n"
+"04010000.xhp\n"
+"hd_id3159226\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Connects points by ascending X values, even if the order of values is different, in an XY scatter diagram.</ahelp>"
+msgid "Y axis"
+msgstr "Boshti Y"
+
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3154763\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Y_AXIS\">Marking the <emph>Y axis</emph> option activates the Y axis title. Enter the desired title in the corresponding text field.</ahelp>"
msgstr ""
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id7334208\n"
+"04010000.xhp\n"
+"hd_id3153009\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the number of lines for the Column and Line chart type.</ahelp>"
+msgid "Z axis"
+msgstr "Boshti Z"
+
+#: 04010000.xhp
+msgctxt ""
+"04010000.xhp\n"
+"par_id3154710\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Z_AXIS\">Marking the <emph>Z axis</emph> option activates the Z axis title. Enter the desired title in the corresponding text field.</ahelp> This option is only available for 3-D charts."
msgstr ""
-#: wiz_chart_type.xhp
+#: 04010000.xhp
msgctxt ""
-"wiz_chart_type.xhp\n"
-"par_id4485000\n"
+"04010000.xhp\n"
+"par_id3153073\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Chart Type dialog.</ahelp>"
+msgid "<variable id=\"sytextachse\"><ahelp hid=\".uno:ToggleAxisTitle\">Click <emph>Axes Title On/Off</emph> on the Formatting bar to show or hide the axis labels.</ahelp></variable>"
msgstr ""
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
+"04020000.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Wizard - Data Range"
-msgstr "Modifiko intervalin e të dhënave për grafikon"
+msgid "Legend"
+msgstr "Legjendë"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"bm_id2429578\n"
+"04020000.xhp\n"
+"bm_id3156441\n"
"help.text"
-msgid "<bookmark_value>data ranges in charts</bookmark_value>"
+msgid "<bookmark_value>chart legends; hiding</bookmark_value><bookmark_value>hiding;chart legends</bookmark_value>"
msgstr ""
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"hd_id8313852\n"
+"04020000.xhp\n"
+"hd_id3156441\n"
+"1\n"
"help.text"
-msgid "<variable id=\"wiz_data_range\"><link href=\"text/schart/01/wiz_data_range.xhp\">Chart Wizard - Data Range</link></variable>"
-msgstr ""
+msgid "Legend"
+msgstr "Legjendë"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id8829309\n"
+"04020000.xhp\n"
+"par_id3155413\n"
+"2\n"
"help.text"
-msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can select one single source of data range. This range may consist of more than one rectangular range of cells."
+msgid "<variable id=\"legende\"><ahelp hid=\".uno:InsertMenuLegend\">Opens the <emph>Legend </emph>dialog, which allows you to change the position of legends in the chart, and to specify whether the legend is displayed.</ahelp></variable>"
msgstr ""
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id6401867\n"
+"04020000.xhp\n"
+"par_id3149124\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Data Ranges dialog where you can edit Data Range and Data Series.</ahelp>"
+msgid "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">To show or hide a legend, click <emph>Legend On/Off</emph> on the <emph>Formatting</emph> bar.</ahelp></variable>"
msgstr ""
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id2025818\n"
+"04020000.xhp\n"
+"par_id3145230\n"
"help.text"
-msgid "Use the Chart Wizard - Data Series page if you need more control over the data ranges."
+msgid "<image id=\"img_id3147346\" src=\"cmd/sc_togglelegend.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147346\">Icon</alt></image>"
msgstr ""
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id8466139\n"
+"04020000.xhp\n"
+"par_id3149207\n"
+"16\n"
"help.text"
-msgid "This dialog is only available for charts based on a Calc or Writer table."
-msgstr ""
+msgid "Legend On/Off"
+msgstr "Legjenda kyçur/çkyçur"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"hd_id1877193\n"
+"04020000.xhp\n"
+"hd_id3155114\n"
+"6\n"
"help.text"
-msgid "To specify a data range"
-msgstr "Modifiko intervalin e të dhënave për grafikon"
+msgid "Display"
+msgstr "Monitori"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id5924863\n"
+"04020000.xhp\n"
+"par_id3150206\n"
+"7\n"
"help.text"
-msgid "Select the data range. Do one of the following:"
+msgid "<ahelp hid=\"SCH_CHECKBOX_DLG_LEGEND_CBX_SHOW\">Specifies whether to display a legend for the chart.</ahelp> This option is only visible if you call the dialog by choosing <emph>Insert - Legend</emph>."
msgstr ""
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id4357432\n"
+"04020000.xhp\n"
+"hd_id3150201\n"
+"4\n"
"help.text"
-msgid "Enter the data range in the text box."
-msgstr ""
+msgid "Position"
+msgstr "Pozicion"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id5626392\n"
+"04020000.xhp\n"
+"par_id3155376\n"
+"5\n"
"help.text"
-msgid "In Calc, an example data range would be \"$Sheet1.$B$3:$B$14\". Note that a data range may consist of more than one region in a spreadsheet, e.g. \"$Sheet1.A1:A5;$Sheet1.D1:D5\" is also a valid data range. In Writer, an example data range would be \"Table1.A1:E4\"."
-msgstr ""
+msgid "Select the position for the legend:"
+msgstr "Cakto pozitën dhe madhësinë për %O"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id1363872\n"
+"04020000.xhp\n"
+"hd_id3152988\n"
+"8\n"
"help.text"
-msgid "In Calc, click <emph>Select data range</emph> to minimize the dialog, then drag over a cell area to select the data range."
-msgstr ""
+msgid "Left"
+msgstr "Majtas"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id6823938\n"
+"04020000.xhp\n"
+"par_id3155087\n"
+"9\n"
"help.text"
-msgid "If you want a data range of multiple cell areas that are not next to each other, enter the first range, then manually add a semicolon at the end of the text box, then enter the other ranges. Use a semicolon as delimiter between ranges."
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_LEFT\">Positions the legend at the left of the chart.</ahelp>"
msgstr ""
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id1434369\n"
+"04020000.xhp\n"
+"hd_id3153816\n"
+"10\n"
"help.text"
-msgid "Click one of the options for data series in rows or in columns."
-msgstr ""
+msgid "Top"
+msgstr "Lartë"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id7524033\n"
+"04020000.xhp\n"
+"par_id3153912\n"
+"11\n"
"help.text"
-msgid "Check whether the data range has labels in the first row or in the first column or both."
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_TOP\">Positions the legend at the top of the chart.</ahelp>"
msgstr ""
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id5256508\n"
+"04020000.xhp\n"
+"hd_id3144773\n"
+"12\n"
"help.text"
-msgid "In the preview you can see how the final chart will look."
-msgstr ""
+msgid "Right"
+msgstr "Djathtas"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id379650\n"
+"04020000.xhp\n"
+"par_id3155268\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the data range that you want to include in your chart. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_RIGHT\">Positions the legend at the right of the chart.</ahelp>"
msgstr ""
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id953703\n"
+"04020000.xhp\n"
+"hd_id3152871\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Data series get their data from consecutive rows in the selected range. For scatter charts, the first data series will contain x-values for all series. All other data series are used as y-values, one for each series.</ahelp>"
-msgstr ""
+msgid "Bottom"
+msgstr "Poshtë"
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id4496597\n"
+"04020000.xhp\n"
+"par_id3153249\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Data series get their data from consecutive columns in the selected range. For scatter charts, the first data column will contain x-values for all series. All other data columns are used as y-values, one for each series.</ahelp>"
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_BOTTOM\">Positions the legend at the bottom of the chart.</ahelp>"
msgstr ""
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id2898953\n"
+"04020000.xhp\n"
+"hd_id1106200812072645\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">For data series in columns: The first row in the range is used as names for data series. For data series in rows: The first row in the range is used as categories. The remaining rows comprise the data series. If this check box is not selected, all rows are data series.</ahelp>"
+msgid "Text Orientation"
+msgstr "Orientimi i zarfit"
+
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id1106200812072653\n"
+"help.text"
+msgid "This feature is only available if complex text layout support is enabled in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages</item>."
msgstr ""
-#: wiz_data_range.xhp
+#: 04020000.xhp
msgctxt ""
-"wiz_data_range.xhp\n"
-"par_id7546311\n"
+"04020000.xhp\n"
+"hd_id1106200812112444\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">For data series in columns: The first column in the range is used as names for data series. For data series in rows: The first column in the range is used as categories. The remaining columns comprise the data columns. If this check box is not selected, all columns are data columns.</ahelp>"
+msgid "Text Direction"
+msgstr "Drejtimi i tekstit"
+
+#: 04020000.xhp
+msgctxt ""
+"04020000.xhp\n"
+"par_id1106200812112530\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
+"04030000.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Type XY"
-msgstr "Redakto Tipin e Diagramit"
+msgid "Data Labels"
+msgstr "~Emërtimet e të Dhënave..."
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"bm_id84231\n"
+"04030000.xhp\n"
+"bm_id3150275\n"
"help.text"
-msgid "<bookmark_value>scatter charts</bookmark_value><bookmark_value>XY charts</bookmark_value><bookmark_value>chart types;XY (scatter)</bookmark_value><bookmark_value>error indicators in charts</bookmark_value><bookmark_value>error bars in charts</bookmark_value><bookmark_value>averages in charts</bookmark_value><bookmark_value>statistics in charts</bookmark_value><bookmark_value>variances in charts</bookmark_value><bookmark_value>standard deviation in charts</bookmark_value>"
+msgid "<bookmark_value>data labels in charts</bookmark_value> <bookmark_value>labels; for charts</bookmark_value> <bookmark_value>charts; data labels</bookmark_value> <bookmark_value>data values in charts</bookmark_value> <bookmark_value>chart legends; showing icons with labels</bookmark_value>"
msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id9346598\n"
+"04030000.xhp\n"
+"hd_id3150275\n"
+"1\n"
"help.text"
-msgid "<variable id=\"type_xy\"><link href=\"text/schart/01/type_xy.xhp\">Chart Type XY (Scatter)</link></variable>"
+msgid "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\" name=\"Data labels\">Data Labels</link></variable>"
msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id2003845\n"
+"04030000.xhp\n"
+"par_id3154684\n"
+"2\n"
"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgid "<variable id=\"besch\"><ahelp hid=\".uno:InsertMenuDataLabels\">Opens the<emph> Data Labels </emph>dialog, which enables you to set the data labels.</ahelp></variable>"
msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id7757194\n"
+"04030000.xhp\n"
+"par_id0810200912120416\n"
"help.text"
-msgid "XY (Scatter)"
-msgstr "Diagrami XY"
+msgid "If an element of a data series is selected, this command works on that data series only. If no element is selected, this command works on all data series."
+msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id5977965\n"
+"04030000.xhp\n"
+"hd_id3149401\n"
+"17\n"
"help.text"
-msgid "An XY chart in its basic form is based on one data series consisting of a name, a list of x‑values, and a list of y‑values. Each value pair (x|y) is shown as a point in a coordinate system. The name of the data series is associated with the y‑values and shown in the legend."
+msgid "Show value as number"
+msgstr "Vlera të interpretohet si një numër."
+
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id3150751\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_NUMBER\">Displays the absolute values of the data points.</ahelp>"
msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id4381847\n"
+"04030000.xhp\n"
+"hd_id5077059\n"
"help.text"
-msgid "Choose an XY chart for the following example tasks:"
+msgid "Number format"
+msgstr "Formati i numrit"
+
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id9794610\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens a dialog to select the number format.</ahelp>"
msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id1336710\n"
+"04030000.xhp\n"
+"hd_id3145643\n"
+"9\n"
"help.text"
-msgid "scale the x‑axis"
-msgstr "Përshtat Shkallën"
+msgid "Show value as percentage"
+msgstr "Definon vlerën llogjike si PASAKTË."
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id1221655\n"
+"04030000.xhp\n"
+"par_id3156382\n"
+"10\n"
"help.text"
-msgid "generate a parameter curve, for example a spiral"
+msgid "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_PERCENT\">Displays the percentage of the data points in each column.</ahelp>"
msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id3397320\n"
+"04030000.xhp\n"
+"hd_id1316873\n"
"help.text"
-msgid "draw the graph of a function"
-msgstr "**Tejmbushje e funksionit të katrorit**"
+msgid "Percentage format"
+msgstr "Format tjetër"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id7657399\n"
+"04030000.xhp\n"
+"par_id5476241\n"
"help.text"
-msgid "explore the statistical association of quantitative variables"
+msgid "<ahelp hid=\".\">Opens a dialog to select the percentage format.</ahelp>"
msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id8925138\n"
+"04030000.xhp\n"
+"hd_id3145228\n"
+"11\n"
"help.text"
-msgid "Your XY chart may have more than one data series."
+msgid "Show category"
+msgstr "Fshije Kategorinë"
+
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id3154702\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_TEXT\">Shows the data point text labels.</ahelp>"
msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id5461897\n"
+"04030000.xhp\n"
+"hd_id3150298\n"
+"15\n"
"help.text"
-msgid "XY Chart Variants"
-msgstr "Titulli, Skemë Organizative"
+msgid "Show legend key"
+msgstr "Trego ikonën legjendë me emërtim"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id8919339\n"
+"04030000.xhp\n"
+"par_id3150205\n"
+"16\n"
"help.text"
-msgid "You can choose an XY chart variant on the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link>, or by choosing <item type=\"menuitem\">Format - Chart Type </item>for a chart in edit mode."
+msgid "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_SYMBOL\">Displays the legend icons next to each data point label.</ahelp>"
msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id4634235\n"
+"04030000.xhp\n"
+"hd_id3836787\n"
"help.text"
-msgid "The chart is created with default settings. After the chart is finished, you can edit its properties to change the appearance. Line styles and icons can be changed on the <emph>Line</emph>tab page of the data series properties dialog."
+msgid "Separator"
+msgstr "Ndarës"
+
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id6668904\n"
+"help.text"
+msgid "<ahelp hid=\".\">Selects the separator between multiple text strings for the same object.</ahelp>"
msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id5482039\n"
+"04030000.xhp\n"
+"hd_id4319284\n"
"help.text"
-msgid "Double-click any data point to open the <item type=\"menuitem\">Data Series</item> dialog. In this dialog, you can change many properties of the data series."
+msgid "Placement"
msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id0805200810492449\n"
+"04030000.xhp\n"
+"par_id5159459\n"
"help.text"
-msgid "For 2D charts, you can choose <item type=\"menuitem\">Insert - Y Error Bars</item> to enable the display of error bars."
+msgid "<ahelp hid=\".\">Selects the placement of data labels relative to the objects.</ahelp>"
msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id6221198\n"
+"04030000.xhp\n"
+"hd_id1106200812280727\n"
"help.text"
-msgid "You can enable the display of mean value lines and trend lines using commands on the Insert menu."
+msgid "Text Direction"
+msgstr "Drejtimi i tekstit"
+
+#: 04030000.xhp
+msgctxt ""
+"04030000.xhp\n"
+"par_id1106200812280719\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id1393475\n"
+"04030000.xhp\n"
+"hd_id1007200901590713\n"
"help.text"
-msgid "Points only"
-msgstr "Vetëm titull"
+msgid "Rotate Text"
+msgstr "Rrotullo tekstin"
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id6571550\n"
+"04030000.xhp\n"
+"par_id1007200901590752\n"
"help.text"
-msgid "Each data point is shown by an icon. %PRODUCTNAME uses default icons with different forms and colors for each data series. The default colors are set in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Charts - Default Colors</item>."
+msgid "<ahelp hid=\".\">Click in the dial to set the text orientation for the data labels.</ahelp>"
msgstr ""
-#: type_xy.xhp
+#: 04030000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id5376140\n"
+"04030000.xhp\n"
+"par_id1007200901590757\n"
"help.text"
-msgid "Lines Only"
-msgstr "Vetëm vijat"
+msgid "<ahelp hid=\".\">Enter the counterclockwise rotation angle for the data labels.</ahelp>"
+msgstr ""
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id4408093\n"
+"04040000.xhp\n"
+"tit\n"
"help.text"
-msgid "This variant draws straight lines from one data point to the next. The data points are not shown by icons."
+msgid "Axes"
+msgstr "Boshte"
+
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"bm_id3147428\n"
+"help.text"
+msgid "<bookmark_value>axes; showing axes in charts</bookmark_value><bookmark_value>charts; showing axes</bookmark_value><bookmark_value>X axes; showing</bookmark_value><bookmark_value>Y axes; showing</bookmark_value><bookmark_value>Z axes; showing</bookmark_value><bookmark_value>axes; better scaling</bookmark_value><bookmark_value>secondary axes in charts</bookmark_value>"
msgstr ""
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id7261268\n"
+"04040000.xhp\n"
+"hd_id3147428\n"
+"1\n"
"help.text"
-msgid "The drawing order is the same as the order in the data series. Mark <emph>Sort by X Values</emph> to draw the lines in the order of the x values. This sorting applies only to the chart, not to the data in the table."
+msgid "Axes"
+msgstr "Boshte"
+
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3150330\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"achsen\"><ahelp hid=\".uno:InsertMenuAxes\">Specifies the axes to be displayed in the chart.</ahelp></variable>"
msgstr ""
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id6949369\n"
+"04040000.xhp\n"
+"hd_id3156385\n"
+"46\n"
"help.text"
-msgid "Points and Lines"
-msgstr "Linjat dhe Shigjetat"
+msgid "Major axis"
+msgstr "Boshtet kryesore"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id9611499\n"
+"04040000.xhp\n"
+"hd_id3146316\n"
+"5\n"
"help.text"
-msgid "This variant shows points and lines at the same time."
+msgid "X axis"
+msgstr "Boshti X"
+
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3145230\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"SCH_CHECKBOX_DLG_AXIS_CB_X_PRIMARY\">Displays the X axis as a line with subdivisions.</ahelp>"
msgstr ""
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id6765953\n"
+"04040000.xhp\n"
+"hd_id3147003\n"
+"17\n"
"help.text"
-msgid "3D Lines"
-msgstr "Rreshtat vertikal"
+msgid "Y axis"
+msgstr "Boshti Y"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id7422711\n"
+"04040000.xhp\n"
+"par_id3154020\n"
+"18\n"
"help.text"
-msgid "The lines are shown like tapes. The data points are not shown by icons. In the finished chart choose <link href=\"text/schart/01/three_d_view.xhp\">3D View</link> to set properties like illumination and angle of view."
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_PRIMARY\">Displays the Y axis as a line with subdivisions.</ahelp>"
msgstr ""
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"hd_id239265\n"
+"04040000.xhp\n"
+"hd_id3150345\n"
+"28\n"
"help.text"
-msgid "Smooth Lines"
-msgstr "Rreshtat vertikal"
+msgid "Z axis"
+msgstr "Boshti Z"
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id7957396\n"
+"04040000.xhp\n"
+"par_id3155113\n"
+"29\n"
"help.text"
-msgid "Mark <emph>Smooth Lines</emph> to draw curves instead of straight line segments."
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Z_PRIMARY\">Displays the Z axis as a line with subdivisions.</ahelp> This axis can only be displayed in 3D charts."
msgstr ""
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id1202124\n"
+"04040000.xhp\n"
+"hd_id3150206\n"
+"36\n"
"help.text"
-msgid "Click <emph>Properties</emph> to set details for the curves."
+msgid "Secondary axis"
+msgstr "Boshti dytësore"
+
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3166428\n"
+"37\n"
+"help.text"
+msgid "Use this area to assign a second axis to your chart. If a data series is already assigned to this axis, $[officename] automatically displays the axis and the label. You can turn off these settings later on. If no data has been assigned to this axis and you activate this area, the values of the primary Y axis are applied to the secondary axis."
msgstr ""
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id5989562\n"
+"04040000.xhp\n"
+"hd_id3152988\n"
+"44\n"
"help.text"
-msgid "<emph>Cubic Spline</emph> interpolates your data points with polynomials of degree 3. The transitions between the polynomial pieces are smooth, having the same slope and curvature."
+msgid "X axis"
+msgstr "Boshti X"
+
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3156445\n"
+"45\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_X_SECONDARY\">Displays a secondary X axis in the chart.</ahelp>"
msgstr ""
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id6128421\n"
+"04040000.xhp\n"
+"hd_id3152896\n"
+"38\n"
"help.text"
-msgid "The <emph>Resolution</emph> determines how many line segments are calculated to draw a piece of polynomial between two data points. You can see the intermediate points if you click any data point."
+msgid "Y axis"
+msgstr "Boshti Y"
+
+#: 04040000.xhp
+msgctxt ""
+"04040000.xhp\n"
+"par_id3153818\n"
+"39\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Displays a secondary Y axis in the chart.</ahelp>"
msgstr ""
-#: type_xy.xhp
+#: 04040000.xhp
msgctxt ""
-"type_xy.xhp\n"
-"par_id9280373\n"
+"04040000.xhp\n"
+"par_id3154762\n"
+"41\n"
"help.text"
-msgid "<emph>B-Spline</emph> uses a parametric, interpolating B-spline curve. Those curves are built piecewise from polynomials. The <emph>Degree of polynomials</emph> sets the degree of these polynomials."
+msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">The major axis and the secondary axis can have different scaling. For example, you can scale one axis to 2 in. and the other to 1.5 in. </ahelp>"
msgstr ""
#: 04050000.xhp
@@ -1063,511 +1254,860 @@ msgctxt ""
msgid "<ahelp hid=\".\">Shows only negative error bars.</ahelp>"
msgstr ""
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
+"04050100.xhp\n"
"tit\n"
"help.text"
-msgid "Smooth Line Properties"
-msgstr "Vetitë e 3D objekteve"
+msgid "Trend Lines"
+msgstr "Rreshtat vertikal"
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"bm_id3803827\n"
+"04050100.xhp\n"
+"bm_id1744743\n"
"help.text"
-msgid "<bookmark_value>curves;properties in line charts/XY charts</bookmark_value><bookmark_value>properties;smooth lines in line charts/XY charts</bookmark_value>"
+msgid "<bookmark_value>calculating;regression curves</bookmark_value> <bookmark_value>regression curves in charts</bookmark_value> <bookmark_value>trend lines in charts</bookmark_value> <bookmark_value>mean value lines in charts</bookmark_value>"
msgstr ""
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"hd_id3050325\n"
+"04050100.xhp\n"
+"hd_id5409405\n"
"help.text"
-msgid "Smooth Line Properties"
-msgstr "Vetitë e 3D objekteve"
+msgid "<variable id=\"regression\"><link href=\"text/schart/01/04050100.xhp\">Trend Lines</link></variable>"
+msgstr ""
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id9421979\n"
+"04050100.xhp\n"
+"par_id7272255\n"
"help.text"
-msgid "In a chart that displays lines (Line type or XY type), you can choose to show curves instead of straight lines. Some options control the properties of those curves."
+msgid "<variable id=\"trendlinestext\"><ahelp hid=\".\">Trend lines can be added to all 2D chart types except for Pie and Stock charts.</ahelp></variable>"
msgstr ""
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"hd_id1228370\n"
+"04050100.xhp\n"
+"par_id143436\n"
"help.text"
-msgid "To change line properties"
-msgstr "Fshij deri Fillim të Rreshtit"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">No trend line is shown.</ahelp>"
+msgstr ""
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id1601611\n"
+"04050100.xhp\n"
+"par_id5716727\n"
"help.text"
-msgid "Select Cubic Spline or B-Spline."
-msgstr "Vizore kubike me Shenja"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">A linear trend line is shown.</ahelp>"
+msgstr ""
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id879848\n"
+"04050100.xhp\n"
+"par_id5840021\n"
"help.text"
-msgid "These are mathematical models that influence the display of the curves. The curves are created by joining together segments of polynomials."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">A logarithmic trend line is shown.</ahelp>"
msgstr ""
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id3464461\n"
+"04050100.xhp\n"
+"par_id9417096\n"
"help.text"
-msgid "Optionally set the resolution. A higher value leads to a smoother line."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">An exponential trend line is shown.</ahelp>"
msgstr ""
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id6998809\n"
+"04050100.xhp\n"
+"par_id8482924\n"
"help.text"
-msgid "For B-spline lines optionally set the degree of the polynomials."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">A power trend line is shown.</ahelp>"
msgstr ""
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id3424481\n"
+"04050100.xhp\n"
+"par_id8962370\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Apply a cubic spline model.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the trend line equation next to the trend line.</ahelp>"
msgstr ""
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id1068758\n"
+"04050100.xhp\n"
+"par_id6889858\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Apply a B-spline model.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the coefficient of determination next to the trend line.</ahelp>"
msgstr ""
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id2320932\n"
+"04050100.xhp\n"
+"par_id8398998\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the resolution.</ahelp>"
+msgid "If you insert a trend line to a chart type that uses categories, like <emph>Line </emph>or <emph>Column, </emph>then the numbers 1, 2, 3, <emph>…</emph> are used as x-values to calculate the trend line."
msgstr ""
-#: smooth_line_properties.xhp
+#: 04050100.xhp
msgctxt ""
-"smooth_line_properties.xhp\n"
-"par_id8638874\n"
+"04050100.xhp\n"
+"par_id5676747\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the degree of the polynomials.</ahelp>"
+msgid "To insert trend lines for all data series, double-click the chart to enter edit mode. Choose <item type=\"menuitem\">Insert - Trend Lines</item>, then select the type of trend line from None, Linear, Logarithmic, Exponential, or Power trend line."
msgstr ""
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"tit\n"
+"04050100.xhp\n"
+"par_id4349192\n"
"help.text"
-msgid "Chart Type Area"
-msgstr "Redakto Hapësiren e Diagramit"
+msgid "To insert a trend line for a single data series, select the data series in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Insert - Trend Line</item>."
+msgstr ""
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"bm_id4130680\n"
+"04050100.xhp\n"
+"par_id9337443\n"
"help.text"
-msgid "<bookmark_value>area charts</bookmark_value><bookmark_value>chart types;area</bookmark_value>"
+msgid "To delete a single trend line or mean value line, click the line, then press the Del key."
msgstr ""
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"hd_id310678\n"
+"04050100.xhp\n"
+"par_id4529251\n"
"help.text"
-msgid "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Chart Type Area</link></variable>"
+msgid "To delete all trend lines, choose <item type=\"menuitem\">Insert - Trend Lines</item>, then select <emph>None</emph>."
msgstr ""
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"par_id916776\n"
+"04050100.xhp\n"
+"par_id296334\n"
"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgid "A trend line is shown in the legend automatically."
msgstr ""
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"hd_id961943\n"
+"04050100.xhp\n"
+"par_id4072084\n"
"help.text"
-msgid "Area"
-msgstr "Hapësira"
+msgid "<ahelp hid=\".\">Mean Value Lines are special trend lines that show the mean value. Use <item type=\"menuitem\">Insert - Mean Value Lines</item> to insert mean value lines for data series.</ahelp>"
+msgstr ""
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"par_id631733\n"
+"04050100.xhp\n"
+"par_id9569689\n"
"help.text"
-msgid "An area chart shows values as points on the y axis. The x axis shows categories. The y values of each data series are connected by a line. The area between each two lines is filled with a color. The area chart's focus is to emphasize the changes from one category to the next."
+msgid "The trend line has the same color as the corresponding data series. To change the line properties, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Line</item>."
msgstr ""
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"par_id7811822\n"
+"04050100.xhp\n"
+"par_id846888\n"
"help.text"
-msgid "Normal - this subtype plots all values as absolute y values. It first plots the area of the last column in the data range, then the next to last, and so on, and finally the first column of data is drawn. Thus, if the values in the first column are higher than other values, the last drawn area will hide the other areas."
+msgid "<ahelp hid=\".\">To show the trend line equation, select the trend line in the chart, right-click to open the context menu, and choose <emph>Insert Trend Line Equation</emph>.</ahelp>"
msgstr ""
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"par_id3640247\n"
+"04050100.xhp\n"
+"par_id8962065\n"
"help.text"
-msgid "Stacked - this subtypes plots values cumulatively stacked on each other. It ensures that all values are visible, and no data set is hidden by others. However, the y values no longer represent absolute values, except for the last column which is drawn at the bottom of the stacked areas."
+msgid "When the chart is in edit mode, %PRODUCTNAME gives you the equation of the trend line and the coefficient of determination R². Click on the trend line to see the information in the status bar."
msgstr ""
-#: type_area.xhp
+#: 04050100.xhp
msgctxt ""
-"type_area.xhp\n"
-"par_id4585100\n"
+"04050100.xhp\n"
+"par_id1328470\n"
"help.text"
-msgid "Percent - this subtype plots values cumulatively stacked on each other and scaled as percentage of the category total."
+msgid "For a category chart (for example a line chart), the trend line information is calculated using numbers 1, 2, 3, … as x-values. This is also true if your data series uses other numbers as names for the x-values. For such charts the XY chart type might be more suitable."
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"tit\n"
+"04050100.xhp\n"
+"par_id8092593\n"
"help.text"
-msgid "Data Table"
-msgstr "Të dhënat tabelare"
+msgid "To show the equation and the coefficient of determination, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Equation</item>."
+msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3150869\n"
-"1\n"
+"04050100.xhp\n"
+"par_id7971434\n"
"help.text"
-msgid "<link href=\"text/schart/01/03010000.xhp\" name=\"Data Table\">Data Table</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show equation to see the equation of the trend line.</ahelp>"
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3151115\n"
-"2\n"
+"04050100.xhp\n"
+"par_id558793\n"
"help.text"
-msgid "<ahelp hid=\".uno:DiagramData\">Opens the<emph> Data Table </emph>dialog where you can edit the chart data.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show Coefficient of Determination to see the determination coefficient of the trend line.</ahelp>"
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3149667\n"
-"51\n"
+"04050100.xhp\n"
+"par_id7735221\n"
"help.text"
-msgid "The<emph> Data Table </emph>dialog is not available if you insert a chart that is based on a Calc sheet or on a Writer table."
+msgid "You can also calculate the parameters using Calc functions as follows."
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id6746421\n"
+"04050100.xhp\n"
+"hd_id5744193\n"
"help.text"
-msgid "<link href=\"text/swriter/01/06990000.xhp\">To update a chart manually when a Writer table got changed</link>"
+msgid "The linear regression equation"
+msgstr "Kthen pjerrtësin e linjës lineare prapavajtëse."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id9251991\n"
+"help.text"
+msgid "The <emph>linear regression</emph> follows the equation <item type=\"literal\">y=m*x+b</item>."
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id2565996\n"
+"04050100.xhp\n"
+"par_id7951902\n"
"help.text"
-msgid "Some changes will become visible only after you close and reopen the dialog."
+msgid "m = SLOPE(Data_Y;Data_X)"
+msgstr "Të dhënat për ["
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id6637165\n"
+"help.text"
+msgid "b = INTERCEPT(Data_Y ;Data_X)"
+msgstr "Të dhënat për ["
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id7879268\n"
+"help.text"
+msgid "Calculate the coefficient of determination by"
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id6129947\n"
+"04050100.xhp\n"
+"par_id9244361\n"
"help.text"
-msgid "To change chart data"
-msgstr "Modifiko zonën e të dhënave për grafikon"
+msgid "r² = RSQ(Data_Y;Data_X)"
+msgstr "Shto të dhënat si:"
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id8141117\n"
+"04050100.xhp\n"
+"par_id2083498\n"
"help.text"
-msgid "When you create a chart that is based on default data, or when you copy a chart into your document, you can open the Data Table dialog to enter your own data. The chart responds to the data in a live preview."
+msgid "Besides m, b and r² the array function <emph>LINEST</emph> provides additional statistics for a regression analysis."
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id9487594\n"
+"04050100.xhp\n"
+"hd_id2538834\n"
"help.text"
-msgid "Close the Chart Data dialog to apply all changes to the chart. Choose <emph>Edit - Undo</emph> to cancel the changes."
+msgid "The logarithm regression equation"
+msgstr "Llogarit logaritmin natyror të një numri."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id394299\n"
+"help.text"
+msgid "The <emph>logarithm regression</emph> follows the equation <item type=\"literal\">y=a*ln(x)+b</item>."
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id4149906\n"
+"04050100.xhp\n"
+"par_id2134159\n"
"help.text"
-msgid "Insert or select a chart that is not based on existing cell data."
+msgid "a = SLOPE(Data_Y;LN(Data_X))"
+msgstr "Shto të dhënat si:"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id5946531\n"
+"help.text"
+msgid "b = INTERCEPT(Data_Y ;LN(Data_X))"
+msgstr "Shto të dhënat si:"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id5649281\n"
+"help.text"
+msgid "r² = RSQ(Data_Y;LN(Data_X))"
+msgstr "Shto të dhënat si:"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"hd_id7874080\n"
+"help.text"
+msgid "The exponential regression equation"
+msgstr "Formati numerik: eksponencial"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id4679097\n"
+"help.text"
+msgid "For exponential trend lines a transformation to a linear model takes place. The optimal curve fitting is related to the linear model and the results are interpreted accordingly."
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id6064943\n"
+"04050100.xhp\n"
+"par_id9112216\n"
"help.text"
-msgid "Choose <emph>View - Chart Data Table</emph> to open the Data Table dialog."
+msgid "The exponential regression follows the equation <item type=\"literal\">y=b*exp(a*x)</item> or <item type=\"literal\">y=b*m^x</item>, which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*x</item> or <item type=\"literal\">ln(y)=ln(b)+ln(m)*x</item> respectively."
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3236182\n"
+"04050100.xhp\n"
+"par_id4416638\n"
"help.text"
-msgid "The data series are organized in columns. The role of the left most column is set to categories or data labels respectively. The contents of the left most column are always formatted as text. You can insert more text columns to be used as hierarchical labels."
+msgid "a = SLOPE(LN(Data_Y);Data_X)"
+msgstr "Shto të dhënat si:"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id1039155\n"
+"help.text"
+msgid "The variables for the second variation are calculated as follows:"
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id9799798\n"
+"04050100.xhp\n"
+"par_id7184057\n"
"help.text"
-msgid "Click a cell in the dialog and change the contents. Click another cell to see the changed contents in the preview."
+msgid "m = EXP(SLOPE(LN(Data_Y);Data_X))"
+msgstr "Shto të dhënat si:"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id786767\n"
+"help.text"
+msgid "b = EXP(INTERCEPT(LN(Data_Y);Data_X))"
+msgstr "Të dhënat për ["
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id7127292\n"
+"help.text"
+msgid "Calculate the coefficient of determination by"
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id1251258\n"
+"04050100.xhp\n"
+"par_id5437177\n"
"help.text"
-msgid "Enter the name of the data series in the text box above the column."
+msgid "r² = RSQ(LN(Data_Y);Data_X)"
+msgstr "Shto të dhënat si:"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id6946317\n"
+"help.text"
+msgid "Besides m, b and r² the array function LOGEST provides additional statistics for a regression analysis."
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id743430\n"
+"04050100.xhp\n"
+"hd_id6349375\n"
"help.text"
-msgid "Use the icons above the table to insert or delete rows and columns. For data series with multiple columns, only whole data series can be inserted or deleted."
+msgid "The power regression equation"
+msgstr "Modi i ruajtjes së energjisë"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id1857661\n"
+"help.text"
+msgid "For <emph>power regression</emph> curves a transformation to a linear model takes place. The power regression follows the equation <item type=\"literal\">y=b*x^a</item> , which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id8111819\n"
+"04050100.xhp\n"
+"par_id8517105\n"
"help.text"
-msgid "The order of the data series in the chart is the same as in the data table. Use the <emph>Move Series Right</emph> icon to switch the current column with its neighbor on the right."
+msgid "a = SLOPE(LN(Data_Y);LN(Data_X))"
+msgstr "Shto të dhënat si:"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id9827265\n"
+"help.text"
+msgid "b = EXP(INTERCEPT(LN(Data_Y);LN(Data_X))"
+msgstr "Shto të dhënat si:"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id2357249\n"
+"help.text"
+msgid "r² = RSQ(LN(Data_Y);LN(Data_X))"
+msgstr "Shto të dhënat si:"
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"hd_id9204077\n"
+"help.text"
+msgid "Constraints"
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id9116794\n"
+"04050100.xhp\n"
+"par_id7393719\n"
"help.text"
-msgid "The order of the categories or data points in the chart is the same as in the data table. Use the <emph>Move Row Down</emph> icon to switch the current row with its neighbor below."
+msgid "The calculation of the trend line considers only data pairs with the following values:"
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3150297\n"
-"20\n"
+"04050100.xhp\n"
+"par_id7212744\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new row below the current row.</ahelp>"
+msgid "logarithm regression: only positive x-values are considered,"
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3145384\n"
-"23\n"
+"04050100.xhp\n"
+"par_id1664479\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new data series after the current column.</ahelp>"
+msgid "exponential regression: only positive y-values are considered,"
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3152297\n"
+"04050100.xhp\n"
+"par_id8734702\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new text column after the current column for hierarchical axes descriptions.</ahelp>"
+msgid "power regression: only positive x-values and positive y-values are considered."
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3159231\n"
-"26\n"
+"04050100.xhp\n"
+"par_id181279\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current row. It is not possible to delete the label row.</ahelp>"
+msgid "You should transform your data accordingly; it is best to work on a copy of the original data and transform the copied data."
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3153336\n"
-"29\n"
+"04050100.xhp\n"
+"hd_id7907040\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current series or text column. It is not possible to delete the first text column.</ahelp>"
+msgid "The polynomial regression equation"
+msgstr "Llogarit pikat përkrah një linje prapavajtëse."
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id8918729\n"
+"help.text"
+msgid "A <emph>polynomial regression</emph> curve cannot be added automatically. You must calculate this curve manually."
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id4089175\n"
+"04050100.xhp\n"
+"par_id33875\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current column with its neighbor at the right.</ahelp>"
+msgid "Create a table with the columns x, x², x³, … , xⁿ, y up to the desired degree n."
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3949095\n"
+"04050100.xhp\n"
+"par_id8720053\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Switches the current row with its neighbor below.</ahelp>"
+msgid "Use the formula <item type=\"literal\">=LINEST(Data_Y,Data_X)</item> with the complete range x to xⁿ (without headings) as Data_X."
msgstr ""
-#: 03010000.xhp
+#: 04050100.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id6697286\n"
+"04050100.xhp\n"
+"par_id5068514\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter names for the data series.</ahelp>"
+msgid "The first row of the LINEST output contains the coefficients of the regression polynomial, with the coefficient of xⁿ at the leftmost position."
msgstr ""
-#: 05030000.xhp
+#: 04050100.xhp
msgctxt ""
-"05030000.xhp\n"
+"04050100.xhp\n"
+"par_id8202154\n"
+"help.text"
+msgid "The first element of the third row of the LINEST output is the value of r². See the <link href=\"text/scalc/01/04060107.xhp#Section8\">LINEST</link> function for details on proper use and an explanation of the other output parameters."
+msgstr ""
+
+#: 04050100.xhp
+msgctxt ""
+"04050100.xhp\n"
+"par_id4562211\n"
+"help.text"
+msgid "<link href=\"text/schart/01/04050000.xhp\">Y Error Bars tab page</link>"
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
"tit\n"
"help.text"
-msgid "Legend"
-msgstr "Legjendë"
+msgid "Options"
+msgstr "Opcionet"
-#: 05030000.xhp
+#: 04060000.xhp
msgctxt ""
-"05030000.xhp\n"
-"hd_id3145800\n"
+"04060000.xhp\n"
+"bm_id3149400\n"
+"help.text"
+msgid "<bookmark_value>aligning; 2D charts</bookmark_value> <bookmark_value>charts; aligning</bookmark_value> <bookmark_value>pie charts;options</bookmark_value>"
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3149400\n"
"1\n"
"help.text"
-msgid "Legend"
-msgstr "Legjendë"
+msgid "<link href=\"text/schart/01/04060000.xhp\" name=\"Options\">Options</link>"
+msgstr ""
-#: 05030000.xhp
+#: 04060000.xhp
msgctxt ""
-"05030000.xhp\n"
-"par_id3146972\n"
+"04060000.xhp\n"
+"par_id3155067\n"
"2\n"
"help.text"
-msgid "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Defines the border, area and character attributes for a legend.</ahelp></variable>"
+msgid "Use this dialog to define some options that are available for specific chart types. The contents of the Options dialog vary with the chart type."
msgstr ""
-#: 05030000.xhp
+#: 04060000.xhp
msgctxt ""
-"05030000.xhp\n"
-"hd_id3145232\n"
+"04060000.xhp\n"
+"hd_id3150043\n"
+"9\n"
+"help.text"
+msgid "Align data series to:"
+msgstr "Rradhit të dhënat serike me"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3145228\n"
+"10\n"
+"help.text"
+msgid "In this area you can choose between two Y axis scaling modes. The axes can only be scaled and given properties separately."
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3147346\n"
"4\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgid "Primary Y axis"
+msgstr "Boshtet Y primare"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3147005\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_1\">This option is active as default. All data series are aligned to the primary Y axis.</ahelp>"
msgstr ""
-#: 05030000.xhp
+#: 04060000.xhp
msgctxt ""
-"05030000.xhp\n"
-"hd_id3147344\n"
-"3\n"
+"04060000.xhp\n"
+"hd_id3143221\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/schart/01/04020000.xhp\" name=\"Display\">Display</link>"
+msgid "Secondary Y axis"
+msgstr "~Boshti dytësor X..."
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3154656\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_2\">Changes the scaling of the Y axis. This axis is only visible when at least one data series is assigned to it and the axis view is active.</ahelp>"
msgstr ""
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"tit\n"
+"04060000.xhp\n"
+"hd_id3166423\n"
+"6\n"
"help.text"
-msgid "Arrangement"
-msgstr "Rregullim"
+msgid "Settings"
+msgstr "Parametrat"
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"hd_id3159153\n"
-"1\n"
+"04060000.xhp\n"
+"par_id3150365\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/schart/01/05120000.xhp\" name=\"Arrangement\">Arrangement</link>"
+msgid "Define the settings for a bar chart in this area. Any changes apply to all data series of the chart, not to the selected data only."
msgstr ""
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3145750\n"
-"2\n"
+"04060000.xhp\n"
+"hd_id3145584\n"
+"7\n"
"help.text"
-msgid "Allows you to modify the order of the data series already set in the chart."
+msgid "Spacing"
+msgstr "Hapësira"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3155376\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_GAP\">Defines the spacing between the columns in percent.</ahelp> The maximal spacing is 600%."
msgstr ""
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3155411\n"
+"04060000.xhp\n"
+"hd_id3145384\n"
"8\n"
"help.text"
-msgid "The position of the data in the data table remains unchanged. You can only choose the commands after inserting a chart in $[officename] Calc."
+msgid "Overlap"
+msgstr "Bllokim"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3156447\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_OVERLAP\">Defines the necessary settings for overlapping data series.</ahelp> You can choose between -100 and +100%."
msgstr ""
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3154757\n"
-"5\n"
+"04060000.xhp\n"
+"hd_id3153305\n"
+"16\n"
"help.text"
-msgid "This function is only available if you have data displayed in columns. It is not possible to switch to data display in rows."
+msgid "Connection Lines"
+msgstr "Vijat lidhëse"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id3148868\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_OPTIONS:CB_CONNECTOR\">For \"stacked\" and \"percent\" column (vertical bar) charts, mark this check box to connect the column layers that belong together with lines.</ahelp>"
msgstr ""
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"hd_id3147339\n"
-"3\n"
+"04060000.xhp\n"
+"hd_id9842219\n"
"help.text"
-msgid "Bring Forward"
-msgstr "Sjelle Përpara"
+msgid "Show bars side by side"
+msgstr ""
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3149259\n"
-"6\n"
+"04060000.xhp\n"
+"par_id9800103\n"
"help.text"
-msgid "<ahelp hid=\".uno:Forward\">Brings the selected data series forward (to the right).</ahelp>"
+msgid "If two axes are shown in a bar chart, and some data series are attached to the first axis, while some other data series are attached to the second axis, then both sets of data series are shown independently, overlapping each other."
msgstr ""
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"hd_id3146316\n"
-"4\n"
+"04060000.xhp\n"
+"par_id2144535\n"
"help.text"
-msgid "Send Backward"
-msgstr "Dërgo prapa"
+msgid "As a result, bars attached to the first y-axis are partly or completely hidden by bars attached to the second y-axis. To avoid this, enable the option to display bars side by side. <ahelp hid=\".\">The bars from different data series are shown as if they were attached only to one axis.</ahelp>"
+msgstr ""
-#: 05120000.xhp
+#: 04060000.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3147001\n"
-"7\n"
+"04060000.xhp\n"
+"hd_id24414\n"
"help.text"
-msgid "<ahelp hid=\".uno:Backward\">Sends the selected data series backward (to the left).</ahelp>"
+msgid "Clockwise direction"
+msgstr "Drejtimi i tekstit"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id2527237\n"
+"help.text"
+msgid "Available for pie and donut charts. <ahelp hid=\".\">The default direction in which the pieces of a pie chart are ordered is counterclockwise. Enable the <emph>Clockwise direction</emph> checkbox to draw the pieces in opposite direction.</ahelp>"
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id401013\n"
+"help.text"
+msgid "Starting angle"
+msgstr "Kontrolli i këndit"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id761131\n"
+"help.text"
+msgid "<ahelp hid=\".\">Drag the small dot along the circle or click any position on the circle to set the starting angle of a pie or donut chart. The starting angle is the mathematical angle position where the first piece is drawn. The value of 90 degrees draws the first piece at the 12 o'clock position. A value of 0 degrees starts at the 3 o'clock position.</ahelp>"
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id553910\n"
+"help.text"
+msgid "In 3D pie and donut charts that were created with older versions of the software, the starting angle is 0 degrees instead of 90 degrees. For old and new 2D charts the default starting angle is 90 degrees."
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id1414838\n"
+"help.text"
+msgid "When you change the starting angle or the direction, only current versions of the software show the changed values. Older versions of the software display the same document using the default values: Always counterclockwise direction and a starting value of 90 degrees (2D pie charts) or 0 degrees (3D pie charts)."
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id3179723\n"
+"help.text"
+msgid "Degrees"
+msgstr "0 shkallë"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id2164067\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the starting angle between 0 and 359 degrees. You can also click the arrows to change the displayed value.</ahelp>"
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524613\n"
+"help.text"
+msgid "Plot missing values"
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id0305200910524650\n"
+"help.text"
+msgid "Sometimes values are missing in a data series that is shown in a chart. You can select from different options how to plot the missing values. The options are available for some chart types only."
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524823\n"
+"help.text"
+msgid "Leave gap"
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id0305200910524811\n"
+"help.text"
+msgid "<ahelp hid=\".\">For a missing value, no data will be shown. This is the default for chart types Column, Bar, Line, Net.</ahelp>"
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524811\n"
+"help.text"
+msgid "Assume zero"
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id030520091052489\n"
+"help.text"
+msgid "<ahelp hid=\".\">For a missing value, the y-value will be shown as zero. This is the default for chart type Area.</ahelp>"
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524837\n"
+"help.text"
+msgid "Continue line"
+msgstr "Vijat lidhëse"
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id0305200910524938\n"
+"help.text"
+msgid "<ahelp hid=\".\">For a missing value, the interpolation from the neighbor values will be shown. This is the default for chart type XY.</ahelp>"
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"hd_id0305200910524937\n"
+"help.text"
+msgid "Include values from hidden cells"
+msgstr ""
+
+#: 04060000.xhp
+msgctxt ""
+"04060000.xhp\n"
+"par_id030520091052494\n"
+"help.text"
+msgid "<ahelp hid=\".\">Check to also show values of currently hidden cells within the source cell range.</ahelp>"
msgstr ""
#: 04070000.xhp
@@ -1766,497 +2306,1270 @@ msgctxt ""
msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_GRID:CB_Z_HELP\">Adds gridlines that subdivide the Z axis into smaller sections.</ahelp> This option is only available if you're working with 3D charts."
msgstr ""
-#: 05040100.xhp
+#: 05010000.xhp
msgctxt ""
-"05040100.xhp\n"
+"05010000.xhp\n"
"tit\n"
"help.text"
-msgid "Axes"
-msgstr "Boshte"
+msgid "Format Selection"
+msgstr ""
-#: 05040100.xhp
+#: 05010000.xhp
msgctxt ""
-"05040100.xhp\n"
-"bm_id3153768\n"
+"05010000.xhp\n"
+"bm_id3149666\n"
"help.text"
-msgid "<bookmark_value>axes;formatting</bookmark_value>"
+msgid "<bookmark_value>objects;properties of charts</bookmark_value><bookmark_value>charts; properties</bookmark_value><bookmark_value>properties;charts</bookmark_value>"
msgstr ""
-#: 05040100.xhp
+#: 05010000.xhp
msgctxt ""
-"05040100.xhp\n"
+"05010000.xhp\n"
+"hd_id3149666\n"
+"1\n"
+"help.text"
+msgid "Format Selection"
+msgstr ""
+
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"par_id3156284\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"objekteigenschaften\"><ahelp hid=\".\">Formats the selected object.</ahelp></variable> Depending on the object selected, the command opens dialogs that you can also open by choosing the following commands from the <emph>Format</emph> menu:"
+msgstr ""
+
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"hd_id3153418\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05060000.xhp\" name=\"Chart Wall\">Chart Wall</link>"
+msgstr ""
+
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"hd_id3155766\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05080000.xhp\" name=\"Chart Area\">Chart Area</link>"
+msgstr ""
+
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"hd_id3154255\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05070000.xhp\" name=\"Chart Floor\">Chart Floor</link>"
+msgstr ""
+
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"hd_id3146313\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Title\">Title</link>"
+msgstr ""
+
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"hd_id3150297\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05030000.xhp\" name=\"Legend\">Legend</link>"
+msgstr ""
+
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"hd_id3143219\n"
+"8\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X Axis\">X Axis</link>"
+msgstr ""
+
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"hd_id3150207\n"
+"9\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y Axis\">Y Axis</link>"
+msgstr ""
+
+#: 05010000.xhp
+msgctxt ""
+"05010000.xhp\n"
+"hd_id3166432\n"
+"10\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Grid\">Grid</link>"
+msgstr ""
+
+#: 05010100.xhp
+msgctxt ""
+"05010100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data Point"
+msgstr "Të dhënat e pikëve"
+
+#: 05010100.xhp
+msgctxt ""
+"05010100.xhp\n"
"hd_id3153768\n"
"1\n"
"help.text"
-msgid "Axes"
-msgstr "Boshte"
+msgid "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">Data Point</link>"
+msgstr ""
-#: 05040100.xhp
+#: 05010100.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3154319\n"
+"05010100.xhp\n"
+"par_id3152577\n"
"2\n"
"help.text"
-msgid "<variable id=\"achsen\"><ahelp hid=\".uno:DiagramAxisAll\">Opens a dialog, where you can edit the properties of the selected axis.</ahelp></variable> The name of the dialog depends on the selected axis."
+msgid "This dialog allows you to change the properties of a selected data point. The dialog appears when there is only one data point selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts."
msgstr ""
-#: 05040100.xhp
+#: 05010100.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3149667\n"
+"05010100.xhp\n"
+"par_id3149121\n"
"3\n"
"help.text"
-msgid "The <link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link> has an enhanced dialog. For X-Y charts, the X axis chart is also enhanced by the <link href=\"text/schart/01/05040201.xhp\" name=\"Scaling\"><emph>Scaling</emph></link> tab."
+msgid "Any changes made only affect this one data point. For example, if you edit the color of a bar, only the color of that bar will be different."
msgstr ""
-#: 05040100.xhp
+#: 05010200.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3159266\n"
+"05010200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Data Series"
+msgstr "Të dhënat serike"
+
+#: 05010200.xhp
+msgctxt ""
+"05010200.xhp\n"
+"hd_id3150449\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05010200.xhp\" name=\"Data Series\">Data Series</link>"
+msgstr ""
+
+#: 05010200.xhp
+msgctxt ""
+"05010200.xhp\n"
+"par_id3145750\n"
+"2\n"
+"help.text"
+msgid "Use this to change the properties of a selected data series. This dialog appears when one data series is selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts."
+msgstr ""
+
+#: 05010200.xhp
+msgctxt ""
+"05010200.xhp\n"
+"par_id3154015\n"
"4\n"
"help.text"
-msgid "Scaling the X axis is only possible in the X-Y chart type."
+msgid "Any changes made here affect the entire data series. For example, if you change the color, all elements belonging to this data series will change color."
msgstr ""
-#: 05040100.xhp
+#: 05010200.xhp
msgctxt ""
-"05040100.xhp\n"
-"hd_id3145230\n"
+"05010200.xhp\n"
+"hd_id3146916\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\">Y Error Bars</link>"
+msgstr ""
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Title"
+msgstr "Titulli"
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"bm_id3150791\n"
+"help.text"
+msgid "<bookmark_value>titles; formatting charts</bookmark_value><bookmark_value>formatting; chart titles</bookmark_value>"
+msgstr ""
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3150791\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05020000.xhp\" name=\"Title\">Title</link>"
+msgstr ""
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"par_id3125863\n"
+"2\n"
+"help.text"
+msgid "The<emph> Title </emph>menu command opens a submenu for editing the properties of the titles in the chart."
+msgstr ""
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3155414\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Main title\">Main title</link>"
+msgstr ""
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3156441\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Subtitle\">Subtitle</link>"
+msgstr ""
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3151073\n"
"5\n"
"help.text"
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"X-axis title\">X-axis title</link>"
+msgstr ""
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3154732\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"Y-axis title\">Y-axis title</link>"
+msgstr ""
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3154017\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Z-axis title\">Z-axis title</link>"
+msgstr ""
+
+#: 05020000.xhp
+msgctxt ""
+"05020000.xhp\n"
+"hd_id3153711\n"
+"8\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"All titles\">All titles</link>"
+msgstr ""
+
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Title"
+msgstr "Titulli"
+
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"bm_id3150769\n"
+"help.text"
+msgid "<bookmark_value>editing; titles</bookmark_value>"
+msgstr ""
+
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3150769\n"
+"2\n"
+"help.text"
+msgid "Title"
+msgstr "Titulli"
+
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3149666\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Modifies the properties of the selected title.</ahelp></variable>"
+msgstr ""
+
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"hd_id3149378\n"
+"3\n"
+"help.text"
msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
msgstr ""
-#: three_d_view.xhp
+#: 05020101.xhp
msgctxt ""
-"three_d_view.xhp\n"
+"05020101.xhp\n"
"tit\n"
"help.text"
-msgid "3D View"
-msgstr "Pamja 3D"
+msgid "Alignment"
+msgstr "Mbështetje"
-#: three_d_view.xhp
+#: 05020101.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"bm_id3156423\n"
+"05020101.xhp\n"
+"bm_id3150793\n"
"help.text"
-msgid "<bookmark_value>3D charts</bookmark_value> <bookmark_value>charts; 3D views</bookmark_value> <bookmark_value>illumination; 3D charts</bookmark_value>"
+msgid "<bookmark_value>aligning;titles in charts</bookmark_value><bookmark_value>titles;alignment (charts)</bookmark_value>"
msgstr ""
-#: three_d_view.xhp
+#: 05020101.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"hd_id3464461\n"
+"05020101.xhp\n"
+"hd_id3150793\n"
+"1\n"
"help.text"
-msgid "<variable id=\"three_d_view\"><link href=\"text/schart/01/three_d_view.xhp\">3D View</link></variable>"
+msgid "<link href=\"text/schart/01/05020101.xhp\" name=\"Alignment\">Alignment</link>"
msgstr ""
-#: three_d_view.xhp
+#: 05020101.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id6998809\n"
+"05020101.xhp\n"
+"par_id3125864\n"
+"2\n"
"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> or in the context menu of a chart you can choose a chart type. <ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to edit the properties of a three dimensional view for Column, Bar, Pie, and Area charts. For Line and XY (Scatter) charts you can see 3D lines.</ahelp>"
+msgid "Modifies the alignment of the chart title."
+msgstr "Titull Vertikal, Tekst, Diagram"
+
+#: 05020101.xhp
+msgctxt ""
+"05020101.xhp\n"
+"par_id3145748\n"
+"4\n"
+"help.text"
+msgid "Some of the options are not available for all types of labels. For example, there are different options for 2D and 3D object labels."
msgstr ""
-#: three_d_view.xhp
+#: 05020101.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id6942045\n"
+"05020101.xhp\n"
+"par_id3150717\n"
+"3\n"
"help.text"
-msgid "The chart preview responds to the new settings that you enter in the dialog."
+msgid "Please note that problems may arise in displaying labels if the size of your chart is too small. You can avoid this by either enlarging the view or decreasing the font size."
msgstr ""
-#: three_d_view.xhp
+#: 05020200.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id3806878\n"
+"05020200.xhp\n"
+"tit\n"
"help.text"
-msgid "When you leave the dialog with OK, the settings are applied permanently."
+msgid "Title"
+msgstr "Titulli"
+
+#: 05020200.xhp
+msgctxt ""
+"05020200.xhp\n"
+"hd_id3150541\n"
+"1\n"
+"help.text"
+msgid "Title"
+msgstr "Titulli"
+
+#: 05020200.xhp
+msgctxt ""
+"05020200.xhp\n"
+"par_id3145173\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Modifies the properties of the selected title or the properties of all titles together.</ahelp></variable>"
msgstr ""
-#: three_d_view.xhp
+#: 05020200.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id130619\n"
+"05020200.xhp\n"
+"hd_id3152596\n"
+"3\n"
"help.text"
-msgid "When you leave the dialog with Cancel or Escape, the chart returns to the state when you opened the dialog."
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id8081911\n"
+"05020201.xhp\n"
+"tit\n"
"help.text"
-msgid "For a 3D chart you can choose <item type=\"menuitem\">Format - 3D View</item> to set perspective, appearance and illumination."
+msgid "Alignment"
+msgstr "Mbështetje"
+
+#: 05020201.xhp
+msgctxt ""
+"05020201.xhp\n"
+"hd_id3149656\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05020201.xhp\" name=\"Alignment\">Alignment</link>"
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"hd_id2924283\n"
+"05020201.xhp\n"
+"par_id3156422\n"
+"2\n"
"help.text"
-msgid "Perspective"
-msgstr "Perspektivë"
+msgid "Modifies the alignment of axes or title labels."
+msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id5781731\n"
+"05020201.xhp\n"
+"par_id3150439\n"
+"76\n"
"help.text"
-msgid "Enter the values for rotation of the chart on the three axes and for a perspective view."
+msgid "Some of the options listed here are not available for all labels. For example, there are different options for 2D and 3D object labels."
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id9999694\n"
+"05020201.xhp\n"
+"hd_id3145750\n"
+"71\n"
"help.text"
-msgid "Set all angles to 0 for a front view of the chart. Pie charts and donut charts are shown as circles."
+msgid "Show labels"
+msgstr "Shto etiketat"
+
+#: 05020201.xhp
+msgctxt ""
+"05020201.xhp\n"
+"par_id3154319\n"
+"72\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_AXIS_LABEL:CB_AXIS_LABEL_SCHOW_DESCR\">Specifies whether to show or hide the axis labels.</ahelp>"
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id2861720\n"
+"05020201.xhp\n"
+"par_id3147436\n"
+"75\n"
"help.text"
-msgid "With Right-angled axes enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders."
+msgid "<variable id=\"sytextbeschr\"><ahelp hid=\".uno:ToggleAxisDescr\">The<emph> AxesTitle On/Off </emph>icon on the <emph>Formatting</emph> bar switches the labeling of all axes on or off.</ahelp></variable>"
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id2216559\n"
+"05020201.xhp\n"
+"hd_id3150717\n"
+"4\n"
"help.text"
-msgid "An x value of 90, with y and z set to 0, provides a view from top down to the chart. With x set to -90, you see the bottom of the chart."
+msgid "Rotate text"
+msgstr "Rrotullo tekstin"
+
+#: 05020201.xhp
+msgctxt ""
+"05020201.xhp\n"
+"par_id3154510\n"
+"5\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ToggleAxisDescr\">Defines the text direction of cell contents.</ahelp> Click one of the ABCD buttons to assign the required direction."
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id7869502\n"
+"05020201.xhp\n"
+"hd_id3150327\n"
+"50\n"
"help.text"
-msgid "The rotations are applied in the order first x, then y, last z."
+msgid "ABCD wheel"
+msgstr "Wheel Clockwise, 1 Spoke"
+
+#: 05020201.xhp
+msgctxt ""
+"05020201.xhp\n"
+"par_id3149018\n"
+"49\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SCH_ALIGNMENT_CTR_DIAL\">Clicking anywhere on the wheel defines the variable text orientation.</ahelp> The letters \"ABCD\" on the button correspond to the new setting."
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id9852900\n"
+"05020201.xhp\n"
+"hd_id3154254\n"
+"51\n"
"help.text"
-msgid "When shading is enabled and you rotate a chart, the lights are rotated as if they are fixed to the chart."
+msgid "ABCD button"
+msgstr "Butoni i fotografisë"
+
+#: 05020201.xhp
+msgctxt ""
+"05020201.xhp\n"
+"par_id3154702\n"
+"52\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SCH_ALIGNMENT_STACKED\">Assigns vertical text orientation for cell contents.</ahelp>"
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id2578203\n"
+"05020201.xhp\n"
+"par_id3150342\n"
+"53\n"
"help.text"
-msgid "The rotation axes always relate to the page, not to the chart's axes. This is different from some other chart programs."
+msgid "If you define a vertical x-axis label, the text may be cut off by the line of the x-axis."
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id4923245\n"
+"05020201.xhp\n"
+"hd_id3166432\n"
+"54\n"
"help.text"
-msgid "Select the Perspective check box to view the chart in central perspective as through a camera lens instead of using a parallel projection."
+msgid "Degrees"
+msgstr "0 shkallë"
+
+#: 05020201.xhp
+msgctxt ""
+"05020201.xhp\n"
+"par_id3150199\n"
+"55\n"
+"help.text"
+msgid "<ahelp hid=\"HID_SCH_ALIGNMENT_DEGREES\">Allows you to manually enter the orientation angle.</ahelp>"
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id3416547\n"
+"05020201.xhp\n"
+"hd_id3152985\n"
+"73\n"
"help.text"
-msgid "Set the focus length with the spin button. 100% gives a perspective view where a far edge in the chart looks approximately half as big as a near edge."
+msgid "Text flow"
+msgstr "Rrjedhë teksti"
+
+#: 05020201.xhp
+msgctxt ""
+"05020201.xhp\n"
+"par_id3155089\n"
+"74\n"
+"help.text"
+msgid "Determines the text flow of the data label."
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id3791924\n"
+"05020201.xhp\n"
+"hd_id3148837\n"
+"57\n"
"help.text"
-msgid "Older versions of %PRODUCTNAME cannot display the percentage of perspective the same way as the current version."
+msgid "Overlap"
+msgstr "Bllokim"
+
+#: 05020201.xhp
+msgctxt ""
+"05020201.xhp\n"
+"par_id3151240\n"
+"58\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_AXIS_LABEL:CB_AXIS_LABEL_TEXTOVERLAP\">Specifies that the text in cells may overlap other cells.</ahelp> This can be especially useful if there is a lack of space. This option is not available with different title directions."
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id7623828\n"
+"05020201.xhp\n"
+"hd_id3157982\n"
+"68\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">If Right-angled axes is enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders. Right-angled axes is enabled by default for newly created 3D charts. Pie and Donut charts do not support right-angled axes.</ahelp>"
+msgid "Break"
+msgstr "Ndërprerje"
+
+#: 05020201.xhp
+msgctxt ""
+"05020201.xhp\n"
+"par_id3155268\n"
+"69\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_AXIS_LABEL:CB_AXIS_LABEL_TEXTBREAK\">Allows a text break.</ahelp>"
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id4721823\n"
+"05020201.xhp\n"
+"hd_id3159205\n"
+"56\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the x axis. The preview responds to the new settings.</ahelp>"
+msgid "The following options are not available for all chart types:"
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id5806756\n"
+"05020201.xhp\n"
+"hd_id3152872\n"
+"59\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the y axis. The preview responds to the new settings.</ahelp>"
+msgid "Order"
+msgstr "Renditja"
+
+#: 05020201.xhp
+msgctxt ""
+"05020201.xhp\n"
+"par_id3159230\n"
+"11\n"
+"help.text"
+msgid "The options on this tab are only available for a 2D chart, under <emph>Format - Axis - Y Axis</emph> or <emph>X Axis</emph>. In this area, you can define the alignment of the number labels on the X or Y axis."
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id8915372\n"
+"05020201.xhp\n"
+"hd_id3146963\n"
+"60\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the z axis. The preview responds to the new settings.</ahelp>"
+msgid "Tile"
+msgstr "Pllakë"
+
+#: 05020201.xhp
+msgctxt ""
+"05020201.xhp\n"
+"par_id3155758\n"
+"61\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_SIDEBYSIDE\">Arranges numbers on the axis side by side.</ahelp>"
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id6070436\n"
+"05020201.xhp\n"
+"hd_id3151195\n"
+"62\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Mark the Perspective box to view the chart as through a camera lens. Use the spin button to set the percentage. With a high percentage nearer objects look bigger than more distant objects.</ahelp>"
+msgid "Stagger odd"
+msgstr "Shkallëzime të rastit"
+
+#: 05020201.xhp
+msgctxt ""
+"05020201.xhp\n"
+"par_id3145114\n"
+"63\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_UPDOWN\">Staggers numbers on the axis, even numbers lower than odd numbers.</ahelp>"
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"hd_id7564012\n"
+"05020201.xhp\n"
+"hd_id3147250\n"
+"64\n"
"help.text"
-msgid "Appearance"
+msgid "Stagger even"
+msgstr "Shkallëzime të njëtrajtshme"
+
+#: 05020201.xhp
+msgctxt ""
+"05020201.xhp\n"
+"par_id3153958\n"
+"65\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_DOWNUP\">Stagger numbers on the axes, odd numbers lower than even numbers.</ahelp>"
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id1186254\n"
+"05020201.xhp\n"
+"hd_id3147301\n"
+"66\n"
"help.text"
-msgid "Select a scheme from the list box."
-msgstr "Zgjidh skemën e tastierës nga lista e arkitekturave"
+msgid "Automatic"
+msgstr "Automatike"
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id7432477\n"
+"05020201.xhp\n"
+"par_id3147404\n"
+"67\n"
"help.text"
-msgid "By selecting a scheme, the check boxes and the light sources are set accordingly."
+msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_AUTOORDER\">Automatically arranges numbers on the axis.</ahelp>"
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id7141026\n"
+"05020201.xhp\n"
+"par_id3149353\n"
+"70\n"
"help.text"
-msgid "If you mark or unmark a combination of check boxes that is not given by the Realistic or Simple scheme, you create a Custom scheme."
+msgid "Problems may arise in displaying labels if the size of your chart is too small. You can avoid this by either enlarging the view or decreasing the font size."
msgstr ""
-#: three_d_view.xhp
+#: 05020201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id1579027\n"
+"05020201.xhp\n"
+"hd_id1106200812235146\n"
"help.text"
-msgid "Mark <emph>Shading</emph> to use the Gouraud method for rendering the surface, otherwise a flat method is used."
+msgid "Text Direction"
+msgstr "Drejtimi i tekstit"
+
+#: 05020201.xhp
+msgctxt ""
+"05020201.xhp\n"
+"par_id1106200812235271\n"
+"help.text"
+msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
msgstr ""
-#: three_d_view.xhp
+#: 05030000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id5624561\n"
+"05030000.xhp\n"
+"tit\n"
"help.text"
-msgid "The flat method sets a single color and brightness for each polygon. The edges are visible, soft gradients and spot lights are not possible."
+msgid "Legend"
+msgstr "Legjendë"
+
+#: 05030000.xhp
+msgctxt ""
+"05030000.xhp\n"
+"hd_id3145800\n"
+"1\n"
+"help.text"
+msgid "Legend"
+msgstr "Legjendë"
+
+#: 05030000.xhp
+msgctxt ""
+"05030000.xhp\n"
+"par_id3146972\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"legende\"><ahelp hid=\".uno:Legend\">Defines the border, area and character attributes for a legend.</ahelp></variable>"
msgstr ""
-#: three_d_view.xhp
+#: 05030000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id5901058\n"
+"05030000.xhp\n"
+"hd_id3145232\n"
+"4\n"
"help.text"
-msgid "The Gouraud method applies gradients for a smoother, more realistic look."
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
msgstr ""
-#: three_d_view.xhp
+#: 05030000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id8469191\n"
+"05030000.xhp\n"
+"hd_id3147344\n"
+"3\n"
"help.text"
-msgid "Mark <emph>Object Borders</emph> to draw lines along the edges."
+msgid "<link href=\"text/schart/01/04020000.xhp\" name=\"Display\">Display</link>"
msgstr ""
-#: three_d_view.xhp
+#: 05040000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id4407483\n"
+"05040000.xhp\n"
+"tit\n"
"help.text"
-msgid "Mark <emph>Rounded Edges</emph> to smooth the edges of box shapes."
+msgid "Axis"
+msgstr "~Boshti X..."
+
+#: 05040000.xhp
+msgctxt ""
+"05040000.xhp\n"
+"hd_id3149456\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05040000.xhp\" name=\"Axis\">Axis</link>"
msgstr ""
-#: three_d_view.xhp
+#: 05040000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id8531449\n"
+"05040000.xhp\n"
+"par_id3150441\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a scheme from the list box, or click any of the check boxes below.</ahelp>"
+msgid "This opens a submenu to edit axial properties."
msgstr ""
-#: three_d_view.xhp
+#: 05040000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id9183935\n"
+"05040000.xhp\n"
+"par_id3154319\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies Gouraud shading if marked, or flat shading if unmarked.</ahelp>"
+msgid "The tabs in the dialogs depend on the chart type selected."
msgstr ""
-#: three_d_view.xhp
+#: 05040000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id946684\n"
+"05040000.xhp\n"
+"hd_id3153729\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows borders around the areas by setting the line style to Solid.</ahelp>"
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X axis\">X axis</link>"
msgstr ""
-#: three_d_view.xhp
+#: 05040000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id9607226\n"
+"05040000.xhp\n"
+"hd_id3147394\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Edges are rounded by 5%.</ahelp>"
+msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link>"
msgstr ""
-#: three_d_view.xhp
+#: 05040000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"hd_id1939451\n"
+"05040000.xhp\n"
+"hd_id3153160\n"
+"9\n"
"help.text"
-msgid "Illumination"
-msgstr "Ndriçimi"
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"Secondary X Axis\">Secondary X Axis</link>"
+msgstr ""
-#: three_d_view.xhp
+#: 05040000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id9038972\n"
+"05040000.xhp\n"
+"par_id3149401\n"
+"10\n"
"help.text"
-msgid "Set the light sources for the 3D view."
+msgid "<ahelp hid=\".uno:DiagramAxisA\">Opens a dialog where you can edit the properties of the secondary X axis. To insert a secondary X axis, choose <emph>Insert - Axes</emph> and select <emph>X axis</emph>.</ahelp>"
msgstr ""
-#: three_d_view.xhp
+#: 05040000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id6531266\n"
+"05040000.xhp\n"
+"hd_id3145640\n"
+"7\n"
"help.text"
-msgid "Click any of the eight buttons to switch a directed light source on or off."
+msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Secondary Y Axis\">Secondary Y Axis</link>"
msgstr ""
-#: three_d_view.xhp
+#: 05040000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id6173894\n"
+"05040000.xhp\n"
+"par_id3159264\n"
+"8\n"
"help.text"
-msgid "By default, the second light source is switched on. It is the first of seven \"normal\", uniform light sources. The light source number one projects a specular light with highlights."
+msgid "<ahelp hid=\".uno:DiagramAxisB\">Opens a dialog where you can edit the properties of the secondary Y axis. To insert a secondary Y axis, choose <emph>Insert - Axes</emph> and select <emph>Y axis</emph>.</ahelp>"
msgstr ""
-#: three_d_view.xhp
+#: 05040000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id2761314\n"
+"05040000.xhp\n"
+"hd_id3145228\n"
+"5\n"
"help.text"
-msgid "For the selected light source, you can then choose a color and intensity in the list box just below the eight buttons. The brightness values of all lights are added, so use dark colors when you enable multiple lights."
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"Z axis\">Z axis</link>"
msgstr ""
-#: three_d_view.xhp
+#: 05040000.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id3912778\n"
+"05040000.xhp\n"
+"hd_id3147345\n"
+"6\n"
"help.text"
-msgid "The small preview inside this tab page has two sliders to set the vertical and horizontal position of the selected light source. The light source always aims to the middle of the object."
+msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"All axes\">All axes</link>"
msgstr ""
-#: three_d_view.xhp
+#: 05040100.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id3163853\n"
+"05040100.xhp\n"
+"tit\n"
"help.text"
-msgid "The button in the corner of the small preview switches the internal illumination model between a sphere and a cube."
+msgid "Axes"
+msgstr "Boshte"
+
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"bm_id3153768\n"
+"help.text"
+msgid "<bookmark_value>axes;formatting</bookmark_value>"
msgstr ""
-#: three_d_view.xhp
+#: 05040100.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id121158\n"
+"05040100.xhp\n"
+"hd_id3153768\n"
+"1\n"
"help.text"
-msgid "Use the Ambient light list box to define the ambient light which shines with a uniform intensity from all directions."
+msgid "Axes"
+msgstr "Boshte"
+
+#: 05040100.xhp
+msgctxt ""
+"05040100.xhp\n"
+"par_id3154319\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"achsen\"><ahelp hid=\".uno:DiagramAxisAll\">Opens a dialog, where you can edit the properties of the selected axis.</ahelp></variable> The name of the dialog depends on the selected axis."
msgstr ""
-#: three_d_view.xhp
+#: 05040100.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id2423780\n"
+"05040100.xhp\n"
+"par_id3149667\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Drag the right slider to set the vertical height and direction of the selected light source.</ahelp>"
+msgid "The <link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link> has an enhanced dialog. For X-Y charts, the X axis chart is also enhanced by the <link href=\"text/schart/01/05040201.xhp\" name=\"Scaling\"><emph>Scaling</emph></link> tab."
msgstr ""
-#: three_d_view.xhp
+#: 05040100.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id2569658\n"
+"05040100.xhp\n"
+"par_id3159266\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Drag the bottom slider to set the horizontal position and direction of the selected light source.</ahelp>"
+msgid "Scaling the X axis is only possible in the X-Y chart type."
msgstr ""
-#: three_d_view.xhp
+#: 05040100.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id6394238\n"
+"05040100.xhp\n"
+"hd_id3145230\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to switch between an illumination model of a sphere or a cube.</ahelp>"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
msgstr ""
-#: three_d_view.xhp
+#: 05040200.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id533768\n"
+"05040200.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to enable or disable the specular light source with highlights.</ahelp>"
+msgid "Y Axis"
+msgstr "Boshti Y"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"bm_id3145673\n"
+"help.text"
+msgid "<bookmark_value>Y axes; formatting</bookmark_value>"
msgstr ""
-#: three_d_view.xhp
+#: 05040200.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id7214270\n"
+"05040200.xhp\n"
+"hd_id3145673\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to enable or disable the uniform light source.</ahelp>"
+msgid "Y Axis"
+msgstr "Boshti Y"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id3155628\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Opens the<emph> Y Axis </emph>dialog, to change properties of the Y axis.</ahelp></variable>"
msgstr ""
-#: three_d_view.xhp
+#: 05040200.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id2186346\n"
+"05040200.xhp\n"
+"hd_id3145171\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the selected light source.</ahelp>"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
msgstr ""
-#: three_d_view.xhp
+#: 05040200.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id1331217\n"
+"05040200.xhp\n"
+"hd_id3146119\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
msgstr ""
-#: three_d_view.xhp
+#: 05040201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id393993\n"
+"05040201.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the ambient light.</ahelp>"
+msgid "Scale"
+msgstr "Shkallë"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"bm_id3150868\n"
+"help.text"
+msgid "<bookmark_value>scaling; axes</bookmark_value><bookmark_value>logarithmic scaling along axes</bookmark_value><bookmark_value>charts;scaling axes</bookmark_value><bookmark_value>X axes;scaling</bookmark_value><bookmark_value>Y axes; scaling</bookmark_value>"
msgstr ""
-#: three_d_view.xhp
+#: 05040201.xhp
msgctxt ""
-"three_d_view.xhp\n"
-"par_id5871761\n"
+"05040201.xhp\n"
+"hd_id3150868\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>"
+msgid "<link href=\"text/schart/01/05040201.xhp\" name=\"Scale\">Scale</link>"
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3154013\n"
+"2\n"
+"help.text"
+msgid "Controls the scaling of the X or Y axis."
+msgstr "~Rrjeta kryesore e boshtit Y..."
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3148576\n"
+"79\n"
+"help.text"
+msgid "The axes are automatically scaled by $[officename] so that all values are optimally displayed."
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3149379\n"
+"3\n"
+"help.text"
+msgid "To achieve specific results, you can manually change the axis scaling. For example, you can display only the top areas of the columns by shifting the zero line upwards."
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3154730\n"
+"4\n"
+"help.text"
+msgid "Scale"
+msgstr "Shkallë"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3149400\n"
+"5\n"
+"help.text"
+msgid "You can enter values for subdividing axes in this area. You can automatically set the properties <emph>Minimum, Maximum, Major interval, Minor interval count</emph> and <emph>Reference value</emph>."
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3150751\n"
+"6\n"
+"help.text"
+msgid "Minimum"
+msgstr "Minimum"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3153713\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MIN\">Defines the minimum value for the beginning of the axis.</ahelp>"
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3156385\n"
+"8\n"
+"help.text"
+msgid "Maximum"
+msgstr "Maksimum"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3159266\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MAX\">Defines the maximum value for the end of the axis.</ahelp>"
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3155336\n"
+"10\n"
+"help.text"
+msgid "Major interval"
+msgstr "Intervali madhor"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3143218\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_MAIN\">Defines the interval for the main division of the axes.</ahelp> The main interval cannot be larger than the value area."
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3154020\n"
+"12\n"
+"help.text"
+msgid "Minor interval count"
+msgstr "Shenja intervalesh të vogla"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3154656\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_HELP\">Defines the interval for the subdivision of the axes.</ahelp>"
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3150089\n"
+"14\n"
+"help.text"
+msgid "Reference value"
+msgstr "Vlerë reference"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3152990\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_ORIGIN\">Specifies at which position to display the values along the axis.</ahelp>"
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3166432\n"
+"62\n"
+"help.text"
+msgid "Automatic"
+msgstr "Automatike"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3145389\n"
+"63\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_AUTO_ORIGIN\">You must first deselect the <emph>Automatic</emph> option in order to modify the values.</ahelp>"
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3149129\n"
+"64\n"
+"help.text"
+msgid "Disable this feature if you are working with \"fixed\" values, as it does not permit automatic scaling."
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id3159206\n"
+"16\n"
+"help.text"
+msgid "Logarithmic scale"
+msgstr "Vizore llogaritmike"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3145360\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_LOGARITHM\">Specifies that you want the axis to be subdivided logarithmically.</ahelp>"
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3153956\n"
+"61\n"
+"help.text"
+msgid "Use this feature if you are working with values that differ sharply from each other. You can use logarithmic scaling to make the grid lines of the axis equidistant but have values that may increase or decrease."
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id9941404\n"
+"help.text"
+msgid "Reverse direction"
+msgstr "Drejtimi i tekstit"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id5581835\n"
+"help.text"
+msgid "<ahelp hid=\".\">Defines where the lower and where the higher values are displayed at the axis. The unchecked state is the mathematical direction.</ahelp> That means for Cartesian coordinate systems that the x-axis shows the lower values on the left and the y-axis shows the lower values at the bottom. For polar coordinate systems the mathematical angle axis direction is counterclockwise and the radial axis is from inner to outer."
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"hd_id922204\n"
+"help.text"
+msgid "Type"
+msgstr "Tipi"
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id59225\n"
+"help.text"
+msgid "<ahelp hid=\".\">For some types of axes, you can select to format an axis as text or date, or to detect the type automatically.</ahelp> For the axis type \"Date\" you can set the following options."
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id1159225\n"
+"help.text"
+msgid "Minimum and maximum value to be shown on the ends of the scale."
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id2259225\n"
+"help.text"
+msgid "<ahelp hid=\".\">Resolution can be set to show days, months, or years as interval steps.</ahelp>"
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id3359225\n"
+"help.text"
+msgid "<ahelp hid=\".\">Major interval can be set to show a certain number of days, months, or years.</ahelp>"
+msgstr ""
+
+#: 05040201.xhp
+msgctxt ""
+"05040201.xhp\n"
+"par_id4459225\n"
+"help.text"
+msgid "<ahelp hid=\".\">Minor interval can be set to show a certain number of days, months, or years.</ahelp>"
msgstr ""
#: 05040202.xhp
@@ -2481,90 +3794,203 @@ msgctxt ""
msgid "<ahelp hid=\".\">Select where to place the marks: at labels, at axis, or at axis and labels.</ahelp>"
msgstr ""
-#: 05070000.xhp
+#: 05050000.xhp
msgctxt ""
-"05070000.xhp\n"
+"05050000.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Floor"
-msgstr "Shtresë Diagrami"
+msgid "Grid"
+msgstr "Rrjet"
-#: 05070000.xhp
+#: 05050000.xhp
msgctxt ""
-"05070000.xhp\n"
-"bm_id3154346\n"
+"05050000.xhp\n"
+"bm_id3155602\n"
"help.text"
-msgid "<bookmark_value>charts; formatting floors</bookmark_value><bookmark_value>formatting; chart floors</bookmark_value>"
+msgid "<bookmark_value>grids; formatting axes</bookmark_value><bookmark_value>axes; formatting grids</bookmark_value>"
msgstr ""
-#: 05070000.xhp
+#: 05050000.xhp
msgctxt ""
-"05070000.xhp\n"
-"hd_id3154346\n"
+"05050000.xhp\n"
+"hd_id3155602\n"
"1\n"
"help.text"
-msgid "Chart Floor"
-msgstr "Shtresë Diagrami"
+msgid "<link href=\"text/schart/01/05050000.xhp\" name=\"Grid\">Grid</link>"
+msgstr ""
-#: 05070000.xhp
+#: 05050000.xhp
msgctxt ""
-"05070000.xhp\n"
-"par_id3150767\n"
+"05050000.xhp\n"
+"par_id3155764\n"
"2\n"
"help.text"
-msgid "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">Opens the<emph> Chart Floor</emph> dialog, where you can modify the properties of the chart floor. The chart floor is the lower area in 3D charts. This function is only available for 3D charts.</ahelp></variable>"
+msgid "Opens a submenu, where you select the grid you want to format."
msgstr ""
-#: 05020101.xhp
+#: 05050000.xhp
msgctxt ""
-"05020101.xhp\n"
+"05050000.xhp\n"
+"hd_id3150045\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Major Grid\">X Axis Major Grid</link>"
+msgstr ""
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3145228\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Major Grid\">Y Axis Major Grid</link>"
+msgstr ""
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3147346\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis Major Grid\">Z Axis Major Grid</link>"
+msgstr ""
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3154021\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Minor Grid\">X Axis Minor Grid</link>"
+msgstr ""
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3150307\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Minor Grid\">Y Axis Minor Grid</link>"
+msgstr ""
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3166428\n"
+"8\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis minor Grid\">Z Axis minor Grid</link>"
+msgstr ""
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3145585\n"
+"9\n"
+"help.text"
+msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"All Axis Grids\">All Axis Grids</link>"
+msgstr ""
+
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
"tit\n"
"help.text"
-msgid "Alignment"
-msgstr "Mbështetje"
+msgid "Grid"
+msgstr "Rrjet"
-#: 05020101.xhp
+#: 05050100.xhp
msgctxt ""
-"05020101.xhp\n"
-"bm_id3150793\n"
+"05050100.xhp\n"
+"bm_id3150398\n"
"help.text"
-msgid "<bookmark_value>aligning;titles in charts</bookmark_value><bookmark_value>titles;alignment (charts)</bookmark_value>"
+msgid "<bookmark_value>X axes;grid formatting</bookmark_value><bookmark_value>Y axes;grid formatting</bookmark_value><bookmark_value>Z axes; grid formatting</bookmark_value>"
msgstr ""
-#: 05020101.xhp
+#: 05050100.xhp
msgctxt ""
-"05020101.xhp\n"
-"hd_id3150793\n"
+"05050100.xhp\n"
+"hd_id3150398\n"
+"2\n"
+"help.text"
+msgid "Grid"
+msgstr "Rrjet"
+
+#: 05050100.xhp
+msgctxt ""
+"05050100.xhp\n"
+"par_id3152577\n"
"1\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020101.xhp\" name=\"Alignment\">Alignment</link>"
+msgid "<variable id=\"gitter\"><ahelp hid=\".uno:DiagramGridAll\">Opens the <emph>Grid</emph> dialog for defining grid properties.</ahelp></variable>"
msgstr ""
-#: 05020101.xhp
+#: 05060000.xhp
msgctxt ""
-"05020101.xhp\n"
-"par_id3125864\n"
+"05060000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Chart Wall"
+msgstr "Mur Diagrami"
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"bm_id3150792\n"
+"help.text"
+msgid "<bookmark_value>charts; formatting walls</bookmark_value><bookmark_value>formatting;chart walls</bookmark_value>"
+msgstr ""
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"hd_id3150792\n"
+"1\n"
+"help.text"
+msgid "Chart Wall"
+msgstr "Mur Diagrami"
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3154685\n"
"2\n"
"help.text"
-msgid "Modifies the alignment of the chart title."
-msgstr "Titull Vertikal, Tekst, Diagram"
+msgid "<variable id=\"diagramm\"><ahelp visibility=\"visible\" hid=\".uno:DiagramWall\">Opens the<emph> Chart Wall</emph> dialog, where you can modify the properties of the chart wall. The chart wall is the \"vertical\" background behind the data area of the chart.</ahelp></variable>"
+msgstr ""
-#: 05020101.xhp
+#: 05070000.xhp
msgctxt ""
-"05020101.xhp\n"
-"par_id3145748\n"
-"4\n"
+"05070000.xhp\n"
+"tit\n"
"help.text"
-msgid "Some of the options are not available for all types of labels. For example, there are different options for 2D and 3D object labels."
+msgid "Chart Floor"
+msgstr "Shtresë Diagrami"
+
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"bm_id3154346\n"
+"help.text"
+msgid "<bookmark_value>charts; formatting floors</bookmark_value><bookmark_value>formatting; chart floors</bookmark_value>"
msgstr ""
-#: 05020101.xhp
+#: 05070000.xhp
msgctxt ""
-"05020101.xhp\n"
-"par_id3150717\n"
-"3\n"
+"05070000.xhp\n"
+"hd_id3154346\n"
+"1\n"
"help.text"
-msgid "Please note that problems may arise in displaying labels if the size of your chart is too small. You can avoid this by either enlarging the view or decreasing the font size."
+msgid "Chart Floor"
+msgstr "Shtresë Diagrami"
+
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
+"par_id3150767\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"diagrammboden\"><ahelp hid=\".uno:DiagramFloor\">Opens the<emph> Chart Floor</emph> dialog, where you can modify the properties of the chart floor. The chart floor is the lower area in 3D charts. This function is only available for 3D charts.</ahelp></variable>"
msgstr ""
#: 05080000.xhp
@@ -2601,1137 +4027,1716 @@ msgctxt ""
msgid "<variable id=\"diagrammflaeche\"><ahelp visibility=\"visible\" hid=\".uno:DiagramArea\">Opens the<emph> Chart Area</emph> dialog, where you can modify the properties of the chart area. The chart area is the background behind all elements of the chart.</ahelp></variable>"
msgstr ""
-#: type_bubble.xhp
+#: 05120000.xhp
msgctxt ""
-"type_bubble.xhp\n"
+"05120000.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Type Bubble"
-msgstr "Redakto Tipin e Diagramit"
+msgid "Arrangement"
+msgstr "Rregullim"
-#: type_bubble.xhp
+#: 05120000.xhp
msgctxt ""
-"type_bubble.xhp\n"
-"bm_id2183975\n"
+"05120000.xhp\n"
+"hd_id3159153\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>bubble charts</bookmark_value> <bookmark_value>chart types;bubble</bookmark_value>"
+msgid "<link href=\"text/schart/01/05120000.xhp\" name=\"Arrangement\">Arrangement</link>"
msgstr ""
-#: type_bubble.xhp
+#: 05120000.xhp
msgctxt ""
-"type_bubble.xhp\n"
-"hd_id1970722\n"
+"05120000.xhp\n"
+"par_id3145750\n"
+"2\n"
"help.text"
-msgid "<variable id=\"type_bubble\"><link href=\"text/schart/01/type_bubble.xhp\">Chart Type Bubble</link></variable>"
+msgid "Allows you to modify the order of the data series already set in the chart."
msgstr ""
-#: type_bubble.xhp
+#: 05120000.xhp
msgctxt ""
-"type_bubble.xhp\n"
-"par_id40589\n"
+"05120000.xhp\n"
+"par_id3155411\n"
+"8\n"
"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgid "The position of the data in the data table remains unchanged. You can only choose the commands after inserting a chart in $[officename] Calc."
msgstr ""
-#: type_bubble.xhp
+#: 05120000.xhp
msgctxt ""
-"type_bubble.xhp\n"
-"hd_id0526200904491284\n"
+"05120000.xhp\n"
+"par_id3154757\n"
+"5\n"
"help.text"
-msgid "Bubble"
+msgid "This function is only available if you have data displayed in columns. It is not possible to switch to data display in rows."
msgstr ""
-#: type_bubble.xhp
+#: 05120000.xhp
msgctxt ""
-"type_bubble.xhp\n"
-"par_id0526200904491222\n"
+"05120000.xhp\n"
+"hd_id3147339\n"
+"3\n"
"help.text"
-msgid "A bubble chart shows the relations of three variables. Two variables are used for the position on the X-axis and Y-axis, while the third variable is shown as the relative size of each bubble."
+msgid "Bring Forward"
+msgstr "Sjelle Përpara"
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3149259\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\".uno:Forward\">Brings the selected data series forward (to the right).</ahelp>"
msgstr ""
-#: type_bubble.xhp
+#: 05120000.xhp
msgctxt ""
-"type_bubble.xhp\n"
-"par_id0526200906040162\n"
+"05120000.xhp\n"
+"hd_id3146316\n"
+"4\n"
"help.text"
-msgid "The data series dialog for a bubble chart has an entry to define the data range for the Bubble Sizes."
+msgid "Send Backward"
+msgstr "Dërgo prapa"
+
+#: 05120000.xhp
+msgctxt ""
+"05120000.xhp\n"
+"par_id3147001\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\".uno:Backward\">Sends the selected data series backward (to the left).</ahelp>"
msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
+"choose_chart_type.xhp\n"
"tit\n"
"help.text"
-msgid "Alignment"
-msgstr "Mbështetje"
+msgid "Choosing a Chart Type"
+msgstr "Redakto Tipin e Diagramit"
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"hd_id3149656\n"
-"1\n"
+"choose_chart_type.xhp\n"
+"hd_id9072237\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020201.xhp\" name=\"Alignment\">Alignment</link>"
+msgid "<variable id=\"choose_chart_type\"><link href=\"text/schart/01/choose_chart_type.xhp\">Choosing a Chart Type</link></variable>"
msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id3156422\n"
-"2\n"
+"choose_chart_type.xhp\n"
+"par_id7085787\n"
"help.text"
-msgid "Modifies the alignment of axes or title labels."
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id3150439\n"
-"76\n"
+"choose_chart_type.xhp\n"
+"hd_id6820886\n"
"help.text"
-msgid "Some of the options listed here are not available for all labels. For example, there are different options for 2D and 3D object labels."
+msgid "The available chart types"
+msgstr "Titulli, Skemë Organizative"
+
+#: choose_chart_type.xhp
+msgctxt ""
+"choose_chart_type.xhp\n"
+"par_id7309488\n"
+"help.text"
+msgid "Choose from the following chart types, depending on data type and intended presentation effect."
msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"hd_id3145750\n"
-"71\n"
+"choose_chart_type.xhp\n"
+"par_id4673604\n"
"help.text"
-msgid "Show labels"
-msgstr "Shto etiketat"
+msgid "<image id=\"img_id3145172\" src=\"chart2/res/columns_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_id3145172\">Icon</alt></image> and <image id=\"Graphic8\" src=\"chart2/res/bar_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id3154319\n"
-"72\n"
+"choose_chart_type.xhp\n"
+"par_id2586138\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_AXIS_LABEL:CB_AXIS_LABEL_SCHOW_DESCR\">Specifies whether to show or hide the axis labels.</ahelp>"
+msgid "<link href=\"text/schart/01/type_column_bar.xhp\">Column or Bar</link>"
msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id3147436\n"
-"75\n"
+"choose_chart_type.xhp\n"
+"par_id4343394\n"
"help.text"
-msgid "<variable id=\"sytextbeschr\"><ahelp hid=\".uno:ToggleAxisDescr\">The<emph> AxesTitle On/Off </emph>icon on the <emph>Formatting</emph> bar switches the labeling of all axes on or off.</ahelp></variable>"
+msgid "<image id=\"Graphic2\" src=\"chart2/res/pie_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"hd_id3150717\n"
-"4\n"
+"choose_chart_type.xhp\n"
+"par_id3859065\n"
"help.text"
-msgid "Rotate text"
-msgstr "Rrotullo tekstin"
+msgid "<link href=\"text/schart/01/type_pie.xhp\">Pie</link>"
+msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id3154510\n"
-"5\n"
+"choose_chart_type.xhp\n"
+"par_id292672\n"
"help.text"
-msgid "<ahelp hid=\".uno:ToggleAxisDescr\">Defines the text direction of cell contents.</ahelp> Click one of the ABCD buttons to assign the required direction."
+msgid "<image id=\"Graphic21\" src=\"chart2/res/areas_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"hd_id3150327\n"
-"50\n"
+"choose_chart_type.xhp\n"
+"par_id4043092\n"
"help.text"
-msgid "ABCD wheel"
-msgstr "Wheel Clockwise, 1 Spoke"
+msgid "<link href=\"text/schart/01/type_area.xhp\">Area</link>"
+msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id3149018\n"
-"49\n"
+"choose_chart_type.xhp\n"
+"par_id2578814\n"
"help.text"
-msgid "<ahelp hid=\"HID_SCH_ALIGNMENT_CTR_DIAL\">Clicking anywhere on the wheel defines the variable text orientation.</ahelp> The letters \"ABCD\" on the button correspond to the new setting."
+msgid "<image id=\"Graphic3\" src=\"chart2/res/nostackdirectboth_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"hd_id3154254\n"
-"51\n"
+"choose_chart_type.xhp\n"
+"par_id4660481\n"
"help.text"
-msgid "ABCD button"
-msgstr "Butoni i fotografisë"
+msgid "<link href=\"text/schart/01/type_line.xhp\">Line</link>"
+msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id3154702\n"
-"52\n"
+"choose_chart_type.xhp\n"
+"par_id3946653\n"
"help.text"
-msgid "<ahelp hid=\"HID_SCH_ALIGNMENT_STACKED\">Assigns vertical text orientation for cell contents.</ahelp>"
+msgid "<image id=\"Graphic4\" src=\"chart2/res/valueaxisdirectpoints_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id3150342\n"
-"53\n"
+"choose_chart_type.xhp\n"
+"par_id5882747\n"
"help.text"
-msgid "If you define a vertical x-axis label, the text may be cut off by the line of the x-axis."
+msgid "<link href=\"text/schart/01/type_xy.xhp\">XY (scatter)</link>"
msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"hd_id3166432\n"
-"54\n"
+"choose_chart_type.xhp\n"
+"par_id0526200904431454\n"
"help.text"
-msgid "Degrees"
-msgstr "0 shkallë"
+msgid "<image id=\"graphics1\" src=\"chart2/res/bubble_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id3150199\n"
-"55\n"
+"choose_chart_type.xhp\n"
+"par_id0526200904431497\n"
"help.text"
-msgid "<ahelp hid=\"HID_SCH_ALIGNMENT_DEGREES\">Allows you to manually enter the orientation angle.</ahelp>"
+msgid "<link href=\"text/schart/01/type_bubble.xhp\">Bubble</link>"
msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"hd_id3152985\n"
-"73\n"
+"choose_chart_type.xhp\n"
+"par_id8752403\n"
"help.text"
-msgid "Text flow"
-msgstr "Rrjedhë teksti"
+msgid "<image id=\"Graphic5\" src=\"chart2/res/net_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id3155089\n"
-"74\n"
+"choose_chart_type.xhp\n"
+"par_id8425550\n"
"help.text"
-msgid "Determines the text flow of the data label."
+msgid "<link href=\"text/schart/01/type_net.xhp\">Net</link>"
msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"hd_id3148837\n"
-"57\n"
+"choose_chart_type.xhp\n"
+"par_id1846369\n"
"help.text"
-msgid "Overlap"
-msgstr "Bllokim"
+msgid "<image id=\"Graphic6\" src=\"chart2/res/stock_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id3151240\n"
-"58\n"
+"choose_chart_type.xhp\n"
+"par_id1680654\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_AXIS_LABEL:CB_AXIS_LABEL_TEXTOVERLAP\">Specifies that the text in cells may overlap other cells.</ahelp> This can be especially useful if there is a lack of space. This option is not available with different title directions."
+msgid "<link href=\"text/schart/01/type_stock.xhp\">Stock</link>"
msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"hd_id3157982\n"
-"68\n"
+"choose_chart_type.xhp\n"
+"par_id1592150\n"
"help.text"
-msgid "Break"
-msgstr "Ndërprerje"
+msgid "<image id=\"Graphic7\" src=\"chart2/res/columnline_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr ""
-#: 05020201.xhp
+#: choose_chart_type.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id3155268\n"
-"69\n"
+"choose_chart_type.xhp\n"
+"par_id3308816\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_AXIS_LABEL:CB_AXIS_LABEL_TEXTBREAK\">Allows a text break.</ahelp>"
+msgid "<link href=\"text/schart/01/type_column_line.xhp\">Column and Line</link>"
msgstr ""
-#: 05020201.xhp
+#: smooth_line_properties.xhp
msgctxt ""
-"05020201.xhp\n"
-"hd_id3159205\n"
-"56\n"
+"smooth_line_properties.xhp\n"
+"tit\n"
"help.text"
-msgid "The following options are not available for all chart types:"
+msgid "Smooth Line Properties"
+msgstr "Vetitë e 3D objekteve"
+
+#: smooth_line_properties.xhp
+msgctxt ""
+"smooth_line_properties.xhp\n"
+"bm_id3803827\n"
+"help.text"
+msgid "<bookmark_value>curves;properties in line charts/XY charts</bookmark_value><bookmark_value>properties;smooth lines in line charts/XY charts</bookmark_value>"
msgstr ""
-#: 05020201.xhp
+#: smooth_line_properties.xhp
msgctxt ""
-"05020201.xhp\n"
-"hd_id3152872\n"
-"59\n"
+"smooth_line_properties.xhp\n"
+"hd_id3050325\n"
"help.text"
-msgid "Order"
-msgstr "Renditja"
+msgid "Smooth Line Properties"
+msgstr "Vetitë e 3D objekteve"
-#: 05020201.xhp
+#: smooth_line_properties.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id3159230\n"
-"11\n"
+"smooth_line_properties.xhp\n"
+"par_id9421979\n"
"help.text"
-msgid "The options on this tab are only available for a 2D chart, under <emph>Format - Axis - Y Axis</emph> or <emph>X Axis</emph>. In this area, you can define the alignment of the number labels on the X or Y axis."
+msgid "In a chart that displays lines (Line type or XY type), you can choose to show curves instead of straight lines. Some options control the properties of those curves."
msgstr ""
-#: 05020201.xhp
+#: smooth_line_properties.xhp
msgctxt ""
-"05020201.xhp\n"
-"hd_id3146963\n"
-"60\n"
+"smooth_line_properties.xhp\n"
+"hd_id1228370\n"
"help.text"
-msgid "Tile"
-msgstr "Pllakë"
+msgid "To change line properties"
+msgstr "Fshij deri Fillim të Rreshtit"
-#: 05020201.xhp
+#: smooth_line_properties.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id3155758\n"
-"61\n"
+"smooth_line_properties.xhp\n"
+"par_id1601611\n"
"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_SIDEBYSIDE\">Arranges numbers on the axis side by side.</ahelp>"
+msgid "Select Cubic Spline or B-Spline."
+msgstr "Vizore kubike me Shenja"
+
+#: smooth_line_properties.xhp
+msgctxt ""
+"smooth_line_properties.xhp\n"
+"par_id879848\n"
+"help.text"
+msgid "These are mathematical models that influence the display of the curves. The curves are created by joining together segments of polynomials."
msgstr ""
-#: 05020201.xhp
+#: smooth_line_properties.xhp
msgctxt ""
-"05020201.xhp\n"
-"hd_id3151195\n"
-"62\n"
+"smooth_line_properties.xhp\n"
+"par_id3464461\n"
"help.text"
-msgid "Stagger odd"
-msgstr "Shkallëzime të rastit"
+msgid "Optionally set the resolution. A higher value leads to a smoother line."
+msgstr ""
-#: 05020201.xhp
+#: smooth_line_properties.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id3145114\n"
-"63\n"
+"smooth_line_properties.xhp\n"
+"par_id6998809\n"
"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_UPDOWN\">Staggers numbers on the axis, even numbers lower than odd numbers.</ahelp>"
+msgid "For B-spline lines optionally set the degree of the polynomials."
msgstr ""
-#: 05020201.xhp
+#: smooth_line_properties.xhp
msgctxt ""
-"05020201.xhp\n"
-"hd_id3147250\n"
-"64\n"
+"smooth_line_properties.xhp\n"
+"par_id3424481\n"
"help.text"
-msgid "Stagger even"
-msgstr "Shkallëzime të njëtrajtshme"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Apply a line curve model.</ahelp>"
+msgstr ""
-#: 05020201.xhp
+#: smooth_line_properties.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id3153958\n"
-"65\n"
+"smooth_line_properties.xhp\n"
+"par_id2320932\n"
"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_DOWNUP\">Stagger numbers on the axes, odd numbers lower than even numbers.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the resolution.</ahelp>"
msgstr ""
-#: 05020201.xhp
+#: smooth_line_properties.xhp
msgctxt ""
-"05020201.xhp\n"
-"hd_id3147301\n"
-"66\n"
+"smooth_line_properties.xhp\n"
+"par_id8638874\n"
"help.text"
-msgid "Automatic"
-msgstr "Automatike"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the degree of the polynomials.</ahelp>"
+msgstr ""
-#: 05020201.xhp
+#: stepped_line_properties.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id3147404\n"
-"67\n"
+"stepped_line_properties.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_AXIS_LABEL:RB_AXIS_LABEL_AUTOORDER\">Automatically arranges numbers on the axis.</ahelp>"
+msgid "Smooth Line Properties"
+msgstr "Vetitë e 3D objekteve"
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"bm_id1467210\n"
+"help.text"
+msgid "<bookmark_value>curves;properties in line charts/XY charts</bookmark_value><bookmark_value>properties;stepped lines in line charts/XY charts</bookmark_value>"
msgstr ""
-#: 05020201.xhp
+#: stepped_line_properties.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id3149353\n"
-"70\n"
+"stepped_line_properties.xhp\n"
+"hd_id5005971\n"
"help.text"
-msgid "Problems may arise in displaying labels if the size of your chart is too small. You can avoid this by either enlarging the view or decreasing the font size."
+msgid "Stepped Line Properties"
msgstr ""
-#: 05020201.xhp
+#: stepped_line_properties.xhp
msgctxt ""
-"05020201.xhp\n"
-"hd_id1106200812235146\n"
+"stepped_line_properties.xhp\n"
+"par_id9485625\n"
"help.text"
-msgid "Text Direction"
-msgstr "Drejtimi i tekstit"
+msgid "In a chart that displays lines (Line type or XY type), you can choose to connect the points with steps instead of straight lines. Some options control the properties of those steps."
+msgstr ""
-#: 05020201.xhp
+#: stepped_line_properties.xhp
msgctxt ""
-"05020201.xhp\n"
-"par_id1106200812235271\n"
+"stepped_line_properties.xhp\n"
+"hd_id9438276\n"
"help.text"
-msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
+msgid "Different step types"
msgstr ""
-#: 05010200.xhp
+#: stepped_line_properties.xhp
msgctxt ""
-"05010200.xhp\n"
-"tit\n"
+"stepped_line_properties.xhp\n"
+"alt_id9078573\n"
"help.text"
-msgid "Data Series"
-msgstr "Të dhënat serike"
+msgid "Start step icon"
+msgstr ""
-#: 05010200.xhp
+#: stepped_line_properties.xhp
msgctxt ""
-"05010200.xhp\n"
-"hd_id3150449\n"
-"1\n"
+"stepped_line_properties.xhp\n"
+"par_id9047365\n"
"help.text"
-msgid "<link href=\"text/schart/01/05010200.xhp\" name=\"Data Series\">Data Series</link>"
+msgid "<ahelp hid=\"modules/schart/ui/steppedlinesdlg/step_start_rb\">Start with horizontal line and step up vertically at the end.</ahelp>"
msgstr ""
-#: 05010200.xhp
+#: stepped_line_properties.xhp
msgctxt ""
-"05010200.xhp\n"
-"par_id3145750\n"
-"2\n"
+"stepped_line_properties.xhp\n"
+"alt_id05495673\n"
"help.text"
-msgid "Use this to change the properties of a selected data series. This dialog appears when one data series is selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts."
+msgid "End step icon"
msgstr ""
-#: 05010200.xhp
+#: stepped_line_properties.xhp
msgctxt ""
-"05010200.xhp\n"
-"par_id3154015\n"
-"4\n"
+"stepped_line_properties.xhp\n"
+"par_id439028\n"
"help.text"
-msgid "Any changes made here affect the entire data series. For example, if you change the color, all elements belonging to this data series will change color."
+msgid "<ahelp hid=\"modules/schart/ui/steppedlinesdlg/step_center_x_rb\">Start to step up vertically and end with horizontal line.</ahelp>"
msgstr ""
-#: 05010200.xhp
+#: stepped_line_properties.xhp
msgctxt ""
-"05010200.xhp\n"
-"hd_id3146916\n"
-"3\n"
+"stepped_line_properties.xhp\n"
+"alt_id9673426\n"
"help.text"
-msgid "<link href=\"text/schart/01/04050000.xhp\" name=\"Y Error Bars\">Y Error Bars</link>"
+msgid "Center X icon"
msgstr ""
-#: 05020100.xhp
+#: stepped_line_properties.xhp
msgctxt ""
-"05020100.xhp\n"
+"stepped_line_properties.xhp\n"
+"par_id4069483\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/steppedlinesdlg/step_end_rb\">Start with horizontal line, step up vertically in the middle of the X values and end with horizontal line.</ahelp>"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"alt_id56635427\n"
+"help.text"
+msgid "Center Y icon"
+msgstr ""
+
+#: stepped_line_properties.xhp
+msgctxt ""
+"stepped_line_properties.xhp\n"
+"par_id0679473\n"
+"help.text"
+msgid "<ahelp hid=\"modules/schart/ui/steppedlinesdlg/step_center_y_rb\">Start to step up vertically to the middle of the Y values, draw a horizonal line and finish by stepping vertically to the end.</ahelp>"
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
"tit\n"
"help.text"
-msgid "Title"
-msgstr "Titulli"
+msgid "3D View"
+msgstr "Pamja 3D"
-#: 05020100.xhp
+#: three_d_view.xhp
msgctxt ""
-"05020100.xhp\n"
-"bm_id3150769\n"
+"three_d_view.xhp\n"
+"bm_id3156423\n"
"help.text"
-msgid "<bookmark_value>editing; titles</bookmark_value>"
+msgid "<bookmark_value>3D charts</bookmark_value> <bookmark_value>charts; 3D views</bookmark_value> <bookmark_value>illumination; 3D charts</bookmark_value>"
msgstr ""
-#: 05020100.xhp
+#: three_d_view.xhp
msgctxt ""
-"05020100.xhp\n"
-"hd_id3150769\n"
-"2\n"
+"three_d_view.xhp\n"
+"hd_id3464461\n"
"help.text"
-msgid "Title"
-msgstr "Titulli"
+msgid "<variable id=\"three_d_view\"><link href=\"text/schart/01/three_d_view.xhp\">3D View</link></variable>"
+msgstr ""
-#: 05020100.xhp
+#: three_d_view.xhp
msgctxt ""
-"05020100.xhp\n"
-"par_id3149666\n"
-"1\n"
+"three_d_view.xhp\n"
+"par_id6998809\n"
"help.text"
-msgid "<variable id=\"titel\"><ahelp hid=\".uno:ZTitle\">Modifies the properties of the selected title.</ahelp></variable>"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> or in the context menu of a chart you can choose a chart type. <ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to edit the properties of a three dimensional view for Column, Bar, Pie, and Area charts. For Line and XY (Scatter) charts you can see 3D lines.</ahelp>"
msgstr ""
-#: 05020100.xhp
+#: three_d_view.xhp
msgctxt ""
-"05020100.xhp\n"
-"hd_id3149378\n"
-"3\n"
+"three_d_view.xhp\n"
+"par_id6942045\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgid "The chart preview responds to the new settings that you enter in the dialog."
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"tit\n"
+"three_d_view.xhp\n"
+"par_id3806878\n"
"help.text"
-msgid "Choosing a Chart Type"
-msgstr "Redakto Tipin e Diagramit"
+msgid "When you leave the dialog with OK, the settings are applied permanently."
+msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"hd_id9072237\n"
+"three_d_view.xhp\n"
+"par_id130619\n"
"help.text"
-msgid "<variable id=\"choose_chart_type\"><link href=\"text/schart/01/choose_chart_type.xhp\">Choosing a Chart Type</link></variable>"
+msgid "When you leave the dialog with Cancel or Escape, the chart returns to the state when you opened the dialog."
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id7085787\n"
+"three_d_view.xhp\n"
+"par_id8081911\n"
"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgid "For a 3D chart you can choose <item type=\"menuitem\">Format - 3D View</item> to set perspective, appearance and illumination."
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"hd_id6820886\n"
+"three_d_view.xhp\n"
+"hd_id2924283\n"
"help.text"
-msgid "The available chart types"
-msgstr "Titulli, Skemë Organizative"
+msgid "Perspective"
+msgstr "Perspektivë"
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id7309488\n"
+"three_d_view.xhp\n"
+"par_id5781731\n"
"help.text"
-msgid "Choose from the following chart types, depending on data type and intended presentation effect."
+msgid "Enter the values for rotation of the chart on the three axes and for a perspective view."
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id4673604\n"
+"three_d_view.xhp\n"
+"par_id9999694\n"
"help.text"
-msgid "<image id=\"img_id3145172\" src=\"chart2/res/columns_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_id3145172\">Icon</alt></image> and <image id=\"Graphic8\" src=\"chart2/res/bar_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgid "Set all angles to 0 for a front view of the chart. Pie charts and donut charts are shown as circles."
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id2586138\n"
+"three_d_view.xhp\n"
+"par_id2861720\n"
"help.text"
-msgid "<link href=\"text/schart/01/type_column_bar.xhp\">Column or Bar</link>"
+msgid "With Right-angled axes enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders."
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id4343394\n"
+"three_d_view.xhp\n"
+"par_id2216559\n"
"help.text"
-msgid "<image id=\"Graphic2\" src=\"chart2/res/pie_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgid "An x value of 90, with y and z set to 0, provides a view from top down to the chart. With x set to -90, you see the bottom of the chart."
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id3859065\n"
+"three_d_view.xhp\n"
+"par_id7869502\n"
"help.text"
-msgid "<link href=\"text/schart/01/type_pie.xhp\">Pie</link>"
+msgid "The rotations are applied in the order first x, then y, last z."
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id292672\n"
+"three_d_view.xhp\n"
+"par_id9852900\n"
"help.text"
-msgid "<image id=\"Graphic21\" src=\"chart2/res/areas_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgid "When shading is enabled and you rotate a chart, the lights are rotated as if they are fixed to the chart."
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id4043092\n"
+"three_d_view.xhp\n"
+"par_id2578203\n"
"help.text"
-msgid "<link href=\"text/schart/01/type_area.xhp\">Area</link>"
+msgid "The rotation axes always relate to the page, not to the chart's axes. This is different from some other chart programs."
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id2578814\n"
+"three_d_view.xhp\n"
+"par_id4923245\n"
"help.text"
-msgid "<image id=\"Graphic3\" src=\"chart2/res/nostackdirectboth_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgid "Select the Perspective check box to view the chart in central perspective as through a camera lens instead of using a parallel projection."
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id4660481\n"
+"three_d_view.xhp\n"
+"par_id3416547\n"
"help.text"
-msgid "<link href=\"text/schart/01/type_line.xhp\">Line</link>"
+msgid "Set the focus length with the spin button. 100% gives a perspective view where a far edge in the chart looks approximately half as big as a near edge."
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id3946653\n"
+"three_d_view.xhp\n"
+"par_id3791924\n"
"help.text"
-msgid "<image id=\"Graphic4\" src=\"chart2/res/valueaxisdirectpoints_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgid "Older versions of %PRODUCTNAME cannot display the percentage of perspective the same way as the current version."
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id5882747\n"
+"three_d_view.xhp\n"
+"par_id7623828\n"
"help.text"
-msgid "<link href=\"text/schart/01/type_xy.xhp\">XY (scatter)</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">If Right-angled axes is enabled, you can rotate the chart contents only in X and Y direction, that is, parallel to the chart borders. Right-angled axes is enabled by default for newly created 3D charts. Pie and Donut charts do not support right-angled axes.</ahelp>"
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id0526200904431454\n"
+"three_d_view.xhp\n"
+"par_id4721823\n"
"help.text"
-msgid "<image id=\"graphics1\" src=\"chart2/res/bubble_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the x axis. The preview responds to the new settings.</ahelp>"
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id0526200904431497\n"
+"three_d_view.xhp\n"
+"par_id5806756\n"
"help.text"
-msgid "<link href=\"text/schart/01/type_bubble.xhp\">Bubble</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the y axis. The preview responds to the new settings.</ahelp>"
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id8752403\n"
+"three_d_view.xhp\n"
+"par_id8915372\n"
"help.text"
-msgid "<image id=\"Graphic5\" src=\"chart2/res/net_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the rotation of the chart on the z axis. The preview responds to the new settings.</ahelp>"
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id8425550\n"
+"three_d_view.xhp\n"
+"par_id6070436\n"
"help.text"
-msgid "<link href=\"text/schart/01/type_net.xhp\">Net</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Mark the Perspective box to view the chart as through a camera lens. Use the spin button to set the percentage. With a high percentage nearer objects look bigger than more distant objects.</ahelp>"
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id1846369\n"
+"three_d_view.xhp\n"
+"hd_id7564012\n"
"help.text"
-msgid "<image id=\"Graphic6\" src=\"chart2/res/stock_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgid "Appearance"
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id1680654\n"
+"three_d_view.xhp\n"
+"par_id1186254\n"
"help.text"
-msgid "<link href=\"text/schart/01/type_stock.xhp\">Stock</link>"
+msgid "Select a scheme from the list box."
+msgstr "Zgjidh skemën e tastierës nga lista e arkitekturave"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id7432477\n"
+"help.text"
+msgid "By selecting a scheme, the check boxes and the light sources are set accordingly."
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id1592150\n"
+"three_d_view.xhp\n"
+"par_id7141026\n"
"help.text"
-msgid "<image id=\"Graphic7\" src=\"chart2/res/columnline_52x60.png\" width=\"0.6252in\" height=\"0.5417in\"><alt id=\"alt_\">Icon</alt></image>"
+msgid "If you mark or unmark a combination of check boxes that is not given by the Realistic or Simple scheme, you create a Custom scheme."
msgstr ""
-#: choose_chart_type.xhp
+#: three_d_view.xhp
msgctxt ""
-"choose_chart_type.xhp\n"
-"par_id3308816\n"
+"three_d_view.xhp\n"
+"par_id1579027\n"
"help.text"
-msgid "<link href=\"text/schart/01/type_column_line.xhp\">Column and Line</link>"
+msgid "Mark <emph>Shading</emph> to use the Gouraud method for rendering the surface, otherwise a flat method is used."
msgstr ""
-#: type_line.xhp
+#: three_d_view.xhp
msgctxt ""
-"type_line.xhp\n"
+"three_d_view.xhp\n"
+"par_id5624561\n"
+"help.text"
+msgid "The flat method sets a single color and brightness for each polygon. The edges are visible, soft gradients and spot lights are not possible."
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id5901058\n"
+"help.text"
+msgid "The Gouraud method applies gradients for a smoother, more realistic look."
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id8469191\n"
+"help.text"
+msgid "Mark <emph>Object Borders</emph> to draw lines along the edges."
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id4407483\n"
+"help.text"
+msgid "Mark <emph>Rounded Edges</emph> to smooth the edges of box shapes."
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id8531449\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a scheme from the list box, or click any of the check boxes below.</ahelp>"
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id9183935\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies Gouraud shading if marked, or flat shading if unmarked.</ahelp>"
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id946684\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows borders around the areas by setting the line style to Solid.</ahelp>"
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id9607226\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Edges are rounded by 5%.</ahelp>"
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"hd_id1939451\n"
+"help.text"
+msgid "Illumination"
+msgstr "Ndriçimi"
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id9038972\n"
+"help.text"
+msgid "Set the light sources for the 3D view."
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id6531266\n"
+"help.text"
+msgid "Click any of the eight buttons to switch a directed light source on or off."
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id6173894\n"
+"help.text"
+msgid "By default, the second light source is switched on. It is the first of seven \"normal\", uniform light sources. The light source number one projects a specular light with highlights."
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id2761314\n"
+"help.text"
+msgid "For the selected light source, you can then choose a color and intensity in the list box just below the eight buttons. The brightness values of all lights are added, so use dark colors when you enable multiple lights."
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id3912778\n"
+"help.text"
+msgid "The small preview inside this tab page has two sliders to set the vertical and horizontal position of the selected light source. The light source always aims to the middle of the object."
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id3163853\n"
+"help.text"
+msgid "The button in the corner of the small preview switches the internal illumination model between a sphere and a cube."
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id121158\n"
+"help.text"
+msgid "Use the Ambient light list box to define the ambient light which shines with a uniform intensity from all directions."
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id2423780\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Drag the right slider to set the vertical height and direction of the selected light source.</ahelp>"
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id2569658\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Drag the bottom slider to set the horizontal position and direction of the selected light source.</ahelp>"
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id6394238\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to switch between an illumination model of a sphere or a cube.</ahelp>"
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id533768\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to enable or disable the specular light source with highlights.</ahelp>"
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id7214270\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to enable or disable the uniform light source.</ahelp>"
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id2186346\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the selected light source.</ahelp>"
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id1331217\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>"
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id393993\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color for the ambient light.</ahelp>"
+msgstr ""
+
+#: three_d_view.xhp
+msgctxt ""
+"three_d_view.xhp\n"
+"par_id5871761\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a color using the color dialog.</ahelp>"
+msgstr ""
+
+#: type_area.xhp
+msgctxt ""
+"type_area.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Type Line"
+msgid "Chart Type Area"
+msgstr "Redakto Hapësiren e Diagramit"
+
+#: type_area.xhp
+msgctxt ""
+"type_area.xhp\n"
+"bm_id4130680\n"
+"help.text"
+msgid "<bookmark_value>area charts</bookmark_value><bookmark_value>chart types;area</bookmark_value>"
+msgstr ""
+
+#: type_area.xhp
+msgctxt ""
+"type_area.xhp\n"
+"hd_id310678\n"
+"help.text"
+msgid "<variable id=\"type_area\"><link href=\"text/schart/01/type_area.xhp\">Chart Type Area</link></variable>"
+msgstr ""
+
+#: type_area.xhp
+msgctxt ""
+"type_area.xhp\n"
+"par_id916776\n"
+"help.text"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgstr ""
+
+#: type_area.xhp
+msgctxt ""
+"type_area.xhp\n"
+"hd_id961943\n"
+"help.text"
+msgid "Area"
+msgstr "Hapësira"
+
+#: type_area.xhp
+msgctxt ""
+"type_area.xhp\n"
+"par_id631733\n"
+"help.text"
+msgid "An area chart shows values as points on the y axis. The x axis shows categories. The y values of each data series are connected by a line. The area between each two lines is filled with a color. The area chart's focus is to emphasize the changes from one category to the next."
+msgstr ""
+
+#: type_area.xhp
+msgctxt ""
+"type_area.xhp\n"
+"par_id7811822\n"
+"help.text"
+msgid "Normal - this subtype plots all values as absolute y values. It first plots the area of the last column in the data range, then the next to last, and so on, and finally the first column of data is drawn. Thus, if the values in the first column are higher than other values, the last drawn area will hide the other areas."
+msgstr ""
+
+#: type_area.xhp
+msgctxt ""
+"type_area.xhp\n"
+"par_id3640247\n"
+"help.text"
+msgid "Stacked - this subtypes plots values cumulatively stacked on each other. It ensures that all values are visible, and no data set is hidden by others. However, the y values no longer represent absolute values, except for the last column which is drawn at the bottom of the stacked areas."
+msgstr ""
+
+#: type_area.xhp
+msgctxt ""
+"type_area.xhp\n"
+"par_id4585100\n"
+"help.text"
+msgid "Percent - this subtype plots values cumulatively stacked on each other and scaled as percentage of the category total."
+msgstr ""
+
+#: type_bubble.xhp
+msgctxt ""
+"type_bubble.xhp\n"
+"tit\n"
+"help.text"
+msgid "Chart Type Bubble"
msgstr "Redakto Tipin e Diagramit"
-#: type_line.xhp
+#: type_bubble.xhp
msgctxt ""
-"type_line.xhp\n"
-"bm_id2187566\n"
+"type_bubble.xhp\n"
+"bm_id2183975\n"
"help.text"
-msgid "<bookmark_value>line charts</bookmark_value><bookmark_value>chart types;line</bookmark_value>"
+msgid "<bookmark_value>bubble charts</bookmark_value> <bookmark_value>chart types;bubble</bookmark_value>"
msgstr ""
-#: type_line.xhp
+#: type_bubble.xhp
msgctxt ""
-"type_line.xhp\n"
-"hd_id9422894\n"
+"type_bubble.xhp\n"
+"hd_id1970722\n"
"help.text"
-msgid "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Chart Type Line</link></variable>"
+msgid "<variable id=\"type_bubble\"><link href=\"text/schart/01/type_bubble.xhp\">Chart Type Bubble</link></variable>"
msgstr ""
-#: type_line.xhp
+#: type_bubble.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id389721\n"
+"type_bubble.xhp\n"
+"par_id40589\n"
"help.text"
msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr ""
-#: type_line.xhp
+#: type_bubble.xhp
msgctxt ""
-"type_line.xhp\n"
-"hd_id9826349\n"
+"type_bubble.xhp\n"
+"hd_id0526200904491284\n"
"help.text"
-msgid "Line"
-msgstr "Rreshti"
+msgid "Bubble"
+msgstr ""
-#: type_line.xhp
+#: type_bubble.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id2334665\n"
+"type_bubble.xhp\n"
+"par_id0526200904491222\n"
"help.text"
-msgid "A line chart shows values as points on the y axis. The x axis shows categories. The y values of each data series can be connected by a line."
+msgid "A bubble chart shows the relations of three variables. Two variables are used for the position on the X-axis and Y-axis, while the third variable is shown as the relative size of each bubble."
msgstr ""
-#: type_line.xhp
+#: type_bubble.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id8956572\n"
+"type_bubble.xhp\n"
+"par_id0526200906040162\n"
"help.text"
-msgid "Points only - this subtype plots only points."
+msgid "The data series dialog for a bubble chart has an entry to define the data range for the Bubble Sizes."
msgstr ""
-#: type_line.xhp
+#: type_column_bar.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id500808\n"
+"type_column_bar.xhp\n"
+"tit\n"
"help.text"
-msgid "Points and lines - this subtype plots points and connects points of the same data series by a line."
+msgid "Chart Type Column and Bar"
msgstr ""
-#: type_line.xhp
+#: type_column_bar.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id8366649\n"
+"type_column_bar.xhp\n"
+"bm_id4919583\n"
"help.text"
-msgid "Lines only - this subtype plots only lines."
+msgid "<bookmark_value>column charts</bookmark_value><bookmark_value>bar charts</bookmark_value><bookmark_value>chart types;column and bar</bookmark_value>"
msgstr ""
-#: type_line.xhp
+#: type_column_bar.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id476393\n"
+"type_column_bar.xhp\n"
+"hd_id649433\n"
"help.text"
-msgid "3D lines - this subtype connects points of the same data series by a 3D line."
+msgid "<variable id=\"type_column_bar\"><link href=\"text/schart/01/type_column_bar.xhp\">Chart Type Column and Bar</link></variable>"
msgstr ""
-#: type_line.xhp
+#: type_column_bar.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id2655720\n"
+"type_column_bar.xhp\n"
+"par_id3430585\n"
"help.text"
-msgid "Mark <emph>Stack series</emph> to arrange the points' y values cumulative above each other. The y values no longer represent absolute values, except for the first column which is drawn at the bottom of the stacked points. If you select <emph>Percent</emph>, the y values are scaled as percentage of the category total."
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr ""
-#: type_line.xhp
+#: type_column_bar.xhp
msgctxt ""
-"type_line.xhp\n"
-"par_id3682058\n"
+"type_column_bar.xhp\n"
+"hd_id9826960\n"
+"help.text"
+msgid "Column"
+msgstr "Kolonë"
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id2244026\n"
"help.text"
-msgid "Mark <emph>Smooth lines</emph> to draw curves through the points instead of straight lines. Click <emph>Properties</emph> for a <link href=\"text/schart/01/smooth_line_properties.xhp\">dialog</link> to change the curves' properties."
+msgid "This type shows a bar chart or bar graph with vertical bars. The height of each bar is proportional to its value. The x axis shows categories. The y axis shows the value for each category."
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_bar.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
+"type_column_bar.xhp\n"
+"par_id1281167\n"
+"help.text"
+msgid "Normal - this subtype shows all data values belonging to a category next to each other. Main focus is on the individual absolute values, compared to every other value."
+msgstr ""
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id3249000\n"
+"help.text"
+msgid "Stacked - this subtype shows the data values of each category on top of each other. Main focus is the overall category value and the individual contribution of each value within its category."
+msgstr ""
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id6968901\n"
+"help.text"
+msgid "Percent - this subtype shows the relative percentage of each data value with regard to the total of its category. Main focus is the relative contribution of each value to the category's total."
+msgstr ""
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id2224494\n"
+"help.text"
+msgid "You can enable a <link href=\"text/schart/01/three_d_view.xhp\">3D view</link> of the data values. The \"realistic\" scheme tries to give the best 3D look. The \"simple\" scheme tries to mimic the chart view of other Office products."
+msgstr ""
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id7359233\n"
+"help.text"
+msgid "For 3D charts, you can select the shape of each data value from Box, Cylinder, Cone, and Pyramid."
+msgstr ""
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"hd_id955839\n"
+"help.text"
+msgid "Bar"
+msgstr "Shiriti h"
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id6596881\n"
+"help.text"
+msgid "This type shows a bar chart or bar graph with horizontal bars. The length of each bar is proportional to its value. The y axis shows categories. The x axis shows the value for each category."
+msgstr ""
+
+#: type_column_bar.xhp
+msgctxt ""
+"type_column_bar.xhp\n"
+"par_id8750572\n"
+"help.text"
+msgid "The subtypes are the same as for the Column type."
+msgstr ""
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
"tit\n"
"help.text"
-msgid "Chart Wizard - Data Series"
-msgstr "VetëMbush Seritë e të Dhënave: automatik"
+msgid "Chart Type Column and Line"
+msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"bm_id8641621\n"
+"type_column_line.xhp\n"
+"bm_id5976744\n"
"help.text"
-msgid "<bookmark_value>order of chart data</bookmark_value><bookmark_value>data series</bookmark_value>"
+msgid "<bookmark_value>column and line charts</bookmark_value><bookmark_value>chart types;column and line</bookmark_value><bookmark_value>combination charts</bookmark_value>"
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"hd_id6124149\n"
+"type_column_line.xhp\n"
+"hd_id8596453\n"
"help.text"
-msgid "<variable id=\"wiz_data_series\"><link href=\"text/schart/01/wiz_data_series.xhp\">Chart Wizard - Data Series</link></variable>"
+msgid "<variable id=\"type_column_line\"><link href=\"text/schart/01/type_column_line.xhp\">Chart Type Column and Line</link></variable>"
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id9651478\n"
+"type_column_line.xhp\n"
+"par_id4818567\n"
"help.text"
-msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can change the source range of all data series separately, including their labels. You can also change the range of the categories. You can first select the data range on the Data Range page and then remove unnecessary data series or add data series from other cells here."
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id6326487\n"
+"type_column_line.xhp\n"
+"hd_id2451551\n"
"help.text"
-msgid "If there seem to be too many options on this page, just define the data range on the Chart Wizard - Data Range page and skip this page."
+msgid "Column and Line"
+msgstr "Thyerjet e faqes dhe kolonës"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id3101901\n"
+"help.text"
+msgid "A Column and Line chart is a combination of a <link href=\"text/schart/01/type_column_bar.xhp\">Column chart</link> with a <link href=\"text/schart/01/type_line.xhp\">Line chart</link>."
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id686361\n"
+"type_column_line.xhp\n"
+"par_id7910397\n"
"help.text"
-msgid "This dialog is only available for charts based on a Calc or Writer table."
+msgid "Select one of the variants"
+msgstr "Zgjedh njërin nga opcionet e mëposhtme:"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id5244300\n"
+"help.text"
+msgid "Columns and Lines. The rectangles of the column data series are drawn side by side so that you can easily compare their values."
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"hd_id9241615\n"
+"type_column_line.xhp\n"
+"par_id7163609\n"
+"help.text"
+msgid "Stacked Columns and Lines. The rectangles of the column data series are drawn stacked above each other, so that the height of a column visualizes the sum of the data values."
+msgstr ""
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id1842097\n"
+"help.text"
+msgid "You can insert a second y-axis with <link href=\"text/schart/01/04040000.xhp\">Insert - Axes</link> after you finish the wizard."
+msgstr ""
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"hd_id8297677\n"
+"help.text"
+msgid "To specify a data range"
+msgstr "Modifiko intervalin e të dhënave për grafikon"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id8871120\n"
+"help.text"
+msgid "The leftmost columns (or the top rows) of the selected data range provide the data that are shown as Columns objects. The other columns or rows of the data range provide the data for the Lines objects. You can change this assignment in the <emph>Data Series</emph> dialog."
+msgstr ""
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id2952055\n"
+"help.text"
+msgid "Select the data range."
+msgstr "~Intervali i të dhënave burimore"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id594500\n"
+"help.text"
+msgid "Click one of the options for data series in rows or in columns."
+msgstr ""
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id1944944\n"
+"help.text"
+msgid "Check whether the data range has labels in the first row or in the first column or both."
+msgstr ""
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"hd_id6667683\n"
"help.text"
msgid "Organizing data series"
msgstr "Të Dhënat Serike $(ROW)"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id7159337\n"
+"type_column_line.xhp\n"
+"par_id7616809\n"
"help.text"
msgid "In the Data Series list box you see a list of all data series in the current chart."
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id4921720\n"
+"type_column_line.xhp\n"
+"par_id9770195\n"
+"help.text"
+msgid "The column data series are positioned at the top of the list, the line data series at the bottom of the list."
+msgstr ""
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id1446272\n"
"help.text"
msgid "To organize the data series, select an entry in the list."
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id6627094\n"
+"type_column_line.xhp\n"
+"par_id3779717\n"
"help.text"
msgid "Click Add to add another data series below the selected entry. The new data series has the same type as the selected entry."
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id2926419\n"
+"type_column_line.xhp\n"
+"par_id5056611\n"
"help.text"
msgid "Click Remove to remove the selected entry from the Data Series list."
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id4443800\n"
+"type_column_line.xhp\n"
+"par_id7786492\n"
"help.text"
-msgid "Use the Up and Down arrow buttons to move the selected entry in the list up or down. This does not change the order in the data source table, but changes only the arrangement in the chart."
+msgid "Use the Up and Down arrow buttons to move the selected entry in the list up or down. This way you can convert a Column data series to a List data series and back. This does not change the order in the data source table, but changes only the arrangement in the chart."
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"hd_id9777520\n"
+"type_column_line.xhp\n"
+"hd_id265816\n"
"help.text"
msgid "Editing data series"
msgstr "Të Dhënat Serike $(ROW)"
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id1474654\n"
+"type_column_line.xhp\n"
+"par_id6768700\n"
"help.text"
msgid "Click an entry in the list to view and edit the properties for that entry."
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id4855189\n"
+"type_column_line.xhp\n"
+"par_id1924497\n"
"help.text"
msgid "In the Data Ranges list box you see the role names and cell ranges of the data series components."
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id9475081\n"
+"type_column_line.xhp\n"
+"par_id5081942\n"
"help.text"
msgid "Click an entry, then edit the contents in the text box below."
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id4695272\n"
+"type_column_line.xhp\n"
+"par_id2958464\n"
"help.text"
msgid "The label next to the text box states the currently selected role."
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id3931699\n"
+"type_column_line.xhp\n"
+"par_id883816\n"
"help.text"
msgid "Enter the range or click <emph>Select data range</emph> to minimize the dialog and select the range with the mouse."
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id8626667\n"
+"type_column_line.xhp\n"
+"par_id5091708\n"
"help.text"
-msgid "If you want a data range of multiple cell areas that are not next to each other, enter the first range, then manually add a semicolon at the end of the text box, then enter the other ranges. Use a semicolon as delimiter between ranges."
+msgid "The range for a data role, like Y-Values, must not include a label cell."
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id5971556\n"
+"type_column_line.xhp\n"
+"hd_id974456\n"
"help.text"
-msgid "The range for a data role, like Y-Values, must not include a label cell."
+msgid "Editing categories or data labels"
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"hd_id7622608\n"
+"type_column_line.xhp\n"
+"par_id2767113\n"
"help.text"
-msgid "Editing categories or data labels"
+msgid "Enter or select a cell range that will be used as text for categories or data labels."
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id9222693\n"
+"type_column_line.xhp\n"
+"par_id301828\n"
"help.text"
-msgid "Enter or select a cell range that will be used as text for categories or data labels."
+msgid "The values in the Categories range will be shown as labels on the x axis."
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id9500106\n"
+"type_column_line.xhp\n"
+"hd_id8996246\n"
"help.text"
-msgid "Depending on the chart type, the texts are shown on the X axis or as data labels."
+msgid "Inserting chart elements"
+msgstr "Grumbulli vertikal (2 elemente)"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id5729544\n"
+"help.text"
+msgid "Use the Chart Elements page of the Chart Wizard to insert any of the following elements:"
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id5201879\n"
+"type_column_line.xhp\n"
+"par_id2932828\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows a list of all data series in the chart. Click an entry to view and edit that data series. Click <emph>Add</emph> to insert a new series into the list after the selected entry.</ahelp>"
+msgid "Chart titles"
+msgstr "~Të gjithë Titujt..."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id9449446\n"
+"help.text"
+msgid "Legend"
+msgstr "Legjendë"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id8122196\n"
+"help.text"
+msgid "Visible grid lines"
+msgstr "Rrjeta (vetëm linjat)"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id9909665\n"
+"help.text"
+msgid "For additional elements use the Insert menu of the chart in edit mode. There you can define the following elements:"
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id2571794\n"
+"type_column_line.xhp\n"
+"par_id9141819\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows all the data ranges used by the data series that is selected in the Data Series list box. Each data range shows the role name and the source range address.</ahelp>"
+msgid "Secondary axes"
+msgstr "~Të gjithë Boshtet..."
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id6354869\n"
+"help.text"
+msgid "Minor grids"
+msgstr "Fut rrjetat e kordinatave"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id2685323\n"
+"help.text"
+msgid "Data labels"
+msgstr "Emërtimi i të dhënave"
+
+#: type_column_line.xhp
+msgctxt ""
+"type_column_line.xhp\n"
+"par_id6042664\n"
+"help.text"
+msgid "Statistics, for example mean values, y error bars and trend lines"
msgstr ""
-#: wiz_data_series.xhp
+#: type_column_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id2254402\n"
+"type_column_line.xhp\n"
+"par_id7889950\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
+msgid "To set different data labels for each data series, use the properties dialog of the data series."
msgstr ""
-#: wiz_data_series.xhp
+#: type_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id2419507\n"
+"type_line.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
+msgid "Chart Type Line"
+msgstr "Redakto Tipin e Diagramit"
+
+#: type_line.xhp
+msgctxt ""
+"type_line.xhp\n"
+"bm_id2187566\n"
+"help.text"
+msgid "<bookmark_value>line charts</bookmark_value><bookmark_value>chart types;line</bookmark_value>"
msgstr ""
-#: wiz_data_series.xhp
+#: type_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id1091647\n"
+"type_line.xhp\n"
+"hd_id9422894\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Adds a new entry below the current entry in the Data Series list. If an entry is selected, the new data series gets the same chart type.</ahelp>"
+msgid "<variable id=\"type_line\"><link href=\"text/schart/01/type_line.xhp\">Chart Type Line</link></variable>"
msgstr ""
-#: wiz_data_series.xhp
+#: type_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id8831446\n"
+"type_line.xhp\n"
+"par_id389721\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Removes the selected entry from the Data Series list.</ahelp>"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr ""
-#: wiz_data_series.xhp
+#: type_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id7022309\n"
+"type_line.xhp\n"
+"hd_id9826349\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves up the selected entry in the Data Series list.</ahelp>"
+msgid "Line"
+msgstr "Rreshti"
+
+#: type_line.xhp
+msgctxt ""
+"type_line.xhp\n"
+"par_id2334665\n"
+"help.text"
+msgid "A line chart shows values as points on the y axis. The x axis shows categories. The y values of each data series can be connected by a line."
msgstr ""
-#: wiz_data_series.xhp
+#: type_line.xhp
msgctxt ""
-"wiz_data_series.xhp\n"
-"par_id2844019\n"
+"type_line.xhp\n"
+"par_id8956572\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves down the selected entry in the Data Series list.</ahelp>"
+msgid "Points only - this subtype plots only points."
msgstr ""
-#: 05060000.xhp
+#: type_line.xhp
msgctxt ""
-"05060000.xhp\n"
-"tit\n"
+"type_line.xhp\n"
+"par_id500808\n"
"help.text"
-msgid "Chart Wall"
-msgstr "Mur Diagrami"
+msgid "Points and lines - this subtype plots points and connects points of the same data series by a line."
+msgstr ""
-#: 05060000.xhp
+#: type_line.xhp
msgctxt ""
-"05060000.xhp\n"
-"bm_id3150792\n"
+"type_line.xhp\n"
+"par_id8366649\n"
"help.text"
-msgid "<bookmark_value>charts; formatting walls</bookmark_value><bookmark_value>formatting;chart walls</bookmark_value>"
+msgid "Lines only - this subtype plots only lines."
msgstr ""
-#: 05060000.xhp
+#: type_line.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3150792\n"
-"1\n"
+"type_line.xhp\n"
+"par_id476393\n"
"help.text"
-msgid "Chart Wall"
-msgstr "Mur Diagrami"
+msgid "3D lines - this subtype connects points of the same data series by a 3D line."
+msgstr ""
-#: 05060000.xhp
+#: type_line.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3154685\n"
-"2\n"
+"type_line.xhp\n"
+"par_id2655720\n"
"help.text"
-msgid "<variable id=\"diagramm\"><ahelp visibility=\"visible\" hid=\".uno:DiagramWall\">Opens the<emph> Chart Wall</emph> dialog, where you can modify the properties of the chart wall. The chart wall is the \"vertical\" background behind the data area of the chart.</ahelp></variable>"
+msgid "Mark <emph>Stack series</emph> to arrange the points' y values cumulative above each other. The y values no longer represent absolute values, except for the first column which is drawn at the bottom of the stacked points. If you select <emph>Percent</emph>, the y values are scaled as percentage of the category total."
msgstr ""
-#: 05040000.xhp
+#: type_line.xhp
msgctxt ""
-"05040000.xhp\n"
+"type_line.xhp\n"
+"par_id3682058\n"
+"help.text"
+msgid "Choose the <emph>Line type</emph> from the dropdown to select how the points will be connected. You can choose either <emph>Straight</emph> lines, <emph>Smooth</emph> lines to draw curves through the points or <emph>Stepped</emph> lines to draw lines which step from point to point. Click <emph>Properties</emph> to change the properties for the <link href=\"text/schart/01/smooth_line_properties.xhp\">smooth</link> or <link href=\"text/schart/01/stepped_line_properties.xhp\">stepped</link> lines."
+msgstr ""
+
+#: type_net.xhp
+msgctxt ""
+"type_net.xhp\n"
"tit\n"
"help.text"
-msgid "Axis"
-msgstr "~Boshti X..."
+msgid "Chart Type Net"
+msgstr "Redakto Tipin e Diagramit"
-#: 05040000.xhp
+#: type_net.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3149456\n"
-"1\n"
+"type_net.xhp\n"
+"bm_id2193975\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040000.xhp\" name=\"Axis\">Axis</link>"
+msgid "<bookmark_value>net charts</bookmark_value><bookmark_value>chart types;net</bookmark_value><bookmark_value>radar charts, see net charts</bookmark_value>"
msgstr ""
-#: 05040000.xhp
+#: type_net.xhp
msgctxt ""
-"05040000.xhp\n"
-"par_id3150441\n"
-"2\n"
+"type_net.xhp\n"
+"hd_id1990722\n"
"help.text"
-msgid "This opens a submenu to edit axial properties."
+msgid "<variable id=\"type_net\"><link href=\"text/schart/01/type_net.xhp\">Chart Type Net</link></variable>"
msgstr ""
-#: 05040000.xhp
+#: type_net.xhp
msgctxt ""
-"05040000.xhp\n"
-"par_id3154319\n"
-"11\n"
+"type_net.xhp\n"
+"par_id40589\n"
"help.text"
-msgid "The tabs in the dialogs depend on the chart type selected."
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr ""
-#: 05040000.xhp
+#: type_net.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3153729\n"
-"3\n"
+"type_net.xhp\n"
+"hd_id1391338\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X axis\">X axis</link>"
+msgid "Net"
+msgstr "Neto"
+
+#: type_net.xhp
+msgctxt ""
+"type_net.xhp\n"
+"par_id7812433\n"
+"help.text"
+msgid "A Net chart displays data values as points connected by some lines, in a grid net that resembles a spider net or a radar tube display."
msgstr ""
-#: 05040000.xhp
+#: type_net.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3147394\n"
-"4\n"
+"type_net.xhp\n"
+"par_id3512375\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y axis\">Y axis</link>"
+msgid "For each row of chart data, a radial is shown on which the data is plotted. All data values are shown with the same scale, so all data values should have about the same magnitude."
msgstr ""
-#: 05040000.xhp
+#: type_pie.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3153160\n"
-"9\n"
+"type_pie.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"Secondary X Axis\">Secondary X Axis</link>"
+msgid "Chart Type Pie"
+msgstr "Redakto Tipin e Diagramit"
+
+#: type_pie.xhp
+msgctxt ""
+"type_pie.xhp\n"
+"bm_id7621997\n"
+"help.text"
+msgid "<bookmark_value>donut charts</bookmark_value> <bookmark_value>pie charts;types</bookmark_value> <bookmark_value>chart types;pie/donut</bookmark_value>"
msgstr ""
-#: 05040000.xhp
+#: type_pie.xhp
msgctxt ""
-"05040000.xhp\n"
-"par_id3149401\n"
-"10\n"
+"type_pie.xhp\n"
+"hd_id3365276\n"
"help.text"
-msgid "<ahelp hid=\".uno:DiagramAxisA\">Opens a dialog where you can edit the properties of the secondary X axis. To insert a secondary X axis, choose <emph>Insert - Axes</emph> and select <emph>X axis</emph>.</ahelp>"
+msgid "<variable id=\"type_pie\"><link href=\"text/schart/01/type_pie.xhp\">Chart Type Pie</link></variable>"
msgstr ""
-#: 05040000.xhp
+#: type_pie.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3145640\n"
-"7\n"
+"type_pie.xhp\n"
+"par_id245979\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Secondary Y Axis\">Secondary Y Axis</link>"
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr ""
-#: 05040000.xhp
+#: type_pie.xhp
msgctxt ""
-"05040000.xhp\n"
-"par_id3159264\n"
-"8\n"
+"type_pie.xhp\n"
+"hd_id5799432\n"
"help.text"
-msgid "<ahelp hid=\".uno:DiagramAxisB\">Opens a dialog where you can edit the properties of the secondary Y axis. To insert a secondary Y axis, choose <emph>Insert - Axes</emph> and select <emph>Y axis</emph>.</ahelp>"
+msgid "Pie"
+msgstr "Kulaq rrethor"
+
+#: type_pie.xhp
+msgctxt ""
+"type_pie.xhp\n"
+"par_id6549272\n"
+"help.text"
+msgid "A pie chart shows values as circular sectors of the total circle. The length of the arc, or the area of each sector, is proportional to its value."
msgstr ""
-#: 05040000.xhp
+#: type_pie.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3145228\n"
-"5\n"
+"type_pie.xhp\n"
+"par_id6529740\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"Z axis\">Z axis</link>"
+msgid "Pie - this subtype shows sectors as colored areas of the total pie, for one data column only. In the created chart, you can click and drag any sector to separate that sector from the remaining pie or to join it back."
msgstr ""
-#: 05040000.xhp
+#: type_pie.xhp
msgctxt ""
-"05040000.xhp\n"
-"hd_id3147345\n"
-"6\n"
+"type_pie.xhp\n"
+"par_id9121982\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"All axes\">All axes</link>"
+msgid "Exploded pie - this subtype shows the sectors already separated from each other. In the created chart, you can click and drag any sector to move it along a radial from the pie's center."
+msgstr ""
+
+#: type_pie.xhp
+msgctxt ""
+"type_pie.xhp\n"
+"par_id3808404\n"
+"help.text"
+msgid "Donut - this subtype can show multiple data columns. Each data column is shown as one donut shape with a hole inside, where the next data column can be shown. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center."
+msgstr ""
+
+#: type_pie.xhp
+msgctxt ""
+"type_pie.xhp\n"
+"par_id2394482\n"
+"help.text"
+msgid "Exploded donut - this subtype shows the outer sectors already separated from the remaining donut. In the created chart, you can click and drag an outer sector to move it along a radial from the donut's center."
msgstr ""
#: type_stock.xhp
@@ -3796,7 +5801,7 @@ msgctxt ""
"par_id1022064\n"
"help.text"
msgid "A"
-msgstr "A"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3804,7 +5809,7 @@ msgctxt ""
"par_id1924192\n"
"help.text"
msgid "B"
-msgstr "B"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3812,7 +5817,7 @@ msgctxt ""
"par_id3258156\n"
"help.text"
msgid "C"
-msgstr "C"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3828,7 +5833,7 @@ msgctxt ""
"par_id5619373\n"
"help.text"
msgid "E"
-msgstr "E"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3844,7 +5849,7 @@ msgctxt ""
"par_id7411725\n"
"help.text"
msgid "1"
-msgstr "1"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3892,7 +5897,7 @@ msgctxt ""
"par_id7684560\n"
"help.text"
msgid "2"
-msgstr "2"
+msgstr ""
#: type_stock.xhp
msgctxt ""
@@ -3959,7 +5964,6 @@ msgid "Tuesday"
msgstr ""
#: type_stock.xhp
-#, fuzzy
msgctxt ""
"type_stock.xhp\n"
"par_id7271645\n"
@@ -3981,7 +5985,7 @@ msgctxt ""
"par_id4186223\n"
"help.text"
msgid "22"
-msgstr ""
+msgstr "2"
#: type_stock.xhp
msgctxt ""
@@ -4072,7 +6076,6 @@ msgid "Thursday"
msgstr ""
#: type_stock.xhp
-#, fuzzy
msgctxt ""
"type_stock.xhp\n"
"par_id6897183\n"
@@ -4544,640 +6547,364 @@ msgctxt ""
msgid "Select one of the position options. When the chart is finished, you can specify other positions using the Format menu."
msgstr ""
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
+"type_xy.xhp\n"
"tit\n"
"help.text"
-msgid "Scale"
-msgstr "Shkallë"
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"bm_id3150868\n"
-"help.text"
-msgid "<bookmark_value>scaling; axes</bookmark_value><bookmark_value>logarithmic scaling along axes</bookmark_value><bookmark_value>charts;scaling axes</bookmark_value><bookmark_value>X axes;scaling</bookmark_value><bookmark_value>Y axes; scaling</bookmark_value>"
-msgstr ""
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"hd_id3150868\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/schart/01/05040201.xhp\" name=\"Scale\">Scale</link>"
-msgstr ""
-
-#: 05040201.xhp
-#, fuzzy
-msgctxt ""
-"05040201.xhp\n"
-"par_id3154013\n"
-"2\n"
-"help.text"
-msgid "Controls the scaling of the X or Y axis."
-msgstr "~Rrjeta kryesore e boshtit Y..."
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"par_id3148576\n"
-"79\n"
-"help.text"
-msgid "The axes are automatically scaled by $[officename] so that all values are optimally displayed."
-msgstr ""
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"par_id3149379\n"
-"3\n"
-"help.text"
-msgid "To achieve specific results, you can manually change the axis scaling. For example, you can display only the top areas of the columns by shifting the zero line upwards."
-msgstr ""
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"hd_id3154730\n"
-"4\n"
-"help.text"
-msgid "Scale"
-msgstr "Shkallë"
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"par_id3149400\n"
-"5\n"
-"help.text"
-msgid "You can enter values for subdividing axes in this area. You can automatically set the properties <emph>Minimum, Maximum, Major interval, Minor interval count</emph> and <emph>Reference value</emph>."
-msgstr ""
-
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"hd_id3150751\n"
-"6\n"
-"help.text"
-msgid "Minimum"
-msgstr "Minimum"
+msgid "Chart Type XY"
+msgstr "Redakto Tipin e Diagramit"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3153713\n"
-"7\n"
+"type_xy.xhp\n"
+"bm_id84231\n"
"help.text"
-msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MIN\">Defines the minimum value for the beginning of the axis.</ahelp>"
+msgid "<bookmark_value>scatter charts</bookmark_value><bookmark_value>XY charts</bookmark_value><bookmark_value>chart types;XY (scatter)</bookmark_value><bookmark_value>error indicators in charts</bookmark_value><bookmark_value>error bars in charts</bookmark_value><bookmark_value>averages in charts</bookmark_value><bookmark_value>statistics in charts</bookmark_value><bookmark_value>variances in charts</bookmark_value><bookmark_value>standard deviation in charts</bookmark_value>"
msgstr ""
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"hd_id3156385\n"
-"8\n"
-"help.text"
-msgid "Maximum"
-msgstr "Maksimum"
-
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3159266\n"
-"9\n"
+"type_xy.xhp\n"
+"hd_id9346598\n"
"help.text"
-msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_MAX\">Defines the maximum value for the end of the axis.</ahelp>"
+msgid "<variable id=\"type_xy\"><link href=\"text/schart/01/type_xy.xhp\">Chart Type XY (Scatter)</link></variable>"
msgstr ""
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"hd_id3155336\n"
-"10\n"
-"help.text"
-msgid "Major interval"
-msgstr "Intervali madhor"
-
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3143218\n"
-"11\n"
+"type_xy.xhp\n"
+"par_id2003845\n"
"help.text"
-msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_MAIN\">Defines the interval for the main division of the axes.</ahelp> The main interval cannot be larger than the value area."
+msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
msgstr ""
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"hd_id3154020\n"
-"12\n"
+"type_xy.xhp\n"
+"hd_id7757194\n"
"help.text"
-msgid "Minor interval count"
-msgstr "Shenja intervalesh të vogla"
+msgid "XY (Scatter)"
+msgstr "Diagrami XY"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3154656\n"
-"13\n"
+"type_xy.xhp\n"
+"par_id5977965\n"
"help.text"
-msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_STEP_HELP\">Defines the interval for the subdivision of the axes.</ahelp>"
+msgid "An XY chart in its basic form is based on one data series consisting of a name, a list of x‑values, and a list of y‑values. Each value pair (x|y) is shown as a point in a coordinate system. The name of the data series is associated with the y‑values and shown in the legend."
msgstr ""
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"hd_id3150089\n"
-"14\n"
-"help.text"
-msgid "Reference value"
-msgstr "Vlerë reference"
-
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3152990\n"
-"15\n"
+"type_xy.xhp\n"
+"par_id4381847\n"
"help.text"
-msgid "<ahelp hid=\"SCH_SPINFIELD_TP_SCALE_EDT_ORIGIN\">Specifies at which position to display the values along the axis.</ahelp>"
+msgid "Choose an XY chart for the following example tasks:"
msgstr ""
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"hd_id3166432\n"
-"62\n"
-"help.text"
-msgid "Automatic"
-msgstr "Automatike"
-
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3145389\n"
-"63\n"
+"type_xy.xhp\n"
+"par_id1336710\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_AUTO_ORIGIN\">You must first deselect the <emph>Automatic</emph> option in order to modify the values.</ahelp>"
-msgstr ""
+msgid "scale the x‑axis"
+msgstr "Përshtat Shkallën"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3149129\n"
-"64\n"
+"type_xy.xhp\n"
+"par_id1221655\n"
"help.text"
-msgid "Disable this feature if you are working with \"fixed\" values, as it does not permit automatic scaling."
+msgid "generate a parameter curve, for example a spiral"
msgstr ""
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"hd_id3159206\n"
-"16\n"
-"help.text"
-msgid "Logarithmic scale"
-msgstr "Vizore llogaritmike"
-
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3145360\n"
-"17\n"
+"type_xy.xhp\n"
+"par_id3397320\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_SCALE:CBX_LOGARITHM\">Specifies that you want the axis to be subdivided logarithmically.</ahelp>"
-msgstr ""
+msgid "draw the graph of a function"
+msgstr "**Tejmbushje e funksionit të katrorit**"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3153956\n"
-"61\n"
+"type_xy.xhp\n"
+"par_id7657399\n"
"help.text"
-msgid "Use this feature if you are working with values that differ sharply from each other. You can use logarithmic scaling to make the grid lines of the axis equidistant but have values that may increase or decrease."
+msgid "explore the statistical association of quantitative variables"
msgstr ""
-#: 05040201.xhp
-msgctxt ""
-"05040201.xhp\n"
-"hd_id9941404\n"
-"help.text"
-msgid "Reverse direction"
-msgstr "Drejtimi i tekstit"
-
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id5581835\n"
+"type_xy.xhp\n"
+"par_id8925138\n"
"help.text"
-msgid "<ahelp hid=\".\">Defines where the lower and where the higher values are displayed at the axis. The unchecked state is the mathematical direction.</ahelp> That means for Cartesian coordinate systems that the x-axis shows the lower values on the left and the y-axis shows the lower values at the bottom. For polar coordinate systems the mathematical angle axis direction is counterclockwise and the radial axis is from inner to outer."
+msgid "Your XY chart may have more than one data series."
msgstr ""
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"hd_id922204\n"
+"type_xy.xhp\n"
+"hd_id5461897\n"
"help.text"
-msgid "Type"
-msgstr "Tipi"
+msgid "XY Chart Variants"
+msgstr "Titulli, Skemë Organizative"
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id59225\n"
+"type_xy.xhp\n"
+"par_id8919339\n"
"help.text"
-msgid "<ahelp hid=\".\">For some types of axes, you can select to format an axis as text or date, or to detect the type automatically.</ahelp> For the axis type \"Date\" you can set the following options."
+msgid "You can choose an XY chart variant on the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link>, or by choosing <item type=\"menuitem\">Format - Chart Type </item>for a chart in edit mode."
msgstr ""
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id1159225\n"
+"type_xy.xhp\n"
+"par_id4634235\n"
"help.text"
-msgid "Minimum and maximum value to be shown on the ends of the scale."
+msgid "The chart is created with default settings. After the chart is finished, you can edit its properties to change the appearance. Line styles and icons can be changed on the <emph>Line</emph>tab page of the data series properties dialog."
msgstr ""
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id2259225\n"
+"type_xy.xhp\n"
+"par_id5482039\n"
"help.text"
-msgid "<ahelp hid=\".\">Resolution can be set to show days, months, or years as interval steps.</ahelp>"
+msgid "Double-click any data point to open the <item type=\"menuitem\">Data Series</item> dialog. In this dialog, you can change many properties of the data series."
msgstr ""
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id3359225\n"
+"type_xy.xhp\n"
+"par_id0805200810492449\n"
"help.text"
-msgid "<ahelp hid=\".\">Major interval can be set to show a certain number of days, months, or years.</ahelp>"
+msgid "For 2D charts, you can choose <item type=\"menuitem\">Insert - Y Error Bars</item> to enable the display of error bars."
msgstr ""
-#: 05040201.xhp
+#: type_xy.xhp
msgctxt ""
-"05040201.xhp\n"
-"par_id4459225\n"
+"type_xy.xhp\n"
+"par_id6221198\n"
"help.text"
-msgid "<ahelp hid=\".\">Minor interval can be set to show a certain number of days, months, or years.</ahelp>"
+msgid "You can enable the display of mean value lines and trend lines using commands on the Insert menu."
msgstr ""
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Title"
-msgstr "Titulli"
-
-#: 05020200.xhp
-msgctxt ""
-"05020200.xhp\n"
-"hd_id3150541\n"
-"1\n"
-"help.text"
-msgid "Title"
-msgstr "Titulli"
-
-#: 05020200.xhp
+#: type_xy.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3145173\n"
-"2\n"
+"type_xy.xhp\n"
+"hd_id1393475\n"
"help.text"
-msgid "<variable id=\"titel\"><ahelp hid=\".uno:YTitle\">Modifies the properties of the selected title or the properties of all titles together.</ahelp></variable>"
-msgstr ""
+msgid "Points only"
+msgstr "Vetëm titull"
-#: 05020200.xhp
+#: type_xy.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3152596\n"
-"3\n"
+"type_xy.xhp\n"
+"par_id6571550\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgid "Each data point is shown by an icon. %PRODUCTNAME uses default icons with different forms and colors for each data series. The default colors are set in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Charts - Default Colors</item>."
msgstr ""
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"tit\n"
+"type_xy.xhp\n"
+"hd_id5376140\n"
"help.text"
-msgid "Legend"
-msgstr "Legjendë"
+msgid "Lines Only"
+msgstr "Vetëm vijat"
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"bm_id3156441\n"
+"type_xy.xhp\n"
+"par_id4408093\n"
"help.text"
-msgid "<bookmark_value>chart legends; hiding</bookmark_value><bookmark_value>hiding;chart legends</bookmark_value>"
+msgid "This variant draws straight lines from one data point to the next. The data points are not shown by icons."
msgstr ""
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3156441\n"
-"1\n"
-"help.text"
-msgid "Legend"
-msgstr "Legjendë"
-
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3155413\n"
-"2\n"
+"type_xy.xhp\n"
+"par_id7261268\n"
"help.text"
-msgid "<variable id=\"legende\"><ahelp hid=\".uno:InsertMenuLegend\">Opens the <emph>Legend </emph>dialog, which allows you to change the position of legends in the chart, and to specify whether the legend is displayed.</ahelp></variable>"
+msgid "The drawing order is the same as the order in the data series. Mark <emph>Sort by X Values</emph> to draw the lines in the order of the x values. This sorting applies only to the chart, not to the data in the table."
msgstr ""
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3149124\n"
-"3\n"
+"type_xy.xhp\n"
+"hd_id6949369\n"
"help.text"
-msgid "<variable id=\"sytextlegende\"><ahelp hid=\".uno:ToggleLegend\">To show or hide a legend, click <emph>Legend On/Off</emph> on the <emph>Formatting</emph> bar.</ahelp></variable>"
-msgstr ""
+msgid "Points and Lines"
+msgstr "Linjat dhe Shigjetat"
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3145230\n"
+"type_xy.xhp\n"
+"par_id9611499\n"
"help.text"
-msgid "<image id=\"img_id3147346\" src=\"cmd/sc_togglelegend.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3147346\">Icon</alt></image>"
+msgid "This variant shows points and lines at the same time."
msgstr ""
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3149207\n"
-"16\n"
-"help.text"
-msgid "Legend On/Off"
-msgstr "Legjenda kyçur/çkyçur"
-
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3155114\n"
-"6\n"
+"type_xy.xhp\n"
+"hd_id6765953\n"
"help.text"
-msgid "Display"
-msgstr "Monitori"
+msgid "3D Lines"
+msgstr "Rreshtat vertikal"
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3150206\n"
-"7\n"
+"type_xy.xhp\n"
+"par_id7422711\n"
"help.text"
-msgid "<ahelp hid=\"SCH_CHECKBOX_DLG_LEGEND_CBX_SHOW\">Specifies whether to display a legend for the chart.</ahelp> This option is only visible if you call the dialog by choosing <emph>Insert - Legend</emph>."
+msgid "The lines are shown like tapes. The data points are not shown by icons. In the finished chart choose <link href=\"text/schart/01/three_d_view.xhp\">3D View</link> to set properties like illumination and angle of view."
msgstr ""
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3150201\n"
-"4\n"
-"help.text"
-msgid "Position"
-msgstr "Pozicion"
-
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"par_id3155376\n"
-"5\n"
-"help.text"
-msgid "Select the position for the legend:"
-msgstr "Cakto pozitën dhe madhësinë për %O"
-
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"hd_id3152988\n"
-"8\n"
+"type_xy.xhp\n"
+"hd_id239265\n"
"help.text"
-msgid "Left"
-msgstr "Majtas"
+msgid "Smooth Lines"
+msgstr "Rreshtat vertikal"
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3155087\n"
-"9\n"
+"type_xy.xhp\n"
+"par_id7957396\n"
"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_LEFT\">Positions the legend at the left of the chart.</ahelp>"
+msgid "Choose <emph>Smooth</emph> from the <emph>Line type</emph> dropdown to draw curves instead of straight line segments."
msgstr ""
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3153816\n"
-"10\n"
-"help.text"
-msgid "Top"
-msgstr "Lartë"
-
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3153912\n"
-"11\n"
+"type_xy.xhp\n"
+"par_id1202124\n"
"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_TOP\">Positions the legend at the top of the chart.</ahelp>"
+msgid "Click <emph>Properties</emph> to set details for the curves."
msgstr ""
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3144773\n"
-"12\n"
-"help.text"
-msgid "Right"
-msgstr "Djathtas"
-
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3155268\n"
-"13\n"
+"type_xy.xhp\n"
+"par_id5989562\n"
"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_RIGHT\">Positions the legend at the right of the chart.</ahelp>"
+msgid "<emph>Cubic Spline</emph> interpolates your data points with polynomials of degree 3. The transitions between the polynomial pieces are smooth, having the same slope and curvature."
msgstr ""
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id3152871\n"
-"14\n"
-"help.text"
-msgid "Bottom"
-msgstr "Poshtë"
-
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id3153249\n"
-"15\n"
+"type_xy.xhp\n"
+"par_id6128421\n"
"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_LEGEND_POS:RBT_BOTTOM\">Positions the legend at the bottom of the chart.</ahelp>"
+msgid "The <emph>Resolution</emph> determines how many line segments are calculated to draw a piece of polynomial between two data points. You can see the intermediate points if you click any data point."
msgstr ""
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id1106200812072645\n"
-"help.text"
-msgid "Text Orientation"
-msgstr "Orientimi i zarfit"
-
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id1106200812072653\n"
+"type_xy.xhp\n"
+"par_id9280373\n"
"help.text"
-msgid "This feature is only available if complex text layout support is enabled in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages</item>."
+msgid "<emph>B-Spline</emph> uses a parametric, interpolating B-spline curve. Those curves are built piecewise from polynomials. The <emph>Degree of polynomials</emph> sets the degree of these polynomials."
msgstr ""
-#: 04020000.xhp
-msgctxt ""
-"04020000.xhp\n"
-"hd_id1106200812112444\n"
-"help.text"
-msgid "Text Direction"
-msgstr "Drejtimi i tekstit"
-
-#: 04020000.xhp
+#: type_xy.xhp
msgctxt ""
-"04020000.xhp\n"
-"par_id1106200812112530\n"
+"type_xy.xhp\n"
+"hd_id5031251\n"
"help.text"
-msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
+msgid "Stepped Lines"
msgstr ""
-#: 05050100.xhp
-msgctxt ""
-"05050100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Grid"
-msgstr "Rrjet"
-
-#: 05050100.xhp
+#: type_xy.xhp
msgctxt ""
-"05050100.xhp\n"
-"bm_id3150398\n"
+"type_xy.xhp\n"
+"par_id1449076\n"
"help.text"
-msgid "<bookmark_value>X axes;grid formatting</bookmark_value><bookmark_value>Y axes;grid formatting</bookmark_value><bookmark_value>Z axes; grid formatting</bookmark_value>"
+msgid "Choose <emph>Stepped</emph> from the <emph>Line type</emph> dropdown to draw lines which step from point to point instead of straight line segments."
msgstr ""
-#: 05050100.xhp
-msgctxt ""
-"05050100.xhp\n"
-"hd_id3150398\n"
-"2\n"
-"help.text"
-msgid "Grid"
-msgstr "Rrjet"
-
-#: 05050100.xhp
+#: type_xy.xhp
msgctxt ""
-"05050100.xhp\n"
-"par_id3152577\n"
-"1\n"
+"type_xy.xhp\n"
+"par_id1202125\n"
"help.text"
-msgid "<variable id=\"gitter\"><ahelp hid=\".uno:DiagramGridAll\">Opens the <emph>Grid</emph> dialog for defining grid properties.</ahelp></variable>"
+msgid "Click <emph>Properties</emph> to set details for the curves."
msgstr ""
-#: 05020000.xhp
-msgctxt ""
-"05020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Title"
-msgstr "Titulli"
-
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"bm_id3150791\n"
+"type_xy.xhp\n"
+"par_id9811476\n"
"help.text"
-msgid "<bookmark_value>titles; formatting charts</bookmark_value><bookmark_value>formatting; chart titles</bookmark_value>"
+msgid "There are 4 different step types:"
msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3150791\n"
-"1\n"
+"type_xy.xhp\n"
+"alt_id9078573\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020000.xhp\" name=\"Title\">Title</link>"
+msgid "Start step icon"
msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"par_id3125863\n"
-"2\n"
+"type_xy.xhp\n"
+"par_id9047365\n"
"help.text"
-msgid "The<emph> Title </emph>menu command opens a submenu for editing the properties of the titles in the chart."
+msgid "Start with horizontal line and step up vertically at the end."
msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3155414\n"
-"3\n"
+"type_xy.xhp\n"
+"alt_id05495673\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Main title\">Main title</link>"
+msgid "End step icon"
msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3156441\n"
-"4\n"
+"type_xy.xhp\n"
+"par_id439028\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Subtitle\">Subtitle</link>"
+msgid "Start to step up vertically and end with horizontal line."
msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3151073\n"
-"5\n"
+"type_xy.xhp\n"
+"alt_id9673426\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"X-axis title\">X-axis title</link>"
+msgid "Center X icon"
msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3154732\n"
-"6\n"
+"type_xy.xhp\n"
+"par_id4069483\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"Y-axis title\">Y-axis title</link>"
+msgid "Start with horizontal line, step up vertically in the middle of the X values and end with horizontal line."
msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3154017\n"
-"7\n"
+"type_xy.xhp\n"
+"alt_id56635427\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Z-axis title\">Z-axis title</link>"
+msgid "Center Y icon"
msgstr ""
-#: 05020000.xhp
+#: type_xy.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3153711\n"
-"8\n"
+"type_xy.xhp\n"
+"par_id0679473\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020200.xhp\" name=\"All titles\">All titles</link>"
+msgid "Start to step up vertically to the middle of the Y values, draw a horizonal line and finish by stepping vertically to the end."
msgstr ""
#: wiz_chart_elements.xhp
@@ -5508,2172 +7235,634 @@ msgctxt ""
msgid "Statistics, for example mean values, y error bars and trend lines"
msgstr ""
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
+"wiz_chart_type.xhp\n"
"tit\n"
"help.text"
-msgid "Format Selection"
-msgstr ""
-
-#: 05010000.xhp
-msgctxt ""
-"05010000.xhp\n"
-"bm_id3149666\n"
-"help.text"
-msgid "<bookmark_value>objects;properties of charts</bookmark_value><bookmark_value>charts; properties</bookmark_value><bookmark_value>properties;charts</bookmark_value>"
-msgstr ""
-
-#: 05010000.xhp
-msgctxt ""
-"05010000.xhp\n"
-"hd_id3149666\n"
-"1\n"
-"help.text"
-msgid "Format Selection"
-msgstr ""
-
-#: 05010000.xhp
-msgctxt ""
-"05010000.xhp\n"
-"par_id3156284\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"objekteigenschaften\"><ahelp hid=\".\">Formats the selected object.</ahelp></variable> Depending on the object selected, the command opens dialogs that you can also open by choosing the following commands from the <emph>Format</emph> menu:"
-msgstr ""
-
-#: 05010000.xhp
-msgctxt ""
-"05010000.xhp\n"
-"hd_id3153418\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/schart/01/05060000.xhp\" name=\"Chart Wall\">Chart Wall</link>"
-msgstr ""
+msgid "Chart Wizard - Chart Type"
+msgstr "Redakto Tipin e Diagramit"
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3155766\n"
-"4\n"
+"wiz_chart_type.xhp\n"
+"bm_id4266792\n"
"help.text"
-msgid "<link href=\"text/schart/01/05080000.xhp\" name=\"Chart Area\">Chart Area</link>"
+msgid "<bookmark_value>charts;choosing chart types</bookmark_value>"
msgstr ""
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3154255\n"
-"5\n"
+"wiz_chart_type.xhp\n"
+"hd_id1536606\n"
"help.text"
-msgid "<link href=\"text/schart/01/05070000.xhp\" name=\"Chart Floor\">Chart Floor</link>"
+msgid "<variable id=\"wiz_chart_type\"><link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard - Chart Type</link></variable>"
msgstr ""
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3146313\n"
-"6\n"
+"wiz_chart_type.xhp\n"
+"par_id6006958\n"
"help.text"
-msgid "<link href=\"text/schart/01/05020100.xhp\" name=\"Title\">Title</link>"
+msgid "On the first page of the Chart Wizard you can <link href=\"text/schart/01/choose_chart_type.xhp\">choose a chart type</link>."
msgstr ""
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3150297\n"
-"7\n"
+"wiz_chart_type.xhp\n"
+"hd_id3919186\n"
"help.text"
-msgid "<link href=\"text/schart/01/05030000.xhp\" name=\"Legend\">Legend</link>"
-msgstr ""
+msgid "To choose a chart type"
+msgstr "Të lutem zgjidh llojin e tastierës për ta konfiguruar."
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3143219\n"
-"8\n"
+"wiz_chart_type.xhp\n"
+"par_id3453169\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040100.xhp\" name=\"X Axis\">X Axis</link>"
+msgid "Choose a basic <link href=\"text/schart/01/choose_chart_type.xhp\">chart type</link>: click any of the entries labeled Column, Bar, Pie, and so on."
msgstr ""
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3150207\n"
-"9\n"
+"wiz_chart_type.xhp\n"
+"par_id8406933\n"
"help.text"
-msgid "<link href=\"text/schart/01/05040200.xhp\" name=\"Y Axis\">Y Axis</link>"
+msgid "The contents on the right side will change to offer more options depending on the basic chart type."
msgstr ""
-#: 05010000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3166432\n"
-"10\n"
+"wiz_chart_type.xhp\n"
+"par_id8230231\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Grid\">Grid</link>"
+msgid "Optionally, click any of the options. While you change the settings in the wizard, watch the preview in the document to see how the chart will look."
msgstr ""
-#: 05010100.xhp
-msgctxt ""
-"05010100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Data Point"
-msgstr "Të dhënat e pikëve"
-
-#: 05010100.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010100.xhp\n"
-"hd_id3153768\n"
-"1\n"
+"wiz_chart_type.xhp\n"
+"par_id3267006\n"
"help.text"
-msgid "<link href=\"text/schart/01/05010100.xhp\" name=\"Data Point\">Data Point</link>"
+msgid "Press <item type=\"keycode\">Shift+F1</item> and point to a control to see an extended help text."
msgstr ""
-#: 05010100.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010100.xhp\n"
-"par_id3152577\n"
-"2\n"
+"wiz_chart_type.xhp\n"
+"par_id7251503\n"
"help.text"
-msgid "This dialog allows you to change the properties of a selected data point. The dialog appears when there is only one data point selected when you choose <emph>Format - Format Selection</emph>. Some of the menu entries are only available for 2D or 3D charts."
+msgid "Click <emph>Finish</emph> on any wizard page to close the wizard and create the chart using the current settings."
msgstr ""
-#: 05010100.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05010100.xhp\n"
-"par_id3149121\n"
-"3\n"
+"wiz_chart_type.xhp\n"
+"par_id3191625\n"
"help.text"
-msgid "Any changes made only affect this one data point. For example, if you edit the color of a bar, only the color of that bar will be different."
+msgid "Click <emph>Next</emph> to see the next wizard page, or click the entries on the left side of the wizard to go to that page."
msgstr ""
-#: 05050000.xhp
-msgctxt ""
-"05050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Grid"
-msgstr "Rrjet"
-
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"bm_id3155602\n"
+"wiz_chart_type.xhp\n"
+"par_id7659535\n"
"help.text"
-msgid "<bookmark_value>grids; formatting axes</bookmark_value><bookmark_value>axes; formatting grids</bookmark_value>"
+msgid "Click <emph>Back</emph> to see the previous wizard page."
msgstr ""
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3155602\n"
-"1\n"
+"wiz_chart_type.xhp\n"
+"par_id8420056\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050000.xhp\" name=\"Grid\">Grid</link>"
+msgid "Click <emph>Cancel</emph> to close the wizard without creating a chart."
msgstr ""
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3155764\n"
-"2\n"
+"wiz_chart_type.xhp\n"
+"par_id2284920\n"
"help.text"
-msgid "Opens a submenu, where you select the grid you want to format."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to go to the named wizard page.</ahelp>"
msgstr ""
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3150045\n"
-"3\n"
+"wiz_chart_type.xhp\n"
+"par_id3184301\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Major Grid\">X Axis Major Grid</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a basic chart type.</ahelp>"
msgstr ""
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3145228\n"
-"4\n"
+"wiz_chart_type.xhp\n"
+"par_id2129276\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Major Grid\">Y Axis Major Grid</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a sub type of the basic chart type.</ahelp>"
msgstr ""
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3147346\n"
-"5\n"
+"wiz_chart_type.xhp\n"
+"par_id9719229\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis Major Grid\">Z Axis Major Grid</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enables a 3D look for the data values.</ahelp>"
msgstr ""
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3154021\n"
-"6\n"
+"wiz_chart_type.xhp\n"
+"par_id3860896\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"X Axis Minor Grid\">X Axis Minor Grid</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the type of 3D look.</ahelp>"
msgstr ""
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3150307\n"
-"7\n"
+"wiz_chart_type.xhp\n"
+"par_id4041871\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Y Axis Minor Grid\">Y Axis Minor Grid</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select a shape from the list.</ahelp>"
msgstr ""
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3166428\n"
-"8\n"
+"wiz_chart_type.xhp\n"
+"par_id9930722\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"Z Axis minor Grid\">Z Axis minor Grid</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Displays stacked series for Line charts.</ahelp>"
msgstr ""
-#: 05050000.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3145585\n"
-"9\n"
+"wiz_chart_type.xhp\n"
+"par_id5749687\n"
"help.text"
-msgid "<link href=\"text/schart/01/05050100.xhp\" name=\"All Axis Grids\">All Axis Grids</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Stack series display values on top of each other.</ahelp>"
msgstr ""
-#: type_column_bar.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"type_column_bar.xhp\n"
-"tit\n"
+"wiz_chart_type.xhp\n"
+"par_id79348\n"
"help.text"
-msgid "Chart Type Column and Bar"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Stack series display values as percent.</ahelp>"
msgstr ""
-#: type_column_bar.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"type_column_bar.xhp\n"
-"bm_id4919583\n"
+"wiz_chart_type.xhp\n"
+"par_id2414014\n"
"help.text"
-msgid "<bookmark_value>column charts</bookmark_value><bookmark_value>bar charts</bookmark_value><bookmark_value>chart types;column and bar</bookmark_value>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Choose the type of line to draw.</ahelp>"
msgstr ""
-#: type_column_bar.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"type_column_bar.xhp\n"
-"hd_id649433\n"
+"wiz_chart_type.xhp\n"
+"par_id7617114\n"
"help.text"
-msgid "<variable id=\"type_column_bar\"><link href=\"text/schart/01/type_column_bar.xhp\">Chart Type Column and Bar</link></variable>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a dialog to set the line or curve properties.</ahelp>"
msgstr ""
-#: type_column_bar.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"type_column_bar.xhp\n"
-"par_id3430585\n"
+"wiz_chart_type.xhp\n"
+"par_id6649372\n"
"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Connects points by ascending X values, even if the order of values is different, in an XY scatter diagram.</ahelp>"
msgstr ""
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"hd_id9826960\n"
-"help.text"
-msgid "Column"
-msgstr "Kolonë"
-
-#: type_column_bar.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"type_column_bar.xhp\n"
-"par_id2244026\n"
+"wiz_chart_type.xhp\n"
+"par_id7334208\n"
"help.text"
-msgid "This type shows a bar chart or bar graph with vertical bars. The height of each bar is proportional to its value. The x axis shows categories. The y axis shows the value for each category."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Set the number of lines for the Column and Line chart type.</ahelp>"
msgstr ""
-#: type_column_bar.xhp
+#: wiz_chart_type.xhp
msgctxt ""
-"type_column_bar.xhp\n"
-"par_id1281167\n"
+"wiz_chart_type.xhp\n"
+"par_id4485000\n"
"help.text"
-msgid "Normal - this subtype shows all data values belonging to a category next to each other. Main focus is on the individual absolute values, compared to every other value."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Chart Type dialog.</ahelp>"
msgstr ""
-#: type_column_bar.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"type_column_bar.xhp\n"
-"par_id3249000\n"
+"wiz_data_range.xhp\n"
+"tit\n"
"help.text"
-msgid "Stacked - this subtype shows the data values of each category on top of each other. Main focus is the overall category value and the individual contribution of each value within its category."
-msgstr ""
+msgid "Chart Wizard - Data Range"
+msgstr "Modifiko intervalin e të dhënave për grafikon"
-#: type_column_bar.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"type_column_bar.xhp\n"
-"par_id6968901\n"
+"wiz_data_range.xhp\n"
+"bm_id2429578\n"
"help.text"
-msgid "Percent - this subtype shows the relative percentage of each data value with regard to the total of its category. Main focus is the relative contribution of each value to the category's total."
+msgid "<bookmark_value>data ranges in charts</bookmark_value>"
msgstr ""
-#: type_column_bar.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"type_column_bar.xhp\n"
-"par_id2224494\n"
+"wiz_data_range.xhp\n"
+"hd_id8313852\n"
"help.text"
-msgid "You can enable a <link href=\"text/schart/01/three_d_view.xhp\">3D view</link> of the data values. The \"realistic\" scheme tries to give the best 3D look. The \"simple\" scheme tries to mimic the chart view of other Office products."
+msgid "<variable id=\"wiz_data_range\"><link href=\"text/schart/01/wiz_data_range.xhp\">Chart Wizard - Data Range</link></variable>"
msgstr ""
-#: type_column_bar.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"type_column_bar.xhp\n"
-"par_id7359233\n"
+"wiz_data_range.xhp\n"
+"par_id8829309\n"
"help.text"
-msgid "For 3D charts, you can select the shape of each data value from Box, Cylinder, Cone, and Pyramid."
+msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can select one single source of data range. This range may consist of more than one rectangular range of cells."
msgstr ""
-#: type_column_bar.xhp
-msgctxt ""
-"type_column_bar.xhp\n"
-"hd_id955839\n"
-"help.text"
-msgid "Bar"
-msgstr "Shiriti h"
-
-#: type_column_bar.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"type_column_bar.xhp\n"
-"par_id6596881\n"
+"wiz_data_range.xhp\n"
+"par_id6401867\n"
"help.text"
-msgid "This type shows a bar chart or bar graph with horizontal bars. The length of each bar is proportional to its value. The y axis shows categories. The x axis shows the value for each category."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Data Ranges dialog where you can edit Data Range and Data Series.</ahelp>"
msgstr ""
-#: type_column_bar.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"type_column_bar.xhp\n"
-"par_id8750572\n"
+"wiz_data_range.xhp\n"
+"par_id2025818\n"
"help.text"
-msgid "The subtypes are the same as for the Column type."
+msgid "Use the Chart Wizard - Data Series page if you need more control over the data ranges."
msgstr ""
-#: 04040000.xhp
-msgctxt ""
-"04040000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Axes"
-msgstr "Boshte"
-
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"bm_id3147428\n"
+"wiz_data_range.xhp\n"
+"par_id8466139\n"
"help.text"
-msgid "<bookmark_value>axes; showing axes in charts</bookmark_value><bookmark_value>charts; showing axes</bookmark_value><bookmark_value>X axes; showing</bookmark_value><bookmark_value>Y axes; showing</bookmark_value><bookmark_value>Z axes; showing</bookmark_value><bookmark_value>axes; better scaling</bookmark_value><bookmark_value>secondary axes in charts</bookmark_value>"
+msgid "This dialog is only available for charts based on a Calc or Writer table."
msgstr ""
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"hd_id3147428\n"
-"1\n"
+"wiz_data_range.xhp\n"
+"hd_id1877193\n"
"help.text"
-msgid "Axes"
-msgstr "Boshte"
+msgid "To specify a data range"
+msgstr "Modifiko intervalin e të dhënave për grafikon"
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3150330\n"
-"2\n"
+"wiz_data_range.xhp\n"
+"par_id5924863\n"
"help.text"
-msgid "<variable id=\"achsen\"><ahelp hid=\".uno:InsertMenuAxes\">Specifies the axes to be displayed in the chart.</ahelp></variable>"
+msgid "Select the data range. Do one of the following:"
msgstr ""
-#: 04040000.xhp
-msgctxt ""
-"04040000.xhp\n"
-"hd_id3156385\n"
-"46\n"
-"help.text"
-msgid "Major axis"
-msgstr "Boshtet kryesore"
-
-#: 04040000.xhp
-msgctxt ""
-"04040000.xhp\n"
-"hd_id3146316\n"
-"5\n"
-"help.text"
-msgid "X axis"
-msgstr "Boshti X"
-
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3145230\n"
-"6\n"
+"wiz_data_range.xhp\n"
+"par_id4357432\n"
"help.text"
-msgid "<ahelp hid=\"SCH_CHECKBOX_DLG_AXIS_CB_X_PRIMARY\">Displays the X axis as a line with subdivisions.</ahelp>"
+msgid "Enter the data range in the text box."
msgstr ""
-#: 04040000.xhp
-msgctxt ""
-"04040000.xhp\n"
-"hd_id3147003\n"
-"17\n"
-"help.text"
-msgid "Y axis"
-msgstr "Boshti Y"
-
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3154020\n"
-"18\n"
+"wiz_data_range.xhp\n"
+"par_id5626392\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_PRIMARY\">Displays the Y axis as a line with subdivisions.</ahelp>"
+msgid "In Calc, an example data range would be \"$Sheet1.$B$3:$B$14\". Note that a data range may consist of more than one region in a spreadsheet, e.g. \"$Sheet1.A1:A5;$Sheet1.D1:D5\" is also a valid data range. In Writer, an example data range would be \"Table1.A1:E4\"."
msgstr ""
-#: 04040000.xhp
-msgctxt ""
-"04040000.xhp\n"
-"hd_id3150345\n"
-"28\n"
-"help.text"
-msgid "Z axis"
-msgstr "Boshti Z"
-
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3155113\n"
-"29\n"
+"wiz_data_range.xhp\n"
+"par_id1363872\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Z_PRIMARY\">Displays the Z axis as a line with subdivisions.</ahelp> This axis can only be displayed in 3D charts."
+msgid "In Calc, click <emph>Select data range</emph> to minimize the dialog, then drag over a cell area to select the data range."
msgstr ""
-#: 04040000.xhp
-msgctxt ""
-"04040000.xhp\n"
-"hd_id3150206\n"
-"36\n"
-"help.text"
-msgid "Secondary axis"
-msgstr "Boshti dytësore"
-
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3166428\n"
-"37\n"
+"wiz_data_range.xhp\n"
+"par_id6823938\n"
"help.text"
-msgid "Use this area to assign a second axis to your chart. If a data series is already assigned to this axis, $[officename] automatically displays the axis and the label. You can turn off these settings later on. If no data has been assigned to this axis and you activate this area, the values of the primary Y axis are applied to the secondary axis."
+msgid "If you want a data range of multiple cell areas that are not next to each other, enter the first range, then manually add a semicolon at the end of the text box, then enter the other ranges. Use a semicolon as delimiter between ranges."
msgstr ""
-#: 04040000.xhp
-msgctxt ""
-"04040000.xhp\n"
-"hd_id3152988\n"
-"44\n"
-"help.text"
-msgid "X axis"
-msgstr "Boshti X"
-
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3156445\n"
-"45\n"
+"wiz_data_range.xhp\n"
+"par_id1434369\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_X_SECONDARY\">Displays a secondary X axis in the chart.</ahelp>"
+msgid "Click one of the options for data series in rows or in columns."
msgstr ""
-#: 04040000.xhp
-msgctxt ""
-"04040000.xhp\n"
-"hd_id3152896\n"
-"38\n"
-"help.text"
-msgid "Y axis"
-msgstr "Boshti Y"
-
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3153818\n"
-"39\n"
+"wiz_data_range.xhp\n"
+"par_id7524033\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">Displays a secondary Y axis in the chart.</ahelp>"
+msgid "Check whether the data range has labels in the first row or in the first column or both."
msgstr ""
-#: 04040000.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"04040000.xhp\n"
-"par_id3154762\n"
-"41\n"
+"wiz_data_range.xhp\n"
+"par_id5256508\n"
"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:DLG_AXIS:CB_Y_SECONDARY\">The major axis and the secondary axis can have different scaling. For example, you can scale one axis to 2 in. and the other to 1.5 in. </ahelp>"
+msgid "In the preview you can see how the final chart will look."
msgstr ""
-#: type_column_line.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"tit\n"
+"wiz_data_range.xhp\n"
+"par_id379650\n"
"help.text"
-msgid "Chart Type Column and Line"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the data range that you want to include in your chart. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
msgstr ""
-#: type_column_line.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"bm_id5976744\n"
+"wiz_data_range.xhp\n"
+"par_id953703\n"
"help.text"
-msgid "<bookmark_value>column and line charts</bookmark_value><bookmark_value>chart types;column and line</bookmark_value><bookmark_value>combination charts</bookmark_value>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Data series get their data from consecutive rows in the selected range. For scatter charts, the first data series will contain x-values for all series. All other data series are used as y-values, one for each series.</ahelp>"
msgstr ""
-#: type_column_line.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"hd_id8596453\n"
+"wiz_data_range.xhp\n"
+"par_id4496597\n"
"help.text"
-msgid "<variable id=\"type_column_line\"><link href=\"text/schart/01/type_column_line.xhp\">Chart Type Column and Line</link></variable>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Data series get their data from consecutive columns in the selected range. For scatter charts, the first data column will contain x-values for all series. All other data columns are used as y-values, one for each series.</ahelp>"
msgstr ""
-#: type_column_line.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id4818567\n"
+"wiz_data_range.xhp\n"
+"par_id2898953\n"
"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">For data series in columns: The first row in the range is used as names for data series. For data series in rows: The first row in the range is used as categories. The remaining rows comprise the data series. If this check box is not selected, all rows are data series.</ahelp>"
msgstr ""
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"hd_id2451551\n"
-"help.text"
-msgid "Column and Line"
-msgstr "Thyerjet e faqes dhe kolonës"
-
-#: type_column_line.xhp
+#: wiz_data_range.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id3101901\n"
+"wiz_data_range.xhp\n"
+"par_id7546311\n"
"help.text"
-msgid "A Column and Line chart is a combination of a <link href=\"text/schart/01/type_column_bar.xhp\">Column chart</link> with a <link href=\"text/schart/01/type_line.xhp\">Line chart</link>."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">For data series in columns: The first column in the range is used as names for data series. For data series in rows: The first column in the range is used as categories. The remaining columns comprise the data columns. If this check box is not selected, all columns are data columns.</ahelp>"
msgstr ""
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id7910397\n"
-"help.text"
-msgid "Select one of the variants"
-msgstr "Zgjedh njërin nga opcionet e mëposhtme:"
-
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id5244300\n"
+"wiz_data_series.xhp\n"
+"tit\n"
"help.text"
-msgid "Columns and Lines. The rectangles of the column data series are drawn side by side so that you can easily compare their values."
-msgstr ""
+msgid "Chart Wizard - Data Series"
+msgstr "VetëMbush Seritë e të Dhënave: automatik"
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id7163609\n"
+"wiz_data_series.xhp\n"
+"bm_id8641621\n"
"help.text"
-msgid "Stacked Columns and Lines. The rectangles of the column data series are drawn stacked above each other, so that the height of a column visualizes the sum of the data values."
+msgid "<bookmark_value>order of chart data</bookmark_value><bookmark_value>data series</bookmark_value>"
msgstr ""
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id1842097\n"
+"wiz_data_series.xhp\n"
+"hd_id6124149\n"
"help.text"
-msgid "You can insert a second y-axis with <link href=\"text/schart/01/04040000.xhp\">Insert - Axes</link> after you finish the wizard."
+msgid "<variable id=\"wiz_data_series\"><link href=\"text/schart/01/wiz_data_series.xhp\">Chart Wizard - Data Series</link></variable>"
msgstr ""
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"hd_id8297677\n"
-"help.text"
-msgid "To specify a data range"
-msgstr "Modifiko intervalin e të dhënave për grafikon"
-
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id8871120\n"
+"wiz_data_series.xhp\n"
+"par_id9651478\n"
"help.text"
-msgid "The leftmost columns (or the top rows) of the selected data range provide the data that are shown as Columns objects. The other columns or rows of the data range provide the data for the Lines objects. You can change this assignment in the <emph>Data Series</emph> dialog."
+msgid "On this page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can change the source range of all data series separately, including their labels. You can also change the range of the categories. You can first select the data range on the Data Range page and then remove unnecessary data series or add data series from other cells here."
msgstr ""
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id2952055\n"
-"help.text"
-msgid "Select the data range."
-msgstr "~Intervali i të dhënave burimore"
-
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id594500\n"
+"wiz_data_series.xhp\n"
+"par_id6326487\n"
"help.text"
-msgid "Click one of the options for data series in rows or in columns."
+msgid "If there seem to be too many options on this page, just define the data range on the Chart Wizard - Data Range page and skip this page."
msgstr ""
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id1944944\n"
+"wiz_data_series.xhp\n"
+"par_id686361\n"
"help.text"
-msgid "Check whether the data range has labels in the first row or in the first column or both."
+msgid "This dialog is only available for charts based on a Calc or Writer table."
msgstr ""
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"hd_id6667683\n"
+"wiz_data_series.xhp\n"
+"hd_id9241615\n"
"help.text"
msgid "Organizing data series"
msgstr "Të Dhënat Serike $(ROW)"
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id7616809\n"
+"wiz_data_series.xhp\n"
+"par_id7159337\n"
"help.text"
msgid "In the Data Series list box you see a list of all data series in the current chart."
msgstr ""
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id9770195\n"
-"help.text"
-msgid "The column data series are positioned at the top of the list, the line data series at the bottom of the list."
-msgstr ""
-
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id1446272\n"
+"wiz_data_series.xhp\n"
+"par_id4921720\n"
"help.text"
msgid "To organize the data series, select an entry in the list."
msgstr ""
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id3779717\n"
+"wiz_data_series.xhp\n"
+"par_id6627094\n"
"help.text"
msgid "Click Add to add another data series below the selected entry. The new data series has the same type as the selected entry."
msgstr ""
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id5056611\n"
+"wiz_data_series.xhp\n"
+"par_id2926419\n"
"help.text"
msgid "Click Remove to remove the selected entry from the Data Series list."
msgstr ""
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id7786492\n"
+"wiz_data_series.xhp\n"
+"par_id4443800\n"
"help.text"
-msgid "Use the Up and Down arrow buttons to move the selected entry in the list up or down. This way you can convert a Column data series to a List data series and back. This does not change the order in the data source table, but changes only the arrangement in the chart."
+msgid "Use the Up and Down arrow buttons to move the selected entry in the list up or down. This does not change the order in the data source table, but changes only the arrangement in the chart."
msgstr ""
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"hd_id265816\n"
+"wiz_data_series.xhp\n"
+"hd_id9777520\n"
"help.text"
msgid "Editing data series"
msgstr "Të Dhënat Serike $(ROW)"
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id6768700\n"
+"wiz_data_series.xhp\n"
+"par_id1474654\n"
"help.text"
msgid "Click an entry in the list to view and edit the properties for that entry."
msgstr ""
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id1924497\n"
+"wiz_data_series.xhp\n"
+"par_id4855189\n"
"help.text"
msgid "In the Data Ranges list box you see the role names and cell ranges of the data series components."
msgstr ""
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id5081942\n"
+"wiz_data_series.xhp\n"
+"par_id9475081\n"
"help.text"
msgid "Click an entry, then edit the contents in the text box below."
msgstr ""
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id2958464\n"
+"wiz_data_series.xhp\n"
+"par_id4695272\n"
"help.text"
msgid "The label next to the text box states the currently selected role."
msgstr ""
-#: type_column_line.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"type_column_line.xhp\n"
-"par_id883816\n"
+"wiz_data_series.xhp\n"
+"par_id3931699\n"
"help.text"
msgid "Enter the range or click <emph>Select data range</emph> to minimize the dialog and select the range with the mouse."
msgstr ""
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id5091708\n"
-"help.text"
-msgid "The range for a data role, like Y-Values, must not include a label cell."
-msgstr ""
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"hd_id974456\n"
-"help.text"
-msgid "Editing categories or data labels"
-msgstr ""
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id2767113\n"
-"help.text"
-msgid "Enter or select a cell range that will be used as text for categories or data labels."
-msgstr ""
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id301828\n"
-"help.text"
-msgid "The values in the Categories range will be shown as labels on the x axis."
-msgstr ""
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"hd_id8996246\n"
-"help.text"
-msgid "Inserting chart elements"
-msgstr "Grumbulli vertikal (2 elemente)"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id5729544\n"
-"help.text"
-msgid "Use the Chart Elements page of the Chart Wizard to insert any of the following elements:"
-msgstr ""
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id2932828\n"
-"help.text"
-msgid "Chart titles"
-msgstr "~Të gjithë Titujt..."
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id9449446\n"
-"help.text"
-msgid "Legend"
-msgstr "Legjendë"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id8122196\n"
-"help.text"
-msgid "Visible grid lines"
-msgstr "Rrjeta (vetëm linjat)"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id9909665\n"
-"help.text"
-msgid "For additional elements use the Insert menu of the chart in edit mode. There you can define the following elements:"
-msgstr ""
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id9141819\n"
-"help.text"
-msgid "Secondary axes"
-msgstr "~Të gjithë Boshtet..."
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id6354869\n"
-"help.text"
-msgid "Minor grids"
-msgstr "Fut rrjetat e kordinatave"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id2685323\n"
-"help.text"
-msgid "Data labels"
-msgstr "Emërtimi i të dhënave"
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id6042664\n"
-"help.text"
-msgid "Statistics, for example mean values, y error bars and trend lines"
-msgstr ""
-
-#: type_column_line.xhp
-msgctxt ""
-"type_column_line.xhp\n"
-"par_id7889950\n"
-"help.text"
-msgid "To set different data labels for each data series, use the properties dialog of the data series."
-msgstr ""
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"tit\n"
-"help.text"
-msgid "Chart Type Net"
-msgstr "Redakto Tipin e Diagramit"
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"bm_id2193975\n"
-"help.text"
-msgid "<bookmark_value>net charts</bookmark_value><bookmark_value>chart types;net</bookmark_value><bookmark_value>radar charts, see net charts</bookmark_value>"
-msgstr ""
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"hd_id1990722\n"
-"help.text"
-msgid "<variable id=\"type_net\"><link href=\"text/schart/01/type_net.xhp\">Chart Type Net</link></variable>"
-msgstr ""
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"par_id40589\n"
-"help.text"
-msgid "On the first page of the <link href=\"text/schart/01/wiz_chart_type.xhp\">Chart Wizard</link> you can choose a chart type."
-msgstr ""
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"hd_id1391338\n"
-"help.text"
-msgid "Net"
-msgstr "Neto"
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"par_id7812433\n"
-"help.text"
-msgid "A Net chart displays data values as points connected by some lines, in a grid net that resembles a spider net or a radar tube display."
-msgstr ""
-
-#: type_net.xhp
-msgctxt ""
-"type_net.xhp\n"
-"par_id3512375\n"
-"help.text"
-msgid "For each row of chart data, a radial is shown on which the data is plotted. All data values are shown with the same scale, so all data values should have about the same magnitude."
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Data Labels"
-msgstr "~Emërtimet e të Dhënave..."
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"bm_id3150275\n"
-"help.text"
-msgid "<bookmark_value>data labels in charts</bookmark_value> <bookmark_value>labels; for charts</bookmark_value> <bookmark_value>charts; data labels</bookmark_value> <bookmark_value>data values in charts</bookmark_value> <bookmark_value>chart legends; showing icons with labels</bookmark_value>"
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3150275\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"datenbeschriftung\"><link href=\"text/schart/01/04030000.xhp\" name=\"Data labels\">Data Labels</link></variable>"
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id3154684\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"besch\"><ahelp hid=\".uno:InsertMenuDataLabels\">Opens the<emph> Data Labels </emph>dialog, which enables you to set the data labels.</ahelp></variable>"
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id0810200912120416\n"
-"help.text"
-msgid "If an element of a data series is selected, this command works on that data series only. If no element is selected, this command works on all data series."
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3149401\n"
-"17\n"
-"help.text"
-msgid "Show value as number"
-msgstr "Vlera të interpretohet si një numër."
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id3150751\n"
-"18\n"
-"help.text"
-msgid "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_NUMBER\">Displays the absolute values of the data points.</ahelp>"
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id5077059\n"
-"help.text"
-msgid "Number format"
-msgstr "Formati i numrit"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id9794610\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog to select the number format.</ahelp>"
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3145643\n"
-"9\n"
-"help.text"
-msgid "Show value as percentage"
-msgstr "Definon vlerën llogjike si PASAKTË."
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id3156382\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SCH_RADIOBUTTON_DLG_DATA_DESCR_RB_PERCENT\">Displays the percentage of the data points in each column.</ahelp>"
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id1316873\n"
-"help.text"
-msgid "Percentage format"
-msgstr "Format tjetër"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id5476241\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog to select the percentage format.</ahelp>"
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3145228\n"
-"11\n"
-"help.text"
-msgid "Show category"
-msgstr "Fshije Kategorinë"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id3154702\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_TEXT\">Shows the data point text labels.</ahelp>"
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3150298\n"
-"15\n"
-"help.text"
-msgid "Show legend key"
-msgstr "Trego ikonën legjendë me emërtim"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id3150205\n"
-"16\n"
-"help.text"
-msgid "<ahelp hid=\"SCH_CHECKBOX_TP_DATA_DESCR_CB_SYMBOL\">Displays the legend icons next to each data point label.</ahelp>"
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id3836787\n"
-"help.text"
-msgid "Separator"
-msgstr "Ndarës"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id6668904\n"
-"help.text"
-msgid "<ahelp hid=\".\">Selects the separator between multiple text strings for the same object.</ahelp>"
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id4319284\n"
-"help.text"
-msgid "Placement"
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id5159459\n"
-"help.text"
-msgid "<ahelp hid=\".\">Selects the placement of data labels relative to the objects.</ahelp>"
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id1106200812280727\n"
-"help.text"
-msgid "Text Direction"
-msgstr "Drejtimi i tekstit"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id1106200812280719\n"
-"help.text"
-msgid "<ahelp hid=\".\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"hd_id1007200901590713\n"
-"help.text"
-msgid "Rotate Text"
-msgstr "Rrotullo tekstin"
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id1007200901590752\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click in the dial to set the text orientation for the data labels.</ahelp>"
-msgstr ""
-
-#: 04030000.xhp
-msgctxt ""
-"04030000.xhp\n"
-"par_id1007200901590757\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the counterclockwise rotation angle for the data labels.</ahelp>"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Trend Lines"
-msgstr "Rreshtat vertikal"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"bm_id1744743\n"
-"help.text"
-msgid "<bookmark_value>calculating;regression curves</bookmark_value> <bookmark_value>regression curves in charts</bookmark_value> <bookmark_value>trend lines in charts</bookmark_value> <bookmark_value>mean value lines in charts</bookmark_value>"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id5409405\n"
-"help.text"
-msgid "<variable id=\"regression\"><link href=\"text/schart/01/04050100.xhp\">Trend Lines</link></variable>"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7272255\n"
-"help.text"
-msgid "<variable id=\"trendlinestext\"><ahelp hid=\".\">Trend lines can be added to all 2D chart types except for Pie and Stock charts.</ahelp></variable>"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id143436\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">No trend line is shown.</ahelp>"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5716727\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">A linear trend line is shown.</ahelp>"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5840021\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">A logarithmic trend line is shown.</ahelp>"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9417096\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">An exponential trend line is shown.</ahelp>"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8482924\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">A power trend line is shown.</ahelp>"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8962370\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the trend line equation next to the trend line.</ahelp>"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id6889858\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the coefficient of determination next to the trend line.</ahelp>"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8398998\n"
-"help.text"
-msgid "If you insert a trend line to a chart type that uses categories, like <emph>Line </emph>or <emph>Column, </emph>then the numbers 1, 2, 3, <emph>…</emph> are used as x-values to calculate the trend line."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5676747\n"
-"help.text"
-msgid "To insert trend lines for all data series, double-click the chart to enter edit mode. Choose <item type=\"menuitem\">Insert - Trend Lines</item>, then select the type of trend line from None, Linear, Logarithmic, Exponential, or Power trend line."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id4349192\n"
-"help.text"
-msgid "To insert a trend line for a single data series, select the data series in the chart, right-click to open the context menu, and choose <item type=\"menuitem\">Insert - Trend Line</item>."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9337443\n"
-"help.text"
-msgid "To delete a single trend line or mean value line, click the line, then press the Del key."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id4529251\n"
-"help.text"
-msgid "To delete all trend lines, choose <item type=\"menuitem\">Insert - Trend Lines</item>, then select <emph>None</emph>."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id296334\n"
-"help.text"
-msgid "A trend line is shown in the legend automatically."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id4072084\n"
-"help.text"
-msgid "<ahelp hid=\".\">Mean Value Lines are special trend lines that show the mean value. Use <item type=\"menuitem\">Insert - Mean Value Lines</item> to insert mean value lines for data series.</ahelp>"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9569689\n"
-"help.text"
-msgid "The trend line has the same color as the corresponding data series. To change the line properties, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Line</item>."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id846888\n"
-"help.text"
-msgid "<ahelp hid=\".\">To show the trend line equation, select the trend line in the chart, right-click to open the context menu, and choose <emph>Insert Trend Line Equation</emph>.</ahelp>"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8962065\n"
-"help.text"
-msgid "When the chart is in edit mode, %PRODUCTNAME gives you the equation of the trend line and the coefficient of determination R². Click on the trend line to see the information in the status bar."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id1328470\n"
-"help.text"
-msgid "For a category chart (for example a line chart), the trend line information is calculated using numbers 1, 2, 3, … as x-values. This is also true if your data series uses other numbers as names for the x-values. For such charts the XY chart type might be more suitable."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8092593\n"
-"help.text"
-msgid "To show the equation and the coefficient of determination, select the trend line and choose <item type=\"menuitem\">Format - Format Selection - Equation</item>."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7971434\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show equation to see the equation of the trend line.</ahelp>"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id558793\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable Show Coefficient of Determination to see the determination coefficient of the trend line.</ahelp>"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7735221\n"
-"help.text"
-msgid "You can also calculate the parameters using Calc functions as follows."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id5744193\n"
-"help.text"
-msgid "The linear regression equation"
-msgstr "Kthen pjerrtësin e linjës lineare prapavajtëse."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9251991\n"
-"help.text"
-msgid "The <emph>linear regression</emph> follows the equation <item type=\"literal\">y=m*x+b</item>."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7951902\n"
-"help.text"
-msgid "m = SLOPE(Data_Y;Data_X)"
-msgstr "Të dhënat për ["
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id6637165\n"
-"help.text"
-msgid "b = INTERCEPT(Data_Y ;Data_X)"
-msgstr "Të dhënat për ["
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7879268\n"
-"help.text"
-msgid "Calculate the coefficient of determination by"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9244361\n"
-"help.text"
-msgid "r² = RSQ(Data_Y;Data_X)"
-msgstr "Shto të dhënat si:"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id2083498\n"
-"help.text"
-msgid "Besides m, b and r² the array function <emph>LINEST</emph> provides additional statistics for a regression analysis."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id2538834\n"
-"help.text"
-msgid "The logarithm regression equation"
-msgstr "Llogarit logaritmin natyror të një numri."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id394299\n"
-"help.text"
-msgid "The <emph>logarithm regression</emph> follows the equation <item type=\"literal\">y=a*ln(x)+b</item>."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id2134159\n"
-"help.text"
-msgid "a = SLOPE(Data_Y;LN(Data_X))"
-msgstr "Shto të dhënat si:"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5946531\n"
-"help.text"
-msgid "b = INTERCEPT(Data_Y ;LN(Data_X))"
-msgstr "Shto të dhënat si:"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5649281\n"
-"help.text"
-msgid "r² = RSQ(Data_Y;LN(Data_X))"
-msgstr "Shto të dhënat si:"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id7874080\n"
-"help.text"
-msgid "The exponential regression equation"
-msgstr "Formati numerik: eksponencial"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id4679097\n"
-"help.text"
-msgid "For exponential trend lines a transformation to a linear model takes place. The optimal curve fitting is related to the linear model and the results are interpreted accordingly."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9112216\n"
-"help.text"
-msgid "The exponential regression follows the equation <item type=\"literal\">y=b*exp(a*x)</item> or <item type=\"literal\">y=b*m^x</item>, which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*x</item> or <item type=\"literal\">ln(y)=ln(b)+ln(m)*x</item> respectively."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id4416638\n"
-"help.text"
-msgid "a = SLOPE(LN(Data_Y);Data_X)"
-msgstr "Shto të dhënat si:"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id1039155\n"
-"help.text"
-msgid "The variables for the second variation are calculated as follows:"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7184057\n"
-"help.text"
-msgid "m = EXP(SLOPE(LN(Data_Y);Data_X))"
-msgstr "Shto të dhënat si:"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id786767\n"
-"help.text"
-msgid "b = EXP(INTERCEPT(LN(Data_Y);Data_X))"
-msgstr "Të dhënat për ["
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7127292\n"
-"help.text"
-msgid "Calculate the coefficient of determination by"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5437177\n"
-"help.text"
-msgid "r² = RSQ(LN(Data_Y);Data_X)"
-msgstr "Shto të dhënat si:"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id6946317\n"
-"help.text"
-msgid "Besides m, b and r² the array function LOGEST provides additional statistics for a regression analysis."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id6349375\n"
-"help.text"
-msgid "The power regression equation"
-msgstr "Modi i ruajtjes së energjisë"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id1857661\n"
-"help.text"
-msgid "For <emph>power regression</emph> curves a transformation to a linear model takes place. The power regression follows the equation <item type=\"literal\">y=b*x^a</item> , which is transformed to <item type=\"literal\">ln(y)=ln(b)+a*ln(x)</item>."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8517105\n"
-"help.text"
-msgid "a = SLOPE(LN(Data_Y);LN(Data_X))"
-msgstr "Shto të dhënat si:"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id9827265\n"
-"help.text"
-msgid "b = EXP(INTERCEPT(LN(Data_Y);LN(Data_X))"
-msgstr "Shto të dhënat si:"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id2357249\n"
-"help.text"
-msgid "r² = RSQ(LN(Data_Y);LN(Data_X))"
-msgstr "Shto të dhënat si:"
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id9204077\n"
-"help.text"
-msgid "Constraints"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7393719\n"
-"help.text"
-msgid "The calculation of the trend line considers only data pairs with the following values:"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id7212744\n"
-"help.text"
-msgid "logarithm regression: only positive x-values are considered,"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id1664479\n"
-"help.text"
-msgid "exponential regression: only positive y-values are considered,"
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8734702\n"
-"help.text"
-msgid "power regression: only positive x-values and positive y-values are considered."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id181279\n"
-"help.text"
-msgid "You should transform your data accordingly; it is best to work on a copy of the original data and transform the copied data."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"hd_id7907040\n"
-"help.text"
-msgid "The polynomial regression equation"
-msgstr "Llogarit pikat përkrah një linje prapavajtëse."
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8918729\n"
-"help.text"
-msgid "A <emph>polynomial regression</emph> curve cannot be added automatically. You must calculate this curve manually."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id33875\n"
-"help.text"
-msgid "Create a table with the columns x, x², x³, … , xⁿ, y up to the desired degree n."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8720053\n"
-"help.text"
-msgid "Use the formula <item type=\"literal\">=LINEST(Data_Y,Data_X)</item> with the complete range x to xⁿ (without headings) as Data_X."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id5068514\n"
-"help.text"
-msgid "The first row of the LINEST output contains the coefficients of the regression polynomial, with the coefficient of xⁿ at the leftmost position."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id8202154\n"
-"help.text"
-msgid "The first element of the third row of the LINEST output is the value of r². See the <link href=\"text/scalc/01/04060107.xhp#Section8\">LINEST</link> function for details on proper use and an explanation of the other output parameters."
-msgstr ""
-
-#: 04050100.xhp
-msgctxt ""
-"04050100.xhp\n"
-"par_id4562211\n"
-"help.text"
-msgid "<link href=\"text/schart/01/04050000.xhp\">Y Error Bars tab page</link>"
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Options"
-msgstr "Opcionet"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"bm_id3149400\n"
-"help.text"
-msgid "<bookmark_value>aligning; 2D charts</bookmark_value> <bookmark_value>charts; aligning</bookmark_value> <bookmark_value>pie charts;options</bookmark_value>"
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3149400\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/schart/01/04060000.xhp\" name=\"Options\">Options</link>"
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3155067\n"
-"2\n"
-"help.text"
-msgid "Use this dialog to define some options that are available for specific chart types. The contents of the Options dialog vary with the chart type."
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3150043\n"
-"9\n"
-"help.text"
-msgid "Align data series to:"
-msgstr "Rradhit të dhënat serike me"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3145228\n"
-"10\n"
-"help.text"
-msgid "In this area you can choose between two Y axis scaling modes. The axes can only be scaled and given properties separately."
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3147346\n"
-"4\n"
-"help.text"
-msgid "Primary Y axis"
-msgstr "Boshtet Y primare"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3147005\n"
-"15\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_1\">This option is active as default. All data series are aligned to the primary Y axis.</ahelp>"
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3143221\n"
-"5\n"
-"help.text"
-msgid "Secondary Y axis"
-msgstr "~Boshti dytësor X..."
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3154656\n"
-"11\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:RADIOBUTTON:TP_OPTIONS:RBT_OPT_AXIS_2\">Changes the scaling of the Y axis. This axis is only visible when at least one data series is assigned to it and the axis view is active.</ahelp>"
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3166423\n"
-"6\n"
-"help.text"
-msgid "Settings"
-msgstr "Parametrat"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3150365\n"
-"12\n"
-"help.text"
-msgid "Define the settings for a bar chart in this area. Any changes apply to all data series of the chart, not to the selected data only."
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3145584\n"
-"7\n"
-"help.text"
-msgid "Spacing"
-msgstr "Hapësira"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3155376\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_GAP\">Defines the spacing between the columns in percent.</ahelp> The maximal spacing is 600%."
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3145384\n"
-"8\n"
-"help.text"
-msgid "Overlap"
-msgstr "Bllokim"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3156447\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:METRICFIELD:TP_OPTIONS:MT_OVERLAP\">Defines the necessary settings for overlapping data series.</ahelp> You can choose between -100 and +100%."
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3153305\n"
-"16\n"
-"help.text"
-msgid "Connection Lines"
-msgstr "Vijat lidhëse"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id3148868\n"
-"17\n"
-"help.text"
-msgid "<ahelp hid=\"SCH:CHECKBOX:TP_OPTIONS:CB_CONNECTOR\">For \"stacked\" and \"percent\" column (vertical bar) charts, mark this check box to connect the column layers that belong together with lines.</ahelp>"
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id9842219\n"
-"help.text"
-msgid "Show bars side by side"
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id9800103\n"
-"help.text"
-msgid "If two axes are shown in a bar chart, and some data series are attached to the first axis, while some other data series are attached to the second axis, then both sets of data series are shown independently, overlapping each other."
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id2144535\n"
-"help.text"
-msgid "As a result, bars attached to the first y-axis are partly or completely hidden by bars attached to the second y-axis. To avoid this, enable the option to display bars side by side. <ahelp hid=\".\">The bars from different data series are shown as if they were attached only to one axis.</ahelp>"
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id24414\n"
-"help.text"
-msgid "Clockwise direction"
-msgstr "Drejtimi i tekstit"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id2527237\n"
-"help.text"
-msgid "Available for pie and donut charts. <ahelp hid=\".\">The default direction in which the pieces of a pie chart are ordered is counterclockwise. Enable the <emph>Clockwise direction</emph> checkbox to draw the pieces in opposite direction.</ahelp>"
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id401013\n"
-"help.text"
-msgid "Starting angle"
-msgstr "Kontrolli i këndit"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id761131\n"
-"help.text"
-msgid "<ahelp hid=\".\">Drag the small dot along the circle or click any position on the circle to set the starting angle of a pie or donut chart. The starting angle is the mathematical angle position where the first piece is drawn. The value of 90 degrees draws the first piece at the 12 o'clock position. A value of 0 degrees starts at the 3 o'clock position.</ahelp>"
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id553910\n"
-"help.text"
-msgid "In 3D pie and donut charts that were created with older versions of the software, the starting angle is 0 degrees instead of 90 degrees. For old and new 2D charts the default starting angle is 90 degrees."
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id1414838\n"
-"help.text"
-msgid "When you change the starting angle or the direction, only current versions of the software show the changed values. Older versions of the software display the same document using the default values: Always counterclockwise direction and a starting value of 90 degrees (2D pie charts) or 0 degrees (3D pie charts)."
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id3179723\n"
-"help.text"
-msgid "Degrees"
-msgstr "0 shkallë"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id2164067\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the starting angle between 0 and 359 degrees. You can also click the arrows to change the displayed value.</ahelp>"
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id0305200910524613\n"
-"help.text"
-msgid "Plot missing values"
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id0305200910524650\n"
-"help.text"
-msgid "Sometimes values are missing in a data series that is shown in a chart. You can select from different options how to plot the missing values. The options are available for some chart types only."
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id0305200910524823\n"
-"help.text"
-msgid "Leave gap"
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id0305200910524811\n"
-"help.text"
-msgid "<ahelp hid=\".\">For a missing value, no data will be shown. This is the default for chart types Column, Bar, Line, Net.</ahelp>"
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id0305200910524811\n"
-"help.text"
-msgid "Assume zero"
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id030520091052489\n"
-"help.text"
-msgid "<ahelp hid=\".\">For a missing value, the y-value will be shown as zero. This is the default for chart type Area.</ahelp>"
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id0305200910524837\n"
-"help.text"
-msgid "Continue line"
-msgstr "Vijat lidhëse"
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"par_id0305200910524938\n"
-"help.text"
-msgid "<ahelp hid=\".\">For a missing value, the interpolation from the neighbor values will be shown. This is the default for chart type XY.</ahelp>"
-msgstr ""
-
-#: 04060000.xhp
-msgctxt ""
-"04060000.xhp\n"
-"hd_id0305200910524937\n"
-"help.text"
-msgid "Include values from hidden cells"
-msgstr ""
-
-#: 04060000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id030520091052494\n"
+"wiz_data_series.xhp\n"
+"par_id8626667\n"
"help.text"
-msgid "<ahelp hid=\".\">Check to also show values of currently hidden cells within the source cell range.</ahelp>"
+msgid "If you want a data range of multiple cell areas that are not next to each other, enter the first range, then manually add a semicolon at the end of the text box, then enter the other ranges. Use a semicolon as delimiter between ranges."
msgstr ""
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Y Axis"
-msgstr "Boshti Y"
-
-#: 05040200.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"05040200.xhp\n"
-"bm_id3145673\n"
+"wiz_data_series.xhp\n"
+"par_id5971556\n"
"help.text"
-msgid "<bookmark_value>Y axes; formatting</bookmark_value>"
+msgid "The range for a data role, like Y-Values, must not include a label cell."
msgstr ""
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3145673\n"
-"1\n"
-"help.text"
-msgid "Y Axis"
-msgstr "Boshti Y"
-
-#: 05040200.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3155628\n"
-"2\n"
+"wiz_data_series.xhp\n"
+"hd_id7622608\n"
"help.text"
-msgid "<variable id=\"yachse\"><ahelp hid=\".uno:DiagramAxisY\">Opens the<emph> Y Axis </emph>dialog, to change properties of the Y axis.</ahelp></variable>"
+msgid "Editing categories or data labels"
msgstr ""
-#: 05040200.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3145171\n"
-"3\n"
+"wiz_data_series.xhp\n"
+"par_id9222693\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Character\">Character</link>"
+msgid "Enter or select a cell range that will be used as text for categories or data labels."
msgstr ""
-#: 05040200.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3146119\n"
-"4\n"
+"wiz_data_series.xhp\n"
+"par_id9500106\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Numbers\">Numbers</link>"
+msgid "Depending on the chart type, the texts are shown on the X axis or as data labels."
msgstr ""
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Titles"
-msgstr "Titujt"
-
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"hd_id3147345\n"
-"1\n"
-"help.text"
-msgid "Titles"
-msgstr "Titujt"
-
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3150298\n"
-"2\n"
+"wiz_data_series.xhp\n"
+"par_id5201879\n"
"help.text"
-msgid "<variable id=\"titel\"><ahelp hid=\".uno:InsertMenuTitles\">Opens a dialog to enter or modify the titles in a chart.</ahelp></variable> You can define the text for the main title, subtitle and the axis labels, and specify if they are displayed."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows a list of all data series in the chart. Click an entry to view and edit that data series. Click <emph>Add</emph> to insert a new series into the list after the selected entry.</ahelp>"
msgstr ""
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"hd_id3150207\n"
-"3\n"
-"help.text"
-msgid "Main Title"
-msgstr "Titulli kryesor"
-
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3150371\n"
-"4\n"
+"wiz_data_series.xhp\n"
+"par_id2571794\n"
"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_MAINTITLE\">Marking the <emph>Main Title</emph> option activates the main title. Enter the desired title in the corresponding text field.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows all the data ranges used by the data series that is selected in the Data Series list box. Each data range shows the role name and the source range address.</ahelp>"
msgstr ""
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"hd_id3146980\n"
-"5\n"
-"help.text"
-msgid "Subtitle"
-msgstr "Nëntitull"
-
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3149404\n"
-"6\n"
+"wiz_data_series.xhp\n"
+"par_id2254402\n"
"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_SUBTITLE\">Marking the <emph>Subtitle</emph> option activates the subtitle. Enter the desired title in the corresponding text field.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the source range address from the second column of the Data Range list box. You can change the range in the text box or by dragging in the document. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
msgstr ""
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3152901\n"
-"7\n"
+"wiz_data_series.xhp\n"
+"par_id2419507\n"
"help.text"
-msgid "<variable id=\"sytexttitel\"><ahelp hid=\".uno:ToggleTitle\">Click <emph>Title On/Off</emph> on the Formatting bar to show or hide the title and subtitle.</ahelp></variable>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows the source range address of the categories (the texts you can see on the x-axis of a category chart). For an XY-chart, the text box contains the source range of the data labels which are displayed for the data points. To minimize this dialog while you select the data range in Calc, click the <emph>Select data range</emph> button.</ahelp>"
msgstr ""
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"hd_id3156018\n"
-"8\n"
-"help.text"
-msgid "X axis"
-msgstr "Boshti X"
-
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3152869\n"
-"9\n"
+"wiz_data_series.xhp\n"
+"par_id1091647\n"
"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_X_AXIS\">Marking the <emph>X axis</emph> option activates the X axis title. Enter the desired title in the corresponding text field.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Adds a new entry below the current entry in the Data Series list. If an entry is selected, the new data series gets the same chart type.</ahelp>"
msgstr ""
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"hd_id3159226\n"
-"10\n"
-"help.text"
-msgid "Y axis"
-msgstr "Boshti Y"
-
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3154763\n"
-"11\n"
+"wiz_data_series.xhp\n"
+"par_id8831446\n"
"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Y_AXIS\">Marking the <emph>Y axis</emph> option activates the Y axis title. Enter the desired title in the corresponding text field.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Removes the selected entry from the Data Series list.</ahelp>"
msgstr ""
-#: 04010000.xhp
-msgctxt ""
-"04010000.xhp\n"
-"hd_id3153009\n"
-"12\n"
-"help.text"
-msgid "Z axis"
-msgstr "Boshti Z"
-
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3154710\n"
-"13\n"
+"wiz_data_series.xhp\n"
+"par_id7022309\n"
"help.text"
-msgid "<ahelp hid=\"SCH:EDIT:DLG_TITLE:EDT_Z_AXIS\">Marking the <emph>Z axis</emph> option activates the Z axis title. Enter the desired title in the corresponding text field.</ahelp> This option is only available for 3-D charts."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves up the selected entry in the Data Series list.</ahelp>"
msgstr ""
-#: 04010000.xhp
+#: wiz_data_series.xhp
msgctxt ""
-"04010000.xhp\n"
-"par_id3153073\n"
-"14\n"
+"wiz_data_series.xhp\n"
+"par_id2844019\n"
"help.text"
-msgid "<variable id=\"sytextachse\"><ahelp hid=\".uno:ToggleAxisTitle\">Click <emph>Axes Title On/Off</emph> on the Formatting bar to show or hide the axis labels.</ahelp></variable>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves down the selected entry in the Data Series list.</ahelp>"
msgstr ""
diff --git a/source/sq/helpcontent2/source/text/schart/02.po b/source/sq/helpcontent2/source/text/schart/02.po
index 25ce65e79f2..95e2e470eed 100644
--- a/source/sq/helpcontent2/source/text/schart/02.po
+++ b/source/sq/helpcontent2/source/text/schart/02.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 19:07+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -101,6 +101,57 @@ msgctxt ""
msgid "Data in Columns"
msgstr "E dhëna në kolona"
+#: 01210000.xhp
+msgctxt ""
+"01210000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Scale Text"
+msgstr "Shkallëzo tekstin"
+
+#: 01210000.xhp
+msgctxt ""
+"01210000.xhp\n"
+"bm_id3152996\n"
+"help.text"
+msgid "<bookmark_value>text scaling in charts</bookmark_value><bookmark_value>scaling; text in charts</bookmark_value><bookmark_value>charts;scaling text</bookmark_value>"
+msgstr ""
+
+#: 01210000.xhp
+msgctxt ""
+"01210000.xhp\n"
+"hd_id3152996\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/schart/02/01210000.xhp\" name=\"Scale Text\">Scale Text</link>"
+msgstr ""
+
+#: 01210000.xhp
+msgctxt ""
+"01210000.xhp\n"
+"par_id3144510\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ScaleText\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
+msgstr ""
+
+#: 01210000.xhp
+msgctxt ""
+"01210000.xhp\n"
+"par_id3150441\n"
+"help.text"
+msgid "<image id=\"img_id3159153\" src=\"cmd/sc_scaletext.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3159153\">Icon</alt></image>"
+msgstr ""
+
+#: 01210000.xhp
+msgctxt ""
+"01210000.xhp\n"
+"par_id3153190\n"
+"3\n"
+"help.text"
+msgid "Scale Text"
+msgstr "Shkallëzo tekstin"
+
#: 01220000.xhp
msgctxt ""
"01220000.xhp\n"
@@ -177,54 +228,3 @@ msgctxt ""
"help.text"
msgid "<ahelp hid=\".uno:ContextType\" visibility=\"visible\">Displays the name of the current chart type.</ahelp>"
msgstr ""
-
-#: 01210000.xhp
-msgctxt ""
-"01210000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Scale Text"
-msgstr "Shkallëzo tekstin"
-
-#: 01210000.xhp
-msgctxt ""
-"01210000.xhp\n"
-"bm_id3152996\n"
-"help.text"
-msgid "<bookmark_value>text scaling in charts</bookmark_value><bookmark_value>scaling; text in charts</bookmark_value><bookmark_value>charts;scaling text</bookmark_value>"
-msgstr ""
-
-#: 01210000.xhp
-msgctxt ""
-"01210000.xhp\n"
-"hd_id3152996\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/schart/02/01210000.xhp\" name=\"Scale Text\">Scale Text</link>"
-msgstr ""
-
-#: 01210000.xhp
-msgctxt ""
-"01210000.xhp\n"
-"par_id3144510\n"
-"2\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ScaleText\">Rescales the text in the chart when you change the size of the chart.</ahelp>"
-msgstr ""
-
-#: 01210000.xhp
-msgctxt ""
-"01210000.xhp\n"
-"par_id3150441\n"
-"help.text"
-msgid "<image id=\"img_id3159153\" src=\"cmd/sc_scaletext.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3159153\">Icon</alt></image>"
-msgstr ""
-
-#: 01210000.xhp
-msgctxt ""
-"01210000.xhp\n"
-"par_id3153190\n"
-"3\n"
-"help.text"
-msgid "Scale Text"
-msgstr "Shkallëzo tekstin"
diff --git a/source/sq/helpcontent2/source/text/schart/04.po b/source/sq/helpcontent2/source/text/schart/04.po
index f4507ef9587..95cc62204c0 100644
--- a/source/sq/helpcontent2/source/text/schart/04.po
+++ b/source/sq/helpcontent2/source/text/schart/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 19:07+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/source/sq/helpcontent2/source/text/sdraw.po b/source/sq/helpcontent2/source/text/sdraw.po
index 2c286e642fe..0e59bb2b8e9 100644
--- a/source/sq/helpcontent2/source/text/sdraw.po
+++ b/source/sq/helpcontent2/source/text/sdraw.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 19:07+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,200 +15,364 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: main0106.xhp
+#: main0000.xhp
msgctxt ""
-"main0106.xhp\n"
+"main0000.xhp\n"
"tit\n"
"help.text"
-msgid "Tools"
-msgstr "Veglat"
+msgid "Welcome to the $[officename] Draw Help"
+msgstr ""
-#: main0106.xhp
+#: main0000.xhp
msgctxt ""
-"main0106.xhp\n"
-"hd_id3159155\n"
+"main0000.xhp\n"
+"hd_id3155960\n"
"1\n"
"help.text"
-msgid "<link href=\"text/sdraw/main0106.xhp\" name=\"Tools\">Tools</link>"
+msgid "<switchinline select=\"appl\"> <caseinline select=\"DRAW\"/> </switchinline>Welcome to the $[officename] Draw Help"
msgstr ""
-#: main0106.xhp
+#: main0000.xhp
msgctxt ""
-"main0106.xhp\n"
-"par_id3156443\n"
+"main0000.xhp\n"
+"hd_id3154022\n"
+"3\n"
+"help.text"
+msgid "How to Work With $[officename] Draw"
+msgstr ""
+
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"hd_id3150363\n"
+"5\n"
+"help.text"
+msgid "$[officename] Draw Menus, Toolbars, and Keys"
+msgstr ""
+
+#: main0000.xhp
+msgctxt ""
+"main0000.xhp\n"
+"hd_id3166430\n"
+"4\n"
+"help.text"
+msgid "Help about the Help"
+msgstr "Ndihma për %PRODUCTNAME Writer"
+
+#: main0100.xhp
+msgctxt ""
+"main0100.xhp\n"
+"tit\n"
+"help.text"
+msgid "Menus"
+msgstr ""
+
+#: main0100.xhp
+msgctxt ""
+"main0100.xhp\n"
+"hd_id3148664\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
+msgstr ""
+
+#: main0100.xhp
+msgctxt ""
+"main0100.xhp\n"
+"par_id3154684\n"
"2\n"
"help.text"
-msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings."
+msgid "The following is a description of all $[officename] Draw menus, submenus and their dialogs."
msgstr ""
-#: main0106.xhp
+#: main0101.xhp
msgctxt ""
-"main0106.xhp\n"
-"hd_id3153415\n"
+"main0101.xhp\n"
+"tit\n"
+"help.text"
+msgid "File"
+msgstr "Fajlli"
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3149655\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sdraw/main0101.xhp\" name=\"File\">File</link>"
+msgstr ""
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"par_id3150868\n"
+"2\n"
+"help.text"
+msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click <emph>Exit</emph>."
+msgstr ""
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3156441\n"
"4\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
msgstr ""
-#: main0106.xhp
+#: main0101.xhp
msgctxt ""
-"main0106.xhp\n"
-"hd_id3150044\n"
+"main0101.xhp\n"
+"hd_id3153876\n"
"6\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
msgstr ""
-#: main0503.xhp
+#: main0101.xhp
msgctxt ""
-"main0503.xhp\n"
+"main0101.xhp\n"
+"hd_id3150718\n"
+"7\n"
+"help.text"
+msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
+msgstr ""
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3154754\n"
+"14\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
+msgstr ""
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3150044\n"
+"9\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
+msgstr ""
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3149127\n"
+"12\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
+msgstr ""
+
+#: main0101.xhp
+msgctxt ""
+"main0101.xhp\n"
+"hd_id3145790\n"
+"13\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
+msgstr ""
+
+#: main0102.xhp
+msgctxt ""
+"main0102.xhp\n"
"tit\n"
"help.text"
-msgid "$[officename] Draw Features"
-msgstr "Duke publikuar veçoritë e produktit"
+msgid "Edit"
+msgstr "Edito"
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3148797\n"
+"main0102.xhp\n"
+"hd_id3150868\n"
"1\n"
"help.text"
-msgid "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"$[officename] Draw Features\">$[officename] Draw Features</link></variable>"
+msgid "<link href=\"text/sdraw/main0102.xhp\" name=\"Edit\">Edit</link>"
msgstr ""
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3146975\n"
+"main0102.xhp\n"
+"par_id3146974\n"
"2\n"
"help.text"
-msgid "$[officename] Draw lets you create simple and complex drawings and export them in a number of common image formats. You can also insert tables, charts, formulas and other items created in $[officename] programs into your drawings."
+msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)."
msgstr ""
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3147435\n"
-"11\n"
+"main0102.xhp\n"
+"hd_id3147396\n"
+"3\n"
"help.text"
-msgid "Vector Graphics"
-msgstr "Stilet e grafikave"
+msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
+msgstr ""
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3153142\n"
-"12\n"
+"main0102.xhp\n"
+"hd_id3149400\n"
+"4\n"
"help.text"
-msgid "$[officename] Draw creates vector graphics using lines and curves defined by mathematical vectors. Vectors describe lines, ellipses, and polygons according to their geometry."
+msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
msgstr ""
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3154320\n"
+"main0102.xhp\n"
+"hd_id3153713\n"
+"13\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
+msgstr ""
+
+#: main0102.xhp
+msgctxt ""
+"main0102.xhp\n"
+"par_id3147340\n"
"14\n"
"help.text"
-msgid "Creating 3D Objects"
-msgstr "Vetitë e 3D objekteve"
+msgid "Enables you to edit points on your drawing."
+msgstr ""
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3145251\n"
+"main0102.xhp\n"
+"hd_id3149258\n"
"15\n"
"help.text"
-msgid "You can create simple 3D objects such as cubes, spheres, and cylinders in $[officename] Draw and even modify the light source of the objects."
+msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
msgstr ""
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3154491\n"
-"20\n"
+"main0102.xhp\n"
+"par_id3146315\n"
+"16\n"
"help.text"
-msgid "Grids and Snap Lines"
+msgid "Enables you to edit glue points on your drawing."
msgstr ""
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3149379\n"
+"main0102.xhp\n"
+"hd_id3147005\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
+msgstr ""
+
+#: main0102.xhp
+msgctxt ""
+"main0102.xhp\n"
+"hd_id3150205\n"
"6\n"
"help.text"
-msgid "Grids and snap lines provide a visual cue to help you align objects in your drawing. You can also choose to snap an object to a grid line, snap line or to the edge of another object."
+msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Cross-fading</link>"
msgstr ""
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3155601\n"
-"16\n"
+"main0102.xhp\n"
+"hd_id3154650\n"
+"7\n"
"help.text"
-msgid "Connecting Objects to Show Relationships"
+msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
msgstr ""
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3149124\n"
-"17\n"
+"main0102.xhp\n"
+"hd_id3156446\n"
+"10\n"
"help.text"
-msgid "You can connect objects in $[officename] Draw with special lines called \"connectors\" to show the relationship between objects. Connectors attach to glue points on drawing objects and remain attached when the connected objects are moved. Connectors are useful for creating organization charts and technical diagrams."
+msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
msgstr ""
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3155764\n"
-"21\n"
+"main0102.xhp\n"
+"hd_id3148699\n"
+"11\n"
"help.text"
-msgid "Displaying Dimensions"
+msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
msgstr ""
-#: main0503.xhp
+#: main0102.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3155333\n"
-"22\n"
+"main0102.xhp\n"
+"hd_id3157867\n"
+"12\n"
"help.text"
-msgid "Technical diagrams often show the dimensions of objects in the drawing. In $[officename] Draw, you can use dimension lines to calculate and display linear dimensions."
+msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
msgstr ""
-#: main0503.xhp
+#: main0103.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3154705\n"
-"18\n"
+"main0103.xhp\n"
+"tit\n"
"help.text"
-msgid "Gallery"
-msgstr "Galeria"
+msgid "View"
+msgstr "Pamja"
-#: main0503.xhp
+#: main0103.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3154022\n"
-"7\n"
+"main0103.xhp\n"
+"hd_id3152576\n"
+"1\n"
"help.text"
-msgid "The Gallery contains images, animations, sounds and other items that you can insert and use in your drawings as well as other $[officename] programs."
+msgid "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">View</link>"
msgstr ""
-#: main0503.xhp
+#: main0103.xhp
msgctxt ""
-"main0503.xhp\n"
-"hd_id3149207\n"
-"19\n"
+"main0103.xhp\n"
+"par_id3159155\n"
+"2\n"
"help.text"
-msgid "Graphic File Formats"
-msgstr "Formatet për Qelitë"
+msgid "Sets the display properties of Draw documents."
+msgstr ""
-#: main0503.xhp
+#: main0103.xhp
msgctxt ""
-"main0503.xhp\n"
-"par_id3155112\n"
-"5\n"
+"main0103.xhp\n"
+"par_idN105AB\n"
"help.text"
-msgid "$[officename] Draw can export to many common graphic file formats, such as BMP, GIF, JPG, and PNG."
+msgid "Normal"
+msgstr "Normal"
+
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_idN105AF\n"
+"help.text"
+msgid "Switch to normal view of the page."
+msgstr ""
+
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_idN105B2\n"
+"help.text"
+msgid "Master"
+msgstr "Kryesor"
+
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"par_idN105B6\n"
+"help.text"
+msgid "Switch to the master page view."
+msgstr ""
+
+#: main0103.xhp
+msgctxt ""
+"main0103.xhp\n"
+"hd_id3149666\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
msgstr ""
#: main0104.xhp
@@ -441,6 +605,146 @@ msgctxt ""
msgid "<link href=\"text/simpress/01/05140000.xhp\" name=\"Layer\">Layer</link>"
msgstr ""
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"tit\n"
+"help.text"
+msgid "Tools"
+msgstr "Veglat"
+
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"hd_id3159155\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sdraw/main0106.xhp\" name=\"Tools\">Tools</link>"
+msgstr ""
+
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"par_id3156443\n"
+"2\n"
+"help.text"
+msgid "This menu provides tools for $[officename] Draw as well as access to language and system settings."
+msgstr ""
+
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"hd_id3153415\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06040000.xhp\" name=\"AutoCorrect\">AutoCorrect Options</link>"
+msgstr ""
+
+#: main0106.xhp
+msgctxt ""
+"main0106.xhp\n"
+"hd_id3150044\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06140000.xhp\" name=\"Customize\">Customize</link>"
+msgstr ""
+
+#: main0200.xhp
+msgctxt ""
+"main0200.xhp\n"
+"tit\n"
+"help.text"
+msgid "Toolbars"
+msgstr "Shiriti i veglave"
+
+#: main0200.xhp
+msgctxt ""
+"main0200.xhp\n"
+"hd_id3148663\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
+msgstr ""
+
+#: main0200.xhp
+msgctxt ""
+"main0200.xhp\n"
+"par_id3125863\n"
+"2\n"
+"help.text"
+msgid "This section provides an overview of the toolbars available in $[officename] Draw."
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"tit\n"
+"help.text"
+msgid "Line and Filling Bar"
+msgstr "Injoro ~~ dhe ' në fund të rreshtit"
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3149669\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/sdraw/main0202.xhp\" name=\"Line and Filling Bar\">Line and Filling Bar</link>"
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"par_id3150543\n"
+"2\n"
+"help.text"
+msgid "The Line and Filling bar contains commands for the current editing mode."
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3149664\n"
+"3\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3156285\n"
+"4\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3154015\n"
+"5\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3155767\n"
+"6\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
+msgstr ""
+
+#: main0202.xhp
+msgctxt ""
+"main0202.xhp\n"
+"hd_id3341471\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
+msgstr ""
+
#: main0210.xhp
msgctxt ""
"main0210.xhp\n"
@@ -595,277 +899,6 @@ msgctxt ""
msgid "Switches the 3D effects on and off for the selected objects."
msgstr ""
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"tit\n"
-"help.text"
-msgid "View"
-msgstr "Pamja"
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"hd_id3152576\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sdraw/main0103.xhp\" name=\"View\">View</link>"
-msgstr ""
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_id3159155\n"
-"2\n"
-"help.text"
-msgid "Sets the display properties of Draw documents."
-msgstr ""
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_idN105AB\n"
-"help.text"
-msgid "Normal"
-msgstr "Normal"
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_idN105AF\n"
-"help.text"
-msgid "Switch to normal view of the page."
-msgstr ""
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_idN105B2\n"
-"help.text"
-msgid "Master"
-msgstr "Kryesor"
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"par_idN105B6\n"
-"help.text"
-msgid "Switch to the master page view."
-msgstr ""
-
-#: main0103.xhp
-msgctxt ""
-"main0103.xhp\n"
-"hd_id3149666\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/03010000.xhp\" name=\"Zoom\">Zoom</link>"
-msgstr ""
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"tit\n"
-"help.text"
-msgid "Edit"
-msgstr "Edito"
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3150868\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sdraw/main0102.xhp\" name=\"Edit\">Edit</link>"
-msgstr ""
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"par_id3146974\n"
-"2\n"
-"help.text"
-msgid "The commands in this menu are used to edit Draw documents (for example, copying and pasting)."
-msgstr ""
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3147396\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/02070000.xhp\" name=\"Paste Special\">Paste Special</link>"
-msgstr ""
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3149400\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link>"
-msgstr ""
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3153713\n"
-"13\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Points\">Points</link>"
-msgstr ""
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"par_id3147340\n"
-"14\n"
-"help.text"
-msgid "Enables you to edit points on your drawing."
-msgstr ""
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3149258\n"
-"15\n"
-"help.text"
-msgid "<link href=\"text/simpress/02/10030200.xhp\" name=\"Glue points\">Glue points</link>"
-msgstr ""
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"par_id3146315\n"
-"16\n"
-"help.text"
-msgid "Enables you to edit glue points on your drawing."
-msgstr ""
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3147005\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Duplicate\">Duplicate</link>"
-msgstr ""
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3150205\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Cross-fading\">Cross-fading</link>"
-msgstr ""
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3154650\n"
-"7\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/02160000.xhp\" name=\"Fields\">Fields</link>"
-msgstr ""
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3156446\n"
-"10\n"
-"help.text"
-msgid "<link href=\"text/shared/01/02180000.xhp\" name=\"Links\">Links</link>"
-msgstr ""
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3148699\n"
-"11\n"
-"help.text"
-msgid "<link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap\">ImageMap</link>"
-msgstr ""
-
-#: main0102.xhp
-msgctxt ""
-"main0102.xhp\n"
-"hd_id3157867\n"
-"12\n"
-"help.text"
-msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink\">Hyperlink</link>"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"tit\n"
-"help.text"
-msgid "Line and Filling Bar"
-msgstr "Injoro ~~ dhe ' në fund të rreshtit"
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3149669\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/sdraw/main0202.xhp\" name=\"Line and Filling Bar\">Line and Filling Bar</link>"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"par_id3150543\n"
-"2\n"
-"help.text"
-msgid "The Line and Filling bar contains commands for the current editing mode."
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3149664\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Style\">Line Style</link>"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3156285\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Width\">Line Width</link>"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3154015\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line Color\">Line Color</link>"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3155767\n"
-"6\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
-msgstr ""
-
-#: main0202.xhp
-msgctxt ""
-"main0202.xhp\n"
-"hd_id3341471\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
-msgstr ""
-
#: main0213.xhp
msgctxt ""
"main0213.xhp\n"
@@ -973,187 +1006,154 @@ msgctxt ""
msgid "<link href=\"text/simpress/02/13190000.xhp\" name=\"Select Text Area Only\">Select Text Area Only</link>"
msgstr ""
-#: main0000.xhp
+#: main0503.xhp
msgctxt ""
-"main0000.xhp\n"
+"main0503.xhp\n"
"tit\n"
"help.text"
-msgid "Welcome to the $[officename] Draw Help"
-msgstr ""
+msgid "$[officename] Draw Features"
+msgstr "Duke publikuar veçoritë e produktit"
-#: main0000.xhp
+#: main0503.xhp
msgctxt ""
-"main0000.xhp\n"
-"hd_id3155960\n"
+"main0503.xhp\n"
+"hd_id3148797\n"
"1\n"
"help.text"
-msgid "<switchinline select=\"appl\"> <caseinline select=\"DRAW\"/> </switchinline>Welcome to the $[officename] Draw Help"
-msgstr ""
-
-#: main0000.xhp
-msgctxt ""
-"main0000.xhp\n"
-"hd_id3154022\n"
-"3\n"
-"help.text"
-msgid "How to Work With $[officename] Draw"
-msgstr ""
-
-#: main0000.xhp
-msgctxt ""
-"main0000.xhp\n"
-"hd_id3150363\n"
-"5\n"
-"help.text"
-msgid "$[officename] Draw Menus, Toolbars, and Keys"
+msgid "<variable id=\"main0503\"><link href=\"text/sdraw/main0503.xhp\" name=\"$[officename] Draw Features\">$[officename] Draw Features</link></variable>"
msgstr ""
-#: main0000.xhp
-msgctxt ""
-"main0000.xhp\n"
-"hd_id3166430\n"
-"4\n"
-"help.text"
-msgid "Help about the Help"
-msgstr "Ndihma për %PRODUCTNAME Writer"
-
-#: main0100.xhp
+#: main0503.xhp
msgctxt ""
-"main0100.xhp\n"
-"tit\n"
+"main0503.xhp\n"
+"par_id3146975\n"
+"2\n"
"help.text"
-msgid "Menus"
+msgid "$[officename] Draw lets you create simple and complex drawings and export them in a number of common image formats. You can also insert tables, charts, formulas and other items created in $[officename] programs into your drawings."
msgstr ""
-#: main0100.xhp
+#: main0503.xhp
msgctxt ""
-"main0100.xhp\n"
-"hd_id3148664\n"
-"1\n"
+"main0503.xhp\n"
+"hd_id3147435\n"
+"11\n"
"help.text"
-msgid "<variable id=\"main0100\"><link href=\"text/sdraw/main0100.xhp\" name=\"Menus\">Menus</link></variable>"
-msgstr ""
+msgid "Vector Graphics"
+msgstr "Stilet e grafikave"
-#: main0100.xhp
+#: main0503.xhp
msgctxt ""
-"main0100.xhp\n"
-"par_id3154684\n"
-"2\n"
+"main0503.xhp\n"
+"par_id3153142\n"
+"12\n"
"help.text"
-msgid "The following is a description of all $[officename] Draw menus, submenus and their dialogs."
+msgid "$[officename] Draw creates vector graphics using lines and curves defined by mathematical vectors. Vectors describe lines, ellipses, and polygons according to their geometry."
msgstr ""
-#: main0200.xhp
+#: main0503.xhp
msgctxt ""
-"main0200.xhp\n"
-"tit\n"
+"main0503.xhp\n"
+"hd_id3154320\n"
+"14\n"
"help.text"
-msgid "Toolbars"
-msgstr "Shiriti i veglave"
+msgid "Creating 3D Objects"
+msgstr "Vetitë e 3D objekteve"
-#: main0200.xhp
+#: main0503.xhp
msgctxt ""
-"main0200.xhp\n"
-"hd_id3148663\n"
-"1\n"
+"main0503.xhp\n"
+"par_id3145251\n"
+"15\n"
"help.text"
-msgid "<variable id=\"main0200\"><link href=\"text/sdraw/main0200.xhp\" name=\"Toolbars\">Toolbars</link></variable>"
+msgid "You can create simple 3D objects such as cubes, spheres, and cylinders in $[officename] Draw and even modify the light source of the objects."
msgstr ""
-#: main0200.xhp
+#: main0503.xhp
msgctxt ""
-"main0200.xhp\n"
-"par_id3125863\n"
-"2\n"
+"main0503.xhp\n"
+"hd_id3154491\n"
+"20\n"
"help.text"
-msgid "This section provides an overview of the toolbars available in $[officename] Draw."
+msgid "Grids and Snap Lines"
msgstr ""
-#: main0101.xhp
-msgctxt ""
-"main0101.xhp\n"
-"tit\n"
-"help.text"
-msgid "File"
-msgstr "Fajlli"
-
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3149655\n"
-"1\n"
+"main0503.xhp\n"
+"par_id3149379\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/sdraw/main0101.xhp\" name=\"File\">File</link>"
+msgid "Grids and snap lines provide a visual cue to help you align objects in your drawing. You can also choose to snap an object to a grid line, snap line or to the edge of another object."
msgstr ""
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"par_id3150868\n"
-"2\n"
+"main0503.xhp\n"
+"hd_id3155601\n"
+"16\n"
"help.text"
-msgid "This menu contains general commands for working with Draw documents, such as open, close and print. To close $[officename] Draw, click <emph>Exit</emph>."
+msgid "Connecting Objects to Show Relationships"
msgstr ""
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3156441\n"
-"4\n"
+"main0503.xhp\n"
+"par_id3149124\n"
+"17\n"
"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
+msgid "You can connect objects in $[officename] Draw with special lines called \"connectors\" to show the relationship between objects. Connectors attach to glue points on drawing objects and remain attached when the connected objects are moved. Connectors are useful for creating organization charts and technical diagrams."
msgstr ""
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3153876\n"
-"6\n"
+"main0503.xhp\n"
+"hd_id3155764\n"
+"21\n"
"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
+msgid "Displaying Dimensions"
msgstr ""
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3150718\n"
-"7\n"
+"main0503.xhp\n"
+"par_id3155333\n"
+"22\n"
"help.text"
-msgid "<link href=\"text/simpress/01/01170000.xhp\" name=\"Export\">Export</link>"
+msgid "Technical diagrams often show the dimensions of objects in the drawing. In $[officename] Draw, you can use dimension lines to calculate and display linear dimensions."
msgstr ""
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3154754\n"
-"14\n"
+"main0503.xhp\n"
+"hd_id3154705\n"
+"18\n"
"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
-msgstr ""
+msgid "Gallery"
+msgstr "Galeria"
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3150044\n"
-"9\n"
+"main0503.xhp\n"
+"par_id3154022\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"Properties\">Properties</link>"
+msgid "The Gallery contains images, animations, sounds and other items that you can insert and use in your drawings as well as other $[officename] programs."
msgstr ""
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3149127\n"
-"12\n"
+"main0503.xhp\n"
+"hd_id3149207\n"
+"19\n"
"help.text"
-msgid "<link href=\"text/shared/01/01130000.xhp\" name=\"Print\">Print</link>"
-msgstr ""
+msgid "Graphic File Formats"
+msgstr "Formatet për Qelitë"
-#: main0101.xhp
+#: main0503.xhp
msgctxt ""
-"main0101.xhp\n"
-"hd_id3145790\n"
-"13\n"
+"main0503.xhp\n"
+"par_id3155112\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer Settings\">Printer Settings</link>"
+msgid "$[officename] Draw can export to many common graphic file formats, such as BMP, GIF, JPG, and PNG."
msgstr ""
diff --git a/source/sq/helpcontent2/source/text/sdraw/00.po b/source/sq/helpcontent2/source/text/sdraw/00.po
index 61e14eaa4c6..7883a52adf9 100644
--- a/source/sq/helpcontent2/source/text/sdraw/00.po
+++ b/source/sq/helpcontent2/source/text/sdraw/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 19:07+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/source/sq/helpcontent2/source/text/sdraw/01.po b/source/sq/helpcontent2/source/text/sdraw/01.po
index 4e982dcfed2..beab99752db 100644
--- a/source/sq/helpcontent2/source/text/sdraw/01.po
+++ b/source/sq/helpcontent2/source/text/sdraw/01.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 19:07+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/source/sq/helpcontent2/source/text/sdraw/04.po b/source/sq/helpcontent2/source/text/sdraw/04.po
index ce435737f4a..7feeec0481d 100644
--- a/source/sq/helpcontent2/source/text/sdraw/04.po
+++ b/source/sq/helpcontent2/source/text/sdraw/04.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 19:07+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
diff --git a/source/sq/helpcontent2/source/text/sdraw/guide.po b/source/sq/helpcontent2/source/text/sdraw/guide.po
index f6a501c50ed..0059e02541d 100644
--- a/source/sq/helpcontent2/source/text/sdraw/guide.po
+++ b/source/sq/helpcontent2/source/text/sdraw/guide.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 19:07+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,6 +15,402 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"tit\n"
+"help.text"
+msgid "Arranging, Aligning and Distributing Objects"
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"hd_id3149656\n"
+"73\n"
+"help.text"
+msgid "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Arranging and Aligning Objects\">Arranging, Aligning and Distributing Objects</link></variable>"
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"bm_id3125863\n"
+"help.text"
+msgid "<bookmark_value>arranging; objects (guide)</bookmark_value><bookmark_value>objects;aligning</bookmark_value><bookmark_value>distributing draw objects</bookmark_value><bookmark_value>aligning;draw objects</bookmark_value>"
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"hd_id3125863\n"
+"17\n"
+"help.text"
+msgid "Arranging Objects"
+msgstr "Titull, 4 Objekte"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3153727\n"
+"18\n"
+"help.text"
+msgid "Each object that you place in your document is successively stacked on the preceding object. To re-arrange the stacking order of a selected object, proceed as follows."
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN107D5\n"
+"help.text"
+msgid "Click the object whose position you want to change."
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3150327\n"
+"78\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to bring up the context menu and choose one of the arrange options:"
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN107E6\n"
+"help.text"
+msgid "<emph>Bring to Front</emph> places the object on top of all other objects"
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN107EC\n"
+"help.text"
+msgid "<emph>Bring Forward</emph> places the object one place forward in the stack of objects"
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN107F2\n"
+"help.text"
+msgid "<emph>Send Backward</emph> places the object one place back in the stack of objects"
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN107F8\n"
+"help.text"
+msgid "<emph>Send to Back</emph> places the object behind all other objects"
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN107FE\n"
+"help.text"
+msgid "<emph>Behind Object</emph> places the object behind another object that you select"
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"hd_id3155766\n"
+"79\n"
+"help.text"
+msgid "Arranging an Object Behind Another Object"
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN10811\n"
+"help.text"
+msgid "Click the object whose position you want to change."
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3154253\n"
+"80\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Behind Object</emph>. The mouse pointer changes to a hand."
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3149126\n"
+"81\n"
+"help.text"
+msgid "Click the object behind which you want to place the selected object."
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"hd_id3145789\n"
+"20\n"
+"help.text"
+msgid "Reversing The Stacking Order of Two Objects"
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3154022\n"
+"83\n"
+"help.text"
+msgid "Shift-click both objects to select them."
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3155114\n"
+"84\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Reverse</emph>."
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"hd_id3166425\n"
+"21\n"
+"help.text"
+msgid "Aligning Objects"
+msgstr "Titull, 4 Objekte"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3152994\n"
+"22\n"
+"help.text"
+msgid "The <emph>Alignment</emph> function enables you to align objects relative to each other or relative to the page."
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN108A3\n"
+"help.text"
+msgid "Select an object to align it to the page or select multiple objects to align them relative to each other."
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN108A7\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Modify - Alignment</item> and select one of the alignment options."
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN108AE\n"
+"help.text"
+msgid "Distributing Objects"
+msgstr "Titull, 4 Objekte"
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3151390\n"
+"71\n"
+"help.text"
+msgid "If you select three or more objects in Draw, you can also use the <link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\"><emph>Distribution</emph></link> command to distribute the vertical and horizontal spacing evenly between the objects."
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN108CE\n"
+"help.text"
+msgid "Select three or more objects to be distributed."
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN108D2\n"
+"help.text"
+msgid "Choose <item type=\"menuitem\">Modify - Distribution</item>."
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_idN108DA\n"
+"help.text"
+msgid "Select the horizontal and vertical distribution option and click <emph>OK</emph>."
+msgstr ""
+
+#: align_arrange.xhp
+msgctxt ""
+"align_arrange.xhp\n"
+"par_id3150535\n"
+"72\n"
+"help.text"
+msgid "Selected objects are distributed evenly along the horizontal or vertical axis. The two outermost objects are used as reference points and do not move when the <emph>Distribution</emph> command is applied."
+msgstr ""
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"tit\n"
+"help.text"
+msgid "Defining Custom Colors"
+msgstr "Ngjyrat për ndryshime"
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"bm_id3149263\n"
+"help.text"
+msgid "<bookmark_value>colors; defining and saving</bookmark_value> <bookmark_value>user-defined colors</bookmark_value> <bookmark_value>custom colors</bookmark_value>"
+msgstr ""
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"hd_id3149263\n"
+"7\n"
+"help.text"
+msgid "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define.xhp\" name=\"Defining Custom Colors\">Defining Custom Colors</link></variable>"
+msgstr ""
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3154511\n"
+"8\n"
+"help.text"
+msgid "If you want, you can mix a custom color and add it to a color table."
+msgstr ""
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"hd_id3155600\n"
+"9\n"
+"help.text"
+msgid "To define a custom color"
+msgstr ""
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3150327\n"
+"25\n"
+"help.text"
+msgid "Choose <emph>Format - Area</emph> and click the <emph>Colors</emph> tab. A table of the predefined colors is displayed."
+msgstr ""
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3154657\n"
+"13\n"
+"help.text"
+msgid "Changes made to the standard color table are permanent and are saved automatically."
+msgstr ""
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3166425\n"
+"14\n"
+"help.text"
+msgid "Click a color in the table that is similar to the one you want to mix. The color appears in the upper preview box to the right of the table."
+msgstr ""
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3152992\n"
+"15\n"
+"help.text"
+msgid "Select the RGB or CMYK color model in the box below the preview boxes."
+msgstr ""
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id4979705\n"
+"help.text"
+msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The CMYK controls are provided only to ease the input of color values using CMYK notation."
+msgstr ""
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3152987\n"
+"16\n"
+"help.text"
+msgid "The RGB color model mixes red, green and blue light to create colors on a computer screen. In the RGB model, the three color components are additive and can have values ranging from 0 (black) to 255 (white). The CMYK color model combines Cyan (C), Magenta (M), Yellow (Y), and blacK (K, also used for \"Key\") to create colors for printing. The four colors of the CMYK models are subtractive and are defined as percentages. Black corresponds to 100 % and white to 0 %."
+msgstr ""
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3145386\n"
+"17\n"
+"help.text"
+msgid "Enter a numeric value in the boxes next to the color components. The new color appears in the preview box directly above the color model box."
+msgstr ""
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3152871\n"
+"18\n"
+"help.text"
+msgid "You can also create a color using a color spectrum. Click the <emph>Edit</emph> button to open the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog. Click a color. Use the Hue, Saturation, and Brightness boxes to adjust your color selection."
+msgstr ""
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3153011\n"
+"19\n"
+"help.text"
+msgid "Do one of the following:"
+msgstr "Gabimi në vazhdim ka ndodhur:"
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3147244\n"
+"26\n"
+"help.text"
+msgid "If you want to replace the color in the standard color table that your custom color is based on, click <emph>Modify</emph>."
+msgstr ""
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3145116\n"
+"20\n"
+"help.text"
+msgid "If you want to add your custom color to the standard color table, enter a name in the <emph>Name</emph> text box and click <emph>Add</emph>."
+msgstr ""
+
+#: color_define.xhp
+msgctxt ""
+"color_define.xhp\n"
+"par_id3145236\n"
+"23\n"
+"help.text"
+msgid "<link href=\"text/shared/01/03170000.xhp\" name=\"Color bar\">Color bar</link>"
+msgstr ""
+
#: combine_etc.xhp
msgctxt ""
"combine_etc.xhp\n"
@@ -315,6 +711,129 @@ msgctxt ""
msgid "The area outside the overlap is removed."
msgstr ""
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"tit\n"
+"help.text"
+msgid "Cross-Fading Two Objects"
+msgstr ""
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"bm_id3150715\n"
+"help.text"
+msgid "<bookmark_value>draw objects; cross-fading two objects</bookmark_value><bookmark_value>cross-fading; two draw objects</bookmark_value>"
+msgstr ""
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"hd_id3150715\n"
+"17\n"
+"help.text"
+msgid "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading.xhp\" name=\"Cross-Fading Two Objects\">Cross-Fading Two Objects</link></variable>"
+msgstr ""
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3154754\n"
+"18\n"
+"help.text"
+msgid "Cross-fading creates shapes and distributes them by uniform increments between two drawing objects."
+msgstr ""
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3155112\n"
+"41\n"
+"help.text"
+msgid "The cross-fading command is only available in $[officename] Draw. You can, however, copy and paste cross-faded objects into $[officename] Impress."
+msgstr ""
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"hd_id3149209\n"
+"20\n"
+"help.text"
+msgid "To cross-fade two objects:"
+msgstr ""
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3150370\n"
+"45\n"
+"help.text"
+msgid "Hold down Shift and click each object."
+msgstr ""
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3166428\n"
+"22\n"
+"help.text"
+msgid "Choose <emph>Edit - Cross-fading</emph>."
+msgstr ""
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3156450\n"
+"44\n"
+"help.text"
+msgid "Enter a value to specify the number of objects between the start and end of the cross-fade in the <emph>Increments</emph> box."
+msgstr ""
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3149405\n"
+"23\n"
+"help.text"
+msgid "Click <emph>OK</emph>."
+msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3151240\n"
+"24\n"
+"help.text"
+msgid "A group containing the two original objects and the specified number (increments) of cross-faded objects is displayed."
+msgstr ""
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3159203\n"
+"help.text"
+msgid "<image id=\"img_id3150210\" src=\"res/helpimg/ueberblenden.png\" width=\"74.88mm\" height=\"65.62mm\"><alt id=\"alt_id3150210\">Illustration for crossfading</alt></image>"
+msgstr ""
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3154766\n"
+"25\n"
+"help.text"
+msgid "You can edit the individual objects of a group by selecting the group and pressing F3. Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3 to exit the group editing mode."
+msgstr ""
+
+#: cross_fading.xhp
+msgctxt ""
+"cross_fading.xhp\n"
+"par_id3155760\n"
+"42\n"
+"help.text"
+msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Editing - Cross-fading\">Editing - Cross-fading</link>"
+msgstr ""
+
#: draw_sector.xhp
msgctxt ""
"draw_sector.xhp\n"
@@ -439,6 +958,272 @@ msgctxt ""
msgid "To draw an arc based on an ellipse, choose one of the arc icons and follow the same steps for creating a sector based on a circle."
msgstr ""
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"tit\n"
+"help.text"
+msgid "Duplicating Objects"
+msgstr "Titull, 4 Objekte"
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"bm_id3145750\n"
+"help.text"
+msgid "<bookmark_value>doubling draw objects</bookmark_value><bookmark_value>draw objects; duplicating</bookmark_value><bookmark_value>duplicating draw objects</bookmark_value><bookmark_value>multiplying draw objects</bookmark_value>"
+msgstr ""
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"hd_id3145750\n"
+"3\n"
+"help.text"
+msgid "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicate_object.xhp\" name=\"Duplicating Objects\">Duplicating Objects</link></variable>"
+msgstr ""
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3149400\n"
+"4\n"
+"help.text"
+msgid "You can create duplicate or multiple copies of an object. The copies can be identical or can differ in size, color, orientation and location."
+msgstr ""
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3153415\n"
+"5\n"
+"help.text"
+msgid "The following example creates a stack of coins by making multiple copies of a single ellipse."
+msgstr ""
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3149129\n"
+"6\n"
+"help.text"
+msgid "Use the <emph>Ellipse</emph> tool to draw a solid yellow ellipse."
+msgstr ""
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3149209\n"
+"8\n"
+"help.text"
+msgid "Select the ellipse and choose <emph>Edit - Duplicate</emph>."
+msgstr ""
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3145585\n"
+"9\n"
+"help.text"
+msgid "Enter 12 as <emph>Number of copies.</emph>"
+msgstr ""
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3151192\n"
+"11\n"
+"help.text"
+msgid "Enter a negative value for the <emph>Width</emph> and <emph>Height</emph> so that the coins decrease in size as you go up the stack."
+msgstr ""
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3151387\n"
+"39\n"
+"help.text"
+msgid "To define a color transition for the coins, select different colors in the <emph>Start</emph> and <emph>End</emph> boxes. The <emph>Start</emph> color is applied to the object that you are duplicating."
+msgstr ""
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3149947\n"
+"12\n"
+"help.text"
+msgid "Click <emph>OK</emph> to create the duplicates."
+msgstr ""
+
+#: duplicate_object.xhp
+msgctxt ""
+"duplicate_object.xhp\n"
+"par_id3153935\n"
+"50\n"
+"help.text"
+msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Edit - Duplicate\">Edit - Duplicate</link>"
+msgstr ""
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"tit\n"
+"help.text"
+msgid "Replacing Colors"
+msgstr "Ngjyrat sipas dëshirës"
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"bm_id3147436\n"
+"help.text"
+msgid "<bookmark_value>eyedropper tool</bookmark_value><bookmark_value>colors; replacing</bookmark_value><bookmark_value>replacing;colors in bitmaps</bookmark_value><bookmark_value>metafiles;replacing colors</bookmark_value><bookmark_value>bitmaps;replacing colors</bookmark_value><bookmark_value>GIF images;replacing colors</bookmark_value>"
+msgstr ""
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"hd_id3147436\n"
+"38\n"
+"help.text"
+msgid "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp\" name=\"Replacing Colors\">Replacing Colors</link></variable>"
+msgstr ""
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3156286\n"
+"24\n"
+"help.text"
+msgid "You can replace colors in bitmaps with the <emph>Color Replacer</emph> tool."
+msgstr ""
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3154704\n"
+"25\n"
+"help.text"
+msgid "Up to four colors can be replaced at once."
+msgstr ""
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3147344\n"
+"26\n"
+"help.text"
+msgid "You can also use the <emph>Transparency</emph> option to replace the transparent areas of an image with a color."
+msgstr ""
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3148488\n"
+"27\n"
+"help.text"
+msgid "Similarly, you can use the <emph>Color Replacer</emph> to make a color on your image transparent."
+msgstr ""
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"hd_id3150205\n"
+"28\n"
+"help.text"
+msgid "To replace colors with the Color Replacer tool"
+msgstr ""
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3154656\n"
+"29\n"
+"help.text"
+msgid "Ensure that the image you are using is a bitmap (for example, BMP, GIF, JPG, or PNG) or a metafile (for example, WMF)."
+msgstr ""
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3150202\n"
+"30\n"
+"help.text"
+msgid "Choose <emph>Tools - Color Replacer</emph>."
+msgstr "Nuk mund ta hap fajllin $(URL1)."
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3155531\n"
+"31\n"
+"help.text"
+msgid "Click the Color Replacer icon and position the mouse pointer over the color you want to replace in the image. The color appears in the box next to the icon."
+msgstr ""
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3152985\n"
+"32\n"
+"help.text"
+msgid "Click the color in the image. The color appears in the first <emph>Source color</emph> box and the check box next to the color is selected."
+msgstr ""
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3148866\n"
+"33\n"
+"help.text"
+msgid "In the <emph>Replace with</emph> box, select the new color."
+msgstr ""
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3145362\n"
+"41\n"
+"help.text"
+msgid "This replaces all occurrences of the <emph>Source color</emph> in the image."
+msgstr ""
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3151191\n"
+"34\n"
+"help.text"
+msgid "If you want to replace another color while the dialog is open, select the check box in front of <emph>Source color</emph> in the next row and repeat steps 3 to 5."
+msgstr ""
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3149876\n"
+"36\n"
+"help.text"
+msgid "Click <emph>Replace</emph>."
+msgstr "Zëvendëso stilet e zakonshme"
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3157871\n"
+"37\n"
+"help.text"
+msgid "If you want to expand or contract the color selection area, increase or decrease the tolerance of the <emph>Color Replacer</emph> tool and repeat your selection."
+msgstr ""
+
+#: eyedropper.xhp
+msgctxt ""
+"eyedropper.xhp\n"
+"par_id3146878\n"
+"39\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Color Replacer</link>"
+msgstr ""
+
#: gradient.xhp
msgctxt ""
"gradient.xhp\n"
@@ -651,121 +1436,6 @@ msgctxt ""
msgid "To adjust the transparency of an object, select the object, choose <emph>Format - Area</emph> and click the <emph>Transparency</emph> tab."
msgstr ""
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"tit\n"
-"help.text"
-msgid "Assembling 3D Objects"
-msgstr "Vetitë e 3D objekteve"
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"bm_id3154014\n"
-"help.text"
-msgid "<bookmark_value>3D objects; assembling</bookmark_value><bookmark_value>assembled objects in 3D</bookmark_value><bookmark_value>combining;3D objects</bookmark_value><bookmark_value>joining;3D objects</bookmark_value>"
-msgstr ""
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"hd_id3156442\n"
-"29\n"
-"help.text"
-msgid "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objects3d.xhp\" name=\"Assembling 3D Objects\">Assembling 3D Objects</link></variable>"
-msgstr ""
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3145251\n"
-"30\n"
-"help.text"
-msgid "3D objects that each form a 3D scene can be combined into a single 3D scene."
-msgstr ""
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"hd_id3150042\n"
-"41\n"
-"help.text"
-msgid "To combine 3D objects:"
-msgstr "Në 3D objekt rrotullues"
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3154702\n"
-"31\n"
-"help.text"
-msgid "Insert a 3D object from the <emph>3D Objects</emph> toolbar (for example, a cube)."
-msgstr ""
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3155335\n"
-"32\n"
-"help.text"
-msgid "Insert a second slightly larger 3D object (for example, a sphere)."
-msgstr ""
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3148488\n"
-"33\n"
-"help.text"
-msgid "Select the second 3D object (sphere) and choose <emph>Edit - Cut</emph>."
-msgstr ""
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3149211\n"
-"34\n"
-"help.text"
-msgid "Double-click the first object (cube) to enter its group."
-msgstr ""
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3154652\n"
-"35\n"
-"help.text"
-msgid "Choose <emph>Edit - Paste</emph>. Both objects are now part of the same group. If you want, you can edit the individual objects or change their position within the group."
-msgstr ""
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3155376\n"
-"36\n"
-"help.text"
-msgid "Double-click outside the group to exit the group."
-msgstr ""
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3148606\n"
-"38\n"
-"help.text"
-msgid "You cannot intersect or subtract 3D objects."
-msgstr ""
-
-#: join_objects3d.xhp
-msgctxt ""
-"join_objects3d.xhp\n"
-"par_id3154537\n"
-"39\n"
-"help.text"
-msgid "<link href=\"text/simpress/02/10090000.xhp\" name=\"Objects in 3D\">Objects in 3D</link>"
-msgstr ""
-
#: graphic_insert.xhp
msgctxt ""
"graphic_insert.xhp\n"
@@ -827,399 +1497,152 @@ msgctxt ""
msgid "Click <emph>Open</emph> to insert the picture."
msgstr ""
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
+"groups.xhp\n"
"tit\n"
"help.text"
-msgid "Rotating Objects"
+msgid "Grouping Objects"
msgstr "Titull, 4 Objekte"
-#: rotate_object.xhp
-msgctxt ""
-"rotate_object.xhp\n"
-"bm_id3154684\n"
-"help.text"
-msgid "<bookmark_value>rotating; draw objects</bookmark_value><bookmark_value>draw objects; rotating</bookmark_value><bookmark_value>pivot points of draw objects</bookmark_value><bookmark_value>skewing draw objects</bookmark_value>"
-msgstr ""
-
-#: rotate_object.xhp
-msgctxt ""
-"rotate_object.xhp\n"
-"hd_id3154684\n"
-"12\n"
-"help.text"
-msgid "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Rotating Objects\">Rotating Objects</link></variable>"
-msgstr ""
-
-#: rotate_object.xhp
-msgctxt ""
-"rotate_object.xhp\n"
-"par_id3149262\n"
-"13\n"
-"help.text"
-msgid "You can rotate an object around its default pivot point (center point) or a pivot point that you designate."
-msgstr ""
-
-#: rotate_object.xhp
-msgctxt ""
-"rotate_object.xhp\n"
-"par_id3146975\n"
-"help.text"
-msgid "<image id=\"img_id3154729\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3154729\">Icon</alt></image>"
-msgstr ""
-
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3150716\n"
-"14\n"
+"groups.xhp\n"
+"bm_id3150793\n"
"help.text"
-msgid "Select the object you want to rotate. On the <emph>Mode</emph> toolbar in $[officename] Draw or on the <emph>Drawing</emph> bar in $[officename] Impress, click the <emph>Rotate</emph> icon."
+msgid "<bookmark_value>grouping; draw objects</bookmark_value><bookmark_value>draw objects; grouping</bookmark_value>"
msgstr ""
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3149021\n"
-"69\n"
+"groups.xhp\n"
+"hd_id3150793\n"
+"26\n"
"help.text"
-msgid "Move the pointer to a corner handle so that the pointer changes to a rotate symbol. Drag the handle to rotate the object."
+msgid "<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\" name=\"Grouping Objects\">Grouping Objects</link></variable>"
msgstr ""
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id0930200803002335\n"
+"groups.xhp\n"
+"par_id3153728\n"
+"27\n"
"help.text"
-msgid "Hold down the Shift key to restrict the rotation to multiples of 15 degrees."
+msgid "You can combine several objects into a group so that they act as a single object. You can move and transform all objects in a group as a single unit. You can also change the properties (for example, line size, fill color) of all objects in a group as a whole or for individual objects in a group. Groups can be temporary or assigned:"
msgstr ""
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id0930200803002463\n"
+"groups.xhp\n"
+"par_id3147434\n"
+"64\n"
"help.text"
-msgid "Right-click the object to open the context menu. Choose Position and Size - Rotation to enter an exact rotation value."
+msgid "Temporary - group only lasts as long as all of the combined objects are selected."
msgstr ""
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3155962\n"
+"groups.xhp\n"
+"par_id3154490\n"
+"65\n"
"help.text"
-msgid "<image id=\"img_id3154023\" src=\"res/helpimg/rotieren.png\" width=\"5.424cm\" height=\"3.916cm\"><alt id=\"alt_id3154023\">Icon</alt></image>"
+msgid "Assigned - group lasts until it is ungrouped through a menu command."
msgstr ""
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3166424\n"
-"16\n"
+"groups.xhp\n"
+"par_id3145252\n"
+"66\n"
"help.text"
-msgid "To change the pivot point, drag the small circle in the center of the object to a new location."
+msgid "Groups can also be grouped in other groups. Actions applied to a group do not affect the relative position of the individual objects to each other in the group."
msgstr ""
-#: rotate_object.xhp
+#: groups.xhp
msgctxt ""
-"rotate_object.xhp\n"
-"par_id3159236\n"
+"groups.xhp\n"
+"hd_id3150716\n"
"28\n"
"help.text"
-msgid "To skew the object vertically or horizontally, drag one of the side handles."
-msgstr ""
-
-#: eyedropper.xhp
-msgctxt ""
-"eyedropper.xhp\n"
-"tit\n"
-"help.text"
-msgid "Replacing Colors"
-msgstr "Ngjyrat sipas dëshirës"
-
-#: eyedropper.xhp
-msgctxt ""
-"eyedropper.xhp\n"
-"bm_id3147436\n"
-"help.text"
-msgid "<bookmark_value>eyedropper tool</bookmark_value><bookmark_value>colors; replacing</bookmark_value><bookmark_value>replacing;colors in bitmaps</bookmark_value><bookmark_value>metafiles;replacing colors</bookmark_value><bookmark_value>bitmaps;replacing colors</bookmark_value><bookmark_value>GIF images;replacing colors</bookmark_value>"
-msgstr ""
-
-#: eyedropper.xhp
-msgctxt ""
-"eyedropper.xhp\n"
-"hd_id3147436\n"
-"38\n"
-"help.text"
-msgid "<variable id=\"eyedropper\"><link href=\"text/sdraw/guide/eyedropper.xhp\" name=\"Replacing Colors\">Replacing Colors</link></variable>"
-msgstr ""
-
-#: eyedropper.xhp
-msgctxt ""
-"eyedropper.xhp\n"
-"par_id3156286\n"
-"24\n"
-"help.text"
-msgid "You can replace colors in bitmaps with the <emph>Color Replacer</emph> tool."
-msgstr ""
-
-#: eyedropper.xhp
-msgctxt ""
-"eyedropper.xhp\n"
-"par_id3154704\n"
-"25\n"
-"help.text"
-msgid "Up to four colors can be replaced at once."
-msgstr ""
-
-#: eyedropper.xhp
-msgctxt ""
-"eyedropper.xhp\n"
-"par_id3147344\n"
-"26\n"
-"help.text"
-msgid "You can also use the <emph>Transparency</emph> option to replace the transparent areas of an image with a color."
-msgstr ""
-
-#: eyedropper.xhp
-msgctxt ""
-"eyedropper.xhp\n"
-"par_id3148488\n"
-"27\n"
-"help.text"
-msgid "Similarly, you can use the <emph>Color Replacer</emph> to make a color on your image transparent."
-msgstr ""
+msgid "To group objects:"
+msgstr "Grupo objektet e vizatimit"
-#: eyedropper.xhp
+#: groups.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"hd_id3150205\n"
-"28\n"
+"groups.xhp\n"
+"par_id3149018\n"
"help.text"
-msgid "To replace colors with the Color Replacer tool"
+msgid "<image id=\"img_id3145643\" src=\"cmd/sc_formatgroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3145643\">Icon</alt></image>"
msgstr ""
-#: eyedropper.xhp
+#: groups.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3154656\n"
+"groups.xhp\n"
+"par_id3147346\n"
"29\n"
"help.text"
-msgid "Ensure that the image you are using is a bitmap (for example, BMP, GIF, JPG, or PNG) or a metafile (for example, WMF)."
+msgid "Select the objects you want to group and choose <emph>Modify - Group</emph>."
msgstr ""
-#: eyedropper.xhp
-#, fuzzy
+#: groups.xhp
msgctxt ""
-"eyedropper.xhp\n"
-"par_id3150202\n"
+"groups.xhp\n"
+"par_id3148485\n"
"30\n"
"help.text"
-msgid "Choose <emph>Tools - Color Replacer</emph>."
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: eyedropper.xhp
-msgctxt ""
-"eyedropper.xhp\n"
-"par_id3155531\n"
-"31\n"
-"help.text"
-msgid "Click the Color Replacer icon and position the mouse pointer over the color you want to replace in the image. The color appears in the box next to the icon."
-msgstr ""
-
-#: eyedropper.xhp
-msgctxt ""
-"eyedropper.xhp\n"
-"par_id3152985\n"
-"32\n"
-"help.text"
-msgid "Click the color in the image. The color appears in the first <emph>Source color</emph> box and the check box next to the color is selected."
-msgstr ""
-
-#: eyedropper.xhp
-msgctxt ""
-"eyedropper.xhp\n"
-"par_id3148866\n"
-"33\n"
-"help.text"
-msgid "In the <emph>Replace with</emph> box, select the new color."
-msgstr ""
-
-#: eyedropper.xhp
-msgctxt ""
-"eyedropper.xhp\n"
-"par_id3145362\n"
-"41\n"
-"help.text"
-msgid "This replaces all occurrences of the <emph>Source color</emph> in the image."
-msgstr ""
-
-#: eyedropper.xhp
-msgctxt ""
-"eyedropper.xhp\n"
-"par_id3151191\n"
-"34\n"
-"help.text"
-msgid "If you want to replace another color while the dialog is open, select the check box in front of <emph>Source color</emph> in the next row and repeat steps 3 to 5."
-msgstr ""
-
-#: eyedropper.xhp
-msgctxt ""
-"eyedropper.xhp\n"
-"par_id3149876\n"
-"36\n"
-"help.text"
-msgid "Click <emph>Replace</emph>."
-msgstr "Zëvendëso stilet e zakonshme"
-
-#: eyedropper.xhp
-msgctxt ""
-"eyedropper.xhp\n"
-"par_id3157871\n"
-"37\n"
-"help.text"
-msgid "If you want to expand or contract the color selection area, increase or decrease the tolerance of the <emph>Color Replacer</emph> tool and repeat your selection."
-msgstr ""
-
-#: eyedropper.xhp
-msgctxt ""
-"eyedropper.xhp\n"
-"par_id3146878\n"
-"39\n"
-"help.text"
-msgid "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Color Replacer</link>"
-msgstr ""
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"tit\n"
-"help.text"
-msgid "Shortcut Keys for Drawing Objects"
-msgstr "Pop-up meny për objekte të vizatimit"
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"bm_id3155628\n"
-"help.text"
-msgid "<bookmark_value>accessibility; %PRODUCTNAME Draw</bookmark_value><bookmark_value>draw objects; text entry mode</bookmark_value><bookmark_value>text entry mode for draw objects</bookmark_value>"
-msgstr ""
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"hd_id3155628\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"keyboard\"><link href=\"text/sdraw/guide/keyboard.xhp\" name=\"Shortcut Keys for Drawing Objects\">Shortcut Keys for Drawing Objects</link></variable>"
-msgstr ""
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"par_id3148663\n"
-"13\n"
-"help.text"
-msgid "You can create and edit drawing objects using the keyboard."
-msgstr ""
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"hd_id3125863\n"
-"12\n"
-"help.text"
-msgid "To Create and Edit a Drawing Object"
-msgstr ""
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"par_id3153188\n"
-"11\n"
-"help.text"
-msgid "Press <item type=\"keycode\">F6</item> to navigate to the <emph>Drawing</emph> bar."
-msgstr ""
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"par_id3146971\n"
-"10\n"
-"help.text"
-msgid "Press the <item type=\"keycode\">Right</item> arrow key until you reach the toolbar icon of a drawing tool."
-msgstr ""
-
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"par_idN106CD\n"
-"help.text"
-msgid "If there is an arrow next to the icon, the drawing tool opens a sub toolbar. Press the <item type=\"keycode\">Up</item> or <item type=\"keycode\">Down</item> arrow key to open the sub toolbar, then press the <item type=\"keycode\">Right</item> or <item type=\"keycode\">Left</item> key to select an icon."
+msgid "For example, you can group all of the objects in a company logo to move and resize the logo as a single object."
msgstr ""
-#: keyboard.xhp
+#: groups.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3147338\n"
-"8\n"
+"groups.xhp\n"
+"par_id3147002\n"
+"31\n"
"help.text"
-msgid "Press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter</item>."
+msgid "After you have grouped objects, selecting any part of the group selects the entire group."
msgstr ""
-#: keyboard.xhp
+#: groups.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3154705\n"
-"7\n"
+"groups.xhp\n"
+"hd_id3150205\n"
+"55\n"
"help.text"
-msgid "The object is created at the center of the current document."
-msgstr ""
+msgid "Selecting Objects in a Group"
+msgstr "Emër Grupi Volumi në përdorim"
-#: keyboard.xhp
+#: groups.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3155962\n"
-"6\n"
+"groups.xhp\n"
+"par_id3150370\n"
"help.text"
-msgid "To return to the document, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6</item>."
+msgid "<image id=\"img_id3155376\" src=\"cmd/sc_entergroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155376\">Icon</alt></image>"
msgstr ""
-#: keyboard.xhp
+#: groups.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3155062\n"
-"5\n"
+"groups.xhp\n"
+"par_id3156450\n"
+"56\n"
"help.text"
-msgid "You can use the arrow keys to position the object where you want. To choose a command from the context menu for the object, press <item type=\"keycode\">Shift+F10</item>."
+msgid "You can select single objects in a group by entering the group. Double-click a group to enter it and click on the object to select it. You can also add or delete objects to and from a group in this mode. The objects that are not part of the group are grayed out."
msgstr ""
-#: keyboard.xhp
-msgctxt ""
-"keyboard.xhp\n"
-"hd_id3150306\n"
-"4\n"
-"help.text"
-msgid "To Select an Object"
-msgstr "Deri në objektin tjetër"
-
-#: keyboard.xhp
+#: groups.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3152990\n"
-"3\n"
+"groups.xhp\n"
+"par_id3151239\n"
"help.text"
-msgid "Press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6</item> to enter the document."
+msgid "<image id=\"img_id3155264\" src=\"cmd/sc_leavegroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155264\">Icon</alt></image>"
msgstr ""
-#: keyboard.xhp
+#: groups.xhp
msgctxt ""
-"keyboard.xhp\n"
-"par_id3145587\n"
-"2\n"
+"groups.xhp\n"
+"par_id3150213\n"
+"58\n"
"help.text"
-msgid "Press <item type=\"keycode\">Tab</item> until you reach the object you want to select."
+msgid "To exit a group, double-click anywhere outside it."
msgstr ""
#: join_objects.xhp
@@ -1301,373 +1724,251 @@ msgctxt ""
msgid "You can only use the <emph>Close Object</emph> command on connected lines, <emph>Freeform Lines </emph>and unfilled <emph>Curves</emph>."
msgstr ""
-#: cross_fading.xhp
+#: join_objects3d.xhp
msgctxt ""
-"cross_fading.xhp\n"
+"join_objects3d.xhp\n"
"tit\n"
"help.text"
-msgid "Cross-Fading Two Objects"
-msgstr ""
+msgid "Assembling 3D Objects"
+msgstr "Vetitë e 3D objekteve"
-#: cross_fading.xhp
+#: join_objects3d.xhp
msgctxt ""
-"cross_fading.xhp\n"
-"bm_id3150715\n"
+"join_objects3d.xhp\n"
+"bm_id3154014\n"
"help.text"
-msgid "<bookmark_value>draw objects; cross-fading two objects</bookmark_value><bookmark_value>cross-fading; two draw objects</bookmark_value>"
+msgid "<bookmark_value>3D objects; assembling</bookmark_value><bookmark_value>assembled objects in 3D</bookmark_value><bookmark_value>combining;3D objects</bookmark_value><bookmark_value>joining;3D objects</bookmark_value>"
msgstr ""
-#: cross_fading.xhp
+#: join_objects3d.xhp
msgctxt ""
-"cross_fading.xhp\n"
-"hd_id3150715\n"
-"17\n"
+"join_objects3d.xhp\n"
+"hd_id3156442\n"
+"29\n"
"help.text"
-msgid "<variable id=\"cross_fading\"><link href=\"text/sdraw/guide/cross_fading.xhp\" name=\"Cross-Fading Two Objects\">Cross-Fading Two Objects</link></variable>"
+msgid "<variable id=\"join_objects3d\"><link href=\"text/sdraw/guide/join_objects3d.xhp\" name=\"Assembling 3D Objects\">Assembling 3D Objects</link></variable>"
msgstr ""
-#: cross_fading.xhp
+#: join_objects3d.xhp
msgctxt ""
-"cross_fading.xhp\n"
-"par_id3154754\n"
-"18\n"
+"join_objects3d.xhp\n"
+"par_id3145251\n"
+"30\n"
"help.text"
-msgid "Cross-fading creates shapes and distributes them by uniform increments between two drawing objects."
+msgid "3D objects that each form a 3D scene can be combined into a single 3D scene."
msgstr ""
-#: cross_fading.xhp
+#: join_objects3d.xhp
msgctxt ""
-"cross_fading.xhp\n"
-"par_id3155112\n"
+"join_objects3d.xhp\n"
+"hd_id3150042\n"
"41\n"
"help.text"
-msgid "The cross-fading command is only available in $[officename] Draw. You can, however, copy and paste cross-faded objects into $[officename] Impress."
-msgstr ""
+msgid "To combine 3D objects:"
+msgstr "Në 3D objekt rrotullues"
-#: cross_fading.xhp
+#: join_objects3d.xhp
msgctxt ""
-"cross_fading.xhp\n"
-"hd_id3149209\n"
-"20\n"
+"join_objects3d.xhp\n"
+"par_id3154702\n"
+"31\n"
"help.text"
-msgid "To cross-fade two objects:"
+msgid "Insert a 3D object from the <emph>3D Objects</emph> toolbar (for example, a cube)."
msgstr ""
-#: cross_fading.xhp
+#: join_objects3d.xhp
msgctxt ""
-"cross_fading.xhp\n"
-"par_id3150370\n"
-"45\n"
+"join_objects3d.xhp\n"
+"par_id3155335\n"
+"32\n"
"help.text"
-msgid "Hold down Shift and click each object."
+msgid "Insert a second slightly larger 3D object (for example, a sphere)."
msgstr ""
-#: cross_fading.xhp
+#: join_objects3d.xhp
msgctxt ""
-"cross_fading.xhp\n"
-"par_id3166428\n"
-"22\n"
+"join_objects3d.xhp\n"
+"par_id3148488\n"
+"33\n"
"help.text"
-msgid "Choose <emph>Edit - Cross-fading</emph>."
+msgid "Select the second 3D object (sphere) and choose <emph>Edit - Cut</emph>."
msgstr ""
-#: cross_fading.xhp
+#: join_objects3d.xhp
msgctxt ""
-"cross_fading.xhp\n"
-"par_id3156450\n"
-"44\n"
+"join_objects3d.xhp\n"
+"par_id3149211\n"
+"34\n"
"help.text"
-msgid "Enter a value to specify the number of objects between the start and end of the cross-fade in the <emph>Increments</emph> box."
+msgid "Double-click the first object (cube) to enter its group."
msgstr ""
-#: cross_fading.xhp
-msgctxt ""
-"cross_fading.xhp\n"
-"par_id3149405\n"
-"23\n"
-"help.text"
-msgid "Click <emph>OK</emph>."
-msgstr "Mosparaqitje;Në rregull;Anulo:Ndihmë"
-
-#: cross_fading.xhp
+#: join_objects3d.xhp
msgctxt ""
-"cross_fading.xhp\n"
-"par_id3151240\n"
-"24\n"
+"join_objects3d.xhp\n"
+"par_id3154652\n"
+"35\n"
"help.text"
-msgid "A group containing the two original objects and the specified number (increments) of cross-faded objects is displayed."
+msgid "Choose <emph>Edit - Paste</emph>. Both objects are now part of the same group. If you want, you can edit the individual objects or change their position within the group."
msgstr ""
-#: cross_fading.xhp
+#: join_objects3d.xhp
msgctxt ""
-"cross_fading.xhp\n"
-"par_id3159203\n"
+"join_objects3d.xhp\n"
+"par_id3155376\n"
+"36\n"
"help.text"
-msgid "<image id=\"img_id3150210\" src=\"res/helpimg/ueberblenden.png\" width=\"74.88mm\" height=\"65.62mm\"><alt id=\"alt_id3150210\">Illustration for crossfading</alt></image>"
+msgid "Double-click outside the group to exit the group."
msgstr ""
-#: cross_fading.xhp
+#: join_objects3d.xhp
msgctxt ""
-"cross_fading.xhp\n"
-"par_id3154766\n"
-"25\n"
+"join_objects3d.xhp\n"
+"par_id3148606\n"
+"38\n"
"help.text"
-msgid "You can edit the individual objects of a group by selecting the group and pressing F3. Press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F3 to exit the group editing mode."
+msgid "You cannot intersect or subtract 3D objects."
msgstr ""
-#: cross_fading.xhp
+#: join_objects3d.xhp
msgctxt ""
-"cross_fading.xhp\n"
-"par_id3155760\n"
-"42\n"
+"join_objects3d.xhp\n"
+"par_id3154537\n"
+"39\n"
"help.text"
-msgid "<link href=\"text/simpress/01/02150000.xhp\" name=\"Editing - Cross-fading\">Editing - Cross-fading</link>"
+msgid "<link href=\"text/simpress/02/10090000.xhp\" name=\"Objects in 3D\">Objects in 3D</link>"
msgstr ""
-#: align_arrange.xhp
+#: keyboard.xhp
msgctxt ""
-"align_arrange.xhp\n"
+"keyboard.xhp\n"
"tit\n"
"help.text"
-msgid "Arranging, Aligning and Distributing Objects"
-msgstr ""
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"hd_id3149656\n"
-"73\n"
-"help.text"
-msgid "<variable id=\"align_arrange\"><link href=\"text/sdraw/guide/align_arrange.xhp\" name=\"Arranging and Aligning Objects\">Arranging, Aligning and Distributing Objects</link></variable>"
-msgstr ""
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"bm_id3125863\n"
-"help.text"
-msgid "<bookmark_value>arranging; objects (guide)</bookmark_value><bookmark_value>objects;aligning</bookmark_value><bookmark_value>distributing draw objects</bookmark_value><bookmark_value>aligning;draw objects</bookmark_value>"
-msgstr ""
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"hd_id3125863\n"
-"17\n"
-"help.text"
-msgid "Arranging Objects"
-msgstr "Titull, 4 Objekte"
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3153727\n"
-"18\n"
-"help.text"
-msgid "Each object that you place in your document is successively stacked on the preceding object. To re-arrange the stacking order of a selected object, proceed as follows."
-msgstr ""
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN107D5\n"
-"help.text"
-msgid "Click the object whose position you want to change."
-msgstr ""
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_id3150327\n"
-"78\n"
-"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to bring up the context menu and choose one of the arrange options:"
-msgstr ""
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN107E6\n"
-"help.text"
-msgid "<emph>Bring to Front</emph> places the object on top of all other objects"
-msgstr ""
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN107EC\n"
-"help.text"
-msgid "<emph>Bring Forward</emph> places the object one place forward in the stack of objects"
-msgstr ""
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN107F2\n"
-"help.text"
-msgid "<emph>Send Backward</emph> places the object one place back in the stack of objects"
-msgstr ""
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN107F8\n"
-"help.text"
-msgid "<emph>Send to Back</emph> places the object behind all other objects"
-msgstr ""
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN107FE\n"
-"help.text"
-msgid "<emph>Behind Object</emph> places the object behind another object that you select"
-msgstr ""
-
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"hd_id3155766\n"
-"79\n"
-"help.text"
-msgid "Arranging an Object Behind Another Object"
-msgstr ""
+msgid "Shortcut Keys for Drawing Objects"
+msgstr "Pop-up meny për objekte të vizatimit"
-#: align_arrange.xhp
+#: keyboard.xhp
msgctxt ""
-"align_arrange.xhp\n"
-"par_idN10811\n"
+"keyboard.xhp\n"
+"bm_id3155628\n"
"help.text"
-msgid "Click the object whose position you want to change."
+msgid "<bookmark_value>accessibility; %PRODUCTNAME Draw</bookmark_value><bookmark_value>draw objects; text entry mode</bookmark_value><bookmark_value>text entry mode for draw objects</bookmark_value>"
msgstr ""
-#: align_arrange.xhp
+#: keyboard.xhp
msgctxt ""
-"align_arrange.xhp\n"
-"par_id3154253\n"
-"80\n"
+"keyboard.xhp\n"
+"hd_id3155628\n"
+"1\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Behind Object</emph>. The mouse pointer changes to a hand."
+msgid "<variable id=\"keyboard\"><link href=\"text/sdraw/guide/keyboard.xhp\" name=\"Shortcut Keys for Drawing Objects\">Shortcut Keys for Drawing Objects</link></variable>"
msgstr ""
-#: align_arrange.xhp
+#: keyboard.xhp
msgctxt ""
-"align_arrange.xhp\n"
-"par_id3149126\n"
-"81\n"
+"keyboard.xhp\n"
+"par_id3148663\n"
+"13\n"
"help.text"
-msgid "Click the object behind which you want to place the selected object."
+msgid "You can create and edit drawing objects using the keyboard."
msgstr ""
-#: align_arrange.xhp
+#: keyboard.xhp
msgctxt ""
-"align_arrange.xhp\n"
-"hd_id3145789\n"
-"20\n"
+"keyboard.xhp\n"
+"hd_id3125863\n"
+"12\n"
"help.text"
-msgid "Reversing The Stacking Order of Two Objects"
+msgid "To Create and Edit a Drawing Object"
msgstr ""
-#: align_arrange.xhp
+#: keyboard.xhp
msgctxt ""
-"align_arrange.xhp\n"
-"par_id3154022\n"
-"83\n"
+"keyboard.xhp\n"
+"par_id3153188\n"
+"11\n"
"help.text"
-msgid "Shift-click both objects to select them."
+msgid "Press <item type=\"keycode\">F6</item> to navigate to the <emph>Drawing</emph> bar."
msgstr ""
-#: align_arrange.xhp
+#: keyboard.xhp
msgctxt ""
-"align_arrange.xhp\n"
-"par_id3155114\n"
-"84\n"
+"keyboard.xhp\n"
+"par_id3146971\n"
+"10\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Arrange</item> to open the context menu and choose <emph>Reverse</emph>."
+msgid "Press the <item type=\"keycode\">Right</item> arrow key until you reach the toolbar icon of a drawing tool."
msgstr ""
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"hd_id3166425\n"
-"21\n"
-"help.text"
-msgid "Aligning Objects"
-msgstr "Titull, 4 Objekte"
-
-#: align_arrange.xhp
+#: keyboard.xhp
msgctxt ""
-"align_arrange.xhp\n"
-"par_id3152994\n"
-"22\n"
+"keyboard.xhp\n"
+"par_idN106CD\n"
"help.text"
-msgid "The <emph>Alignment</emph> function enables you to align objects relative to each other or relative to the page."
+msgid "If there is an arrow next to the icon, the drawing tool opens a sub toolbar. Press the <item type=\"keycode\">Up</item> or <item type=\"keycode\">Down</item> arrow key to open the sub toolbar, then press the <item type=\"keycode\">Right</item> or <item type=\"keycode\">Left</item> key to select an icon."
msgstr ""
-#: align_arrange.xhp
+#: keyboard.xhp
msgctxt ""
-"align_arrange.xhp\n"
-"par_idN108A3\n"
+"keyboard.xhp\n"
+"par_id3147338\n"
+"8\n"
"help.text"
-msgid "Select an object to align it to the page or select multiple objects to align them relative to each other."
+msgid "Press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter</item>."
msgstr ""
-#: align_arrange.xhp
+#: keyboard.xhp
msgctxt ""
-"align_arrange.xhp\n"
-"par_idN108A7\n"
+"keyboard.xhp\n"
+"par_id3154705\n"
+"7\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Alignment</item> and select one of the alignment options."
+msgid "The object is created at the center of the current document."
msgstr ""
-#: align_arrange.xhp
-msgctxt ""
-"align_arrange.xhp\n"
-"par_idN108AE\n"
-"help.text"
-msgid "Distributing Objects"
-msgstr "Titull, 4 Objekte"
-
-#: align_arrange.xhp
+#: keyboard.xhp
msgctxt ""
-"align_arrange.xhp\n"
-"par_id3151390\n"
-"71\n"
+"keyboard.xhp\n"
+"par_id3155962\n"
+"6\n"
"help.text"
-msgid "If you select three or more objects in Draw, you can also use the <link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\"><emph>Distribution</emph></link> command to distribute the vertical and horizontal spacing evenly between the objects."
+msgid "To return to the document, press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6</item>."
msgstr ""
-#: align_arrange.xhp
+#: keyboard.xhp
msgctxt ""
-"align_arrange.xhp\n"
-"par_idN108CE\n"
+"keyboard.xhp\n"
+"par_id3155062\n"
+"5\n"
"help.text"
-msgid "Select three or more objects to be distributed."
+msgid "You can use the arrow keys to position the object where you want. To choose a command from the context menu for the object, press <item type=\"keycode\">Shift+F10</item>."
msgstr ""
-#: align_arrange.xhp
+#: keyboard.xhp
msgctxt ""
-"align_arrange.xhp\n"
-"par_idN108D2\n"
+"keyboard.xhp\n"
+"hd_id3150306\n"
+"4\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Modify - Distribution</item>."
-msgstr ""
+msgid "To Select an Object"
+msgstr "Deri në objektin tjetër"
-#: align_arrange.xhp
+#: keyboard.xhp
msgctxt ""
-"align_arrange.xhp\n"
-"par_idN108DA\n"
+"keyboard.xhp\n"
+"par_id3152990\n"
+"3\n"
"help.text"
-msgid "Select the horizontal and vertical distribution option and click <emph>OK</emph>."
+msgid "Press <item type=\"keycode\"><switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F6</item> to enter the document."
msgstr ""
-#: align_arrange.xhp
+#: keyboard.xhp
msgctxt ""
-"align_arrange.xhp\n"
-"par_id3150535\n"
-"72\n"
+"keyboard.xhp\n"
+"par_id3145587\n"
+"2\n"
"help.text"
-msgid "Selected objects are distributed evenly along the horizontal or vertical axis. The two outermost objects are used as reference points and do not move when the <emph>Distribution</emph> command is applied."
+msgid "Press <item type=\"keycode\">Tab</item> until you reach the object you want to select."
msgstr ""
#: main.xhp
@@ -1740,408 +2041,106 @@ msgctxt ""
msgid "Miscellaneous"
msgstr "Të ndryshme"
-#: color_define.xhp
+#: rotate_object.xhp
msgctxt ""
-"color_define.xhp\n"
+"rotate_object.xhp\n"
"tit\n"
"help.text"
-msgid "Defining Custom Colors"
-msgstr "Ngjyrat për ndryshime"
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"bm_id3149263\n"
-"help.text"
-msgid "<bookmark_value>colors; defining and saving</bookmark_value> <bookmark_value>user-defined colors</bookmark_value> <bookmark_value>custom colors</bookmark_value>"
-msgstr ""
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"hd_id3149263\n"
-"7\n"
-"help.text"
-msgid "<variable id=\"color_define\"><link href=\"text/sdraw/guide/color_define.xhp\" name=\"Defining Custom Colors\">Defining Custom Colors</link></variable>"
-msgstr ""
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3154511\n"
-"8\n"
-"help.text"
-msgid "If you want, you can mix a custom color and add it to a color table."
-msgstr ""
+msgid "Rotating Objects"
+msgstr "Titull, 4 Objekte"
-#: color_define.xhp
+#: rotate_object.xhp
msgctxt ""
-"color_define.xhp\n"
-"hd_id3155600\n"
-"9\n"
+"rotate_object.xhp\n"
+"bm_id3154684\n"
"help.text"
-msgid "To define a custom color"
+msgid "<bookmark_value>rotating; draw objects</bookmark_value><bookmark_value>draw objects; rotating</bookmark_value><bookmark_value>pivot points of draw objects</bookmark_value><bookmark_value>skewing draw objects</bookmark_value>"
msgstr ""
-#: color_define.xhp
+#: rotate_object.xhp
msgctxt ""
-"color_define.xhp\n"
-"par_id3150327\n"
-"25\n"
+"rotate_object.xhp\n"
+"hd_id3154684\n"
+"12\n"
"help.text"
-msgid "Choose <emph>Format - Area</emph> and click the <emph>Colors</emph> tab. A table of the predefined colors is displayed."
+msgid "<variable id=\"rotate_object\"><link href=\"text/sdraw/guide/rotate_object.xhp\" name=\"Rotating Objects\">Rotating Objects</link></variable>"
msgstr ""
-#: color_define.xhp
+#: rotate_object.xhp
msgctxt ""
-"color_define.xhp\n"
-"par_id3154657\n"
+"rotate_object.xhp\n"
+"par_id3149262\n"
"13\n"
"help.text"
-msgid "Changes made to the standard color table are permanent and are saved automatically."
-msgstr ""
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3166425\n"
-"14\n"
-"help.text"
-msgid "Click a color in the table that is similar to the one you want to mix. The color appears in the upper preview box to the right of the table."
-msgstr ""
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3152992\n"
-"15\n"
-"help.text"
-msgid "Select the RGB or CMYK color model in the box below the preview boxes."
-msgstr ""
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id4979705\n"
-"help.text"
-msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The CMYK controls are provided only to ease the input of color values using CMYK notation."
-msgstr ""
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3152987\n"
-"16\n"
-"help.text"
-msgid "The RGB color model mixes red, green and blue light to create colors on a computer screen. In the RGB model, the three color components are additive and can have values ranging from 0 (black) to 255 (white). The CMYK color model combines Cyan (C), Magenta (M), Yellow (Y), and blacK (K, also used for \"Key\") to create colors for printing. The four colors of the CMYK models are subtractive and are defined as percentages. Black corresponds to 100 % and white to 0 %."
-msgstr ""
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3145386\n"
-"17\n"
-"help.text"
-msgid "Enter a numeric value in the boxes next to the color components. The new color appears in the preview box directly above the color model box."
-msgstr ""
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3152871\n"
-"18\n"
-"help.text"
-msgid "You can also create a color using a color spectrum. Click the <emph>Edit</emph> button to open the <link href=\"text/shared/optionen/01010501.xhp\" name=\"Color\"><emph>Color</emph></link> dialog. Click a color. Use the Hue, Saturation, and Brightness boxes to adjust your color selection."
-msgstr ""
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3153011\n"
-"19\n"
-"help.text"
-msgid "Do one of the following:"
-msgstr "Gabimi në vazhdim ka ndodhur:"
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3147244\n"
-"26\n"
-"help.text"
-msgid "If you want to replace the color in the standard color table that your custom color is based on, click <emph>Modify</emph>."
-msgstr ""
-
-#: color_define.xhp
-msgctxt ""
-"color_define.xhp\n"
-"par_id3145116\n"
-"20\n"
-"help.text"
-msgid "If you want to add your custom color to the standard color table, enter a name in the <emph>Name</emph> text box and click <emph>Add</emph>."
+msgid "You can rotate an object around its default pivot point (center point) or a pivot point that you designate."
msgstr ""
-#: color_define.xhp
+#: rotate_object.xhp
msgctxt ""
-"color_define.xhp\n"
-"par_id3145236\n"
-"23\n"
+"rotate_object.xhp\n"
+"par_id3146975\n"
"help.text"
-msgid "<link href=\"text/shared/01/03170000.xhp\" name=\"Color bar\">Color bar</link>"
+msgid "<image id=\"img_id3154729\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.564cm\" height=\"0.564cm\"><alt id=\"alt_id3154729\">Icon</alt></image>"
msgstr ""
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"tit\n"
-"help.text"
-msgid "Grouping Objects"
-msgstr "Titull, 4 Objekte"
-
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"bm_id3150793\n"
+"rotate_object.xhp\n"
+"par_id3150716\n"
+"14\n"
"help.text"
-msgid "<bookmark_value>grouping; draw objects</bookmark_value><bookmark_value>draw objects; grouping</bookmark_value>"
+msgid "Select the object you want to rotate. On the <emph>Mode</emph> toolbar in $[officename] Draw or on the <emph>Drawing</emph> bar in $[officename] Impress, click the <emph>Rotate</emph> icon."
msgstr ""
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"hd_id3150793\n"
-"26\n"
+"rotate_object.xhp\n"
+"par_id3149021\n"
+"69\n"
"help.text"
-msgid "<variable id=\"groups\"><link href=\"text/sdraw/guide/groups.xhp\" name=\"Grouping Objects\">Grouping Objects</link></variable>"
+msgid "Move the pointer to a corner handle so that the pointer changes to a rotate symbol. Drag the handle to rotate the object."
msgstr ""
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"par_id3153728\n"
-"27\n"
+"rotate_object.xhp\n"
+"par_id0930200803002335\n"
"help.text"
-msgid "You can combine several objects into a group so that they act as a single object. You can move and transform all objects in a group as a single unit. You can also change the properties (for example, line size, fill color) of all objects in a group as a whole or for individual objects in a group. Groups can be temporary or assigned:"
+msgid "Hold down the Shift key to restrict the rotation to multiples of 15 degrees."
msgstr ""
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"par_id3147434\n"
-"64\n"
+"rotate_object.xhp\n"
+"par_id0930200803002463\n"
"help.text"
-msgid "Temporary - group only lasts as long as all of the combined objects are selected."
+msgid "Right-click the object to open the context menu. Choose Position and Size - Rotation to enter an exact rotation value."
msgstr ""
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"par_id3154490\n"
-"65\n"
+"rotate_object.xhp\n"
+"par_id3155962\n"
"help.text"
-msgid "Assigned - group lasts until it is ungrouped through a menu command."
+msgid "<image id=\"img_id3154023\" src=\"res/helpimg/rotieren.png\" width=\"5.424cm\" height=\"3.916cm\"><alt id=\"alt_id3154023\">Icon</alt></image>"
msgstr ""
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"par_id3145252\n"
-"66\n"
+"rotate_object.xhp\n"
+"par_id3166424\n"
+"16\n"
"help.text"
-msgid "Groups can also be grouped in other groups. Actions applied to a group do not affect the relative position of the individual objects to each other in the group."
+msgid "To change the pivot point, drag the small circle in the center of the object to a new location."
msgstr ""
-#: groups.xhp
+#: rotate_object.xhp
msgctxt ""
-"groups.xhp\n"
-"hd_id3150716\n"
+"rotate_object.xhp\n"
+"par_id3159236\n"
"28\n"
"help.text"
-msgid "To group objects:"
-msgstr "Grupo objektet e vizatimit"
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3149018\n"
-"help.text"
-msgid "<image id=\"img_id3145643\" src=\"cmd/sc_formatgroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3145643\">Icon</alt></image>"
-msgstr ""
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3147346\n"
-"29\n"
-"help.text"
-msgid "Select the objects you want to group and choose <emph>Modify - Group</emph>."
-msgstr ""
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3148485\n"
-"30\n"
-"help.text"
-msgid "For example, you can group all of the objects in a company logo to move and resize the logo as a single object."
-msgstr ""
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3147002\n"
-"31\n"
-"help.text"
-msgid "After you have grouped objects, selecting any part of the group selects the entire group."
-msgstr ""
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"hd_id3150205\n"
-"55\n"
-"help.text"
-msgid "Selecting Objects in a Group"
-msgstr "Emër Grupi Volumi në përdorim"
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3150370\n"
-"help.text"
-msgid "<image id=\"img_id3155376\" src=\"cmd/sc_entergroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155376\">Icon</alt></image>"
-msgstr ""
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3156450\n"
-"56\n"
-"help.text"
-msgid "You can select single objects in a group by entering the group. Double-click a group to enter it and click on the object to select it. You can also add or delete objects to and from a group in this mode. The objects that are not part of the group are grayed out."
-msgstr ""
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3151239\n"
-"help.text"
-msgid "<image id=\"img_id3155264\" src=\"cmd/sc_leavegroup.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3155264\">Icon</alt></image>"
-msgstr ""
-
-#: groups.xhp
-msgctxt ""
-"groups.xhp\n"
-"par_id3150213\n"
-"58\n"
-"help.text"
-msgid "To exit a group, double-click anywhere outside it."
-msgstr ""
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"tit\n"
-"help.text"
-msgid "Duplicating Objects"
-msgstr "Titull, 4 Objekte"
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"bm_id3145750\n"
-"help.text"
-msgid "<bookmark_value>doubling draw objects</bookmark_value><bookmark_value>draw objects; duplicating</bookmark_value><bookmark_value>duplicating draw objects</bookmark_value><bookmark_value>multiplying draw objects</bookmark_value>"
-msgstr ""
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"hd_id3145750\n"
-"3\n"
-"help.text"
-msgid "<variable id=\"duplicate_object\"><link href=\"text/sdraw/guide/duplicate_object.xhp\" name=\"Duplicating Objects\">Duplicating Objects</link></variable>"
-msgstr ""
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3149400\n"
-"4\n"
-"help.text"
-msgid "You can create duplicate or multiple copies of an object. The copies can be identical or can differ in size, color, orientation and location."
-msgstr ""
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3153415\n"
-"5\n"
-"help.text"
-msgid "The following example creates a stack of coins by making multiple copies of a single ellipse."
-msgstr ""
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3149129\n"
-"6\n"
-"help.text"
-msgid "Use the <emph>Ellipse</emph> tool to draw a solid yellow ellipse."
-msgstr ""
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3149209\n"
-"8\n"
-"help.text"
-msgid "Select the ellipse and choose <emph>Edit - Duplicate</emph>."
-msgstr ""
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3145585\n"
-"9\n"
-"help.text"
-msgid "Enter 12 as <emph>Number of copies.</emph>"
-msgstr ""
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3151192\n"
-"11\n"
-"help.text"
-msgid "Enter a negative value for the <emph>Width</emph> and <emph>Height</emph> so that the coins decrease in size as you go up the stack."
-msgstr ""
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3151387\n"
-"39\n"
-"help.text"
-msgid "To define a color transition for the coins, select different colors in the <emph>Start</emph> and <emph>End</emph> boxes. The <emph>Start</emph> color is applied to the object that you are duplicating."
-msgstr ""
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3149947\n"
-"12\n"
-"help.text"
-msgid "Click <emph>OK</emph> to create the duplicates."
-msgstr ""
-
-#: duplicate_object.xhp
-msgctxt ""
-"duplicate_object.xhp\n"
-"par_id3153935\n"
-"50\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/02120000.xhp\" name=\"Edit - Duplicate\">Edit - Duplicate</link>"
+msgid "To skew the object vertically or horizontally, drag one of the side handles."
msgstr ""
#: text_enter.xhp
diff --git a/source/sq/helpcontent2/source/text/shared.po b/source/sq/helpcontent2/source/text/shared.po
index 4f28be5a274..803f638dea5 100644
--- a/source/sq/helpcontent2/source/text/shared.po
+++ b/source/sq/helpcontent2/source/text/shared.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-01-18 13:18+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-05 19:07+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,203 +15,6 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"tit\n"
-"help.text"
-msgid "Table Data Bar"
-msgstr "Shiriti i Objektit Tabelë"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"hd_id3147102\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/main0212.xhp\" name=\"Table Data Bar\">Table Data Bar</link>"
-msgstr ""
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_id3153394\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\".\">Use the Table Data bar to control the data view. </ahelp>"
-msgstr ""
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_id3149346\n"
-"12\n"
-"help.text"
-msgid "The filtered data view is active until you change or cancel the sorting or filtering criteria. If a filter is active, the <emph>Apply Filter</emph> icon on the <emph>Table Data</emph> bar is activated."
-msgstr ""
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_id3147303\n"
-"help.text"
-msgid "<image id=\"img_id3153896\" src=\"cmd/sc_recsave.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3153896\">Icon</alt></image>"
-msgstr ""
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_id3153360\n"
-"13\n"
-"help.text"
-msgid "Save Record"
-msgstr "Ruaje shënimin"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_id3145173\n"
-"help.text"
-msgid "<image id=\"img_id3154123\" src=\"cmd/sc_recundo.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3154123\">Icon</alt></image>"
-msgstr ""
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_id3151382\n"
-"14\n"
-"help.text"
-msgid "Undo: Data Input"
-msgstr "Zhbëj: Futjen e të Dhënave"
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_idN10744\n"
-"help.text"
-msgid "<link href=\"text/shared/02/12070000.xhp\">Data to Text</link>"
-msgstr ""
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_idN10753\n"
-"help.text"
-msgid "<ahelp hid=\".\">Inserts all fields of the marked record into the current document at the cursor position.</ahelp>"
-msgstr ""
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_idN10780\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/mailmerge00.xhp\">Mail Merge</link>"
-msgstr ""
-
-#: main0212.xhp
-msgctxt ""
-"main0212.xhp\n"
-"par_idN1078F\n"
-"help.text"
-msgid "<ahelp hid=\".\">Starts the Mail Merge Wizard to create form letters.</ahelp>"
-msgstr ""
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"tit\n"
-"help.text"
-msgid "Status Bar in $[officename] Basic Documents"
-msgstr ""
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"hd_id3148520\n"
-"1\n"
-"help.text"
-msgid "<link href=\"text/shared/main0208.xhp\" name=\"Status Bar in $[officename] Basic Documents\">Status Bar in $[officename] Basic Documents</link>"
-msgstr ""
-
-#: main0208.xhp
-msgctxt ""
-"main0208.xhp\n"
-"par_id3154136\n"
-"2\n"
-"help.text"
-msgid "The <emph>Status</emph> Bar displays information about the current $[officename] Basic document."
-msgstr ""
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Programming $[officename]"
-msgstr ""
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"bm_id3154232\n"
-"help.text"
-msgid "<bookmark_value>programming;$[officename]</bookmark_value><bookmark_value>Basic;programming</bookmark_value>"
-msgstr ""
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"hd_id3154232\n"
-"1\n"
-"help.text"
-msgid "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">Programming $[officename]</link></variable>"
-msgstr ""
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3149760\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"basic\">$[officename] can be controlled by using the $[officename] API. </variable>"
-msgstr ""
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3151111\n"
-"12\n"
-"help.text"
-msgid "$[officename] provides an Application Programming Interface (API) that enables you to control $[officename] components by using various programming languages. A $[officename] Software Development Kit is available for the programming interface."
-msgstr ""
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3156346\n"
-"15\n"
-"help.text"
-msgid "For more information about $[officename] API reference, please visit http://api.libreoffice.org/"
-msgstr ""
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3153825\n"
-"13\n"
-"help.text"
-msgid "Macros created with $[officename] Basic based on the old programming interface will no longer be supported by the current version."
-msgstr ""
-
-#: main0600.xhp
-msgctxt ""
-"main0600.xhp\n"
-"par_id3149795\n"
-"14\n"
-"help.text"
-msgid "For more information on $[officename] Basic, select \"$[officename] Basic\" in the list box."
-msgstr ""
-
#: 3dsettings_toolbar.xhp
msgctxt ""
"3dsettings_toolbar.xhp\n"
@@ -452,6 +255,320 @@ msgctxt ""
msgid "<ahelp hid=\".\">Opens the Extrusion Color toolbar.</ahelp>"
msgstr ""
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"tit\n"
+"help.text"
+msgid "Fontwork"
+msgstr "Puna me fonte"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1055A\n"
+"help.text"
+msgid "<link href=\"text/shared/fontwork_toolbar.xhp\">Fontwork</link>"
+msgstr ""
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1056A\n"
+"help.text"
+msgid "The Fontwork toolbar opens when you select a Fontwork object."
+msgstr ""
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1056D\n"
+"help.text"
+msgid "Fontwork Gallery"
+msgstr "Galeria e fonteve"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN10571\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Fontwork Gallery where you can select another preview. Click OK to apply the new set of properties to your Fontwork object.</ahelp>"
+msgstr ""
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN10588\n"
+"help.text"
+msgid "Fontwork Shape"
+msgstr "Forma e fonteve"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1058C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Fontwork Shape toolbar. Click a shape to apply the shape to all selected Fontwork objects.</ahelp>"
+msgstr ""
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105A6\n"
+"help.text"
+msgid "Fontwork Same Letter Heights"
+msgstr "Madhësi e njëjtë e fontit"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105AA\n"
+"help.text"
+msgid "<ahelp hid=\".\">Switches the letter height of the selected Fontwork objects from normal to the same height for all objects.</ahelp>"
+msgstr ""
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105C1\n"
+"help.text"
+msgid "Fontwork Alignment"
+msgstr "Mbështetja e fonteve"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105C5\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Fontwork Alignment window.</ahelp>"
+msgstr ""
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105DC\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to apply the alignment to the selected Fontwork objects.</ahelp>"
+msgstr ""
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105F3\n"
+"help.text"
+msgid "Fontwork Character Spacing"
+msgstr "Hapësira e karaktereve të fontit"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN105F7\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing window.</ahelp>"
+msgstr ""
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1060E\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click to apply the character spacing to the selected Fontwork objects.</ahelp>"
+msgstr ""
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1061D\n"
+"help.text"
+msgid "Custom"
+msgstr "Përshtatur"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN10621\n"
+"help.text"
+msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value.</ahelp>"
+msgstr ""
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN10638\n"
+"help.text"
+msgid "Value"
+msgstr "Vlerë"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1063C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter the Fontwork character spacing value.</ahelp>"
+msgstr ""
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1064B\n"
+"help.text"
+msgid "Kern Character Pairs"
+msgstr "Kern çifte karakteresh"
+
+#: fontwork_toolbar.xhp
+msgctxt ""
+"fontwork_toolbar.xhp\n"
+"par_idN1064F\n"
+"help.text"
+msgid "<ahelp hid=\".\">Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off.</ahelp>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"tit\n"
+"help.text"
+msgid "Help"
+msgstr "Ndihma"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id3155364\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/main0108.xhp\" name=\"Help\">Help</link>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id3153990\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:HelpMenu\">The Help menu allows you to start and control the $[officename] Help system.</ahelp>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id3147399\n"
+"5\n"
+"help.text"
+msgid "$[officename] Help"
+msgstr "Duke përdorur Ndihmën"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id3147576\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\".uno:HelpIndex\">Opens the main page of the $[officename] Help for the current application.</ahelp> You can scroll through the Help pages and you can search for index terms or any text."
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_idN1064A\n"
+"help.text"
+msgid "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id1619006\">icon</alt></image>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_idN10667\n"
+"help.text"
+msgid "%PRODUCTNAME Help"
+msgstr "%PRODUCTNAME Ndihmë"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id2752763\n"
+"help.text"
+msgid "Send Feedback"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id443534340\n"
+"help.text"
+msgid "<ahelp hid=\".uno:SendFeedback\">Opens a feedback form in the web browser, where users can report software bugs.</ahelp>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id4153881\n"
+"7\n"
+"help.text"
+msgid "License Information"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id4144510\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ShowLicense\">Displays the Licensing and Legal information dialog.</ahelp>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id5153881\n"
+"7\n"
+"help.text"
+msgid "%PRODUCTNAME Credits"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id5144510\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ShowLicense\">Displays the CREDITS.odt document which lists the names of individuals who have contributed to OpenOffice.org source code (and whose contributions were imported into LibreOffice) or LibreOffice since 2010-09-28.</ahelp>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id2926419\n"
+"help.text"
+msgid "<link href=\"text/shared/01/online_update.xhp\">Check for Updates</link>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id2783898\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enable an Internet connection for %PRODUCTNAME. If you need a Proxy, check the %PRODUCTNAME Proxy settings in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet. Then choose Check for Updates to check for the availability of a newer version of your office suite.</ahelp>"
+msgstr ""
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"hd_id3153881\n"
+"7\n"
+"help.text"
+msgid "About $[officename]"
+msgstr "Për %PRODUCTNAME"
+
+#: main0108.xhp
+msgctxt ""
+"main0108.xhp\n"
+"par_id3144510\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\".uno:About\">Displays general program information such as version number and copyrights.</ahelp>"
+msgstr ""
+
#: main0201.xhp
msgctxt ""
"main0201.xhp\n"
@@ -655,233 +772,214 @@ msgctxt ""
msgid "What's this"
msgstr "Ç'është ~kjo?"
-#: main0800.xhp
+#: main0204.xhp
msgctxt ""
-"main0800.xhp\n"
+"main0204.xhp\n"
"tit\n"
"help.text"
-msgid "$[officename] and the Internet"
-msgstr "Link i vizituar i internetit"
+msgid "Table Bar"
+msgstr "Shiriti i Objektit Tabelë"
-#: main0800.xhp
+#: main0204.xhp
msgctxt ""
-"main0800.xhp\n"
-"hd_id3153089\n"
-"1\n"
+"main0204.xhp\n"
+"hd_id3145587\n"
"help.text"
-msgid "<link href=\"text/shared/main0800.xhp\" name=\"$[officename] and the Internet\">$[officename] and the Internet</link>"
+msgid "<link href=\"text/shared/main0204.xhp\" name=\"Table Bar\">Table Bar</link>"
msgstr ""
-#: main0800.xhp
+#: main0204.xhp
msgctxt ""
-"main0800.xhp\n"
-"par_id3155150\n"
-"2\n"
+"main0204.xhp\n"
+"par_id3154252\n"
"help.text"
-msgid "This section provides information on the subject of the Internet. An <link href=\"text/shared/00/00000002.xhp\" name=\"Internet glossary\">Internet glossary</link> explains the most important terms."
+msgid "<ahelp hid=\".\">The <emph>Table</emph> Bar contains functions you need when working with tables. It appears when you move the cursor into a table.</ahelp>"
msgstr ""
-#: main0500.xhp
+#: main0204.xhp
msgctxt ""
-"main0500.xhp\n"
-"tit\n"
+"main0204.xhp\n"
+"hd_id319945759\n"
"help.text"
-msgid "Glossaries"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
msgstr ""
-#: main0500.xhp
+#: main0204.xhp
msgctxt ""
-"main0500.xhp\n"
-"hd_id3156183\n"
-"1\n"
+"main0204.xhp\n"
+"hd_id3147592\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/shared/main0500.xhp\" name=\"Glossaries\">Glossaries</link>"
+msgid "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Merge Cells</link>"
msgstr ""
-#: main0500.xhp
+#: main0204.xhp
msgctxt ""
-"main0500.xhp\n"
-"par_id3157898\n"
-"2\n"
+"main0204.xhp\n"
+"hd_id3147820\n"
+"9\n"
"help.text"
-msgid "This section provides a general glossary of technical terms used in $[officename], along with a list of Internet terms."
+msgid "<link href=\"text/swriter/01/05110500.xhp\" name=\"Delete Row\">Delete Row</link>"
msgstr ""
-#: main0226.xhp
+#: main0204.xhp
msgctxt ""
-"main0226.xhp\n"
-"tit\n"
+"main0204.xhp\n"
+"hd_id3147231\n"
+"10\n"
"help.text"
-msgid "Form Design Toolbar"
-msgstr "Dizajni i formularit të databazës"
+msgid "<link href=\"text/swriter/01/05120500.xhp\" name=\"Delete Column\">Delete Column</link>"
+msgstr ""
-#: main0226.xhp
+#: main0204.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3148520\n"
-"1\n"
+"main0204.xhp\n"
+"hd_id3134447820\n"
"help.text"
-msgid "<link href=\"text/shared/main0226.xhp\" name=\"Form Design Toolbar\">Form Design Toolbar</link>"
+msgid "<link href=\"text/simpress/01/taskpanel.xhp\" name=\"Table Design\">Table Design</link>"
msgstr ""
-#: main0226.xhp
+#: main0204.xhp
msgctxt ""
-"main0226.xhp\n"
-"par_id3155364\n"
-"2\n"
+"main0204.xhp\n"
+"par_id16200812240344\n"
"help.text"
-msgid "The Form Design toolbar becomes visible as soon as you select a form object when working in the design mode."
+msgid "Opens the Table Design. Double-click a preview to insert a new table."
msgstr ""
-#: main0226.xhp
+#: main0204.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3163802\n"
-"8\n"
+"main0204.xhp\n"
+"hd_id947820\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">Add Field</link>"
+msgid "<link href=\"text/simpress/01/05090000m.xhp\" name=\"Table Properties\">Table Properties</link>"
msgstr ""
-#: main0226.xhp
+#: main0208.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3150669\n"
-"4\n"
+"main0208.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
+msgid "Status Bar in $[officename] Basic Documents"
msgstr ""
-#: main0226.xhp
+#: main0208.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3147335\n"
-"5\n"
+"main0208.xhp\n"
+"hd_id3148520\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgid "<link href=\"text/shared/main0208.xhp\" name=\"Status Bar in $[officename] Basic Documents\">Status Bar in $[officename] Basic Documents</link>"
msgstr ""
-#: main0226.xhp
+#: main0208.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3156024\n"
-"6\n"
+"main0208.xhp\n"
+"par_id3154136\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Enter Group</link>"
+msgid "The <emph>Status</emph> Bar displays information about the current $[officename] Basic document."
msgstr ""
-#: main0226.xhp
+#: main0212.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3149295\n"
-"7\n"
+"main0212.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
-msgstr ""
+msgid "Table Data Bar"
+msgstr "Shiriti i Objektit Tabelë"
-#: main0226.xhp
+#: main0212.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3150398\n"
-"9\n"
+"main0212.xhp\n"
+"hd_id3147102\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Display Grid</link>"
+msgid "<link href=\"text/shared/main0212.xhp\" name=\"Table Data Bar\">Table Data Bar</link>"
msgstr ""
-#: main0226.xhp
+#: main0212.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3148798\n"
+"main0212.xhp\n"
+"par_id3153394\n"
"10\n"
"help.text"
-msgid "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Snap to Grid</link>"
+msgid "<ahelp hid=\".\">Use the Table Data bar to control the data view. </ahelp>"
msgstr ""
-#: main0226.xhp
+#: main0212.xhp
msgctxt ""
-"main0226.xhp\n"
-"par_id3145419\n"
+"main0212.xhp\n"
+"par_id3149346\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\".uno:GridUse\">Specifies that you can move objects only between grid points.</ahelp>"
+msgid "The filtered data view is active until you change or cancel the sorting or filtering criteria. If a filter is active, the <emph>Apply Filter</emph> icon on the <emph>Table Data</emph> bar is activated."
msgstr ""
-#: main0226.xhp
+#: main0212.xhp
msgctxt ""
-"main0226.xhp\n"
-"hd_id3148920\n"
-"11\n"
+"main0212.xhp\n"
+"par_id3147303\n"
"help.text"
-msgid "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Helplines While Moving</link>"
+msgid "<image id=\"img_id3153896\" src=\"cmd/sc_recsave.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3153896\">Icon</alt></image>"
msgstr ""
-#: main0650.xhp
-msgctxt ""
-"main0650.xhp\n"
-"tit\n"
-"help.text"
-msgid "Java Platform Support"
-msgstr "Përkrahje për formatin AportisDoc"
-
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"hd_id3153089\n"
-"1\n"
+"main0212.xhp\n"
+"par_id3153360\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/shared/main0650.xhp\" name=\"Java Platform Support\">Java Platform Support</link>"
-msgstr ""
+msgid "Save Record"
+msgstr "Ruaje shënimin"
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"par_id3152363\n"
-"2\n"
+"main0212.xhp\n"
+"par_id3145173\n"
"help.text"
-msgid "$[officename] supports the Java platform for running applications and components based on the JavaBeans architecture."
+msgid "<image id=\"img_id3154123\" src=\"cmd/sc_recundo.png\" width=\"0.222in\" height=\"0.222in\"><alt id=\"alt_id3154123\">Icon</alt></image>"
msgstr ""
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"par_id3154751\n"
-"3\n"
+"main0212.xhp\n"
+"par_id3151382\n"
+"14\n"
"help.text"
-msgid "For $[officename] to support the Java platform, you must install the Java 2 Runtime Environment software. When you installed $[officename], you automatically received the option to install these files if they were not yet installed. You can also install these files now if required."
-msgstr ""
+msgid "Undo: Data Input"
+msgstr "Zhbëj: Futjen e të Dhënave"
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"par_id3155338\n"
-"4\n"
+"main0212.xhp\n"
+"par_idN10744\n"
"help.text"
-msgid "The Java platform support needs to be activated under $[officename] to run Java applications."
+msgid "<link href=\"text/shared/02/12070000.xhp\">Data to Text</link>"
msgstr ""
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"par_id3155892\n"
-"5\n"
+"main0212.xhp\n"
+"par_idN10753\n"
"help.text"
-msgid "Activate Java platform support by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/java.xhp\" name=\"$[officename] - Java\">$[officename] - Java</link></emph>."
+msgid "<ahelp hid=\".\">Inserts all fields of the marked record into the current document at the cursor position.</ahelp>"
msgstr ""
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"par_id9116183\n"
+"main0212.xhp\n"
+"par_idN10780\n"
"help.text"
-msgid "Before you can use a JDBC driver, you need to add its class path. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME- Java, and click the Class Path button. After you add the path information, restart %PRODUCTNAME."
+msgid "<link href=\"text/swriter/01/mailmerge00.xhp\">Mail Merge</link>"
msgstr ""
-#: main0650.xhp
+#: main0212.xhp
msgctxt ""
-"main0650.xhp\n"
-"par_id3153822\n"
-"11\n"
+"main0212.xhp\n"
+"par_idN1078F\n"
"help.text"
-msgid "Your modifications at the <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Java</emph> tab page will be used even if the Java Virtual Machine (JVM, a virtual machine for the Java platform) already has been started. After modifications to the ClassPath you must restart $[officename]. The same is true for modifications under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet - Proxy</emph>. Only the two boxes \"Http Proxy\" and \"Ftp Proxy\" and their ports don't require a restart, they will be evaluated when you click <emph>OK</emph>."
+msgid "<ahelp hid=\".\">Starts the Mail Merge Wizard to create form letters.</ahelp>"
msgstr ""
#: main0213.xhp
@@ -1215,480 +1313,164 @@ msgctxt ""
msgid "<link href=\"text/shared/02/12100100.xhp\" name=\"Sort\">Sort</link>"
msgstr ""
-#: main0108.xhp
+#: main0214.xhp
msgctxt ""
-"main0108.xhp\n"
+"main0214.xhp\n"
"tit\n"
"help.text"
-msgid "Help"
-msgstr "Ndihma"
+msgid "Query Design Bar"
+msgstr "Pyetja (pamja e dizajnit)..."
-#: main0108.xhp
+#: main0214.xhp
msgctxt ""
-"main0108.xhp\n"
-"hd_id3155364\n"
+"main0214.xhp\n"
+"hd_id3159176\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/main0108.xhp\" name=\"Help\">Help</link>"
+msgid "<link href=\"text/shared/main0214.xhp\" name=\"Query Design Bar\">Query Design Bar</link>"
msgstr ""
-#: main0108.xhp
+#: main0214.xhp
msgctxt ""
-"main0108.xhp\n"
-"par_id3153990\n"
+"main0214.xhp\n"
+"par_id3150085\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:HelpMenu\">The Help menu allows you to start and control the $[officename] Help system.</ahelp>"
+msgid "<ahelp hid=\".\">When creating or editing an SQL query, use the icons in the <emph>Query Design</emph> Bar to control the display of data.</ahelp>"
msgstr ""
-#: main0108.xhp
+#: main0214.xhp
msgctxt ""
-"main0108.xhp\n"
-"hd_id3147399\n"
+"main0214.xhp\n"
+"par_id3150276\n"
"5\n"
"help.text"
-msgid "$[officename] Help"
-msgstr "Duke përdorur Ndihmën"
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_id3147576\n"
-"6\n"
-"help.text"
-msgid "<ahelp hid=\".uno:HelpIndex\">Opens the main page of the $[officename] Help for the current application.</ahelp> You can scroll through the Help pages and you can search for index terms or any text."
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_idN1064A\n"
-"help.text"
-msgid "<image id=\"img_id1619006\" src=\"cmd/sc_helpindex.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id1619006\">icon</alt></image>"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_idN10667\n"
-"help.text"
-msgid "%PRODUCTNAME Help"
-msgstr "%PRODUCTNAME Ndihmë"
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"hd_id2752763\n"
-"help.text"
-msgid "Send Feedback"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_id443534340\n"
-"help.text"
-msgid "<ahelp hid=\".uno:SendFeedback\">Opens a feedback form in the web browser, where users can report software bugs.</ahelp>"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"hd_id4153881\n"
-"7\n"
-"help.text"
-msgid "License Information"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_id4144510\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ShowLicense\">Displays the Licensing and Legal information dialog.</ahelp>"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"hd_id5153881\n"
-"7\n"
-"help.text"
-msgid "%PRODUCTNAME Credits"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"par_id5144510\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ShowLicense\">Displays the CREDITS.odt document which lists the names of individuals who have contributed to OpenOffice.org source code (and whose contributions were imported into LibreOffice) or LibreOffice since 2010-09-28.</ahelp>"
-msgstr ""
-
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"hd_id2926419\n"
-"help.text"
-msgid "<link href=\"text/shared/01/online_update.xhp\">Check for Updates</link>"
+msgid "Depending on whether you have created the query or view in the <emph>Design</emph> or <emph>SQL</emph> tab page, the following icons appear:"
msgstr ""
-#: main0108.xhp
+#: main0214.xhp
msgctxt ""
-"main0108.xhp\n"
-"par_id2783898\n"
+"main0214.xhp\n"
+"hd_id3151384\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">Enable an Internet connection for %PRODUCTNAME. If you need a Proxy, check the %PRODUCTNAME Proxy settings in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet. Then choose Check for Updates to check for the availability of a newer version of your office suite.</ahelp>"
+msgid "<link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link>"
msgstr ""
-#: main0108.xhp
-msgctxt ""
-"main0108.xhp\n"
-"hd_id3153881\n"
-"7\n"
-"help.text"
-msgid "About $[officename]"
-msgstr "Për %PRODUCTNAME"
-
-#: main0108.xhp
+#: main0214.xhp
msgctxt ""
-"main0108.xhp\n"
-"par_id3144510\n"
-"8\n"
+"main0214.xhp\n"
+"par_id3151041\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".uno:About\">Displays general program information such as version number and copyrights.</ahelp>"
+msgid "The following icon is on the <emph>SQL</emph> tab page:"
msgstr ""
-#: main0400.xhp
+#: main0226.xhp
msgctxt ""
-"main0400.xhp\n"
+"main0226.xhp\n"
"tit\n"
"help.text"
-msgid "Shortcut Keys"
-msgstr "Tastet përshpejtuese"
+msgid "Form Design Toolbar"
+msgstr "Dizajni i formularit të databazës"
-#: main0400.xhp
+#: main0226.xhp
msgctxt ""
-"main0400.xhp\n"
-"hd_id3149495\n"
+"main0226.xhp\n"
+"hd_id3148520\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/main0400.xhp\" name=\"Shortcut Keys\">Shortcut Keys</link>"
+msgid "<link href=\"text/shared/main0226.xhp\" name=\"Form Design Toolbar\">Form Design Toolbar</link>"
msgstr ""
-#: main0400.xhp
+#: main0226.xhp
msgctxt ""
-"main0400.xhp\n"
-"par_id3150040\n"
+"main0226.xhp\n"
+"par_id3155364\n"
"2\n"
"help.text"
-msgid "This section contains descriptions of frequently used shortcut keys in $[officename]."
+msgid "The Form Design toolbar becomes visible as soon as you select a form object when working in the design mode."
msgstr ""
-#: main0204.xhp
-msgctxt ""
-"main0204.xhp\n"
-"tit\n"
-"help.text"
-msgid "Table Bar"
-msgstr "Shiriti i Objektit Tabelë"
-
-#: main0204.xhp
+#: main0226.xhp
msgctxt ""
-"main0204.xhp\n"
-"hd_id3145587\n"
+"main0226.xhp\n"
+"hd_id3163802\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/shared/main0204.xhp\" name=\"Table Bar\">Table Bar</link>"
+msgid "<link href=\"text/shared/02/01170400.xhp\" name=\"Add Field\">Add Field</link>"
msgstr ""
-#: main0204.xhp
+#: main0226.xhp
msgctxt ""
-"main0204.xhp\n"
-"par_id3154252\n"
+"main0226.xhp\n"
+"hd_id3150669\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">The <emph>Table</emph> Bar contains functions you need when working with tables. It appears when you move the cursor into a table.</ahelp>"
+msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
msgstr ""
-#: main0204.xhp
+#: main0226.xhp
msgctxt ""
-"main0204.xhp\n"
-"hd_id319945759\n"
+"main0226.xhp\n"
+"hd_id3147335\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area Style / Filling\">Area Style / Filling</link>"
+msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
msgstr ""
-#: main0204.xhp
+#: main0226.xhp
msgctxt ""
-"main0204.xhp\n"
-"hd_id3147592\n"
+"main0226.xhp\n"
+"hd_id3156024\n"
"6\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge Cells\">Merge Cells</link>"
-msgstr ""
-
-#: main0204.xhp
-msgctxt ""
-"main0204.xhp\n"
-"hd_id3147820\n"
-"9\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/05110500.xhp\" name=\"Delete Row\">Delete Row</link>"
-msgstr ""
-
-#: main0204.xhp
-msgctxt ""
-"main0204.xhp\n"
-"hd_id3147231\n"
-"10\n"
-"help.text"
-msgid "<link href=\"text/swriter/01/05120500.xhp\" name=\"Delete Column\">Delete Column</link>"
-msgstr ""
-
-#: main0204.xhp
-msgctxt ""
-"main0204.xhp\n"
-"hd_id3134447820\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/taskpanel.xhp\" name=\"Table Design\">Table Design</link>"
-msgstr ""
-
-#: main0204.xhp
-msgctxt ""
-"main0204.xhp\n"
-"par_id16200812240344\n"
-"help.text"
-msgid "Opens the Table Design. Double-click a preview to insert a new table."
-msgstr ""
-
-#: main0204.xhp
-msgctxt ""
-"main0204.xhp\n"
-"hd_id947820\n"
-"help.text"
-msgid "<link href=\"text/simpress/01/05090000m.xhp\" name=\"Table Properties\">Table Properties</link>"
-msgstr ""
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"tit\n"
-"help.text"
-msgid "Fontwork"
-msgstr "Puna me fonte"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1055A\n"
-"help.text"
-msgid "<link href=\"text/shared/fontwork_toolbar.xhp\">Fontwork</link>"
-msgstr ""
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1056A\n"
-"help.text"
-msgid "The Fontwork toolbar opens when you select a Fontwork object."
-msgstr ""
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1056D\n"
-"help.text"
-msgid "Fontwork Gallery"
-msgstr "Galeria e fonteve"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN10571\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Gallery where you can select another preview. Click OK to apply the new set of properties to your Fontwork object.</ahelp>"
-msgstr ""
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN10588\n"
-"help.text"
-msgid "Fontwork Shape"
-msgstr "Forma e fonteve"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1058C\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Shape toolbar. Click a shape to apply the shape to all selected Fontwork objects.</ahelp>"
-msgstr ""
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105A6\n"
-"help.text"
-msgid "Fontwork Same Letter Heights"
-msgstr "Madhësi e njëjtë e fontit"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105AA\n"
-"help.text"
-msgid "<ahelp hid=\".\">Switches the letter height of the selected Fontwork objects from normal to the same height for all objects.</ahelp>"
-msgstr ""
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105C1\n"
-"help.text"
-msgid "Fontwork Alignment"
-msgstr "Mbështetja e fonteve"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105C5\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Alignment window.</ahelp>"
-msgstr ""
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105DC\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to apply the alignment to the selected Fontwork objects.</ahelp>"
-msgstr ""
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105F3\n"
-"help.text"
-msgid "Fontwork Character Spacing"
-msgstr "Hapësira e karaktereve të fontit"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN105F7\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing window.</ahelp>"
-msgstr ""
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1060E\n"
-"help.text"
-msgid "<ahelp hid=\".\">Click to apply the character spacing to the selected Fontwork objects.</ahelp>"
-msgstr ""
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1061D\n"
-"help.text"
-msgid "Custom"
-msgstr "Përshtatur"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN10621\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Fontwork Character Spacing dialog where you can enter a new character spacing value.</ahelp>"
-msgstr ""
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN10638\n"
-"help.text"
-msgid "Value"
-msgstr "Vlerë"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1063C\n"
-"help.text"
-msgid "<ahelp hid=\".\">Enter the Fontwork character spacing value.</ahelp>"
-msgstr ""
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1064B\n"
-"help.text"
-msgid "Kern Character Pairs"
-msgstr "Kern çifte karakteresh"
-
-#: fontwork_toolbar.xhp
-msgctxt ""
-"fontwork_toolbar.xhp\n"
-"par_idN1064F\n"
-"help.text"
-msgid "<ahelp hid=\".\">Switches the <link href=\"text/shared/00/00000005.xhp#kerning\"> kerning</link> of character pairs on and off.</ahelp>"
+msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Enter Group</link>"
msgstr ""
-#: main0214.xhp
-msgctxt ""
-"main0214.xhp\n"
-"tit\n"
-"help.text"
-msgid "Query Design Bar"
-msgstr "Pyetja (pamja e dizajnit)..."
-
-#: main0214.xhp
+#: main0226.xhp
msgctxt ""
-"main0214.xhp\n"
-"hd_id3159176\n"
-"1\n"
+"main0226.xhp\n"
+"hd_id3149295\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/shared/main0214.xhp\" name=\"Query Design Bar\">Query Design Bar</link>"
+msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
msgstr ""
-#: main0214.xhp
+#: main0226.xhp
msgctxt ""
-"main0214.xhp\n"
-"par_id3150085\n"
-"2\n"
+"main0226.xhp\n"
+"hd_id3150398\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\".\">When creating or editing an SQL query, use the icons in the <emph>Query Design</emph> Bar to control the display of data.</ahelp>"
+msgid "<link href=\"text/shared/02/01171200.xhp\" name=\"Display Grid\">Display Grid</link>"
msgstr ""
-#: main0214.xhp
+#: main0226.xhp
msgctxt ""
-"main0214.xhp\n"
-"par_id3150276\n"
-"5\n"
+"main0226.xhp\n"
+"hd_id3148798\n"
+"10\n"
"help.text"
-msgid "Depending on whether you have created the query or view in the <emph>Design</emph> or <emph>SQL</emph> tab page, the following icons appear:"
+msgid "<link href=\"text/shared/02/01171300.xhp\" name=\"Snap to Grid\">Snap to Grid</link>"
msgstr ""
-#: main0214.xhp
+#: main0226.xhp
msgctxt ""
-"main0214.xhp\n"
-"hd_id3151384\n"
-"3\n"
+"main0226.xhp\n"
+"par_id3145419\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/shared/02/14020100.xhp\" name=\"Add Tables\">Add Tables</link>"
+msgid "<ahelp hid=\".uno:GridUse\">Specifies that you can move objects only between grid points.</ahelp>"
msgstr ""
-#: main0214.xhp
+#: main0226.xhp
msgctxt ""
-"main0214.xhp\n"
-"par_id3151041\n"
-"4\n"
+"main0226.xhp\n"
+"hd_id3148920\n"
+"11\n"
"help.text"
-msgid "The following icon is on the <emph>SQL</emph> tab page:"
+msgid "<link href=\"text/shared/02/01171400.xhp\" name=\"Helplines While Moving\">Helplines While Moving</link>"
msgstr ""
#: main0227.xhp
@@ -2154,3 +1936,221 @@ msgctxt ""
"help.text"
msgid "Eliminate Points"
msgstr "Asgjëso Pikat"
+
+#: main0400.xhp
+msgctxt ""
+"main0400.xhp\n"
+"tit\n"
+"help.text"
+msgid "Shortcut Keys"
+msgstr "Tastet përshpejtuese"
+
+#: main0400.xhp
+msgctxt ""
+"main0400.xhp\n"
+"hd_id3149495\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/main0400.xhp\" name=\"Shortcut Keys\">Shortcut Keys</link>"
+msgstr ""
+
+#: main0400.xhp
+msgctxt ""
+"main0400.xhp\n"
+"par_id3150040\n"
+"2\n"
+"help.text"
+msgid "This section contains descriptions of frequently used shortcut keys in $[officename]."
+msgstr ""
+
+#: main0500.xhp
+msgctxt ""
+"main0500.xhp\n"
+"tit\n"
+"help.text"
+msgid "Glossaries"
+msgstr ""
+
+#: main0500.xhp
+msgctxt ""
+"main0500.xhp\n"
+"hd_id3156183\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/main0500.xhp\" name=\"Glossaries\">Glossaries</link>"
+msgstr ""
+
+#: main0500.xhp
+msgctxt ""
+"main0500.xhp\n"
+"par_id3157898\n"
+"2\n"
+"help.text"
+msgid "This section provides a general glossary of technical terms used in $[officename], along with a list of Internet terms."
+msgstr ""
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"tit\n"
+"help.text"
+msgid "Programming $[officename]"
+msgstr ""
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"bm_id3154232\n"
+"help.text"
+msgid "<bookmark_value>programming;$[officename]</bookmark_value><bookmark_value>Basic;programming</bookmark_value>"
+msgstr ""
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"hd_id3154232\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"programming\"><link href=\"text/shared/main0600.xhp\" name=\"Programming $[officename]\">Programming $[officename]</link></variable>"
+msgstr ""
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"par_id3149760\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"basic\">$[officename] can be controlled by using the $[officename] API. </variable>"
+msgstr ""
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"par_id3151111\n"
+"12\n"
+"help.text"
+msgid "$[officename] provides an Application Programming Interface (API) that enables you to control $[officename] components by using various programming languages. A $[officename] Software Development Kit is available for the programming interface."
+msgstr ""
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"par_id3156346\n"
+"15\n"
+"help.text"
+msgid "For more information about $[officename] API reference, please visit http://api.libreoffice.org/"
+msgstr ""
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"par_id3153825\n"
+"13\n"
+"help.text"
+msgid "Macros created with $[officename] Basic based on the old programming interface will no longer be supported by the current version."
+msgstr ""
+
+#: main0600.xhp
+msgctxt ""
+"main0600.xhp\n"
+"par_id3149795\n"
+"14\n"
+"help.text"
+msgid "For more information on $[officename] Basic, select \"$[officename] Basic\" in the list box."
+msgstr ""
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"tit\n"
+"help.text"
+msgid "Java Platform Support"
+msgstr "Përkrahje për formatin AportisDoc"
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"hd_id3153089\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/main0650.xhp\" name=\"Java Platform Support\">Java Platform Support</link>"
+msgstr ""
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"par_id3152363\n"
+"2\n"
+"help.text"
+msgid "$[officename] supports the Java platform for running applications and components based on the JavaBeans architecture."
+msgstr ""
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"par_id3154751\n"
+"3\n"
+"help.text"
+msgid "For $[officename] to support the Java platform, you must install the Java 2 Runtime Environment software. When you installed $[officename], you automatically received the option to install these files if they were not yet installed. You can also install these files now if required."
+msgstr ""
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"par_id3155338\n"
+"4\n"
+"help.text"
+msgid "The Java platform support needs to be activated under $[officename] to run Java applications."
+msgstr ""
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"par_id3155892\n"
+"5\n"
+"help.text"
+msgid "Activate Java platform support by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/java.xhp\" name=\"$[officename] - Advanced\">$[officename] - Advanced</link></emph>."
+msgstr ""
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"par_id9116183\n"
+"help.text"
+msgid "Before you can use a JDBC driver, you need to add its class path. Choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Advanced, and click the Class Path button. After you add the path information, restart %PRODUCTNAME."
+msgstr ""
+
+#: main0650.xhp
+msgctxt ""
+"main0650.xhp\n"
+"par_id3153822\n"
+"11\n"
+"help.text"
+msgid "Your modifications at the <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Advanced</emph> tab page will be used even if the Java Virtual Machine (JVM, a virtual machine for the Java platform) already has been started. After modifications to the ClassPath you must restart $[officename]. The same is true for modifications under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet - Proxy</emph>. Only the two boxes \"Http Proxy\" and \"Ftp Proxy\" and their ports don't require a restart, they will be evaluated when you click <emph>OK</emph>."
+msgstr ""
+
+#: main0800.xhp
+msgctxt ""
+"main0800.xhp\n"
+"tit\n"
+"help.text"
+msgid "$[officename] and the Internet"
+msgstr "Link i vizituar i internetit"
+
+#: main0800.xhp
+msgctxt ""
+"main0800.xhp\n"
+"hd_id3153089\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/main0800.xhp\" name=\"$[officename] and the Internet\">$[officename] and the Internet</link>"
+msgstr ""
+
+#: main0800.xhp
+msgctxt ""
+"main0800.xhp\n"
+"par_id3155150\n"
+"2\n"
+"help.text"
+msgid "This section provides information on the subject of the Internet. An <link href=\"text/shared/00/00000002.xhp\" name=\"Internet glossary\">Internet glossary</link> explains the most important terms."
+msgstr ""
diff --git a/source/sq/helpcontent2/source/text/shared/00.po b/source/sq/helpcontent2/source/text/shared/00.po
index 6a743bddb7e..11f7b36a3eb 100644
--- a/source/sq/helpcontent2/source/text/shared/00.po
+++ b/source/sq/helpcontent2/source/text/shared/00.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2012-12-10 11:44+0100\n"
+"POT-Creation-Date: 2013-05-23 12:06+0200\n"
"PO-Revision-Date: 2011-04-25 12:39+0200\n"
"Last-Translator: Andras <timar74@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,779 +15,1753 @@ msgstr ""
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
-#: 00000407.xhp
+#: 00000001.xhp
msgctxt ""
-"00000407.xhp\n"
+"00000001.xhp\n"
"tit\n"
"help.text"
-msgid "Window Menu"
-msgstr "AutoPilot Meny"
+msgid "Frequently-Used Buttons"
+msgstr "Butonat në përdorim"
-#: 00000407.xhp
+#: 00000001.xhp
msgctxt ""
-"00000407.xhp\n"
-"hd_id3154349\n"
+"00000001.xhp\n"
+"hd_id3152952\n"
"1\n"
"help.text"
-msgid "Window Menu"
+msgid "Frequently-Used Buttons"
+msgstr "Butonat në përdorim"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3147617\n"
+"4\n"
+"help.text"
+msgid "Cancel"
+msgstr "Anulo"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155913\n"
+"5\n"
+"help.text"
+msgid "<ahelp hid=\".\">Clicking <emph>Cancel</emph> closes a dialog without saving any changes made.</ahelp>"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id2341685\n"
+"help.text"
+msgid "Finish"
+msgstr "Përfundimi"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id6909390\n"
+"help.text"
+msgid "<ahelp hid=\".\">Applies all changes and closes the wizard.</ahelp>"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3147477\n"
+"39\n"
+"help.text"
+msgid "Toolbars"
+msgstr "Shiriti i veglave"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3149783\n"
+"40\n"
+"help.text"
+msgid "By clicking the arrow next to some icons you open a toolbar. To move a toolbar, drag the title bar. As soon as you release the mouse button, the toolbar remains at the new position. Drag the title bar to another position, or drag to an edge of the window, where the toolbar will dock. Close a toolbar by clicking the Close Window icon. Make the toolbar visible again by choosing <emph>View - Toolbars - (toolbar name)</emph>."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3152414\n"
+"79\n"
+"help.text"
+msgid "Spin button"
+msgstr "Buton rrotullues"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id1094088\n"
+"help.text"
+msgid "In form controls, a spin button is a property of a numerical field, currency field, date field, or time field. If the property \"Spin button\" is enabled, the field shows a pair of symbols with arrows pointing to opposing directions, either vertically or horizontally."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id7493209\n"
+"help.text"
+msgid "In the Basic IDE, a spin button is the name used for the numerical field together with the two arrow symbols."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155599\n"
+"78\n"
+"help.text"
+msgid "You can type a numerical value into the field next to the spin button, or select the value with the up-arrow or down-arrow symbols on the spin button. On the keyboard you can press the up arrow and down arrow keys to increase or reduce the value. You can press the Page Up and Page Down keys to set the maximum and minimum value."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3150264\n"
+"38\n"
+"help.text"
+msgid "If the field next to the spin button defines numerical values, you can also define a <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement unit\">measurement unit</link>, for example, 1 cm or 5 mm, 12 pt or 2\"."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3154232\n"
+"76\n"
+"help.text"
+msgid "Convert"
+msgstr "Shndërro"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3148983\n"
+"77\n"
+"help.text"
+msgid "<ahelp hid=\".\">If you click forward through the dialog, this button is called <emph>Next</emph>. On the last page the button has the name <emph>Convert</emph>. The conversion is then performed by clicking the button.</ahelp>"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3145129\n"
+"42\n"
+"help.text"
+msgid "Context Menu"
msgstr "AutoPilot Meny"
-#: 00000407.xhp
-#, fuzzy
+#: 00000001.xhp
msgctxt ""
-"00000407.xhp\n"
-"par_id3083278\n"
+"00000001.xhp\n"
+"par_id3156553\n"
+"44\n"
+"help.text"
+msgid "<variable id=\"context\">To activate the context menu of an object, first click the object with the <switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>left</defaultinline></switchinline> mouse button to select it, and then, <switchinline select=\"sys\"><caseinline select=\"MAC\">while holding down the Ctrl key or the Command and Option keys, click the mouse button again</caseinline><defaultinline> click the right mouse button</defaultinline></switchinline>. Some context menus can be called even if the object has not been selected. Context menus are found just about everywhere in $[officename].</variable>"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3149180\n"
+"24\n"
+"help.text"
+msgid "Delete"
+msgstr "Fshije"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3153750\n"
+"25\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected element or elements after confirmation.</ahelp>"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3147557\n"
+"45\n"
+"help.text"
+msgid "Delete"
+msgstr "Fshije"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155338\n"
+"46\n"
+"help.text"
+msgid "<ahelp hid=\".\">Deletes the selected element or elements without requiring confirmation.</ahelp>"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3148620\n"
"6\n"
"help.text"
-msgid "<variable id=\"window\">Choose <emph>Window - New Window</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "Metrics"
+msgstr "Metrikat"
-#: 00000407.xhp
+#: 00000001.xhp
msgctxt ""
-"00000407.xhp\n"
-"par_id3154545\n"
-"13\n"
+"00000001.xhp\n"
+"par_id3145345\n"
+"7\n"
"help.text"
-msgid "<variable id=\"liste\">Choose <emph>Window</emph> - List of open documents</variable>"
+msgid "You can enter values in the input fields in different units of measurement. The default unit is inches. However, if you want a space of exactly 1cm, then type \"1cm\". Additional units are available according to the context, for example, 12 pt for a 12 point spacing. If the value of the new unit is unrealistic, the program uses a predefined maximum or minimum value."
msgstr ""
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"tit\n"
+"00000001.xhp\n"
+"hd_id3155535\n"
+"8\n"
"help.text"
-msgid "See also..."
+msgid "Close"
+msgstr "Mbylle"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3147008\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\".\">Closes the dialog and saves all changes.</ahelp>"
msgstr ""
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"hd_id3147527\n"
-"1\n"
+"00000001.xhp\n"
+"hd_id3147275\n"
+"57\n"
"help.text"
-msgid "<variable id=\"siehe\">See also... </variable>"
+msgid "Close"
+msgstr "Mbylle"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3153031\n"
+"58\n"
+"help.text"
+msgid "<ahelp hid=\".\">Closes the dialog.</ahelp>"
msgstr ""
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_id3143206\n"
+"00000001.xhp\n"
+"hd_id3156113\n"
+"16\n"
+"help.text"
+msgid "Apply"
+msgstr "Zbato"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155341\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\".\">Applies the modified or selected values without closing the dialog.</ahelp>"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3153760\n"
+"47\n"
+"help.text"
+msgid "Shrink / Maximize"
+msgstr "Minimizo/Maksimizo"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3153087\n"
+"48\n"
+"help.text"
+msgid "<ahelp hid=\".\">Click the<emph> Shrink </emph>icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the <emph>Maximize</emph> icon. Click it to restore the dialog to its original size.</ahelp>"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155062\n"
+"49\n"
+"help.text"
+msgid "The dialog is automatically minimized when you click into a sheet with the mouse. As soon as you release the mouse button, the dialog is restored and the reference range defined with the mouse is highlighted in the document by a blue frame."
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3157808\n"
+"help.text"
+msgid "<image id=\"img_id3148685\" src=\"formula/res/refinp1.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3148685\">Icon</alt></image>"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3153321\n"
+"50\n"
+"help.text"
+msgid "Shrink"
+msgstr "Tkurr"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3153349\n"
+"help.text"
+msgid "<image id=\"img_id3149784\" src=\"formula/res/refinp2.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149784\">Icon</alt></image>"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3155628\n"
+"51\n"
+"help.text"
+msgid "Maximize"
+msgstr "Maksimizo"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3156192\n"
+"34\n"
+"help.text"
+msgid "Preview Field"
+msgstr "Emri i fushës"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3154046\n"
+"35\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays a preview of the current selection.</ahelp>"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"hd_id3145609\n"
+"70\n"
+"help.text"
+msgid "Next"
+msgstr "I ardhshmi"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3152473\n"
"71\n"
"help.text"
-msgid "<variable id=\"userszenarien\"><link href=\"text/scalc/01/06050000.xhp\" name=\"Tools Menu - Scenarios\">Tools Menu - Scenarios</link></variable>"
+msgid "<ahelp hid=\".\">Click the<emph> Next </emph>button, and the wizard uses the current dialog settings and proceeds to the next step. If you are on the last step, this button becomes <emph>Create</emph>.</ahelp>"
msgstr ""
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_id3156069\n"
-"83\n"
+"00000001.xhp\n"
+"hd_id3149670\n"
+"13\n"
"help.text"
-msgid "On the help page for <link href=\"text/shared/guide/main.xhp\" name=\"$[officename] general\">$[officename] general</link> you can find instructions that are applicable to all modules, such as working with windows and menus, customizing $[officename], data sources, Gallery, and drag and drop."
+msgid "Back"
+msgstr "Prapa"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3145068\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"OFFMGR_PUSHBUTTON_RID_OFADLG_OPTIONS_TREE_PB_BACK\">Resets modified values back to the $[officename] default values.</ahelp>"
msgstr ""
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_id3149662\n"
-"84\n"
+"00000001.xhp\n"
+"hd_id3148755\n"
+"59\n"
"help.text"
-msgid "If you want help with another module, switch to the help for that module with the combo box in the navigation area."
+msgid "Reset"
+msgstr "Rifillo"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3149651\n"
+"60\n"
+"help.text"
+msgid "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Resets changes made to the current tab to those applicable when this dialog was opened. A confirmation query does not appear when you close the dialog.</ahelp>"
msgstr ""
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_id3154408\n"
-"85\n"
+"00000001.xhp\n"
+"hd_id3143278\n"
+"18\n"
"help.text"
-msgid "<variable id=\"winmanager\">The availability of this function depends on your X Window Manager. </variable>"
+msgid "Reset"
+msgstr "Rifillo"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3150791\n"
+"19\n"
+"help.text"
+msgid "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Resets modified values back to the default values.</ahelp>"
msgstr ""
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_idN10632\n"
+"00000001.xhp\n"
+"par_id3154331\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\".uno:HelperDialog\">Allows you to activate the automatic Help Agent. You can also activate the Help Agent through <emph>$[officename] - General - Help Agent</emph> in the Options dialog box.</ahelp>"
+msgid "A confirmation query does not appear. If you confirm the dialog with OK all settings in this dialog are reset."
msgstr ""
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_idN10665\n"
+"00000001.xhp\n"
+"hd_id3145173\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".uno:HelpTip\">Enables the display of icon names at the mouse pointer and other Help contents.</ahelp>"
+msgid "Standard"
+msgstr "Standarde"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3154153\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Resets the values visible in the dialog back to the default installation values.</ahelp>"
msgstr ""
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_idN1067C\n"
+"00000001.xhp\n"
+"par_id3154299\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".uno:ActiveHelp\">Enables the display of a brief description of menus and icons at the mouse pointer.</ahelp>"
+msgid "A confirmation does not appear before the defaults are reloaded."
msgstr ""
-#: 00000099.xhp
+#: 00000001.xhp
msgctxt ""
-"00000099.xhp\n"
-"par_id6200750\n"
+"00000001.xhp\n"
+"hd_id3147502\n"
+"72\n"
"help.text"
-msgid "Some of the shortcut keys may be assigned to your desktop system. Keys that are assigned to the desktop system are not available to %PRODUCTNAME. Try to assign different keys either for %PRODUCTNAME, in <emph>Tools - Customize - Keyboard</emph>, or in your desktop system."
+msgid "Back"
+msgstr "Prapa"
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3150439\n"
+"73\n"
+"help.text"
+msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">View the selections in the dialog made in the previous step. The current settings remain unchanged.</ahelp> This button can only be activated from page two on."
msgstr ""
-#: 00000011.xhp
+#: 00000001.xhp
msgctxt ""
-"00000011.xhp\n"
-"tit\n"
+"00000001.xhp\n"
+"hd_id3147352\n"
+"52\n"
"help.text"
-msgid "Menu Commands"
-msgstr "AutoPilot Meny"
+msgid "More"
+msgstr "Më shumë"
-#: 00000011.xhp
+#: 00000001.xhp
msgctxt ""
-"00000011.xhp\n"
-"hd_id3156045\n"
-"4\n"
+"00000001.xhp\n"
+"par_id3155314\n"
+"53\n"
"help.text"
-msgid "Menu Commands"
-msgstr "AutoPilot Meny"
+msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Click the<emph> More</emph> button to expand the dialog to show further options. Click again to restore the dialog.</ahelp>"
+msgstr ""
-#: 00000011.xhp
+#: 00000001.xhp
msgctxt ""
-"00000011.xhp\n"
-"par_id3150838\n"
-"5\n"
+"00000001.xhp\n"
+"par_id3161659\n"
+"41\n"
"help.text"
-msgid "The window containing the document you want to work on must be selected in order to use the menu commands. Similarly, you must select an object in the document to use the menu commands associated with the object."
+msgid "<variable id=\"siehe\">See also the following functions: </variable>"
msgstr ""
-#: 00000011.xhp
+#: 00000001.xhp
msgctxt ""
-"00000011.xhp\n"
-"par_id3156027\n"
-"3\n"
+"00000001.xhp\n"
+"par_id3147418\n"
+"55\n"
"help.text"
-msgid "The menus are context sensitive. This means that those menu items are available that are relevant to the work currently being carried out. If the cursor is located in a text, then all of those menu items are available that are needed to edit the text. If you have selected graphics in a document, then you will see all of the menu items that can be used to edit graphics."
+msgid "<variable id=\"regulaer\">The search supports <link href=\"text/shared/01/02100001.xhp\" name=\"regular expressions\">regular expressions</link>. You can enter \"all.*\", for example to find the first location of \"all\" followed by any characters. If you want to search for a text that is also a regular expression, you must precede every character with a \\ character. You can switch the automatic evaluation of regular expression on and off in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>.</variable>"
msgstr ""
-#: 00000010.xhp
+#: 00000001.xhp
msgctxt ""
-"00000010.xhp\n"
+"00000001.xhp\n"
+"par_id3163714\n"
+"56\n"
+"help.text"
+msgid "<variable id=\"wahr\">If an error occurs, the function returns a logical or numerical value. </variable>"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3154145\n"
+"54\n"
+"help.text"
+msgid "<variable id=\"kontext\">(This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link>). </variable>"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id3152791\n"
+"61\n"
+"help.text"
+msgid "<variable id=\"wiederholen\">By double-clicking a tool, you can use it for multiple tasks. If you call the tool with a single-click, it reverts back to the last selection after completing the task. </variable>"
+msgstr ""
+
+#: 00000001.xhp
+msgctxt ""
+"00000001.xhp\n"
+"par_id9345377\n"
+"help.text"
+msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control. </variable>"
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
"tit\n"
"help.text"
-msgid "Context Menus"
-msgstr "Konteksti i tanishëm"
+msgid "Glossary of Internet Terms"
+msgstr "Përkthe termat e përbashkët"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3160447\n"
+"00000002.xhp\n"
+"bm_id3150702\n"
+"help.text"
+msgid "<bookmark_value>Internet glossary</bookmark_value><bookmark_value>common terms;Internet glossary</bookmark_value><bookmark_value>glossaries;Internet terms</bookmark_value><bookmark_value>terminology;Internet glossary</bookmark_value>"
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3150702\n"
"1\n"
"help.text"
-msgid "Context Menus"
-msgstr "Konteksti i tanishëm"
+msgid "<link href=\"text/shared/00/00000002.xhp\" name=\"Glossary of Internet Terms\">Glossary of Internet Terms</link>"
+msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3148765\n"
-"45\n"
+"00000002.xhp\n"
+"par_id3155577\n"
+"2\n"
"help.text"
-msgid "Cut"
-msgstr "Preje"
+msgid "If you are a newcomer to the Internet, you will be confronted with unfamiliar terms: browser, bookmark, e-mail, homepage, search engine, and many others. To make your first steps easier, this glossary explains some of the more important terminology you may find in the Internet, intranet, mail and news."
+msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3153383\n"
-"46\n"
+"00000002.xhp\n"
+"hd_id3153146\n"
+"36\n"
"help.text"
-msgid "Cuts out the selected object and stores it on the clipboard. The object can be reinserted from the clipboard by using <emph>Paste</emph>."
+msgid "Frames"
+msgstr "Kornizat"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3157909\n"
+"37\n"
+"help.text"
+msgid "Frames are useful for designing the layout of <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages. $[officename] uses floating frames into which you can place objects such as graphics, movie files and sound. The context menu of a frame shows the options for restoring or editing frame contents. Some of these commands are also listed in <emph>Edit - Object</emph> when the frame is selected."
msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3156069\n"
+"00000002.xhp\n"
+"hd_id3147077\n"
+"43\n"
+"help.text"
+msgid "FTP"
+msgstr "FTP proxy"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3147335\n"
+"44\n"
+"help.text"
+msgid "FTP stands for File Transfer Protocol and is the standard transfer protocol for files in the Internet. An FTP server is a program on a computer connected to the Internet which stores files to be transmitted with the aid of FTP. While FTP is responsible for transmitting and downloading Internet files, <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link> (Hypertext Transfer Protocol) provides the connection setup and data transfer between WWW servers and clients."
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3145609\n"
+"help.text"
+msgid "<bookmark_value>HTML; definition</bookmark_value>"
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3145609\n"
+"56\n"
+"help.text"
+msgid "HTML"
+msgstr "HTML"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3161459\n"
+"57\n"
+"help.text"
+msgid "HTML (Hypertext Markup Language) is a document code language, which is used as the file format for WWW documents. It is derived from <link href=\"text/shared/00/00000002.xhp#sgml\" name=\"SGML\">SGML</link> and integrates text, graphics, videos and sound."
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3154346\n"
+"58\n"
+"help.text"
+msgid "If you want to type HTML commands directly, for example when doing exercises from one of the many available HTML books, remember that HTML pages are pure text files. Save your document under the document type <emph>Text </emph>and give it the file name extension .HTML. Be sure there are no umlauts or other special characters of the extended character set. If you want to re-open this file in $[officename] and edit the HTML code, you must load it with the file type <emph>Text</emph> and not with the file type <emph>Web pages</emph>."
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153960\n"
+"244\n"
+"help.text"
+msgid "There are several references on the Internet providing an introduction to the HTML language."
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3147423\n"
+"59\n"
+"help.text"
+msgid "HTTP"
+msgstr "HTTP"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153379\n"
+"60\n"
+"help.text"
+msgid "The Hypertext Transfer Protocol is a record of transmission of WWW documents between WWW servers (hosts) and browsers (clients)."
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3149290\n"
+"help.text"
+msgid "<bookmark_value>hyperlinks; definition</bookmark_value>"
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3149290\n"
+"61\n"
+"help.text"
+msgid "Hyperlink"
+msgstr "Hiperlink"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3145420\n"
+"62\n"
+"help.text"
+msgid "Hyperlinks are cross-references, highlighted in text in various colors and activated by mouse-click. With the aid of hyperlinks, readers can jump to specific information within a document as well as to related information in other documents."
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3156281\n"
+"63\n"
+"help.text"
+msgid "In $[officename] you can assign hyperlinks to text as well as to graphics and text frames (see the Hyperlink Dialog icon on the Standard bar)."
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"bm_id3152805\n"
+"help.text"
+msgid "<bookmark_value>ImageMap; definition</bookmark_value>"
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3152805\n"
+"64\n"
+"help.text"
+msgid "ImageMap"
+msgstr "ImageMap"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3154685\n"
+"65\n"
+"help.text"
+msgid "An ImageMap is a reference-sensitive graphic or text frame. You can click on defined areas of the graphic or text frame to go to a target (<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>), which is linked with the area. The reference areas, along with the linked URLs and corresponding text displayed when resting the mouse pointer on these areas, are defined in the <link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap Editor\">ImageMap Editor</link>."
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153178\n"
+"66\n"
+"help.text"
+msgid "There are two different types of ImageMaps. A Client Side ImageMap is evaluated on the client computer, which loaded the graphic from the Internet, while a Server Side ImageMap is evaluated on the server computer which provides the <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> page on the Internet. In server evaluation, clicking an ImageMap sends the relative coordinates of the cursor within the image to the server, and a dedicated program on the server responds. In the client evaluation, clicking a defined hotspot of the ImageMap activates the URL, as if it were a normal text link. The URL appears below the mouse pointer when passing across the ImageMap."
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3150740\n"
+"67\n"
+"help.text"
+msgid "As ImageMaps can be used in different ways, they can be stored in different formats."
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3146874\n"
"68\n"
"help.text"
-msgid "Paste"
-msgstr "Lësho"
+msgid "ImageMap Formats"
+msgstr "(Të gjitha formatet)"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3154896\n"
+"00000002.xhp\n"
+"par_id3145153\n"
"69\n"
"help.text"
-msgid "<ahelp hid=\"SID_EXPLORERCONTENT_PASTE\" visibility=\"visible\">Inserts the element that you moved to the clipboard into the document.</ahelp> This command can only be called if the contents of the clipboard can be inserted at the current cursor position."
+msgid "ImageMaps are basically divided between those that are analyzed on the server (i. e. your Internet provider) and those analyzed on the web browser of the reader's computer."
msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3149948\n"
-"76\n"
+"00000002.xhp\n"
+"bm_id3152881\n"
"help.text"
-msgid "Insert"
-msgstr "Shto"
+msgid "<bookmark_value>Server Side ImageMap</bookmark_value>"
+msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3147588\n"
-"77\n"
+"00000002.xhp\n"
+"hd_id3152881\n"
+"70\n"
"help.text"
-msgid "Opens a submenu in the Gallery where you can choose between <emph>Copy</emph> and <emph>Link</emph>. The selected Gallery object is either copied into the current document or a link is created."
+msgid "Server Side ImageMaps"
+msgstr "Fotografi në anën e Serverit"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153057\n"
+"71\n"
+"help.text"
+msgid "Server Side ImageMaps appear for the reader as a picture or frame on the page. Click on the ImageMap with the mouse, and the coordinates of the relative position are sent to the server. Aided by an extra program, the server then determines the next step to take. There are several incompatible methods to define this process, the two most common being:"
msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3146130\n"
-"78\n"
+"00000002.xhp\n"
+"par_id3147502\n"
+"72\n"
"help.text"
-msgid "If you have selected an object in your document, then a new insertion will replace the selected object."
+msgid "W3C (CERN) HTTP Server (Format type: MAP - CERN)"
msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3145829\n"
-"79\n"
+"00000002.xhp\n"
+"par_id3154011\n"
+"73\n"
"help.text"
-msgid "Background"
-msgstr "Sfond"
+msgid "NCSA HTTP Server (Format type: MAP - NCSA)"
+msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3149180\n"
-"80\n"
+"00000002.xhp\n"
+"par_id3149483\n"
+"74\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_MN_BACKGROUND\" visibility=\"visible\">Inserts the selected picture as a background graphic.</ahelp> Use the submenu commands <emph>Page</emph> or <emph>Paragraph</emph> to define whether the graphic should cover the entire page or only the current paragraph."
+msgid "$[officename] creates ImageMaps for both methods. Select the format from the <emph>File type </emph>list in the <emph>Save As </emph>dialog in the <emph>ImageMap Editor</emph>. Separate Map Files are created which you must upload to the server. You will need to ask your provider or network administrator which type of ImageMaps are supported by the server and how to access the evaluation program."
msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3153049\n"
-"87\n"
+"00000002.xhp\n"
+"bm_id3152418\n"
"help.text"
-msgid "Copy"
-msgstr "Kopjo"
+msgid "<bookmark_value>Client Side ImageMap</bookmark_value>"
+msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3150774\n"
-"88\n"
+"00000002.xhp\n"
+"hd_id3152418\n"
+"75\n"
"help.text"
-msgid "<ahelp hid=\"SID_EXPLORERCONTENT_COPY\" visibility=\"visible\">Copies the selected element to the clipboard.</ahelp>"
+msgid "Client Side ImageMap"
+msgstr "Fotografi në anën e Klientit"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3151290\n"
+"76\n"
+"help.text"
+msgid "The area of the picture or frame where the reader can click is indicated by the appearance of the linked <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> when the mouse passes over the area. The ImageMap is stored in a layer below the picture and contains information about the referenced regions. The only disadvantage of Client Side ImageMaps is that older Web browsers cannot read them; a disadvantage that will, however, resolve itself in time."
msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3148620\n"
-"91\n"
+"00000002.xhp\n"
+"par_id3149664\n"
+"77\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "When saving the ImageMap, select the file type <emph>SIP - StarView ImageMap</emph>. This saves the ImageMap directly in a format which can be applied to every active picture or frame in your document. However, if you just want to use the ImageMap on the current picture or text frame, you do not have to save it in any special format. After defining the regions, simply click <emph>Apply</emph>. Nothing more is necessary. Client Side ImageMaps saved in <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> format are inserted directly into the page in HTML code."
+msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3154317\n"
+"00000002.xhp\n"
+"bm_id3159125\n"
+"help.text"
+msgid "<bookmark_value>Java; definition</bookmark_value>"
+msgstr ""
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"hd_id3159125\n"
"92\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a <link href=\"text/shared/01/03150100.xhp\" name=\"security query\">security query</link> appears before objects are deleted.</ahelp>"
+msgid "Java"
+msgstr "Java"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3153188\n"
+"93\n"
+"help.text"
+msgid "The Java programming language is a platform independent programming language that is especially suited for use in the Internet. Web pages and applications programmed with Java class files can be used on all modern operating systems. Programs using Java programming language are usually developed in a Java development environment and then compiled to a \"byte code\"."
msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3155941\n"
-"190\n"
+"00000002.xhp\n"
+"bm_id3159153\n"
"help.text"
-msgid "The object is either physically deleted from the data carrier or the object display is removed, depending on context."
+msgid "<bookmark_value>plug-ins; definition</bookmark_value>"
msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3150506\n"
-"192\n"
+"00000002.xhp\n"
+"hd_id3159153\n"
+"107\n"
"help.text"
-msgid "If you choose <emph>Delete</emph> while in the Gallery, the entry will be deleted from the Gallery, but the file itself will remain untouched."
+msgid "Plug-In"
+msgstr "Lësho në..."
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3154127\n"
+"109\n"
+"help.text"
+msgid "Extensions providing additional functionality in Web browsers are referred to as Plug-Ins."
msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3150443\n"
-"136\n"
+"00000002.xhp\n"
+"par_id3147484\n"
+"108\n"
"help.text"
-msgid "Open"
-msgstr "Hape"
+msgid "A Plug-In is a term used in various contexts:"
+msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3149149\n"
-"137\n"
+"00000002.xhp\n"
+"hd_id3168608\n"
+"172\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_OPEN_OBJECT\">Use the<emph> Open </emph>command to open the selected object in a new task.</ahelp>"
+msgid "Plug-Ins in $[officename]"
+msgstr "Shto Plug-in të Zërit"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3149910\n"
+"111\n"
+"help.text"
+msgid "You will notice in $[officename] that the <emph>Formatting</emph> Bar changes after certain operations. For example, if you insert a formula into your text document, you see icons for editing the formula, in fact the same icons you see in formula documents. In this sense, we refer to the formula as a plug-in within the text document."
msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3149732\n"
-"165\n"
+"00000002.xhp\n"
+"hd_id3148387\n"
+"177\n"
"help.text"
-msgid "Rename"
-msgstr "Riemëro"
+msgid "Using Plug-Ins to extend your programs"
+msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3149797\n"
-"166\n"
+"00000002.xhp\n"
+"par_id3156737\n"
+"114\n"
"help.text"
-msgid "<ahelp hid=\"SID_EXPLORERCONTENT_RENAME\" visibility=\"visible\">Enables a selected object to be renamed.</ahelp> After selecting <emph>Rename</emph> the name is selected and a new one can be entered directly. Use the arrow keys to set the cursor at the beginning or end of the name to delete or add to part of the name or to reposition the cursor."
+msgid "Plug-ins, generally speaking, are software additions to particular applications which provide enhanced functionality. Often import and export filters for various file formats are stored as plug-ins in a plug-in directory."
msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3155434\n"
-"317\n"
+"00000002.xhp\n"
+"par_id3149958\n"
+"115\n"
"help.text"
-msgid "Update"
-msgstr "Azhuro"
+msgid "Netscape web browser extensions produced by Netscape Communication Corporation are also called plug-ins. These are external programs mainly taken from the multimedia field and which communicate with the browser through standardized interfaces. These plug-ins can be linked to $[officename] documents."
+msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3154898\n"
-"318\n"
+"00000002.xhp\n"
+"par_id3149420\n"
+"179\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_ACTUALIZE\" visibility=\"visible\">Updates the view in the window or in the selected object.</ahelp>"
+msgid "Any Netscape plug-ins (32 bit) installed on your system are automatically recognized by $[officename]."
msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3147573\n"
-"172\n"
+"00000002.xhp\n"
+"hd_id3145647\n"
+"127\n"
"help.text"
-msgid "Preview"
-msgstr "Shikim paraprak"
+msgid "Proxy"
+msgstr "Proxy"
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3155583\n"
-"173\n"
+"00000002.xhp\n"
+"par_id3148455\n"
+"128\n"
"help.text"
-msgid "The element selected is displayed in the Gallery at maximum size. Double-click the preview to switch back to the normal Gallery view."
+msgid "A proxy is a computer in the network acting as a kind of clipboard for data transfer. Whenever you access the Internet from a company network and request a Web page that has already been read by a colleague, the proxy will be able to display the page much quicker, as long as it's still in the memory. All that has to be checked in this case is that the page stored in the proxy is the latest version. If this is the case, the page won't have to be downloaded from the much slower Internet but can be loaded directly from the proxy."
msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"hd_id3157809\n"
-"319\n"
+"00000002.xhp\n"
+"bm_id3154729\n"
"help.text"
-msgid "Create Link"
-msgstr "Lidhja e vizituar"
+msgid "<bookmark_value>SGML; definition</bookmark_value>"
+msgstr ""
-#: 00000010.xhp
+#: 00000002.xhp
msgctxt ""
-"00000010.xhp\n"
-"par_id3153716\n"
-"320\n"
+"00000002.xhp\n"
+"hd_id3154729\n"
+"229\n"
"help.text"
-msgid "This command can be activated if an object is selected. A link named \"Link to xxx\" (<emph>xxx</emph> represents the name of the object) will be created directly in the same directory as that of the selected object."
+msgid "SGML"
+msgstr "SGML hijezimi i sintaksës"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3147330\n"
+"230\n"
+"help.text"
+msgid "SGML stands for \"Standard Generalized Markup Language\". SGML is based on the idea that documents have structural and other semantic elements that can be described without reference to how such elements should be displayed. The actual display of such a document may vary, depending on the output medium and style preferences. In structured texts, SGML not only defines structures (in the DTD = Document Type Definition) but also ensures they are consistently used."
msgstr ""
-#: 00000200.xhp
-#, fuzzy
+#: 00000002.xhp
msgctxt ""
-"00000200.xhp\n"
-"tit\n"
+"00000002.xhp\n"
+"par_id3148747\n"
+"231\n"
"help.text"
-msgid "Graphics Export Options"
-msgstr "EPS Import/Eksport Filteri"
+msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> is a specialized application of SGML. This means that most Web browsers support only a limited range of SGML standards and that almost all SGML-enabled systems can produce attractive HTML pages."
+msgstr ""
-#: 00000200.xhp
-#, fuzzy
+#: 00000002.xhp
msgctxt ""
-"00000200.xhp\n"
-"hd_id3150127\n"
+"00000002.xhp\n"
+"bm_id3153950\n"
"help.text"
-msgid "Graphics Export Options"
-msgstr "EPS Import/Eksport Filteri"
+msgid "<bookmark_value>search engines; definition</bookmark_value>"
+msgstr ""
-#: 00000200.xhp
+#: 00000002.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3160463\n"
+"00000002.xhp\n"
+"hd_id3153950\n"
+"138\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"visible\">Defines graphics export options.</ahelp>"
+msgid "Search Engines"
+msgstr "Kërko për:"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3157965\n"
+"139\n"
+"help.text"
+msgid "A search engine is a service in the Internet based on a software program used to explore a vast amount of information using key words."
msgstr ""
-#: 00000200.xhp
+#: 00000002.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id1\n"
+"00000002.xhp\n"
+"bm_id3150751\n"
"help.text"
-msgid "When you export graphical elements to a file, you can select the file type. For most supported file types a dialog opens where you can setup export options."
+msgid "<bookmark_value>tags; definition</bookmark_value>"
msgstr ""
-#: 00000200.xhp
+#: 00000002.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id2\n"
+"00000002.xhp\n"
+"hd_id3150751\n"
+"141\n"
"help.text"
-msgid "The following file types do not show an options dialog: PWP, RAS, SVG, TIFF, XPM."
+msgid "Tags"
msgstr ""
-#: 00000200.xhp
+#: 00000002.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3\n"
+"00000002.xhp\n"
+"par_id3156360\n"
+"142\n"
"help.text"
-msgid "The other file types show options dialogs where you can set the width and height of the exported image."
+msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages contain certain structural and formatting instructions called tags. Tags are code words enclosed by brackets in the document description language HTML. Many tags contain text or hyperlink references between the opening and closing brackets. For example, titles are marked by the tags <h1> at the beginning and </h1> at the end of the title. Some tags only appear on their own such as <br> for a line break or <img ...> to link a graphic."
msgstr ""
-#: 00000200.xhp
+#: 00000002.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id4\n"
+"00000002.xhp\n"
+"bm_id3153766\n"
"help.text"
-msgid "Depending on the file type, you can specify some more options. Press Shift+F1 and hover over the control to see an extended help text."
+msgid "<bookmark_value>URL; definition</bookmark_value>"
msgstr ""
-#: 00000200.xhp
+#: 00000002.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id388\n"
+"00000002.xhp\n"
+"hd_id3153766\n"
+"145\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies the measurement units.</ahelp>"
+msgid "URL"
+msgstr "URL"
+
+#: 00000002.xhp
+msgctxt ""
+"00000002.xhp\n"
+"par_id3152931\n"
+"146\n"
+"help.text"
+msgid "The Uniform Resource Locator (URL) displays the address of a document or a server in the Internet. The general structure of a URL varies according to type and is generally in the form Service://Hostname:Port/Path/Page#Mark although not all elements are always required. An URL can be a FTP address, a WWW (HTTP) address, a file address or an e-mail address."
msgstr ""
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"hd_id3151330\n"
+"00000003.xhp\n"
+"tit\n"
"help.text"
-msgid "Width"
-msgstr "Gjerësia"
+msgid "Conversion of measurement units"
+msgstr "Shndërrimi Hangul/Hanja"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3154561\n"
+"00000003.xhp\n"
+"bm_id3147543\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the width.</ahelp>"
+msgid "<bookmark_value>measurement units; converting</bookmark_value><bookmark_value>units; converting</bookmark_value><bookmark_value>converting;metrics</bookmark_value><bookmark_value>metrics;converting</bookmark_value>"
msgstr ""
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"hd_id3156027\n"
+"00000003.xhp\n"
+"hd_id3147543\n"
+"1\n"
"help.text"
-msgid "Height"
-msgstr "Lartësia"
+msgid "Conversion of measurement units"
+msgstr "Shndërrimi Hangul/Hanja"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3147226\n"
+"00000003.xhp\n"
+"par_idN1069F\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the height.</ahelp>"
+msgid "In some dialogs, you can enter measurement values into input boxes. If you just enter a numerical value, the default measurement unit is used."
msgstr ""
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"hd_id3150944\n"
+"00000003.xhp\n"
+"par_idN106A2\n"
"help.text"
-msgid "Resolution"
-msgstr "Rezolucioni"
+msgid "You define the default measurement unit for Writer text documents in the dialog that you get by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - General</emph>. For Calc, Draw, and Impress, you open a document of that type and then open the appropriate <emph>General</emph> page as for Writer."
+msgstr ""
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3150129\n"
+"00000003.xhp\n"
+"par_idN106AD\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the image resolution. Select the measurement units from the list box.</ahelp>"
+msgid "In input boxes for length units you can also add the unit abbreviation according to the following list:"
msgstr ""
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"hd_id3143534\n"
+"00000003.xhp\n"
+"par_idN106BA\n"
"help.text"
-msgid "More options"
-msgstr "Shiriti i opcioneve"
+msgid "Unit abbreviation"
+msgstr "Njësi matëse"
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id10\n"
+"00000003.xhp\n"
+"par_idN106C0\n"
"help.text"
-msgid "For JPEG files you can set the color depth and the quality."
+msgid "Explanation"
msgstr ""
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id435923952\n"
+"00000003.xhp\n"
+"par_idN106C7\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the color depth from 8 bit grayscale or 24 bit true color.</ahelp>"
+msgid "mm"
+msgstr "0 mm"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_idN106CD\n"
+"help.text"
+msgid "Millimeter"
+msgstr "Milimetër"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_idN106D4\n"
+"help.text"
+msgid "cm"
msgstr ""
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id355152952\n"
+"00000003.xhp\n"
+"par_idN106DA\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the compression for the export. A high compression means a smaller, but slower to load image.</ahelp>"
+msgid "Centimeter"
+msgstr "Centimetër"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_idN106E1\n"
+"help.text"
+msgid "in or \""
+msgstr "OSE logjike"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_idN106E7\n"
+"help.text"
+msgid "Inch"
+msgstr "Inç"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_idN106EE\n"
+"help.text"
+msgid "pi"
+msgstr "pi"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_idN106F4\n"
+"help.text"
+msgid "Pica"
+msgstr "Pica"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_idN106FB\n"
+"help.text"
+msgid "pt"
msgstr ""
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id355152953\n"
+"00000003.xhp\n"
+"par_idN10701\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size</ahelp>"
+msgid "Point"
+msgstr "Pikë"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_idN10704\n"
+"help.text"
+msgid "The following formulas convert the units:"
msgstr ""
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id11\n"
+"00000003.xhp\n"
+"par_idN1070A\n"
"help.text"
-msgid "For BMP files you can set the compression and the RLE encoding."
+msgid "1 cm = 10 mm"
+msgstr "Indeksi 10 i shfrytëzuesit"
+
+#: 00000003.xhp
+msgctxt ""
+"00000003.xhp\n"
+"par_idN1070E\n"
+"help.text"
+msgid "1 inch = 2.54 cm"
msgstr ""
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id312346798\n"
+"00000003.xhp\n"
+"par_idN10712\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies RLE (Run Length Encoding) to the BMP graphics.</ahelp>"
+msgid "1 inch = 6 Pica = 72 Point"
msgstr ""
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id12\n"
+"00000003.xhp\n"
+"par_idN10715\n"
"help.text"
-msgid "For PBM, PGM, and PPM files you can set the encoding."
+msgid "For example, in a text document, open <emph>Format - Paragraph - Indents & Spacing</emph>. To indent the current paragraph by one inch, enter <item type=\"literal\">1 in</item> or <item type=\"literal\">1\"</item> into the \"Before text\" box. To indent the paragraph by 1 cm, enter <item type=\"literal\">1 cm</item> into the input box."
msgstr ""
-#: 00000200.xhp
+#: 00000003.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id344441\n"
+"00000003.xhp\n"
+"par_idN1074C\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in binary format. The resulting file is smaller than a text file.</ahelp>"
+msgid "To input the maximum or minimum allowed value respectively, click the current value and then press the <item type=\"keycode\">Page Up</item> or <item type=\"keycode\">Page Down</item> key."
msgstr ""
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3555783\n"
+"00000004.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in ASCII text format. The resulting file is larger than a binary file.</ahelp>"
+msgid "To access this command..."
+msgstr "Dështova në ekzekutimin e komandës"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"hd_id3160447\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"wie\">To access this command...</variable>"
msgstr ""
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id13\n"
+"00000004.xhp\n"
+"par_id3147212\n"
+"47\n"
"help.text"
-msgid "For PNG files you can set the compression and the interlaced mode."
+msgid "<variable id=\"related\"><emph>Related Topics</emph></variable>"
msgstr ""
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id35674840\n"
+"00000004.xhp\n"
+"par_id56935339\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the graphic is to be saved in interlaced mode.</ahelp>"
+msgid "Enable or disable the Help Agent on <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - General</emph>."
msgstr ""
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id14\n"
+"00000004.xhp\n"
+"par_id3154689\n"
"help.text"
-msgid "For GIF files you can set the transparency and the interlaced mode."
+msgid "<image id=\"img_id3152427\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152427\">Icon</alt></image>"
msgstr ""
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id31456456938\n"
+"00000004.xhp\n"
+"par_id3146067\n"
+"46\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture.</ahelp>"
+msgid "Font Color"
+msgstr "Ngjyra e Fontit"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3157898\n"
+"help.text"
+msgid "<image id=\"img_id3149716\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149716\">Icon</alt></image>"
msgstr ""
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id15\n"
+"00000004.xhp\n"
+"par_id3149893\n"
+"7\n"
"help.text"
-msgid "For EPS files you can set the preview, the color format, the compression, and the version."
+msgid "Font Color"
+msgstr "Ngjyra e Fontit"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3149750\n"
+"help.text"
+msgid "<image id=\"img_id3146957\" src=\"cmd/sc_justifypara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146957\">Icon</alt></image>"
msgstr ""
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3147779948\n"
+"00000004.xhp\n"
+"par_id3150693\n"
+"8\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">You must print an EPS file with a PostScript printer. Other printers will only print the embedded preview.</caseinline></switchinline>"
+msgid "Line spacing: 1"
+msgstr "Hapësira në mes të rreshtave"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3145382\n"
+"help.text"
+msgid "<image id=\"img_id3163802\" src=\"cmd/sc_spacepara15.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163802\">Icon</alt></image>"
msgstr ""
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id993155271\n"
+"00000004.xhp\n"
+"par_id3154173\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file.</ahelp>"
+msgid "Line spacing: 1.5"
+msgstr "Hapësira në mes të rreshtave"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3150131\n"
+"help.text"
+msgid "<image id=\"img_id3153252\" src=\"cmd/sc_spacepara2.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153252\">Icon</alt></image>"
msgstr ""
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id993144740\n"
-"30\n"
+"00000004.xhp\n"
+"par_id3152824\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code.</ahelp>"
+msgid "Line spacing: 2"
+msgstr "Hapësira në mes të rreshtave"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3149820\n"
+"help.text"
+msgid "<image id=\"img_id3153126\" src=\"cmd/sc_superscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153126\">Icon</alt></image>"
msgstr ""
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id993150935\n"
+"00000004.xhp\n"
+"par_id3145121\n"
+"11\n"
+"help.text"
+msgid "Superscript"
+msgstr "Mbishkrim"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3147077\n"
+"help.text"
+msgid "<image id=\"img_id3155135\" src=\"cmd/sc_subscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155135\">Icon</alt></image>"
+msgstr ""
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3151385\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2.</ahelp>"
+msgid "Subscript"
+msgstr "Nënshkrim"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3148550\n"
+"help.text"
+msgid "<image id=\"img_id3149294\" src=\"res/helpimg/feldurch.png\" width=\"0.9374inch\" height=\"0.2398inch\"><alt id=\"alt_id3149294\">Icon</alt></image>"
msgstr ""
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id993159201\n"
-"14\n"
+"00000004.xhp\n"
+"par_id3152772\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics.</ahelp>"
+msgid "Line Style"
+msgstr "Stili i linjës"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153379\n"
+"help.text"
+msgid "<image id=\"img_id3148401\" src=\"res/helpimg/feldcolo.png\" width=\"1.0417inch\" height=\"0.2398inch\"><alt id=\"alt_id3148401\">Icon</alt></image>"
msgstr ""
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id319947250\n"
+"00000004.xhp\n"
+"par_id3149290\n"
+"16\n"
+"help.text"
+msgid "Line Color"
+msgstr "Ngjyra e Linjës"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3156214\n"
+"help.text"
+msgid "<image id=\"img_id3149807\" src=\"res/helpimg/feldbrei.png\" width=\"0.6563inch\" height=\"0.2189inch\"><alt id=\"alt_id3149807\">Icon</alt></image>"
+msgstr ""
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3163044\n"
+"17\n"
+"help.text"
+msgid "Line Width"
+msgstr "Gjerësia e linjës"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3154154\n"
+"help.text"
+msgid "<image id=\"img_id3145152\" src=\"res/helpimg/swh00117.png\" width=\"2.0835inch\" height=\"0.2398inch\"><alt id=\"alt_id3145152\">Icon</alt></image>"
+msgstr ""
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3150650\n"
"18\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in color.</ahelp>"
+msgid "Area Style / Filling"
+msgstr "Stili i Zonës / Mbushja"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153367\n"
+"help.text"
+msgid "<image id=\"img_id3147502\" src=\"cmd/sc_aligntop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147502\">Icon</alt></image>"
msgstr ""
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id993147088\n"
+"00000004.xhp\n"
+"par_id3148557\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in grayscale tones.</ahelp>"
+msgid "Align Top"
+msgstr "Rreshto në Majë"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3146923\n"
+"help.text"
+msgid "<image id=\"img_id3150410\" src=\"cmd/sc_cellvertbottom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150410\">Icon</alt></image>"
msgstr ""
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id399153683\n"
-"24\n"
+"00000004.xhp\n"
+"par_id3149287\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm.</ahelp>"
+msgid "Align Bottom"
+msgstr "Rreshto poshtë"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153097\n"
+"help.text"
+msgid "<image id=\"img_id3153363\" src=\"cmd/sc_alignvcenter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153363\">Icon</alt></image>"
msgstr ""
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id319952780\n"
-"26\n"
+"00000004.xhp\n"
+"par_id3150873\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that you do not wish to use compression.</ahelp>"
+msgid "Align Center Vertically"
+msgstr "Rreshto në Qendrën Vertikalisht"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3147436\n"
+"help.text"
+msgid "<image id=\"img_id3159123\" src=\"svx/res/nu07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159123\">Icon</alt></image>"
msgstr ""
-#: 00000200.xhp
+#: 00000004.xhp
msgctxt ""
-"00000200.xhp\n"
-"par_id3147250\n"
+"00000004.xhp\n"
+"par_id3147418\n"
+"27\n"
"help.text"
-msgid "See <link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filter Information\">Import and Export Filter Information</link> for more information about filters."
+msgid "Apply"
+msgstr "Zbato"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3146147\n"
+"help.text"
+msgid "<image id=\"img_id3145364\" src=\"svx/res/nu08.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">Icon</alt></image>"
msgstr ""
-#: 00000408.xhp
+#: 00000004.xhp
msgctxt ""
-"00000408.xhp\n"
-"tit\n"
+"00000004.xhp\n"
+"par_id3148617\n"
+"28\n"
"help.text"
-msgid "Help Menu"
-msgstr "Menyja për ndihmë"
+msgid "Cancel"
+msgstr "Anulo"
-#: 00000408.xhp
+#: 00000004.xhp
msgctxt ""
-"00000408.xhp\n"
-"hd_id3154689\n"
-"1\n"
+"00000004.xhp\n"
+"par_id3154730\n"
"help.text"
-msgid "Help Menu"
-msgstr "Menyja për ndihmë"
+msgid "<image id=\"img_id3154096\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154096\">Icon</alt></image>"
+msgstr ""
-#: 00000408.xhp
-#, fuzzy
+#: 00000004.xhp
msgctxt ""
-"00000408.xhp\n"
-"par_id3150960\n"
-"2\n"
+"00000004.xhp\n"
+"par_id3145800\n"
+"30\n"
"help.text"
-msgid "<variable id=\"content\">Choose <emph>Help - Contents</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "Up One Level"
+msgstr "Një nivel më lartë"
-#: 00000408.xhp
+#: 00000004.xhp
msgctxt ""
-"00000408.xhp\n"
-"par_id3147240\n"
-"14\n"
+"00000004.xhp\n"
+"par_id3149412\n"
"help.text"
-msgid "<variable id=\"infoanwendung\">Choose <emph>Help - About </emph><emph>%PRODUCTNAME</emph></variable>"
+msgid "<image id=\"img_id3153279\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153279\">Icon</alt></image>"
msgstr ""
-#: 00000408.xhp
+#: 00000004.xhp
msgctxt ""
-"00000408.xhp\n"
-"par_id3151387\n"
-"15\n"
+"00000004.xhp\n"
+"par_id3154064\n"
+"48\n"
"help.text"
-msgid "Automatically after <item type=\"productname\">%PRODUCTNAME</item> is first started."
+msgid "Create New Directory"
+msgstr "Krijo një Folder të ri"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153221\n"
+"help.text"
+msgid "<image id=\"img_id3153334\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153334\">Icon</alt></image>"
msgstr ""
-#: 00000408.xhp
+#: 00000004.xhp
msgctxt ""
-"00000408.xhp\n"
-"par_id3153808\n"
-"16\n"
+"00000004.xhp\n"
+"par_id3145646\n"
+"39\n"
"help.text"
-msgid "Choose <emph>Help - Registration</emph> (this is a direct link to an external website)"
+msgid "Up One Level"
+msgstr "Një nivel më lartë"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3151320\n"
+"help.text"
+msgid "<image id=\"img_id3148833\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148833\">Icon</alt></image>"
+msgstr ""
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3153005\n"
+"40\n"
+"help.text"
+msgid "Create New Folder"
msgstr ""
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3156361\n"
+"help.text"
+msgid "<image id=\"img_id3150656\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150656\">Icon</alt></image>"
+msgstr ""
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3146915\n"
+"35\n"
+"help.text"
+msgid "<ahelp hid=\".\">Go to the previous comment</ahelp>"
+msgstr ""
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3151357\n"
+"help.text"
+msgid "<image id=\"img_id3154363\" src=\"res/sc06300.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154363\">Icon</alt></image>"
+msgstr ""
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3159184\n"
+"36\n"
+"help.text"
+msgid "<ahelp hid=\".\">Go to the next comment</ahelp>"
+msgstr ""
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3083285\n"
+"help.text"
+msgid "<image id=\"img_id3147100\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Icon</alt></image>"
+msgstr ""
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3147339\n"
+"37\n"
+"help.text"
+msgid "Open File"
+msgstr "Hape fajllin"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3151189\n"
+"help.text"
+msgid "<image id=\"img_id3156318\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156318\">Icon</alt></image>"
+msgstr ""
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3149109\n"
+"38\n"
+"help.text"
+msgid "Save As"
+msgstr "Ruaje si"
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3152946\n"
+"help.text"
+msgid "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155904\">Icon</alt></image>"
+msgstr ""
+
+#: 00000004.xhp
+msgctxt ""
+"00000004.xhp\n"
+"par_id3155336\n"
+"76\n"
+"help.text"
+msgid "Export Directly as PDF"
+msgstr "Eksporto drejtpërdrejt si PDF"
+
#: 00000005.xhp
msgctxt ""
"00000005.xhp\n"
@@ -1634,2856 +2608,2179 @@ msgctxt ""
msgid "Widows and orphans are historical typography terms, which have been in use for many years. A widow refers to a short line at the end of a paragraph, which when printed, appears alone at the top of the next page. An orphan is, in contrast, the first line of a paragraph printed alone at the bottom of the previous page. In a $[officename] text document you can automatically prevent such occurrences in the desired Paragraph Style. When doing so, you can determine the minimum amount of lines to be kept together on a page."
msgstr ""
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
+"00000007.xhp\n"
"tit\n"
"help.text"
-msgid "Format Menu"
-msgstr "Menyja për formatim"
+msgid "Toolbars"
+msgstr "Shiriti i veglave"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"hd_id3150347\n"
+"00000007.xhp\n"
+"hd_id3155620\n"
"1\n"
"help.text"
-msgid "Format Menu"
-msgstr "Menyja për formatim"
-
-#: 00040500.xhp
-#, fuzzy
-msgctxt ""
-"00040500.xhp\n"
-"par_id3145356\n"
-"8\n"
-"help.text"
-msgid "<variable id=\"standard\">Choose <emph>Format - Clear Direct Formatting</emph></variable>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
+msgid "Toolbars"
+msgstr "Shiriti i veglave"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153244\n"
-"9\n"
+"00000007.xhp\n"
+"par_id3152823\n"
+"4\n"
"help.text"
-msgid "Choose <emph>Format - Character</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
+msgid "<variable id=\"werkzeugleiste\">Icon on the Tools bar: </variable>"
+msgstr ""
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
+"00000007.xhp\n"
"par_id3152352\n"
-"10\n"
+"5\n"
"help.text"
-msgid "On <emph>Text Formatting</emph> Bar (with cursor in object), click"
+msgid "<variable id=\"textobjektleiste\">Icon on the Formatting Bar: </variable>"
msgstr ""
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3148998\n"
+"00000007.xhp\n"
+"par_id3151370\n"
+"7\n"
"help.text"
-msgid "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154894\">Icon</alt></image>"
+msgid "<variable id=\"objektleiste\">Icon on the Formatting Bar: </variable>"
msgstr ""
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3149999\n"
-"11\n"
-"help.text"
-msgid "Character"
-msgstr "Karakter"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3153935\n"
-"12\n"
-"help.text"
-msgid "Choose <emph>Format - Character - Font</emph> tab"
-msgstr "Redakto të Dhënat Serike/Pikat"
-
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3157958\n"
-"14\n"
+"00000007.xhp\n"
+"par_id3149748\n"
+"9\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Font</emph> tab"
+msgid "<variable id=\"diaobjektleiste\">Icon on the Slide View Bar: </variable>"
msgstr ""
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3155338\n"
-"16\n"
+"00000007.xhp\n"
+"par_id3156553\n"
+"10\n"
"help.text"
-msgid "Open context menu of a row header in a database table - choose <emph>Table Format - Font</emph> tab"
+msgid "<variable id=\"symbolleistenneu\">This overview describes the default toolbar configuration for $[officename].</variable>"
msgstr ""
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3150355\n"
-"18\n"
-"help.text"
-msgid "Choose <emph>Format - Title - Character</emph> tab (Chart documents)"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3149812\n"
-"19\n"
-"help.text"
-msgid "Choose <emph>Format - Legend - Character</emph> tab (Chart documents)"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153717\n"
-"20\n"
+"00000007.xhp\n"
+"par_id3153551\n"
+"11\n"
"help.text"
-msgid "Choose <emph>Format - Axis - Character</emph> tab (Chart documents)"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "Asian Language Support"
+msgstr "Gjuha e fonteve Aziatike"
-#: 00040500.xhp
+#: 00000007.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154749\n"
-"17\n"
+"00000007.xhp\n"
+"par_id3156326\n"
+"12\n"
"help.text"
-msgid "Choose <emph>Format - Cell - Font</emph> tab (spreadsheets)"
+msgid "These commands can only be accessed after you enable support for Asian languages in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>."
msgstr ""
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3156306\n"
-"199\n"
+"00000010.xhp\n"
+"tit\n"
"help.text"
-msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
-msgstr ""
+msgid "Context Menus"
+msgstr "Konteksti i tanishëm"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3155829\n"
-"21\n"
+"00000010.xhp\n"
+"hd_id3160447\n"
+"1\n"
"help.text"
-msgid "Choose <emph>Format - Character - Font Effects</emph> tab"
-msgstr "Redakto të Dhënat Serike/Pikat"
+msgid "Context Menus"
+msgstr "Konteksti i tanishëm"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3149819\n"
-"23\n"
+"00000010.xhp\n"
+"hd_id3148765\n"
+"45\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Font Effects</emph> tab"
-msgstr ""
+msgid "Cut"
+msgstr "Preje"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3159176\n"
-"200\n"
+"00000010.xhp\n"
+"par_id3153383\n"
+"46\n"
"help.text"
-msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
+msgid "Cuts out the selected object and stores it on the clipboard. The object can be reinserted from the clipboard by using <emph>Paste</emph>."
msgstr ""
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3153541\n"
-"181\n"
-"help.text"
-msgid "Choose <emph>Format - Character - Position</emph> tab"
-msgstr "Redakto të Dhënat Serike/Pikat"
-
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3159256\n"
-"183\n"
+"00000010.xhp\n"
+"hd_id3156069\n"
+"68\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Alignment</emph> tab"
-msgstr ""
+msgid "Paste"
+msgstr "Lësho"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3151385\n"
-"201\n"
+"00000010.xhp\n"
+"par_id3154896\n"
+"69\n"
"help.text"
-msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
+msgid "<ahelp hid=\"SID_EXPLORERCONTENT_PASTE\" visibility=\"visible\">Inserts the element that you moved to the clipboard into the document.</ahelp> This command can only be called if the contents of the clipboard can be inserted at the current cursor position."
msgstr ""
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3148550\n"
-"186\n"
+"00000010.xhp\n"
+"hd_id3149948\n"
+"76\n"
"help.text"
-msgid "Choose <emph>Format - Character - Asian Layout</emph> tab"
-msgstr "Redakto të Dhënat Serike/Pikat"
+msgid "Insert"
+msgstr "Shto"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3152811\n"
-"188\n"
+"00000010.xhp\n"
+"par_id3147588\n"
+"77\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Asian Layout</emph> tab"
+msgid "Opens a submenu in the Gallery where you can choose between <emph>Copy</emph> and <emph>Link</emph>. The selected Gallery object is either copied into the current document or a link is created."
msgstr ""
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153524\n"
-"190\n"
+"00000010.xhp\n"
+"par_id3146130\n"
+"78\n"
"help.text"
-msgid "Choose <emph>Format - Paragraph - Asian Typography</emph> tab (not in HTML)"
+msgid "If you have selected an object in your document, then a new insertion will replace the selected object."
msgstr ""
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154366\n"
-"191\n"
+"00000010.xhp\n"
+"hd_id3145829\n"
+"79\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cell - Asian Typography</emph> tab </caseinline></switchinline>"
-msgstr ""
+msgid "Background"
+msgstr "Sfond"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3148742\n"
-"193\n"
+"00000010.xhp\n"
+"par_id3149180\n"
+"80\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Asian Typography</emph> tab"
+msgid "<ahelp hid=\"HID_GALLERY_MN_BACKGROUND\" visibility=\"visible\">Inserts the selected picture as a background graphic.</ahelp> Use the submenu commands <emph>Page</emph> or <emph>Paragraph</emph> to define whether the graphic should cover the entire page or only the current paragraph."
msgstr ""
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3148922\n"
-"26\n"
-"help.text"
-msgid "Choose <emph>Format - Character - Hyperlink</emph> tab"
-msgstr "Redakto të Dhënat Serike/Pikat"
-
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3149169\n"
-"29\n"
+"00000010.xhp\n"
+"hd_id3153049\n"
+"87\n"
"help.text"
-msgid "Choose <emph>Format - Paragraph</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
+msgid "Copy"
+msgstr "Kopjo"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3151381\n"
-"30\n"
+"00000010.xhp\n"
+"par_id3150774\n"
+"88\n"
"help.text"
-msgid "On <emph>Text Formatting</emph> bar (with cursor in object), click"
+msgid "<ahelp hid=\"SID_EXPLORERCONTENT_COPY\" visibility=\"visible\">Copies the selected element to the clipboard.</ahelp>"
msgstr ""
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3155995\n"
+"00000010.xhp\n"
+"hd_id3148620\n"
+"91\n"
"help.text"
-msgid "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150495\">Icon</alt></image>"
-msgstr ""
+msgid "Delete"
+msgstr "Fshije"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3147299\n"
-"31\n"
+"00000010.xhp\n"
+"par_id3154317\n"
+"92\n"
"help.text"
-msgid "Paragraph"
-msgstr "Paragraf"
+msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_DESTROY\">Deletes the current selection. If multiple objects are selected, all will be deleted. In most cases, a <link href=\"text/shared/01/03150100.xhp\" name=\"security query\">security query</link> appears before objects are deleted.</ahelp>"
+msgstr ""
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3147289\n"
-"4\n"
+"00000010.xhp\n"
+"par_id3155941\n"
+"190\n"
"help.text"
-msgid "Choose <emph>Format - Paragraph - Alignment</emph> tab"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "The object is either physically deleted from the data carrier or the object display is removed, depending on context."
+msgstr ""
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3147352\n"
-"179\n"
+"00000010.xhp\n"
+"par_id3150506\n"
+"192\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Alignment</emph> tab"
+msgid "If you choose <emph>Delete</emph> while in the Gallery, the entry will be deleted from the Gallery, but the file itself will remain untouched."
msgstr ""
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154640\n"
-"32\n"
+"00000010.xhp\n"
+"hd_id3150443\n"
+"136\n"
"help.text"
-msgid "Choose <emph>Format - Paragraph - Indents & Spacing</emph> tab"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "Open"
+msgstr "Hape"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3152463\n"
-"34\n"
+"00000010.xhp\n"
+"par_id3149149\n"
+"137\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Indents & Spacing</emph> tab"
+msgid "<ahelp visibility=\"visible\" hid=\"SID_EXPLORERCONTENT_OPEN_OBJECT\">Use the<emph> Open </emph>command to open the selected object in a new task.</ahelp>"
msgstr ""
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154319\n"
-"39\n"
+"00000010.xhp\n"
+"hd_id3149732\n"
+"165\n"
"help.text"
-msgid "Choose <emph>Format - Paragraph - Tabs</emph> tab"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "Rename"
+msgstr "Riemëro"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154833\n"
-"41\n"
+"00000010.xhp\n"
+"par_id3149797\n"
+"166\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Tabs</emph> tab"
+msgid "<ahelp hid=\"SID_EXPLORERCONTENT_RENAME\" visibility=\"visible\">Enables a selected object to be renamed.</ahelp> After selecting <emph>Rename</emph> the name is selected and a new one can be entered directly. Use the arrow keys to set the cursor at the beginning or end of the name to delete or add to part of the name or to reposition the cursor."
msgstr ""
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3159155\n"
-"43\n"
+"00000010.xhp\n"
+"hd_id3155434\n"
+"317\n"
"help.text"
-msgid "Double-click the ruler"
-msgstr "Kliko-dyherë të editosh tekstin"
+msgid "Update"
+msgstr "Azhuro"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_idN109E2\n"
+"00000010.xhp\n"
+"par_id3154898\n"
+"318\n"
"help.text"
-msgid "(all options only in Writer or Calc)"
+msgid "<ahelp hid=\"HID_GALLERY_ACTUALIZE\" visibility=\"visible\">Updates the view in the window or in the selected object.</ahelp>"
msgstr ""
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3156105\n"
-"44\n"
-"help.text"
-msgid "Choose <emph>Format - Paragraph - Borders</emph> tab"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154149\n"
-"45\n"
+"00000010.xhp\n"
+"hd_id3147573\n"
+"172\n"
"help.text"
-msgid "Choose <emph>Format - Picture - Borders</emph> tab"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "Preview"
+msgstr "Shikim paraprak"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3163822\n"
-"48\n"
+"00000010.xhp\n"
+"par_id3155583\n"
+"173\n"
"help.text"
-msgid "Choose <emph>Format - Frame/Object - Borders</emph> tab"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "The element selected is displayed in the Gallery at maximum size. Double-click the preview to switch back to the normal Gallery view."
+msgstr ""
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3150048\n"
-"51\n"
+"00000010.xhp\n"
+"hd_id3157809\n"
+"319\n"
"help.text"
-msgid "Choose <emph>Format - Page - Borders</emph> tab"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "Create Link"
+msgstr "Lidhja e vizituar"
-#: 00040500.xhp
+#: 00000010.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3149911\n"
-"53\n"
+"00000010.xhp\n"
+"par_id3153716\n"
+"320\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Borders</emph> tab"
+msgid "This command can be activated if an object is selected. A link named \"Link to xxx\" (<emph>xxx</emph> represents the name of the object) will be created directly in the same directory as that of the selected object."
msgstr ""
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3150094\n"
-"54\n"
-"help.text"
-msgid "Choose <emph>Format - Page - Header - More</emph> button"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00040500.xhp
+#: 00000011.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154501\n"
-"55\n"
+"00000011.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph>Format - Page - Footer - More</emph> button"
-msgstr "Redakto të Dhënat Serike/Pikat"
+msgid "Menu Commands"
+msgstr "AutoPilot Meny"
-#: 00040500.xhp
+#: 00000011.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3148455\n"
-"56\n"
+"00000011.xhp\n"
+"hd_id3156045\n"
+"4\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Borders</emph> tab </caseinline></switchinline>"
-msgstr ""
+msgid "Menu Commands"
+msgstr "AutoPilot Meny"
-#: 00040500.xhp
+#: 00000011.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3155915\n"
-"177\n"
+"00000011.xhp\n"
+"par_id3150838\n"
+"5\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Paragraph</emph> - <emph>Border</emph> tab -<emph> Spacing to contents</emph></caseinline></switchinline>"
+msgid "The window containing the document you want to work on must be selected in order to use the menu commands. Similarly, you must select an object in the document to use the menu commands associated with the object."
msgstr ""
-#: 00040500.xhp
+#: 00000011.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3159130\n"
-"178\n"
+"00000011.xhp\n"
+"par_id3156027\n"
+"3\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menu<emph> Format - Page - Border - Spacing to contents</emph></caseinline></switchinline>"
+msgid "The menus are context sensitive. This means that those menu items are available that are relevant to the work currently being carried out. If the cursor is located in a text, then all of those menu items are available that are needed to edit the text. If you have selected graphics in a document, then you will see all of the menu items that can be used to edit graphics."
msgstr ""
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3155853\n"
-"57\n"
-"help.text"
-msgid "Choose <emph>Format - Paragraph - Background</emph> tab"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3147330\n"
-"58\n"
-"help.text"
-msgid "Choose <emph>Format - Character - Background</emph> tab"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3149486\n"
-"59\n"
-"help.text"
-msgid "Choose <emph>Format - Picture - Background</emph> tab"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3150592\n"
-"61\n"
+"00000020.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph>Format - Frame/Object - Background</emph> tab"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "About Import and Export Filters"
+msgstr "Portable bitmap Import/Eksport filterët"
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3151321\n"
-"65\n"
+"00000020.xhp\n"
+"bm_id3152952\n"
"help.text"
-msgid "Choose <emph>Format - Page - Background</emph> tab"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "<bookmark_value>import filters</bookmark_value><bookmark_value>export filters</bookmark_value><bookmark_value>filters; for import and export</bookmark_value><bookmark_value>files; filters and formats</bookmark_value><bookmark_value>formats; on opening and saving</bookmark_value><bookmark_value>importing; HTML and text documents</bookmark_value><bookmark_value>exporting;HTML and text documents</bookmark_value><bookmark_value>text documents; importing/exporting</bookmark_value><bookmark_value>HTML documents; importing/exporting</bookmark_value><bookmark_value>UTF-8/UCS2 support</bookmark_value><bookmark_value>HTML; export character set</bookmark_value><bookmark_value>PostScript; creating files</bookmark_value><bookmark_value>exporting;to PostScript format</bookmark_value>"
+msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154510\n"
-"68\n"
+"00000020.xhp\n"
+"hd_id3152952\n"
+"1\n"
"help.text"
-msgid "Choose <emph>Format - Page - Header - More</emph> button"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "About Import and Export Filters"
+msgstr "Portable bitmap Import/Eksport filterët"
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3159110\n"
-"69\n"
+"00000020.xhp\n"
+"par_id3143272\n"
+"2\n"
"help.text"
-msgid "Choose <emph>Format - Page - Footer - More</emph> button"
-msgstr "Redakto të Dhënat Serike/Pikat"
+msgid "In $[officename], apart from its own <link href=\"text/shared/00/00000021.xhp\" name=\"XML formats\">XML formats</link> you can also open and save many foreign XML formats."
+msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153532\n"
-"67\n"
+"00000020.xhp\n"
+"par_id3152414\n"
+"3\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Background</emph> tab"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">In UNIX, certain file formats cannot be recognized automatically.</caseinline><defaultinline>$[officename] normally recognizes the correct file type automatically on opening a file.</defaultinline></switchinline> There may be cases where you have to select the file type yourself in the <emph>Open</emph> dialog. For example, if you have a database table in text format that you want to open as a database table, you need to specify the file type \"Text CSV\" after selecting the file."
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3144747\n"
-"174\n"
+"00000020.xhp\n"
+"hd_id3148668\n"
+"238\n"
"help.text"
-msgid "Choose <emph>Insert/Edit - Section - Background</emph> tab"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "Basic Macros in MS Office Documents"
+msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3146900\n"
-"71\n"
+"00000020.xhp\n"
+"par_id3156211\n"
+"239\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab </caseinline></switchinline>"
+msgid "In <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01130100.xhp\" name=\"Load/Save - VBA Properties\">Load/Save - VBA Properties</link> you can specify the settings for the VBA macro codes in MS Office documents. VBA macros are unable to run in $[officename]; they must first be converted and adapted. Often you only want to use $[officename] to change the visible content of a Word, Excel or PowerPoint file and then save the file again in Microsoft Office format without changing the macros they contain. You can set the behavior of $[officename] as desired: Either the VBA macros are saved in commented form as a subroutine of $[officename] and when the document is saved in MS Office format are written back correctly again, or you can select the Microsoft Office macros to be removed when loading. The last option is an effective protection against viruses within the Microsoft Office documents."
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3146791\n"
-"72\n"
+"00000020.xhp\n"
+"hd_id3154232\n"
+"5\n"
"help.text"
-msgid "Choose <emph>Format - Page - Organizer</emph> tab"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "Notes regarding external formats and file types"
+msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154482\n"
-"74\n"
+"00000020.xhp\n"
+"par_id3154230\n"
+"226\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Organizer</emph> tab"
+msgid "Even if they are not installed, some filters can be selected in the <emph>Open</emph> and <emph>Save</emph> dialogs. If you select such a filter, a message will appear saying that you can still install the filter if you require."
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153357\n"
-"75\n"
+"00000020.xhp\n"
+"par_id3149999\n"
+"200\n"
"help.text"
-msgid "Choose <emph>Format - Page - Page</emph> tab"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">If you want to install additional filters or remove individual filters from the installation, close %PRODUCTNAME, start the Setup program and select the <emph>Modify</emph> option. Then you will see a dialog in which you can add or remove individual components of %PRODUCTNAME. Graphic filters can be found in \"Optional Components\".</caseinline></switchinline>"
+msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154362\n"
-"77\n"
+"00000020.xhp\n"
+"hd_id3156027\n"
+"7\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Page</emph> tab"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Importing and Exporting Text Documents</defaultinline></switchinline>"
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3155515\n"
-"78\n"
+"00000020.xhp\n"
+"par_id3145669\n"
+"8\n"
"help.text"
-msgid "Choose <emph>Format - Page - Header</emph> tab"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>$[officename] Writer can read various versions of the Microsoft Word text format. You also can save your own texts in Word format. However, not everything available with $[officename] Writer can be transferred to MS Word, and not everything can be imported.</defaultinline></switchinline>"
+msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3148405\n"
-"80\n"
+"00000020.xhp\n"
+"par_id3150144\n"
+"233\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Header</emph> tab"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Importing is normally not problematic. Even redlining information and controls are imported (and exported) so that $[officename] recognizes inserted or deleted text in Word documents as well as font attributes that have been modified. Different coloring for each author and the time of such changes is also included. When graphic text boxes and labels are imported from templates, most of the attributes are also imported as direct paragraph and drawing attributes. However, some of the attributes may be lost during the import procedure.</defaultinline></switchinline>"
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3145618\n"
-"81\n"
+"00000020.xhp\n"
+"par_id3149095\n"
+"10\n"
"help.text"
-msgid "Choose <emph>Format - Page - Footer</emph> tab"
-msgstr "Redakto të Dhënat Serike/Pikat"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>It is also possible to import and export <link href=\"text/shared/00/00000005.xhp#rtf\" name=\"RTF\">RTF</link> files. This file format can be used to exchange formatted texts across various applications and platforms. In this way, many formats read by most programs will be transferred without a problem. The clipboard uses RTF format when you insert part of a spreadsheet from $[officename] Calc through <link href=\"text/shared/00/00000005.xhp\" name=\"DDE\">DDE</link> into $[officename] Writer.</defaultinline></switchinline>"
+msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3155175\n"
-"83\n"
+"00000020.xhp\n"
+"par_id3151378\n"
+"237\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Footer</emph> tab"
+msgid "The filter <emph>Text Encoded</emph> helps you open and save text documents with another encoding font. The filter opens a dialog that enables you to select character set, default fonts, language and paragraph break."
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3147404\n"
-"84\n"
+"00000020.xhp\n"
+"hd_id3149763\n"
+"11\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph>"
+msgid "Importing and Exporting in HTML Format"
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3166447\n"
-"95\n"
+"00000020.xhp\n"
+"par_id3150244\n"
+"198\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
+msgid "With $[officename] Writer, you can insert footnotes and endnotes in your HTML document. They are exported as meta tags. The footnote and endnote characters are exported as hyperlinks."
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3147321\n"
-"85\n"
+"00000020.xhp\n"
+"par_id3149800\n"
+"199\n"
"help.text"
-msgid "On <emph>Formatting</emph> Bar, click"
-msgstr "Shiriti i Funksionit kyçur/çkyçur"
+msgid "Comments are used to include unknown characters in an HTML document. Every note that begins with \"HTML:...\" and ends with \">\" is treated as an HTML code, but is exported without these designations. Several tags around text can be included after \"HTML:...\" Accented characters are converted into the ANSI character set. Comments are created during import (for example, for meta tags that have no room in the file properties or unknown tags)."
+msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3148533\n"
+"00000020.xhp\n"
+"par_id3149734\n"
+"201\n"
"help.text"
-msgid "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149568\">Icon</alt></image>"
+msgid "The HTML import of $[officename] Writer is able to read files that have UTF-8 or UCS2 character coding. All characters that are contained in the ANSI character set or in the system's character set can be displayed."
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153534\n"
-"86\n"
+"00000020.xhp\n"
+"par_id3149578\n"
+"240\n"
"help.text"
-msgid "Styles and Formatting"
-msgstr "Struktura dhe formatimi"
+msgid "When exporting to HTML, the character set selected in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph> is used. Characters not present there are written in a substitute form, which is displayed correctly in modern web browsers. When exporting such characters, you will receive an appropriate warning."
+msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3159313\n"
-"88\n"
+"00000020.xhp\n"
+"par_id3153146\n"
+"197\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>On the <emph>Drawing</emph> bar, click</defaultinline></switchinline>"
+msgid "If, in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>, you select Netscape Navigator, MS Internet Explorer, or $[officename] Writer as the export option, upon export all important font attributes are exported as direct attributes (for example, text color, font size, bold, italic, and so on) in CSS1 styles. (<link href=\"text/shared/00/00000002.xhp\" name=\"CSS\">CSS</link> stands for Cascading Style Sheets.) Importing is also carried out according to this standard."
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3109845\n"
+"00000020.xhp\n"
+"par_id3154143\n"
+"130\n"
"help.text"
-msgid "<image id=\"img_id3159236\" src=\"cmd/sc_window3d.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159236\">Icon</alt></image>"
+msgid "The \"font\" property corresponds to Netscape Navigator; that is, before the font size you can specify optional values for \"font-style\" (italic, none), \"font-variant\" (normal, small-caps) and \"font-weight\" (normal, bold)."
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3152498\n"
-"3\n"
+"00000020.xhp\n"
+"par_id3153760\n"
+"131\n"
"help.text"
-msgid "<emph>3D Effects</emph>"
-msgstr "Ngjyra e 3D materialit"
+msgid "For example, \"Font: bold italic small-caps 12pt/200% Arial, Helvetica\" switches to bold, italic, small caps, double-space with the font family Arial or Helvetica, if Arial doesn't exist."
+msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3145256\n"
-"90\n"
+"00000020.xhp\n"
+"par_id3150129\n"
+"132\n"
"help.text"
-msgid "<variable id=\"3dgeometrie\">Open the context menu of the 3D object, choose <emph>3D Effects - Geometry</emph> tab </variable>"
+msgid "\"Font: 10pt\" switches to a 10pt font, with bold, italic, small caps off."
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154203\n"
-"91\n"
+"00000020.xhp\n"
+"par_id3155135\n"
+"14\n"
"help.text"
-msgid "<variable id=\"3ddarstellung\">Open the context menu of the 3D object, choose <emph>3D Effects - Shading</emph> tab </variable>"
+msgid "If MS Internet Explorer or $[officename] Writer are set as the export option, the sizes of the control field and their internal margins are exported as styles (print formats). CSS1 size properties are based on \"width\" and \"height\" values. The \"Margin\" property is used to set equal margins on all sides of the page. To allow different margins, the \"Margin-Left\", \"Margin-Right\", \"Margin-Top\" and \"Margin-Bottom\" properties are used."
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3151284\n"
-"92\n"
+"00000020.xhp\n"
+"par_id3148473\n"
+"15\n"
"help.text"
-msgid "<variable id=\"3dbeleuchtung\">Open the context menu of the 3D object, choose <emph>3D Effects - Illumination</emph> tab </variable>"
+msgid "The distances of graphics and Plug-Ins to the content can be set individually for export to $[officename] Writer and MS Internet Explorer. If the top/bottom or right/left margin is set differently, the distances are exported in a \"STYLE\" option for the corresponding tag as CSS1 size properties \"Margin-Top\", \"Margin-Bottom\", \"Margin-Left\" and \"Margin-Right\"."
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3152475\n"
-"93\n"
+"00000020.xhp\n"
+"par_id3144510\n"
+"16\n"
"help.text"
-msgid "<variable id=\"3dtexturen\">Open the context menu of the 3D object, choose <emph>3D Effects - Textures</emph> tab </variable>"
+msgid "Text frames are supported with the use of CSS1 extensions for absolute positioned objects. This applies only to the export options Netscape Navigator, MS Internet Explorer, and $[officename] Writer. Text frames can be aligned as graphics, <switchinline select=\"sys\"><caseinline select=\"WIN\"> Plug-Ins,</caseinline></switchinline>and Floating Frames, but character-linked frames are not possible."
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154572\n"
-"94\n"
+"00000020.xhp\n"
+"par_id3147530\n"
+"46\n"
"help.text"
-msgid "<variable id=\"3dmaterial\">Open the context menu of the 3D object, choose <emph>3D Effects - Material</emph> tab </variable>"
+msgid "Text frames are exported as \"<SPAN>\" or \"<DIV>\" tags if they do not contain columns. If they do contain columns then they are exported as \"<MULTICOL>\"."
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3145220\n"
-"155\n"
+"00000020.xhp\n"
+"par_id3153896\n"
+"202\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering </emph>"
+msgid "The measurement unit set in $[officename] is used for HTML export of CSS1 properties. The unit can be set separately for text and HTML documents under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - General</emph> or <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer/Web - View</emph>. The number of exported decimal places depends on the unit."
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3148771\n"
-"156\n"
+"00000020.xhp\n"
+"par_id3154935\n"
+"203\n"
"help.text"
-msgid "On <emph>Formatting</emph> toolbar, click"
-msgstr "Shiriti i Funksionit kyçur/çkyçur"
+msgid "Measurement Unit"
+msgstr "Njësi matëse"
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3149445\n"
+"00000020.xhp\n"
+"par_id3154226\n"
+"204\n"
"help.text"
-msgid "<image id=\"img_id3149964\" src=\"cmd/sc_defaultbullet.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149964\">Icon</alt></image>"
+msgid "Measurement Unit Name in CSS1"
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3157970\n"
-"163\n"
+"00000020.xhp\n"
+"par_id3151106\n"
+"205\n"
"help.text"
-msgid "Bullets On/Off"
-msgstr "Pikat Po/Jo"
+msgid "Maximum Number of Decimal Places"
+msgstr "Shkurton vendet decimale të një numri."
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3149735\n"
-"157\n"
+"00000020.xhp\n"
+"par_id3154071\n"
+"206\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Options</emph> tab page"
-msgstr ""
+msgid "Millimeter"
+msgstr "Milimetër"
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3150785\n"
-"164\n"
+"00000020.xhp\n"
+"par_id3149290\n"
+"207\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr ""
+msgid "mm"
+msgstr "0 mm"
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3148420\n"
-"165\n"
+"00000020.xhp\n"
+"par_id3152920\n"
+"208\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgid "2"
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3148888\n"
-"158\n"
+"00000020.xhp\n"
+"par_id3156293\n"
+"209\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering - Bullets</emph> tab"
-msgstr ""
+msgid "Centimeter"
+msgstr "Centimetër"
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3149917\n"
-"166\n"
+"00000020.xhp\n"
+"par_id3154819\n"
+"210\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open Styles and Formatting - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgid "cm"
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3154930\n"
-"167\n"
+"00000020.xhp\n"
+"par_id3147228\n"
+"211\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open Styles and Formatting - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgid "2"
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3150862\n"
-"159\n"
+"00000020.xhp\n"
+"par_id3154329\n"
+"212\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering - Numbering</emph> tab"
-msgstr ""
+msgid "Inch"
+msgstr "Inç"
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3155378\n"
-"168\n"
+"00000020.xhp\n"
+"par_id3150740\n"
+"213\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
-msgstr ""
+msgid "in"
+msgstr "In"
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3156011\n"
-"169\n"
+"00000020.xhp\n"
+"par_id3157320\n"
+"214\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgid "2"
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id0611200904324832\n"
+"00000020.xhp\n"
+"par_id3156422\n"
+"215\n"
"help.text"
-msgid "<variable id=\"graphics\">Choose <emph>Format - Bullets and Numbering - Graphics</emph> tab</variable>"
-msgstr ""
+msgid "Pica"
+msgstr "Pica"
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3155848\n"
-"160\n"
+"00000020.xhp\n"
+"par_id3144760\n"
+"216\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering - Outline</emph> tab"
-msgstr ""
+msgid "pc"
+msgstr "Pocket PC"
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3148733\n"
-"170\n"
+"00000020.xhp\n"
+"par_id3145322\n"
+"217\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgid "2"
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3156658\n"
-"162\n"
+"00000020.xhp\n"
+"par_id3155131\n"
+"218\n"
"help.text"
-msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Position</emph> tab page"
-msgstr ""
+msgid "Point"
+msgstr "Pikë"
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3156170\n"
-"152\n"
+"00000020.xhp\n"
+"par_id3147288\n"
+"219\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab </caseinline></switchinline>"
+msgid "pt"
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153812\n"
-"173\n"
+"00000020.xhp\n"
+"par_id3145364\n"
+"220\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting - Numbering Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
+msgid "1"
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3151332\n"
-"194\n"
+"00000020.xhp\n"
+"par_id3149262\n"
+"70\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Picture </emph>- <emph>Crop</emph> tab </caseinline></switchinline>"
+msgid "The $[officename] Web page filter supports certain capabilities of CSS2. However, to use it, print layout export must be activated in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>. Then, in HTML documents, besides the HTML Page Style, you can also use the styles \"First page\", \"Left page\" and \"Right page\". These styles should enable you to set different page sizes and margins for the first page and for right and left pages when printing."
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153317\n"
-"198\n"
+"00000020.xhp\n"
+"hd_id3145750\n"
+"223\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Picture</emph> toolbar:</defaultinline></switchinline>"
+msgid "Importing and Exporting Numbering"
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3149953\n"
+"00000020.xhp\n"
+"par_id3145591\n"
+"224\n"
"help.text"
-msgid "<image id=\"img_id3155092\" src=\"cmd/sc_grafattrcrop.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155092\">Icon</alt></image>"
+msgid "If, in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>, the export option \"$[officename] Writer\" or \"Internet Explorer\" is selected, the indents of numberings are exported as \"margin-left\" CSS1 property in the STYLE attribute of the <OL> and <UL> tags. The property indicates the difference relative to the indent of the next higher level."
msgstr ""
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3153695\n"
-"209\n"
-"help.text"
-msgid "Crop"
-msgstr "Preje"
-
-#: 00040500.xhp
-msgctxt ""
-"00040500.xhp\n"
-"par_id3151254\n"
-"195\n"
-"help.text"
-msgid "Choose <emph>Format - Change Case</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3159624\n"
-"196\n"
+"00000020.xhp\n"
+"par_id3153573\n"
+"225\n"
"help.text"
-msgid "Open context menu (text) - choose <emph>Change Case</emph>"
+msgid "A left paragraph indent in numbering is indicated as \"margin-left\" CSS1 property. First-line indents are ignored in numbering and not exported."
msgstr ""
-#: 00040500.xhp
+#: 00000020.xhp
msgctxt ""
-"00040500.xhp\n"
-"par_id3153579\n"
-"197\n"
+"00000020.xhp\n"
+"hd_id3148556\n"
+"235\n"
"help.text"
-msgid "Menu <emph>Format - Asian phonetic guide</emph>"
+msgid "Importing and Exporting Spreadsheet Files"
msgstr ""
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"tit\n"
-"help.text"
-msgid "File Menu"
-msgstr "AutoPilot Meny"
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"hd_id3149976\n"
-"1\n"
-"help.text"
-msgid "File Menu"
-msgstr "AutoPilot Meny"
-
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id389416\n"
+"00000020.xhp\n"
+"par_id3153365\n"
+"236\n"
"help.text"
-msgid "<variable id=\"webhtml\">Choose <emph>File - Preview in Web Browser</emph></variable>"
+msgid "$[officename] imports and exports references to deleted sections such as, for example, a referenced column. The whole formula can be viewed during the export process and the deleted reference contains an indication (#REF!) to the reference. A #REF! will be correspondingly created for the reference during the import."
msgstr ""
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3154812\n"
-"50\n"
-"help.text"
-msgid "Choose <emph>File - New</emph>"
-msgstr "Zgjidh një fjalëkalim për përdoruesin e ri:"
-
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153070\n"
-"186\n"
+"00000020.xhp\n"
+"hd_id3150228\n"
+"103\n"
"help.text"
-msgid "<emph>New</emph> icon on the <emph>Standard</emph> Bar (the icon shows the type of the new document)"
+msgid "Importing and Exporting Graphics Files"
msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150127\n"
+"00000020.xhp\n"
+"par_id3152578\n"
+"104\n"
"help.text"
-msgid "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156053\">Icon</alt></image>"
+msgid "As with HTML documents, you can choose to use a filter with or without the element ($[officename] Impress) in the name to open a $[officename] graphics file. If without, the file will be opened as a $[officename] Draw document. Otherwise, the file saved by an old program version is now opened in $[officename] Impress."
msgstr ""
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3154232\n"
-"199\n"
-"help.text"
-msgid "New"
-msgstr "E re"
-
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154894\n"
-"179\n"
+"00000020.xhp\n"
+"par_id3144441\n"
+"106\n"
"help.text"
-msgid "Key <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
+msgid "When you import an EPS file, a preview of the graphic is displayed in the document. If a preview is not available, a placeholder corresponding to the size of the graphic is displayed in the document. Under Unix and Microsoft Windows you can print the imported file by using a PostScript printer. <switchinline select=\"sys\"><caseinline select=\"UNIX\"></caseinline><defaultinline>If a different printer is used the preview will be printed.</defaultinline></switchinline> When exporting EPS graphics, a preview is created and has the TIFF or EPSI format. If an EPS graphic together with other graphics is exported in the EPS format then this file will be embedded unchanged in the new file."
msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3157898\n"
-"82\n"
+"00000020.xhp\n"
+"par_id3146120\n"
+"222\n"
"help.text"
-msgid "Menu <emph>File - New</emph><emph>- Templates and Documents</emph>."
+msgid "Multipage-TIFFs are allowed when graphics are imported or exported in TIFF format. The graphics are retrieved as a set of individual pictures in a single file, for example, the individual pages of a fax."
msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149140\n"
-"187\n"
+"00000020.xhp\n"
+"par_id3159153\n"
+"109\n"
"help.text"
-msgid "Key Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
+msgid "Some $[officename] Draw and $[officename] Impress options can be accessed through <emph>File - Export</emph>. See <link href=\"text/shared/00/00000200.xhp\" name=\"Graphics Export Options\">Graphics Export Options</link> for more information."
msgstr ""
-#: 00000401.xhp
-#, fuzzy
-msgctxt ""
-"00000401.xhp\n"
-"par_id3149798\n"
-"160\n"
-"help.text"
-msgid "<variable id=\"etiketten\">Choose <emph>File - New - Labels</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
-#, fuzzy
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3147226\n"
-"161\n"
+"00000020.xhp\n"
+"hd_id3153213\n"
+"228\n"
"help.text"
-msgid "<variable id=\"etikettenein\">Choose <emph>File - New - Labels - Labels</emph> tab</variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "PostScript"
+msgstr "Niveli i PostScript=-it"
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154522\n"
-"162\n"
+"00000020.xhp\n"
+"par_id3156444\n"
+"229\n"
"help.text"
-msgid "Choose <emph>File - New - Labels - Format</emph> tab"
+msgid "To export a document or graphic in PostScript format:"
msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154983\n"
-"163\n"
+"00000020.xhp\n"
+"par_id3163714\n"
+"230\n"
"help.text"
-msgid "Choose <emph>File - New - Business Cards - Format</emph> tab"
+msgid "If you have not yet done so, install a PostScript printer driver, such as the Apple LaserWriter driver."
msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3157958\n"
-"164\n"
+"00000020.xhp\n"
+"par_id3153142\n"
+"231\n"
"help.text"
-msgid "Choose <emph>File - New - Labels - Options</emph> tab"
+msgid "Print the document with the <emph>File - Print</emph> menu command."
msgstr ""
-#: 00000401.xhp
+#: 00000020.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153311\n"
-"165\n"
+"00000020.xhp\n"
+"par_id3154149\n"
+"242\n"
"help.text"
-msgid "Choose <emph>File - New - Business Cards - Options</emph> tab"
+msgid "Select the PostScript printer in the dialog and mark the <emph>Print to file</emph> check box. A PostScript file will be created."
msgstr ""
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152780\n"
-"166\n"
+"00000021.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"visikart\">Choose <emph>File - New - Business Cards</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "XML File Formats"
+msgstr "XML-iKalendar-Fajlli"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3156346\n"
-"167\n"
+"00000021.xhp\n"
+"bm_id3154408\n"
"help.text"
-msgid "<variable id=\"visikartform\">Choose <emph>File - New - Business Cards - Medium</emph> tab</variable>"
+msgid "<bookmark_value>exporting; XML files</bookmark_value> <bookmark_value>XML file formats</bookmark_value> <bookmark_value>extensions; file formats</bookmark_value> <bookmark_value>suffixes in file formats</bookmark_value> <bookmark_value>document types in $[officename]</bookmark_value> <bookmark_value>file formats; changing $[officename] defaults</bookmark_value> <bookmark_value>defaults;file formats in $[officename]</bookmark_value> <bookmark_value>file formats;OpenDocument/XML</bookmark_value> <bookmark_value>OpenDocument file formats</bookmark_value> <bookmark_value>ODF file formats</bookmark_value>"
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152824\n"
-"168\n"
+"00000021.xhp\n"
+"hd_id3154408\n"
+"2\n"
"help.text"
-msgid "<variable id=\"viskartinhalt\">Choose <emph>File - New - Business Cards - Business cards</emph> tab</variable>"
+msgid "<variable id=\"xmlformat\"><link href=\"text/shared/00/00000021.xhp\" name=\"XML File Formats\">XML File Formats</link></variable>"
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149819\n"
-"169\n"
+"00000021.xhp\n"
+"par_id3148919\n"
+"3\n"
"help.text"
-msgid "<variable id=\"viskartpriv\">Choose <emph>File - New - Business Cards - Private</emph> tab</variable>"
+msgid "<ahelp hid=\"HID_DID_SAVE_PACKED_XML\">By default, $[officename] loads and saves files in the OpenDocument file format.</ahelp>"
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154897\n"
-"170\n"
+"00000021.xhp\n"
+"par_idN10725\n"
"help.text"
-msgid "<variable id=\"viskartgesch\">Choose <emph>File - New - Business Cards - Business</emph> tab</variable>"
+msgid "The OpenDocument file format (ODF) is a standardized file format used by many software applications. You can find more information at the Wikipedia site: <link href=\"http://en.wikipedia.org/wiki/OpenDocument\">wikipedia.org/wiki/OpenDocument</link>."
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3146137\n"
-"7\n"
+"00000021.xhp\n"
+"hd_id3156324\n"
+"4\n"
"help.text"
-msgid "Choose <emph>File - Open</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
+msgid "OpenDocument file format names"
+msgstr "Gabim i gjetur në formatin e fajllit"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152944\n"
-"83\n"
+"00000021.xhp\n"
+"par_id3154926\n"
+"5\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O"
+msgid "%PRODUCTNAME uses the following file formats:"
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155341\n"
-"8\n"
+"00000021.xhp\n"
+"par_id3157898\n"
+"6\n"
"help.text"
-msgid "On the <emph>Standard</emph> Bar, click"
-msgstr "Shiriti i Funksionit kyçur/çkyçur"
+msgid "Document format"
+msgstr "Format tjetër"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155419\n"
+"00000021.xhp\n"
+"par_id3149549\n"
+"7\n"
"help.text"
-msgid "<image id=\"img_id3149415\" src=\"cmd/sc_open.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149415\">Icon</alt></image>"
-msgstr ""
+msgid "File extension"
+msgstr "Emri i fajllit pa zgjerim"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3156003\n"
-"9\n"
+"00000021.xhp\n"
+"par_idN10762\n"
"help.text"
-msgid "Open File"
-msgstr "Hape fajllin"
+msgid "ODF Text"
+msgstr "Vizato tekstin"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155388\n"
-"174\n"
+"00000021.xhp\n"
+"par_idN10767\n"
"help.text"
-msgid "Menu <emph>File - Open</emph>, File type <emph>Text Encoded</emph> selected"
-msgstr ""
+msgid "*.odt"
+msgstr "%PRODUCTNAME Base (*.odb)"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154174\n"
-"175\n"
+"00000021.xhp\n"
+"par_idN1076D\n"
"help.text"
-msgid "Menu <emph>File - Save As</emph>, File type <emph>Text Encoded</emph> selected"
-msgstr ""
+msgid "ODF Text Template"
+msgstr "OpenDokument Tekst Shabllon"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145609\n"
-"109\n"
+"00000021.xhp\n"
+"par_idN10772\n"
"help.text"
-msgid "<variable id=\"autobrief\">Choose <emph>File - Wizards</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "*.ott"
+msgstr "%PRODUCTNAME Base (*.odb)"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149245\n"
-"110\n"
+"00000021.xhp\n"
+"par_idN10778\n"
"help.text"
-msgid "<variable id=\"autopilotbrief\">Choose <emph>File - Wizards - Letter</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "ODF Master Document"
+msgstr "StarOffice 5.0 Master Dokument"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154758\n"
-"111\n"
+"00000021.xhp\n"
+"par_idN1077D\n"
"help.text"
-msgid "<variable id=\"autopilotbrief1\">Choose <emph>File - Wizards - Letter - Page design</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "*.odm"
+msgstr "%PRODUCTNAME Base (*.odb)"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152360\n"
-"112\n"
+"00000021.xhp\n"
+"par_idN10783\n"
"help.text"
-msgid "<variable id=\"autopilotbrief2\">Choose <emph>File - Wizards - Letter - Letterhead layout</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "HTML Document"
+msgstr "HTML Dokument"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3159413\n"
-"113\n"
+"00000021.xhp\n"
+"par_idN10788\n"
"help.text"
-msgid "<variable id=\"autopilotbrief3\">Choose <emph>File - Wizards - Letter - Printed items</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "*.html"
+msgstr "HTML"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152771\n"
-"114\n"
+"00000021.xhp\n"
+"par_idN1078E\n"
"help.text"
-msgid "<variable id=\"autopilotbrief4\">Choose <emph>File - Wizards - Letter - Recipient and sender</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "HTML Document Template"
+msgstr "HTML Dokument Shabllon"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153524\n"
-"115\n"
+"00000021.xhp\n"
+"par_idN10793\n"
"help.text"
-msgid "<variable id=\"autopilotbrief5\">Choose <emph>File - Wizards - Letter - Footer</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "*.oth"
+msgstr "%PRODUCTNAME Base (*.odb)"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154224\n"
-"116\n"
+"00000021.xhp\n"
+"par_idN10799\n"
"help.text"
-msgid "<variable id=\"autopilotbrief6\">Choose <emph>File - Wizards - Letter - </emph><emph>Name and Location</emph></variable>"
-msgstr ""
+msgid "ODF Spreadsheet"
+msgstr "Titull, Tabelë kalkuluese"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3144760\n"
-"120\n"
+"00000021.xhp\n"
+"par_idN1079E\n"
"help.text"
-msgid "<variable id=\"autopilotfax\">Choose <emph>File - Wizards - Fax</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "*.ods"
+msgstr "%PRODUCTNAME Base (*.odb)"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3147085\n"
-"121\n"
+"00000021.xhp\n"
+"par_idN107A4\n"
"help.text"
-msgid "<variable id=\"autopilotfax1\">Choose <emph>File - Wizards - Fax - Page Design</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "ODF Spreadsheet Template"
+msgstr "Shabllon tabelar OpenDokument"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3151042\n"
-"209\n"
+"00000021.xhp\n"
+"par_idN107A9\n"
"help.text"
-msgid "<variable id=\"autopilotfax2\">Choose <emph>File - Wizards - Fax - Items to include</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "*.ots"
+msgstr "%PRODUCTNAME Base (*.odb)"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154330\n"
-"122\n"
+"00000021.xhp\n"
+"par_idN107AF\n"
"help.text"
-msgid "<variable id=\"autopilotfax3\">Choose <emph>File - Wizards - Fax - Sender and Recipient</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "ODF Drawing"
+msgstr "Vizatim (%PRODUCTNAME 5.0)"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150651\n"
-"123\n"
+"00000021.xhp\n"
+"par_idN107B4\n"
"help.text"
-msgid "<variable id=\"autopilotfax4\">Choose <emph>File - Wizards - Fax - Footer</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "*.odg"
+msgstr "%PRODUCTNAME Base (*.odb)"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154685\n"
-"124\n"
+"00000021.xhp\n"
+"par_idN107BA\n"
"help.text"
-msgid "<variable id=\"autopilotfax5\">Choose <emph>File - Wizards - Fax - Name and location</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "ODF Drawing Template"
+msgstr "OpenDocument Shabllon vizatimi"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153190\n"
-"131\n"
+"00000021.xhp\n"
+"par_idN107BF\n"
"help.text"
-msgid "<variable id=\"autopilotagenda\">Choose <emph>File - Wizards - Agenda</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "*.otg"
+msgstr "%PRODUCTNAME Base (*.odb)"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155860\n"
-"132\n"
+"00000021.xhp\n"
+"par_idN107C5\n"
"help.text"
-msgid "<variable id=\"autopilotagenda1\">Choose <emph>File - Wizards - Agenda - Page Design</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "ODF Presentation"
+msgstr "Stilet e prezantimit"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3146906\n"
-"133\n"
+"00000021.xhp\n"
+"par_idN107CA\n"
"help.text"
-msgid "<variable id=\"autopilotagenda2\">Choose <emph>File - Wizards - Agenda - General Attributes</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "*.odp"
+msgstr "%PRODUCTNAME Base (*.odb)"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152578\n"
-"134\n"
+"00000021.xhp\n"
+"par_idN107D0\n"
"help.text"
-msgid "<variable id=\"autopilotagenda3\">Choose <emph>File - Wizards - Agenda - Headings</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "ODF Presentation Template"
+msgstr "OpenDokument Presentation Templatek"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155368\n"
-"135\n"
+"00000021.xhp\n"
+"par_idN107D5\n"
"help.text"
-msgid "<variable id=\"autopilotagenda4\">Choose <emph>File - Wizards - Agenda - Names</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "*.otp"
+msgstr "%PRODUCTNAME Base (*.odb)"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3146923\n"
-"205\n"
+"00000021.xhp\n"
+"par_idN107DB\n"
"help.text"
-msgid "<variable id=\"autopilotagenda5\">Choose <emph>File - Wizards - Agenda - Topics</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "ODF Formula"
+msgstr "Fontet e formulave"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149066\n"
-"136\n"
+"00000021.xhp\n"
+"par_idN107E0\n"
"help.text"
-msgid "<variable id=\"autopilotagenda6\">Choose <emph>File - Wizards - Agenda - Title and Location</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "*.odf"
+msgstr "%PRODUCTNAME Base (*.odb)"
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149288\n"
-"102\n"
+"00000021.xhp\n"
+"par_idN1085B\n"
"help.text"
-msgid "<variable id=\"dtapt\">Choose <emph>File - Wizards - Presentation</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "ODF Database"
+msgstr "Kolonat e databazës"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3146986\n"
-"103\n"
+"00000021.xhp\n"
+"par_idN10860\n"
"help.text"
-msgid "<variable id=\"dtapse\">Choose <emph>File - Wizards - Presentation - Page 1</emph></variable>"
-msgstr ""
+msgid "*.odb"
+msgstr "%PRODUCTNAME Base (*.odb)"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154919\n"
-"104\n"
+"00000021.xhp\n"
+"par_id9756157\n"
"help.text"
-msgid "<variable id=\"dtapsz\">Choose <emph>File - Wizards - Presentation - Page 2</emph></variable>"
-msgstr ""
+msgid "%PRODUCTNAME Extension"
+msgstr "%PRODUCTNAME %PRODUCTVERSION"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3151351\n"
-"105\n"
+"00000021.xhp\n"
+"par_id2089907\n"
"help.text"
-msgid "<variable id=\"dtapsd\">Choose <emph>File - Wizards - Presentation - Page 3</emph></variable>"
-msgstr ""
+msgid "*.oxt"
+msgstr "%PRODUCTNAME Base (*.odb)"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3147317\n"
-"106\n"
+"00000021.xhp\n"
+"par_idN1088F\n"
"help.text"
-msgid "<variable id=\"dtapsv\">Choose <emph>File - Wizards - Presentation - Page 4</emph></variable>"
-msgstr ""
+msgid "The HTML format is not an OpenDocument format."
+msgstr "Formati i kërkuar i clipbordit nuk është në dispozicion."
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145592\n"
-"107\n"
+"00000021.xhp\n"
+"par_id4818872\n"
"help.text"
-msgid "<variable id=\"dtapsf\">Choose <emph>File - Wizards - Presentation - Page 5</emph></variable>"
+msgid "ODF Chart is the name of the file format for stand alone charts. This format with the extension *.odc is currently not in use."
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN10C46\n"
+"00000021.xhp\n"
+"par_idN107E3\n"
"help.text"
-msgid "<variable id=\"autopilotformular\">Click <emph>Use Wizard to Create Form</emph> in a database file window.</variable>"
+msgid "Evolution of the OpenDocument format"
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN10C5F\n"
+"00000021.xhp\n"
+"par_id0514200811525257\n"
"help.text"
-msgid "<variable id=\"autopilotreport\">Click <emph>Use Wizard to Create Report</emph> in a database file window.</variable>"
+msgid "The OpenDocument format evolves over time."
msgstr ""
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN10C24\n"
+"00000021.xhp\n"
+"par_id0514200811565671\n"
"help.text"
-msgid "<variable id=\"webwizard\">Choose <emph>File - Wizards - Web Page</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "ODF version"
+msgstr "Verzioni i dukshëm"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154064\n"
-"143\n"
+"00000021.xhp\n"
+"par_id0519200811530375\n"
"help.text"
-msgid "<variable id=\"gruppen\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame.</variable>"
+msgid "Date of standard approval by OASIS"
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152807\n"
-"144\n"
+"00000021.xhp\n"
+"par_id0519200811530491\n"
"help.text"
-msgid "<variable id=\"gruppen1\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 1</variable>"
+msgid "First supporting version of the software"
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150571\n"
-"148\n"
+"00000021.xhp\n"
+"par_id0514200811565662\n"
"help.text"
-msgid "<variable id=\"gruppen2\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 2</variable>"
+msgid "ODF 1.0"
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145251\n"
-"145\n"
+"00000021.xhp\n"
+"par_id0519200811530487\n"
"help.text"
-msgid "<variable id=\"gruppen3\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 3</variable>"
-msgstr ""
+msgid "2005-05-01"
+msgstr "Europe/Kaliningrad"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3156109\n"
-"146\n"
+"00000021.xhp\n"
+"par_id0519200811530455\n"
"help.text"
-msgid "<variable id=\"gruppen4\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 4, there must be a database connection.</variable>"
-msgstr ""
+msgid "OpenOffice.org 1.1.5 or StarOffice 7"
+msgstr "http://www.documentfoundation.org"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3159347\n"
-"147\n"
+"00000021.xhp\n"
+"par_id0514200811565787\n"
"help.text"
-msgid "<variable id=\"gruppen5\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - last page of Wizards</variable>"
+msgid "ODF 1.1"
msgstr ""
-#: 00000401.xhp
-#, fuzzy
-msgctxt ""
-"00000401.xhp\n"
-"par_id3153417\n"
-"150\n"
-"help.text"
-msgid "<variable id=\"autopilotmsimport\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
-#, fuzzy
-msgctxt ""
-"00000401.xhp\n"
-"par_id3150715\n"
-"151\n"
-"help.text"
-msgid "<variable id=\"autopilotmsimport1\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
-#, fuzzy
-msgctxt ""
-"00000401.xhp\n"
-"par_id3154274\n"
-"149\n"
-"help.text"
-msgid "<variable id=\"autopilotmsimport2\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3146912\n"
-"171\n"
+"00000021.xhp\n"
+"par_id0519200811530479\n"
"help.text"
-msgid "<variable id=\"euro\">Choose <emph>File - Wizards - Euro Converter</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "2007-02-02"
+msgstr "Asia/Yekaterinburg"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152962\n"
-"198\n"
+"00000021.xhp\n"
+"par_id0519200811530467\n"
"help.text"
-msgid "Menu <emph>File - Wizards - Address Data Source</emph>"
+msgid "OpenOffice.org 2.2 or StarOffice 8 Update 4"
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145206\n"
-"191\n"
+"00000021.xhp\n"
+"par_id0514200811565762\n"
"help.text"
-msgid "<variable id=\"addressimport2\"><emph>Address Data Source Wizards</emph> - <emph>Additional settings</emph></variable>"
+msgid "ODF 1.2"
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154756\n"
-"192\n"
+"00000021.xhp\n"
+"par_id0519200811530440\n"
"help.text"
-msgid "<variable id=\"addressimport3\"><emph>Address Data Source Wizards</emph> - <emph>Select table</emph></variable>"
+msgid "2011-09-30"
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153924\n"
-"193\n"
+"00000021.xhp\n"
+"par_id0519200811530471\n"
"help.text"
-msgid "<variable id=\"addressimport4\"><emph>Address Data Source Wizards</emph><emph>- Data source title</emph></variable>"
+msgid "OpenOffice.org 3, StarOffice 9, Oracle Open Office"
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3148995\n"
-"194\n"
+"00000021.xhp\n"
+"par_id1001200912381153\n"
"help.text"
-msgid "<variable id=\"addressimport5\"><emph>Address Data Source Wizards</emph> - <emph>Field assignment</emph></variable>"
+msgid "ODF 1.2 (Extended)"
msgstr ""
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3147338\n"
-"57\n"
+"00000021.xhp\n"
+"par_id100120091238112\n"
"help.text"
-msgid "<variable id=\"schliessen\">Choose <emph>File - Close</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "-"
+msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3156717\n"
-"10\n"
+"00000021.xhp\n"
+"par_id1001200912381174\n"
"help.text"
-msgid "Choose <emph>File - Save</emph>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "OpenOffice.org 3.2 or StarOffice 9.2"
+msgstr "http://www.documentfoundation.org"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3147533\n"
-"84\n"
+"00000021.xhp\n"
+"par_id0514200811525591\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S"
+msgid "In current versions, you can select to save your documents using ODF 1.2 (default) or ODF 1.0/1.1 (for backward compatibility). Choose <item type=\"menuitem\">Tools - Options - Load/Save - General</item> and select the ODF format version."
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3148930\n"
-"11\n"
+"00000021.xhp\n"
+"par_idN107E9\n"
"help.text"
-msgid "On Standard or Table Data Bar, click"
+msgid "If you want to exchange documents with users that still use OpenOffice.org 1 or StarOffice 7, save the document using the respectively named filter in the <emph>File type</emph> listbox."
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3156712\n"
+"00000021.xhp\n"
+"par_id3146907\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3155939\" src=\"cmd/sc_save.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155939\">Icon</alt></image>"
+msgid "If you want to define another file format as the default, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\" name=\"Load/Save - General\">Load/Save - General</link></emph> to find alternative file formats for each $[officename] document type."
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149109\n"
-"12\n"
+"00000021.xhp\n"
+"hd_id3150398\n"
+"28\n"
"help.text"
-msgid "Save"
-msgstr "Ruaje"
+msgid "XML file structure"
+msgstr "XML-iKalendar-Fajlli"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN10F11\n"
+"00000021.xhp\n"
+"par_id3149649\n"
+"29\n"
"help.text"
-msgid "<image id=\"img_id8276619\" src=\"cmd/sc_saveas.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id8276619\">Icon</alt></image>"
+msgid "Documents in OpenDocument file format are stored as compressed zip archives that contain XML files. To view these XML files, you can open the OpenDocument file with an unzip program. The following files and directories are contained within the OpenDocument files:"
msgstr ""
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_idN10F2E\n"
-"help.text"
-msgid "Save As"
-msgstr "Ruaje si"
-
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150300\n"
-"99\n"
+"00000021.xhp\n"
+"par_id3153178\n"
+"30\n"
"help.text"
-msgid "<variable id=\"htmlspeichern\">$[officename] Draw or $[officename] Impress menu <emph>File - Export</emph>, select \"HTML Document\" file type, this dialog opens automatically</variable>"
+msgid "The text content of the document is located in <emph>content.xml</emph>."
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153387\n"
-"137\n"
+"00000021.xhp\n"
+"par_id3154068\n"
+"31\n"
"help.text"
-msgid "<variable id=\"htmlspeichern1\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 1 of the wizard</variable>"
+msgid "By default, <emph>content.xml</emph> is stored without formatting elements like indentation or line breaks to minimize the time for saving and opening the document. On the <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - General</emph> tab page you can activate the use of indentations and line breaks by clearing the check box <emph>Size optimization for ODF format</emph>."
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154021\n"
-"138\n"
+"00000021.xhp\n"
+"par_id3145152\n"
+"32\n"
"help.text"
-msgid "<variable id=\"htmlspeichern2\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 2 of the wizard</variable>"
+msgid "The file <emph>meta.xml</emph> contains the meta information of the document, which you can enter under <emph>File - Properties</emph>."
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3147246\n"
-"159\n"
+"00000021.xhp\n"
+"par_id3150740\n"
+"33\n"
"help.text"
-msgid "<variable id=\"htmlspeichern3\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 3 of the wizard</variable>"
+msgid "If you save a document with a password, <emph>meta.xml</emph> will not be encrypted."
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145131\n"
-"140\n"
+"00000021.xhp\n"
+"par_id3150391\n"
+"34\n"
"help.text"
-msgid "<variable id=\"htmlspeichern4\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 4 of the wizard</variable>"
+msgid "The file <emph>settings.xml</emph> contains further information about the settings for this document."
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150235\n"
-"141\n"
+"00000021.xhp\n"
+"par_id3150447\n"
+"35\n"
"help.text"
-msgid "<variable id=\"htmlspeichern5\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 5 of the wizard</variable>"
+msgid "In <emph>styles.xml,</emph> you find the styles applied to the document that can be seen in the Styles and Formatting window."
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145762\n"
-"142\n"
+"00000021.xhp\n"
+"par_id3153353\n"
+"36\n"
"help.text"
-msgid "<variable id=\"htmlspeichern6\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 6 of the wizard</variable>"
+msgid "The <emph>meta-inf/manifest.xml</emph> file describes the structure of the XML file."
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149735\n"
+"00000021.xhp\n"
+"par_id3153368\n"
+"37\n"
"help.text"
-msgid "<variable id=\"exportgraphic\">Choose <emph>File - Export</emph>, select a graphics file type, dialog opens automatically</variable>"
+msgid "Additional files and folders can be contained in the packed file format."
msgstr ""
-#: 00000401.xhp
-#, fuzzy
-msgctxt ""
-"00000401.xhp\n"
-"par_id3154901\n"
-"58\n"
-"help.text"
-msgid "<variable id=\"saveall\">Choose <emph>File - Save All</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
-#, fuzzy
-msgctxt ""
-"00000401.xhp\n"
-"par_id3152479\n"
-"59\n"
-"help.text"
-msgid "<variable id=\"saveas\">Choose <emph>File - Save As</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3148392\n"
-"60\n"
-"help.text"
-msgid "Choose <emph>File - Reload</emph>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
-#, fuzzy
-msgctxt ""
-"00000401.xhp\n"
-"par_id3166425\n"
-"61\n"
-"help.text"
-msgid "<variable id=\"info1\">Choose <emph>File - Properties</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
-#, fuzzy
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150381\n"
-"62\n"
+"00000021.xhp\n"
+"hd_id3154299\n"
+"38\n"
"help.text"
-msgid "<variable id=\"info2\">Choose <emph>File - Properties - General</emph> tab</variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "Definition of the XML formats"
+msgstr "Formatet për Qelitë"
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN11163\n"
+"00000021.xhp\n"
+"par_idN10AAD\n"
"help.text"
-msgid "Choose <emph>File - Digital Signatures</emph>"
+msgid "The schema for the OpenDocument formats can be found on the <link href=\"http://www.oasis-open.org\">www.oasis-open.org</link> web site."
msgstr ""
-#: 00000401.xhp
+#: 00000021.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN11168\n"
+"00000021.xhp\n"
+"par_idN10AC5\n"
"help.text"
-msgid "Choose <emph>Tools - Macros - Digital Signature</emph>"
+msgid "<link href=\"text/shared/autopi/01130000.xhp\">Document Converter Wizard</link>"
msgstr ""
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN11156\n"
+"00000099.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph>File - Properties - General</emph> tab, click <emph>Digital Signatures</emph> button"
+msgid "See also..."
msgstr ""
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN1117E\n"
+"00000099.xhp\n"
+"hd_id3147527\n"
+"1\n"
"help.text"
-msgid "Double-click the Signature field on the Status Bar."
+msgid "<variable id=\"siehe\">See also... </variable>"
msgstr ""
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN11173\n"
+"00000099.xhp\n"
+"par_id3143206\n"
+"71\n"
"help.text"
-msgid "<variable id=\"digitalsigsel\">Choose <emph>File - Properties - General</emph> tab, click <emph>Digital Signatures</emph> button, then click <emph>Add</emph> button</variable>"
+msgid "<variable id=\"userszenarien\"><link href=\"text/scalc/01/06050000.xhp\" name=\"Tools Menu - Scenarios\">Tools Menu - Scenarios</link></variable>"
msgstr ""
-#: 00000401.xhp
-#, fuzzy
-msgctxt ""
-"00000401.xhp\n"
-"par_id3150662\n"
-"63\n"
-"help.text"
-msgid "<variable id=\"info3\">Choose <emph>File - Properties - Description</emph> tab</variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
-#, fuzzy
-msgctxt ""
-"00000401.xhp\n"
-"par_id3153792\n"
-"64\n"
-"help.text"
-msgid "<variable id=\"info4\">Choose <emph>File - Properties - Custom Properties</emph> tab</variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
-#, fuzzy
-msgctxt ""
-"00000401.xhp\n"
-"par_id3153701\n"
-"65\n"
-"help.text"
-msgid "<variable id=\"info5\">Choose <emph>File - Properties - Statistics</emph> tab</variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
-#, fuzzy
-msgctxt ""
-"00000401.xhp\n"
-"par_id315370199\n"
-"help.text"
-msgid "<variable id=\"infosec\">Choose <emph>File - Properties - Security</emph> tab</variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
-#, fuzzy
-msgctxt ""
-"00000401.xhp\n"
-"par_id3149570\n"
-"66\n"
-"help.text"
-msgid "<variable id=\"info6\">Choose <emph>File - Properties - Internet</emph> tab</variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
-#, fuzzy
-msgctxt ""
-"00000401.xhp\n"
-"par_id3154275\n"
-"67\n"
-"help.text"
-msgid "<variable id=\"dokuvorlage\">Choose <emph>File - Templates</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
-#, fuzzy
-msgctxt ""
-"00000401.xhp\n"
-"par_id3153199\n"
-"68\n"
-"help.text"
-msgid "<variable id=\"verwalten\">Choose <emph>File - Templates - Organize</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3157970\n"
-"176\n"
+"00000099.xhp\n"
+"par_id3156069\n"
+"83\n"
"help.text"
-msgid "Choose <emph>File - Templates - Organize - Address Book</emph> button"
+msgid "On the help page for <link href=\"text/shared/guide/main.xhp\" name=\"$[officename] general\">$[officename] general</link> you can find instructions that are applicable to all modules, such as working with windows and menus, customizing $[officename], data sources, Gallery, and drag and drop."
msgstr ""
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155377\n"
-"178\n"
+"00000099.xhp\n"
+"par_id3149662\n"
+"84\n"
"help.text"
-msgid "Choose <emph>File - Templates - Address Book Source</emph>"
+msgid "If you want help with another module, switch to the help for that module with the combo box in the navigation area."
msgstr ""
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154386\n"
-"177\n"
+"00000099.xhp\n"
+"par_id3154408\n"
+"85\n"
"help.text"
-msgid "Menu <emph>File - Templates - Address Book Source, </emph>then <emph>Configure</emph> button"
+msgid "<variable id=\"winmanager\">The availability of this function depends on your X Window Manager. </variable>"
msgstr ""
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154323\n"
-"189\n"
+"00000099.xhp\n"
+"par_idN10632\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>View</emph> - <emph>Data sources</emph></caseinline><caseinline select=\"CALC\">Choose <emph>View</emph> - <emph>Data sources</emph></caseinline></switchinline>"
+msgid "<ahelp hid=\".uno:HelperDialog\">Allows you to activate the automatic Help Agent. You can also activate the Help Agent through <emph>$[officename] - General - Help Agent</emph> in the Options dialog box.</ahelp>"
msgstr ""
-#: 00000401.xhp
-#, fuzzy
-msgctxt ""
-"00000401.xhp\n"
-"par_id3150516\n"
-"172\n"
-"help.text"
-msgid "<variable id=\"dokuspei\">Choose <emph>File - Templates - Save</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
-#, fuzzy
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149917\n"
-"173\n"
+"00000099.xhp\n"
+"par_idN10665\n"
"help.text"
-msgid "<variable id=\"dokubear\">Choose <emph>File - Templates - Edit</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "<ahelp hid=\".uno:HelpTip\">Enables the display of icon names at the mouse pointer and other Help contents.</ahelp>"
+msgstr ""
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3154930\n"
-"69\n"
+"00000099.xhp\n"
+"par_idN1067C\n"
"help.text"
-msgid "Menu<emph> File - Page Preview</emph>"
-msgstr "Pop-up menyja e shikimit paraprak të faqes"
+msgid "<ahelp hid=\".uno:ActiveHelp\">Enables the display of a brief description of menus and icons at the mouse pointer.</ahelp>"
+msgstr ""
-#: 00000401.xhp
+#: 00000099.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN11366\n"
+"00000099.xhp\n"
+"par_id6200750\n"
"help.text"
-msgid "<image id=\"img_id2603534\" src=\"cmd/sc_printpreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id2603534\">Icon</alt></image>"
+msgid "Some of the shortcut keys may be assigned to your desktop system. Keys that are assigned to the desktop system are not available to %PRODUCTNAME. Try to assign different keys either for %PRODUCTNAME, in <emph>Tools - Customize - Keyboard</emph>, or in your desktop system."
msgstr ""
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN11384\n"
+"00000200.xhp\n"
+"tit\n"
"help.text"
-msgid "Page Preview"
-msgstr "Shkimi praprak i faqes"
+msgid "Graphics Export Options"
+msgstr "EPS Import/Eksport Filteri"
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3163722\n"
-"70\n"
+"00000200.xhp\n"
+"hd_id3150127\n"
"help.text"
-msgid "Choose <emph>File - Printer Settings</emph>"
-msgstr ""
+msgid "Graphics Export Options"
+msgstr "EPS Import/Eksport Filteri"
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3148752\n"
-"71\n"
+"00000200.xhp\n"
+"par_id3160463\n"
"help.text"
-msgid "Choose <emph>File - Templates - Organize - Commands (button)- Printer Settings</emph>"
+msgid "<ahelp hid=\".\" visibility=\"visible\">Defines graphics export options.</ahelp>"
msgstr ""
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155529\n"
-"17\n"
+"00000200.xhp\n"
+"par_id1\n"
"help.text"
-msgid "<variable id=\"senden\">Menu<emph> File - Send</emph></variable>"
+msgid "When you export graphical elements to a file, you can select the file type. For most supported file types a dialog opens where you can setup export options."
msgstr ""
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145386\n"
-"18\n"
+"00000200.xhp\n"
+"par_id2\n"
"help.text"
-msgid "Choose <emph>File - Send - Document as E-mail</emph>"
+msgid "The following file types do not show an options dialog: PWP, RAS, SVG, TIFF, XPM."
msgstr ""
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_idN113AB\n"
+"00000200.xhp\n"
+"par_id3\n"
"help.text"
-msgid "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4044007\">Icon</alt></image>"
+msgid "The other file types show options dialogs where you can set the width and height of the exported image."
msgstr ""
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_idN113C8\n"
-"help.text"
-msgid "Document as E-mail"
-msgstr "Dokumenti si E-mail..."
-
-#: 00000401.xhp
-#, fuzzy
-msgctxt ""
-"00000401.xhp\n"
-"par_id3145269\n"
-"222\n"
-"help.text"
-msgid "<variable id=\"export\">Choose <emph>File - Export</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3166421\n"
-"219\n"
-"help.text"
-msgid "Choose <emph>File - Export as PDF</emph>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150521\n"
+"00000200.xhp\n"
+"par_id4\n"
"help.text"
-msgid "<image id=\"img_id3147306\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3147306\">Icon</alt></image>"
+msgid "Depending on the file type, you can specify some more options. Press Shift+F1 and hover over the control to see an extended help text."
msgstr ""
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155763\n"
-"220\n"
+"00000200.xhp\n"
+"par_id388\n"
"help.text"
-msgid "Export Directly as PDF"
-msgstr "Eksporto drejtpërdrejt si PDF"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies the measurement units.</ahelp>"
+msgstr ""
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145410\n"
-"210\n"
+"00000200.xhp\n"
+"hd_id3151330\n"
"help.text"
-msgid "Choose <emph>File - Send - E-mail as PDF</emph>"
-msgstr ""
+msgid "Width"
+msgstr "Gjerësia"
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3159160\n"
-"74\n"
+"00000200.xhp\n"
+"par_id3154561\n"
"help.text"
-msgid "<variable id=\"glo\">Choose <emph>File - Send - Create Master Document</emph></variable>"
+msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the width.</ahelp>"
msgstr ""
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3149951\n"
-"13\n"
+"00000200.xhp\n"
+"hd_id3156027\n"
"help.text"
-msgid "Choose <emph>File - Print</emph>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "Height"
+msgstr "Lartësia"
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155259\n"
-"85\n"
+"00000200.xhp\n"
+"par_id3147226\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P"
+msgid "<ahelp hid=\".\" visibility=\"visible\">Specifies the height.</ahelp>"
msgstr ""
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153830\n"
-"3\n"
+"00000200.xhp\n"
+"hd_id3150944\n"
"help.text"
-msgid "On Standard Bar, click"
-msgstr "Shiriti i Funksionit kyçur/çkyçur"
+msgid "Resolution"
+msgstr "Rezolucioni"
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3155187\n"
+"00000200.xhp\n"
+"par_id3150129\n"
"help.text"
-msgid "<image id=\"img_id3153318\" src=\"cmd/sc_print.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3153318\">Icon</alt></image>"
+msgid "<ahelp hid=\".\">Enter the image resolution. Select the measurement units from the list box.</ahelp>"
msgstr ""
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3151268\n"
-"4\n"
+"00000200.xhp\n"
+"hd_id3143534\n"
"help.text"
-msgid "Print File Directly"
-msgstr "Printo fajllin drejtpërdrejt"
+msgid "More options"
+msgstr "Shiriti i opcioneve"
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153581\n"
-"5\n"
+"00000200.xhp\n"
+"par_id10\n"
"help.text"
-msgid "On the <emph>Page View</emph><emph>Bar</emph> of a text document, click"
+msgid "For JPEG files you can set the color depth and the quality."
msgstr ""
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3153068\n"
+"00000200.xhp\n"
+"par_id435923952\n"
"help.text"
-msgid "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155362\">Icon</alt></image>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the color depth from 8 bit grayscale or 24 bit true color.</ahelp>"
msgstr ""
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3151239\n"
-"6\n"
-"help.text"
-msgid "Print Page Preview"
-msgstr "~Shikimi Paraprak i Thyerjes së Faqes"
-
-#: 00000401.xhp
-msgctxt ""
-"00000401.xhp\n"
-"par_id3155869\n"
-"72\n"
-"help.text"
-msgid "Choose <emph>File - Exit</emph>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3152382\n"
-"86\n"
+"00000200.xhp\n"
+"par_id355152952\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the compression for the export. A high compression means a smaller, but slower to load image.</ahelp>"
msgstr ""
-#: 00000401.xhp
-#, fuzzy
-msgctxt ""
-"00000401.xhp\n"
-"par_id3149328\n"
-"75\n"
-"help.text"
-msgid "<variable id=\"neuglobal\">Choose <emph>File - New - Master Document</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145827\n"
-"76\n"
+"00000200.xhp\n"
+"par_id355152953\n"
"help.text"
-msgid "Choose <emph>File - Open</emph> - select under \"File type\": \"Text CSV\""
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Sets the quality for the export. Choose from a low quality with minimal file size, up to a high quality and big file size</ahelp>"
msgstr ""
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id6071352\n"
+"00000200.xhp\n"
+"par_id11\n"
"help.text"
-msgid "Choose <emph>Data - Text to Columns</emph> (Calc)"
+msgid "For BMP files you can set the compression and the RLE encoding."
msgstr ""
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3148608\n"
-"81\n"
+"00000200.xhp\n"
+"par_id312346798\n"
"help.text"
-msgid "<variable id=\"epsexport\">Choose <emph>File - Export</emph>, if EPS is selected as file type, this dialog opens automatically</variable>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies RLE (Run Length Encoding) to the BMP graphics.</ahelp>"
msgstr ""
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3150107\n"
-"87\n"
+"00000200.xhp\n"
+"par_id12\n"
"help.text"
-msgid "<variable id=\"pbmppmpgm\">Choose <emph>File - Export</emph>, if PBM, PPM or PGM is selected as file type, the dialog opens automatically</variable>"
+msgid "For PBM, PGM, and PPM files you can set the encoding."
msgstr ""
-#: 00000401.xhp
+#: 00000200.xhp
msgctxt ""
-"00000401.xhp\n"
-"par_id3145305\n"
-"96\n"
+"00000200.xhp\n"
+"par_id344441\n"
"help.text"
-msgid "<variable id=\"versionen\"><variable id=\"autopilotberichtfeldauswahl\">Choose <emph>File - Versions</emph></variable></variable>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in binary format. The resulting file is smaller than a text file.</ahelp>"
msgstr ""
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"tit\n"
-"help.text"
-msgid "Insert Menu"
-msgstr "AutoPilot Meny"
-
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"hd_id3156324\n"
-"1\n"
-"help.text"
-msgid "Insert Menu"
-msgstr "AutoPilot Meny"
-
-#: 00000404.xhp
-#, fuzzy
-msgctxt ""
-"00000404.xhp\n"
-"par_id3153808\n"
-"28\n"
-"help.text"
-msgid "<variable id=\"notiz\">Choose <emph>Insert - Comment</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3155619\n"
-"71\n"
-"help.text"
-msgid "Choose <emph>Insert - Picture - Scan</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3150502\n"
-"30\n"
-"help.text"
-msgid "Choose <emph>Insert - Picture - Scan - Select Source</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3155934\n"
-"32\n"
-"help.text"
-msgid "Choose <emph>Insert - Picture - Scan - Request</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3143281\n"
-"34\n"
-"help.text"
-msgid "Choose <emph>Insert - Special Character</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3149525\n"
-"35\n"
+"00000200.xhp\n"
+"par_id3555783\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button</caseinline></switchinline>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in ASCII text format. The resulting file is larger than a binary file.</ahelp>"
msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3152372\n"
-"55\n"
+"00000200.xhp\n"
+"par_id13\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button</caseinline></switchinline>"
+msgid "For PNG files you can set the compression and the interlaced mode."
msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3156560\n"
-"36\n"
+"00000200.xhp\n"
+"par_id35674840\n"
"help.text"
-msgid "Open the <emph>Insert</emph> toolbar, click"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the graphic is to be saved in interlaced mode.</ahelp>"
msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3153527\n"
+"00000200.xhp\n"
+"par_id14\n"
"help.text"
-msgid "<image id=\"img_id3153748\" src=\"cmd/sc_bullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153748\">Icon</alt></image>"
+msgid "For GIF files you can set the transparency and the interlaced mode."
msgstr ""
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3149751\n"
-"37\n"
-"help.text"
-msgid "Special Character"
-msgstr "karakter special"
-
-#: 00000404.xhp
-#, fuzzy
-msgctxt ""
-"00000404.xhp\n"
-"par_idN107CD\n"
-"help.text"
-msgid "<variable id=\"moviesound\">Choose <emph>Insert - Movie and Sound</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_idN1085D\n"
-"help.text"
-msgid "Movie and Sound"
-msgstr "Fil~mi dhevZëri"
-
-#: 00000404.xhp
-#, fuzzy
-msgctxt ""
-"00000404.xhp\n"
-"par_id3147242\n"
-"5\n"
-"help.text"
-msgid "<variable id=\"objekteinf\">Choose <emph>Insert - Object</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3152996\n"
-"6\n"
-"help.text"
-msgid "Choose <emph>Insert - Object - OLE Object</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3146806\n"
-"7\n"
+"00000200.xhp\n"
+"par_id31456456938\n"
"help.text"
-msgid "Open the <emph>Insert</emph> toolbar, click"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to save the background of the picture as transparent. Only objects will be visible in the GIF image. Use the Color Replacer to set the transparent color in the picture.</ahelp>"
msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3150254\n"
+"00000200.xhp\n"
+"par_id15\n"
"help.text"
-msgid "<image id=\"img_id3156305\" src=\"cmd/sc_insobjctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156305\">Icon</alt></image>"
+msgid "For EPS files you can set the preview, the color format, the compression, and the version."
msgstr ""
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3145417\n"
-"8\n"
-"help.text"
-msgid "OLE Object"
-msgstr "OLE objekt"
-
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3153087\n"
-"9\n"
+"00000200.xhp\n"
+"par_id3147779948\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Choose <emph>Insert - Object - Plug-in</emph></caseinline></switchinline>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">You must print an EPS file with a PostScript printer. Other printers will only print the embedded preview.</caseinline></switchinline>"
msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3149785\n"
-"10\n"
+"00000200.xhp\n"
+"par_id993155271\n"
"help.text"
-msgid "Open the <emph>Insert </emph>toolbar, click"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether a preview image is exported in the TIFF format together with the actual PostScript file.</ahelp>"
msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3154897\n"
+"00000200.xhp\n"
+"par_id993144740\n"
+"30\n"
"help.text"
-msgid "<image id=\"img_id3146847\" src=\"cmd/sc_insertplugin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146847\">Icon</alt></image>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether a monochrome preview graphic in EPSI format is exported together with the PostScript file. This format only contains printable characters from the 7-bit ASCII code.</ahelp>"
msgstr ""
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3148474\n"
-"11\n"
-"help.text"
-msgid "Plug-in"
-msgstr "Lësho në..."
-
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3153880\n"
-"53\n"
-"help.text"
-msgid "Choose <emph>Insert - Object - Sound</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3143278\n"
-"54\n"
-"help.text"
-msgid "Choose <emph>Insert - Object - Video</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3150393\n"
-"15\n"
-"help.text"
-msgid "Choose <emph>Insert - Object - Formula</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3153056\n"
-"16\n"
+"00000200.xhp\n"
+"par_id993150935\n"
+"12\n"
"help.text"
-msgid "Open the <emph>Insert </emph>toolbar, click"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Compression is not available at this level. Select the Level 1 option if your PostScript printer does not offer the capabilities of Level 2.</ahelp>"
msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3148559\n"
+"00000200.xhp\n"
+"par_id993159201\n"
+"14\n"
"help.text"
-msgid "<image id=\"img_id3149933\" src=\"cmd/sc_insertobjectstarmath.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149933\">Icon</alt></image>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Level 2 option if your output device supports colored bitmaps, palette graphics and compressed graphics.</ahelp>"
msgstr ""
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3155858\n"
-"17\n"
-"help.text"
-msgid "Formula"
-msgstr "Formula"
-
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3153144\n"
-"38\n"
-"help.text"
-msgid "Choose <emph>Format - Chart Type</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3147578\n"
-"39\n"
-"help.text"
-msgid "Choose <emph>Insert - Object - Chart </emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3154011\n"
-"40\n"
-"help.text"
-msgid "Choose <emph>Format - Chart Type</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3153573\n"
-"41\n"
-"help.text"
-msgid "Choose <emph>Insert - Object - Chart</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3159179\n"
-"42\n"
-"help.text"
-msgid "Choose <emph>Format - Chart Type</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: 00000404.xhp
-msgctxt ""
-"00000404.xhp\n"
-"par_id3159196\n"
-"43\n"
-"help.text"
-msgid "Choose <emph>Insert - Object - Chart</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
-
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3149664\n"
+"00000200.xhp\n"
+"par_id319947250\n"
"18\n"
"help.text"
-msgid "Choose <emph>Insert - Object - Chart</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in color.</ahelp>"
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3154921\n"
-"19\n"
+"00000200.xhp\n"
+"par_id993147088\n"
+"20\n"
"help.text"
-msgid "Open the <emph>Insert </emph>toolbar, click"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Exports the file in grayscale tones.</ahelp>"
msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3156005\n"
+"00000200.xhp\n"
+"par_id399153683\n"
+"24\n"
"help.text"
-msgid "<image id=\"img_id3153739\" src=\"cmd/sc_drawchart.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153739\">Icon</alt></image>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">LZW compression is the compression of a file into a smaller file using a table-based lookup algorithm.</ahelp>"
msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3145749\n"
-"20\n"
+"00000200.xhp\n"
+"par_id319952780\n"
+"26\n"
"help.text"
-msgid "Chart"
-msgstr "Diagram"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that you do not wish to use compression.</ahelp>"
+msgstr ""
-#: 00000404.xhp
+#: 00000200.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3155513\n"
-"44\n"
+"00000200.xhp\n"
+"par_id3147250\n"
"help.text"
-msgid "Choose <emph>Insert - Picture - From File</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
+msgid "See <link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filter Information\">Import and Export Filter Information</link> for more information about filters."
+msgstr ""
-#: 00000404.xhp
+#: 00000206.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3155308\n"
-"45\n"
+"00000206.xhp\n"
+"tit\n"
"help.text"
-msgid "Open the <emph>Insert</emph> toolbar, click"
+msgid "Dif Import/Export/ Lotus import/ dBASE import"
msgstr ""
-#: 00000404.xhp
+#: 00000206.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3145594\n"
+"00000206.xhp\n"
+"hd_id3155354\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3144764\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icon</alt></image>"
+msgid "Dif Import/Export/ Lotus import/ dBASE import"
msgstr ""
-#: 00000404.xhp
+#: 00000206.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3149960\n"
-"46\n"
+"00000206.xhp\n"
+"par_id3150620\n"
+"4\n"
"help.text"
-msgid "From File"
-msgstr "Nga fajli..."
+msgid "Defines the options for import/export. These dialogs will be automatically shown if the corresponding file type is selected."
+msgstr ""
-#: 00000404.xhp
+#: 00000206.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3150037\n"
-"25\n"
+"00000206.xhp\n"
+"hd_id3149000\n"
+"2\n"
"help.text"
-msgid "Choose <emph>Insert - Floating Frame</emph>"
-msgstr ""
+msgid "Character set"
+msgstr "Komplet karakteresh"
-#: 00000404.xhp
+#: 00000206.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3083281\n"
-"26\n"
+"00000206.xhp\n"
+"par_id3152790\n"
+"5\n"
"help.text"
-msgid "Open the <emph>Insert </emph>toolbar, click"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:LB_FONT\">Select the character set from the options used for import/export.</ahelp>"
msgstr ""
-#: 00000404.xhp
+#: 00000206.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3168607\n"
+"00000206.xhp\n"
+"par_id3152942\n"
+"3\n"
"help.text"
-msgid "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147482\">Icon</alt></image>"
+msgid "For further information regarding filters, refer to the topic: <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">Information about Import and Export Filters</link>."
msgstr ""
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3148588\n"
-"27\n"
+"00000207.xhp\n"
+"tit\n"
"help.text"
-msgid "Floating Frame"
-msgstr "Vendose kornizën lëvizëse"
+msgid "Export text files"
+msgstr "Eksporti i fajleve tekstuale"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_id3150396\n"
-"47\n"
+"00000207.xhp\n"
+"hd_id3153116\n"
+"1\n"
"help.text"
-msgid "<variable id=\"filterauswahl\">Open a file of a type that is unknown to %PRODUCTNAME and that is no text file</variable>"
-msgstr ""
+msgid "Export text files"
+msgstr "Eksporti i fajleve tekstuale"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10DDC\n"
+"00000207.xhp\n"
+"par_id3150379\n"
+"7\n"
"help.text"
-msgid "<image id=\"Graphic2\" src=\"cmd/sc_fontworkgalleryfloater.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgid "The <emph>Export text files</emph> dialog allows you to define the export options for text files. The dialog will be displayed if you save spreadsheet data as file type \"Text CSV\", and if the <emph>Edit filter settings</emph> check box is marked in the <emph>Save As</emph> dialog."
msgstr ""
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10DD1\n"
+"00000207.xhp\n"
+"hd_id3155577\n"
+"2\n"
"help.text"
-msgid "Fontwork Gallery"
-msgstr "Galeria e fonteve"
+msgid "Field options"
+msgstr "Opcionet e fushës"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10EA9\n"
+"00000207.xhp\n"
+"par_id3152427\n"
+"8\n"
"help.text"
-msgid "<image id=\"Graphic3\" src=\"cmd/sc_basicshapes.diamond.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgid "Defines the field separator, text separator and character set that is used for the text export."
msgstr ""
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10ED8\n"
+"00000207.xhp\n"
+"hd_id3152876\n"
+"5\n"
"help.text"
-msgid "Basic Shapes"
-msgstr "Trajtat bazike"
+msgid "Character set"
+msgstr "Komplet karakteresh"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10EEE\n"
+"00000207.xhp\n"
+"par_id3154689\n"
+"11\n"
"help.text"
-msgid "<image id=\"Graphic4\" src=\"cmd/sc_symbolshapes.smiley.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:DDLB_FONT\">Specifies the character set for text export.</ahelp>"
msgstr ""
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10F1D\n"
+"00000207.xhp\n"
+"hd_id3145138\n"
+"3\n"
"help.text"
-msgid "Symbol Shapes"
-msgstr "Trajtat e simboleve"
+msgid "Field delimiter"
+msgstr "~Kufizuesi i fushës"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10F33\n"
+"00000207.xhp\n"
+"par_id3150838\n"
+"9\n"
"help.text"
-msgid "<image id=\"Graphic41\" src=\"cmd/sc_arrowshapes.left-right-arrow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_FIELDSEP\">Choose or enter the field delimiter, which separates data fields.</ahelp>"
msgstr ""
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10F62\n"
+"00000207.xhp\n"
+"hd_id3154682\n"
+"4\n"
"help.text"
-msgid "Block Arrows"
-msgstr "Shigjetat e bllokut"
+msgid "Text delimiter"
+msgstr "~Kufizuesi i tekstit"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10F78\n"
+"00000207.xhp\n"
+"par_id3154863\n"
+"10\n"
"help.text"
-msgid "<image id=\"Graphic5\" src=\"cmd/sc_flowchartshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_TEXTSEP\">Choose or enter the text delimiter, which encloses every data field.</ahelp>"
msgstr ""
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10FA7\n"
+"00000207.xhp\n"
+"hd_id783149793\n"
"help.text"
-msgid "Flowcharts"
-msgstr "Grafikonët e rrjedhjes"
+msgid "Quote all text cells"
+msgstr "Azhuro fushat e hyrjeve"
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10FBD\n"
+"00000207.xhp\n"
+"par_id3152778363\n"
"help.text"
-msgid "<image id=\"Graphic6\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgid "<ahelp hid=\".\">Exports all text cells with leading and trailing quote characters as set in the Text delimiter box. If not checked, only those text cells get quoted that contain the Field delimiter character.</ahelp>"
msgstr ""
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN10FEC\n"
+"00000207.xhp\n"
+"hd_id7145298\n"
"help.text"
-msgid "Callouts"
-msgstr "Thirrjet"
+msgid "Save cell content as shown"
+msgstr ""
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN11002\n"
+"00000207.xhp\n"
+"par_id5719779\n"
"help.text"
-msgid "<image id=\"Graphic7\" src=\"cmd/sc_starshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgid "<ahelp hid=\".\">Enabled by default, data will be saved as displayed, including applied number formats. If this checkbox is not marked, raw data content will be saved, as in older versions of the software.</ahelp>"
msgstr ""
-#: 00000404.xhp
+#: 00000207.xhp
msgctxt ""
-"00000404.xhp\n"
-"par_idN11031\n"
+"00000207.xhp\n"
+"par_id3541062\n"
"help.text"
-msgid "Stars"
-msgstr "Yjet"
+msgid "Depending on the number format, saving cell content as shown may write values that during an import cannot be interpreted as numerical values anymore."
+msgstr ""
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"tit\n"
+"00000207.xhp\n"
+"hd_id3149793\n"
+"12\n"
"help.text"
-msgid "Toolbars"
-msgstr "Shiriti i veglave"
+msgid "Fixed column width"
+msgstr "Gjerësi fikse e ~shtyllës"
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"hd_id3149517\n"
-"1\n"
+"00000207.xhp\n"
+"par_id3152363\n"
+"13\n"
"help.text"
-msgid "Toolbars"
-msgstr "Shiriti i veglave"
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_IMPORTOPT_CB_FIXEDWIDTH\">Exports all data fields with a fixed width.</ahelp>"
+msgstr ""
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"par_id3156053\n"
-"2\n"
+"00000207.xhp\n"
+"par_id3149283\n"
+"14\n"
"help.text"
-msgid "Choose <emph>Data - Filter - Standard Filter</emph>"
+msgid "The width of a data field in the exported text file is set to the current width of the corresponding column."
msgstr ""
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"par_id3154350\n"
-"3\n"
+"00000207.xhp\n"
+"par_id3154116\n"
+"15\n"
"help.text"
-msgid "Database table view: <emph>Standard Filter</emph> icon in the <emph>Database</emph> Toolbar"
+msgid "Values are exported in the format as currently seen in the cell."
msgstr ""
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"par_id3154183\n"
-"4\n"
+"00000207.xhp\n"
+"par_id3156414\n"
+"16\n"
"help.text"
-msgid "Form view: <emph>Standard Filter</emph> icon in the <emph>Form</emph> Bar"
+msgid "If a value is longer than the fixed column width, it will be exported as a ### string."
msgstr ""
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"par_id3155619\n"
+"00000207.xhp\n"
+"par_id3150178\n"
+"17\n"
"help.text"
-msgid "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3147588\"><alt id=\"alt_id3147588\">Icon</alt></image>"
+msgid "If a text string is longer than the fixed column width, it will be truncated at the end."
msgstr ""
-#: 00000409.xhp
+#: 00000207.xhp
msgctxt ""
-"00000409.xhp\n"
-"par_id3148731\n"
-"5\n"
+"00000207.xhp\n"
+"par_id3148548\n"
+"18\n"
"help.text"
-msgid "Standard Filter"
-msgstr "Filtër Standard"
+msgid "The alignment Left, Centered, and Right will be simulated by inserted blanks."
+msgstr ""
#: 00000208.xhp
msgctxt ""
@@ -4508,7 +4805,7 @@ msgctxt ""
"par_id3149987\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"SC:MODALDIALOG:RID_SCDLG_ASCII\">Sets the import options for delimited data.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/TextImportCsvDialog\">Sets the import options for delimited data.</ahelp>"
msgstr ""
#: 00000208.xhp
@@ -4535,11 +4832,10 @@ msgctxt ""
"par_id3149495\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_ASCII:LB_CHARSET\">Specifies the character set to be used in the imported file.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/charset\">Specifies the character set to be used in the imported file.</ahelp>"
msgstr ""
#: 00000208.xhp
-#, fuzzy
msgctxt ""
"00000208.xhp\n"
"hd_id315478899\n"
@@ -4586,7 +4882,7 @@ msgctxt ""
"par_id3150247\n"
"48\n"
"help.text"
-msgid "<ahelp hid=\"SC:NUMERICFIELD:RID_SCDLG_ASCII:NF_AT_ROW\">Specifies the row where you want to start the import.</ahelp> The rows are visible in the preview window at the bottom of the dialog."
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/fromrow\">Specifies the row where you want to start the import.</ahelp> The rows are visible in the preview window at the bottom of the dialog."
msgstr ""
#: 00000208.xhp
@@ -4622,7 +4918,7 @@ msgctxt ""
"par_id3150710\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_ASCII:RB_FIXED\">Separates fixed-width data (equal number of characters) into columns.</ahelp> Click on the ruler in the preview window to set the width."
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/tofixedwidth\">Separates fixed-width data (equal number of characters) into columns.</ahelp> Click on the ruler in the preview window to set the width."
msgstr ""
#: 00000208.xhp
@@ -4640,7 +4936,7 @@ msgctxt ""
"par_id3145136\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_ASCII:RB_SEPARATED\">Select the separator used in your data.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/toseparatedby\">Select the separator used in your data.</ahelp>"
msgstr ""
#: 00000208.xhp
@@ -4658,7 +4954,7 @@ msgctxt ""
"par_id3147576\n"
"50\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_TAB\">Separates data delimited by tabs into columns.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/tab\">Separates data delimited by tabs into columns.</ahelp>"
msgstr ""
#: 00000208.xhp
@@ -4676,7 +4972,7 @@ msgctxt ""
"par_id3157863\n"
"52\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_SEMICOLON\">Separates data delimited by semicolons into columns.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/semicolon\">Separates data delimited by semicolons into columns.</ahelp>"
msgstr ""
#: 00000208.xhp
@@ -4694,7 +4990,7 @@ msgctxt ""
"par_id3150693\n"
"54\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_COMMA\">Separates data delimited by commas into columns.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/comma\">Separates data delimited by commas into columns.</ahelp>"
msgstr ""
#: 00000208.xhp
@@ -4712,7 +5008,7 @@ msgctxt ""
"par_id3153663\n"
"56\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CKB_SPACE\">Separates data delimited by spaces into columns.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/space\">Separates data delimited by spaces into columns.</ahelp>"
msgstr ""
#: 00000208.xhp
@@ -4730,7 +5026,7 @@ msgctxt ""
"par_id3156329\n"
"58\n"
"help.text"
-msgid "<ahelp hid=\"SC:EDIT:RID_SCDLG_ASCII:ED_OTHER\">Separates data into columns using the custom separator that you specify. Note: The custom separator must also be contained in your data.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/inputother\">Separates data into columns using the custom separator that you specify. Note: The custom separator must also be contained in your data.</ahelp>"
msgstr ""
#: 00000208.xhp
@@ -4748,7 +5044,7 @@ msgctxt ""
"par_id3153827\n"
"60\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_ASCII:CB_ASONCE\">Combines consecutive delimiters and removes blank data fields.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/mergedelimiters\">Combines consecutive delimiters and removes blank data fields.</ahelp>"
msgstr ""
#: 00000208.xhp
@@ -4766,7 +5062,7 @@ msgctxt ""
"par_id3156326\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_ASCII:CB_TEXTSEP\">Select a character to delimit text data. You can can also enter a character in the text box.</ahelp>"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/textdelimiter\">Select a character to delimit text data. You can can also enter a character in the text box.</ahelp>"
msgstr ""
#: 00000208.xhp
@@ -4778,7 +5074,6 @@ msgid "Other options"
msgstr "Shiriti i opcioneve"
#: 00000208.xhp
-#, fuzzy
msgctxt ""
"00000208.xhp\n"
"par_id315366511\n"
@@ -4803,7 +5098,6 @@ msgid "<ahelp hid=\".\">When this option is enabled, fields or cells whose value
msgstr ""
#: 00000208.xhp
-#, fuzzy
msgctxt ""
"00000208.xhp\n"
"hd_id314847422\n"
@@ -4868,7 +5162,7 @@ msgctxt ""
"par_id314995725\n"
"24\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_ASCII:LB_TYPE1\">Choose a column in the preview window and select the data type to be applied the imported data.</ahelp> You can select one of the following options:"
+msgid "<ahelp hid=\"modules/scalc/ui/textimportcsv/columntype\">Choose a column in the preview window and select the data type to be applied the imported data.</ahelp> You can select one of the following options:"
msgstr ""
#: 00000208.xhp
@@ -5150,3185 +5444,2856 @@ msgctxt ""
msgid "For more information, see <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">Information about Import and Export Filters</link>."
msgstr ""
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
+"00000210.xhp\n"
"tit\n"
"help.text"
-msgid "View Menu"
-msgstr "AutoPilot Meny"
+msgid "Warning Print Options"
+msgstr "Shtyp opcionet e pamjes së faqes"
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"hd_id3156304\n"
+"00000210.xhp\n"
+"hd_id3145759\n"
"1\n"
"help.text"
-msgid "View Menu"
-msgstr "AutoPilot Meny"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3146936\n"
-"12\n"
-"help.text"
-msgid "Choose <emph>View - Zoom</emph>"
-msgstr "Zgjidh një fjalëkalim për përdoruesin e ri:"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3149962\n"
-"24\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Zoom also with (+) (-) (×) and (÷) on the number keypad </caseinline><caseinline select=\"IMPRESS\">Zoom also with (+) (-) (×) and (÷) on the number keypad </caseinline></switchinline>"
-msgstr ""
+msgid "Warning Print Options"
+msgstr "Shtyp opcionet e pamjes së faqes"
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3152895\n"
-"13\n"
+"00000210.xhp\n"
+"par_id3152352\n"
+"2\n"
"help.text"
-msgid "Double-click or right-click the field on the <emph>Status</emph> Bar"
+msgid "<ahelp hid=\"SD:MODALDIALOG:DLG_PRINT_WARNINGS\">The<emph> Warning Print Options </emph>dialog appears when the page setup does not match the defined print range.</ahelp> This is the case, for example, if you draw a rectangle that is larger than the current page format."
msgstr ""
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3156183\n"
-"36\n"
-"help.text"
-msgid "Choose <emph>View - Toolbars</emph>"
-msgstr "Zgjidh një fjalëkalim për përdoruesin e ri:"
-
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3166445\n"
-"15\n"
+"00000210.xhp\n"
+"hd_id3150620\n"
+"3\n"
"help.text"
-msgid "<variable id=\"funktion\">Choose <emph>View - Toolbars - Standard</emph></variable>"
-msgstr ""
+msgid "Print options"
+msgstr "Opcionet e shtypjes"
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3153748\n"
-"17\n"
+"00000210.xhp\n"
+"hd_id3156324\n"
+"5\n"
"help.text"
-msgid "<variable id=\"werkzeug\">Choose <emph>View - Toolbars - Tools</emph></variable>"
+msgid "Fit page to print range"
msgstr ""
-#: 00000403.xhp
-#, fuzzy
-msgctxt ""
-"00000403.xhp\n"
-"par_id3154317\n"
-"18\n"
-"help.text"
-msgid "<variable id=\"task\">Choose <emph>View - Status Bar</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3152780\n"
-"19\n"
+"00000210.xhp\n"
+"par_id3158405\n"
+"7\n"
"help.text"
-msgid "<variable id=\"farbleiste\">Choose <emph>View - Toolbars - Color Bar</emph></variable>"
+msgid "If you select the <emph>Fit page to print range </emph>option, the <emph>Warning Print Options</emph> dialog will not appear in subsequent print runs of this document."
msgstr ""
-#: 00000403.xhp
-#, fuzzy
-msgctxt ""
-"00000403.xhp\n"
-"par_id3156113\n"
-"43\n"
-"help.text"
-msgid "<variable id=\"ime\">Choose <emph>View - Input Method Status</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3157909\n"
-"32\n"
+"00000210.xhp\n"
+"hd_id3156553\n"
+"8\n"
"help.text"
-msgid "Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Internet</emph>"
-msgstr ""
+msgid "Print on multiple pages"
+msgstr "Shikim paraprak i faqes: faqe të shumëfishta"
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3146806\n"
-"42\n"
+"00000210.xhp\n"
+"par_id3154823\n"
+"9\n"
"help.text"
-msgid "Choose <emph>Insert - Hyperlink</emph>"
+msgid "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_POSTER\">Specifies whether to distribute the printout on multiple pages.</ahelp> The print range will be printed on multiple pages."
msgstr ""
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3153717\n"
-"38\n"
+"00000210.xhp\n"
+"hd_id3147010\n"
+"10\n"
"help.text"
-msgid "<variable id=\"hypdiamailnews\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Mail & News</emph></variable>"
-msgstr ""
+msgid "Trim"
+msgstr "TRIM"
-#: 00000403.xhp
+#: 00000210.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3149415\n"
-"34\n"
+"00000210.xhp\n"
+"par_id3151111\n"
+"11\n"
"help.text"
-msgid "<variable id=\"hypdiadok\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Document</emph></variable>"
+msgid "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_CUT\">Specifies that anything extending beyond the maximum print range will be cut off and not included in the printing.</ahelp>"
msgstr ""
-#: 00000403.xhp
+#: 00000215.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3150129\n"
-"35\n"
+"00000215.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"hypdianeudok\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>New Document</emph></variable>"
-msgstr ""
+msgid "ASCII Filter Options"
+msgstr "ASCII opcionet e filtrimit"
-#: 00000403.xhp
+#: 00000215.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3159269\n"
-"20\n"
+"00000215.xhp\n"
+"hd_id3146856\n"
+"1\n"
"help.text"
-msgid "Choose <emph>View - Full Screen</emph>"
-msgstr "Zgjidh një fjalëkalim për përdoruesin e ri:"
+msgid "ASCII Filter Options"
+msgstr "ASCII opcionet e filtrimit"
-#: 00000403.xhp
+#: 00000215.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3149578\n"
-"25\n"
+"00000215.xhp\n"
+"par_id3153070\n"
+"2\n"
"help.text"
-msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+J"
+msgid "You can specify which options, such as basic font, language, character set, or break, are imported or exported with a text document. The dialog appears when you load an ASCII file with the filter \"Text Encoded\" or when you save the document the first time, or when you \"save as\" with another name."
msgstr ""
-#: 00000403.xhp
+#: 00000215.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3153257\n"
+"00000215.xhp\n"
+"hd_id3159217\n"
+"3\n"
"help.text"
-msgid "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148473\">Icon</alt></image>"
-msgstr ""
+msgid "Properties"
+msgstr "Vetitë"
-#: 00000403.xhp
+#: 00000215.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3153627\n"
-"44\n"
+"00000215.xhp\n"
+"par_id3155577\n"
+"4\n"
"help.text"
-msgid "Full Screen On/Off (in Page Preview)"
+msgid "Defines the settings for importing or exporting your file. When exporting, only the character set and paragraph break can be defined."
msgstr ""
-#: 00000403.xhp
+#: 00000215.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3147559\n"
-"8\n"
+"00000215.xhp\n"
+"hd_id3146959\n"
+"5\n"
"help.text"
-msgid "If a text document or spreadsheet is open:"
-msgstr ""
+msgid "Character set"
+msgstr "Komplet karakteresh"
-#: 00000403.xhp
+#: 00000215.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3145069\n"
-"31\n"
+"00000215.xhp\n"
+"par_id3143206\n"
+"6\n"
"help.text"
-msgid "Menu <emph>View - Data Sources</emph>"
+msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/charset\">Specifies the character set of the file for export or import.</ahelp>"
msgstr ""
-#: 00000403.xhp
+#: 00000215.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3149046\n"
-"28\n"
+"00000215.xhp\n"
+"hd_id3154926\n"
+"7\n"
"help.text"
-msgid "F4 key"
-msgstr "Lloj kyç"
+msgid "Default fonts"
+msgstr "Fontet standarde"
-#: 00000403.xhp
+#: 00000215.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3153778\n"
+"00000215.xhp\n"
+"par_id3151262\n"
+"8\n"
"help.text"
-msgid "<image id=\"img_id3153524\" src=\"cmd/sc_viewdatasourcebrowser.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153524\">Icon</alt></image>"
+msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/font\">By setting a default font, you specify that the text should be displayed in a specific font. The default fonts can only be selected when importing.</ahelp>"
msgstr ""
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3146908\n"
-"39\n"
-"help.text"
-msgid "Data Sources"
-msgstr "Burimet e të dhënave"
-
-#: 00000403.xhp
+#: 00000215.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3154140\n"
+"00000215.xhp\n"
+"hd_id3154894\n"
"9\n"
"help.text"
-msgid "Choose <emph>View - HTML Source</emph>"
-msgstr "Zgjidh një fjalëkalim për përdoruesin e ri:"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_id3154947\n"
-"23\n"
-"help.text"
-msgid "Open context menu in an HTML document"
-msgstr ""
+msgid "Language"
+msgstr "Gjuhë"
-#: 00000403.xhp
+#: 00000215.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3152935\n"
+"00000215.xhp\n"
+"par_id3153323\n"
+"10\n"
"help.text"
-msgid "<image id=\"img_id3156422\" src=\"cmd/sc_sourceview.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156422\">Icon</alt></image>"
+msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/language\">Specifies the language of the text, if this has not already been defined. This setting is only available when importing.</ahelp>"
msgstr ""
-#: 00000403.xhp
+#: 00000215.xhp
msgctxt ""
-"00000403.xhp\n"
-"par_id3144448\n"
+"00000215.xhp\n"
+"hd_id3147143\n"
"11\n"
"help.text"
-msgid "HTML Source"
-msgstr "Kod i HTML-së"
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_idN1091B\n"
-"help.text"
-msgid "<variable id=\"grid\">Choose <emph>View - Grid</emph> (Impress or Draw) </variable>"
-msgstr ""
-
-#: 00000403.xhp
-msgctxt ""
-"00000403.xhp\n"
-"par_idN1092E\n"
-"help.text"
-msgid "<variable id=\"guides\">Choose <emph>View - Snap Lines</emph> (Impress or Draw) </variable>"
-msgstr ""
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Showing and Hiding Docked Windows"
-msgstr ""
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"hd_id3085157\n"
-"1\n"
-"help.text"
-msgid "Showing and Hiding Docked Windows"
-msgstr ""
-
-#: 01000000.xhp
-msgctxt ""
-"01000000.xhp\n"
-"par_id3149948\n"
-"2\n"
-"help.text"
-msgid "Every <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"docked\">docked</link> window has an icon to control the display properties of the window."
-msgstr ""
+msgid "Paragraph break"
+msgstr "Ndërprerja e paragrafit"
-#: 01000000.xhp
+#: 00000215.xhp
msgctxt ""
-"01000000.xhp\n"
-"par_id3150502\n"
-"3\n"
+"00000215.xhp\n"
+"par_id3143281\n"
+"12\n"
"help.text"
-msgid "To show or hide a docked window, click the icon."
+msgid "Defines the type of paragraph break for a text line."
msgstr ""
-#: 01000000.xhp
+#: 00000215.xhp
msgctxt ""
-"01000000.xhp\n"
-"hd_id3150465\n"
+"00000215.xhp\n"
+"hd_id3150935\n"
"13\n"
"help.text"
-msgid "AutoShow and AutoHide Docked Windows"
-msgstr ""
+msgid "CR & LF"
+msgstr "CR & LF"
-#: 01000000.xhp
+#: 00000215.xhp
msgctxt ""
-"01000000.xhp\n"
-"par_id3155504\n"
+"00000215.xhp\n"
+"par_id3145829\n"
"14\n"
"help.text"
-msgid "You can click the edge of a hidden docked window to open the window."
+msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/crlf\">Produces a \"Carriage Return\" and a \"Linefeed\". This option is the default.</ahelp>"
msgstr ""
-#: 01000000.xhp
+#: 00000215.xhp
msgctxt ""
-"01000000.xhp\n"
-"par_id3153257\n"
+"00000215.xhp\n"
+"hd_id3153551\n"
"15\n"
"help.text"
-msgid "The docked window closes automatically when you move the mouse pointer outside of the window."
-msgstr ""
+msgid "CR"
+msgstr "CR & LF"
-#: 01000000.xhp
+#: 00000215.xhp
msgctxt ""
-"01000000.xhp\n"
-"par_id3154046\n"
+"00000215.xhp\n"
+"par_id3156042\n"
"16\n"
"help.text"
-msgid "Multiple docked windows act as a single window in AutoShow/AutoHide mode."
+msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/cr\">Produces a \"Carriage Return\" as the paragraph break.</ahelp>"
msgstr ""
-#: 01000000.xhp
+#: 00000215.xhp
msgctxt ""
-"01000000.xhp\n"
-"hd_id3145416\n"
-"18\n"
+"00000215.xhp\n"
+"hd_id3150713\n"
+"17\n"
"help.text"
-msgid "Drag and Drop"
-msgstr "Tërhiq dhe Lësho"
+msgid "LF"
+msgstr "LF"
-#: 01000000.xhp
+#: 00000215.xhp
msgctxt ""
-"01000000.xhp\n"
-"par_id3149578\n"
-"19\n"
+"00000215.xhp\n"
+"par_id3145090\n"
+"18\n"
"help.text"
-msgid "If you drag an object over the edge of a hidden docked window, the window opens in AutoShow mode."
+msgid "<ahelp hid=\"modules/swriter/ui/asciifilterdialog/lf\">Produces a \"Linefeed\" as the paragraph break.</ahelp>"
msgstr ""
-#: 01050000.xhp
+#: 00000401.xhp
msgctxt ""
-"01050000.xhp\n"
+"00000401.xhp\n"
"tit\n"
"help.text"
-msgid "General"
-msgstr "Të përgjithshme"
+msgid "File Menu"
+msgstr "AutoPilot Meny"
-#: 01050000.xhp
+#: 00000401.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3158397\n"
+"00000401.xhp\n"
+"hd_id3149976\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/00/01050000.xhp\" name=\"General\">General</link>"
-msgstr ""
+msgid "File Menu"
+msgstr "AutoPilot Meny"
-#: 01050000.xhp
+#: 00000401.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3159242\n"
-"2\n"
+"00000401.xhp\n"
+"par_id389416\n"
"help.text"
-msgid "<ahelp hid=\".\">The<emph> General </emph>tab page lists the general properties of the current theme.</ahelp>"
+msgid "<variable id=\"webhtml\">Choose <emph>File - Preview in Web Browser</emph></variable>"
msgstr ""
-#: 01050000.xhp
+#: 00000401.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3150264\n"
-"3\n"
+"00000401.xhp\n"
+"par_id3154812\n"
+"50\n"
"help.text"
-msgid "Name"
-msgstr "Emri"
+msgid "Choose <emph>File - New</emph>"
+msgstr "Zgjidh një fjalëkalim për përdoruesin e ri:"
-#: 01050000.xhp
+#: 00000401.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3154094\n"
-"4\n"
+"00000401.xhp\n"
+"par_id3153070\n"
+"186\n"
"help.text"
-msgid "<ahelp hid=\"SVX_EDIT_RID_SVXTABPAGE_GALLERY_GENERAL_EDT_MS_NAME\">Displays the name of the theme.</ahelp> If no name has been assigned, you can type a new name in the text box."
+msgid "<emph>New</emph> icon on the <emph>Standard</emph> Bar (the icon shows the type of the new document)"
msgstr ""
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3147089\n"
-"5\n"
-"help.text"
-msgid "Type"
-msgstr "Tipi"
-
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"par_id3145071\n"
-"6\n"
-"help.text"
-msgid "Specifies the object type."
-msgstr "Vargu që përcakton llojin e informatës."
-
-#: 01050000.xhp
-msgctxt ""
-"01050000.xhp\n"
-"hd_id3147576\n"
-"7\n"
-"help.text"
-msgid "Location"
-msgstr "Lokacioni"
-
-#: 01050000.xhp
+#: 00000401.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3146797\n"
-"8\n"
+"00000401.xhp\n"
+"par_id3150127\n"
"help.text"
-msgid "Specifies the complete object path."
+msgid "<image id=\"img_id3156053\" src=\"res/sx03251.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3156053\">Icon</alt></image>"
msgstr ""
-#: 00000007.xhp
-msgctxt ""
-"00000007.xhp\n"
-"tit\n"
-"help.text"
-msgid "Toolbars"
-msgstr "Shiriti i veglave"
-
-#: 00000007.xhp
-msgctxt ""
-"00000007.xhp\n"
-"hd_id3155620\n"
-"1\n"
-"help.text"
-msgid "Toolbars"
-msgstr "Shiriti i veglave"
-
-#: 00000007.xhp
+#: 00000401.xhp
msgctxt ""
-"00000007.xhp\n"
-"par_id3152823\n"
-"4\n"
+"00000401.xhp\n"
+"par_id3154232\n"
+"199\n"
"help.text"
-msgid "<variable id=\"werkzeugleiste\">Icon on the Tools bar: </variable>"
-msgstr ""
+msgid "New"
+msgstr "E re"
-#: 00000007.xhp
+#: 00000401.xhp
msgctxt ""
-"00000007.xhp\n"
-"par_id3152352\n"
-"5\n"
+"00000401.xhp\n"
+"par_id3154894\n"
+"179\n"
"help.text"
-msgid "<variable id=\"textobjektleiste\">Icon on the Formatting Bar: </variable>"
+msgid "Key <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
msgstr ""
-#: 00000007.xhp
+#: 00000401.xhp
msgctxt ""
-"00000007.xhp\n"
-"par_id3151370\n"
-"7\n"
+"00000401.xhp\n"
+"par_id3157898\n"
+"82\n"
"help.text"
-msgid "<variable id=\"objektleiste\">Icon on the Formatting Bar: </variable>"
+msgid "Menu <emph>File - New</emph><emph>- Templates</emph>."
msgstr ""
-#: 00000007.xhp
+#: 00000401.xhp
msgctxt ""
-"00000007.xhp\n"
-"par_id3149748\n"
-"9\n"
+"00000401.xhp\n"
+"par_id3149140\n"
+"187\n"
"help.text"
-msgid "<variable id=\"diaobjektleiste\">Icon on the Slide View Bar: </variable>"
+msgid "Key Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N"
msgstr ""
-#: 00000007.xhp
+#: 00000401.xhp
msgctxt ""
-"00000007.xhp\n"
-"par_id3156553\n"
-"10\n"
+"00000401.xhp\n"
+"par_id3149798\n"
+"160\n"
"help.text"
-msgid "<variable id=\"symbolleistenneu\">This overview describes the default toolbar configuration for $[officename].</variable>"
-msgstr ""
+msgid "<variable id=\"etiketten\">Choose <emph>File - New - Labels</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000007.xhp
+#: 00000401.xhp
msgctxt ""
-"00000007.xhp\n"
-"par_id3153551\n"
-"11\n"
+"00000401.xhp\n"
+"par_id3147226\n"
+"161\n"
"help.text"
-msgid "Asian Language Support"
-msgstr "Gjuha e fonteve Aziatike"
+msgid "<variable id=\"etikettenein\">Choose <emph>File - New - Labels - Labels</emph> tab</variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000007.xhp
+#: 00000401.xhp
msgctxt ""
-"00000007.xhp\n"
-"par_id3156326\n"
-"12\n"
+"00000401.xhp\n"
+"par_id3154522\n"
+"162\n"
"help.text"
-msgid "These commands can only be accessed after you enable support for Asian languages in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>."
+msgid "Choose <emph>File - New - Labels - Format</emph> tab"
msgstr ""
-#: 00000020.xhp
-msgctxt ""
-"00000020.xhp\n"
-"tit\n"
-"help.text"
-msgid "About Import and Export Filters"
-msgstr "Portable bitmap Import/Eksport filterët"
-
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"bm_id3152952\n"
+"00000401.xhp\n"
+"par_id3154983\n"
+"163\n"
"help.text"
-msgid "<bookmark_value>import filters</bookmark_value><bookmark_value>export filters</bookmark_value><bookmark_value>filters; for import and export</bookmark_value><bookmark_value>files; filters and formats</bookmark_value><bookmark_value>formats; on opening and saving</bookmark_value><bookmark_value>importing; HTML and text documents</bookmark_value><bookmark_value>exporting;HTML and text documents</bookmark_value><bookmark_value>text documents; importing/exporting</bookmark_value><bookmark_value>HTML documents; importing/exporting</bookmark_value><bookmark_value>UTF-8/UCS2 support</bookmark_value><bookmark_value>HTML; export character set</bookmark_value><bookmark_value>PostScript; creating files</bookmark_value><bookmark_value>exporting;to PostScript format</bookmark_value>"
+msgid "Choose <emph>File - New - Business Cards - Format</emph> tab"
msgstr ""
-#: 00000020.xhp
-msgctxt ""
-"00000020.xhp\n"
-"hd_id3152952\n"
-"1\n"
-"help.text"
-msgid "About Import and Export Filters"
-msgstr "Portable bitmap Import/Eksport filterët"
-
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3143272\n"
-"2\n"
+"00000401.xhp\n"
+"par_id3157958\n"
+"164\n"
"help.text"
-msgid "In $[officename], apart from its own <link href=\"text/shared/00/00000021.xhp\" name=\"XML formats\">XML formats</link> you can also open and save many foreign XML formats."
+msgid "Choose <emph>File - New - Labels - Options</emph> tab"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3152414\n"
-"3\n"
+"00000401.xhp\n"
+"par_id3153311\n"
+"165\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">In UNIX, certain file formats cannot be recognized automatically.</caseinline><defaultinline>$[officename] normally recognizes the correct file type automatically on opening a file.</defaultinline></switchinline> There may be cases where you have to select the file type yourself in the <emph>Open</emph> dialog. For example, if you have a database table in text format that you want to open as a database table, you need to specify the file type \"Text CSV\" after selecting the file."
+msgid "Choose <emph>File - New - Business Cards - Options</emph> tab"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3148668\n"
-"238\n"
+"00000401.xhp\n"
+"par_id3152780\n"
+"166\n"
"help.text"
-msgid "Basic Macros in MS Office Documents"
-msgstr ""
+msgid "<variable id=\"visikart\">Choose <emph>File - New - Business Cards</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3156211\n"
-"239\n"
+"00000401.xhp\n"
+"par_id3156346\n"
+"167\n"
"help.text"
-msgid "In <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01130100.xhp\" name=\"Load/Save - VBA Properties\">Load/Save - VBA Properties</link> you can specify the settings for the VBA macro codes in MS Office documents. VBA macros are unable to run in $[officename]; they must first be converted and adapted. Often you only want to use $[officename] to change the visible content of a Word, Excel or PowerPoint file and then save the file again in Microsoft Office format without changing the macros they contain. You can set the behavior of $[officename] as desired: Either the VBA macros are saved in commented form as a subroutine of $[officename] and when the document is saved in MS Office format are written back correctly again, or you can select the Microsoft Office macros to be removed when loading. The last option is an effective protection against viruses within the Microsoft Office documents."
+msgid "<variable id=\"visikartform\">Choose <emph>File - New - Business Cards - Medium</emph> tab</variable>"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3154232\n"
-"5\n"
+"00000401.xhp\n"
+"par_id3152824\n"
+"168\n"
"help.text"
-msgid "Notes regarding external formats and file types"
+msgid "<variable id=\"viskartinhalt\">Choose <emph>File - New - Business Cards - Business cards</emph> tab</variable>"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154230\n"
-"226\n"
+"00000401.xhp\n"
+"par_id3149819\n"
+"169\n"
"help.text"
-msgid "Even if they are not installed, some filters can be selected in the <emph>Open</emph> and <emph>Save</emph> dialogs. If you select such a filter, a message will appear saying that you can still install the filter if you require."
+msgid "<variable id=\"viskartpriv\">Choose <emph>File - New - Business Cards - Private</emph> tab</variable>"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149999\n"
-"200\n"
+"00000401.xhp\n"
+"par_id3154897\n"
+"170\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">If you want to install additional filters or remove individual filters from the installation, close %PRODUCTNAME, start the Setup program and select the <emph>Modify</emph> option. Then you will see a dialog in which you can add or remove individual components of %PRODUCTNAME. Graphic filters can be found in \"Optional Components\".</caseinline></switchinline>"
+msgid "<variable id=\"viskartgesch\">Choose <emph>File - New - Business Cards - Business</emph> tab</variable>"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3156027\n"
+"00000401.xhp\n"
+"par_id3146137\n"
"7\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Importing and Exporting Text Documents</defaultinline></switchinline>"
-msgstr ""
-
-#: 00000020.xhp
-msgctxt ""
-"00000020.xhp\n"
-"par_id3145669\n"
-"8\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>$[officename] Writer can read various versions of the Microsoft Word text format. You also can save your own texts in Word format. However, not everything available with $[officename] Writer can be transferred to MS Word, and not everything can be imported.</defaultinline></switchinline>"
-msgstr ""
-
-#: 00000020.xhp
-msgctxt ""
-"00000020.xhp\n"
-"par_id3150144\n"
-"233\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Importing is normally not problematic. Even redlining information and controls are imported (and exported) so that $[officename] recognizes inserted or deleted text in Word documents as well as font attributes that have been modified. Different coloring for each author and the time of such changes is also included. When graphic text boxes and labels are imported from templates, most of the attributes are also imported as direct paragraph and drawing attributes. However, some of the attributes may be lost during the import procedure.</defaultinline></switchinline>"
-msgstr ""
-
-#: 00000020.xhp
-msgctxt ""
-"00000020.xhp\n"
-"par_id3149095\n"
-"10\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>It is also possible to import and export <link href=\"text/shared/00/00000005.xhp#rtf\" name=\"RTF\">RTF</link> files. This file format can be used to exchange formatted texts across various applications and platforms. In this way, many formats read by most programs will be transferred without a problem. The clipboard uses RTF format when you insert part of a spreadsheet from $[officename] Calc through <link href=\"text/shared/00/00000005.xhp\" name=\"DDE\">DDE</link> into $[officename] Writer.</defaultinline></switchinline>"
-msgstr ""
-
-#: 00000020.xhp
-msgctxt ""
-"00000020.xhp\n"
-"par_id3151378\n"
-"237\n"
-"help.text"
-msgid "The filter <emph>Text Encoded</emph> helps you open and save text documents with another encoding font. The filter opens a dialog that enables you to select character set, default fonts, language and paragraph break."
-msgstr ""
-
-#: 00000020.xhp
-msgctxt ""
-"00000020.xhp\n"
-"hd_id3149763\n"
-"11\n"
-"help.text"
-msgid "Importing and Exporting in HTML Format"
-msgstr ""
-
-#: 00000020.xhp
-msgctxt ""
-"00000020.xhp\n"
-"par_id3150244\n"
-"198\n"
-"help.text"
-msgid "With $[officename] Writer, you can insert footnotes and endnotes in your HTML document. They are exported as meta tags. The footnote and endnote characters are exported as hyperlinks."
-msgstr ""
+msgid "Choose <emph>File - Open</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149800\n"
-"199\n"
+"00000401.xhp\n"
+"par_id3152944\n"
+"83\n"
"help.text"
-msgid "Comments are used to include unknown characters in an HTML document. Every note that begins with \"HTML:...\" and ends with \">\" is treated as an HTML code, but is exported without these designations. Several tags around text can be included after \"HTML:...\" Accented characters are converted into the ANSI character set. Comments are created during import (for example, for meta tags that have no room in the file properties or unknown tags)."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+O"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149734\n"
-"201\n"
+"00000401.xhp\n"
+"par_id3155341\n"
+"8\n"
"help.text"
-msgid "The HTML import of $[officename] Writer is able to read files that have UTF-8 or UCS2 character coding. All characters that are contained in the ANSI character set or in the system's character set can be displayed."
-msgstr ""
+msgid "On the <emph>Standard</emph> Bar, click"
+msgstr "Shiriti i Funksionit kyçur/çkyçur"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149578\n"
-"240\n"
+"00000401.xhp\n"
+"par_id3155419\n"
"help.text"
-msgid "When exporting to HTML, the character set selected in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph> is used. Characters not present there are written in a substitute form, which is displayed correctly in modern web browsers. When exporting such characters, you will receive an appropriate warning."
+msgid "<image id=\"img_id3149415\" src=\"cmd/sc_open.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3149415\">Icon</alt></image>"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3153146\n"
-"197\n"
+"00000401.xhp\n"
+"par_id3156003\n"
+"9\n"
"help.text"
-msgid "If, in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>, you select Netscape Navigator, MS Internet Explorer, or $[officename] Writer as the export option, upon export all important font attributes are exported as direct attributes (for example, text color, font size, bold, italic, and so on) in CSS1 styles. (<link href=\"text/shared/00/00000002.xhp\" name=\"CSS\">CSS</link> stands for Cascading Style Sheets.) Importing is also carried out according to this standard."
-msgstr ""
+msgid "Open File"
+msgstr "Hape fajllin"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154143\n"
-"130\n"
+"00000401.xhp\n"
+"par_id3155388\n"
+"174\n"
"help.text"
-msgid "The \"font\" property corresponds to Netscape Navigator; that is, before the font size you can specify optional values for \"font-style\" (italic, none), \"font-variant\" (normal, small-caps) and \"font-weight\" (normal, bold)."
+msgid "Menu <emph>File - Open</emph>, File type <emph>Text Encoded</emph> selected"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3153760\n"
-"131\n"
+"00000401.xhp\n"
+"par_id3154174\n"
+"175\n"
"help.text"
-msgid "For example, \"Font: bold italic small-caps 12pt/200% Arial, Helvetica\" switches to bold, italic, small caps, double-space with the font family Arial or Helvetica, if Arial doesn't exist."
+msgid "Menu <emph>File - Save As</emph>, File type <emph>Text Encoded</emph> selected"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3150129\n"
-"132\n"
+"00000401.xhp\n"
+"par_id3145609\n"
+"109\n"
"help.text"
-msgid "\"Font: 10pt\" switches to a 10pt font, with bold, italic, small caps off."
-msgstr ""
+msgid "<variable id=\"autobrief\">Choose <emph>File - Wizards</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3155135\n"
-"14\n"
+"00000401.xhp\n"
+"par_id3149245\n"
+"110\n"
"help.text"
-msgid "If MS Internet Explorer or $[officename] Writer are set as the export option, the sizes of the control field and their internal margins are exported as styles (print formats). CSS1 size properties are based on \"width\" and \"height\" values. The \"Margin\" property is used to set equal margins on all sides of the page. To allow different margins, the \"Margin-Left\", \"Margin-Right\", \"Margin-Top\" and \"Margin-Bottom\" properties are used."
-msgstr ""
+msgid "<variable id=\"autopilotbrief\">Choose <emph>File - Wizards - Letter</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3148473\n"
-"15\n"
+"00000401.xhp\n"
+"par_id3154758\n"
+"111\n"
"help.text"
-msgid "The distances of graphics and Plug-Ins to the content can be set individually for export to $[officename] Writer and MS Internet Explorer. If the top/bottom or right/left margin is set differently, the distances are exported in a \"STYLE\" option for the corresponding tag as CSS1 size properties \"Margin-Top\", \"Margin-Bottom\", \"Margin-Left\" and \"Margin-Right\"."
-msgstr ""
+msgid "<variable id=\"autopilotbrief1\">Choose <emph>File - Wizards - Letter - Page design</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3144510\n"
-"16\n"
+"00000401.xhp\n"
+"par_id3152360\n"
+"112\n"
"help.text"
-msgid "Text frames are supported with the use of CSS1 extensions for absolute positioned objects. This applies only to the export options Netscape Navigator, MS Internet Explorer, and $[officename] Writer. Text frames can be aligned as graphics, <switchinline select=\"sys\"><caseinline select=\"WIN\"> Plug-Ins,</caseinline></switchinline>and Floating Frames, but character-linked frames are not possible."
-msgstr ""
+msgid "<variable id=\"autopilotbrief2\">Choose <emph>File - Wizards - Letter - Letterhead layout</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3147530\n"
-"46\n"
+"00000401.xhp\n"
+"par_id3159413\n"
+"113\n"
"help.text"
-msgid "Text frames are exported as \"<SPAN>\" or \"<DIV>\" tags if they do not contain columns. If they do contain columns then they are exported as \"<MULTICOL>\"."
-msgstr ""
+msgid "<variable id=\"autopilotbrief3\">Choose <emph>File - Wizards - Letter - Printed items</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3153896\n"
-"202\n"
+"00000401.xhp\n"
+"par_id3152771\n"
+"114\n"
"help.text"
-msgid "The measurement unit set in $[officename] is used for HTML export of CSS1 properties. The unit can be set separately for text and HTML documents under <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - General</emph> or <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer/Web - View</emph>. The number of exported decimal places depends on the unit."
-msgstr ""
+msgid "<variable id=\"autopilotbrief4\">Choose <emph>File - Wizards - Letter - Recipient and sender</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154935\n"
-"203\n"
+"00000401.xhp\n"
+"par_id3153524\n"
+"115\n"
"help.text"
-msgid "Measurement Unit"
-msgstr "Njësi matëse"
+msgid "<variable id=\"autopilotbrief5\">Choose <emph>File - Wizards - Letter - Footer</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154226\n"
-"204\n"
+"00000401.xhp\n"
+"par_id3154224\n"
+"116\n"
"help.text"
-msgid "Measurement Unit Name in CSS1"
+msgid "<variable id=\"autopilotbrief6\">Choose <emph>File - Wizards - Letter - </emph><emph>Name and Location</emph></variable>"
msgstr ""
-#: 00000020.xhp
-msgctxt ""
-"00000020.xhp\n"
-"par_id3151106\n"
-"205\n"
-"help.text"
-msgid "Maximum Number of Decimal Places"
-msgstr "Shkurton vendet decimale të një numri."
-
-#: 00000020.xhp
-msgctxt ""
-"00000020.xhp\n"
-"par_id3154071\n"
-"206\n"
-"help.text"
-msgid "Millimeter"
-msgstr "Milimetër"
-
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149290\n"
-"207\n"
+"00000401.xhp\n"
+"par_id3144760\n"
+"120\n"
"help.text"
-msgid "mm"
-msgstr "0 mm"
+msgid "<variable id=\"autopilotfax\">Choose <emph>File - Wizards - Fax</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3152920\n"
-"208\n"
+"00000401.xhp\n"
+"par_id3147085\n"
+"121\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<variable id=\"autopilotfax1\">Choose <emph>File - Wizards - Fax - Page Design</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3156293\n"
+"00000401.xhp\n"
+"par_id3151042\n"
"209\n"
"help.text"
-msgid "Centimeter"
-msgstr "Centimetër"
+msgid "<variable id=\"autopilotfax2\">Choose <emph>File - Wizards - Fax - Items to include</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154819\n"
-"210\n"
+"00000401.xhp\n"
+"par_id3154330\n"
+"122\n"
"help.text"
-msgid "cm"
-msgstr ""
+msgid "<variable id=\"autopilotfax3\">Choose <emph>File - Wizards - Fax - Sender and Recipient</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3147228\n"
-"211\n"
+"00000401.xhp\n"
+"par_id3150651\n"
+"123\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<variable id=\"autopilotfax4\">Choose <emph>File - Wizards - Fax - Footer</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154329\n"
-"212\n"
+"00000401.xhp\n"
+"par_id3154685\n"
+"124\n"
"help.text"
-msgid "Inch"
-msgstr "Inç"
+msgid "<variable id=\"autopilotfax5\">Choose <emph>File - Wizards - Fax - Name and location</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3150740\n"
-"213\n"
+"00000401.xhp\n"
+"par_id3153190\n"
+"131\n"
"help.text"
-msgid "in"
-msgstr "In"
+msgid "<variable id=\"autopilotagenda\">Choose <emph>File - Wizards - Agenda</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3157320\n"
-"214\n"
+"00000401.xhp\n"
+"par_id3155860\n"
+"132\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<variable id=\"autopilotagenda1\">Choose <emph>File - Wizards - Agenda - Page Design</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3156422\n"
-"215\n"
+"00000401.xhp\n"
+"par_id3146906\n"
+"133\n"
"help.text"
-msgid "Pica"
-msgstr "Pica"
+msgid "<variable id=\"autopilotagenda2\">Choose <emph>File - Wizards - Agenda - General Attributes</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3144760\n"
-"216\n"
+"00000401.xhp\n"
+"par_id3152578\n"
+"134\n"
"help.text"
-msgid "pc"
-msgstr "Pocket PC"
+msgid "<variable id=\"autopilotagenda3\">Choose <emph>File - Wizards - Agenda - Headings</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3145322\n"
-"217\n"
+"00000401.xhp\n"
+"par_id3155368\n"
+"135\n"
"help.text"
-msgid "2"
-msgstr "2"
+msgid "<variable id=\"autopilotagenda4\">Choose <emph>File - Wizards - Agenda - Names</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3155131\n"
-"218\n"
+"00000401.xhp\n"
+"par_id3146923\n"
+"205\n"
"help.text"
-msgid "Point"
-msgstr "Pikë"
+msgid "<variable id=\"autopilotagenda5\">Choose <emph>File - Wizards - Agenda - Topics</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3147288\n"
-"219\n"
+"00000401.xhp\n"
+"par_id3149066\n"
+"136\n"
"help.text"
-msgid "pt"
-msgstr ""
+msgid "<variable id=\"autopilotagenda6\">Choose <emph>File - Wizards - Agenda - Title and Location</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3145364\n"
-"220\n"
+"00000401.xhp\n"
+"par_id3149288\n"
+"102\n"
"help.text"
-msgid "1"
-msgstr "1"
+msgid "<variable id=\"dtapt\">Choose <emph>File - Wizards - Presentation</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3149262\n"
-"70\n"
+"00000401.xhp\n"
+"par_id3146986\n"
+"103\n"
"help.text"
-msgid "The $[officename] Web page filter supports certain capabilities of CSS2. However, to use it, print layout export must be activated in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>. Then, in HTML documents, besides the HTML Page Style, you can also use the styles \"First page\", \"Left page\" and \"Right page\". These styles should enable you to set different page sizes and margins for the first page and for right and left pages when printing."
+msgid "<variable id=\"dtapse\">Choose <emph>File - Wizards - Presentation - Page 1</emph></variable>"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3145750\n"
-"223\n"
+"00000401.xhp\n"
+"par_id3154919\n"
+"104\n"
"help.text"
-msgid "Importing and Exporting Numbering"
+msgid "<variable id=\"dtapsz\">Choose <emph>File - Wizards - Presentation - Page 2</emph></variable>"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3145591\n"
-"224\n"
+"00000401.xhp\n"
+"par_id3151351\n"
+"105\n"
"help.text"
-msgid "If, in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>, the export option \"$[officename] Writer\" or \"Internet Explorer\" is selected, the indents of numberings are exported as \"margin-left\" CSS1 property in the STYLE attribute of the <OL> and <UL> tags. The property indicates the difference relative to the indent of the next higher level."
+msgid "<variable id=\"dtapsd\">Choose <emph>File - Wizards - Presentation - Page 3</emph></variable>"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3153573\n"
-"225\n"
+"00000401.xhp\n"
+"par_id3147317\n"
+"106\n"
"help.text"
-msgid "A left paragraph indent in numbering is indicated as \"margin-left\" CSS1 property. First-line indents are ignored in numbering and not exported."
+msgid "<variable id=\"dtapsv\">Choose <emph>File - Wizards - Presentation - Page 4</emph></variable>"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3148556\n"
-"235\n"
+"00000401.xhp\n"
+"par_id3145592\n"
+"107\n"
"help.text"
-msgid "Importing and Exporting Spreadsheet Files"
+msgid "<variable id=\"dtapsf\">Choose <emph>File - Wizards - Presentation - Page 5</emph></variable>"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3153365\n"
-"236\n"
+"00000401.xhp\n"
+"par_idN10C46\n"
"help.text"
-msgid "$[officename] imports and exports references to deleted sections such as, for example, a referenced column. The whole formula can be viewed during the export process and the deleted reference contains an indication (#REF!) to the reference. A #REF! will be correspondingly created for the reference during the import."
+msgid "<variable id=\"autopilotformular\">Click <emph>Use Wizard to Create Form</emph> in a database file window.</variable>"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"hd_id3150228\n"
-"103\n"
+"00000401.xhp\n"
+"par_idN10C5F\n"
"help.text"
-msgid "Importing and Exporting Graphics Files"
+msgid "<variable id=\"autopilotreport\">Click <emph>Use Wizard to Create Report</emph> in a database file window.</variable>"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3152578\n"
-"104\n"
+"00000401.xhp\n"
+"par_idN10C24\n"
"help.text"
-msgid "As with HTML documents, you can choose to use a filter with or without the element ($[officename] Impress) in the name to open a $[officename] graphics file. If without, the file will be opened as a $[officename] Draw document. Otherwise, the file saved by an old program version is now opened in $[officename] Impress."
-msgstr ""
+msgid "<variable id=\"webwizard\">Choose <emph>File - Wizards - Web Page</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3144441\n"
-"106\n"
+"00000401.xhp\n"
+"par_id3154064\n"
+"143\n"
"help.text"
-msgid "When you import an EPS file, a preview of the graphic is displayed in the document. If a preview is not available, a placeholder corresponding to the size of the graphic is displayed in the document. Under Unix and Microsoft Windows you can print the imported file by using a PostScript printer. <switchinline select=\"sys\"><caseinline select=\"UNIX\"></caseinline><defaultinline>If a different printer is used the preview will be printed.</defaultinline></switchinline> When exporting EPS graphics, a preview is created and has the TIFF or EPSI format. If an EPS graphic together with other graphics is exported in the EPS format then this file will be embedded unchanged in the new file."
+msgid "<variable id=\"gruppen\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame.</variable>"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3146120\n"
-"222\n"
+"00000401.xhp\n"
+"par_id3152807\n"
+"144\n"
"help.text"
-msgid "Multipage-TIFFs are allowed when graphics are imported or exported in TIFF format. The graphics are retrieved as a set of individual pictures in a single file, for example, the individual pages of a fax."
+msgid "<variable id=\"gruppen1\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 1</variable>"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3159153\n"
-"109\n"
+"00000401.xhp\n"
+"par_id3150571\n"
+"148\n"
"help.text"
-msgid "Some $[officename] Draw and $[officename] Impress options can be accessed through <emph>File - Export</emph>. See <link href=\"text/shared/00/00000200.xhp\" name=\"Graphics Export Options\">Graphics Export Options</link> for more information."
+msgid "<variable id=\"gruppen2\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 2</variable>"
msgstr ""
-#: 00000020.xhp
-msgctxt ""
-"00000020.xhp\n"
-"hd_id3153213\n"
-"228\n"
-"help.text"
-msgid "PostScript"
-msgstr "Niveli i PostScript=-it"
-
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3156444\n"
-"229\n"
+"00000401.xhp\n"
+"par_id3145251\n"
+"145\n"
"help.text"
-msgid "To export a document or graphic in PostScript format:"
+msgid "<variable id=\"gruppen3\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 3</variable>"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3163714\n"
-"230\n"
+"00000401.xhp\n"
+"par_id3156109\n"
+"146\n"
"help.text"
-msgid "If you have not yet done so, install a PostScript printer driver, such as the Apple LaserWriter driver."
+msgid "<variable id=\"gruppen4\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - Wizards page 4, there must be a database connection.</variable>"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3153142\n"
-"231\n"
+"00000401.xhp\n"
+"par_id3159347\n"
+"147\n"
"help.text"
-msgid "Print the document with the <emph>File - Print</emph> menu command."
+msgid "<variable id=\"gruppen5\">In form design, click the <emph>Group Box</emph> icon on the toolbar and use the mouse to create a frame - last page of Wizards</variable>"
msgstr ""
-#: 00000020.xhp
+#: 00000401.xhp
msgctxt ""
-"00000020.xhp\n"
-"par_id3154149\n"
-"242\n"
+"00000401.xhp\n"
+"par_id3153417\n"
+"150\n"
"help.text"
-msgid "Select the PostScript printer in the dialog and mark the <emph>Print to file</emph> check box. A PostScript file will be created."
-msgstr ""
+msgid "<variable id=\"autopilotmsimport\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"tit\n"
+"00000401.xhp\n"
+"par_id3150715\n"
+"151\n"
"help.text"
-msgid "Conversion of measurement units"
-msgstr "Shndërrimi Hangul/Hanja"
+msgid "<variable id=\"autopilotmsimport1\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"bm_id3147543\n"
+"00000401.xhp\n"
+"par_id3154274\n"
+"149\n"
"help.text"
-msgid "<bookmark_value>measurement units; converting</bookmark_value><bookmark_value>units; converting</bookmark_value><bookmark_value>converting;metrics</bookmark_value><bookmark_value>metrics;converting</bookmark_value>"
-msgstr ""
+msgid "<variable id=\"autopilotmsimport2\">Choose <emph>File - Wizards - Document Converter</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"hd_id3147543\n"
-"1\n"
+"00000401.xhp\n"
+"par_id3146912\n"
+"171\n"
"help.text"
-msgid "Conversion of measurement units"
-msgstr "Shndërrimi Hangul/Hanja"
+msgid "<variable id=\"euro\">Choose <emph>File - Wizards - Euro Converter</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN1069F\n"
+"00000401.xhp\n"
+"par_id3152962\n"
+"198\n"
"help.text"
-msgid "In some dialogs, you can enter measurement values into input boxes. If you just enter a numerical value, the default measurement unit is used."
+msgid "Menu <emph>File - Wizards - Address Data Source</emph>"
msgstr ""
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106A2\n"
+"00000401.xhp\n"
+"par_id3145206\n"
+"191\n"
"help.text"
-msgid "You define the default measurement unit for Writer text documents in the dialog that you get by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - General</emph>. For Calc, Draw, and Impress, you open a document of that type and then open the appropriate <emph>General</emph> page as for Writer."
+msgid "<variable id=\"addressimport2\"><emph>Address Data Source Wizards</emph> - <emph>Additional settings</emph></variable>"
msgstr ""
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106AD\n"
+"00000401.xhp\n"
+"par_id3154756\n"
+"192\n"
"help.text"
-msgid "In input boxes for length units you can also add the unit abbreviation according to the following list:"
+msgid "<variable id=\"addressimport3\"><emph>Address Data Source Wizards</emph> - <emph>Select table</emph></variable>"
msgstr ""
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106BA\n"
+"00000401.xhp\n"
+"par_id3153924\n"
+"193\n"
"help.text"
-msgid "Unit abbreviation"
-msgstr "Njësi matëse"
+msgid "<variable id=\"addressimport4\"><emph>Address Data Source Wizards</emph><emph>- Data source title</emph></variable>"
+msgstr ""
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106C0\n"
+"00000401.xhp\n"
+"par_id3148995\n"
+"194\n"
"help.text"
-msgid "Explanation"
+msgid "<variable id=\"addressimport5\"><emph>Address Data Source Wizards</emph> - <emph>Field assignment</emph></variable>"
msgstr ""
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106C7\n"
+"00000401.xhp\n"
+"par_id3147338\n"
+"57\n"
"help.text"
-msgid "mm"
-msgstr "0 mm"
+msgid "<variable id=\"schliessen\">Choose <emph>File - Close</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106CD\n"
+"00000401.xhp\n"
+"par_id3156717\n"
+"10\n"
"help.text"
-msgid "Millimeter"
-msgstr "Milimetër"
+msgid "Choose <emph>File - Save</emph>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106D4\n"
+"00000401.xhp\n"
+"par_id3147533\n"
+"84\n"
"help.text"
-msgid "cm"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+S"
msgstr ""
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106DA\n"
+"00000401.xhp\n"
+"par_id3148930\n"
+"11\n"
"help.text"
-msgid "Centimeter"
-msgstr "Centimetër"
+msgid "On Standard or Table Data Bar, click"
+msgstr ""
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106E1\n"
+"00000401.xhp\n"
+"par_id3156712\n"
"help.text"
-msgid "in or \""
-msgstr "OSE logjike"
+msgid "<image id=\"img_id3155939\" src=\"cmd/sc_save.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155939\">Icon</alt></image>"
+msgstr ""
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106E7\n"
+"00000401.xhp\n"
+"par_id3149109\n"
+"12\n"
"help.text"
-msgid "Inch"
-msgstr "Inç"
+msgid "Save"
+msgstr "Ruaje"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106EE\n"
+"00000401.xhp\n"
+"par_idN10F11\n"
"help.text"
-msgid "pi"
-msgstr "pi"
+msgid "<image id=\"img_id8276619\" src=\"cmd/sc_saveas.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id8276619\">Icon</alt></image>"
+msgstr ""
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106F4\n"
+"00000401.xhp\n"
+"par_idN10F2E\n"
"help.text"
-msgid "Pica"
-msgstr "Pica"
+msgid "Save As"
+msgstr "Ruaje si"
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN106FB\n"
+"00000401.xhp\n"
+"par_id3150300\n"
+"99\n"
"help.text"
-msgid "pt"
+msgid "<variable id=\"htmlspeichern\">$[officename] Draw or $[officename] Impress menu <emph>File - Export</emph>, select \"HTML Document\" file type, this dialog opens automatically</variable>"
msgstr ""
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN10701\n"
+"00000401.xhp\n"
+"par_id3153387\n"
+"137\n"
"help.text"
-msgid "Point"
-msgstr "Pikë"
+msgid "<variable id=\"htmlspeichern1\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 1 of the wizard</variable>"
+msgstr ""
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN10704\n"
+"00000401.xhp\n"
+"par_id3154021\n"
+"138\n"
"help.text"
-msgid "The following formulas convert the units:"
+msgid "<variable id=\"htmlspeichern2\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 2 of the wizard</variable>"
msgstr ""
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN1070A\n"
+"00000401.xhp\n"
+"par_id3147246\n"
+"159\n"
"help.text"
-msgid "1 cm = 10 mm"
-msgstr "Indeksi 10 i shfrytëzuesit"
+msgid "<variable id=\"htmlspeichern3\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 3 of the wizard</variable>"
+msgstr ""
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN1070E\n"
+"00000401.xhp\n"
+"par_id3145131\n"
+"140\n"
"help.text"
-msgid "1 inch = 2.54 cm"
+msgid "<variable id=\"htmlspeichern4\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 4 of the wizard</variable>"
msgstr ""
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN10712\n"
+"00000401.xhp\n"
+"par_id3150235\n"
+"141\n"
"help.text"
-msgid "1 inch = 6 Pica = 72 Point"
+msgid "<variable id=\"htmlspeichern5\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 5 of the wizard</variable>"
msgstr ""
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN10715\n"
+"00000401.xhp\n"
+"par_id3145762\n"
+"142\n"
"help.text"
-msgid "For example, in a text document, open <emph>Format - Paragraph - Indents & Spacing</emph>. To indent the current paragraph by one inch, enter <item type=\"literal\">1 in</item> or <item type=\"literal\">1\"</item> into the \"Before text\" box. To indent the paragraph by 1 cm, enter <item type=\"literal\">1 cm</item> into the input box."
+msgid "<variable id=\"htmlspeichern6\">$[officename] Draw/$[officename] Impress menu<emph> File - Export</emph>, select HTML file type, page 6 of the wizard</variable>"
msgstr ""
-#: 00000003.xhp
+#: 00000401.xhp
msgctxt ""
-"00000003.xhp\n"
-"par_idN1074C\n"
+"00000401.xhp\n"
+"par_id3149735\n"
"help.text"
-msgid "To input the maximum or minimum allowed value respectively, click the current value and then press the <item type=\"keycode\">Page Up</item> or <item type=\"keycode\">Page Down</item> key."
+msgid "<variable id=\"exportgraphic\">Choose <emph>File - Export</emph>, select a graphics file type, dialog opens automatically</variable>"
msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"tit\n"
+"00000401.xhp\n"
+"par_id3154901\n"
+"58\n"
"help.text"
-msgid "Format Menu"
-msgstr "Menyja për formatim"
+msgid "<variable id=\"saveall\">Choose <emph>File - Save All</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"hd_id3149741\n"
-"1\n"
+"00000401.xhp\n"
+"par_id3152479\n"
+"59\n"
"help.text"
-msgid "Format Menu"
-msgstr "Menyja për formatim"
+msgid "<variable id=\"saveas\">Choose <emph>File - Save As</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146857\n"
-"2\n"
+"00000401.xhp\n"
+"par_id3148392\n"
+"60\n"
"help.text"
-msgid "Choose <emph>Format - Line</emph> (Impress and Draw)"
-msgstr ""
+msgid "Choose <emph>File - Reload</emph>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id366527\n"
+"00000401.xhp\n"
+"par_id3166425\n"
+"61\n"
"help.text"
-msgid "Choose <emph>Format - Object - Line </emph>(Writer)"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
+msgid "<variable id=\"info1\">Choose <emph>File - Properties</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3835261\n"
+"00000401.xhp\n"
+"par_id3150381\n"
+"62\n"
"help.text"
-msgid "Choose <emph>Format - Graphic - Line </emph>(Calc)"
+msgid "<variable id=\"info2\">Choose <emph>File - Properties - General</emph> tab</variable>"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3148668\n"
-"3\n"
+"00000401.xhp\n"
+"par_idN11163\n"
"help.text"
-msgid "On <emph>Line and Filling</emph> Bar, click"
+msgid "Choose <emph>File - Digital Signatures</emph>"
msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3148889\n"
+"00000401.xhp\n"
+"par_idN11168\n"
"help.text"
-msgid "<image id=\"img_id3150669\" src=\"cmd/sc_formatline.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150669\">Icon</alt></image>"
+msgid "Choose <emph>Tools - Macros - Digital Signature</emph>"
msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3159147\n"
-"4\n"
+"00000401.xhp\n"
+"par_idN11156\n"
"help.text"
-msgid "Line"
-msgstr "Rreshti"
+msgid "Choose <emph>File - Properties - General</emph> tab, click <emph>Digital Signatures</emph> button"
+msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154285\n"
-"5\n"
+"00000401.xhp\n"
+"par_idN1117E\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line</emph> tab"
+msgid "Double-click the Signature field on the Status Bar."
msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147335\n"
-"7\n"
+"00000401.xhp\n"
+"par_idN11173\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Line</emph> tab (presentation documents)"
+msgid "<variable id=\"digitalsigsel\">Choose <emph>File - Properties - General</emph> tab, click <emph>Digital Signatures</emph> button, then click <emph>Add</emph> button</variable>"
msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156023\n"
-"8\n"
+"00000401.xhp\n"
+"par_id3150662\n"
+"63\n"
"help.text"
-msgid "Choose <emph>Format - Title - Borders</emph> tab (charts)"
+msgid "<variable id=\"info3\">Choose <emph>File - Properties - Description</emph> tab</variable>"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153061\n"
-"9\n"
+"00000401.xhp\n"
+"par_id3153792\n"
+"64\n"
"help.text"
-msgid "Choose <emph>Format - Legend - Borders</emph> tab (charts)"
+msgid "<variable id=\"info4\">Choose <emph>File - Properties - Custom Properties</emph> tab</variable>"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155922\n"
-"10\n"
+"00000401.xhp\n"
+"par_id3153701\n"
+"65\n"
"help.text"
-msgid "Choose <emph>Format - Axis - Line</emph> tab (charts)"
+msgid "<variable id=\"info5\">Choose <emph>File - Properties - Statistics</emph> tab</variable>"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147559\n"
-"11\n"
+"00000401.xhp\n"
+"par_id315370199\n"
"help.text"
-msgid "Choose <emph>Format - Grid - Line</emph> tab (charts)"
+msgid "<variable id=\"infosec\">Choose <emph>File - Properties - Security</emph> tab</variable>"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154758\n"
-"12\n"
+"00000401.xhp\n"
+"par_id3149570\n"
+"66\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Borders</emph> tab (charts)"
+msgid "<variable id=\"info6\">Choose <emph>File - Properties - Internet</emph> tab</variable>"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153960\n"
-"13\n"
+"00000401.xhp\n"
+"par_id3154930\n"
+"69\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Borders</emph> tab (charts)"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "Menu<emph> File - Page Preview</emph>"
+msgstr "Pop-up menyja e shikimit paraprak të faqes"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154939\n"
-"14\n"
+"00000401.xhp\n"
+"par_idN11366\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Borders</emph> tab (charts)"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "<image id=\"img_id2603534\" src=\"cmd/sc_printpreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id2603534\">Icon</alt></image>"
+msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151293\n"
-"15\n"
+"00000401.xhp\n"
+"par_idN11384\n"
"help.text"
-msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
-msgstr ""
+msgid "Page Preview"
+msgstr "Shkimi praprak i faqes"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149317\n"
-"16\n"
+"00000401.xhp\n"
+"par_id3163722\n"
+"70\n"
"help.text"
-msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgid "Choose <emph>File - Printer Settings</emph>"
msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156082\n"
+"00000401.xhp\n"
+"par_id3155529\n"
"17\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area</emph>"
+msgid "<variable id=\"senden\">Menu<emph> File - Send</emph></variable>"
msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3148922\n"
+"00000401.xhp\n"
+"par_id3145386\n"
"18\n"
"help.text"
-msgid "On <emph>Line and Filling</emph> Bar, click"
-msgstr ""
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id3156424\n"
-"help.text"
-msgid "<image id=\"img_id3150868\" src=\"cmd/sc_fillstyle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150868\">Icon</alt></image>"
-msgstr ""
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id3150393\n"
-"19\n"
-"help.text"
-msgid "Area"
-msgstr "Hapësira"
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id3154948\n"
-"20\n"
-"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgid "Choose <emph>File - Send - Document as E-mail</emph>"
msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145607\n"
-"22\n"
+"00000401.xhp\n"
+"par_idN113AB\n"
"help.text"
-msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgid "<image id=\"img_id4044007\" src=\"cmd/sc_sendmail.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id4044007\">Icon</alt></image>"
msgstr ""
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id3152922\n"
-"23\n"
-"help.text"
-msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id3157894\n"
-"24\n"
-"help.text"
-msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3144444\n"
-"25\n"
+"00000401.xhp\n"
+"par_idN113C8\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "Document as E-mail"
+msgstr "Dokumenti si E-mail..."
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156543\n"
-"26\n"
+"00000401.xhp\n"
+"par_id3145269\n"
+"222\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
+msgid "<variable id=\"export\">Choose <emph>File - Export</emph></variable>"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150685\n"
-"27\n"
+"00000401.xhp\n"
+"par_id3166421\n"
+"219\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
+msgid "Choose <emph>File - Export as PDF</emph>"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149664\n"
-"120\n"
+"00000401.xhp\n"
+"par_id3150521\n"
"help.text"
-msgid "Choose <emph>Format - Page - Background</emph> tab (in $[officename] Impress and $[officename] Draw)"
+msgid "<image id=\"img_id3147306\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3147306\">Icon</alt></image>"
msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3163820\n"
-"28\n"
+"00000401.xhp\n"
+"par_id3155763\n"
+"220\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
-msgstr ""
+msgid "Export Directly as PDF"
+msgstr "Eksporto drejtpërdrejt si PDF"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152462\n"
-"29\n"
+"00000401.xhp\n"
+"par_id3145410\n"
+"210\n"
"help.text"
-msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Colors</emph> tab"
+msgid "Choose <emph>File - Send - E-mail as PDF</emph>"
msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154985\n"
-"141\n"
+"00000401.xhp\n"
+"par_id3159160\n"
+"74\n"
"help.text"
-msgid "Choose <emph>Format - Area - Transparency</emph> tab (drawing documents)"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "<variable id=\"glo\">Choose <emph>File - Send - Create Master Document</emph></variable>"
+msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145365\n"
-"142\n"
+"00000401.xhp\n"
+"par_id3149951\n"
+"13\n"
"help.text"
-msgid "Choose <emph>Format - Area - Transparency</emph> tab (presentation documents)"
+msgid "Choose <emph>File - Print</emph>"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151117\n"
-"143\n"
+"00000401.xhp\n"
+"par_id3155259\n"
+"85\n"
"help.text"
-msgid "Choose <emph>Format - Chart Wall - Transparency</emph> tab (chart documents)"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+P"
+msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147326\n"
-"144\n"
+"00000401.xhp\n"
+"par_id3153830\n"
+"3\n"
"help.text"
-msgid "Choose <emph>Format - Chart Area - Transparency</emph> tab (chart documents)"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "On Standard Bar, click"
+msgstr "Shiriti i Funksionit kyçur/çkyçur"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154920\n"
-"145\n"
+"00000401.xhp\n"
+"par_id3155187\n"
"help.text"
-msgid "Choose <emph>Format - Chart Floor - Transparency</emph> tab (chart documents)"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "<image id=\"img_id3153318\" src=\"cmd/sc_print.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3153318\">Icon</alt></image>"
+msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145591\n"
-"146\n"
+"00000401.xhp\n"
+"par_id3151268\n"
+"4\n"
"help.text"
-msgid "Choose <emph>Format - Title - All Titles - Transparency</emph> tab (chart documents)"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "Print File Directly"
+msgstr "Printo fajllin drejtpërdrejt"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145750\n"
-"147\n"
+"00000401.xhp\n"
+"par_id3153581\n"
+"5\n"
"help.text"
-msgid "Choose <emph>Format - Title - Main Title - Transparency </emph>tab (chart documents)"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "On the <emph>Page View</emph><emph>Bar</emph> of a text document, click"
+msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3148556\n"
-"148\n"
+"00000401.xhp\n"
+"par_id3153068\n"
"help.text"
-msgid "Choose <emph>Format - Title - Subtitle - Transparency</emph> tab (chart documents)"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "<image id=\"img_id3155362\" src=\"cmd/sc_printpagepreview.png\" width=\"0.566cm\" height=\"0.566cm\"><alt id=\"alt_id3155362\">Icon</alt></image>"
+msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3163710\n"
-"149\n"
+"00000401.xhp\n"
+"par_id3151239\n"
+"6\n"
"help.text"
-msgid "Choose <emph>Format - Title - Title (X Axis) - Transparency</emph> tab (chart documents)"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "Print Page Preview"
+msgstr "~Shikimi Paraprak i Thyerjes së Faqes"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150487\n"
-"150\n"
+"00000401.xhp\n"
+"par_id3155869\n"
+"72\n"
"help.text"
-msgid "Choose <emph>Format - Title - Title (Y Axis) - Transparency</emph> tab (chart documents)"
+msgid "Choose <emph>File - Exit</emph>"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154320\n"
-"151\n"
+"00000401.xhp\n"
+"par_id3152382\n"
+"86\n"
"help.text"
-msgid "Choose <emph>Format - Title - Title (Z Axis) - Transparency</emph> tab (chart documents)"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Q"
+msgstr ""
-#: 00040502.xhp
-#, fuzzy
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151113\n"
-"152\n"
+"00000401.xhp\n"
+"par_id3149328\n"
+"75\n"
"help.text"
-msgid "Choose <emph>Format - Object Properties - Data Point - Transparency</emph> - tab (chart documents)"
+msgid "<variable id=\"neuglobal\">Choose <emph>File - New - Master Document</emph></variable>"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
-#, fuzzy
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149266\n"
-"153\n"
+"00000401.xhp\n"
+"par_id3145827\n"
+"76\n"
"help.text"
-msgid "Choose <emph>Format - Object Properties - Data Series - Transparency</emph> tab (chart documents)"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "Choose <emph>File - Open</emph> - select under \"File type\": \"Text CSV\""
+msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150011\n"
-"30\n"
+"00000401.xhp\n"
+"par_id6071352\n"
"help.text"
-msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgid "Choose <emph>Data - Text to Columns</emph> (Calc)"
msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147441\n"
-"31\n"
+"00000401.xhp\n"
+"par_id3148608\n"
+"81\n"
"help.text"
-msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgid "<variable id=\"epsexport\">Choose <emph>File - Export</emph>, if EPS is selected as file type, this dialog opens automatically</variable>"
msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155308\n"
-"32\n"
+"00000401.xhp\n"
+"par_id3150107\n"
+"87\n"
"help.text"
-msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgid "<variable id=\"pbmppmpgm\">Choose <emph>File - Export</emph>, if PBM, PPM or PGM is selected as file type, the dialog opens automatically</variable>"
msgstr ""
-#: 00040502.xhp
+#: 00000401.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145800\n"
-"33\n"
+"00000401.xhp\n"
+"par_id3145305\n"
+"96\n"
"help.text"
-msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgid "<variable id=\"versionen\"><variable id=\"autopilotberichtfeldauswahl\">Choose <emph>File - Versions</emph></variable></variable>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145251\n"
-"34\n"
+"00000402.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"formattext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline></variable>"
-msgstr ""
+msgid "Edit Menu"
+msgstr "AutoPilot Meny"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152810\n"
-"35\n"
+"00000402.xhp\n"
+"hd_id3147273\n"
+"1\n"
"help.text"
-msgid "<variable id=\"text\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text</emph> tab</variable>"
-msgstr ""
+msgid "Edit Menu"
+msgstr "AutoPilot Meny"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151060\n"
-"36\n"
+"00000402.xhp\n"
+"par_id3085157\n"
+"2\n"
"help.text"
-msgid "<variable id=\"laufext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text Animation</emph> tab</variable>"
-msgstr ""
+msgid "Choose <emph>Edit - Undo</emph>"
+msgstr "Redakto të Dhënat Serike/Pikat"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149911\n"
-"37\n"
+"00000402.xhp\n"
+"par_id3145160\n"
+"564\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size</emph>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156286\n"
-"89\n"
+"00000402.xhp\n"
+"par_id3154094\n"
+"3\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgid "On the <emph>Standard</emph> Bar or Table Data bar, click"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153052\n"
+"00000402.xhp\n"
+"par_id3155449\n"
"help.text"
-msgid "<image id=\"img_id3150965\" src=\"cmd/sc_transformdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150965\">Icon</alt></image>"
+msgid "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155577\">Icon</alt></image>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149938\n"
-"39\n"
+"00000402.xhp\n"
+"par_id3148563\n"
+"4\n"
"help.text"
-msgid "Position and Size"
-msgstr "Pozita dhe Madhësia"
+msgid "Undo"
+msgstr "Zhbëj%O"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3148833\n"
-"170\n"
+"00000402.xhp\n"
+"par_id3145068\n"
+"5\n"
"help.text"
-msgid "Open the context menu for the object - choose <emph>Name</emph>"
-msgstr ""
+msgid "Choose <emph>Edit - Redo</emph>"
+msgstr "Redakto të Dhënat Serike/Pikat"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id411999\n"
+"00000402.xhp\n"
+"par_id3153897\n"
+"6\n"
"help.text"
-msgid "Open the context menu for the object - choose <emph>Description</emph>"
-msgstr ""
+msgid "On the <emph>Standard</emph> Bar, click"
+msgstr "Shiriti i Funksionit kyçur/çkyçur"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153099\n"
-"40\n"
+"00000402.xhp\n"
+"par_id3154938\n"
"help.text"
-msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgid "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150358\">Icon</alt></image>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152973\n"
-"42\n"
+"00000402.xhp\n"
+"par_id3151211\n"
+"7\n"
"help.text"
-msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Rotation</emph> tab"
-msgstr ""
+msgid "Redo"
+msgstr "Bëje prap"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3148495\n"
+"00000402.xhp\n"
+"par_id3154365\n"
+"8\n"
"help.text"
-msgid "<image id=\"img_id3146898\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146898\">Icon</alt></image>"
-msgstr ""
+msgid "<variable id=\"letzter\">Choose <emph>Edit - Repeat</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146790\n"
-"44\n"
+"00000402.xhp\n"
+"par_id3149765\n"
+"9\n"
"help.text"
-msgid "Rotate"
-msgstr "Rrotullo"
+msgid "Choose <emph>Edit - Cut</emph>"
+msgstr "Redakto të Dhënat Serike/Pikat"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145666\n"
-"45\n"
+"00000402.xhp\n"
+"par_id3144762\n"
+"565\n"
"help.text"
-msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146081\n"
-"46\n"
+"00000402.xhp\n"
+"par_id3148744\n"
+"10\n"
"help.text"
-msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
-msgstr ""
+msgid "On the <emph>Standard</emph> Bar, click"
+msgstr "Shiriti i Funksionit kyçur/çkyçur"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3083283\n"
-"172\n"
+"00000402.xhp\n"
+"par_id3145173\n"
"help.text"
-msgid "Choose <emph>Edit - Points</emph>"
-msgstr "Redakto të Dhënat Serike/Pikat"
+msgid "<image id=\"img_id3145744\" src=\"cmd/sc_cut.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145744\">Icon</alt></image>"
+msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145642\n"
-"47\n"
+"00000402.xhp\n"
+"par_id3154153\n"
+"11\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Open context menu - choose <emph>Edit Points</emph></caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open context menu - choose <emph>Edit Points</emph></caseinline></switchinline>"
-msgstr ""
+msgid "Cut"
+msgstr "Preje"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149019\n"
-"90\n"
+"00000402.xhp\n"
+"par_id3150742\n"
+"12\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
-msgstr ""
+msgid "Choose <emph>Edit - Copy</emph>"
+msgstr "Redakto të Dhënat Serike/Pikat"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150044\n"
+"00000402.xhp\n"
+"par_id3148923\n"
+"566\n"
"help.text"
-msgid "<image id=\"img_id3147100\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147100\">Icon</alt></image>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153966\n"
-"49\n"
+"00000402.xhp\n"
+"par_id3159254\n"
+"13\n"
"help.text"
-msgid "Edit Points"
-msgstr "Edito pikat"
+msgid "On the <emph>Standard</emph> Bar, click"
+msgstr "Shiriti i Funksionit kyçur/çkyçur"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151248\n"
-"50\n"
+"00000402.xhp\n"
+"par_id3154985\n"
"help.text"
-msgid "Choose <emph>Format - Character</emph> (drawing functions)"
+msgid "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156441\">Icon</alt></image>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145229\n"
-"121\n"
+"00000402.xhp\n"
+"par_id3150685\n"
+"14\n"
"help.text"
-msgid "Open context menu - choose <emph>Character</emph>"
-msgstr ""
+msgid "Copy"
+msgstr "Kopjo"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151342\n"
-"122\n"
+"00000402.xhp\n"
+"par_id3159153\n"
+"15\n"
"help.text"
-msgid "Open context menu - choose <emph>Size</emph>"
-msgstr ""
+msgid "Choose <emph>Edit - Paste</emph>"
+msgstr "Redakto të Dhënat Serike/Pikat"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149255\n"
-"123\n"
+"00000402.xhp\n"
+"par_id3155860\n"
+"567\n"
"help.text"
-msgid "Open context menu - choose <emph>Style</emph>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155177\n"
-"124\n"
+"00000402.xhp\n"
+"par_id3159083\n"
+"16\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Bold</emph>"
-msgstr ""
+msgid "On the <emph>Standard</emph> Bar, click"
+msgstr "Shiriti i Funksionit kyçur/çkyçur"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145766\n"
+"00000402.xhp\n"
+"par_id3156106\n"
"help.text"
-msgid "<image id=\"img_id3156558\" src=\"cmd/sc_bold.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3156558\">Icon</alt></image>"
+msgid "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Icon</alt></image>"
msgstr ""
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id3147001\n"
-"55\n"
-"help.text"
-msgid "Bold"
-msgstr "Me të trasha"
-
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151276\n"
-"125\n"
+"00000402.xhp\n"
+"par_id3154471\n"
+"17\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Italic</emph>"
-msgstr ""
+msgid "Paste"
+msgstr "Lësho"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3159091\n"
+"00000402.xhp\n"
+"par_id3152791\n"
+"532\n"
"help.text"
-msgid "<image id=\"img_id3155578\" src=\"cmd/sc_italic.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3155578\">Icon</alt></image>"
-msgstr ""
+msgid "<variable id=\"inhalte\">Choose <emph>Edit - Paste Special</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150234\n"
-"58\n"
+"00000402.xhp\n"
+"par_id3148555\n"
+"533\n"
"help.text"
-msgid "Italic"
-msgstr "Italike"
+msgid "Choose <emph>Edit - Select All</emph>"
+msgstr "Redakto të Dhënat Serike/Pikat"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154589\n"
-"126\n"
+"00000402.xhp\n"
+"par_id3152417\n"
+"568\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Underline</emph>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145223\n"
+"00000402.xhp\n"
+"par_id3145748\n"
"help.text"
-msgid "<image id=\"img_id3151068\" src=\"cmd/sc_underline.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3151068\">Icon</alt></image>"
+msgid "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153095\">Icon</alt></image>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154715\n"
-"88\n"
+"00000402.xhp\n"
+"par_id3153139\n"
+"575\n"
"help.text"
-msgid "Underline"
-msgstr "Nënvizim"
+msgid "Select All"
+msgstr "Zgjedh të gjitha"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145131\n"
-"127\n"
+"00000402.xhp\n"
+"par_id3145251\n"
+"555\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Strikethrough</emph>"
-msgstr ""
+msgid "<variable id=\"aenderungen\">Choose <emph>Edit - Changes</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3158214\n"
-"128\n"
+"00000402.xhp\n"
+"par_id3153336\n"
+"556\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Shadow</emph>"
-msgstr ""
+msgid "<variable id=\"aufzeichnen\">Choose <emph>Edit - Changes - Record</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150207\n"
-"129\n"
+"00000402.xhp\n"
+"par_id3150594\n"
+"557\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Contour</emph>"
+msgid "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Edit - Changes - Show</emph></caseinline><caseinline select=\"CALC\">Choose <emph>Edit - Changes - Show</emph></caseinline></switchinline></variable>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154383\n"
-"130\n"
+"00000402.xhp\n"
+"par_id3153845\n"
+"558\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Superscript</emph>"
-msgstr ""
+msgid "<variable id=\"rotlinie\">Choose <emph>Edit - Changes - Accept or Reject</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152767\n"
-"131\n"
+"00000402.xhp\n"
+"par_id3148587\n"
+"559\n"
"help.text"
-msgid "Open context menu - choose <emph>Style - Subscript</emph>"
+msgid "Choose <emph>Edit - Changes - Accept or Reject - List</emph> tab"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155377\n"
-"132\n"
+"00000402.xhp\n"
+"par_id3150396\n"
+"574\n"
"help.text"
-msgid "Open context menu - choose <emph>Line Spacing</emph>"
+msgid "Choose <emph>Format - AutoCorrect - Apply and Edit Changes.</emph> AutoCorrect dialog appears, click <emph>Edit Changes</emph> button, see <emph>List</emph> tab page"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154475\n"
-"133\n"
+"00000402.xhp\n"
+"par_id3153878\n"
+"560\n"
"help.text"
-msgid "Open context menu - choose <emph>Line Spacing - Single</emph>"
+msgid "<variable id=\"rotliniefilter\">Choose <emph>Edit - Changes - Accept or Reject - Filter</emph> tab </variable>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150478\n"
-"134\n"
+"00000402.xhp\n"
+"par_id3151281\n"
+"561\n"
"help.text"
-msgid "Open context menu - choose <emph>Line Spacing - 1.5 Lines</emph>"
-msgstr ""
+msgid "<variable id=\"einfuegen\">Choose <emph>Edit - Changes - Merge Document</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147167\n"
-"135\n"
+"00000402.xhp\n"
+"par_id3153224\n"
+"562\n"
"help.text"
-msgid "Open context menu - choose <emph>Line Spacing - Double</emph>"
-msgstr ""
+msgid "<variable id=\"dvergl\">Choose <emph>Edit - Compare Document</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146978\n"
-"69\n"
+"00000402.xhp\n"
+"par_id3148773\n"
+"563\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Left</emph> (drawing functions)"
+msgid "Choose <emph>Edit - Changes - Comment</emph>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153009\n"
-"136\n"
+"00000402.xhp\n"
+"par_id3149488\n"
+"571\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Left</emph>"
+msgid "Choose <emph>Edit - Changes - Accept or Reject - List</emph> tab. Click an entry in the list and open the context menu. Choose <emph>Edit Comment</emph>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3147310\n"
+"00000402.xhp\n"
+"par_id3156297\n"
+"49\n"
"help.text"
-msgid "<image id=\"img_id3155370\" src=\"cmd/sc_alignleft.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155370\">Icon</alt></image>"
+msgid "Choose <emph>Edit - Find & Replace</emph>"
msgstr ""
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id3151336\n"
-"71\n"
-"help.text"
-msgid "Align Left"
-msgstr "Rreshto majtas"
-
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155823\n"
-"72\n"
+"00000402.xhp\n"
+"par_id3154503\n"
+"569\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Right</emph> (drawing functions)"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+H"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3155762\n"
-"137\n"
+"00000402.xhp\n"
+"par_id3155083\n"
+"456\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Right</emph>"
-msgstr ""
+msgid "On Standard bar, click"
+msgstr "Shiriti i Funksionit kyçur/çkyçur"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149408\n"
+"00000402.xhp\n"
+"par_id3150020\n"
"help.text"
-msgid "<image id=\"img_id3154421\" src=\"cmd/sc_alignright.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154421\">Icon</alt></image>"
+msgid "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149121\">Icon</alt></image>"
msgstr ""
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id3153607\n"
-"74\n"
-"help.text"
-msgid "Align Right"
-msgstr "Rreshto djathtas"
-
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149189\n"
-"75\n"
+"00000402.xhp\n"
+"par_id3144748\n"
+"50\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Centered</emph> (drawing functions)"
-msgstr ""
+msgid "Find & Replace"
+msgstr "Gjej dhe Zëvendëso"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154624\n"
-"138\n"
+"00000402.xhp\n"
+"par_id3156357\n"
+"552\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Center</emph>"
+msgid "<variable id=\"suchenattribute\">Choose <emph>Edit - Find & Replace - Attributes</emph></variable>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153815\n"
+"00000402.xhp\n"
+"par_id3153840\n"
+"553\n"
"help.text"
-msgid "<image id=\"img_id3149757\" src=\"cmd/sc_centerpara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149757\">Icon</alt></image>"
+msgid "<variable id=\"suchenformat\">Choose <emph>Edit - Find & Replace - Format</emph> button </variable>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153076\n"
-"77\n"
+"00000402.xhp\n"
+"par_id3146971\n"
+"554\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgid "Choose <emph>Edit - Find & Replace - Similarity search</emph> check box and <emph>...</emph> button."
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146151\n"
-"78\n"
+"00000402.xhp\n"
+"par_id3153709\n"
+"572\n"
"help.text"
-msgid "Choose <emph>Format - Alignment - Justified</emph> (drawing functions)"
+msgid "On the <emph>Table Data</emph> Bar, click <emph>Find</emph> icon - <emph>Similarity search</emph> check box - <emph>...</emph> button (database table view)"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3168612\n"
-"139\n"
+"00000402.xhp\n"
+"par_id3150749\n"
+"573\n"
"help.text"
-msgid "Open context menu - choose <emph>Alignment - Justified</emph>"
+msgid "On <emph>Form Design</emph> Bar, click <emph>Record Search</emph> - <emph>Similarity search</emph> check box - <emph>...</emph> button (form view)"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156189\n"
+"00000402.xhp\n"
+"par_id3152960\n"
+"534\n"
"help.text"
-msgid "<image id=\"img_id3145308\" src=\"cmd/sc_justifypara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145308\">Icon</alt></image>"
-msgstr ""
+msgid "Choose <emph>View - Navigator</emph>"
+msgstr "Zgjidh një fjalëkalim për përdoruesin e ri:"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153131\n"
-"80\n"
+"00000402.xhp\n"
+"par_id3163824\n"
+"535\n"
"help.text"
-msgid "Justified"
-msgstr "Rrafshuar në të dy anët"
+msgid "On <emph>Standard</emph> Bar, click"
+msgstr "Shiriti i Funksionit kyçur/çkyçur"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3150527\n"
-"81\n"
+"00000402.xhp\n"
+"par_id3159183\n"
"help.text"
-msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgid "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154508\">Icon</alt></image>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3144503\n"
-"103\n"
+"00000402.xhp\n"
+"par_id3147359\n"
+"536\n"
"help.text"
-msgid "Choose <emph>Format - Group</emph>"
-msgstr "Nuk mund ta hap fajllin $(URL1)."
+msgid "Navigator On/Off"
+msgstr "Navigator kyçur/çkyçur"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3154854\n"
-"140\n"
+"00000402.xhp\n"
+"par_id3147338\n"
+"576\n"
"help.text"
-msgid "Open context menu - choose <emph>Group</emph>"
+msgid "<variable id=\"litdat\">Choose <emph>Tools - Bibliography Database</emph></variable>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3157985\n"
-"83\n"
+"00000402.xhp\n"
+"par_id3149281\n"
+"538\n"
"help.text"
-msgid "Choose <emph>Format - Group - Group</emph> (text documents, spreadsheets)"
-msgstr ""
+msgid "<variable id=\"link\">Choose <emph>Edit - Links</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3157980\n"
-"104\n"
+"00000402.xhp\n"
+"par_id3159339\n"
+"551\n"
"help.text"
-msgid "Choose <emph>Modify - Group</emph> (drawing documents)"
+msgid "<variable id=\"linkae\">Choose <emph>Edit - Links - Modify Link</emph> (DDE links only) </variable>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149508\n"
-"84\n"
+"00000402.xhp\n"
+"par_id3148927\n"
+"543\n"
"help.text"
-msgid "Open context menu - choose <emph>Group - Group</emph> (form objects)"
+msgid "Select a frame, then choose <emph>Edit - Object - Properties</emph>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146858\n"
+"00000402.xhp\n"
+"par_id3156315\n"
+"577\n"
"help.text"
-msgid "<image id=\"img_id3154344\" src=\"cmd/sc_formatgroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154344\">Icon</alt></image>"
+msgid "Open context menu of selected frame - choose <emph>Properties</emph>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149593\n"
-"113\n"
+"00000402.xhp\n"
+"par_id3151251\n"
+"545\n"
"help.text"
-msgid "Group"
-msgstr "Grupi"
+msgid "<variable id=\"plugin\">Choose <emph>Edit - Plug-in</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153023\n"
-"85\n"
+"00000402.xhp\n"
+"par_id3156091\n"
+"546\n"
"help.text"
-msgid "Choose <emph>Format - Group - Ungroup</emph> (text documents, spreadsheets)"
+msgid "<variable id=\"imagemap\">Choose <emph>Edit - ImageMap</emph> (also in context menu of selected object) </variable>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3163378\n"
-"105\n"
+"00000402.xhp\n"
+"par_id3155936\n"
+"550\n"
"help.text"
-msgid "Choose <emph>Modify - Ungroup</emph> (drawing documents)"
+msgid "<variable id=\"imapeigbea\">Choose <emph>Edit - ImageMap</emph>, then select a section of the ImageMap and click <emph>Properties - Description</emph></variable>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3156038\n"
-"86\n"
+"00000402.xhp\n"
+"par_id3149259\n"
+"547\n"
"help.text"
-msgid "Open context menu - choose <emph>Ungroup</emph>"
-msgstr ""
+msgid "<variable id=\"edit1\">Choose <emph>Edit - Object</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3151300\n"
+"00000402.xhp\n"
+"par_id3154966\n"
+"548\n"
"help.text"
-msgid "<image id=\"img_id3150831\" src=\"cmd/sc_formatungroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150831\">Icon</alt></image>"
+msgid "<variable id=\"edit2\">Choose <emph>Edit - Object - Edit</emph>, also in the context menu of selected object </variable>"
msgstr ""
-#: 00040502.xhp
+#: 00000402.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3146894\n"
-"115\n"
+"00000402.xhp\n"
+"par_id3149565\n"
+"549\n"
"help.text"
-msgid "Ungroup"
-msgstr "Zhgrupo"
+msgid "<variable id=\"edit3\">Choose <emph>Edit - Object - Open</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3153109\n"
-"106\n"
+"00000403.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph>Format - Group - Exit Group</emph> (text documents, spreadsheets)"
-msgstr ""
+msgid "View Menu"
+msgstr "AutoPilot Meny"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145678\n"
-"107\n"
+"00000403.xhp\n"
+"hd_id3156304\n"
+"1\n"
"help.text"
-msgid "Choose <emph>Modify - Exit Group</emph> (drawing documents)"
-msgstr ""
+msgid "View Menu"
+msgstr "AutoPilot Meny"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152367\n"
-"108\n"
+"00000403.xhp\n"
+"par_id3146936\n"
+"12\n"
"help.text"
-msgid "Open context menu - choose <emph>Exit Group</emph>"
-msgstr ""
+msgid "Choose <emph>View - Zoom</emph>"
+msgstr "Zgjidh një fjalëkalim për përdoruesin e ri:"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3158402\n"
+"00000403.xhp\n"
+"par_id3149962\n"
+"24\n"
"help.text"
-msgid "<image id=\"img_id3149422\" src=\"cmd/sc_leavegroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149422\">Icon</alt></image>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Zoom also with (+) (-) (×) and (÷) on the number keypad </caseinline><caseinline select=\"IMPRESS\">Zoom also with (+) (-) (×) and (÷) on the number keypad </caseinline></switchinline>"
msgstr ""
-#: 00040502.xhp
-msgctxt ""
-"00040502.xhp\n"
-"par_id3155347\n"
-"117\n"
-"help.text"
-msgid "Exit Group"
-msgstr "Grupi Dalës"
-
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149129\n"
-"109\n"
+"00000403.xhp\n"
+"par_id3152895\n"
+"13\n"
"help.text"
-msgid "Choose <emph>Format - Group - Enter Group</emph> (text documents, spreadsheets)"
+msgid "Double-click or right-click the field on the <emph>Status</emph> Bar"
msgstr ""
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3145354\n"
-"110\n"
+"00000403.xhp\n"
+"par_id3156183\n"
+"36\n"
"help.text"
-msgid "Choose <emph>Modify - Enter Group</emph> (drawing documents)"
-msgstr ""
+msgid "Choose <emph>View - Toolbars</emph>"
+msgstr "Zgjidh një fjalëkalim për përdoruesin e ri:"
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3149946\n"
-"111\n"
+"00000403.xhp\n"
+"par_id3166445\n"
+"15\n"
"help.text"
-msgid "Open context menu - choose <emph>Enter Group</emph>"
+msgid "<variable id=\"funktion\">Choose <emph>View - Toolbars - Standard</emph></variable>"
msgstr ""
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152388\n"
+"00000403.xhp\n"
+"par_id3153748\n"
+"17\n"
"help.text"
-msgid "<image id=\"img_id3149900\" src=\"cmd/sc_entergroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149900\">Icon</alt></image>"
+msgid "<variable id=\"werkzeug\">Choose <emph>View - Toolbars - Tools</emph></variable>"
msgstr ""
-#: 00040502.xhp
+#: 00000403.xhp
msgctxt ""
-"00040502.xhp\n"
-"par_id3152547\n"
-"119\n"
+"00000403.xhp\n"
+"par_id3154317\n"
+"18\n"
"help.text"
-msgid "Enter Group"
-msgstr "Fut grupin"
+msgid "<variable id=\"task\">Choose <emph>View - Status Bar</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000207.xhp
-#, fuzzy
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"tit\n"
+"00000403.xhp\n"
+"par_id3152780\n"
+"19\n"
"help.text"
-msgid "Export text files"
-msgstr "Eksporti i fajleve tekstuale"
+msgid "<variable id=\"farbleiste\">Choose <emph>View - Toolbars - Color Bar</emph></variable>"
+msgstr ""
-#: 00000207.xhp
-#, fuzzy
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id3153116\n"
-"1\n"
+"00000403.xhp\n"
+"par_id3156113\n"
+"43\n"
"help.text"
-msgid "Export text files"
-msgstr "Eksporti i fajleve tekstuale"
+msgid "<variable id=\"ime\">Choose <emph>View - Input Method Status</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3150379\n"
-"7\n"
+"00000403.xhp\n"
+"par_id3157909\n"
+"32\n"
"help.text"
-msgid "The <emph>Export text files</emph> dialog allows you to define the export options for text files. The dialog will be displayed if you save spreadsheet data as file type \"Text CSV\", and if the <emph>Edit filter settings</emph> check box is marked in the <emph>Save As</emph> dialog."
+msgid "Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Internet</emph>"
msgstr ""
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id3155577\n"
-"2\n"
+"00000403.xhp\n"
+"par_id3146806\n"
+"42\n"
"help.text"
-msgid "Field options"
-msgstr "Opcionet e fushës"
+msgid "Choose <emph>Insert - Hyperlink</emph>"
+msgstr ""
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3152427\n"
-"8\n"
+"00000403.xhp\n"
+"par_id3153717\n"
+"38\n"
"help.text"
-msgid "Defines the field separator, text separator and character set that is used for the text export."
+msgid "<variable id=\"hypdiamailnews\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Mail & News</emph></variable>"
msgstr ""
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id3152876\n"
-"5\n"
+"00000403.xhp\n"
+"par_id3149415\n"
+"34\n"
"help.text"
-msgid "Character set"
-msgstr "Komplet karakteresh"
+msgid "<variable id=\"hypdiadok\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>Document</emph></variable>"
+msgstr ""
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3154689\n"
-"11\n"
+"00000403.xhp\n"
+"par_id3150129\n"
+"35\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:DDLB_FONT\">Specifies the character set for text export.</ahelp>"
+msgid "<variable id=\"hypdianeudok\">Click <emph>Hyperlink</emph> icon on <emph>Standard</emph> bar, click <emph>New Document</emph></variable>"
msgstr ""
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id3145138\n"
-"3\n"
+"00000403.xhp\n"
+"par_id3159269\n"
+"20\n"
"help.text"
-msgid "Field delimiter"
-msgstr "~Kufizuesi i fushës"
+msgid "Choose <emph>View - Full Screen</emph>"
+msgstr "Zgjidh një fjalëkalim për përdoruesin e ri:"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3150838\n"
-"9\n"
+"00000403.xhp\n"
+"par_id3149578\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_FIELDSEP\">Choose or enter the field delimiter, which separates data fields.</ahelp>"
+msgid "Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+J"
msgstr ""
-#: 00000207.xhp
-msgctxt ""
-"00000207.xhp\n"
-"hd_id3154682\n"
-"4\n"
-"help.text"
-msgid "Text delimiter"
-msgstr "~Kufizuesi i tekstit"
-
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3154863\n"
-"10\n"
+"00000403.xhp\n"
+"par_id3153257\n"
"help.text"
-msgid "<ahelp hid=\"SC:COMBOBOX:RID_SCDLG_IMPORTOPT:ED_TEXTSEP\">Choose or enter the text delimiter, which encloses every data field.</ahelp>"
+msgid "<image id=\"img_id3148473\" src=\"cmd/sc_fullscreen.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148473\">Icon</alt></image>"
msgstr ""
-#: 00000207.xhp
-#, fuzzy
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id783149793\n"
+"00000403.xhp\n"
+"par_id3153627\n"
+"44\n"
"help.text"
-msgid "Quote all text cells"
-msgstr "Azhuro fushat e hyrjeve"
+msgid "Full Screen On/Off (in Page Preview)"
+msgstr ""
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3152778363\n"
+"00000403.xhp\n"
+"par_id3147559\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\">Exports all text cells with leading and trailing quote characters as set in the Text delimiter box. If not checked, only those text cells get quoted that contain the Field delimiter character.</ahelp>"
+msgid "If a text document or spreadsheet is open:"
msgstr ""
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id7145298\n"
+"00000403.xhp\n"
+"par_id3145069\n"
+"31\n"
"help.text"
-msgid "Save cell content as shown"
+msgid "Menu <emph>View - Data Sources</emph>"
msgstr ""
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id5719779\n"
+"00000403.xhp\n"
+"par_id3149046\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\".\">Enabled by default, data will be saved as displayed, including applied number formats. If this checkbox is not marked, raw data content will be saved, as in older versions of the software.</ahelp>"
-msgstr ""
+msgid "F4 key"
+msgstr "Lloj kyç"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3541062\n"
+"00000403.xhp\n"
+"par_id3153778\n"
"help.text"
-msgid "Depending on the number format, saving cell content as shown may write values that during an import cannot be interpreted as numerical values anymore."
+msgid "<image id=\"img_id3153524\" src=\"cmd/sc_viewdatasourcebrowser.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153524\">Icon</alt></image>"
msgstr ""
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"hd_id3149793\n"
-"12\n"
+"00000403.xhp\n"
+"par_id3146908\n"
+"39\n"
"help.text"
-msgid "Fixed column width"
-msgstr "Gjerësi fikse e ~shtyllës"
+msgid "Data Sources"
+msgstr "Burimet e të dhënave"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3152363\n"
-"13\n"
+"00000403.xhp\n"
+"par_id3154140\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_IMPORTOPT_CB_FIXEDWIDTH\">Exports all data fields with a fixed width.</ahelp>"
-msgstr ""
+msgid "Choose <emph>View - HTML Source</emph>"
+msgstr "Zgjidh një fjalëkalim për përdoruesin e ri:"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3149283\n"
-"14\n"
+"00000403.xhp\n"
+"par_id3154947\n"
+"23\n"
"help.text"
-msgid "The width of a data field in the exported text file is set to the current width of the corresponding column."
+msgid "Open context menu in an HTML document"
msgstr ""
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3154116\n"
-"15\n"
+"00000403.xhp\n"
+"par_id3152935\n"
"help.text"
-msgid "Values are exported in the format as currently seen in the cell."
+msgid "<image id=\"img_id3156422\" src=\"cmd/sc_sourceview.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156422\">Icon</alt></image>"
msgstr ""
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3156414\n"
-"16\n"
+"00000403.xhp\n"
+"par_id3144448\n"
+"11\n"
"help.text"
-msgid "If a value is longer than the fixed column width, it will be exported as a ### string."
-msgstr ""
+msgid "HTML Source"
+msgstr "Kod i HTML-së"
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3150178\n"
-"17\n"
+"00000403.xhp\n"
+"par_idN1091B\n"
"help.text"
-msgid "If a text string is longer than the fixed column width, it will be truncated at the end."
+msgid "<variable id=\"grid\">Choose <emph>View - Grid</emph> (Impress or Draw) </variable>"
msgstr ""
-#: 00000207.xhp
+#: 00000403.xhp
msgctxt ""
-"00000207.xhp\n"
-"par_id3148548\n"
-"18\n"
+"00000403.xhp\n"
+"par_idN1092E\n"
"help.text"
-msgid "The alignment Left, Centered, and Right will be simulated by inserted blanks."
+msgid "<variable id=\"guides\">Choose <emph>View - Snap Lines</emph> (Impress or Draw) </variable>"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
+"00000404.xhp\n"
"tit\n"
"help.text"
-msgid "Frequently-Used Buttons"
-msgstr "Butonat në përdorim"
+msgid "Insert Menu"
+msgstr "AutoPilot Meny"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3152952\n"
+"00000404.xhp\n"
+"hd_id3156324\n"
"1\n"
"help.text"
-msgid "Frequently-Used Buttons"
-msgstr "Butonat në përdorim"
+msgid "Insert Menu"
+msgstr "AutoPilot Meny"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3147617\n"
-"4\n"
+"00000404.xhp\n"
+"par_id3153808\n"
+"28\n"
"help.text"
-msgid "Cancel"
-msgstr "Anulo"
+msgid "<variable id=\"notiz\">Choose <emph>Insert - Comment</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155913\n"
-"5\n"
+"00000404.xhp\n"
+"par_id3155619\n"
+"71\n"
"help.text"
-msgid "<ahelp hid=\".\">Clicking <emph>Cancel</emph> closes a dialog without saving any changes made.</ahelp>"
-msgstr ""
+msgid "Choose <emph>Insert - Picture - Scan</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id2341685\n"
+"00000404.xhp\n"
+"par_id3150502\n"
+"30\n"
"help.text"
-msgid "Finish"
-msgstr "Përfundimi"
+msgid "Choose <emph>Insert - Picture - Scan - Select Source</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id6909390\n"
+"00000404.xhp\n"
+"par_id3155934\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\".\">Applies all changes and closes the wizard.</ahelp>"
-msgstr ""
+msgid "Choose <emph>Insert - Picture - Scan - Request</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3147477\n"
-"39\n"
+"00000404.xhp\n"
+"par_id3143281\n"
+"34\n"
"help.text"
-msgid "Toolbars"
-msgstr "Shiriti i veglave"
+msgid "Choose <emph>Insert - Special Character</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3149783\n"
-"40\n"
+"00000404.xhp\n"
+"par_id3149525\n"
+"35\n"
"help.text"
-msgid "By clicking the arrow next to some icons you open a toolbar. To move a toolbar, drag the title bar. As soon as you release the mouse button, the toolbar remains at the new position. Drag the title bar to another position, or drag to an edge of the window, where the toolbar will dock. Close a toolbar by clicking the Close Window icon. Make the toolbar visible again by choosing <emph>View - Toolbars - (toolbar name)</emph>."
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button</caseinline></switchinline>"
msgstr ""
-#: 00000001.xhp
-msgctxt ""
-"00000001.xhp\n"
-"hd_id3152414\n"
-"79\n"
-"help.text"
-msgid "Spin button"
-msgstr "Buton rrotullues"
-
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id1094088\n"
+"00000404.xhp\n"
+"par_id3152372\n"
+"55\n"
"help.text"
-msgid "In form controls, a spin button is a property of a numerical field, currency field, date field, or time field. If the property \"Spin button\" is enabled, the field shows a pair of symbols with arrows pointing to opposing directions, either vertically or horizontally."
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Choose <emph>Format - Bullets and Numbering - Customize - Character</emph> button</caseinline></switchinline>"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id7493209\n"
+"00000404.xhp\n"
+"par_id3156560\n"
+"36\n"
"help.text"
-msgid "In the Basic IDE, a spin button is the name used for the numerical field together with the two arrow symbols."
+msgid "Open the <emph>Insert</emph> toolbar, click"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155599\n"
-"78\n"
+"00000404.xhp\n"
+"par_id3153527\n"
"help.text"
-msgid "You can type a numerical value into the field next to the spin button, or select the value with the up-arrow or down-arrow symbols on the spin button. On the keyboard you can press the up arrow and down arrow keys to increase or reduce the value. You can press the Page Up and Page Down keys to set the maximum and minimum value."
+msgid "<image id=\"img_id3153748\" src=\"cmd/sc_bullet.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153748\">Icon</alt></image>"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3150264\n"
-"38\n"
+"00000404.xhp\n"
+"par_id3149751\n"
+"37\n"
"help.text"
-msgid "If the field next to the spin button defines numerical values, you can also define a <link href=\"text/shared/00/00000003.xhp#metrik\" name=\"measurement unit\">measurement unit</link>, for example, 1 cm or 5 mm, 12 pt or 2\"."
-msgstr ""
+msgid "Special Character"
+msgstr "karakter special"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3154232\n"
-"76\n"
+"00000404.xhp\n"
+"par_idN107CD\n"
"help.text"
-msgid "Convert"
-msgstr "Shndërro"
+msgid "<variable id=\"moviesound\">Choose <emph>Insert - Movie and Sound</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3148983\n"
-"77\n"
+"00000404.xhp\n"
+"par_idN1085D\n"
"help.text"
-msgid "<ahelp hid=\".\">If you click forward through the dialog, this button is called <emph>Next</emph>. On the last page the button has the name <emph>Convert</emph>. The conversion is then performed by clicking the button.</ahelp>"
-msgstr ""
+msgid "Movie and Sound"
+msgstr "Fil~mi dhevZëri"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3145129\n"
-"42\n"
+"00000404.xhp\n"
+"par_id3147242\n"
+"5\n"
"help.text"
-msgid "Context Menu"
-msgstr "AutoPilot Meny"
+msgid "<variable id=\"objekteinf\">Choose <emph>Insert - Object</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3156553\n"
-"44\n"
+"00000404.xhp\n"
+"par_id3152996\n"
+"6\n"
"help.text"
-msgid "<variable id=\"context\">To activate the context menu of an object, first click the object with the <switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>left</defaultinline></switchinline> mouse button to select it, and then, <switchinline select=\"sys\"><caseinline select=\"MAC\">while holding down the Ctrl key or the Command and Option keys, click the mouse button again</caseinline><defaultinline> click the right mouse button</defaultinline></switchinline>. Some context menus can be called even if the object has not been selected. Context menus are found just about everywhere in $[officename].</variable>"
-msgstr ""
+msgid "Choose <emph>Insert - Object - OLE Object</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3149180\n"
-"24\n"
+"00000404.xhp\n"
+"par_id3146806\n"
+"7\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "Open the <emph>Insert</emph> toolbar, click"
+msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3153750\n"
-"25\n"
+"00000404.xhp\n"
+"par_id3150254\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected element or elements after confirmation.</ahelp>"
+msgid "<image id=\"img_id3156305\" src=\"cmd/sc_insobjctrl.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156305\">Icon</alt></image>"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3147557\n"
-"45\n"
+"00000404.xhp\n"
+"par_id3145417\n"
+"8\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "OLE Object"
+msgstr "OLE objekt"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155338\n"
-"46\n"
+"00000404.xhp\n"
+"par_id3153087\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected element or elements without requiring confirmation.</ahelp>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Choose <emph>Insert - Object - Plug-in</emph></caseinline></switchinline>"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3148620\n"
-"6\n"
+"00000404.xhp\n"
+"par_id3149785\n"
+"10\n"
"help.text"
-msgid "Metrics"
-msgstr "Metrikat"
+msgid "Open the <emph>Insert </emph>toolbar, click"
+msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3145345\n"
-"7\n"
+"00000404.xhp\n"
+"par_id3154897\n"
"help.text"
-msgid "You can enter values in the input fields in different units of measurement. The default unit is inches. However, if you want a space of exactly 1cm, then type \"1cm\". Additional units are available according to the context, for example, 12 pt for a 12 point spacing. If the value of the new unit is unrealistic, the program uses a predefined maximum or minimum value."
+msgid "<image id=\"img_id3146847\" src=\"cmd/sc_insertplugin.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146847\">Icon</alt></image>"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3155535\n"
-"8\n"
+"00000404.xhp\n"
+"par_id3148474\n"
+"11\n"
"help.text"
-msgid "Close"
-msgstr "Mbylle"
+msgid "Plug-in"
+msgstr "Lësho në..."
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3147008\n"
-"9\n"
+"00000404.xhp\n"
+"par_id3153880\n"
+"53\n"
"help.text"
-msgid "<ahelp hid=\".\">Closes the dialog and saves all changes.</ahelp>"
-msgstr ""
+msgid "Choose <emph>Insert - Object - Sound</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3147275\n"
-"57\n"
+"00000404.xhp\n"
+"par_id3143278\n"
+"54\n"
"help.text"
-msgid "Close"
-msgstr "Mbylle"
+msgid "Choose <emph>Insert - Object - Video</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3153031\n"
-"58\n"
+"00000404.xhp\n"
+"par_id3150393\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\".\">Closes the dialog.</ahelp>"
-msgstr ""
+msgid "Choose <emph>Insert - Object - Formula</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3156113\n"
+"00000404.xhp\n"
+"par_id3153056\n"
"16\n"
"help.text"
-msgid "Apply"
-msgstr "Zbato"
+msgid "Open the <emph>Insert </emph>toolbar, click"
+msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155341\n"
-"17\n"
+"00000404.xhp\n"
+"par_id3148559\n"
"help.text"
-msgid "<ahelp hid=\".\">Applies the modified or selected values without closing the dialog.</ahelp>"
+msgid "<image id=\"img_id3149933\" src=\"cmd/sc_insertobjectstarmath.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149933\">Icon</alt></image>"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3153760\n"
-"47\n"
+"00000404.xhp\n"
+"par_id3155858\n"
+"17\n"
"help.text"
-msgid "Shrink / Maximize"
-msgstr "Minimizo/Maksimizo"
+msgid "Formula"
+msgstr "Formula"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3153087\n"
-"48\n"
+"00000404.xhp\n"
+"par_id3153144\n"
+"38\n"
"help.text"
-msgid "<ahelp hid=\".\">Click the<emph> Shrink </emph>icon to reduce the dialog to the size of the input field. It is then easier to mark the required reference in the sheet. The icons then automatically convert to the <emph>Maximize</emph> icon. Click it to restore the dialog to its original size.</ahelp>"
-msgstr ""
+msgid "Choose <emph>Format - Chart Type</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155062\n"
-"49\n"
+"00000404.xhp\n"
+"par_id3147578\n"
+"39\n"
"help.text"
-msgid "The dialog is automatically minimized when you click into a sheet with the mouse. As soon as you release the mouse button, the dialog is restored and the reference range defined with the mouse is highlighted in the document by a blue frame."
-msgstr ""
+msgid "Choose <emph>Insert - Object - Chart </emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3157808\n"
+"00000404.xhp\n"
+"par_id3154011\n"
+"40\n"
"help.text"
-msgid "<image id=\"img_id3148685\" src=\"formula/res/refinp1.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3148685\">Icon</alt></image>"
-msgstr ""
+msgid "Choose <emph>Format - Chart Type</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3153321\n"
-"50\n"
+"00000404.xhp\n"
+"par_id3153573\n"
+"41\n"
"help.text"
-msgid "Shrink"
-msgstr "Tkurr"
+msgid "Choose <emph>Insert - Object - Chart</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3153349\n"
+"00000404.xhp\n"
+"par_id3159179\n"
+"42\n"
"help.text"
-msgid "<image id=\"img_id3149784\" src=\"formula/res/refinp2.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3149784\">Icon</alt></image>"
-msgstr ""
+msgid "Choose <emph>Format - Chart Type</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155628\n"
-"51\n"
+"00000404.xhp\n"
+"par_id3159196\n"
+"43\n"
"help.text"
-msgid "Maximize"
-msgstr "Maksimizo"
+msgid "Choose <emph>Insert - Object - Chart</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3156192\n"
-"34\n"
+"00000404.xhp\n"
+"par_id3149664\n"
+"18\n"
"help.text"
-msgid "Preview Field"
-msgstr "Emri i fushës"
+msgid "Choose <emph>Insert - Object - Chart</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3154046\n"
-"35\n"
+"00000404.xhp\n"
+"par_id3154921\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays a preview of the current selection.</ahelp>"
+msgid "Open the <emph>Insert </emph>toolbar, click"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3145609\n"
-"70\n"
+"00000404.xhp\n"
+"par_id3156005\n"
"help.text"
-msgid "Next"
-msgstr "I ardhshmi"
+msgid "<image id=\"img_id3153739\" src=\"cmd/sc_drawchart.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153739\">Icon</alt></image>"
+msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3152473\n"
-"71\n"
+"00000404.xhp\n"
+"par_id3145749\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\".\">Click the<emph> Next </emph>button, and the wizard uses the current dialog settings and proceeds to the next step. If you are on the last step, this button becomes <emph>Create</emph>.</ahelp>"
-msgstr ""
+msgid "Chart"
+msgstr "Diagram"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3149670\n"
-"13\n"
+"00000404.xhp\n"
+"par_id3155513\n"
+"44\n"
"help.text"
-msgid "Back"
-msgstr "Prapa"
+msgid "Choose <emph>Insert - Picture - From File</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3145068\n"
-"14\n"
+"00000404.xhp\n"
+"par_id3155308\n"
+"45\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR_PUSHBUTTON_RID_OFADLG_OPTIONS_TREE_PB_BACK\">Resets modified values back to the $[officename] default values.</ahelp>"
+msgid "Open the <emph>Insert</emph> toolbar, click"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3148755\n"
-"59\n"
+"00000404.xhp\n"
+"par_id3145594\n"
"help.text"
-msgid "Reset"
-msgstr "Rifillo"
+msgid "<image id=\"img_id3144764\" src=\"cmd/sc_objectcatalog.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3144764\">Icon</alt></image>"
+msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3149651\n"
-"60\n"
+"00000404.xhp\n"
+"par_id3149960\n"
+"46\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Resets changes made to the current tab to those applicable when this dialog was opened. A confirmation query does not appear when you close the dialog.</ahelp>"
-msgstr ""
+msgid "From File"
+msgstr "Nga fajli..."
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3143278\n"
-"18\n"
+"00000404.xhp\n"
+"par_id3150037\n"
+"25\n"
"help.text"
-msgid "Reset"
-msgstr "Rifillo"
+msgid "Choose <emph>Insert - Floating Frame</emph>"
+msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3150791\n"
-"19\n"
+"00000404.xhp\n"
+"par_id3083281\n"
+"26\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_RESET_BTN\">Resets modified values back to the default values.</ahelp>"
+msgid "Open the <emph>Insert </emph>toolbar, click"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3154331\n"
-"20\n"
+"00000404.xhp\n"
+"par_id3168607\n"
"help.text"
-msgid "A confirmation query does not appear. If you confirm the dialog with OK all settings in this dialog are reset."
+msgid "<image id=\"img_id3147482\" src=\"cmd/sc_insertobjectfloatingframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147482\">Icon</alt></image>"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3145173\n"
-"10\n"
+"00000404.xhp\n"
+"par_id3148588\n"
+"27\n"
"help.text"
-msgid "Standard"
-msgstr "Standarde"
+msgid "Floating Frame"
+msgstr "Vendose kornizën lëvizëse"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3154153\n"
-"11\n"
+"00000404.xhp\n"
+"par_id3150396\n"
+"47\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Resets the values visible in the dialog back to the default installation values.</ahelp>"
+msgid "<variable id=\"filterauswahl\">Open a file of a type that is unknown to %PRODUCTNAME and that is no text file</variable>"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3154299\n"
-"12\n"
+"00000404.xhp\n"
+"par_idN10DDC\n"
"help.text"
-msgid "A confirmation does not appear before the defaults are reloaded."
+msgid "<image id=\"Graphic2\" src=\"cmd/sc_fontworkgalleryfloater.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3147502\n"
-"72\n"
+"00000404.xhp\n"
+"par_idN10DD1\n"
"help.text"
-msgid "Back"
-msgstr "Prapa"
+msgid "Fontwork Gallery"
+msgstr "Galeria e fonteve"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3150439\n"
-"73\n"
+"00000404.xhp\n"
+"par_idN10EA9\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">View the selections in the dialog made in the previous step. The current settings remain unchanged.</ahelp> This button can only be activated from page two on."
+msgid "<image id=\"Graphic3\" src=\"cmd/sc_basicshapes.diamond.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"hd_id3147352\n"
-"52\n"
+"00000404.xhp\n"
+"par_idN10ED8\n"
"help.text"
-msgid "More"
-msgstr "Më shumë"
+msgid "Basic Shapes"
+msgstr "Trajtat bazike"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3155314\n"
-"53\n"
+"00000404.xhp\n"
+"par_idN10EEE\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABDLG_STANDARD_BTN\">Click the<emph> More</emph> button to expand the dialog to show further options. Click again to restore the dialog.</ahelp>"
+msgid "<image id=\"Graphic4\" src=\"cmd/sc_symbolshapes.smiley.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3161659\n"
-"41\n"
+"00000404.xhp\n"
+"par_idN10F1D\n"
"help.text"
-msgid "<variable id=\"siehe\">See also the following functions: </variable>"
-msgstr ""
+msgid "Symbol Shapes"
+msgstr "Trajtat e simboleve"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3147418\n"
-"55\n"
+"00000404.xhp\n"
+"par_idN10F33\n"
"help.text"
-msgid "<variable id=\"regulaer\">The search supports <link href=\"text/shared/01/02100001.xhp\" name=\"regular expressions\">regular expressions</link>. You can enter \"all.*\", for example to find the first location of \"all\" followed by any characters. If you want to search for a text that is also a regular expression, you must precede every character with a \\ character. You can switch the automatic evaluation of regular expression on and off in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01060500.xhp\">%PRODUCTNAME Calc - Calculate</link>.</variable>"
+msgid "<image id=\"Graphic41\" src=\"cmd/sc_arrowshapes.left-right-arrow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3163714\n"
-"56\n"
+"00000404.xhp\n"
+"par_idN10F62\n"
"help.text"
-msgid "<variable id=\"wahr\">If an error occurs, the function returns a logical or numerical value. </variable>"
-msgstr ""
+msgid "Block Arrows"
+msgstr "Shigjetat e bllokut"
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3154145\n"
-"54\n"
+"00000404.xhp\n"
+"par_idN10F78\n"
"help.text"
-msgid "<variable id=\"kontext\">(This command is only accessible through the <link href=\"text/shared/00/00000005.xhp#kontextmenue\" name=\"context menu\">context menu</link>). </variable>"
+msgid "<image id=\"Graphic5\" src=\"cmd/sc_flowchartshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id3152791\n"
-"61\n"
+"00000404.xhp\n"
+"par_idN10FA7\n"
"help.text"
-msgid "<variable id=\"wiederholen\">By double-clicking a tool, you can use it for multiple tasks. If you call the tool with a single-click, it reverts back to the last selection after completing the task. </variable>"
+msgid "Flowcharts"
+msgstr "Grafikonët e rrjedhjes"
+
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_idN10FBD\n"
+"help.text"
+msgid "<image id=\"Graphic6\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
msgstr ""
-#: 00000001.xhp
+#: 00000404.xhp
msgctxt ""
-"00000001.xhp\n"
-"par_id9345377\n"
+"00000404.xhp\n"
+"par_idN10FEC\n"
"help.text"
-msgid "<variable id=\"ShiftF1\">Press Shift+F1 and point to a control to learn more about that control. </variable>"
+msgid "Callouts"
+msgstr "Thirrjet"
+
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_idN11002\n"
+"help.text"
+msgid "<image id=\"Graphic7\" src=\"cmd/sc_starshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
msgstr ""
+#: 00000404.xhp
+msgctxt ""
+"00000404.xhp\n"
+"par_idN11031\n"
+"help.text"
+msgid "Stars"
+msgstr "Yjet"
+
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
@@ -8574,7 +8539,6 @@ msgid "<variable id=\"xmlfiltertest\">Choose <emph>Tools - XML Filter Settings</
msgstr ""
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3148672\n"
@@ -8584,7 +8548,6 @@ msgid "<variable id=\"anpassen\">Choose <emph>Tools - Customize</emph></variable
msgstr "Zgjidh një tjetër filesistem root"
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3147230\n"
@@ -8628,7 +8591,6 @@ msgid "<variable id=\"symbole\">Choose <emph>Tools - Customize - Toolbars</emph>
msgstr ""
#: 00000406.xhp
-#, fuzzy
msgctxt ""
"00000406.xhp\n"
"par_id3144432\n"
@@ -8652,7 +8614,7 @@ msgctxt ""
"par_id3153768\n"
"51\n"
"help.text"
-msgid "<variable id=\"autokooptionen\">Choose <emph>Tools - AutoCorrect Options</emph> tab</variable>"
+msgid "<variable id=\"autokooptionen\">Choose <emph>Tools - AutoCorrect Options - Options</emph> tab</variable>"
msgstr ""
#: 00000406.xhp
@@ -9077,15 +9039,6 @@ msgstr ""
#: 00000406.xhp
msgctxt ""
"00000406.xhp\n"
-"par_id3159339\n"
-"36\n"
-"help.text"
-msgid "<variable id=\"internet4\">Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet - Search</emph></variable>"
-msgstr ""
-
-#: 00000406.xhp
-msgctxt ""
-"00000406.xhp\n"
"par_id3149280\n"
"94\n"
"help.text"
@@ -9430,2917 +9383,1444 @@ msgctxt ""
msgid "<variable id=\"registered\">Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Base - Databases</emph></variable>"
msgstr ""
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
+"00000407.xhp\n"
"tit\n"
"help.text"
-msgid "To access this command..."
-msgstr "Dështova në ekzekutimin e komandës"
+msgid "Window Menu"
+msgstr "AutoPilot Meny"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
-"hd_id3160447\n"
+"00000407.xhp\n"
+"hd_id3154349\n"
"1\n"
"help.text"
-msgid "<variable id=\"wie\">To access this command...</variable>"
-msgstr ""
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3147212\n"
-"47\n"
-"help.text"
-msgid "<variable id=\"related\"><emph>Related Topics</emph></variable>"
-msgstr ""
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id56935339\n"
-"help.text"
-msgid "Enable or disable the Help Agent on <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - General</emph>."
-msgstr ""
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3154689\n"
-"help.text"
-msgid "<image id=\"img_id3152427\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152427\">Icon</alt></image>"
-msgstr ""
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3146067\n"
-"46\n"
-"help.text"
-msgid "Font Color"
-msgstr "Ngjyra e Fontit"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3157898\n"
-"help.text"
-msgid "<image id=\"img_id3149716\" src=\"cmd/sc_color.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149716\">Icon</alt></image>"
-msgstr ""
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3149893\n"
-"7\n"
-"help.text"
-msgid "Font Color"
-msgstr "Ngjyra e Fontit"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3149750\n"
-"help.text"
-msgid "<image id=\"img_id3146957\" src=\"cmd/sc_justifypara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146957\">Icon</alt></image>"
-msgstr ""
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3150693\n"
-"8\n"
-"help.text"
-msgid "Line spacing: 1"
-msgstr "Hapësira në mes të rreshtave"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3145382\n"
-"help.text"
-msgid "<image id=\"img_id3163802\" src=\"cmd/sc_spacepara15.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163802\">Icon</alt></image>"
-msgstr ""
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3154173\n"
-"9\n"
-"help.text"
-msgid "Line spacing: 1.5"
-msgstr "Hapësira në mes të rreshtave"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3150131\n"
-"help.text"
-msgid "<image id=\"img_id3153252\" src=\"cmd/sc_spacepara2.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153252\">Icon</alt></image>"
-msgstr ""
+msgid "Window Menu"
+msgstr "AutoPilot Meny"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3152824\n"
-"10\n"
+"00000407.xhp\n"
+"par_id3083278\n"
+"6\n"
"help.text"
-msgid "Line spacing: 2"
-msgstr "Hapësira në mes të rreshtave"
+msgid "<variable id=\"window\">Choose <emph>Window - New Window</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000004.xhp
+#: 00000407.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3149820\n"
+"00000407.xhp\n"
+"par_id3154545\n"
+"13\n"
"help.text"
-msgid "<image id=\"img_id3153126\" src=\"cmd/sc_superscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153126\">Icon</alt></image>"
+msgid "<variable id=\"liste\">Choose <emph>Window</emph> - List of open documents</variable>"
msgstr ""
-#: 00000004.xhp
+#: 00000408.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3145121\n"
-"11\n"
+"00000408.xhp\n"
+"tit\n"
"help.text"
-msgid "Superscript"
-msgstr "Mbishkrim"
+msgid "Help Menu"
+msgstr "Menyja për ndihmë"
-#: 00000004.xhp
+#: 00000408.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3147077\n"
+"00000408.xhp\n"
+"hd_id3154689\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3155135\" src=\"cmd/sc_subscript.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155135\">Icon</alt></image>"
-msgstr ""
+msgid "Help Menu"
+msgstr "Menyja për ndihmë"
-#: 00000004.xhp
+#: 00000408.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3151385\n"
-"12\n"
+"00000408.xhp\n"
+"par_id3150960\n"
+"2\n"
"help.text"
-msgid "Subscript"
-msgstr "Nënshkrim"
+msgid "<variable id=\"content\">Choose <emph>Help - Contents</emph></variable>"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000004.xhp
+#: 00000408.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3148550\n"
+"00000408.xhp\n"
+"par_id3147240\n"
+"14\n"
"help.text"
-msgid "<image id=\"img_id3149294\" src=\"res/helpimg/feldurch.png\" width=\"0.9374inch\" height=\"0.2398inch\"><alt id=\"alt_id3149294\">Icon</alt></image>"
+msgid "<variable id=\"infoanwendung\">Choose <emph>Help - About </emph><emph>%PRODUCTNAME</emph></variable>"
msgstr ""
-#: 00000004.xhp
+#: 00000408.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3152772\n"
+"00000408.xhp\n"
+"par_id3151387\n"
"15\n"
"help.text"
-msgid "Line Style"
-msgstr "Stili i linjës"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3153379\n"
-"help.text"
-msgid "<image id=\"img_id3148401\" src=\"res/helpimg/feldcolo.png\" width=\"1.0417inch\" height=\"0.2398inch\"><alt id=\"alt_id3148401\">Icon</alt></image>"
+msgid "Automatically after <item type=\"productname\">%PRODUCTNAME</item> is first started."
msgstr ""
-#: 00000004.xhp
+#: 00000408.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3149290\n"
+"00000408.xhp\n"
+"par_id3153808\n"
"16\n"
"help.text"
-msgid "Line Color"
-msgstr "Ngjyra e Linjës"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3156214\n"
-"help.text"
-msgid "<image id=\"img_id3149807\" src=\"res/helpimg/feldbrei.png\" width=\"0.6563inch\" height=\"0.2189inch\"><alt id=\"alt_id3149807\">Icon</alt></image>"
-msgstr ""
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3163044\n"
-"17\n"
-"help.text"
-msgid "Line Width"
-msgstr "Gjerësia e linjës"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3154154\n"
-"help.text"
-msgid "<image id=\"img_id3145152\" src=\"res/helpimg/swh00117.png\" width=\"2.0835inch\" height=\"0.2398inch\"><alt id=\"alt_id3145152\">Icon</alt></image>"
-msgstr ""
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3150650\n"
-"18\n"
-"help.text"
-msgid "Area Style / Filling"
-msgstr "Stili i Zonës / Mbushja"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3153367\n"
-"help.text"
-msgid "<image id=\"img_id3147502\" src=\"cmd/sc_aligntop.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147502\">Icon</alt></image>"
-msgstr ""
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3148557\n"
-"20\n"
-"help.text"
-msgid "Align Top"
-msgstr "Rreshto në Majë"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3146923\n"
-"help.text"
-msgid "<image id=\"img_id3150410\" src=\"cmd/sc_cellvertbottom.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150410\">Icon</alt></image>"
-msgstr ""
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3149287\n"
-"21\n"
-"help.text"
-msgid "Align Bottom"
-msgstr "Rreshto poshtë"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3153097\n"
-"help.text"
-msgid "<image id=\"img_id3153363\" src=\"cmd/sc_alignvcenter.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153363\">Icon</alt></image>"
-msgstr ""
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3150873\n"
-"22\n"
-"help.text"
-msgid "Align Center Vertically"
-msgstr "Rreshto në Qendrën Vertikalisht"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3147436\n"
-"help.text"
-msgid "<image id=\"img_id3159123\" src=\"svx/res/nu07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3159123\">Icon</alt></image>"
-msgstr ""
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3147418\n"
-"27\n"
-"help.text"
-msgid "Apply"
-msgstr "Zbato"
-
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3146147\n"
-"help.text"
-msgid "<image id=\"img_id3145364\" src=\"svx/res/nu08.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145364\">Icon</alt></image>"
+msgid "Choose <emph>Help - Registration</emph> (this is a direct link to an external website)"
msgstr ""
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3148617\n"
-"28\n"
-"help.text"
-msgid "Cancel"
-msgstr "Anulo"
-
-#: 00000004.xhp
+#: 00000409.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3154730\n"
+"00000409.xhp\n"
+"tit\n"
"help.text"
-msgid "<image id=\"img_id3154096\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154096\">Icon</alt></image>"
-msgstr ""
+msgid "Toolbars"
+msgstr "Shiriti i veglave"
-#: 00000004.xhp
+#: 00000409.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3145800\n"
-"30\n"
+"00000409.xhp\n"
+"hd_id3149517\n"
+"1\n"
"help.text"
-msgid "Up One Level"
-msgstr "Një nivel më lartë"
+msgid "Toolbars"
+msgstr "Shiriti i veglave"
-#: 00000004.xhp
+#: 00000409.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3149412\n"
+"00000409.xhp\n"
+"par_id3156053\n"
+"2\n"
"help.text"
-msgid "<image id=\"img_id3153279\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153279\">Icon</alt></image>"
+msgid "Choose <emph>Data - Filter - Standard Filter</emph>"
msgstr ""
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3154064\n"
-"48\n"
-"help.text"
-msgid "Create New Directory"
-msgstr "Krijo një Folder të ri"
-
-#: 00000004.xhp
+#: 00000409.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3153221\n"
+"00000409.xhp\n"
+"par_id3154350\n"
+"3\n"
"help.text"
-msgid "<image id=\"img_id3153334\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153334\">Icon</alt></image>"
+msgid "Database table view: <emph>Standard Filter</emph> icon in the <emph>Database</emph> Toolbar"
msgstr ""
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3145646\n"
-"39\n"
-"help.text"
-msgid "Up One Level"
-msgstr "Një nivel më lartë"
-
-#: 00000004.xhp
+#: 00000409.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3151320\n"
+"00000409.xhp\n"
+"par_id3154183\n"
+"4\n"
"help.text"
-msgid "<image id=\"img_id3148833\" src=\"fpicker/res/fp014.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148833\">Icon</alt></image>"
+msgid "Form view: <emph>Standard Filter</emph> icon in the <emph>Form</emph> Bar"
msgstr ""
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3153005\n"
-"40\n"
-"help.text"
-msgid "Create New Directory"
-msgstr "Krijo një Folder të ri"
-
-#: 00000004.xhp
+#: 00000409.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3146990\n"
+"00000409.xhp\n"
+"par_id3155619\n"
"help.text"
-msgid "<image id=\"img_id3147257\" src=\"fpicker/res/fp011.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147257\">Icon</alt></image>"
+msgid "<image src=\"cmd/sc_formfiltered.png\" id=\"img_id3147588\"><alt id=\"alt_id3147588\">Icon</alt></image>"
msgstr ""
-#: 00000004.xhp
+#: 00000409.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3153949\n"
-"41\n"
+"00000409.xhp\n"
+"par_id3148731\n"
+"5\n"
"help.text"
-msgid "Default Directory"
-msgstr "Folderi standard"
+msgid "Standard Filter"
+msgstr "Filtër Standard"
-#: 00000004.xhp
+#: 00000450.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3156361\n"
+"00000450.xhp\n"
+"tit\n"
"help.text"
-msgid "<image id=\"img_id3150656\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150656\">Icon</alt></image>"
-msgstr ""
+msgid "Database"
+msgstr "Databaza"
-#: 00000004.xhp
+#: 00000450.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3146915\n"
-"35\n"
+"00000450.xhp\n"
+"hd_id3154689\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Go to the previous comment</ahelp>"
-msgstr ""
+msgid "Database"
+msgstr "Databaza"
-#: 00000004.xhp
+#: 00000450.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3151357\n"
+"00000450.xhp\n"
+"par_id3152876\n"
+"7\n"
"help.text"
-msgid "<image id=\"img_id3154363\" src=\"res/sc06300.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154363\">Icon</alt></image>"
+msgid "<variable id=\"DBTab\">In a database file window, choose <emph>Tools - Table Filter</emph></variable>"
msgstr ""
-#: 00000004.xhp
+#: 00000450.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3159184\n"
-"36\n"
+"00000450.xhp\n"
+"par_id3153244\n"
+"57\n"
"help.text"
-msgid "<ahelp hid=\".\">Go to the next comment</ahelp>"
+msgid "<variable id=\"DBAbfragen\"><emph>View - Database Objects - Queries</emph></variable>"
msgstr ""
-#: 00000004.xhp
+#: 00000450.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3083285\n"
+"00000450.xhp\n"
+"par_id3147294\n"
+"4\n"
"help.text"
-msgid "<image id=\"img_id3147100\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Icon</alt></image>"
+msgid "<variable id=\"Typ\">In a database file window, choose <emph>Edit - Database - Properties - Advanced Settings</emph> tab</variable>"
msgstr ""
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3147339\n"
-"37\n"
-"help.text"
-msgid "Open File"
-msgstr "Hape fajllin"
-
-#: 00000004.xhp
+#: 00000450.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3151189\n"
+"00000450.xhp\n"
+"par_id3159411\n"
+"5\n"
"help.text"
-msgid "<image id=\"img_id3156318\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156318\">Icon</alt></image>"
+msgid "<variable id=\"Datenquelle\">In a database file window of type ODBC or Address book, choose Edit - Database - Connection Type</variable>"
msgstr ""
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3149109\n"
-"38\n"
-"help.text"
-msgid "Save As"
-msgstr "Ruaje si"
-
-#: 00000004.xhp
+#: 00000450.xhp
msgctxt ""
-"00000004.xhp\n"
-"par_id3152946\n"
+"00000450.xhp\n"
+"par_id3149119\n"
+"6\n"
"help.text"
-msgid "<image id=\"img_id3155904\" src=\"cmd/sc_exportdirecttopdf.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155904\">Icon</alt></image>"
+msgid "<variable id=\"Verzeichnis\">Path selection button in various Wizards / <emph>Edit</emph> Buttons for some entries in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Paths</emph></variable>"
msgstr ""
-#: 00000004.xhp
-msgctxt ""
-"00000004.xhp\n"
-"par_id3155336\n"
-"76\n"
-"help.text"
-msgid "Export Directly as PDF"
-msgstr "Eksporto drejtpërdrejt si PDF"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"tit\n"
-"help.text"
-msgid "XML File Formats"
-msgstr "XML-iKalendar-Fajlli"
-
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"bm_id3154408\n"
+"00000450.xhp\n"
+"par_id3154497\n"
+"8\n"
"help.text"
-msgid "<bookmark_value>exporting; XML files</bookmark_value> <bookmark_value>XML file formats</bookmark_value> <bookmark_value>extensions; file formats</bookmark_value> <bookmark_value>suffixes in file formats</bookmark_value> <bookmark_value>document types in $[officename]</bookmark_value> <bookmark_value>file formats; changing $[officename] defaults</bookmark_value> <bookmark_value>defaults;file formats in $[officename]</bookmark_value> <bookmark_value>file formats;OpenDocument/XML</bookmark_value> <bookmark_value>OpenDocument file formats</bookmark_value> <bookmark_value>ODF file formats</bookmark_value>"
+msgid "<variable id=\"ODBC\">In a database file window of type ODBC, choose Edit - Database - Connection Type</variable>"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"hd_id3154408\n"
-"2\n"
+"00000450.xhp\n"
+"par_id3149355\n"
+"61\n"
"help.text"
-msgid "<variable id=\"xmlformat\"><link href=\"text/shared/00/00000021.xhp\" name=\"XML File Formats\">XML File Formats</link></variable>"
+msgid "<variable id=\"ldap\">In a database file window of type Address book - LDAP, choose Edit - Database - Properties</variable>"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3148919\n"
-"3\n"
+"00000450.xhp\n"
+"par_id3157896\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_DID_SAVE_PACKED_XML\">By default, $[officename] loads and saves files in the OpenDocument file format.</ahelp>"
+msgid "<variable id=\"JDBC\">In a database file window of type JDBC, choose <emph>Edit - Database - Properties</emph></variable>"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN10725\n"
+"00000450.xhp\n"
+"par_id3148548\n"
+"81\n"
"help.text"
-msgid "The OpenDocument file format (ODF) is a standardized file format used by many software applications. You can find more information at the Wikipedia site: <link href=\"http://en.wikipedia.org/wiki/OpenDocument\">wikipedia.org/wiki/OpenDocument</link>."
+msgid "<variable id=\"mysql\">In a database file window of type MySQL, choose <emph>Edit - Database - Properties</emph></variable>"
msgstr ""
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"hd_id3156324\n"
-"4\n"
-"help.text"
-msgid "OpenDocument file format names"
-msgstr "Gabim i gjetur në formatin e fajllit"
-
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3154926\n"
-"5\n"
+"00000450.xhp\n"
+"par_id3149346\n"
+"10\n"
"help.text"
-msgid "%PRODUCTNAME %PRODUCTVERSION uses the following file formats:"
+msgid "<variable id=\"dBase\">In a database file window of type dBASE, choose <emph>Edit - Database - Properties</emph></variable>"
msgstr ""
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_id3157898\n"
-"6\n"
-"help.text"
-msgid "Document format"
-msgstr "Format tjetër"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_id3149549\n"
-"7\n"
-"help.text"
-msgid "File extension"
-msgstr "Emri i fajllit pa zgjerim"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10762\n"
-"help.text"
-msgid "ODF Text"
-msgstr "Vizato tekstin"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10767\n"
-"help.text"
-msgid "*.odt"
-msgstr "%PRODUCTNAME Base (*.odb)"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN1076D\n"
-"help.text"
-msgid "ODF Text Template"
-msgstr "OpenDokument Tekst Shabllon"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10772\n"
-"help.text"
-msgid "*.ott"
-msgstr "%PRODUCTNAME Base (*.odb)"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10778\n"
-"help.text"
-msgid "ODF Master Document"
-msgstr "StarOffice 5.0 Master Dokument"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN1077D\n"
-"help.text"
-msgid "*.odm"
-msgstr "%PRODUCTNAME Base (*.odb)"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10783\n"
-"help.text"
-msgid "HTML Document"
-msgstr "HTML Dokument"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10788\n"
-"help.text"
-msgid "*.html"
-msgstr "HTML"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN1078E\n"
-"help.text"
-msgid "HTML Document Template"
-msgstr "HTML Dokument Shabllon"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10793\n"
-"help.text"
-msgid "*.oth"
-msgstr "%PRODUCTNAME Base (*.odb)"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10799\n"
-"help.text"
-msgid "ODF Spreadsheet"
-msgstr "Titull, Tabelë kalkuluese"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN1079E\n"
-"help.text"
-msgid "*.ods"
-msgstr "%PRODUCTNAME Base (*.odb)"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107A4\n"
-"help.text"
-msgid "ODF Spreadsheet Template"
-msgstr "Shabllon tabelar OpenDokument"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107A9\n"
-"help.text"
-msgid "*.ots"
-msgstr "%PRODUCTNAME Base (*.odb)"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107AF\n"
-"help.text"
-msgid "ODF Drawing"
-msgstr "Vizatim (%PRODUCTNAME 5.0)"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107B4\n"
-"help.text"
-msgid "*.odg"
-msgstr "%PRODUCTNAME Base (*.odb)"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107BA\n"
-"help.text"
-msgid "ODF Drawing Template"
-msgstr "OpenDocument Shabllon vizatimi"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107BF\n"
-"help.text"
-msgid "*.otg"
-msgstr "%PRODUCTNAME Base (*.odb)"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107C5\n"
-"help.text"
-msgid "ODF Presentation"
-msgstr "Stilet e prezantimit"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107CA\n"
-"help.text"
-msgid "*.odp"
-msgstr "%PRODUCTNAME Base (*.odb)"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107D0\n"
-"help.text"
-msgid "ODF Presentation Template"
-msgstr "OpenDokument Presentation Templatek"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107D5\n"
-"help.text"
-msgid "*.otp"
-msgstr "%PRODUCTNAME Base (*.odb)"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107DB\n"
-"help.text"
-msgid "ODF Formula"
-msgstr "Fontet e formulave"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN107E0\n"
-"help.text"
-msgid "*.odf"
-msgstr "%PRODUCTNAME Base (*.odb)"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN1085B\n"
-"help.text"
-msgid "ODF Database"
-msgstr "Kolonat e databazës"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN10860\n"
-"help.text"
-msgid "*.odb"
-msgstr "%PRODUCTNAME Base (*.odb)"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_id9756157\n"
-"help.text"
-msgid "%PRODUCTNAME Extension"
-msgstr "%PRODUCTNAME %PRODUCTVERSION"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_id2089907\n"
-"help.text"
-msgid "*.oxt"
-msgstr "%PRODUCTNAME Base (*.odb)"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_idN1088F\n"
-"help.text"
-msgid "The HTML format is not an OpenDocument format."
-msgstr "Formati i kërkuar i clipbordit nuk është në dispozicion."
-
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id4818872\n"
+"00000450.xhp\n"
+"par_id3147043\n"
+"11\n"
"help.text"
-msgid "ODF Chart is the name of the file format for stand alone charts. This format with the extension *.odc is currently not in use."
+msgid "<variable id=\"dBasein\">In a database file window of type dBASE, choose <emph>Edit - Database - Properties</emph>, click <emph>Indexes</emph></variable>"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN107E3\n"
+"00000450.xhp\n"
+"par_id3154317\n"
+"12\n"
"help.text"
-msgid "Older File Formats Prior to %PRODUCTNAME %PRODUCTVERSION"
+msgid "<variable id=\"Text\">In a database file window of type Text, choose <emph>Edit - Database - Properties</emph></variable>"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0514200811525257\n"
+"00000450.xhp\n"
+"par_id3150774\n"
+"20\n"
"help.text"
-msgid "The OpenDocument format evolves over time."
+msgid "<variable id=\"ADO\">In a database file window of type MS ADO, choose <emph>Edit - Database - Properties</emph></variable>"
msgstr ""
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_id0514200811565671\n"
-"help.text"
-msgid "ODF version"
-msgstr "Verzioni i dukshëm"
-
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530375\n"
+"00000450.xhp\n"
+"par_id3151110\n"
+"21\n"
"help.text"
-msgid "Date of standard approval by OASIS"
+msgid "<variable id=\"SQLStatement\">In a database file window, choose <emph>Tools - SQL</emph></variable>"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530491\n"
+"00000450.xhp\n"
+"par_id3147209\n"
+"22\n"
"help.text"
-msgid "First supporting version of the software"
+msgid "<variable id=\"Abfragen\">In a database file window, click the <emph>Queries</emph> icon</variable>"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0514200811565662\n"
+"00000450.xhp\n"
+"par_id3153880\n"
+"62\n"
"help.text"
-msgid "ODF 1.0"
+msgid "<variable id=\"Tabellen\">In a database file window, click the <emph>Tables</emph> icon</variable>"
msgstr ""
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530487\n"
-"help.text"
-msgid "2005-05-01"
-msgstr "Europe/Kaliningrad"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530455\n"
-"help.text"
-msgid "OpenOffice.org 1.1.5 or StarOffice 7"
-msgstr "http://www.documentfoundation.org"
-
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0514200811565787\n"
+"00000450.xhp\n"
+"par_id3153760\n"
+"64\n"
"help.text"
-msgid "ODF 1.1"
+msgid "<variable id=\"tabellenentwurf\">In a database file window, click the Tables icon. Choose Insert -<emph> Table Design</emph> or <emph>Edit - Edit</emph></variable>"
msgstr ""
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530479\n"
-"help.text"
-msgid "2007-02-02"
-msgstr "Asia/Yekaterinburg"
-
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530467\n"
+"00000450.xhp\n"
+"par_id3156329\n"
+"65\n"
"help.text"
-msgid "OpenOffice.org 2.2 or StarOffice 8 Update 4"
+msgid "<variable id=\"indexentwurf\">In a database file window, click the Tables icon. Choose <emph>Insert - Table Design</emph> or <emph>Edit - Edit</emph></variable>"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0514200811565762\n"
+"00000450.xhp\n"
+"par_id3154047\n"
+"23\n"
"help.text"
-msgid "ODF 1.2"
+msgid "<variable id=\"AbfrageNeu\">In a database file window, choose <emph>Insert - Query (Design view)</emph></variable>"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530440\n"
+"00000450.xhp\n"
+"par_id3149579\n"
+"24\n"
"help.text"
-msgid "2011-09-30"
+msgid "<variable id=\"entwab\">In a database file window, click the <emph>Queries</emph> icon, then choose <emph>Edit - Edit</emph></variable>"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0519200811530471\n"
+"00000450.xhp\n"
+"par_id3149902\n"
+"25\n"
"help.text"
-msgid "OpenOffice.org 3, StarOffice 9, Oracle Open Office"
+msgid "<variable id=\"FehlendesElement\">In a database file window, click the <emph>Queries</emph> icon, then choose <emph>Edit - Edit</emph>. When referenced fields no longer exist, you see this dialog</variable>"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id1001200912381153\n"
+"00000450.xhp\n"
+"par_id3159166\n"
+"26\n"
"help.text"
-msgid "ODF 1.2 (Extended)"
+msgid "<variable id=\"Joins\">Open query design and choose <emph>Insert - New Relation</emph>, or double-click on a connection line between two tables.</variable>"
msgstr ""
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_id100120091238112\n"
-"help.text"
-msgid "-"
-msgstr "-"
-
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"par_id1001200912381174\n"
-"help.text"
-msgid "OpenOffice.org 3.2 or StarOffice 9.2"
-msgstr "http://www.documentfoundation.org"
-
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id0514200811525591\n"
+"00000450.xhp\n"
+"par_id3151245\n"
"help.text"
-msgid "In current versions, you can select to save your documents using ODF 1.2 (default) or ODF 1.0/1.1 (for backward compatibility). Choose <item type=\"menuitem\">Tools - Options - Load/Save - General</item> and select the ODF format version."
+msgid "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153063\">Icon</alt></image>"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN107E9\n"
+"00000450.xhp\n"
+"par_id3153896\n"
+"41\n"
"help.text"
-msgid "If you want to exchange documents with users that still use OpenOffice.org 1 or StarOffice 7, save the document using the respectively named filter in the <emph>File type</emph> listbox."
-msgstr ""
+msgid "Insert Tables"
+msgstr "Indeksi i tabelave"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3146907\n"
-"1\n"
+"00000450.xhp\n"
+"par_id3149457\n"
"help.text"
-msgid "If you want to define another file format as the default, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010200.xhp\" name=\"Load/Save - General\">Load/Save - General</link></emph> to find alternative file formats for each $[officename] document type."
+msgid "<image id=\"img_id3147282\" src=\"cmd/sc_dbaddrelation.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147282\">Icon</alt></image>"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"hd_id3150398\n"
-"28\n"
+"00000450.xhp\n"
+"par_id3159085\n"
+"43\n"
"help.text"
-msgid "XML file structure"
-msgstr "XML-iKalendar-Fajlli"
+msgid "New Relation"
+msgstr "Relacion i ri..."
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3149649\n"
-"29\n"
+"00000450.xhp\n"
+"par_id3150414\n"
+"47\n"
"help.text"
-msgid "Documents in OpenDocument file format are stored as compressed zip archives that contain XML files. To view these XML files, you can open the OpenDocument file with an unzip program. The following files and directories are contained within the OpenDocument files:"
+msgid "<emph>Find Record</emph> icon on the Table Data bar and Form Design bar"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3153178\n"
-"30\n"
+"00000450.xhp\n"
+"par_id3157962\n"
"help.text"
-msgid "The text content of the document is located in <emph>content.xml</emph>."
+msgid "<image id=\"img_id3145419\" src=\"cmd/sc_recsearch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145419\">Icon</alt></image>"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3154068\n"
-"31\n"
+"00000450.xhp\n"
+"par_id3157322\n"
+"48\n"
"help.text"
-msgid "By default, <emph>content.xml</emph> is stored without formatting elements like indentation or line breaks to minimize the time for saving and opening the document. On the <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - General</emph> tab page you can activate the use of indentations and line breaks by clearing the check box <emph>Size optimization for ODF format</emph>."
-msgstr ""
+msgid "Find Record"
+msgstr "Gjej Shënimin..."
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3145152\n"
-"32\n"
+"00000450.xhp\n"
+"par_id3150870\n"
+"49\n"
"help.text"
-msgid "The file <emph>meta.xml</emph> contains the meta information of the document, which you can enter under <emph>File - Properties</emph>."
+msgid "<emph>Sort Order</emph> icon on the Table Data bar and Form Design bar"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3150740\n"
-"33\n"
+"00000450.xhp\n"
+"par_id3150393\n"
"help.text"
-msgid "If you save a document with a password, <emph>meta.xml</emph> will not be encrypted."
+msgid "<image id=\"img_id3145606\" src=\"cmd/sc_tablesort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145606\">Icon</alt></image>"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3150391\n"
-"34\n"
+"00000450.xhp\n"
+"par_id3145745\n"
+"50\n"
"help.text"
-msgid "The file <emph>settings.xml</emph> contains further information about the settings for this document."
-msgstr ""
+msgid "Sort Order"
+msgstr "renditja e klasifikimit"
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3150447\n"
-"35\n"
+"00000450.xhp\n"
+"par_id3145171\n"
+"55\n"
"help.text"
-msgid "In <emph>styles.xml,</emph> you find the styles applied to the document that can be seen in the Styles and Formatting window."
+msgid "<variable id=\"allgemein\">In a database file window, choose <emph>Edit - Database - Properties</emph></variable>"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3153353\n"
-"36\n"
+"00000450.xhp\n"
+"par_id3159252\n"
+"63\n"
"help.text"
-msgid "The <emph>meta-inf/manifest.xml</emph> file describes the structure of the XML file."
+msgid "<variable id=\"tabellecopy\">Drag and drop a table or a query into the table part of another database file window</variable>"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_id3153368\n"
-"37\n"
+"00000450.xhp\n"
+"par_id3148560\n"
+"66\n"
"help.text"
-msgid "Additional files and folders can be contained in the packed file format."
+msgid "<variable id=\"formularneu\">In a database file window, choose<emph> Insert - Form</emph></variable>"
msgstr ""
-#: 00000021.xhp
-msgctxt ""
-"00000021.xhp\n"
-"hd_id3154299\n"
-"38\n"
-"help.text"
-msgid "Definition of the XML formats"
-msgstr "Formatet për Qelitë"
-
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN10AAD\n"
+"00000450.xhp\n"
+"par_id3155430\n"
+"67\n"
"help.text"
-msgid "The schema for the OpenDocument formats can be found on the <link href=\"http://www.oasis-open.org\">www.oasis-open.org</link> web site."
+msgid "<variable id=\"benutzereinstellungen\">In a database file window, choose <emph>Edit - Database - Properties</emph></variable>"
msgstr ""
-#: 00000021.xhp
+#: 00000450.xhp
msgctxt ""
-"00000021.xhp\n"
-"par_idN10AC5\n"
+"00000450.xhp\n"
+"par_id3147441\n"
+"69\n"
"help.text"
-msgid "<link href=\"text/shared/autopi/01130000.xhp\">Document Converter Wizard</link>"
+msgid "<variable id=\"relationen\">In a database file window, choose <emph>Tools - Relationships</emph></variable>"
msgstr ""
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
+"00040500.xhp\n"
"tit\n"
"help.text"
msgid "Format Menu"
msgstr "Menyja për formatim"
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
-"hd_id3155757\n"
+"00040500.xhp\n"
+"hd_id3150347\n"
"1\n"
"help.text"
msgid "Format Menu"
msgstr "Menyja për formatim"
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
-"par_id3147294\n"
-"2\n"
+"00040500.xhp\n"
+"par_id3145356\n"
+"8\n"
"help.text"
-msgid "Choose <emph>Format - Row - Height</emph>"
-msgstr ""
+msgid "<variable id=\"standard\">Choose <emph>Format - Clear Direct Formatting</emph></variable>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
-"par_id3149551\n"
-"3\n"
+"00040500.xhp\n"
+"par_id3153244\n"
+"9\n"
"help.text"
-msgid "Open context menu of a row header in an open database table - choose <emph>Row Height</emph>"
-msgstr ""
+msgid "Choose <emph>Format - Character</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
-"par_id3153136\n"
-"4\n"
+"00040500.xhp\n"
+"par_id3152352\n"
+"10\n"
"help.text"
-msgid "Choose <emph>Format - Column - Width</emph>"
+msgid "On <emph>Text Formatting</emph> Bar (with cursor in object), click"
msgstr ""
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
-"par_id3150756\n"
-"5\n"
+"00040500.xhp\n"
+"par_id3148998\n"
"help.text"
-msgid "Open context menu of a column header in a database table - choose <emph>Column Width</emph>"
+msgid "<image id=\"img_id3154894\" src=\"cmd/sc_outlineformat.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154894\">Icon</alt></image>"
msgstr ""
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
-"par_id3148668\n"
+"00040500.xhp\n"
+"par_id3149999\n"
"11\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Numbers</emph> tab </caseinline></switchinline>"
-msgstr ""
+msgid "Character"
+msgstr "Karakter"
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
-"par_id3152349\n"
-"13\n"
+"00040500.xhp\n"
+"par_id3153935\n"
+"12\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Numbers</emph> tab </caseinline></switchinline>"
-msgstr ""
+msgid "Choose <emph>Format - Character - Font</emph> tab"
+msgstr "Redakto të Dhënat Serike/Pikat"
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
-"par_id3161459\n"
+"00040500.xhp\n"
+"par_id3157958\n"
"14\n"
"help.text"
-msgid "Open context menu for a column header in an open database table - choose <emph>Column Format - Format</emph> tab"
-msgstr ""
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3147531\n"
-"15\n"
-"help.text"
-msgid "Choose <emph>Format - Axis - Y Axis - Numbers</emph> tab (Chart Documents)"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3150823\n"
-"32\n"
-"help.text"
-msgid "Also as <emph>Number Format</emph> dialog for tables and fields in text documents: Choose <emph>Format - Number Format</emph>, or choose <emph>Insert - Fields - Other - Variables</emph> tab and select \"Additional formats\" in the <emph>Format</emph> list."
-msgstr ""
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3154923\n"
-"6\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\">Choose <emph>Format - Title - Main Title - Alignment</emph> tab </caseinline><defaultinline>Choose <emph>Format - Cells - Alignment</emph> tab</defaultinline></switchinline>"
-msgstr ""
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3149457\n"
-"7\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Open context menu of a column header in a database table - choose <emph>Column Format - Alignment</emph> tab</defaultinline></switchinline>"
-msgstr ""
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3150400\n"
-"8\n"
-"help.text"
-msgid "<variable id=\"tabform\">Open context menu of a row header in a database table - choose <emph>Table Format</emph></variable>"
-msgstr ""
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3149650\n"
-"33\n"
-"help.text"
-msgid "<variable id=\"spaltform\">Open context menu of a column header in a database table - choose <emph>Column Format</emph></variable>"
-msgstr ""
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3153799\n"
-"34\n"
-"help.text"
-msgid "<variable id=\"zeilenloeschen\">Context menu for a row header in an open database table - <emph>Delete Rows</emph></variable>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Font</emph> tab"
msgstr ""
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
-"par_id3150495\n"
+"00040500.xhp\n"
+"par_id3155338\n"
"16\n"
"help.text"
-msgid "Choose <emph>Modify - Flip</emph> ($[officename] Draw)"
+msgid "Open context menu of a row header in a database table - choose <emph>Table Format - Font</emph> tab"
msgstr ""
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
-"par_id3155742\n"
-"17\n"
+"00040500.xhp\n"
+"par_id3150355\n"
+"18\n"
"help.text"
-msgid "Choose <emph>Format - Graphics - Graphics</emph> tab"
+msgid "Choose <emph>Format - Title - Character</emph> tab (Chart documents)"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
-"par_id3158407\n"
-"35\n"
+"00040500.xhp\n"
+"par_id3149812\n"
+"19\n"
"help.text"
-msgid "Open context menu - choose <emph>Flip</emph> (presentation documents)"
-msgstr ""
+msgid "Choose <emph>Format - Legend - Character</emph> tab (Chart documents)"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
-"par_id3150290\n"
+"00040500.xhp\n"
+"par_id3153717\n"
"20\n"
"help.text"
-msgid "Choose <emph>Modify - Flip - Vertically</emph> ($[officename] Draw)"
-msgstr ""
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3153179\n"
-"21\n"
-"help.text"
-msgid "Choose <emph>Format - Graphics - Graphics</emph> tab"
+msgid "Choose <emph>Format - Axis - Character</emph> tab (Chart documents)"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3157960\n"
-"36\n"
-"help.text"
-msgid "Open context menu - choose <emph>Flip - Vertically</emph> (presentation documents)"
-msgstr ""
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3153369\n"
-"26\n"
-"help.text"
-msgid "Choose <emph>Modify - Flip - Horizontally</emph> ($[officename] Draw)"
-msgstr ""
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3147348\n"
-"27\n"
-"help.text"
-msgid "Choose <emph>Format - Graphics</emph>, and then click the <emph>Graphics</emph> tab"
-msgstr ""
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3156106\n"
-"42\n"
-"help.text"
-msgid "Choose <emph>Format - Flip - Horizontally</emph>"
-msgstr ""
-
-#: 00040503.xhp
-msgctxt ""
-"00040503.xhp\n"
-"par_id3152578\n"
-"37\n"
-"help.text"
-msgid "Right-click a selected object, and then choose <emph>Flip - Horizontally</emph> ($[officename] Impress)"
-msgstr ""
-
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
-"par_id3147318\n"
-"38\n"
+"00040500.xhp\n"
+"par_id3154749\n"
+"17\n"
"help.text"
-msgid "Choose <emph>Modify - Distribution</emph> ($[officename] Draw)"
+msgid "Choose <emph>Format - Cell - Font</emph> tab (spreadsheets)"
msgstr ""
-#: 00040503.xhp
+#: 00040500.xhp
msgctxt ""
-"00040503.xhp\n"
-"par_id3149064\n"
-"39\n"
+"00040500.xhp\n"
+"par_id3156306\n"
+"199\n"
"help.text"
-msgid "Open context menu - choose <emph>Distribution</emph> ($[officename] Impress)"
+msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
msgstr ""
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"tit\n"
-"help.text"
-msgid "Edit Menu"
-msgstr "AutoPilot Meny"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"hd_id3147273\n"
-"1\n"
-"help.text"
-msgid "Edit Menu"
-msgstr "AutoPilot Meny"
-
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3085157\n"
-"2\n"
+"00040500.xhp\n"
+"par_id3155829\n"
+"21\n"
"help.text"
-msgid "Choose <emph>Edit - Undo</emph>"
+msgid "Choose <emph>Format - Character - Font Effects</emph> tab"
msgstr "Redakto të Dhënat Serike/Pikat"
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3145160\n"
-"564\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Z"
-msgstr ""
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3154094\n"
-"3\n"
-"help.text"
-msgid "On the <emph>Standard</emph> Bar or Table Data bar, click"
-msgstr ""
-
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3155449\n"
+"00040500.xhp\n"
+"par_id3149819\n"
+"23\n"
"help.text"
-msgid "<image id=\"img_id3155577\" src=\"cmd/sc_undo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155577\">Icon</alt></image>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Font Effects</emph> tab"
msgstr ""
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3148563\n"
-"4\n"
-"help.text"
-msgid "Undo"
-msgstr "Zhbëj%O"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3145068\n"
-"5\n"
-"help.text"
-msgid "Choose <emph>Edit - Redo</emph>"
-msgstr "Redakto të Dhënat Serike/Pikat"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3153897\n"
-"6\n"
-"help.text"
-msgid "On the <emph>Standard</emph> Bar, click"
-msgstr "Shiriti i Funksionit kyçur/çkyçur"
-
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3154938\n"
+"00040500.xhp\n"
+"par_id3159176\n"
+"200\n"
"help.text"
-msgid "<image id=\"img_id3150358\" src=\"cmd/sc_redo.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150358\">Icon</alt></image>"
+msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
msgstr ""
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3151211\n"
-"7\n"
-"help.text"
-msgid "Redo"
-msgstr "Bëje prap"
-
-#: 00000402.xhp
-#, fuzzy
-msgctxt ""
-"00000402.xhp\n"
-"par_id3154365\n"
-"8\n"
-"help.text"
-msgid "<variable id=\"letzter\">Choose <emph>Edit - Repeat</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3149765\n"
-"9\n"
+"00040500.xhp\n"
+"par_id3153541\n"
+"181\n"
"help.text"
-msgid "Choose <emph>Edit - Cut</emph>"
+msgid "Choose <emph>Format - Character - Position</emph> tab"
msgstr "Redakto të Dhënat Serike/Pikat"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3144762\n"
-"565\n"
+"00040500.xhp\n"
+"par_id3159256\n"
+"183\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+X"
+msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Alignment</emph> tab"
msgstr ""
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3148744\n"
-"10\n"
-"help.text"
-msgid "On the <emph>Standard</emph> Bar, click"
-msgstr "Shiriti i Funksionit kyçur/çkyçur"
-
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3145173\n"
+"00040500.xhp\n"
+"par_id3151385\n"
+"201\n"
"help.text"
-msgid "<image id=\"img_id3145744\" src=\"cmd/sc_helpmenu.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145744\">Icon</alt></image>"
+msgid "Menu <emph>Format - Page - Header/Footer</emph> - <emph>Edit</emph> button (spreadsheets)"
msgstr ""
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3154153\n"
-"11\n"
-"help.text"
-msgid "Cut"
-msgstr "Preje"
-
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150742\n"
-"12\n"
+"00040500.xhp\n"
+"par_id3148550\n"
+"186\n"
"help.text"
-msgid "Choose <emph>Edit - Copy</emph>"
+msgid "Choose <emph>Format - Character - Asian Layout</emph> tab"
msgstr "Redakto të Dhënat Serike/Pikat"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3148923\n"
-"566\n"
+"00040500.xhp\n"
+"par_id3152811\n"
+"188\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+C"
+msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Asian Layout</emph> tab"
msgstr ""
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3159254\n"
-"13\n"
-"help.text"
-msgid "On the <emph>Standard</emph> Bar, click"
-msgstr "Shiriti i Funksionit kyçur/çkyçur"
-
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3154985\n"
+"00040500.xhp\n"
+"par_id3153524\n"
+"190\n"
"help.text"
-msgid "<image id=\"img_id3156441\" src=\"cmd/sc_copy.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3156441\">Icon</alt></image>"
+msgid "Choose <emph>Format - Paragraph - Asian Typography</emph> tab (not in HTML)"
msgstr ""
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3150685\n"
-"14\n"
-"help.text"
-msgid "Copy"
-msgstr "Kopjo"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3159153\n"
-"15\n"
-"help.text"
-msgid "Choose <emph>Edit - Paste</emph>"
-msgstr "Redakto të Dhënat Serike/Pikat"
-
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3155860\n"
-"567\n"
+"00040500.xhp\n"
+"par_id3154366\n"
+"191\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+V"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cell - Asian Typography</emph> tab </caseinline></switchinline>"
msgstr ""
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3159083\n"
-"16\n"
-"help.text"
-msgid "On the <emph>Standard</emph> Bar, click"
-msgstr "Shiriti i Funksionit kyçur/çkyçur"
-
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3156106\n"
+"00040500.xhp\n"
+"par_id3148742\n"
+"193\n"
"help.text"
-msgid "<image id=\"img_id3159196\" src=\"cmd/sc_paste.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159196\">Icon</alt></image>"
+msgid "Choose <emph>Format - Styles and Formatting - </emph>open context menu of an entry and click <emph>Modify/New - Asian Typography</emph> tab"
msgstr ""
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3154471\n"
-"17\n"
-"help.text"
-msgid "Paste"
-msgstr "Lësho"
-
-#: 00000402.xhp
-#, fuzzy
-msgctxt ""
-"00000402.xhp\n"
-"par_id3152791\n"
-"532\n"
-"help.text"
-msgid "<variable id=\"inhalte\">Choose <emph>Edit - Paste Special</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3148555\n"
-"533\n"
+"00040500.xhp\n"
+"par_id3148922\n"
+"26\n"
"help.text"
-msgid "Choose <emph>Edit - Select All</emph>"
+msgid "Choose <emph>Format - Character - Hyperlink</emph> tab"
msgstr "Redakto të Dhënat Serike/Pikat"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3152417\n"
-"568\n"
+"00040500.xhp\n"
+"par_id3149169\n"
+"29\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+A"
-msgstr ""
+msgid "Choose <emph>Format - Paragraph</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3145748\n"
+"00040500.xhp\n"
+"par_id3151381\n"
+"30\n"
"help.text"
-msgid "<image id=\"img_id3153095\" src=\"cmd/sc_selectall.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3153095\">Icon</alt></image>"
+msgid "On <emph>Text Formatting</emph> bar (with cursor in object), click"
msgstr ""
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153139\n"
-"575\n"
+"00040500.xhp\n"
+"par_id3155995\n"
"help.text"
-msgid "Select All"
-msgstr "Zgjedh të gjitha"
+msgid "<image id=\"img_id3150495\" src=\"cmd/sc_paragraphdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150495\">Icon</alt></image>"
+msgstr ""
-#: 00000402.xhp
-#, fuzzy
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3145251\n"
-"555\n"
+"00040500.xhp\n"
+"par_id3147299\n"
+"31\n"
"help.text"
-msgid "<variable id=\"aenderungen\">Choose <emph>Edit - Changes</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
+msgid "Paragraph"
+msgstr "Paragraf"
-#: 00000402.xhp
-#, fuzzy
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153336\n"
-"556\n"
+"00040500.xhp\n"
+"par_id3147289\n"
+"4\n"
"help.text"
-msgid "<variable id=\"aufzeichnen\">Choose <emph>Edit - Changes - Record</emph></variable>"
+msgid "Choose <emph>Format - Paragraph - Alignment</emph> tab"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3150594\n"
-"557\n"
+"00040500.xhp\n"
+"par_id3147352\n"
+"179\n"
"help.text"
-msgid "<variable id=\"anzeigen\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Edit - Changes - Show</emph></caseinline><caseinline select=\"CALC\">Choose <emph>Edit - Changes - Show</emph></caseinline></switchinline></variable>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Alignment</emph> tab"
msgstr ""
-#: 00000402.xhp
-#, fuzzy
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153845\n"
-"558\n"
+"00040500.xhp\n"
+"par_id3154640\n"
+"32\n"
"help.text"
-msgid "<variable id=\"rotlinie\">Choose <emph>Edit - Changes - Accept or Reject</emph></variable>"
+msgid "Choose <emph>Format - Paragraph - Indents & Spacing</emph> tab"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3148587\n"
-"559\n"
-"help.text"
-msgid "Choose <emph>Edit - Changes - Accept or Reject - List</emph> tab"
-msgstr ""
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3150396\n"
-"574\n"
-"help.text"
-msgid "Choose <emph>Format - AutoCorrect - Apply and Edit Changes.</emph> AutoCorrect dialog appears, click <emph>Edit Changes</emph> button, see <emph>List</emph> tab page"
-msgstr ""
-
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153878\n"
-"560\n"
+"00040500.xhp\n"
+"par_id3152463\n"
+"34\n"
"help.text"
-msgid "<variable id=\"rotliniefilter\">Choose <emph>Edit - Changes - Accept or Reject - Filter</emph> tab </variable>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Indents & Spacing</emph> tab"
msgstr ""
-#: 00000402.xhp
-#, fuzzy
-msgctxt ""
-"00000402.xhp\n"
-"par_id3151281\n"
-"561\n"
-"help.text"
-msgid "<variable id=\"einfuegen\">Choose <emph>Edit - Changes - Merge Document</emph></variable>"
-msgstr "Zgjidh një tjetër filesistem root"
-
-#: 00000402.xhp
-#, fuzzy
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3153224\n"
-"562\n"
+"00040500.xhp\n"
+"par_id3154319\n"
+"39\n"
"help.text"
-msgid "<variable id=\"dvergl\">Choose <emph>Edit - Compare Document</emph></variable>"
+msgid "Choose <emph>Format - Paragraph - Tabs</emph> tab"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3148773\n"
-"563\n"
-"help.text"
-msgid "Choose <emph>Edit - Changes - Comment</emph>"
-msgstr ""
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3149488\n"
-"571\n"
-"help.text"
-msgid "Choose <emph>Edit - Changes - Accept or Reject - List</emph> tab. Click an entry in the list and open the context menu. Choose <emph>Edit Comment</emph>"
-msgstr ""
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3156297\n"
-"49\n"
-"help.text"
-msgid "Choose <emph>Edit - Find & Replace</emph>"
-msgstr ""
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3154503\n"
-"569\n"
-"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+H"
-msgstr ""
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3155083\n"
-"456\n"
-"help.text"
-msgid "On Standard bar, click"
-msgstr "Shiriti i Funksionit kyçur/çkyçur"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3150020\n"
-"help.text"
-msgid "<image id=\"img_id3149121\" src=\"cmd/sc_recsearch.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149121\">Icon</alt></image>"
-msgstr ""
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3144748\n"
-"50\n"
-"help.text"
-msgid "Find & Replace"
-msgstr "Gjej dhe Zëvendëso"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3156357\n"
-"552\n"
-"help.text"
-msgid "<variable id=\"suchenattribute\">Choose <emph>Edit - Find & Replace - Attributes</emph></variable>"
-msgstr ""
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3153840\n"
-"553\n"
-"help.text"
-msgid "<variable id=\"suchenformat\">Choose <emph>Edit - Find & Replace - Format</emph> button </variable>"
-msgstr ""
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3146971\n"
-"554\n"
-"help.text"
-msgid "Choose <emph>Edit - Find & Replace - Similarity search</emph> check box and <emph>...</emph> button."
-msgstr ""
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3153709\n"
-"572\n"
-"help.text"
-msgid "On the <emph>Table Data</emph> Bar, click <emph>Find</emph> icon - <emph>Similarity search</emph> check box - <emph>...</emph> button (database table view)"
-msgstr ""
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3150749\n"
-"573\n"
-"help.text"
-msgid "On <emph>Form Design</emph> Bar, click <emph>Record Search</emph> - <emph>Similarity search</emph> check box - <emph>...</emph> button (form view)"
-msgstr ""
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3152960\n"
-"534\n"
-"help.text"
-msgid "Choose <emph>View - Navigator</emph>"
-msgstr "Zgjidh një fjalëkalim për përdoruesin e ri:"
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3163824\n"
-"535\n"
-"help.text"
-msgid "On <emph>Standard</emph> Bar, click"
-msgstr "Shiriti i Funksionit kyçur/çkyçur"
-
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3159183\n"
+"00040500.xhp\n"
+"par_id3154833\n"
+"41\n"
"help.text"
-msgid "<image id=\"img_id3154508\" src=\"cmd/sc_navigator.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154508\">Icon</alt></image>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Tabs</emph> tab"
msgstr ""
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3147359\n"
-"536\n"
+"00040500.xhp\n"
+"par_id3159155\n"
+"43\n"
"help.text"
-msgid "Navigator On/Off"
-msgstr "Navigator kyçur/çkyçur"
+msgid "Double-click the ruler"
+msgstr "Kliko-dyherë të editosh tekstin"
-#: 00000402.xhp
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3147338\n"
-"576\n"
+"00040500.xhp\n"
+"par_idN109E2\n"
"help.text"
-msgid "<variable id=\"litdat\">Choose <emph>Tools - Bibliography Database</emph></variable>"
+msgid "(all options only in Writer or Calc)"
msgstr ""
-#: 00000402.xhp
-#, fuzzy
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3149281\n"
-"538\n"
+"00040500.xhp\n"
+"par_id3156105\n"
+"44\n"
"help.text"
-msgid "<variable id=\"link\">Choose <emph>Edit - Links</emph></variable>"
+msgid "Choose <emph>Format - Paragraph - Borders</emph> tab"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3159339\n"
-"551\n"
-"help.text"
-msgid "<variable id=\"linkae\">Choose <emph>Edit - Links - Modify Link</emph> (DDE links only) </variable>"
-msgstr ""
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3148927\n"
-"543\n"
-"help.text"
-msgid "Select a frame, then choose <emph>Edit - Object - Properties</emph>"
-msgstr ""
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3156315\n"
-"577\n"
-"help.text"
-msgid "Open context menu of selected frame - choose <emph>Properties</emph>"
-msgstr ""
-
-#: 00000402.xhp
-#, fuzzy
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3151251\n"
-"545\n"
+"00040500.xhp\n"
+"par_id3154149\n"
+"45\n"
"help.text"
-msgid "<variable id=\"plugin\">Choose <emph>Edit - Plug-in</emph></variable>"
+msgid "Choose <emph>Format - Picture - Borders</emph> tab"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3156091\n"
-"546\n"
-"help.text"
-msgid "<variable id=\"imagemap\">Choose <emph>Edit - ImageMap</emph> (also in context menu of selected object) </variable>"
-msgstr ""
-
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3155936\n"
-"550\n"
-"help.text"
-msgid "<variable id=\"imapeigbea\">Choose <emph>Edit - ImageMap</emph>, then select a section of the ImageMap and click <emph>Properties - Description</emph></variable>"
-msgstr ""
-
-#: 00000402.xhp
-#, fuzzy
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3149259\n"
-"547\n"
+"00040500.xhp\n"
+"par_id3163822\n"
+"48\n"
"help.text"
-msgid "<variable id=\"edit1\">Choose <emph>Edit - Object</emph></variable>"
+msgid "Choose <emph>Format - Frame/Object - Borders</emph> tab"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00000402.xhp
-msgctxt ""
-"00000402.xhp\n"
-"par_id3154966\n"
-"548\n"
-"help.text"
-msgid "<variable id=\"edit2\">Choose <emph>Edit - Object - Edit</emph>, also in the context menu of selected object </variable>"
-msgstr ""
-
-#: 00000402.xhp
-#, fuzzy
+#: 00040500.xhp
msgctxt ""
-"00000402.xhp\n"
-"par_id3149565\n"
-"549\n"
+"00040500.xhp\n"
+"par_id3150048\n"
+"51\n"
"help.text"
-msgid "<variable id=\"edit3\">Choose <emph>Edit - Object - Open</emph></variable>"
+msgid "Choose <emph>Format - Page - Borders</emph> tab"
msgstr "Zgjidh një tjetër filesistem root"
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"tit\n"
-"help.text"
-msgid "Glossary of Internet Terms"
-msgstr "Përkthe termat e përbashkët"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3150702\n"
-"help.text"
-msgid "<bookmark_value>Internet glossary</bookmark_value><bookmark_value>common terms;Internet glossary</bookmark_value><bookmark_value>glossaries;Internet terms</bookmark_value><bookmark_value>terminology;Internet glossary</bookmark_value>"
-msgstr ""
-
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3150702\n"
-"1\n"
+"00040500.xhp\n"
+"par_id3149911\n"
+"53\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000002.xhp\" name=\"Glossary of Internet Terms\">Glossary of Internet Terms</link>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Borders</emph> tab"
msgstr ""
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3155577\n"
-"2\n"
+"00040500.xhp\n"
+"par_id3150094\n"
+"54\n"
"help.text"
-msgid "If you are a newcomer to the Internet, you will be confronted with unfamiliar terms: browser, bookmark, e-mail, homepage, search engine, and many others. To make your first steps easier, this glossary explains some of the more important terminology you may find in the Internet, intranet, mail and news."
-msgstr ""
+msgid "Choose <emph>Format - Page - Header - More</emph> button"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3153146\n"
-"36\n"
+"00040500.xhp\n"
+"par_id3154501\n"
+"55\n"
"help.text"
-msgid "Frames"
-msgstr "Kornizat"
+msgid "Choose <emph>Format - Page - Footer - More</emph> button"
+msgstr "Redakto të Dhënat Serike/Pikat"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3157909\n"
-"37\n"
+"00040500.xhp\n"
+"par_id3148455\n"
+"56\n"
"help.text"
-msgid "Frames are useful for designing the layout of <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages. $[officename] uses floating frames into which you can place objects such as graphics, movie files and sound. The context menu of a frame shows the options for restoring or editing frame contents. Some of these commands are also listed in <emph>Edit - Object</emph> when the frame is selected."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Borders</emph> tab </caseinline></switchinline>"
msgstr ""
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3147077\n"
-"43\n"
-"help.text"
-msgid "FTP"
-msgstr "FTP proxy"
-
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3147335\n"
-"44\n"
+"00040500.xhp\n"
+"par_id3155915\n"
+"177\n"
"help.text"
-msgid "FTP stands for File Transfer Protocol and is the standard transfer protocol for files in the Internet. An FTP server is a program on a computer connected to the Internet which stores files to be transmitted with the aid of FTP. While FTP is responsible for transmitting and downloading Internet files, <link href=\"text/shared/00/00000002.xhp#http\" name=\"HTTP\">HTTP</link> (Hypertext Transfer Protocol) provides the connection setup and data transfer between WWW servers and clients."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Paragraph</emph> - <emph>Border</emph> tab -<emph> Spacing to contents</emph></caseinline></switchinline>"
msgstr ""
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"bm_id3145609\n"
+"00040500.xhp\n"
+"par_id3159130\n"
+"178\n"
"help.text"
-msgid "<bookmark_value>HTML; definition</bookmark_value>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Menu<emph> Format - Page - Border - Spacing to contents</emph></caseinline></switchinline>"
msgstr ""
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3145609\n"
-"56\n"
-"help.text"
-msgid "HTML"
-msgstr "HTML"
-
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3161459\n"
+"00040500.xhp\n"
+"par_id3155853\n"
"57\n"
"help.text"
-msgid "HTML (Hypertext Markup Language) is a document code language, which is used as the file format for WWW documents. It is derived from <link href=\"text/shared/00/00000002.xhp#sgml\" name=\"SGML\">SGML</link> and integrates text, graphics, videos and sound."
-msgstr ""
+msgid "Choose <emph>Format - Paragraph - Background</emph> tab"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3154346\n"
+"00040500.xhp\n"
+"par_id3147330\n"
"58\n"
"help.text"
-msgid "If you want to type HTML commands directly, for example when doing exercises from one of the many available HTML books, remember that HTML pages are pure text files. Save your document under the document type <emph>Text </emph>and give it the file name extension .HTML. Be sure there are no umlauts or other special characters of the extended character set. If you want to re-open this file in $[officename] and edit the HTML code, you must load it with the file type <emph>Text</emph> and not with the file type <emph>Web pages</emph>."
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3153960\n"
-"244\n"
-"help.text"
-msgid "There are several references on the Internet providing an introduction to the HTML language."
-msgstr ""
+msgid "Choose <emph>Format - Character - Background</emph> tab"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3147423\n"
+"00040500.xhp\n"
+"par_id3149486\n"
"59\n"
"help.text"
-msgid "HTTP"
-msgstr "HTTP"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3153379\n"
-"60\n"
-"help.text"
-msgid "The Hypertext Transfer Protocol is a record of transmission of WWW documents between WWW servers (hosts) and browsers (clients)."
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3149290\n"
-"help.text"
-msgid "<bookmark_value>hyperlinks; definition</bookmark_value>"
-msgstr ""
+msgid "Choose <emph>Format - Picture - Background</emph> tab"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3149290\n"
+"00040500.xhp\n"
+"par_id3150592\n"
"61\n"
"help.text"
-msgid "Hyperlink"
-msgstr "Hiperlink"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3145420\n"
-"62\n"
-"help.text"
-msgid "Hyperlinks are cross-references, highlighted in text in various colors and activated by mouse-click. With the aid of hyperlinks, readers can jump to specific information within a document as well as to related information in other documents."
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3156281\n"
-"63\n"
-"help.text"
-msgid "In $[officename] you can assign hyperlinks to text as well as to graphics and text frames (see the Hyperlink Dialog icon on the Standard bar)."
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3152805\n"
-"help.text"
-msgid "<bookmark_value>ImageMap; definition</bookmark_value>"
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3152805\n"
-"64\n"
-"help.text"
-msgid "ImageMap"
-msgstr "ImageMap"
+msgid "Choose <emph>Format - Frame/Object - Background</emph> tab"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3154685\n"
+"00040500.xhp\n"
+"par_id3151321\n"
"65\n"
"help.text"
-msgid "An ImageMap is a reference-sensitive graphic or text frame. You can click on defined areas of the graphic or text frame to go to a target (<link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>), which is linked with the area. The reference areas, along with the linked URLs and corresponding text displayed when resting the mouse pointer on these areas, are defined in the <link href=\"text/shared/01/02220000.xhp\" name=\"ImageMap Editor\">ImageMap Editor</link>."
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3153178\n"
-"66\n"
-"help.text"
-msgid "There are two different types of ImageMaps. A Client Side ImageMap is evaluated on the client computer, which loaded the graphic from the Internet, while a Server Side ImageMap is evaluated on the server computer which provides the <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> page on the Internet. In server evaluation, clicking an ImageMap sends the relative coordinates of the cursor within the image to the server, and a dedicated program on the server responds. In the client evaluation, clicking a defined hotspot of the ImageMap activates the URL, as if it were a normal text link. The URL appears below the mouse pointer when passing across the ImageMap."
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3150740\n"
-"67\n"
-"help.text"
-msgid "As ImageMaps can be used in different ways, they can be stored in different formats."
-msgstr ""
+msgid "Choose <emph>Format - Page - Background</emph> tab"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3146874\n"
+"00040500.xhp\n"
+"par_id3154510\n"
"68\n"
"help.text"
-msgid "ImageMap Formats"
-msgstr "(Të gjitha formatet)"
+msgid "Choose <emph>Format - Page - Header - More</emph> button"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3145153\n"
+"00040500.xhp\n"
+"par_id3159110\n"
"69\n"
"help.text"
-msgid "ImageMaps are basically divided between those that are analyzed on the server (i. e. your Internet provider) and those analyzed on the web browser of the reader's computer."
-msgstr ""
+msgid "Choose <emph>Format - Page - Footer - More</emph> button"
+msgstr "Redakto të Dhënat Serike/Pikat"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"bm_id3152881\n"
+"00040500.xhp\n"
+"par_id3153532\n"
+"67\n"
"help.text"
-msgid "<bookmark_value>Server Side ImageMap</bookmark_value>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Background</emph> tab"
msgstr ""
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3152881\n"
-"70\n"
+"00040500.xhp\n"
+"par_id3144747\n"
+"174\n"
"help.text"
-msgid "Server Side ImageMaps"
-msgstr "Fotografi në anën e Serverit"
+msgid "Choose <emph>Insert/Edit - Section - Background</emph> tab"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3153057\n"
+"00040500.xhp\n"
+"par_id3146900\n"
"71\n"
"help.text"
-msgid "Server Side ImageMaps appear for the reader as a picture or frame on the page. Click on the ImageMap with the mouse, and the coordinates of the relative position are sent to the server. Aided by an extra program, the server then determines the next step to take. There are several incompatible methods to define this process, the two most common being:"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Background</emph> tab </caseinline></switchinline>"
msgstr ""
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3147502\n"
+"00040500.xhp\n"
+"par_id3146791\n"
"72\n"
"help.text"
-msgid "W3C (CERN) HTTP Server (Format type: MAP - CERN)"
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3154011\n"
-"73\n"
-"help.text"
-msgid "NCSA HTTP Server (Format type: MAP - NCSA)"
-msgstr ""
+msgid "Choose <emph>Format - Page - Organizer</emph> tab"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3149483\n"
+"00040500.xhp\n"
+"par_id3154482\n"
"74\n"
"help.text"
-msgid "$[officename] creates ImageMaps for both methods. Select the format from the <emph>File type </emph>list in the <emph>Save As </emph>dialog in the <emph>ImageMap Editor</emph>. Separate Map Files are created which you must upload to the server. You will need to ask your provider or network administrator which type of ImageMaps are supported by the server and how to access the evaluation program."
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3152418\n"
-"help.text"
-msgid "<bookmark_value>Client Side ImageMap</bookmark_value>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Organizer</emph> tab"
msgstr ""
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3152418\n"
+"00040500.xhp\n"
+"par_id3153357\n"
"75\n"
"help.text"
-msgid "Client Side ImageMap"
-msgstr "Fotografi në anën e Klientit"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3151290\n"
-"76\n"
-"help.text"
-msgid "The area of the picture or frame where the reader can click is indicated by the appearance of the linked <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> when the mouse passes over the area. The ImageMap is stored in a layer below the picture and contains information about the referenced regions. The only disadvantage of Client Side ImageMaps is that older Web browsers cannot read them; a disadvantage that will, however, resolve itself in time."
-msgstr ""
+msgid "Choose <emph>Format - Page - Page</emph> tab"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3149664\n"
+"00040500.xhp\n"
+"par_id3154362\n"
"77\n"
"help.text"
-msgid "When saving the ImageMap, select the file type <emph>SIP - StarView ImageMap</emph>. This saves the ImageMap directly in a format which can be applied to every active picture or frame in your document. However, if you just want to use the ImageMap on the current picture or text frame, you do not have to save it in any special format. After defining the regions, simply click <emph>Apply</emph>. Nothing more is necessary. Client Side ImageMaps saved in <link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> format are inserted directly into the page in HTML code."
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3159125\n"
-"help.text"
-msgid "<bookmark_value>Java; definition</bookmark_value>"
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3159125\n"
-"92\n"
-"help.text"
-msgid "Java"
-msgstr "Java"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3153188\n"
-"93\n"
-"help.text"
-msgid "The Java programming language is a platform independent programming language that is especially suited for use in the Internet. Web pages and applications programmed with Java class files can be used on all modern operating systems. Programs using Java programming language are usually developed in a Java development environment and then compiled to a \"byte code\"."
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"bm_id3159153\n"
-"help.text"
-msgid "<bookmark_value>plug-ins; definition</bookmark_value>"
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3159153\n"
-"107\n"
-"help.text"
-msgid "Plug-In"
-msgstr "Lësho në..."
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3154127\n"
-"109\n"
-"help.text"
-msgid "Extensions providing additional functionality in Web browsers are referred to as Plug-Ins."
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3147484\n"
-"108\n"
-"help.text"
-msgid "A Plug-In is a term used in various contexts:"
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3168608\n"
-"172\n"
-"help.text"
-msgid "Plug-Ins in $[officename]"
-msgstr "Shto Plug-in të Zërit"
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3149910\n"
-"111\n"
-"help.text"
-msgid "You will notice in $[officename] that the <emph>Formatting</emph> Bar changes after certain operations. For example, if you insert a formula into your text document, you see icons for editing the formula, in fact the same icons you see in formula documents. In this sense, we refer to the formula as a plug-in within the text document."
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3148387\n"
-"177\n"
-"help.text"
-msgid "Using Plug-Ins to extend your programs"
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3156737\n"
-"114\n"
-"help.text"
-msgid "Plug-ins, generally speaking, are software additions to particular applications which provide enhanced functionality. Often import and export filters for various file formats are stored as plug-ins in a plug-in directory."
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3149958\n"
-"115\n"
-"help.text"
-msgid "Netscape web browser extensions produced by Netscape Communication Corporation are also called plug-ins. These are external programs mainly taken from the multimedia field and which communicate with the browser through standardized interfaces. These plug-ins can be linked to $[officename] documents."
-msgstr ""
-
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"par_id3149420\n"
-"179\n"
-"help.text"
-msgid "Any Netscape plug-ins (32 bit) installed on your system are automatically recognized by $[officename]."
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Page</emph> tab"
msgstr ""
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3145647\n"
-"127\n"
-"help.text"
-msgid "Proxy"
-msgstr "Proxy"
-
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3148455\n"
-"128\n"
+"00040500.xhp\n"
+"par_id3155515\n"
+"78\n"
"help.text"
-msgid "A proxy is a computer in the network acting as a kind of clipboard for data transfer. Whenever you access the Internet from a company network and request a Web page that has already been read by a colleague, the proxy will be able to display the page much quicker, as long as it's still in the memory. All that has to be checked in this case is that the page stored in the proxy is the latest version. If this is the case, the page won't have to be downloaded from the much slower Internet but can be loaded directly from the proxy."
-msgstr ""
+msgid "Choose <emph>Format - Page - Header</emph> tab"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"bm_id3154729\n"
+"00040500.xhp\n"
+"par_id3148405\n"
+"80\n"
"help.text"
-msgid "<bookmark_value>SGML; definition</bookmark_value>"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Header</emph> tab"
msgstr ""
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3154729\n"
-"229\n"
-"help.text"
-msgid "SGML"
-msgstr "SGML hijezimi i sintaksës"
-
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3147330\n"
-"230\n"
+"00040500.xhp\n"
+"par_id3145618\n"
+"81\n"
"help.text"
-msgid "SGML stands for \"Standard Generalized Markup Language\". SGML is based on the idea that documents have structural and other semantic elements that can be described without reference to how such elements should be displayed. The actual display of such a document may vary, depending on the output medium and style preferences. In structured texts, SGML not only defines structures (in the DTD = Document Type Definition) but also ensures they are consistently used."
-msgstr ""
+msgid "Choose <emph>Format - Page - Footer</emph> tab"
+msgstr "Redakto të Dhënat Serike/Pikat"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3148747\n"
-"231\n"
+"00040500.xhp\n"
+"par_id3155175\n"
+"83\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> is a specialized application of SGML. This means that most Web browsers support only a limited range of SGML standards and that almost all SGML-enabled systems can produce attractive HTML pages."
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu of an entry and choose <emph>Modify/New - Footer</emph> tab"
msgstr ""
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"bm_id3153950\n"
+"00040500.xhp\n"
+"par_id3147404\n"
+"84\n"
"help.text"
-msgid "<bookmark_value>search engines; definition</bookmark_value>"
+msgid "Choose <emph>Format - Styles and Formatting</emph>"
msgstr ""
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3153950\n"
-"138\n"
-"help.text"
-msgid "Search Engines"
-msgstr "Kërko për:"
-
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3157965\n"
-"139\n"
+"00040500.xhp\n"
+"par_id3166447\n"
+"95\n"
"help.text"
-msgid "A search engine is a service in the Internet based on a software program used to explore a vast amount of information using key words."
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">Command+T</caseinline><defaultinline>F11</defaultinline></switchinline>"
msgstr ""
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"bm_id3150751\n"
+"00040500.xhp\n"
+"par_id3147321\n"
+"85\n"
"help.text"
-msgid "<bookmark_value>tags; definition</bookmark_value>"
-msgstr ""
+msgid "On <emph>Formatting</emph> Bar, click"
+msgstr "Shiriti i Funksionit kyçur/çkyçur"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"hd_id3150751\n"
-"141\n"
+"00040500.xhp\n"
+"par_id3148533\n"
"help.text"
-msgid "Tags"
+msgid "<image id=\"img_id3149568\" src=\"cmd/sc_designerdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149568\">Icon</alt></image>"
msgstr ""
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3156360\n"
-"142\n"
+"00040500.xhp\n"
+"par_id3153534\n"
+"86\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000002.xhp#html\" name=\"HTML\">HTML</link> pages contain certain structural and formatting instructions called tags. Tags are code words enclosed by brackets in the document description language HTML. Many tags contain text or hyperlink references between the opening and closing brackets. For example, titles are marked by the tags <h1> at the beginning and </h1> at the end of the title. Some tags only appear on their own such as <br> for a line break or <img ...> to link a graphic."
-msgstr ""
+msgid "Styles and Formatting"
+msgstr "Struktura dhe formatimi"
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"bm_id3153766\n"
+"00040500.xhp\n"
+"par_id3159313\n"
+"88\n"
"help.text"
-msgid "<bookmark_value>URL; definition</bookmark_value>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline>On the <emph>Drawing</emph> bar, click</defaultinline></switchinline>"
msgstr ""
-#: 00000002.xhp
-msgctxt ""
-"00000002.xhp\n"
-"hd_id3153766\n"
-"145\n"
-"help.text"
-msgid "URL"
-msgstr "URL"
-
-#: 00000002.xhp
+#: 00040500.xhp
msgctxt ""
-"00000002.xhp\n"
-"par_id3152931\n"
-"146\n"
+"00040500.xhp\n"
+"par_id3109845\n"
"help.text"
-msgid "The Uniform Resource Locator (URL) displays the address of a document or a server in the Internet. The general structure of a URL varies according to type and is generally in the form Service://Hostname:Port/Path/Page#Mark although not all elements are always required. An URL can be a FTP address, a WWW (HTTP) address, a file address or an e-mail address."
+msgid "<image id=\"img_id3159236\" src=\"cmd/sc_window3d.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3159236\">Icon</alt></image>"
msgstr ""
-#: 01010000.xhp
-msgctxt ""
-"01010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Gallery context menu"
-msgstr "Meny kyçur/çkyçur"
-
-#: 01010000.xhp
-msgctxt ""
-"01010000.xhp\n"
-"hd_id3150672\n"
-"1\n"
-"help.text"
-msgid "Gallery context menu"
-msgstr "Meny kyçur/çkyçur"
-
-#: 01010000.xhp
+#: 00040500.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3083278\n"
+"00040500.xhp\n"
+"par_id3152498\n"
"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_MN_ADDMENU\">Defines how a selected graphic object is inserted into a document.</ahelp>"
-msgstr ""
-
-#: 01010000.xhp
-msgctxt ""
-"01010000.xhp\n"
-"par_id3156053\n"
-"5\n"
-"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_MN_ADD\">Inserts a copy of the selected graphic object directly into the document.</ahelp>"
-msgstr ""
-
-#: 01010000.xhp
-msgctxt ""
-"01010000.xhp\n"
-"par_id3149038\n"
-"7\n"
-"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_MN_ADD_LINK\">Inserts the selected graphic as a link.</ahelp>"
-msgstr ""
-
-#: 01010000.xhp
-msgctxt ""
-"01010000.xhp\n"
-"par_id3158428\n"
-"15\n"
-"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_MN_PREVIEW\">The<emph> Preview </emph>command displays the selected graphic.</ahelp>"
-msgstr ""
-
-#: 01010000.xhp
-msgctxt ""
-"01010000.xhp\n"
-"par_id3154522\n"
-"19\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_GALLERY_TITLE:EDT_TITLE\">Assigns a title to a selected Gallery object.</ahelp>"
-msgstr ""
+msgid "<emph>3D Effects</emph>"
+msgstr "Ngjyra e 3D materialit"
-#: 01010000.xhp
+#: 00040500.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3149750\n"
-"17\n"
+"00040500.xhp\n"
+"par_id3145256\n"
+"90\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_MN_DELETE\">Deletes the selected graphic after confirmation.</ahelp>"
+msgid "<variable id=\"3dgeometrie\">Open the context menu of the 3D object, choose <emph>3D Effects - Geometry</emph> tab </variable>"
msgstr ""
-#: 00000206.xhp
+#: 00040500.xhp
msgctxt ""
-"00000206.xhp\n"
-"tit\n"
+"00040500.xhp\n"
+"par_id3154203\n"
+"91\n"
"help.text"
-msgid "Dif Import/Export/ Lotus import/ dBASE import"
+msgid "<variable id=\"3ddarstellung\">Open the context menu of the 3D object, choose <emph>3D Effects - Shading</emph> tab </variable>"
msgstr ""
-#: 00000206.xhp
+#: 00040500.xhp
msgctxt ""
-"00000206.xhp\n"
-"hd_id3155354\n"
-"1\n"
+"00040500.xhp\n"
+"par_id3151284\n"
+"92\n"
"help.text"
-msgid "Dif Import/Export/ Lotus import/ dBASE import"
+msgid "<variable id=\"3dbeleuchtung\">Open the context menu of the 3D object, choose <emph>3D Effects - Illumination</emph> tab </variable>"
msgstr ""
-#: 00000206.xhp
+#: 00040500.xhp
msgctxt ""
-"00000206.xhp\n"
-"par_id3150620\n"
-"4\n"
+"00040500.xhp\n"
+"par_id3152475\n"
+"93\n"
"help.text"
-msgid "Defines the options for import/export. These dialogs will be automatically shown if the corresponding file type is selected."
+msgid "<variable id=\"3dtexturen\">Open the context menu of the 3D object, choose <emph>3D Effects - Textures</emph> tab </variable>"
msgstr ""
-#: 00000206.xhp
-msgctxt ""
-"00000206.xhp\n"
-"hd_id3149000\n"
-"2\n"
-"help.text"
-msgid "Character set"
-msgstr "Komplet karakteresh"
-
-#: 00000206.xhp
+#: 00040500.xhp
msgctxt ""
-"00000206.xhp\n"
-"par_id3152790\n"
-"5\n"
+"00040500.xhp\n"
+"par_id3154572\n"
+"94\n"
"help.text"
-msgid "<ahelp hid=\"SC:LISTBOX:RID_SCDLG_IMPORTOPT:LB_FONT\">Select the character set from the options used for import/export.</ahelp>"
+msgid "<variable id=\"3dmaterial\">Open the context menu of the 3D object, choose <emph>3D Effects - Material</emph> tab </variable>"
msgstr ""
-#: 00000206.xhp
+#: 00040500.xhp
msgctxt ""
-"00000206.xhp\n"
-"par_id3152942\n"
-"3\n"
+"00040500.xhp\n"
+"par_id3145220\n"
+"155\n"
"help.text"
-msgid "For further information regarding filters, refer to the topic: <link href=\"text/shared/00/00000020.xhp\" name=\"Information about Import and Export Filters\">Information about Import and Export Filters</link>."
+msgid "Choose <emph>Format - Bullets and Numbering </emph>"
msgstr ""
-#: 00000215.xhp
-msgctxt ""
-"00000215.xhp\n"
-"tit\n"
-"help.text"
-msgid "ASCII Filter Options"
-msgstr "ASCII opcionet e filtrimit"
-
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"hd_id3146856\n"
-"1\n"
+"00040500.xhp\n"
+"par_id3148771\n"
+"156\n"
"help.text"
-msgid "ASCII Filter Options"
-msgstr "ASCII opcionet e filtrimit"
+msgid "On <emph>Formatting</emph> toolbar, click"
+msgstr "Shiriti i Funksionit kyçur/çkyçur"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3153070\n"
-"2\n"
+"00040500.xhp\n"
+"par_id3149445\n"
"help.text"
-msgid "You can specify which options, such as basic font, language, character set, or break, are imported or exported with a text document. The dialog appears when you load an ASCII file with the filter \"Text Encoded\" or when you save the document the first time, or when you \"save as\" with another name."
+msgid "<image id=\"img_id3149964\" src=\"cmd/sc_defaultbullet.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149964\">Icon</alt></image>"
msgstr ""
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"hd_id3159217\n"
-"3\n"
+"00040500.xhp\n"
+"par_id3157970\n"
+"163\n"
"help.text"
-msgid "Properties"
-msgstr "Vetitë"
+msgid "Bullets On/Off"
+msgstr "Pikat Po/Jo"
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3155577\n"
-"4\n"
+"00040500.xhp\n"
+"par_id3149735\n"
+"157\n"
"help.text"
-msgid "Defines the settings for importing or exporting your file. When exporting, only the character set and paragraph break can be defined."
+msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Options</emph> tab page"
msgstr ""
-#: 00000215.xhp
-msgctxt ""
-"00000215.xhp\n"
-"hd_id3146959\n"
-"5\n"
-"help.text"
-msgid "Character set"
-msgstr "Komplet karakteresh"
-
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3143206\n"
-"6\n"
+"00040500.xhp\n"
+"par_id3150785\n"
+"164\n"
"help.text"
-msgid "<ahelp hid=\"SW:LISTBOX:DLG_ASCII_FILTER:LB_CHARSET\">Specifies the character set of the file for export or import.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr ""
-#: 00000215.xhp
-msgctxt ""
-"00000215.xhp\n"
-"hd_id3154926\n"
-"7\n"
-"help.text"
-msgid "Default fonts"
-msgstr "Fontet standarde"
-
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3151262\n"
-"8\n"
+"00040500.xhp\n"
+"par_id3148420\n"
+"165\n"
"help.text"
-msgid "<ahelp hid=\"SW:LISTBOX:DLG_ASCII_FILTER:LB_FONT\">By setting a default font, you specify that the text should be displayed in a specific font. The default fonts can only be selected when importing.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr ""
-#: 00000215.xhp
-#, fuzzy
-msgctxt ""
-"00000215.xhp\n"
-"hd_id3154894\n"
-"9\n"
-"help.text"
-msgid "Language"
-msgstr "Gjuhë"
-
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3153323\n"
-"10\n"
+"00040500.xhp\n"
+"par_id3148888\n"
+"158\n"
"help.text"
-msgid "<ahelp hid=\"SW:LISTBOX:DLG_ASCII_FILTER:LB_LANGUAGE\">Specifies the language of the text, if this has not already been defined. This setting is only available when importing.</ahelp>"
+msgid "Choose <emph>Format - Bullets and Numbering - Bullets</emph> tab"
msgstr ""
-#: 00000215.xhp
-msgctxt ""
-"00000215.xhp\n"
-"hd_id3147143\n"
-"11\n"
-"help.text"
-msgid "Paragraph break"
-msgstr "Ndërprerja e paragrafit"
-
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3143281\n"
-"12\n"
+"00040500.xhp\n"
+"par_id3149917\n"
+"166\n"
"help.text"
-msgid "Defines the type of paragraph break for a text line."
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open Styles and Formatting - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr ""
-#: 00000215.xhp
-msgctxt ""
-"00000215.xhp\n"
-"hd_id3150935\n"
-"13\n"
-"help.text"
-msgid "CR & LF"
-msgstr "CR & LF"
-
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3145829\n"
-"14\n"
+"00040500.xhp\n"
+"par_id3154930\n"
+"167\n"
"help.text"
-msgid "<ahelp hid=\"SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_CRLF\">Produces a \"Carriage Return\" and a \"Linefeed\". This option is the default.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open Styles and Formatting - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr ""
-#: 00000215.xhp
-msgctxt ""
-"00000215.xhp\n"
-"hd_id3153551\n"
-"15\n"
-"help.text"
-msgid "CR"
-msgstr "CR & LF"
-
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3156042\n"
-"16\n"
+"00040500.xhp\n"
+"par_id3150862\n"
+"159\n"
"help.text"
-msgid "<ahelp hid=\"SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_CR\">Produces a \"Carriage Return\" as the paragraph break.</ahelp>"
+msgid "Choose <emph>Format - Bullets and Numbering - Numbering</emph> tab"
msgstr ""
-#: 00000215.xhp
-msgctxt ""
-"00000215.xhp\n"
-"hd_id3150713\n"
-"17\n"
-"help.text"
-msgid "LF"
-msgstr "LF"
-
-#: 00000215.xhp
+#: 00040500.xhp
msgctxt ""
-"00000215.xhp\n"
-"par_id3145090\n"
-"18\n"
+"00040500.xhp\n"
+"par_id3155378\n"
+"168\n"
"help.text"
-msgid "<ahelp hid=\"SW:RADIOBUTTON:DLG_ASCII_FILTER:RB_LF\">Produces a \"Linefeed\" as the paragraph break.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open <emph>Styles and Formatting</emph> - Presentation Styles - context menu of an Outline Style - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr ""
-#: icon_alt.xhp
+#: 00040500.xhp
msgctxt ""
-"icon_alt.xhp\n"
-"tit\n"
+"00040500.xhp\n"
+"par_id3156011\n"
+"169\n"
"help.text"
-msgid "Standard Icons Alt Texts to be Embedded"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr ""
-#: icon_alt.xhp
+#: 00040500.xhp
msgctxt ""
-"icon_alt.xhp\n"
-"par_idN10546\n"
+"00040500.xhp\n"
+"par_id0611200904324832\n"
"help.text"
-msgid "<variable id=\"alt_icon\">Icon </variable>"
+msgid "<variable id=\"graphics\">Choose <emph>Format - Bullets and Numbering - Graphics</emph> tab</variable>"
msgstr ""
-#: icon_alt.xhp
+#: 00040500.xhp
msgctxt ""
-"icon_alt.xhp\n"
-"par_idN10555\n"
+"00040500.xhp\n"
+"par_id3155848\n"
+"160\n"
"help.text"
-msgid "<variable id=\"alt_warning\">Warning Icon </variable>"
+msgid "Choose <emph>Format - Bullets and Numbering - Outline</emph> tab"
msgstr ""
-#: icon_alt.xhp
+#: 00040500.xhp
msgctxt ""
-"icon_alt.xhp\n"
-"par_idN10564\n"
+"00040500.xhp\n"
+"par_id3148733\n"
+"170\n"
"help.text"
-msgid "<variable id=\"alt_tip\">Tip Icon </variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting</emph> - Numbering Styles - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr ""
-#: icon_alt.xhp
+#: 00040500.xhp
msgctxt ""
-"icon_alt.xhp\n"
-"par_idN10573\n"
+"00040500.xhp\n"
+"par_id3156658\n"
+"162\n"
"help.text"
-msgid "<variable id=\"alt_note\">Note Icon </variable>"
+msgid "Choose <emph>Format - Bullets and Numbering</emph>. Open <emph>Position</emph> tab page"
msgstr ""
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"tit\n"
+"00040500.xhp\n"
+"par_id3156170\n"
+"152\n"
"help.text"
-msgid "Context Menu of Web Pages in Read-Only Mode"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Choose <emph>Tools - Outline Numbering - Position</emph> tab </caseinline></switchinline>"
msgstr ""
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3158397\n"
-"1\n"
+"00040500.xhp\n"
+"par_id3153812\n"
+"173\n"
"help.text"
-msgid "Context Menu of Web Pages in Read-Only Mode"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Open <emph>Styles and Formatting - Numbering Styles</emph> - context menu of an entry - choose <emph>New/Modify</emph></caseinline></switchinline>"
msgstr ""
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3145348\n"
-"18\n"
+"00040500.xhp\n"
+"par_id3151332\n"
+"194\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_SAVEGRAPHIC\">Opens a dialog where you can save the selected graphics.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Menu <emph>Format - Picture </emph>- <emph>Crop</emph> tab </caseinline></switchinline>"
msgstr ""
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3151262\n"
-"31\n"
+"00040500.xhp\n"
+"par_id3153317\n"
+"198\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_COPYLINK\">Copies the link at the mouse pointer to the clipboard.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>Icon on the <emph>Picture</emph> toolbar:</defaultinline></switchinline>"
msgstr ""
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3155934\n"
-"37\n"
+"00040500.xhp\n"
+"par_id3149953\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_COPYGRAPHIC\">Copies a selected graphic to the clipboard.</ahelp>"
+msgid "<image id=\"img_id3155092\" src=\"cmd/sc_grafattrcrop.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155092\">Icon</alt></image>"
msgstr ""
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3145629\n"
-"22\n"
+"00040500.xhp\n"
+"par_id3153695\n"
+"209\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_LOADGRAPHIC\">If you have deactivated the graphics display, choose the<emph> Load Graphics </emph>command to make them visible.</ahelp>"
-msgstr ""
+msgid "Crop"
+msgstr "Preje"
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3150902\n"
-"24\n"
+"00040500.xhp\n"
+"par_id3151254\n"
+"195\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_GRAPHICOFF\">Sets all graphics in the document to be invisible.</ahelp>"
-msgstr ""
+msgid "Choose <emph>Format - Change Case</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3153910\n"
-"26\n"
+"00040500.xhp\n"
+"par_id3159624\n"
+"196\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_PLUGINOFF\">Disables inserted plug-ins.</ahelp> Click this command again to reactivate the <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-ins\">plug-ins</link>."
+msgid "Open context menu (text) - choose <emph>Change Case</emph>"
msgstr ""
-#: 01020000.xhp
+#: 00040500.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3148548\n"
-"38\n"
+"00040500.xhp\n"
+"par_id3153579\n"
+"197\n"
"help.text"
-msgid "<ahelp hid=\"HID_MN_READONLY_SAVEBACKGROUND\">Allows you to save the background of a Web page.</ahelp>"
+msgid "Menu <emph>Format - Asian phonetic guide</emph>"
msgstr ""
#: 00040501.xhp
@@ -13508,437 +11988,1772 @@ msgctxt ""
msgid "<variable id=\"anderzelle\">Choose <emph>Format - Anchor - To Cell</emph></variable>"
msgstr ""
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
+"00040502.xhp\n"
"tit\n"
"help.text"
-msgid "Warning Print Options"
-msgstr "Shtyp opcionet e pamjes së faqes"
+msgid "Format Menu"
+msgstr "Menyja për formatim"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"hd_id3145759\n"
+"00040502.xhp\n"
+"hd_id3149741\n"
"1\n"
"help.text"
-msgid "Warning Print Options"
-msgstr "Shtyp opcionet e pamjes së faqes"
+msgid "Format Menu"
+msgstr "Menyja për formatim"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"par_id3152352\n"
+"00040502.xhp\n"
+"par_id3146857\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"SD:MODALDIALOG:DLG_PRINT_WARNINGS\">The<emph> Warning Print Options </emph>dialog appears when the page setup does not match the defined print range.</ahelp> This is the case, for example, if you draw a rectangle that is larger than the current page format."
+msgid "Choose <emph>Format - Line</emph> (Impress and Draw)"
msgstr ""
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"hd_id3150620\n"
+"00040502.xhp\n"
+"par_id366527\n"
+"help.text"
+msgid "Choose <emph>Format - Object - Line </emph>(Writer)"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3835261\n"
+"help.text"
+msgid "Choose <emph>Format - Graphic - Line </emph>(Calc)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3148668\n"
"3\n"
"help.text"
-msgid "Print options"
-msgstr "Opcionet e shtypjes"
+msgid "On <emph>Line and Filling</emph> Bar, click"
+msgstr ""
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"hd_id3156324\n"
+"00040502.xhp\n"
+"par_id3148889\n"
+"help.text"
+msgid "<image id=\"img_id3150669\" src=\"cmd/sc_formatline.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150669\">Icon</alt></image>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3159147\n"
+"4\n"
+"help.text"
+msgid "Line"
+msgstr "Rreshti"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154285\n"
"5\n"
"help.text"
-msgid "Fit page to print range"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line</emph> tab"
msgstr ""
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"par_id3158405\n"
+"00040502.xhp\n"
+"par_id3147335\n"
"7\n"
"help.text"
-msgid "If you select the <emph>Fit page to print range </emph>option, the <emph>Warning Print Options</emph> dialog will not appear in subsequent print runs of this document."
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Line</emph> tab (presentation documents)"
msgstr ""
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"hd_id3156553\n"
+"00040502.xhp\n"
+"par_id3156023\n"
"8\n"
"help.text"
-msgid "Print on multiple pages"
-msgstr "Shikim paraprak i faqes: faqe të shumëfishta"
+msgid "Choose <emph>Format - Title - Borders</emph> tab (charts)"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"par_id3154823\n"
+"00040502.xhp\n"
+"par_id3153061\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_POSTER\">Specifies whether to distribute the printout on multiple pages.</ahelp> The print range will be printed on multiple pages."
-msgstr ""
+msgid "Choose <emph>Format - Legend - Borders</emph> tab (charts)"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"hd_id3147010\n"
+"00040502.xhp\n"
+"par_id3155922\n"
"10\n"
"help.text"
-msgid "Trim"
-msgstr "TRIM"
+msgid "Choose <emph>Format - Axis - Line</emph> tab (charts)"
+msgstr "Zgjidh një tjetër filesistem root"
-#: 00000210.xhp
+#: 00040502.xhp
msgctxt ""
-"00000210.xhp\n"
-"par_id3151111\n"
+"00040502.xhp\n"
+"par_id3147559\n"
"11\n"
"help.text"
-msgid "<ahelp hid=\"SD:RADIOBUTTON:DLG_PRINT_WARNINGS:RBT_CUT\">Specifies that anything extending beyond the maximum print range will be cut off and not included in the printing.</ahelp>"
+msgid "Choose <emph>Format - Grid - Line</emph> tab (charts)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154758\n"
+"12\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Wall - Borders</emph> tab (charts)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153960\n"
+"13\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Floor - Borders</emph> tab (charts)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154939\n"
+"14\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Area - Borders</emph> tab (charts)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151293\n"
+"15\n"
+"help.text"
+msgid "<variable id=\"linienstile\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Line Styles</emph> tab </variable>"
msgstr ""
-#: 00000450.xhp
+#: 00040502.xhp
msgctxt ""
-"00000450.xhp\n"
+"00040502.xhp\n"
+"par_id3149317\n"
+"16\n"
+"help.text"
+msgid "<variable id=\"linienenden\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Line - Arrow Styles</emph> tab </variable>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3156082\n"
+"17\n"
+"help.text"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3148922\n"
+"18\n"
+"help.text"
+msgid "On <emph>Line and Filling</emph> Bar, click"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3156424\n"
+"help.text"
+msgid "<image id=\"img_id3150868\" src=\"cmd/sc_fillstyle.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150868\">Icon</alt></image>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150393\n"
+"19\n"
+"help.text"
+msgid "Area"
+msgstr "Hapësira"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154948\n"
+"20\n"
+"help.text"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Area</emph> tab"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145607\n"
+"22\n"
+"help.text"
+msgid "Choose <emph>Format - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Area</emph> tab (presentation documents)"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152922\n"
+"23\n"
+"help.text"
+msgid "Choose <emph>Format - Title - Area</emph> tab (chart documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3157894\n"
+"24\n"
+"help.text"
+msgid "Choose <emph>Format - Legend - Area</emph> tab (chart documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3144444\n"
+"25\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Wall - Area</emph> tab (chart documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3156543\n"
+"26\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Floor - Area</emph> tab (chart documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150685\n"
+"27\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Area - Area</emph> tab (chart documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149664\n"
+"120\n"
+"help.text"
+msgid "Choose <emph>Format - Page - Background</emph> tab (in $[officename] Impress and $[officename] Draw)"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3163820\n"
+"28\n"
+"help.text"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Colors</emph> tab"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152462\n"
+"29\n"
+"help.text"
+msgid "Choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Colors</emph> tab"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154985\n"
+"141\n"
+"help.text"
+msgid "Choose <emph>Format - Area - Transparency</emph> tab (drawing documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145365\n"
+"142\n"
+"help.text"
+msgid "Choose <emph>Format - Area - Transparency</emph> tab (presentation documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151117\n"
+"143\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Wall - Transparency</emph> tab (chart documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3147326\n"
+"144\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Area - Transparency</emph> tab (chart documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154920\n"
+"145\n"
+"help.text"
+msgid "Choose <emph>Format - Chart Floor - Transparency</emph> tab (chart documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145591\n"
+"146\n"
+"help.text"
+msgid "Choose <emph>Format - Title - All Titles - Transparency</emph> tab (chart documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145750\n"
+"147\n"
+"help.text"
+msgid "Choose <emph>Format - Title - Main Title - Transparency </emph>tab (chart documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3148556\n"
+"148\n"
+"help.text"
+msgid "Choose <emph>Format - Title - Subtitle - Transparency</emph> tab (chart documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3163710\n"
+"149\n"
+"help.text"
+msgid "Choose <emph>Format - Title - Title (X Axis) - Transparency</emph> tab (chart documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150487\n"
+"150\n"
+"help.text"
+msgid "Choose <emph>Format - Title - Title (Y Axis) - Transparency</emph> tab (chart documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154320\n"
+"151\n"
+"help.text"
+msgid "Choose <emph>Format - Title - Title (Z Axis) - Transparency</emph> tab (chart documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151113\n"
+"152\n"
+"help.text"
+msgid "Choose <emph>Format - Object Properties - Data Point - Transparency</emph> - tab (chart documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149266\n"
+"153\n"
+"help.text"
+msgid "Choose <emph>Format - Object Properties - Data Series - Transparency</emph> tab (chart documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150011\n"
+"30\n"
+"help.text"
+msgid "<variable id=\"schatte\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Shadow</emph> tab </variable>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3147441\n"
+"31\n"
+"help.text"
+msgid "<variable id=\"verlauf\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Gradients</emph> tab </variable>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3155308\n"
+"32\n"
+"help.text"
+msgid "<variable id=\"schraffur\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Hatching</emph> tab </variable>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145800\n"
+"33\n"
+"help.text"
+msgid "<variable id=\"bitmap\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Area - Bitmaps</emph> tab </variable>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145251\n"
+"34\n"
+"help.text"
+msgid "<variable id=\"formattext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline></variable>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152810\n"
+"35\n"
+"help.text"
+msgid "<variable id=\"text\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text</emph> tab</variable>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151060\n"
+"36\n"
+"help.text"
+msgid "<variable id=\"laufext\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - Text Attributes</emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - Define Text Attributes</emph></caseinline><defaultinline><emph>Text</emph></defaultinline></switchinline><emph> - Text Animation</emph> tab</variable>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149911\n"
+"37\n"
+"help.text"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3156286\n"
+"89\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F4 key </caseinline><caseinline select=\"IMPRESS\">F4 key </caseinline></switchinline>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153052\n"
+"help.text"
+msgid "<image id=\"img_id3150965\" src=\"cmd/sc_transformdialog.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150965\">Icon</alt></image>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149938\n"
+"39\n"
+"help.text"
+msgid "Position and Size"
+msgstr "Pozita dhe Madhësia"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3148833\n"
+"170\n"
+"help.text"
+msgid "Open the context menu for the object - choose <emph>Name</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id411999\n"
+"help.text"
+msgid "Open the context menu for the object - choose <emph>Description</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153099\n"
+"40\n"
+"help.text"
+msgid "<variable id=\"position2\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Position and Size</emph> tab </variable>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152973\n"
+"42\n"
+"help.text"
+msgid "Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Rotation</emph> tab"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3148495\n"
+"help.text"
+msgid "<image id=\"img_id3146898\" src=\"cmd/sc_toggleobjectrotatemode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3146898\">Icon</alt></image>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3146790\n"
+"44\n"
+"help.text"
+msgid "Rotate"
+msgstr "Rrotullo"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145666\n"
+"45\n"
+"help.text"
+msgid "<variable id=\"ecke\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Slant & Corner Radius</emph> tab </variable>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3146081\n"
+"46\n"
+"help.text"
+msgid "<variable id=\"legende\">Choose <emph>Format - </emph><switchinline select=\"appl\"><caseinline select=\"WRITER\"><emph>Object - </emph></caseinline><caseinline select=\"CALC\"><emph>Graphic - </emph></caseinline></switchinline><emph>Position and Size - Callout</emph> tab (only for textbox callouts, not for custom shapes callouts) </variable>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3083283\n"
+"172\n"
+"help.text"
+msgid "Choose <emph>Edit - Points</emph>"
+msgstr "Redakto të Dhënat Serike/Pikat"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145642\n"
+"47\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">Open context menu - choose <emph>Edit Points</emph></caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Open context menu - choose <emph>Edit Points</emph></caseinline></switchinline>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149019\n"
+"90\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\">F8 key </caseinline><caseinline select=\"IMPRESS\">F8 key </caseinline></switchinline>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150044\n"
+"help.text"
+msgid "<image id=\"img_id3147100\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3147100\">Icon</alt></image>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153966\n"
+"49\n"
+"help.text"
+msgid "Edit Points"
+msgstr "Edito pikat"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151248\n"
+"50\n"
+"help.text"
+msgid "Choose <emph>Format - Character</emph> (drawing functions)"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145229\n"
+"121\n"
+"help.text"
+msgid "Open context menu - choose <emph>Character</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151342\n"
+"122\n"
+"help.text"
+msgid "Open context menu - choose <emph>Size</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149255\n"
+"123\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3155177\n"
+"124\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Bold</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145766\n"
+"help.text"
+msgid "<image id=\"img_id3156558\" src=\"cmd/sc_bold.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3156558\">Icon</alt></image>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3147001\n"
+"55\n"
+"help.text"
+msgid "Bold"
+msgstr "Me të trasha"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151276\n"
+"125\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Italic</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3159091\n"
+"help.text"
+msgid "<image id=\"img_id3155578\" src=\"cmd/sc_italic.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3155578\">Icon</alt></image>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150234\n"
+"58\n"
+"help.text"
+msgid "Italic"
+msgstr "Italike"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154589\n"
+"126\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Underline</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145223\n"
+"help.text"
+msgid "<image id=\"img_id3151068\" src=\"cmd/sc_underline.png\" width=\"0.2228in\" height=\"0.2228in\" localize=\"true\"><alt id=\"alt_id3151068\">Icon</alt></image>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154715\n"
+"88\n"
+"help.text"
+msgid "Underline"
+msgstr "Nënvizim"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145131\n"
+"127\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Strikethrough</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3158214\n"
+"128\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Shadow</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150207\n"
+"129\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Contour</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154383\n"
+"130\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Superscript</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152767\n"
+"131\n"
+"help.text"
+msgid "Open context menu - choose <emph>Style - Subscript</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3155377\n"
+"132\n"
+"help.text"
+msgid "Open context menu - choose <emph>Line Spacing</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154475\n"
+"133\n"
+"help.text"
+msgid "Open context menu - choose <emph>Line Spacing - Single</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150478\n"
+"134\n"
+"help.text"
+msgid "Open context menu - choose <emph>Line Spacing - 1.5 Lines</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3147167\n"
+"135\n"
+"help.text"
+msgid "Open context menu - choose <emph>Line Spacing - Double</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3146978\n"
+"69\n"
+"help.text"
+msgid "Choose <emph>Format - Alignment - Left</emph> (drawing functions)"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153009\n"
+"136\n"
+"help.text"
+msgid "Open context menu - choose <emph>Alignment - Left</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3147310\n"
+"help.text"
+msgid "<image id=\"img_id3155370\" src=\"cmd/sc_alignleft.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155370\">Icon</alt></image>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151336\n"
+"71\n"
+"help.text"
+msgid "Align Left"
+msgstr "Rreshto majtas"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3155823\n"
+"72\n"
+"help.text"
+msgid "Choose <emph>Format - Alignment - Right</emph> (drawing functions)"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3155762\n"
+"137\n"
+"help.text"
+msgid "Open context menu - choose <emph>Alignment - Right</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149408\n"
+"help.text"
+msgid "<image id=\"img_id3154421\" src=\"cmd/sc_alignright.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154421\">Icon</alt></image>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153607\n"
+"74\n"
+"help.text"
+msgid "Align Right"
+msgstr "Rreshto djathtas"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149189\n"
+"75\n"
+"help.text"
+msgid "Choose <emph>Format - Alignment - Centered</emph> (drawing functions)"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154624\n"
+"138\n"
+"help.text"
+msgid "Open context menu - choose <emph>Alignment - Center</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153815\n"
+"help.text"
+msgid "<image id=\"img_id3149757\" src=\"cmd/sc_centerpara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149757\">Icon</alt></image>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153076\n"
+"77\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Align Center Horizontally </caseinline><defaultinline>Centered</defaultinline></switchinline>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3146151\n"
+"78\n"
+"help.text"
+msgid "Choose <emph>Format - Alignment - Justified</emph> (drawing functions)"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3168612\n"
+"139\n"
+"help.text"
+msgid "Open context menu - choose <emph>Alignment - Justified</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3156189\n"
+"help.text"
+msgid "<image id=\"img_id3145308\" src=\"cmd/sc_justifypara.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3145308\">Icon</alt></image>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153131\n"
+"80\n"
+"help.text"
+msgid "Justified"
+msgstr "Rrafshuar në të dy anët"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3150527\n"
+"81\n"
+"help.text"
+msgid "<variable id=\"font\">Click <emph>Fontwork</emph> icon on <emph>Drawing</emph> bar </variable>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3144503\n"
+"103\n"
+"help.text"
+msgid "Choose <emph>Format - Group</emph>"
+msgstr "Nuk mund ta hap fajllin $(URL1)."
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3154854\n"
+"140\n"
+"help.text"
+msgid "Open context menu - choose <emph>Group</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3157985\n"
+"83\n"
+"help.text"
+msgid "Choose <emph>Format - Group - Group</emph> (text documents, spreadsheets)"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3157980\n"
+"104\n"
+"help.text"
+msgid "Choose <emph>Modify - Group</emph> (drawing documents)"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149508\n"
+"84\n"
+"help.text"
+msgid "Open context menu - choose <emph>Group - Group</emph> (form objects)"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3146858\n"
+"help.text"
+msgid "<image id=\"img_id3154344\" src=\"cmd/sc_formatgroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3154344\">Icon</alt></image>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149593\n"
+"113\n"
+"help.text"
+msgid "Group"
+msgstr "Grupi"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153023\n"
+"85\n"
+"help.text"
+msgid "Choose <emph>Format - Group - Ungroup</emph> (text documents, spreadsheets)"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3163378\n"
+"105\n"
+"help.text"
+msgid "Choose <emph>Modify - Ungroup</emph> (drawing documents)"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3156038\n"
+"86\n"
+"help.text"
+msgid "Open context menu - choose <emph>Ungroup</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3151300\n"
+"help.text"
+msgid "<image id=\"img_id3150831\" src=\"cmd/sc_formatungroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3150831\">Icon</alt></image>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3146894\n"
+"115\n"
+"help.text"
+msgid "Ungroup"
+msgstr "Zhgrupo"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3153109\n"
+"106\n"
+"help.text"
+msgid "Choose <emph>Format - Group - Exit Group</emph> (text documents, spreadsheets)"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145678\n"
+"107\n"
+"help.text"
+msgid "Choose <emph>Modify - Exit Group</emph> (drawing documents)"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152367\n"
+"108\n"
+"help.text"
+msgid "Open context menu - choose <emph>Exit Group</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3158402\n"
+"help.text"
+msgid "<image id=\"img_id3149422\" src=\"cmd/sc_leavegroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149422\">Icon</alt></image>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3155347\n"
+"117\n"
+"help.text"
+msgid "Exit Group"
+msgstr "Grupi Dalës"
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149129\n"
+"109\n"
+"help.text"
+msgid "Choose <emph>Format - Group - Enter Group</emph> (text documents, spreadsheets)"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3145354\n"
+"110\n"
+"help.text"
+msgid "Choose <emph>Modify - Enter Group</emph> (drawing documents)"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3149946\n"
+"111\n"
+"help.text"
+msgid "Open context menu - choose <emph>Enter Group</emph>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152388\n"
+"help.text"
+msgid "<image id=\"img_id3149900\" src=\"cmd/sc_entergroup.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3149900\">Icon</alt></image>"
+msgstr ""
+
+#: 00040502.xhp
+msgctxt ""
+"00040502.xhp\n"
+"par_id3152547\n"
+"119\n"
+"help.text"
+msgid "Enter Group"
+msgstr "Fut grupin"
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
"tit\n"
"help.text"
-msgid "Database"
-msgstr "Databaza"
+msgid "Format Menu"
+msgstr "Menyja për formatim"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"hd_id3154689\n"
+"00040503.xhp\n"
+"hd_id3155757\n"
"1\n"
"help.text"
-msgid "Database"
-msgstr "Databaza"
+msgid "Format Menu"
+msgstr "Menyja për formatim"
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3152876\n"
-"7\n"
+"00040503.xhp\n"
+"par_id3147294\n"
+"2\n"
"help.text"
-msgid "<variable id=\"DBTab\">In a database file window, choose <emph>Tools - Table Filter</emph></variable>"
+msgid "Choose <emph>Format - Row - Height</emph>"
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3153244\n"
-"57\n"
+"00040503.xhp\n"
+"par_id3149551\n"
+"3\n"
"help.text"
-msgid "<variable id=\"DBAbfragen\"><emph>View - Database Objects - Queries</emph></variable>"
+msgid "Open context menu of a row header in an open database table - choose <emph>Row Height</emph>"
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3147294\n"
+"00040503.xhp\n"
+"par_id3153136\n"
"4\n"
"help.text"
-msgid "<variable id=\"Typ\">In a database file window, choose <emph>Edit - Database - Properties - Advanced Settings</emph> tab</variable>"
+msgid "Choose <emph>Format - Column - Width</emph>"
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3159411\n"
+"00040503.xhp\n"
+"par_id3150756\n"
"5\n"
"help.text"
-msgid "<variable id=\"Datenquelle\">In a database file window of type ODBC or Address book, choose Edit - Database - Connection Type</variable>"
+msgid "Open context menu of a column header in a database table - choose <emph>Column Width</emph>"
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3149119\n"
-"6\n"
+"00040503.xhp\n"
+"par_id3148668\n"
+"11\n"
"help.text"
-msgid "<variable id=\"Verzeichnis\">Path selection button in various Wizards / <emph>Edit</emph> Buttons for some entries in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Paths</emph></variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Cells - Numbers</emph> tab </caseinline></switchinline>"
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3154497\n"
-"8\n"
+"00040503.xhp\n"
+"par_id3152349\n"
+"13\n"
"help.text"
-msgid "<variable id=\"ODBC\">In a database file window of type ODBC, choose Edit - Database - Connection Type</variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Choose <emph>Format - Styles and Formatting</emph> - open context menu and choose <emph>Modify/New - Numbers</emph> tab </caseinline></switchinline>"
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3149355\n"
-"61\n"
+"00040503.xhp\n"
+"par_id3161459\n"
+"14\n"
"help.text"
-msgid "<variable id=\"ldap\">In a database file window of type Address book - LDAP, choose Edit - Database - Properties</variable>"
+msgid "Open context menu for a column header in an open database table - choose <emph>Column Format - Format</emph> tab"
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3157896\n"
-"9\n"
+"00040503.xhp\n"
+"par_id3147531\n"
+"15\n"
"help.text"
-msgid "<variable id=\"JDBC\">In a database file window of type JDBC, choose <emph>Edit - Database - Properties</emph></variable>"
+msgid "Choose <emph>Format - Axis - Y Axis - Numbers</emph> tab (Chart Documents)"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3150823\n"
+"32\n"
+"help.text"
+msgid "Also as <emph>Number Format</emph> dialog for tables and fields in text documents: Choose <emph>Format - Number Format</emph>, or choose <emph>Insert - Fields - Other - Variables</emph> tab and select \"Additional formats\" in the <emph>Format</emph> list."
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3148548\n"
-"81\n"
+"00040503.xhp\n"
+"par_id3154923\n"
+"6\n"
"help.text"
-msgid "<variable id=\"mysql\">In a database file window of type MySQL, choose <emph>Edit - Database - Properties</emph></variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\">Choose <emph>Format - Title - Main Title - Alignment</emph> tab </caseinline><defaultinline>Choose <emph>Format - Cells - Alignment</emph> tab</defaultinline></switchinline>"
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3149346\n"
-"10\n"
+"00040503.xhp\n"
+"par_id3149457\n"
+"7\n"
"help.text"
-msgid "<variable id=\"dBase\">In a database file window of type dBASE, choose <emph>Edit - Database - Properties</emph></variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Open context menu of a column header in a database table - choose <emph>Column Format - Alignment</emph> tab</defaultinline></switchinline>"
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3147043\n"
-"11\n"
+"00040503.xhp\n"
+"par_id3150400\n"
+"8\n"
"help.text"
-msgid "<variable id=\"dBasein\">In a database file window of type dBASE, choose <emph>Edit - Database - Properties</emph>, click <emph>Indexes</emph></variable>"
+msgid "<variable id=\"tabform\">Open context menu of a row header in a database table - choose <emph>Table Format</emph></variable>"
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3154317\n"
-"12\n"
+"00040503.xhp\n"
+"par_id3149650\n"
+"33\n"
"help.text"
-msgid "<variable id=\"Text\">In a database file window of type Text, choose <emph>Edit - Database - Properties</emph></variable>"
+msgid "<variable id=\"spaltform\">Open context menu of a column header in a database table - choose <emph>Column Format</emph></variable>"
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3150774\n"
+"00040503.xhp\n"
+"par_id3153799\n"
+"34\n"
+"help.text"
+msgid "<variable id=\"zeilenloeschen\">Context menu for a row header in an open database table - <emph>Delete Rows</emph></variable>"
+msgstr ""
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3150495\n"
+"16\n"
+"help.text"
+msgid "Choose <emph>Modify - Flip</emph> ($[officename] Draw)"
+msgstr ""
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3155742\n"
+"17\n"
+"help.text"
+msgid "Choose <emph>Format - Graphics - Graphics</emph> tab"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3158407\n"
+"35\n"
+"help.text"
+msgid "Open context menu - choose <emph>Flip</emph> (presentation documents)"
+msgstr ""
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3150290\n"
"20\n"
"help.text"
-msgid "<variable id=\"ADO\">In a database file window of type MS ADO, choose <emph>Edit - Database - Properties</emph></variable>"
+msgid "Choose <emph>Modify - Flip - Vertically</emph> ($[officename] Draw)"
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3151110\n"
+"00040503.xhp\n"
+"par_id3153179\n"
"21\n"
"help.text"
-msgid "<variable id=\"SQLStatement\">In a database file window, choose <emph>Tools - SQL</emph></variable>"
+msgid "Choose <emph>Format - Graphics - Graphics</emph> tab"
+msgstr "Zgjidh një tjetër filesistem root"
+
+#: 00040503.xhp
+msgctxt ""
+"00040503.xhp\n"
+"par_id3157960\n"
+"36\n"
+"help.text"
+msgid "Open context menu - choose <emph>Flip - Vertically</emph> (presentation documents)"
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3147209\n"
-"22\n"
+"00040503.xhp\n"
+"par_id3153369\n"
+"26\n"
"help.text"
-msgid "<variable id=\"Abfragen\">In a database file window, click the <emph>Queries</emph> icon</variable>"
+msgid "Choose <emph>Modify - Flip - Horizontally</emph> ($[officename] Draw)"
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3153880\n"
-"62\n"
+"00040503.xhp\n"
+"par_id3147348\n"
+"27\n"
"help.text"
-msgid "<variable id=\"Tabellen\">In a database file window, click the <emph>Tables</emph> icon</variable>"
+msgid "Choose <emph>Format - Graphics</emph>, and then click the <emph>Graphics</emph> tab"
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3153760\n"
-"64\n"
+"00040503.xhp\n"
+"par_id3156106\n"
+"42\n"
"help.text"
-msgid "<variable id=\"tabellenentwurf\">In a database file window, click the Tables icon. Choose Insert -<emph> Table Design</emph> or <emph>Edit - Edit</emph></variable>"
+msgid "Choose <emph>Format - Flip - Horizontally</emph>"
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3156329\n"
-"65\n"
+"00040503.xhp\n"
+"par_id3152578\n"
+"37\n"
"help.text"
-msgid "<variable id=\"indexentwurf\">In a database file window, click the Tables icon. Choose <emph>Insert - Table Design</emph> or <emph>Edit - Edit</emph></variable>"
+msgid "Right-click a selected object, and then choose <emph>Flip - Horizontally</emph> ($[officename] Impress)"
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3154047\n"
-"23\n"
+"00040503.xhp\n"
+"par_id3147318\n"
+"38\n"
"help.text"
-msgid "<variable id=\"AbfrageNeu\">In a database file window, choose <emph>Insert - Query (Design view)</emph></variable>"
+msgid "Choose <emph>Modify - Distribution</emph> ($[officename] Draw)"
msgstr ""
-#: 00000450.xhp
+#: 00040503.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3149579\n"
-"24\n"
+"00040503.xhp\n"
+"par_id3149064\n"
+"39\n"
"help.text"
-msgid "<variable id=\"entwab\">In a database file window, click the <emph>Queries</emph> icon, then choose <emph>Edit - Edit</emph></variable>"
+msgid "Open context menu - choose <emph>Distribution</emph> ($[officename] Impress)"
msgstr ""
-#: 00000450.xhp
+#: 01000000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3149902\n"
-"25\n"
+"01000000.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"FehlendesElement\">In a database file window, click the <emph>Queries</emph> icon, then choose <emph>Edit - Edit</emph>. When referenced fields no longer exist, you see this dialog</variable>"
+msgid "Showing and Hiding Docked Windows"
msgstr ""
-#: 00000450.xhp
+#: 01000000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3159166\n"
-"26\n"
+"01000000.xhp\n"
+"hd_id3085157\n"
+"1\n"
"help.text"
-msgid "<variable id=\"Joins\">Open query design and choose <emph>Insert - New Relation</emph>, or double-click on a connection line between two tables.</variable>"
+msgid "Showing and Hiding Docked Windows"
msgstr ""
-#: 00000450.xhp
+#: 01000000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3151245\n"
+"01000000.xhp\n"
+"par_id3149948\n"
+"2\n"
"help.text"
-msgid "<image id=\"img_id3153063\" src=\"cmd/sc_addtable.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153063\">Icon</alt></image>"
+msgid "Every <link href=\"text/shared/00/00000005.xhp#andocken\" name=\"docked\">docked</link> window has an icon to control the display properties of the window."
msgstr ""
-#: 00000450.xhp
+#: 01000000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3153896\n"
-"41\n"
+"01000000.xhp\n"
+"par_id3150502\n"
+"3\n"
"help.text"
-msgid "Insert Tables"
-msgstr "Indeksi i tabelave"
+msgid "To show or hide a docked window, click the icon."
+msgstr ""
-#: 00000450.xhp
+#: 01000000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3149457\n"
+"01000000.xhp\n"
+"hd_id3150465\n"
+"13\n"
"help.text"
-msgid "<image id=\"img_id3147282\" src=\"cmd/sc_dbaddrelation.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147282\">Icon</alt></image>"
+msgid "AutoShow and AutoHide Docked Windows"
msgstr ""
-#: 00000450.xhp
+#: 01000000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3159085\n"
-"43\n"
+"01000000.xhp\n"
+"par_id3155504\n"
+"14\n"
"help.text"
-msgid "New Relation"
-msgstr "Relacion i ri..."
+msgid "You can click the edge of a hidden docked window to open the window."
+msgstr ""
-#: 00000450.xhp
+#: 01000000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3150414\n"
-"47\n"
+"01000000.xhp\n"
+"par_id3153257\n"
+"15\n"
"help.text"
-msgid "<emph>Find Record</emph> icon on the Table Data bar and Form Design bar"
+msgid "The docked window closes automatically when you move the mouse pointer outside of the window."
msgstr ""
-#: 00000450.xhp
+#: 01000000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3157962\n"
+"01000000.xhp\n"
+"par_id3154046\n"
+"16\n"
"help.text"
-msgid "<image id=\"img_id3145419\" src=\"cmd/sc_recsearch.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145419\">Icon</alt></image>"
+msgid "Multiple docked windows act as a single window in AutoShow/AutoHide mode."
msgstr ""
-#: 00000450.xhp
+#: 01000000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3157322\n"
-"48\n"
+"01000000.xhp\n"
+"hd_id3145416\n"
+"18\n"
"help.text"
-msgid "Find Record"
-msgstr "Gjej Shënimin..."
+msgid "Drag and Drop"
+msgstr "Tërhiq dhe Lësho"
-#: 00000450.xhp
+#: 01000000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3150870\n"
-"49\n"
+"01000000.xhp\n"
+"par_id3149578\n"
+"19\n"
"help.text"
-msgid "<emph>Sort Order</emph> icon on the Table Data bar and Form Design bar"
+msgid "If you drag an object over the edge of a hidden docked window, the window opens in AutoShow mode."
msgstr ""
-#: 00000450.xhp
+#: 01010000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3150393\n"
+"01010000.xhp\n"
+"tit\n"
"help.text"
-msgid "<image id=\"img_id3145606\" src=\"cmd/sc_tablesort.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145606\">Icon</alt></image>"
+msgid "Gallery context menu"
+msgstr "Meny kyçur/çkyçur"
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"hd_id3150672\n"
+"1\n"
+"help.text"
+msgid "Gallery context menu"
+msgstr "Meny kyçur/çkyçur"
+
+#: 01010000.xhp
+msgctxt ""
+"01010000.xhp\n"
+"par_id3083278\n"
+"3\n"
+"help.text"
+msgid "<ahelp hid=\"HID_GALLERY_MN_ADDMENU\">Defines how a selected graphic object is inserted into a document.</ahelp>"
msgstr ""
-#: 00000450.xhp
+#: 01010000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3145745\n"
-"50\n"
+"01010000.xhp\n"
+"par_id3156053\n"
+"5\n"
"help.text"
-msgid "Sort Order"
-msgstr "renditja e klasifikimit"
+msgid "<ahelp hid=\"HID_GALLERY_MN_ADD\">Inserts a copy of the selected graphic object directly into the document.</ahelp>"
+msgstr ""
-#: 00000450.xhp
+#: 01010000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3145171\n"
-"55\n"
+"01010000.xhp\n"
+"par_id3149038\n"
+"7\n"
"help.text"
-msgid "<variable id=\"allgemein\">In a database file window, choose <emph>Edit - Database - Properties</emph></variable>"
+msgid "<ahelp hid=\"HID_GALLERY_MN_ADD_LINK\">Inserts the selected graphic as a link.</ahelp>"
msgstr ""
-#: 00000450.xhp
+#: 01010000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3159252\n"
-"63\n"
+"01010000.xhp\n"
+"par_id3158428\n"
+"15\n"
"help.text"
-msgid "<variable id=\"tabellecopy\">Drag and drop a table or a query into the table part of another database file window</variable>"
+msgid "<ahelp hid=\"HID_GALLERY_MN_PREVIEW\">The<emph> Preview </emph>command displays the selected graphic.</ahelp>"
msgstr ""
-#: 00000450.xhp
+#: 01010000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3148560\n"
-"66\n"
+"01010000.xhp\n"
+"par_id3154522\n"
+"19\n"
"help.text"
-msgid "<variable id=\"formularneu\">In a database file window, choose<emph> Insert - Form</emph></variable>"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_GALLERY_TITLE:EDT_TITLE\">Assigns a title to a selected Gallery object.</ahelp>"
msgstr ""
-#: 00000450.xhp
+#: 01010000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3155430\n"
-"67\n"
+"01010000.xhp\n"
+"par_id3149750\n"
+"17\n"
"help.text"
-msgid "<variable id=\"benutzereinstellungen\">In a database file window, choose <emph>Edit - Database - Properties</emph></variable>"
+msgid "<ahelp hid=\"HID_GALLERY_MN_DELETE\">Deletes the selected graphic after confirmation.</ahelp>"
msgstr ""
-#: 00000450.xhp
+#: 01020000.xhp
msgctxt ""
-"00000450.xhp\n"
-"par_id3147441\n"
-"69\n"
+"01020000.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"relationen\">In a database file window, choose <emph>Tools - Relationships</emph></variable>"
+msgid "Context Menu of Web Pages in Read-Only Mode"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"hd_id3158397\n"
+"1\n"
+"help.text"
+msgid "Context Menu of Web Pages in Read-Only Mode"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3145348\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"HID_MN_READONLY_SAVEGRAPHIC\">Opens a dialog where you can save the selected graphics.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3151262\n"
+"31\n"
+"help.text"
+msgid "<ahelp hid=\"HID_MN_READONLY_COPYLINK\">Copies the link at the mouse pointer to the clipboard.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3155934\n"
+"37\n"
+"help.text"
+msgid "<ahelp hid=\"HID_MN_READONLY_COPYGRAPHIC\">Copies a selected graphic to the clipboard.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3145629\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"HID_MN_READONLY_LOADGRAPHIC\">If you have deactivated the graphics display, choose the<emph> Load Graphics </emph>command to make them visible.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3150902\n"
+"24\n"
+"help.text"
+msgid "<ahelp hid=\"HID_MN_READONLY_GRAPHICOFF\">Sets all graphics in the document to be invisible.</ahelp>"
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3153910\n"
+"26\n"
+"help.text"
+msgid "<ahelp hid=\"HID_MN_READONLY_PLUGINOFF\">Disables inserted plug-ins.</ahelp> Click this command again to reactivate the <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-ins\">plug-ins</link>."
+msgstr ""
+
+#: 01020000.xhp
+msgctxt ""
+"01020000.xhp\n"
+"par_id3148548\n"
+"38\n"
+"help.text"
+msgid "<ahelp hid=\"HID_MN_READONLY_SAVEBACKGROUND\">Allows you to save the background of a Web page.</ahelp>"
+msgstr ""
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"tit\n"
+"help.text"
+msgid "General"
+msgstr "Të përgjithshme"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3158397\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/00/01050000.xhp\" name=\"General\">General</link>"
+msgstr ""
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3159242\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".\">The<emph> General </emph>tab page lists the general properties of the current theme.</ahelp>"
+msgstr ""
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3150264\n"
+"3\n"
+"help.text"
+msgid "Name"
+msgstr "Emri"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3154094\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_EDIT_RID_SVXTABPAGE_GALLERY_GENERAL_EDT_MS_NAME\">Displays the name of the theme.</ahelp> If no name has been assigned, you can type a new name in the text box."
+msgstr ""
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3147089\n"
+"5\n"
+"help.text"
+msgid "Type"
+msgstr "Tipi"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3145071\n"
+"6\n"
+"help.text"
+msgid "Specifies the object type."
+msgstr "Vargu që përcakton llojin e informatës."
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"hd_id3147576\n"
+"7\n"
+"help.text"
+msgid "Location"
+msgstr "Lokacioni"
+
+#: 01050000.xhp
+msgctxt ""
+"01050000.xhp\n"
+"par_id3146797\n"
+"8\n"
+"help.text"
+msgid "Specifies the complete object path."
+msgstr ""
+
+#: icon_alt.xhp
+msgctxt ""
+"icon_alt.xhp\n"
+"tit\n"
+"help.text"
+msgid "Standard Icons Alt Texts to be Embedded"
+msgstr ""
+
+#: icon_alt.xhp
+msgctxt ""
+"icon_alt.xhp\n"
+"par_idN10546\n"
+"help.text"
+msgid "<variable id=\"alt_icon\">Icon </variable>"
+msgstr ""
+
+#: icon_alt.xhp
+msgctxt ""
+"icon_alt.xhp\n"
+"par_idN10555\n"
+"help.text"
+msgid "<variable id=\"alt_warning\">Warning Icon </variable>"
+msgstr ""
+
+#: icon_alt.xhp
+msgctxt ""
+"icon_alt.xhp\n"
+"par_idN10564\n"
+"help.text"
+msgid "<variable id=\"alt_tip\">Tip Icon </variable>"
+msgstr ""
+
+#: icon_alt.xhp
+msgctxt ""
+"icon_alt.xhp\n"
+"par_idN10573\n"
+"help.text"
+msgid "<variable id=\"alt_note\">Note Icon </variable>"
msgstr ""
diff --git a/source/sq/helpcontent2/source/text/shared/01.po b/source/sq/helpcontent2/source/text/shared/01.po
index 48782b62d1d..b83dd55dd3b 100644
--- a/source/sq/helpcontent2/source/text/shared/01.po
+++ b/source/sq/helpcontent2/source/text/shared/01.po
@@ -3,8 +3,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.freedesktop.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
-"POT-Creation-Date: 2013-01-18 13:18+0100\n"
-"PO-Revision-Date: 2011-11-01 00:37+0200\n"
+"POT-Creation-Date: 2013-06-03 08:43+0200\n"
+"PO-Revision-Date: 2013-01-19 19:17+0000\n"
"Last-Translator: Anonymous Pootle User\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: sq\n"
@@ -14,11434 +14,11639 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: LibreOffice\n"
"X-Accelerator-Marker: ~\n"
+"X-POOTLE-MTIME: 1358623079.0\n"
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
+"01010000.xhp\n"
"tit\n"
"help.text"
-msgid "Extension Update"
-msgstr "Azhuro të gjitha"
-
-#: extensionupdate.xhp
-msgctxt ""
-"extensionupdate.xhp\n"
-"hd_id9688100\n"
-"help.text"
-msgid "Extension Update"
-msgstr "Azhuro të gjitha"
+msgid "New"
+msgstr "E re"
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
-"par_id5084688\n"
+"01010000.xhp\n"
+"hd_id3154788\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Click the <emph>Check for Updates</emph> button in the <link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link> to check for online updates for all installed extensions. To check for online updates for only the selected extension, right-click to open the context menu, then choose <emph>Update</emph>.</ahelp>"
+msgid "<link href=\"text/shared/01/01010000.xhp\" name=\"New\">New</link>"
msgstr ""
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
-"par_id6401257\n"
+"01010000.xhp\n"
+"par_id3145669\n"
+"2\n"
"help.text"
-msgid "When you click the <item type=\"menuitem\">Check for Updates</item> button or choose the <item type=\"menuitem\">Update</item> command, the Extension Update dialog is displayed and the check for availability of updates starts immediately."
+msgid "<ahelp hid=\".uno:AddDirect\">Creates a new $[officename] document.</ahelp>"
msgstr ""
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
-"par_id5841242\n"
+"01010000.xhp\n"
+"par_id3149182\n"
+"115\n"
"help.text"
-msgid "<ahelp hid=\".\">While checking for updates, you see a progress indicator. Wait for some messages to show up in the dialog, or click Cancel to abort the update check.</ahelp>"
+msgid "<ahelp hid=\"HID_TBXCONTROL_FILENEW\" visibility=\"hidden\">Creates a new $[officename] document. Click the arrow to select the document type.</ahelp>"
msgstr ""
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
-"par_id6794030\n"
+"01010000.xhp\n"
+"par_id3153528\n"
+"81\n"
"help.text"
-msgid "If no updates are available, the message in the dialog tells you there are no updates. Close the dialog."
+msgid "<ahelp hid=\".\">If you want to create a document from a template, choose <emph>New - Templates.</emph></ahelp>"
msgstr ""
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
-"par_id7096774\n"
+"01010000.xhp\n"
+"par_id3147009\n"
+"82\n"
"help.text"
-msgid "If updates are available, the updates can either be installed automatically, or you must respond with some action:"
+msgid "A template is a file that contains the design elements for a document, including formatting styles, backgrounds, frames, graphics, fields, page layout, and text."
msgstr ""
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
-"par_id6420484\n"
+"01010000.xhp\n"
+"par_id3147242\n"
+"112\n"
"help.text"
-msgid "The Extension Update dialog may contain entries which are not selectable and hence no automatic update can be performed."
-msgstr ""
+msgid "<emph>Icon</emph>"
+msgstr "Fshije ikonën"
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
-"par_id6986602\n"
+"01010000.xhp\n"
+"par_id3149580\n"
+"113\n"
"help.text"
-msgid "Dependencies are not fulfilled (the update needs some more or newer files to be installed)."
-msgstr ""
+msgid "<emph>Name</emph>"
+msgstr "Emri i grupit"
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
-"par_id616779\n"
+"01010000.xhp\n"
+"par_id3153258\n"
+"114\n"
"help.text"
-msgid "Insufficient user rights (the Extension Manager was started from the menu, but shared extensions can only be modified when %PRODUCTNAME does not run, and only by a user with appropriate rights). See <link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link> for details."
-msgstr ""
+msgid "<emph>Function</emph>"
+msgstr "Funksion eksponencial"
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
-"par_id791039\n"
+"01010000.xhp\n"
+"par_id3145317\n"
"help.text"
-msgid "A manual update is necessary."
+msgid "<image id=\"img_id3153821\" src=\"res/sx03251.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153821\">Icon</alt></image>"
msgstr ""
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
-"par_id757469\n"
+"01010000.xhp\n"
+"par_id3153349\n"
+"61\n"
"help.text"
-msgid "<ahelp hid=\".\">When you click the Install button the Download and Installation dialog is displayed.</ahelp>"
-msgstr ""
+msgid "Text Document"
+msgstr "Tekst dokument"
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
-"par_id5189062\n"
+"01010000.xhp\n"
+"par_id3156153\n"
+"62\n"
"help.text"
-msgid "All extensions which can be directly downloaded are downloaded now. The progress is shown in the Download and Installation dialog. If an extension cannot be downloaded, a message is displayed. The operation continues for the remaining extensions."
+msgid "Creates a new text document ($[officename] Writer)."
msgstr ""
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
-"par_id3949095\n"
+"01010000.xhp\n"
+"par_id3145121\n"
"help.text"
-msgid "Some extensions may be marked with the phrase \"browser based update\". These extensions cannot be downloaded by the Extension Manager. A web browser must be opened to download the extension update from a particular web site. That site may require several more user interaction to download the extension. After downloading you must install the extension manually, for example by double-clicking the extension's icon in a file browser."
+msgid "<image id=\"img_id3150503\" src=\"res/sx03250.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150503\">Icon</alt></image>"
msgstr ""
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
-"par_id3729056\n"
+"01010000.xhp\n"
+"par_id3148552\n"
+"63\n"
"help.text"
-msgid "For extensions marked as \"browser based update\", the Extension Manager will open your web browser on the respective web site. This happens when you close the dialog, after downloading any other extension updates. If there are no extensions which can be directly downloaded then the web browser is started immediately."
-msgstr ""
+msgid "Spreadsheet"
+msgstr "Tabelë kalkuluese"
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
-"par_id6854457\n"
+"01010000.xhp\n"
+"par_id3154280\n"
+"64\n"
"help.text"
-msgid "After the last extension has been downloaded, the installation begins. First all installed extensions for which an update could be downloaded successfully, are removed. Then the updated extensions are installed. If an error occurs, a message that the installation failed is displayed, but the operation proceeds."
+msgid "Creates a new spreadsheet document ($[officename] Calc)."
msgstr ""
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
-"par_id3372295\n"
+"01010000.xhp\n"
+"par_id3149456\n"
"help.text"
-msgid "If all updates have been processed the Download and Installation dialog shows that it has finished. You can abort the download and installation process by clicking the <emph>Abort Update</emph> button."
+msgid "<image id=\"img_id3148663\" src=\"res/sx03249.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148663\">Icon</alt></image>"
msgstr ""
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
-"hd_id5699942\n"
+"01010000.xhp\n"
+"par_id3153798\n"
+"65\n"
"help.text"
-msgid "Show all Updates"
-msgstr "Trego të gjitha dritare"
+msgid "Presentation"
+msgstr "Prezantim"
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
-"par_id641193\n"
+"01010000.xhp\n"
+"par_id3154946\n"
+"66\n"
"help.text"
-msgid "<ahelp hid=\".\">By default, only the downloadable extensions are shown in the dialog. Mark <emph>Show all Updates</emph> to see also other extensions and error messages.</ahelp>"
+msgid "Creates a new presentation document ($[officename] Impress). If activated, the <link href=\"text/shared/autopi/01050000.xhp\" name=\"Presentation Wizard\">Presentation Wizard</link> dialog appears."
msgstr ""
-#: extensionupdate.xhp
+#: 01010000.xhp
msgctxt ""
-"extensionupdate.xhp\n"
-"par_id7634510\n"
+"01010000.xhp\n"
+"par_id3150495\n"
"help.text"
-msgid "<link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link>"
+msgid "<image id=\"img_id3154329\" src=\"res/sx03246.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154329\">Icon</alt></image>"
msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"tit\n"
+"01010000.xhp\n"
+"par_id3154217\n"
+"99\n"
"help.text"
-msgid "General"
-msgstr "Të përgjithshme"
+msgid "Drawing"
+msgstr "Vizatim"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"bm_id3149955\n"
+"01010000.xhp\n"
+"par_id3149167\n"
+"100\n"
"help.text"
-msgid "<bookmark_value>version numbers of documents</bookmark_value> <bookmark_value>documents; version numbers</bookmark_value> <bookmark_value>files; version numbers</bookmark_value> <bookmark_value>editing time of documents</bookmark_value> <bookmark_value>documents; editing time</bookmark_value>"
+msgid "Creates a new drawing document ($[officename] Draw)."
msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3148668\n"
-"1\n"
+"01010000.xhp\n"
+"par_idN1089C\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100200.xhp\" name=\"General\">General</link>"
+msgid "<image id=\"Graphic3\" src=\"res/sx03245.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3154863\n"
-"2\n"
+"01010000.xhp\n"
+"par_idN108CB\n"
"help.text"
-msgid "<ahelp hid=\"HID_DOCINFODOC\">Contains basic information about the current file.</ahelp>"
-msgstr ""
+msgid "Database"
+msgstr "Databaza"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3149999\n"
-"3\n"
+"01010000.xhp\n"
+"par_idN108D0\n"
"help.text"
-msgid "File"
-msgstr "Fajlli"
+msgid "Opens the <link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database Wizard</link> to create a <link href=\"text/shared/explorer/database/dabadoc.xhp\">database file</link>."
+msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3153114\n"
-"4\n"
+"01010000.xhp\n"
+"par_id3159149\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:TP_DOCINFODOC:ED_FILE_NAME\">Displays the file name.</ahelp>"
+msgid "<image id=\"img_id3150868\" src=\"res/sx03139.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150868\">Icon</alt></image>"
msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3156136\n"
-"17\n"
+"01010000.xhp\n"
+"par_id3154298\n"
+"79\n"
"help.text"
-msgid "Type:"
-msgstr "Tipi:"
+msgid "HTML Document"
+msgstr "HTML Dokument"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3155552\n"
-"20\n"
+"01010000.xhp\n"
+"par_id3152460\n"
+"80\n"
"help.text"
-msgid "Displays the file type for the current document."
-msgstr ""
+msgid "Creates a new HTML document."
+msgstr "%PRODUCTNAME %PRODUCTVERSION HTML Dokument"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3145314\n"
-"18\n"
+"01010000.xhp\n"
+"par_idN107BF\n"
"help.text"
-msgid "Location:"
-msgstr "Lokacioni:"
+msgid "<image id=\"Graphic2\" src=\"res/sx03251.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3150506\n"
-"21\n"
+"01010000.xhp\n"
+"par_idN107F0\n"
"help.text"
-msgid "Displays the path and the name of the directory where the file is stored."
-msgstr ""
+msgid "XML Form Document"
+msgstr "XML Dokument i formularit"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3155892\n"
-"19\n"
+"01010000.xhp\n"
+"par_idN107F5\n"
"help.text"
-msgid "Size:"
-msgstr "Madhësia:"
+msgid "Creates a new <link href=\"text/shared/guide/xforms.xhp\">XForms</link> document."
+msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3153311\n"
-"22\n"
+"01010000.xhp\n"
+"par_id3147426\n"
"help.text"
-msgid "Displays the size of the current document in bytes."
+msgid "<image id=\"img_id3163710\" src=\"res/sx03248.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163710\">Icon</alt></image>"
msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3149178\n"
-"7\n"
+"01010000.xhp\n"
+"par_id3152938\n"
+"89\n"
"help.text"
-msgid "Created:"
-msgstr "Krijuar:"
+msgid "Master Document"
+msgstr "Dokument kryesor"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3153748\n"
-"8\n"
+"01010000.xhp\n"
+"par_id3150961\n"
+"90\n"
"help.text"
-msgid "Displays the date and time and author when the file was first saved."
+msgid "Creates a new <link href=\"text/shared/01/01010001.xhp\" name=\"master document\">master document</link>."
msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3149182\n"
-"9\n"
+"01010000.xhp\n"
+"par_id3155854\n"
"help.text"
-msgid "Modified:"
-msgstr "Modifikuar:"
+msgid "<image id=\"img_id3147317\" src=\"res/sx03247.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147317\">Icon</alt></image>"
+msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3150355\n"
-"10\n"
+"01010000.xhp\n"
+"par_id3155511\n"
+"77\n"
"help.text"
-msgid "Displays the date and time and author when the file was last saved in a $[officename] file format."
-msgstr ""
+msgid "Formula"
+msgstr "Formula"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_idN106C5\n"
+"01010000.xhp\n"
+"par_id3150872\n"
+"78\n"
"help.text"
-msgid "Digitally signed:"
-msgstr "Me nënshkrim digjital"
+msgid "Creates a new formula document ($[officename] Math)."
+msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_idN106C9\n"
+"01010000.xhp\n"
+"par_id3154145\n"
"help.text"
-msgid "Displays the date and the time when the file was last signed as well as the name of the author who signed the document."
+msgid "<image id=\"img_id3083443\" src=\"res/sx03255.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083443\">Icon</alt></image>"
msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_idN106CC\n"
+"01010000.xhp\n"
+"par_id3149417\n"
+"105\n"
"help.text"
-msgid "Digital Signature"
-msgstr "Nënshkrimi digjital"
+msgid "Labels"
+msgstr "Etiketat"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_idN106D0\n"
+"01010000.xhp\n"
+"par_id3148388\n"
+"106\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/01/digitalsignatures.xhp\">Digital Signatures</link> dialog where you can manage digital signatures for the current document."
+msgid "Opens the <link href=\"text/shared/01/01010200.xhp\" name=\"Labels\">Labels</link> dialog where you can set the options for your labels, and then creates a new text document for the labels ($[officename] Writer)."
msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3156346\n"
-"11\n"
+"01010000.xhp\n"
+"par_id3155415\n"
"help.text"
-msgid "Last printed:"
-msgstr "Shtypja e fundit:"
+msgid "<image id=\"img_id3156283\" src=\"res/sx03255.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156283\">Icon</alt></image>"
+msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3152780\n"
-"12\n"
+"01010000.xhp\n"
+"par_id3150592\n"
+"107\n"
"help.text"
-msgid "Displays the date and time and user name when the file was last printed."
-msgstr ""
+msgid "Business Cards"
+msgstr "Vizitkartat"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3153252\n"
-"15\n"
+"01010000.xhp\n"
+"par_id3150968\n"
+"108\n"
"help.text"
-msgid "Revision number:"
-msgstr "Numri i regjistrimit"
+msgid "Opens the <link href=\"text/shared/01/01010300.xhp\" name=\"Business Cards\">Business Cards</link> dialog where you can set the options for your business cards, and then creates a new text document ($[officename] Writer)."
+msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3149955\n"
-"16\n"
+"01010000.xhp\n"
+"par_id3154729\n"
"help.text"
-msgid "Displays the number of times that the file has been saved."
+msgid "<image id=\"img_id3150422\" src=\"res/sx03242.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150422\">Icon</alt></image>"
msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3155342\n"
-"13\n"
+"01010000.xhp\n"
+"par_id3154510\n"
+"69\n"
"help.text"
-msgid "Editing time:"
-msgstr "Koha totale e editimit:"
+msgid "Templates"
+msgstr "Shabllonet"
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3149795\n"
-"14\n"
+"01010000.xhp\n"
+"par_id3155603\n"
+"70\n"
"help.text"
-msgid "Displays the amount of time that the file has been open for editing since the file was created. The editing time is updated when you save the file."
+msgid "Creates a new document using an existing template."
msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3154810\n"
-"33\n"
+"01010000.xhp\n"
+"par_idN1096F\n"
"help.text"
-msgid "Apply User Data"
-msgstr "~Zbato të dhënat e shfrytëzuesit"
+msgid "<link href=\"text/shared/guide/doc_open.xhp\">Opening documents</link>"
+msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3143271\n"
-"34\n"
+"01010000.xhp\n"
+"par_idN109E7\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:CHECKBOX:TP_DOCINFODOC:CB_USE_USERDATA\">Saves the user's full name with the file. You can edit the name by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - User Data</emph>.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new text document ($[officename] Writer).</ahelp>"
msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3154046\n"
-"35\n"
+"01010000.xhp\n"
+"par_idN109FE\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new spreadsheet document ($[officename] Calc).</ahelp>"
+msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3152349\n"
-"36\n"
+"01010000.xhp\n"
+"par_idN10A15\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_DOCINFODOC:BTN_DELETE\">Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new presentation document ($[officename] Impress). If activated, the Presentation Wizard dialog appears.</ahelp>"
msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"hd_id3149576\n"
-"5\n"
+"01010000.xhp\n"
+"par_idN10A2C\n"
"help.text"
-msgid "Template:"
-msgstr "Shablloni:"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new drawing document ($[officename] Draw).</ahelp>"
+msgstr ""
-#: 01100200.xhp
+#: 01010000.xhp
msgctxt ""
-"01100200.xhp\n"
-"par_id3147530\n"
-"6\n"
+"01010000.xhp\n"
+"par_idN10A43\n"
"help.text"
-msgid "Displays the template that was used to create the file."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Database Wizard to create a database file.</ahelp>"
msgstr ""
-#: 05350000.xhp
+#: 01010000.xhp
msgctxt ""
-"05350000.xhp\n"
-"tit\n"
+"01010000.xhp\n"
+"par_idN10A5A\n"
"help.text"
-msgid "3D Effects"
-msgstr "3D Efektet"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new HTML document.</ahelp>"
+msgstr ""
-#: 05350000.xhp
+#: 01010000.xhp
msgctxt ""
-"05350000.xhp\n"
-"hd_id3153136\n"
-"1\n"
+"01010000.xhp\n"
+"par_idN10A71\n"
"help.text"
-msgid "<link href=\"text/shared/01/05350000.xhp\" name=\"3D Effects\">3D Effects</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new XForms document.</ahelp>"
msgstr ""
-#: 05350000.xhp
+#: 01010000.xhp
msgctxt ""
-"05350000.xhp\n"
-"par_id3156324\n"
-"2\n"
+"01010000.xhp\n"
+"par_idN10A88\n"
"help.text"
-msgid "<ahelp hid=\".uno:Window3D\">Specifies the properties of 3D object(s) in the current document.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new master document.</ahelp>"
msgstr ""
-#: 05150101.xhp
+#: 01010000.xhp
msgctxt ""
-"05150101.xhp\n"
-"tit\n"
+"01010000.xhp\n"
+"par_idN10A9F\n"
"help.text"
-msgid "Add AutoFormat"
-msgstr "Shto Autoformat"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new formula document ($[officename] Math).</ahelp>"
+msgstr ""
-#: 05150101.xhp
+#: 01010000.xhp
msgctxt ""
-"05150101.xhp\n"
-"hd_id3154841\n"
-"1\n"
+"01010000.xhp\n"
+"par_idN10AB6\n"
"help.text"
-msgid "Add AutoFormat"
-msgstr "Shto Autoformat"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Labels dialog where you can set the options for your labels, and then creates a new text document for the labels ($[officename] Writer).</ahelp>"
+msgstr ""
-#: 05150101.xhp
+#: 01010000.xhp
msgctxt ""
-"05150101.xhp\n"
-"hd_id3154812\n"
-"2\n"
+"01010000.xhp\n"
+"par_idN10ACD\n"
"help.text"
-msgid "Name"
-msgstr "Emri"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Business Cards dialog where you can set the options for your business cards, and then creates a new text document ($[officename] Writer).</ahelp>"
+msgstr ""
-#: 05150101.xhp
+#: 01010000.xhp
msgctxt ""
-"05150101.xhp\n"
-"par_id3153391\n"
-"3\n"
+"01010000.xhp\n"
+"par_idN10AE4\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/stringinput/edit\">Enter a name for the new AutoFormat, and then click<emph> OK</emph>.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new document using an existing template or opens a sample document.</ahelp>"
msgstr ""
-#: 05120200.xhp
+#: 01010001.xhp
msgctxt ""
-"05120200.xhp\n"
+"01010001.xhp\n"
"tit\n"
"help.text"
-msgid "1.5 Lines"
-msgstr "1.5 Rreshta"
+msgid "Master Document"
+msgstr "Dokument kryesor"
-#: 05120200.xhp
+#: 01010001.xhp
msgctxt ""
-"05120200.xhp\n"
-"hd_id3152459\n"
+"01010001.xhp\n"
+"hd_id3153514\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05120200.xhp\" name=\"1.5 Lines\">1.5 Lines</link>"
+msgid "<link href=\"text/shared/01/01010001.xhp\" name=\"Master Document\">Master Document</link>"
msgstr ""
-#: 05120200.xhp
+#: 01010001.xhp
msgctxt ""
-"05120200.xhp\n"
-"par_id3146807\n"
+"01010001.xhp\n"
+"par_id3154682\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:SpacePara15\">Sets the line spacing of the current paragraph to one and half lines.</ahelp>"
+msgid "Use a <emph>Master Document</emph> to organize complex projects, such as a book. <ahelp hid=\".\">A <emph>Master Document</emph> can contain the individual files for each chapter of a book, as well as a table of contents, and an index.</ahelp>"
msgstr ""
-#: 05350400.xhp
+#: 01010001.xhp
msgctxt ""
-"05350400.xhp\n"
-"tit\n"
+"01010001.xhp\n"
+"par_id3149828\n"
"help.text"
-msgid "Illumination"
-msgstr "Ndriçimi"
+msgid "<link href=\"text/shared/01/02110000.xhp\" name=\"Navigator for Master Documents\">Navigator for Master Documents</link>"
+msgstr ""
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"hd_id3151260\n"
-"1\n"
+"01010100.xhp\n"
+"par_id3148520\n"
+"117\n"
"help.text"
-msgid "<link href=\"text/shared/01/05350400.xhp\" name=\"Illumination\">Illumination</link>"
+msgid "The <emph>Templates Manager</emph> dialog allows you to manage your templates."
msgstr ""
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3149741\n"
-"2\n"
+"01010100.xhp\n"
+"par_id3157898\n"
+"118\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT\">Define the light source for the selected 3D object.</ahelp>"
+msgid "To open the <emph>Templates Manager</emph> dialog, do one of the following:"
msgstr ""
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"hd_id3154984\n"
-"4\n"
+"01010100.xhp\n"
+"par_id3156414\n"
+"125\n"
"help.text"
-msgid "Illumination"
-msgstr "Ndriçimi"
+msgid "Choose <emph>File - New - Templates</emph>"
+msgstr ""
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3155391\n"
-"5\n"
+"01010100.xhp\n"
+"par_id3153114\n"
+"126\n"
"help.text"
-msgid "Specify the light source for the object, as well as the color of the light source and of the ambient light. You can define up to eight different light sources."
+msgid "Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N."
msgstr ""
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"hd_id3153748\n"
-"6\n"
+"01010100.xhp\n"
+"hd_id3159234\n"
+"5\n"
"help.text"
-msgid "Light source"
-msgstr "Burimi i Dritës 1"
+msgid "Categories"
+msgstr "Kategoritë"
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3149149\n"
-"7\n"
+"01010100.xhp\n"
+"par_id3157958\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT_8\">Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the <emph>Ambient light</emph> box.</ahelp> You can also press the Spacebar to turn the light source on or off."
+msgid "<ahelp hid=\".\">Categories are shown in the box on the left side of the<emph> Templates and Documents</emph> dialog. Click a category to display the files associated with that category in the <emph>Title </emph>box.</ahelp>"
msgstr ""
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3159269\n"
+"01010100.xhp\n"
+"hd_id3149388\n"
+"100\n"
"help.text"
-msgid "<image id=\"img_id3156155\" src=\"svx/res/lighton.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3156155\">Icon</alt></image>"
-msgstr ""
+msgid "Title Box"
+msgstr "Kutia për kontrollim"
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3154143\n"
-"8\n"
+"01010100.xhp\n"
+"par_id3150355\n"
+"101\n"
"help.text"
-msgid "Light is on"
-msgstr "Është duke u shtypur në"
+msgid "<ahelp hid=\"HID_TEMPLATEDLG_FILEVIEW\">Lists the available templates or documents for the selected category. Select a template or document and, then click <emph>Open</emph>. To preview the document, click the <emph>Preview</emph> button above the box on the right.</ahelp>"
+msgstr ""
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3155449\n"
+"01010100.xhp\n"
+"hd_id3152996\n"
+"102\n"
"help.text"
-msgid "<image id=\"img_id3147573\" src=\"svx/res/light.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3147573\">Icon</alt></image>"
-msgstr ""
+msgid "Back"
+msgstr "Prapa"
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3155829\n"
-"9\n"
+"01010100.xhp\n"
+"par_id3153257\n"
"help.text"
-msgid "Light is off"
-msgstr "Numërimi Kyqur/Ç'kyqur"
+msgid "<image id=\"img_id3149784\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149784\">Icon</alt></image>"
+msgstr ""
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"hd_id3159166\n"
-"10\n"
+"01010100.xhp\n"
+"par_id3153822\n"
+"103\n"
"help.text"
-msgid "Color Selection"
-msgstr "Zgjedhja e databazës"
+msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_BACK\">Moves back to the previous window in the dialog.</ahelp>"
+msgstr ""
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3155421\n"
-"11\n"
+"01010100.xhp\n"
+"hd_id3148685\n"
+"104\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXFLOAT_3D:LB_LIGHT_1\">Select a color for the current light source.</ahelp>"
-msgstr ""
+msgid "Up One Level"
+msgstr "Një nivel më lartë"
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"hd_id3149955\n"
-"12\n"
+"01010100.xhp\n"
+"par_id3156152\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color in the color dialog\">Select Color in the color dialog</link>"
+msgid "<image id=\"img_id3149762\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149762\">Icon</alt></image>"
msgstr ""
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"hd_id3153061\n"
-"13\n"
+"01010100.xhp\n"
+"par_id3156024\n"
+"105\n"
"help.text"
-msgid "Ambient light"
-msgstr "Drita e ambientit"
+msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PREV\">Moves up one folder level, if available.</ahelp>"
+msgstr ""
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"hd_id3144511\n"
-"15\n"
+"01010100.xhp\n"
+"hd_id3147264\n"
+"106\n"
"help.text"
-msgid "Color Selection"
-msgstr "Zgjedhja e databazës"
+msgid "Print"
+msgstr "Shtyp"
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3153896\n"
-"16\n"
+"01010100.xhp\n"
+"par_id3154346\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXFLOAT_3D:LB_AMBIENTLIGHT\">Select a color for the ambient light.</ahelp>"
+msgid "<image id=\"img_id3148663\" src=\"cmd/sc_print.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148663\">Icon</alt></image>"
msgstr ""
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"hd_id3149670\n"
-"17\n"
+"01010100.xhp\n"
+"par_id3150359\n"
+"107\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color Through the Color Dialog\">Select Color Through the Color Dialog</link>"
+msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">Prints the selected template or document.</ahelp>"
msgstr ""
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"hd_id3153961\n"
-"18\n"
+"01010100.xhp\n"
+"hd_id3149651\n"
+"9\n"
"help.text"
msgid "Preview"
msgstr "Shikim paraprak"
-#: 05350400.xhp
+#: 01010100.xhp
msgctxt ""
-"05350400.xhp\n"
-"par_id3151056\n"
-"19\n"
+"01010100.xhp\n"
+"par_id3148799\n"
+"10\n"
"help.text"
-msgid "Displays a preview of the light source changes."
+msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">Allows you to preview the template or document, as well as view the document properties.</ahelp> To preview the template or document, click the <emph>Preview</emph> icon at the top of the Preview box on the right side of the dialog. To view the properties of the document, click the <emph>Document Properties</emph> icon at the top of the Preview box."
msgstr ""
-#: 05030500.xhp
+#: 01010100.xhp
msgctxt ""
-"05030500.xhp\n"
-"tit\n"
+"01010100.xhp\n"
+"hd_id3149807\n"
+"108\n"
"help.text"
-msgid "Borders"
-msgstr "Kufinjtë"
+msgid "Preview"
+msgstr "Shikim paraprak"
-#: 05030500.xhp
+#: 01010100.xhp
msgctxt ""
-"05030500.xhp\n"
-"hd_id3154812\n"
-"1\n"
+"01010100.xhp\n"
+"par_id3150741\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link>"
+msgid "<image id=\"img_id3148451\" src=\"svtools/res/preview_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148451\">Icon</alt></image>"
msgstr ""
-#: 05030500.xhp
+#: 01010100.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3151097\n"
-"2\n"
+"01010100.xhp\n"
+"par_id3151043\n"
+"109\n"
"help.text"
-msgid "<ahelp hid=\"HID_BORDER\">Sets the border options for the selected objects in Writer or Calc.</ahelp>"
+msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PREVIEW\">Allows you to preview the selected template or document.</ahelp>"
msgstr ""
-#: 05030500.xhp
+#: 01010100.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3155351\n"
-"44\n"
+"01010100.xhp\n"
+"hd_id3145606\n"
+"110\n"
"help.text"
-msgid "You can specify the border position, size, and style in Writer or Calc. <switchinline select=\"appl\"><caseinline select=\"WRITER\">In $[officename] Writer, you can add borders to pages, frames, graphics, tables, paragraphs, and to embedded objects. </caseinline></switchinline>"
-msgstr ""
+msgid "Document Properties"
+msgstr "Vetitë e dokumentit"
-#: 05030500.xhp
+#: 01010100.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3152997\n"
-"40\n"
+"01010100.xhp\n"
+"par_id3147353\n"
"help.text"
-msgid "To modify the border of an entire table, place the cursor in a table cell, right-click, choose <emph>Table</emph>, and then click the <emph>Borders</emph> tab. To modify the border of a table cell, select the cell, right-click, choose <emph>Table</emph>, and then click the <emph>Borders</emph> tab."
+msgid "<image id=\"img_id3153367\" src=\"svtools/res/info_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153367\">Icon</alt></image>"
msgstr ""
-#: 05030500.xhp
+#: 01010100.xhp
msgctxt ""
-"05030500.xhp\n"
-"hd_id3145417\n"
-"3\n"
+"01010100.xhp\n"
+"par_id3153210\n"
+"12\n"
"help.text"
-msgid "Line arrangement"
-msgstr "Aranzhimi i kolonave..."
+msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_DOCINFO\">Displays the properties for the selected template or document.</ahelp>"
+msgstr ""
-#: 05030500.xhp
+#: 01010100.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3153332\n"
-"4\n"
+"01010100.xhp\n"
+"hd_id3153142\n"
+"111\n"
"help.text"
-msgid "<ahelp hid=\"HID_BORDER_CTL_PRESETS\">Select a predefined border style to apply.</ahelp>"
-msgstr ""
+msgid "Organize"
+msgstr "Organizo..."
-#: 05030500.xhp
+#: 01010100.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3148643\n"
-"5\n"
+"01010100.xhp\n"
+"par_id3156441\n"
+"112\n"
"help.text"
-msgid "If you are in a table or spreadsheet, you can also add or remove predefined borders. Use the <emph>Borders</emph> icon on the <emph>Table Bar</emph>."
+msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_MANAGE\">Adds, removes, or rearranges templates or sample documents.</ahelp>"
msgstr ""
-#: 05030500.xhp
+#: 01010100.xhp
msgctxt ""
-"05030500.xhp\n"
-"hd_id3149575\n"
-"23\n"
+"01010100.xhp\n"
+"hd_id3149483\n"
+"113\n"
"help.text"
-msgid "Line"
-msgstr "Rreshti"
+msgid "Edit"
+msgstr "Edito"
-#: 05030500.xhp
+#: 01010100.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3152360\n"
-"24\n"
+"01010100.xhp\n"
+"par_id3154470\n"
+"114\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BORDER:LB_LINESTYLE\">Click the border style that you want to apply. The style is applied to the borders selected in the preview.</ahelp>"
+msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT\">Opens the selected template for editing.</ahelp>"
msgstr ""
-#: 05030500.xhp
+#: 01010100.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3154938\n"
-"29\n"
+"01010100.xhp\n"
+"hd_id3147428\n"
+"115\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BORDER:LB_LINECOLOR\">Select the line color that you want to use for the selected border(s).</ahelp>"
-msgstr ""
+msgid "Open"
+msgstr "Hape"
-#: 05030500.xhp
+#: 01010100.xhp
msgctxt ""
-"05030500.xhp\n"
-"hd_id3150359\n"
-"21\n"
+"01010100.xhp\n"
+"par_id3148617\n"
+"116\n"
"help.text"
-msgid "Spacing to contents"
-msgstr "Hapësira me përmbajtje"
+msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT\">Opens the selected document or creates a document based on the selected template.</ahelp>"
+msgstr ""
-#: 05030500.xhp
+#: 01010100.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3154365\n"
-"22\n"
+"01010100.xhp\n"
+"par_id3155306\n"
+"98\n"
"help.text"
-msgid "Specify the amount of space that you want to leave between the border and the contents of the selection."
+msgid "To add another folder to the template path, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010300.xhp\" name=\"$[officename] - Paths\"><emph>$[officename] - Paths</emph></link>, and then enter the path."
msgstr ""
-#: 05030500.xhp
+#: 01010100.xhp
msgctxt ""
-"05030500.xhp\n"
-"hd_id3147084\n"
-"45\n"
+"01010100.xhp\n"
+"par_id3149379\n"
"help.text"
-msgid "Left"
-msgstr "Majtas"
+msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"File properties\">File properties</link>"
+msgstr ""
-#: 05030500.xhp
+#: 01010200.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3151176\n"
-"46\n"
+"01010200.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_BORDER_MF_LEFT\">Enter the distance that you want to have between the left border and the contents of the selection.</ahelp>"
-msgstr ""
+msgid "Labels"
+msgstr "Etiketat"
-#: 05030500.xhp
+#: 01010200.xhp
msgctxt ""
-"05030500.xhp\n"
-"hd_id3150650\n"
-"47\n"
+"01010200.xhp\n"
+"hd_id3154788\n"
+"1\n"
"help.text"
-msgid "Right"
-msgstr "Djathtas"
+msgid "<link href=\"text/shared/01/01010200.xhp\" name=\"Labels\">Labels</link>"
+msgstr ""
-#: 05030500.xhp
+#: 01010200.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3153104\n"
-"48\n"
+"01010200.xhp\n"
+"par_id3145071\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_BORDER_MF_RIGHT\">Enter the distance that you want to have between the right border and the contents of the selection.</ahelp>"
+msgid "<variable id=\"etikett\"><ahelp hid=\".uno:InsertLabels\">Allows you to create labels. Labels are created in a text document.</ahelp> You can print labels using a pre-defined or a custom paper format. </variable>"
msgstr ""
-#: 05030500.xhp
+#: 01010200.xhp
msgctxt ""
-"05030500.xhp\n"
-"hd_id3150495\n"
-"49\n"
+"01010200.xhp\n"
+"par_id3145314\n"
+"3\n"
"help.text"
-msgid "Top"
-msgstr "Lartë"
+msgid "You can also print a single label or an entire sheet of labels."
+msgstr ""
-#: 05030500.xhp
+#: 01010200.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3156212\n"
-"50\n"
+"01010200.xhp\n"
+"hd_id3145383\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_BORDER_MF_TOP\">Enter the distance that you want to have between the top border and the contents of the selection.</ahelp>"
-msgstr ""
+msgid "New Document"
+msgstr "Dokument i ri"
-#: 05030500.xhp
+#: 01010200.xhp
msgctxt ""
-"05030500.xhp\n"
-"hd_id3150767\n"
-"51\n"
+"01010200.xhp\n"
+"par_id3154810\n"
+"8\n"
"help.text"
-msgid "Bottom"
-msgstr "Poshtë"
+msgid "<ahelp hid=\"HID_LABEL_INSERT\">Creates a new document for editing.</ahelp>"
+msgstr ""
-#: 05030500.xhp
+#: 01010200.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3158410\n"
-"52\n"
+"01010200.xhp\n"
+"par_id3144438\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_BORDER_MF_BOTTOM\">Enter the distance that you want to have between the bottom border and the contents of the selection.</ahelp>"
+msgid "<link href=\"text/shared/guide/labels.xhp\" name=\"Creating labels\">Creating labels</link>"
msgstr ""
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"hd_id3155429\n"
-"53\n"
+"01010201.xhp\n"
+"tit\n"
"help.text"
-msgid "Synchronize"
-msgstr "Sinkronizo etiketat"
+msgid "Labels"
+msgstr "Etiketat"
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3154299\n"
-"54\n"
+"01010201.xhp\n"
+"hd_id3149987\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_BORDER_CB_SYNC\">Applies the same <emph>spacing to contents</emph> setting to all four borders when you enter a new distance.</ahelp>"
+msgid "<link href=\"text/shared/01/01010201.xhp\" name=\"Labels\">Labels</link>"
msgstr ""
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"bm_id3155855\n"
+"01010201.xhp\n"
+"par_id3152952\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>shadows; borders</bookmark_value><bookmark_value>borders; shadows</bookmark_value><bookmark_value>margins; shadows</bookmark_value>"
+msgid "<ahelp hid=\"HID_LAB_LAB\">Specify the label text and choose the paper size for the label.</ahelp>"
msgstr ""
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"hd_id3155855\n"
-"31\n"
+"01010201.xhp\n"
+"hd_id3158397\n"
+"3\n"
"help.text"
-msgid "Shadow style"
-msgstr "Stili i linjës"
+msgid "Inscription"
+msgstr "Mbishkrim"
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3146975\n"
-"32\n"
+"01010201.xhp\n"
+"par_id3154350\n"
+"4\n"
"help.text"
-msgid "You can also apply a shadow effect to borders. For the best results, only apply this effect when all four borders are visible."
+msgid "Enter or insert the text that you want to appear on the label(s)."
msgstr ""
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3157309\n"
-"43\n"
+"01010201.xhp\n"
+"hd_id3147294\n"
+"5\n"
"help.text"
-msgid "Graphics or objects that are anchored to a frame in the document cannot exceed the size of the frame. If you apply a shadow to the borders of an object that fills an entire frame, the size of the object is reduced to display the shadows."
-msgstr ""
+msgid "Label text"
+msgstr "Teksti i etiketës"
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"hd_id3153728\n"
-"33\n"
+"01010201.xhp\n"
+"par_id3150838\n"
+"6\n"
"help.text"
-msgid "Position"
-msgstr "Pozicion"
+msgid "<ahelp hid=\"SW_MULTILINEEDIT_TP_LAB_LAB_EDT_WRITING\">Enter the text that you want to appear on the label. You can also insert a database field.</ahelp>"
+msgstr ""
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3153364\n"
-"34\n"
+"01010201.xhp\n"
+"hd_id3150603\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_BORDER_CTL_SHADOWS\">Click a shadow style for the selected borders.</ahelp>"
-msgstr ""
+msgid "Address"
+msgstr "Adresa"
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"hd_id3156444\n"
-"35\n"
+"01010201.xhp\n"
+"par_id3153089\n"
+"8\n"
"help.text"
-msgid "Distance"
-msgstr "Distancë"
+msgid "<ahelp hid=\"SW_CHECKBOX_TP_LAB_LAB_BOX_ADDR\">Creates a label with your return address. Text that is currently in the <emph>Label text</emph> box is overwritten.</ahelp>"
+msgstr ""
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3156060\n"
-"36\n"
+"01010201.xhp\n"
+"par_id3155555\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_BORDER:ED_SHADOWSIZE\">Enter the width of the shadow.</ahelp>"
+msgid "To change your return address, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010100.xhp\" name=\"%PRODUCTNAME\">%PRODUCTNAME</link></emph>, and then click on the <emph>User Data</emph> tab."
msgstr ""
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"hd_id3155307\n"
-"37\n"
+"01010201.xhp\n"
+"hd_id3147557\n"
+"10\n"
"help.text"
-msgid "Color"
-msgstr "Ngjyra"
+msgid "Database"
+msgstr "Databaza"
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_id3146147\n"
-"38\n"
+"01010201.xhp\n"
+"par_id3148620\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BORDER:LB_SHADOWCOLOR\">Select a color for the shadow.</ahelp>"
+msgid "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_LB_DATABASE\">Select the database that you want to use as the data source for your label. </ahelp>"
msgstr ""
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_idN10A2B\n"
+"01010201.xhp\n"
+"hd_id3149388\n"
+"12\n"
"help.text"
-msgid "Properties"
-msgstr "Vetitë"
+msgid "Table"
+msgstr "Tabelë"
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_idN10A2F\n"
+"01010201.xhp\n"
+"par_id3149827\n"
+"13\n"
"help.text"
-msgid "Specifies the properties for the current paragraph or the selected paragraphs."
+msgid "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_LB_TABLE\">Select the database table containing the field(s) that you want to use in your label.</ahelp>"
msgstr ""
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_idN10A3A\n"
+"01010201.xhp\n"
+"hd_id3155391\n"
+"14\n"
"help.text"
-msgid "Merge with next paragraph"
-msgstr "Mbaje me paragrafin tjetër"
+msgid "Database field"
+msgstr "Fusha e databazës"
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_idN10A3E\n"
+"01010201.xhp\n"
+"par_id3149750\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"svx:CheckBox:RID_SVXPAGE_BORDER:CB_MERGEWITHNEXT\">Merges the border style and the shadow style of the current paragraph with the next paragraph.</ahelp> These styles are only merged if the indent, border, and shadow styles of the next paragraph are the same as the current paragraph. This option is also available for Paragraph Styles."
+msgid "<ahelp hid=\"SW_IMAGEBUTTON_TP_LAB_LAB_BTN_INSERT\">Select the database field that you want, and then click the arrow to the left of this box to insert the field into the <emph>Label text</emph> box.</ahelp>"
msgstr ""
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_idN109BA\n"
+"01010201.xhp\n"
+"par_id3152780\n"
+"16\n"
"help.text"
-msgid "Merge adjacent line styles"
+msgid "The name of the database field is bounded by brackets in the <emph>Label text</emph> box. If you want, you can separate database fields with spaces. Press Enter to insert a database field on a new line."
msgstr ""
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_idN109BE\n"
+"01010201.xhp\n"
+"hd_id3147653\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"700793922\">Merges two different border styles of adjacent cells in a Writer table into one border style. This property is valid for a whole table in a Writer document.</ahelp>"
-msgstr ""
+msgid "Format"
+msgstr "Formati"
-#: 05030500.xhp
+#: 01010201.xhp
msgctxt ""
-"05030500.xhp\n"
-"par_idN109C1\n"
+"01010201.xhp\n"
+"par_id3149762\n"
+"18\n"
"help.text"
-msgid "The rules can be condensed to the statement that the stronger attribute wins. If, for example, one cell has a red border of 2 point width, and the adjacent cell has a blue border of 3 point width, then the common border between these two cells will be blue with 3 point width."
+msgid "You can select a pre-defined size format for your label or a size format that you specify on the <emph>Format </emph>tab.."
msgstr ""
-#: 04050000.xhp
+#: 01010201.xhp
msgctxt ""
-"04050000.xhp\n"
-"tit\n"
+"01010201.xhp\n"
+"hd_id3154143\n"
+"19\n"
"help.text"
-msgid "Comment"
-msgstr "Koment"
+msgid "Continuous"
+msgstr "I vazhdueshëm"
-#: 04050000.xhp
+#: 01010201.xhp
msgctxt ""
-"04050000.xhp\n"
-"bm_id3154100\n"
+"01010201.xhp\n"
+"par_id3151339\n"
+"20\n"
"help.text"
-msgid "<bookmark_value>comments;inserting/editing/deleting/printing</bookmark_value> <bookmark_value>inserting; comments</bookmark_value> <bookmark_value>editing; comments</bookmark_value> <bookmark_value>deleting;comments</bookmark_value> <bookmark_value>Navigator;comments</bookmark_value> <bookmark_value>printing;comments</bookmark_value> <bookmark_value>records; inserting comments </bookmark_value> <bookmark_value>remarks, see also comments</bookmark_value>"
+msgid "<ahelp hid=\"SW_RADIOBUTTON_TP_LAB_LAB_BTN_CONT\">Prints labels on continuous paper.</ahelp>"
msgstr ""
-#: 04050000.xhp
+#: 01010201.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3154100\n"
-"1\n"
+"01010201.xhp\n"
+"hd_id3150131\n"
+"21\n"
"help.text"
-msgid "Comment"
-msgstr "Koment"
+msgid "Sheet"
+msgstr "Fleta"
-#: 04050000.xhp
+#: 01010201.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3151100\n"
-"2\n"
+"01010201.xhp\n"
+"par_id3159167\n"
+"22\n"
"help.text"
-msgid "<variable id=\"notizbearbeitentext\"><ahelp hid=\".uno:InsertAnnotation\">Inserts a comment.</ahelp></variable>"
+msgid "<ahelp hid=\"SW_RADIOBUTTON_TP_LAB_LAB_BTN_SHEET\">Prints labels on individual sheets.</ahelp>"
msgstr ""
-#: 04050000.xhp
+#: 01010201.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id9851680\n"
+"01010201.xhp\n"
+"hd_id3156327\n"
+"23\n"
"help.text"
-msgid "Inserting comments"
-msgstr "Pamja e shënimeve"
+msgid "Brand"
+msgstr "Firma"
-#: 04050000.xhp
+#: 01010201.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id1830500\n"
+"01010201.xhp\n"
+"par_id3150466\n"
+"24\n"
"help.text"
-msgid "In Writer, the command <item type=\"menuitem\">Insert - Comment</item> or the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+C key combination inserts a comment anchor at the current cursor position. A comment box is shown at the page margin, where you can enter the text of your comment. A line connects anchor and comment box. If a text range is selected, the comment is attached to the text range."
+msgid "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_BOX_MAKE\">Select the brand of paper that you want to use.</ahelp> Each brand has its own size formats."
msgstr ""
-#: 04050000.xhp
+#: 01010201.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id0915200910571516\n"
+"01010201.xhp\n"
+"hd_id3153821\n"
+"25\n"
"help.text"
-msgid "In Calc, Draw, and Impress, the command <item type=\"menuitem\">Insert - Comment</item> inserts a comment."
-msgstr ""
+msgid "Type"
+msgstr "Tipi"
-#: 04050000.xhp
+#: 01010201.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id1831\n"
+"01010201.xhp\n"
+"par_id3149235\n"
+"26\n"
"help.text"
-msgid "The author name and the date and time of creating this comment is shown at the bottom of the comment box."
+msgid "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_BOX_TYPE\">Select the size format that you want to use. The available formats depend on the brand on what you selected in the <emph>Brand</emph> list. If you want to use a custom label format, select <emph>[User]</emph>, and then click the <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> tab to define the format.</ahelp>"
msgstr ""
-#: 04050000.xhp
+#: 01010201.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id6718649\n"
+"01010201.xhp\n"
+"hd_id3153828\n"
+"27\n"
"help.text"
-msgid "The comments by different authors get different colors. Choose <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - User Data</item> to enter your name so that it can show up as the comment author."
+msgid "Info"
+msgstr "Informacione"
+
+#: 01010201.xhp
+msgctxt ""
+"01010201.xhp\n"
+"par_id3152349\n"
+"28\n"
+"help.text"
+msgid "The paper type and the dimensions of the label are displayed at the bottom of the <emph>Format</emph> area."
msgstr ""
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id2929166\n"
+"01010202.xhp\n"
+"tit\n"
"help.text"
-msgid "Editing comments"
-msgstr "Edito komentin..."
+msgid "Format"
+msgstr "Formati"
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id5201879\n"
+"01010202.xhp\n"
+"hd_id3151260\n"
+"1\n"
"help.text"
-msgid "Every user with write permission to the document can edit and delete comments of all authors."
+msgid "<link href=\"text/shared/01/01010202.xhp\" name=\"Format\">Format</link>"
msgstr ""
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id2571794\n"
+"01010202.xhp\n"
+"par_id3153255\n"
+"2\n"
"help.text"
-msgid "The comment box contains an icon with a down arrow. Click the icon to open a menu with some commands to delete comments."
+msgid "<ahelp hid=\"HID_LAB_FMT\">Set paper formatting options.</ahelp>"
msgstr ""
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id0522200809383431\n"
+"01010202.xhp\n"
+"hd_id3159194\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Delete the current comment.</ahelp>"
-msgstr ""
+msgid "Horizontal pitch"
+msgstr "Lartësia vertikale"
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id0522200809383485\n"
+"01010202.xhp\n"
+"par_id3154186\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Delete all comments by this author in the current document.</ahelp>"
+msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_HDIST\">Displays the distance between the left edges of adjacent labels or business cards. If you are defining a custom format, enter a value here.</ahelp>"
msgstr ""
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id0522200809383428\n"
+"01010202.xhp\n"
+"hd_id3155555\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Delete all comments in the current document.</ahelp>"
-msgstr ""
+msgid "Vertical pitch"
+msgstr "Lartësia vertikale"
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id1857051\n"
+"01010202.xhp\n"
+"par_id3152425\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\">Choose a command to delete the current comment, or all comments from the same author as the current comment, or all comments in the document.</ahelp>"
+msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_VDIST\">Displays the distance between the upper edge of a label or a business card and the upper edge of the label or the business card directly below. If you are defining a custom format, enter a value here.</ahelp>"
msgstr ""
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id0305200911090684\n"
+"01010202.xhp\n"
+"hd_id3147399\n"
+"7\n"
"help.text"
-msgid "If the comment in a text document was written by another author, there is a Reply command in the context menu. <ahelp hid=\".\">This command inserts a new comment adjacent to the comment to which you want to reply.</ahelp> The comment anchor is the same for both comments. Type your reply text in the new comment. Save and send your document to other authors, then those authors can add replies, too."
-msgstr ""
+msgid "Width"
+msgstr "Gjerësia"
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id0804200803435883\n"
+"01010202.xhp\n"
+"par_id3147576\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\">Use <item type=\"menuitem\">View - Comments</item> to show or hide all comments (not available in Calc).</ahelp>"
+msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_WIDTH\">Displays the width for the label or the business card. If you are defining a custom format, enter a value here.</ahelp>"
msgstr ""
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id0302200901430918\n"
+"01010202.xhp\n"
+"hd_id3150774\n"
+"9\n"
"help.text"
-msgid "In the Find & Replace dialog of text documents, you can select to include the comments texts in your searches."
+msgid "Height"
+msgstr "Lartësia"
+
+#: 01010202.xhp
+msgctxt ""
+"01010202.xhp\n"
+"par_id3149827\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_HEIGHT\">Displays the height for the label or business card. If you are defining a custom format, enter a value here.</ahelp>"
msgstr ""
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id3445539\n"
+"01010202.xhp\n"
+"hd_id3149182\n"
+"11\n"
"help.text"
-msgid "Navigating from comment to comment in text documents"
-msgstr "Nga kreu në fund"
+msgid "Left margin"
+msgstr "Margjina e majtë"
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id4271370\n"
+"01010202.xhp\n"
+"par_id3154823\n"
+"12\n"
"help.text"
-msgid "When the cursor is inside a comment, you can press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Page Down to jump to the next comment, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Page Up to jump to the previous comment."
+msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_LEFT\">Displays the distance from the left edge of the page to the left edge of the first label or business card. If you are defining a custom format, enter a value here.</ahelp>"
msgstr ""
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id2116153\n"
+"01010202.xhp\n"
+"hd_id3156346\n"
+"13\n"
"help.text"
-msgid "When the cursor is inside the normal text, press the above mentioned keys to jump to the next or previous comment anchor. You can also use the small Navigation window below the vertical scrollbar to jump from one comment anchor to the next comment anchor."
-msgstr ""
+msgid "Upper margin"
+msgstr "Margjina e epërme"
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id5381328\n"
+"01010202.xhp\n"
+"par_id3150355\n"
+"14\n"
"help.text"
-msgid "You can also open the Navigator to see a list of all comments. Right-click a comment name in the Navigator to edit or delete the comment."
+msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_UPPER\">Displays distance from the top edge of the page to the top of the first label or business card. If you are defining a custom format, enter a value here.</ahelp>"
msgstr ""
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id5664235\n"
+"01010202.xhp\n"
+"hd_id3147573\n"
+"15\n"
"help.text"
-msgid "Printing comments"
-msgstr "Pamja e shënimeve"
+msgid "Columns"
+msgstr "Kolonat"
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id2254402\n"
+"01010202.xhp\n"
+"par_id3153252\n"
+"16\n"
"help.text"
-msgid "To change the printing option for comments for all your text documents, choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME Writer - Print</item>."
+msgid "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_FMT:FLD_COLUMNS\">Enter the number of labels or business cards that you want to span the width of the page.</ahelp>"
msgstr ""
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"hd_id0915200910571612\n"
+"01010202.xhp\n"
+"hd_id3154143\n"
+"17\n"
"help.text"
-msgid "Comments in spreadsheets"
-msgstr ""
+msgid "Rows"
+msgstr "Rreshtat"
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3166460\n"
-"6\n"
+"01010202.xhp\n"
+"par_id3145119\n"
+"18\n"
"help.text"
-msgid "When you attach a comment to a cell, a callout appears where you can enter your text. A small square in the upper right corner of a cell marks the position of a comment. To display the comment permanently, right-click the cell, and choose <emph>Show Comment</emph>."
+msgid "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_FMT:FLD_ROWS\">Enter the number of labels or business cards that you want to span the height of the page.</ahelp>"
msgstr ""
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id8336741\n"
+"01010202.xhp\n"
+"hd_id3147336\n"
+"19\n"
"help.text"
-msgid "To change the object properties of a comment, for example the background color, choose <emph>Show Comment</emph> as above, then right-click the comment (do not double-click the text)."
-msgstr ""
+msgid "Save"
+msgstr "Ruaje"
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3155390\n"
-"7\n"
+"01010202.xhp\n"
+"par_id3156152\n"
+"20\n"
"help.text"
-msgid "To edit a shown comment, double-click the comment text. To edit a comment that is not shown permanently, right-click in the cell that contains the comment, and then choose <emph>Insert - Comment</emph>. To specify the formatting of the comment text, right-click the comment text in edit mode."
+msgid "<ahelp hid=\"SW_PUSHBUTTON_TP_LAB_FMT_PB_SAVE\">Saves the current label or business card format.</ahelp>"
msgstr ""
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_idN107A1\n"
+"01010202.xhp\n"
+"hd_id3146773\n"
+"21\n"
"help.text"
-msgid "To change the position or size of a comment, drag a border or corner of the comment."
-msgstr ""
+msgid "Save Label Format"
+msgstr "Ruaj Formatin e Etiketës"
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id9499496\n"
+"01010202.xhp\n"
+"hd_id3154897\n"
+"23\n"
"help.text"
-msgid "To delete a comment, right-click the cell, then choose <emph>Delete Comment</emph>."
-msgstr ""
+msgid "Brand"
+msgstr "Firma"
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id2036805\n"
+"01010202.xhp\n"
+"par_id3155421\n"
+"24\n"
"help.text"
-msgid "You can also right-click a comment name in the Navigator window to choose some editing commands."
+msgid "<ahelp hid=\"SW_COMBOBOX_DLG_SAVE_LABEL_CB_MAKE\">Enter or select the desired brand.</ahelp>"
msgstr ""
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id3153716\n"
-"8\n"
+"01010202.xhp\n"
+"hd_id3155180\n"
+"25\n"
"help.text"
-msgid "To set the printing options for comments in your spreadsheet, choose <emph>Format - Page</emph>, and then click the <emph>Sheet</emph> tab."
-msgstr ""
+msgid "Type"
+msgstr "Tipi"
-#: 04050000.xhp
+#: 01010202.xhp
msgctxt ""
-"04050000.xhp\n"
-"par_id2419507\n"
+"01010202.xhp\n"
+"par_id3159158\n"
+"26\n"
"help.text"
-msgid "In Impress, you can choose to use the Notes view to write a page of notes for every slide. Additionally, you can insert comments to your slides."
+msgid "<ahelp hid=\"SW_EDIT_DLG_SAVE_LABEL_ED_TYPE\">Enter or select a label type.</ahelp>"
msgstr ""
-#: 01010200.xhp
+#: 01010203.xhp
msgctxt ""
-"01010200.xhp\n"
+"01010203.xhp\n"
"tit\n"
"help.text"
-msgid "Labels"
-msgstr "Etiketat"
+msgid "Options"
+msgstr "Opcionet"
-#: 01010200.xhp
+#: 01010203.xhp
msgctxt ""
-"01010200.xhp\n"
-"hd_id3154788\n"
+"01010203.xhp\n"
+"hd_id3155599\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010200.xhp\" name=\"Labels\">Labels</link>"
+msgid "<link href=\"text/shared/01/01010203.xhp\" name=\"Options\">Options</link>"
msgstr ""
-#: 01010200.xhp
+#: 01010203.xhp
msgctxt ""
-"01010200.xhp\n"
-"par_id3145071\n"
+"01010203.xhp\n"
+"par_id3154497\n"
"2\n"
"help.text"
-msgid "<variable id=\"etikett\"><ahelp hid=\".uno:InsertLabels\">Allows you to create labels. Labels are created in a text document.</ahelp> You can print labels using a pre-defined or a custom paper format. </variable>"
+msgid "<ahelp hid=\"HID_LAB_PRT\" visibility=\"visible\">Sets additional options for your labels or business cards, including text synchronization and printer settings.</ahelp>"
msgstr ""
-#: 01010200.xhp
+#: 01010203.xhp
msgctxt ""
-"01010200.xhp\n"
-"par_id3145314\n"
+"01010203.xhp\n"
+"hd_id3150713\n"
"3\n"
"help.text"
-msgid "You can also print a single label or an entire sheet of labels."
+msgid "Entire Page"
+msgstr "E gjithë faqja"
+
+#: 01010203.xhp
+msgctxt ""
+"01010203.xhp\n"
+"par_id3155355\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"SW:RADIOBUTTON:TP_LAB_PRT:BTN_PAGE\" visibility=\"visible\">Creates a full page of labels or business cards.</ahelp>"
msgstr ""
-#: 01010200.xhp
+#: 01010203.xhp
msgctxt ""
-"01010200.xhp\n"
-"hd_id3145383\n"
-"7\n"
+"01010203.xhp\n"
+"hd_id3146958\n"
+"5\n"
"help.text"
-msgid "New Document"
-msgstr "Dokument i ri"
+msgid "Single Label"
+msgstr "Etiketë e vetme"
-#: 01010200.xhp
+#: 01010203.xhp
msgctxt ""
-"01010200.xhp\n"
-"par_id3154810\n"
-"8\n"
+"01010203.xhp\n"
+"par_id3155535\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"HID_LABEL_INSERT\">Creates a new document for editing.</ahelp>"
+msgid "<ahelp hid=\"SW:RADIOBUTTON:TP_LAB_PRT:BTN_SINGLE\" visibility=\"visible\">Prints a single label or business card on a page.</ahelp>"
msgstr ""
-#: 01010200.xhp
+#: 01010203.xhp
msgctxt ""
-"01010200.xhp\n"
-"par_id3144438\n"
+"01010203.xhp\n"
+"hd_id3148621\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/shared/guide/labels.xhp\" name=\"Creating labels\">Creating labels</link>"
+msgid "Column"
+msgstr "Kolonë"
+
+#: 01010203.xhp
+msgctxt ""
+"01010203.xhp\n"
+"par_id3145345\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_PRT:FLD_COL\" visibility=\"visible\">Enter the number of labels or business cards that you want to have in a row on your page.</ahelp>"
msgstr ""
-#: 05250600.xhp
+#: 01010203.xhp
msgctxt ""
-"05250600.xhp\n"
-"tit\n"
+"01010203.xhp\n"
+"hd_id3149398\n"
+"9\n"
"help.text"
-msgid "To Background"
-msgstr "Nga Sfondi"
+msgid "Row"
+msgstr "Rresht"
-#: 05250600.xhp
+#: 01010203.xhp
msgctxt ""
-"05250600.xhp\n"
-"hd_id3146959\n"
-"1\n"
+"01010203.xhp\n"
+"par_id3166410\n"
+"10\n"
"help.text"
-msgid "<variable id=\"background\"><link href=\"text/shared/01/05250600.xhp\" name=\"To Background\">To Background</link></variable>"
+msgid "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_PRT:FLD_ROW\" visibility=\"visible\">Enter the number of rows of labels or business cards that you want to have on your page.</ahelp>"
msgstr ""
-#: 05250600.xhp
+#: 01010203.xhp
msgctxt ""
-"05250600.xhp\n"
-"par_id3146902\n"
-"2\n"
+"01010203.xhp\n"
+"hd_id3149237\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\".uno:SetObjectToBackground\">Moves the selected object behind text.</ahelp>"
-msgstr ""
+msgid "Synchronize contents"
+msgstr "Tabela e përmbajtjeve"
-#: 05250600.xhp
+#: 01010203.xhp
msgctxt ""
-"05250600.xhp\n"
-"par_id3148731\n"
-"4\n"
+"01010203.xhp\n"
+"par_id3155342\n"
+"16\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
+msgid "<ahelp visibility=\"visible\" hid=\"SW:CHECKBOX:TP_LAB_PRT:CB_SYNCHRON\">Allows you to edit a single label or business card and updates the contents of the remaining labels or business cards on the page when you click the <emph>Synchronize Labels </emph>button.</ahelp>"
msgstr ""
-#: 05350200.xhp
+#: 01010203.xhp
msgctxt ""
-"05350200.xhp\n"
-"tit\n"
+"01010203.xhp\n"
+"hd_id3149164\n"
+"18\n"
"help.text"
-msgid "Geometry"
-msgstr "Gjeometri"
+msgid "Synchronize Labels"
+msgstr "Sinkronizo etiketat"
-#: 05350200.xhp
+#: 01010203.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3149551\n"
-"1\n"
+"01010203.xhp\n"
+"par_id3148474\n"
+"17\n"
"help.text"
-msgid "<link href=\"text/shared/01/05350200.xhp\" name=\"Geometry\">Geometry</link>"
+msgid "The <emph>Synchronize labels </emph>button only appears in your document if you selected the <emph>Synchronize contents </emph>on the<emph> Options tab </emph>when you created the labels or business cards."
msgstr ""
-#: 05350200.xhp
+#: 01010203.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3150008\n"
-"2\n"
+"01010203.xhp\n"
+"par_id3149762\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_GEO\">Adjusts the shape of the selected 3D object. You can only modify the shape of a 3D object that was created by converting a 2D object. To convert a 2D object to 3D, select the object, right-click, and then choose <emph>Convert - To 3D</emph>, or <emph>Convert - To 3D Rotation Object</emph>.</ahelp>"
+msgid "<ahelp hid=\"SW:PUSHBUTTON:DLG_SYNC_BTN:BTN_SYNC\" visibility=\"visible\">Copies the contents of the top left label or business card to the remaining labels or business cards on the page.</ahelp>"
msgstr ""
-#: 05350200.xhp
+#: 01010203.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3148538\n"
-"4\n"
+"01010203.xhp\n"
+"hd_id3150504\n"
+"11\n"
"help.text"
-msgid "Geometry"
-msgstr "Gjeometri"
+msgid "Printer"
+msgstr "Shtypësi"
-#: 05350200.xhp
+#: 01010203.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3153662\n"
-"5\n"
+"01010203.xhp\n"
+"par_id3148990\n"
+"12\n"
"help.text"
-msgid "Define the shape properties for the selected 3D object."
+msgid "Displays the name of the currently selected printer."
msgstr ""
-#: 05350200.xhp
+#: 01010203.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3149812\n"
-"12\n"
+"01010203.xhp\n"
+"hd_id3153127\n"
+"13\n"
"help.text"
-msgid "Rounded edges"
-msgstr "Zgjati skajet"
+msgid "Setup"
+msgstr "Setup..."
-#: 05350200.xhp
+#: 01010203.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3154142\n"
-"13\n"
+"01010203.xhp\n"
+"par_id3144438\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_PERCENT_DIAGONAL\">Enter the amount by which you want to round the corners of the selected 3D object.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\"SW:PUSHBUTTON:TP_LAB_PRT:BTN_PRTSETUP\">Opens the <link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link> dialog.</ahelp>"
msgstr ""
-#: 05350200.xhp
+#: 01010300.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3155585\n"
-"14\n"
+"01010300.xhp\n"
+"tit\n"
"help.text"
-msgid "Scaled depth"
-msgstr "Thellësi e shkallëzuar"
+msgid "Business cards"
+msgstr "Vizitkartat"
-#: 05350200.xhp
+#: 01010300.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3146137\n"
-"15\n"
+"01010300.xhp\n"
+"hd_id3149038\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_BACKSCALE\">Enter the amount by which to increase or decrease the area of the front side of the selected 3D object.</ahelp>"
+msgid "<link href=\"text/shared/01/01010300.xhp\" name=\"Business cards\">Business cards</link>"
msgstr ""
-#: 05350200.xhp
+#: 01010300.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3150466\n"
-"16\n"
+"01010300.xhp\n"
+"par_id3149987\n"
+"2\n"
"help.text"
-msgid "Rotation angle"
-msgstr "Këndi i rrotullimit"
+msgid "<ahelp hid=\".uno:InsertBusinessCard\">Design and create your own business cards.</ahelp> You can choose from a number of pre-defined size formats or create your own."
+msgstr ""
-#: 05350200.xhp
+#: 01010301.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3153320\n"
-"17\n"
+"01010301.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_END_ANGLE\">Enter the angle in degrees to rotate the selected 3D rotation object.</ahelp>"
-msgstr ""
+msgid "Medium"
+msgstr "Medium"
-#: 05350200.xhp
+#: 01010301.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3149276\n"
-"18\n"
+"01010301.xhp\n"
+"hd_id3148765\n"
+"1\n"
"help.text"
-msgid "Depth"
-msgstr "Thellësi"
+msgid "<link href=\"text/shared/01/01010301.xhp\" name=\"Medium\">Medium</link>"
+msgstr ""
-#: 05350200.xhp
+#: 01010301.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3153252\n"
-"19\n"
+"01010301.xhp\n"
+"par_id3150278\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_DEPTH\">Enter the extrusion depth for the selected 3D object. This option is not valid for 3D rotation objects.</ahelp>"
+msgid "<ahelp hid=\".\">Select the size of your business card from a number of pre-defined size formats, or a size format that you specify on the <emph>Format </emph>tab.</ahelp>"
msgstr ""
-#: 05350200.xhp
+#: 01010301.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3159343\n"
-"6\n"
+"01010301.xhp\n"
+"hd_id3149991\n"
+"3\n"
"help.text"
-msgid "Segments"
-msgstr "Segmentet"
+msgid "Format"
+msgstr "Formati"
-#: 05350200.xhp
+#: 01010301.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3155388\n"
-"7\n"
+"01010301.xhp\n"
+"par_id3147543\n"
+"4\n"
"help.text"
-msgid "You can change the number of segments that are used to draw a 3D rotation object."
+msgid "Select a size format for your business card."
msgstr ""
-#: 05350200.xhp
+#: 01010301.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3152909\n"
-"8\n"
+"01010301.xhp\n"
+"hd_id3160463\n"
+"5\n"
"help.text"
-msgid "Horizontal"
-msgstr "Horizontal"
+msgid "Continuous"
+msgstr "I vazhdueshëm"
-#: 05350200.xhp
+#: 01010301.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3150943\n"
-"9\n"
+"01010301.xhp\n"
+"par_id3150279\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXFLOAT_3D:NUM_HORIZONTAL\">Enter the number of horizontal segments to use in the selected 3D rotation object.</ahelp>"
+msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_CONT\">Prints business cards on continuous paper.</ahelp>"
msgstr ""
-#: 05350200.xhp
+#: 01010301.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3149416\n"
-"10\n"
+"01010301.xhp\n"
+"hd_id3154840\n"
+"7\n"
"help.text"
-msgid "Vertical"
-msgstr "Vertikal"
+msgid "Sheet"
+msgstr "Fleta"
-#: 05350200.xhp
+#: 01010301.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3151245\n"
-"11\n"
+"01010301.xhp\n"
+"par_id3148731\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXFLOAT_3D:NUM_VERTICAL\">Enter the number of vertical segments to use in the selected 3D rotation object</ahelp>"
+msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_SHEET\">Prints business cards on individual sheets.</ahelp>"
msgstr ""
-#: 05350200.xhp
+#: 01010301.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3153626\n"
-"20\n"
+"01010301.xhp\n"
+"hd_id3154894\n"
+"9\n"
"help.text"
-msgid "Normals"
-msgstr "Normalet"
+msgid "Brand"
+msgstr "Firma"
-#: 05350200.xhp
+#: 01010301.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3150822\n"
-"21\n"
+"01010301.xhp\n"
+"par_id3155351\n"
+"10\n"
"help.text"
-msgid "Allows you to modify the rendering style of the 3D surface."
+msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_BRAND\">Select the brand of paper that you want to use.</ahelp> Each brand has its own size formats."
msgstr ""
-#: 05350200.xhp
+#: 01010301.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3149046\n"
-"22\n"
+"01010301.xhp\n"
+"hd_id3153935\n"
+"11\n"
"help.text"
-msgid "Object-Specific"
-msgstr "Objekt-Specifik"
+msgid "Type"
+msgstr "Tipi"
-#: 05350200.xhp
+#: 01010301.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3149670\n"
-"23\n"
+"01010301.xhp\n"
+"par_id3159201\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_OBJ\">Renders the 3D surface according to the shape of the object. For example, a circular shape is rendered with a spherical surface.</ahelp>"
+msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_TYPE\">Select the size format that you want to use. The available formats depend on what you selected in the <emph>Brand</emph> list. If you want to use a custom size format, select <emph>[User]</emph>, and then click the <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> tab to define the format.</ahelp>"
msgstr ""
-#: 05350200.xhp
+#: 01010301.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3152811\n"
+"01010301.xhp\n"
+"hd_id3147226\n"
+"13\n"
"help.text"
-msgid "<image id=\"img_id3150865\" src=\"svx/res/normobjs.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3150865\">Icon</alt></image>"
-msgstr ""
+msgid "Info"
+msgstr "Informacione"
-#: 05350200.xhp
+#: 01010301.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3151211\n"
-"24\n"
+"01010301.xhp\n"
+"par_id3153394\n"
+"14\n"
"help.text"
-msgid "Object-Specific"
-msgstr "Objekt-Specifik"
+msgid "The paper type and the dimensions of the business card are displayed at the bottom of the <emph>Format</emph> area."
+msgstr ""
-#: 05350200.xhp
+#: 01010302.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3153797\n"
-"25\n"
+"01010302.xhp\n"
+"tit\n"
"help.text"
-msgid "Flat"
-msgstr "Rrafsh"
+msgid "Business Cards"
+msgstr "Vizitkartat"
-#: 05350200.xhp
+#: 01010302.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3146874\n"
-"26\n"
+"01010302.xhp\n"
+"hd_id3152414\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_FLAT\">Renders the 3D surface as polygons.</ahelp>"
+msgid "<link href=\"text/shared/01/01010302.xhp\" name=\"Business Cards\">Business Cards</link>"
msgstr ""
-#: 05350200.xhp
+#: 01010302.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3157962\n"
+"01010302.xhp\n"
+"par_id3153882\n"
+"2\n"
"help.text"
-msgid "<image id=\"img_id3154068\" src=\"svx/res/normflat.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3154068\">Icon</alt></image>"
+msgid "<ahelp hid=\"\" visibility=\"visible\">Define the appearance of your business cards.</ahelp>"
msgstr ""
-#: 05350200.xhp
+#: 01010302.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3145202\n"
-"27\n"
+"01010302.xhp\n"
+"hd_id3146873\n"
+"3\n"
"help.text"
-msgid "Flat"
-msgstr "Rrafsh"
+msgid "Content"
+msgstr "Përmbajtje"
-#: 05350200.xhp
+#: 01010302.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3147228\n"
-"28\n"
+"01010302.xhp\n"
+"par_id3147527\n"
+"4\n"
"help.text"
-msgid "Spherical"
-msgstr "Sferike"
+msgid "Select a design layout for your business card."
+msgstr ""
-#: 05350200.xhp
+#: 01010302.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3150288\n"
-"29\n"
+"01010302.xhp\n"
+"par_id3158442\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_SPHERE\">Renders a smooth 3D surface.</ahelp>"
+msgid "<ahelp visibility=\"visible\" hid=\"HID_BUSINESS_CARD_CONTENT\">Select a business card category in <emph>AutoText - Section</emph> box, and then click a layout in the <emph>Content </emph>list.</ahelp>"
msgstr ""
-#: 05350200.xhp
+#: 01010302.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3148923\n"
+"01010302.xhp\n"
+"hd_id3148668\n"
+"6\n"
"help.text"
-msgid "<image id=\"img_id3149807\" src=\"svx/res/normsphe.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3149807\">Icon</alt></image>"
-msgstr ""
+msgid "AutoText - Section"
+msgstr "AutoText - seksioni"
-#: 05350200.xhp
+#: 01010302.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3149983\n"
-"30\n"
+"01010302.xhp\n"
+"par_id3154894\n"
+"7\n"
"help.text"
-msgid "Spherical"
-msgstr "Sferike"
+msgid "<ahelp visibility=\"visible\" hid=\"SW_LISTBOX_TP_VISITING_CARDS_LB_AUTO_TEXT_GROUP\">Select a business card category, and then click a layout in the <emph>Content </emph>list.</ahelp>"
+msgstr ""
-#: 05350200.xhp
+#: 01010303.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3153056\n"
-"31\n"
+"01010303.xhp\n"
+"tit\n"
"help.text"
-msgid "Invert Normals"
-msgstr "Përmbys Normalet"
+msgid "Private"
+msgstr "Private"
-#: 05350200.xhp
+#: 01010303.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3145785\n"
-"32\n"
+"01010303.xhp\n"
+"hd_id3149031\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_INVERT\">Inverts the light source.</ahelp>"
+msgid "<link href=\"text/shared/01/01010303.xhp\" name=\"Private\">Private</link>"
msgstr ""
-#: 05350200.xhp
+#: 01010303.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3152940\n"
+"01010303.xhp\n"
+"par_id3148731\n"
+"2\n"
"help.text"
-msgid "<image id=\"img_id3151116\" src=\"svx/res/invert3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3151116\">Icon</alt></image>"
+msgid "<ahelp hid=\".\">Contains personal contact information for business cards. Business card layouts are selected on the <emph>Business Cards</emph> tab.</ahelp>"
msgstr ""
-#: 05350200.xhp
+#: 01010303.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3156061\n"
-"33\n"
+"01010303.xhp\n"
+"hd_id3159201\n"
+"3\n"
"help.text"
-msgid "Invert Normals"
-msgstr "Përmbys Normalet"
+msgid "Private data"
+msgstr "Të dhëna private"
-#: 05350200.xhp
+#: 01010303.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3152417\n"
-"34\n"
+"01010303.xhp\n"
+"par_id3147399\n"
+"4\n"
"help.text"
-msgid "Double-sided Illumination"
-msgstr "Ndriçim i dyanshëm"
+msgid "Enter the contact information that you want to include on your business card. You can also modify or update these entries by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - User Data</emph>."
+msgstr ""
-#: 05350200.xhp
+#: 01010303.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3163820\n"
-"35\n"
+"01010303.xhp\n"
+"hd_id3156427\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TWO_SIDED_LIGHTING\">Lights the object from the outside and the inside. To use an ambient light source, click this button, and then click the <emph>Invert Normals</emph> button.</ahelp>"
-msgstr ""
+msgid "First name 2"
+msgstr "Emri"
-#: 05350200.xhp
+#: 01010303.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3157309\n"
+"01010303.xhp\n"
+"par_id3149750\n"
+"16\n"
"help.text"
-msgid "<image id=\"img_id3155746\" src=\"svx/res/lght2sid.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3155746\">Icon</alt></image>"
+msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_FIRSTNAME_2\">Enter the first name of the person, whom you want to use as a second contact.</ahelp>"
msgstr ""
-#: 05350200.xhp
+#: 01010303.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3154986\n"
-"36\n"
+"01010303.xhp\n"
+"hd_id3145345\n"
+"17\n"
"help.text"
-msgid "Double-sided illumination"
-msgstr "Ndriçim i dyanshëm"
+msgid "Last name 2"
+msgstr "Mbiemri"
-#: 05350200.xhp
+#: 01010303.xhp
msgctxt ""
-"05350200.xhp\n"
-"hd_id3153190\n"
-"37\n"
+"01010303.xhp\n"
+"par_id3154288\n"
+"18\n"
"help.text"
-msgid "Double-Sided"
-msgstr "I dyanshëm"
+msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_NAME_2\">Enter the last name of the person, whom you want to use as a second contact.</ahelp>"
+msgstr ""
-#: 05350200.xhp
+#: 01010303.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3154692\n"
-"38\n"
+"01010303.xhp\n"
+"hd_id3150774\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_DOUBLE_SIDED\">Closes the shape of a 3D object that was created by extruding a freeform line (<emph>Convert - To 3D</emph>).</ahelp>"
-msgstr ""
+msgid "Initials 2"
+msgstr "Inicialet"
-#: 05350200.xhp
+#: 01010303.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3150686\n"
+"01010303.xhp\n"
+"par_id3151110\n"
+"20\n"
"help.text"
-msgid "<image id=\"img_id3152460\" src=\"svx/res/doublesi.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3152460\">Icon</alt></image>"
+msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_SHORTCUT_2\">Enter the initials of the person, whom you want to use as a second contact.</ahelp>"
msgstr ""
-#: 05350200.xhp
+#: 01010303.xhp
msgctxt ""
-"05350200.xhp\n"
-"par_id3155307\n"
-"39\n"
+"01010303.xhp\n"
+"hd_id3153543\n"
+"5\n"
"help.text"
-msgid "Double-Sided"
-msgstr "I dyanshëm"
+msgid "Country"
+msgstr "Vendi"
-#: 06130500.xhp
+#: 01010303.xhp
msgctxt ""
-"06130500.xhp\n"
-"tit\n"
+"01010303.xhp\n"
+"par_id3150085\n"
+"6\n"
"help.text"
-msgid "Append libraries"
-msgstr "Bashkangjitni biblotekat"
+msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_STATE\">Enter the name of the country in which you live.</ahelp>"
+msgstr ""
-#: 06130500.xhp
+#: 01010303.xhp
msgctxt ""
-"06130500.xhp\n"
-"hd_id3158442\n"
-"1\n"
+"01010303.xhp\n"
+"hd_id3155449\n"
+"7\n"
"help.text"
-msgid "Append libraries"
-msgstr "Bashkangjitni biblotekat"
+msgid "Profession"
+msgstr "Titulli/Profesioni"
-#: 06130500.xhp
+#: 01010303.xhp
msgctxt ""
-"06130500.xhp\n"
-"par_id3155271\n"
-"2\n"
+"01010303.xhp\n"
+"par_id3156192\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"\">Locate the <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open.</ahelp>"
+msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_PROFESSION\">Enter the title of your profession.</ahelp>"
msgstr ""
-#: 06130500.xhp
+#: 01010303.xhp
msgctxt ""
-"06130500.xhp\n"
-"hd_id3152952\n"
-"3\n"
+"01010303.xhp\n"
+"hd_id3147336\n"
+"9\n"
"help.text"
-msgid "File name:"
-msgstr "Emri i skedarit:"
+msgid "Phone"
+msgstr "Telefoni/Celulari"
-#: 06130500.xhp
+#: 01010303.xhp
msgctxt ""
-"06130500.xhp\n"
-"par_id3152876\n"
-"4\n"
+"01010303.xhp\n"
+"par_id3145315\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">Enter a name or the path to the library that you want to append. You can also select a library from the list.</ahelp>"
+msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_PHONE\">Enter your home telephone number.</ahelp>"
msgstr ""
-#: 06130500.xhp
-msgctxt ""
-"06130500.xhp\n"
-"hd_id3147294\n"
-"5\n"
-"help.text"
-msgid "Options"
-msgstr "Opcionet"
-
-#: 06130500.xhp
+#: 01010303.xhp
msgctxt ""
-"06130500.xhp\n"
-"hd_id3143272\n"
-"7\n"
+"01010303.xhp\n"
+"hd_id3149763\n"
+"11\n"
"help.text"
-msgid "Insert as reference (read-only)"
-msgstr "Fute si adresim (vetwm e lexueshme)"
+msgid "Mobile"
+msgstr "Celulari"
-#: 06130500.xhp
+#: 01010303.xhp
msgctxt ""
-"06130500.xhp\n"
-"par_id3154350\n"
-"8\n"
+"01010303.xhp\n"
+"par_id3156155\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Adds the selected library as a read-only file. The library is reloaded each time you start <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
+msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_MOBILE\">Enter your mobile telephone number.</ahelp>"
msgstr ""
-#: 06130500.xhp
+#: 01010303.xhp
msgctxt ""
-"06130500.xhp\n"
-"hd_id3154788\n"
-"9\n"
+"01010303.xhp\n"
+"hd_id3154306\n"
+"13\n"
"help.text"
-msgid "Replace existing libraries"
-msgstr "Zwvwndwso biblotekat ekzistuese"
+msgid "Homepage"
+msgstr "Faqja fillestare"
-#: 06130500.xhp
+#: 01010303.xhp
msgctxt ""
-"06130500.xhp\n"
-"par_id3154894\n"
-"10\n"
+"01010303.xhp\n"
+"par_id3153666\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Replaces a library that has the same name with the current library.</ahelp>"
+msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_WWW\">Enter the address of your internet homepage.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01010304.xhp
msgctxt ""
-"01130000.xhp\n"
+"01010304.xhp\n"
"tit\n"
"help.text"
-msgid "Print"
-msgstr "Shtyp"
-
-#: 01130000.xhp
-msgctxt ""
-"01130000.xhp\n"
-"bm_id3154621\n"
-"help.text"
-msgid "<bookmark_value>printing; documents</bookmark_value><bookmark_value>documents; printing</bookmark_value><bookmark_value>text documents; printing</bookmark_value><bookmark_value>spreadsheets; printing</bookmark_value><bookmark_value>presentations; print menu</bookmark_value><bookmark_value>drawings; printing</bookmark_value><bookmark_value>choosing printers</bookmark_value><bookmark_value>printers; choosing</bookmark_value><bookmark_value>print area selection</bookmark_value><bookmark_value>selecting; print areas</bookmark_value><bookmark_value>pages; selecting one to print</bookmark_value><bookmark_value>printing; selections</bookmark_value><bookmark_value>printing; copies</bookmark_value><bookmark_value>copies; printing</bookmark_value><bookmark_value>spoolfiles with Xprinter</bookmark_value>"
-msgstr ""
+msgid "Business"
+msgstr "Biznes"
-#: 01130000.xhp
+#: 01010304.xhp
msgctxt ""
-"01130000.xhp\n"
-"hd_id3154621\n"
+"01010304.xhp\n"
+"hd_id3152942\n"
"1\n"
"help.text"
-msgid "Print"
-msgstr "Shtyp"
+msgid "<link href=\"text/shared/01/01010304.xhp\" name=\"Business\">Business</link>"
+msgstr ""
-#: 01130000.xhp
+#: 01010304.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3146946\n"
+"01010304.xhp\n"
+"par_id3151097\n"
"2\n"
"help.text"
-msgid "<variable id=\"druckentext\"><ahelp hid=\".uno:Print\">Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document.</ahelp></variable> The printing options can vary according to the printer and the operating system that you use."
+msgid "<ahelp hid=\"\">Contains contact information for business cards that use a layout from a 'Business Card, Work' category. Business card layouts are selected on the <emph>Business Cards</emph> tab.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01010304.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912284853\n"
+"01010304.xhp\n"
+"hd_id3149549\n"
+"3\n"
"help.text"
-msgid "The Print dialog consists of three main parts: A preview with navigation buttons, several tab pages with control elements specific to the current document type, and the Print, Cancel, and Help buttons."
-msgstr ""
+msgid "Business data"
+msgstr "Të dhënat e biznesit"
-#: 01130000.xhp
+#: 01010304.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id0818200901193992\n"
+"01010304.xhp\n"
+"par_id3156027\n"
+"4\n"
"help.text"
-msgid "If you just want to know how to print your document, click any of the following links."
+msgid "Enter the contact information that you want to include on your business card."
msgstr ""
-#: 01130000.xhp
+#: 01010304.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912531416\n"
+"01010304.xhp\n"
+"par_id3155892\n"
+"17\n"
"help.text"
-msgid "<emph>Printing text documents:</emph>"
+msgid "If you want to include your name on a business card, enter your name on the <emph>Private </emph>tab. Then choose a layout on the <emph>Business Cards </emph>tab that includes a name placeholder."
msgstr ""
-#: 01130000.xhp
+#: 01010304.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912531487\n"
+"01010304.xhp\n"
+"hd_id3150355\n"
+"5\n"
"help.text"
-msgid "<emph>Printing spreadsheets:</emph>"
-msgstr ""
+msgid "Company 2nd line"
+msgstr "Kompania reshti i 2të"
-#: 01130000.xhp
+#: 01010304.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912531410\n"
+"01010304.xhp\n"
+"par_id3153031\n"
+"6\n"
"help.text"
-msgid "<emph>Printing presentations:</emph>"
+msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_COMP_EXT\">Enter additional company details.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01010304.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912531449\n"
+"01010304.xhp\n"
+"hd_id3150771\n"
+"7\n"
"help.text"
-msgid "<emph>General printing:</emph>"
-msgstr ""
+msgid "Slogan"
+msgstr "Parulla"
-#: 01130000.xhp
+#: 01010304.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912284952\n"
+"01010304.xhp\n"
+"par_id3156327\n"
+"8\n"
"help.text"
-msgid "The settings that you define in the Print dialog are valid only for the current print job that you start by clicking the Print button. If you want to change some options permanently, open Tools - Options - %PRODUCTNAME (application name) - Print."
+msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_SLOGAN\">Enter the slogan of your company.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01010304.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3156080\n"
-"41\n"
+"01010304.xhp\n"
+"hd_id3153146\n"
+"9\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To set the default <item type=\"productname\">%PRODUCTNAME</item> printer options for text documents, choose <link href=\"text/shared/optionen/01040400.xhp\" name=\"Tools - Options - Writer - Print\"><emph>Tools - Options - %PRODUCTNAME Writer - Print</emph></link>.</caseinline></switchinline>"
-msgstr ""
+msgid "Country"
+msgstr "Vendi"
-#: 01130000.xhp
+#: 01010304.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_idN1099E\n"
+"01010304.xhp\n"
+"par_id3155449\n"
+"10\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">To set the default <item type=\"productname\">%PRODUCTNAME</item> printer options for spreadsheet documents, choose <link href=\"text/shared/optionen/01060700.xhp\" name=\"Tools - Options - Calc - Print\"><emph>Tools - Options - %PRODUCTNAME Calc - Print</emph></link>.</caseinline></switchinline>"
+msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_STATE\">Enter the name of the country where your business is located.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01010304.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_idN109CD\n"
+"01010304.xhp\n"
+"hd_id3154380\n"
+"11\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">To set the default <item type=\"productname\">%PRODUCTNAME</item>printer options for presentation documents, choose <link href=\"text/shared/optionen/01070400.xhp\" name=\"Tools - Options - Impress - Print\"><emph>Tools - Options - %PRODUCTNAME Impress - Print</emph></link>.</caseinline></switchinline>"
-msgstr ""
+msgid "Phone"
+msgstr "Telefoni/Celulari"
-#: 01130000.xhp
+#: 01010304.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id0818200901194137\n"
+"01010304.xhp\n"
+"par_id3154046\n"
+"12\n"
"help.text"
-msgid "Press Shift+F1 or choose <item type=\"menuitem\">Help - What's This?</item> and point to any control element in the Print dialog to see an extended help text."
+msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_PHONE\">Enter your business telephone number.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01010304.xhp
msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912284914\n"
+"01010304.xhp\n"
+"hd_id3158430\n"
+"13\n"
"help.text"
-msgid "Preview"
-msgstr "Shikim paraprak"
+msgid "Mobile"
+msgstr "Celulari"
-#: 01130000.xhp
+#: 01010304.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id081820091228505\n"
+"01010304.xhp\n"
+"par_id3156329\n"
+"14\n"
"help.text"
-msgid "The preview shows how each sheet of paper will look. You can browse through all sheets of paper with the buttons below the preview."
+msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_MOBILE\">Enter your mobile telephone number.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01010304.xhp
msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285056\n"
+"01010304.xhp\n"
+"hd_id3154306\n"
+"15\n"
"help.text"
-msgid "General"
-msgstr "Të përgjithshme"
+msgid "Homepage"
+msgstr "Faqja fillestare"
-#: 01130000.xhp
+#: 01010304.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285064\n"
+"01010304.xhp\n"
+"par_id3148563\n"
+"16\n"
"help.text"
-msgid "On the General tab page, you find the most important control elements for printing. You can define which contents of your document are to be printed. You can select the printer and open the printer settings dialog."
+msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_WWW\">Enter the address of your company's internet homepage.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id2\n"
+"01020000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print colors and objects that are inserted to the background of the page (Format - Page - Background).</ahelp>"
-msgstr ""
+msgid "Open"
+msgstr "Hape"
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id4\n"
+"01020000.xhp\n"
+"bm_id3145211\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the graphics and drawings or OLE objects of your text document are printed.</ahelp>"
+msgid "<bookmark_value>directories; creating new</bookmark_value> <bookmark_value>folder creation</bookmark_value> <bookmark_value>My Documents folder; opening</bookmark_value> <bookmark_value>multiple documents; opening</bookmark_value> <bookmark_value>opening; several files</bookmark_value> <bookmark_value>selecting; several files</bookmark_value> <bookmark_value>opening; files, with placeholders</bookmark_value> <bookmark_value>placeholders;on opening files</bookmark_value> <bookmark_value>documents; opening with templates</bookmark_value> <bookmark_value>templates; opening documents with</bookmark_value> <bookmark_value>documents; styles changed</bookmark_value> <bookmark_value>styles; 'changed' message</bookmark_value>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id6\n"
+"01020000.xhp\n"
+"hd_id3146936\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable this option to print text that is marked as hidden.</ahelp>"
+msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id8\n"
+"01020000.xhp\n"
+"par_id3151191\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout.</ahelp>"
+msgid "<variable id=\"oeffnentext\"><ahelp hid=\"HID_EXPLORERDLG_FILE\">Opens or imports a file.</ahelp></variable>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id10\n"
+"01020000.xhp\n"
+"par_id3149877\n"
+"109\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the form control fields of the text document are printed.</ahelp>"
+msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> dialog box. To activate the <item type=\"productname\">%PRODUCTNAME</item> <emph>Open</emph> and <emph>Save</emph> dialog boxes, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\">%PRODUCTNAME- General</link></emph>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id12\n"
+"01020000.xhp\n"
+"par_id3150713\n"
+"52\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to always print text in black.</ahelp>"
+msgid "If the file that you want to open contains Styles, <link href=\"text/shared/01/01020000.xhp#vorlagen\" name=\"special rules\">special rules</link> apply."
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id14\n"
+"01020000.xhp\n"
+"hd_id3147250\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">If this option is enabled automatically inserted blank pages are printed. This is best if you are printing double-sided. For example, in a book, a \"chapter\" paragraph style has been set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to print that even numbered page.</ahelp>"
-msgstr ""
+msgid "Up One Level"
+msgstr "Një nivel më lartë"
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id16\n"
+"01020000.xhp\n"
+"par_id3147226\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify where to print comments (if any).</ahelp>"
+msgid "<ahelp hid=\"SVTOOLS_MENUBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_UP\">Move up one folder in the folder hierarchy. Long-click to see the higher level folders.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id18\n"
+"01020000.xhp\n"
+"hd_id3145211\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify where to print comments (if any).</ahelp>"
+msgid "Create New Folder"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id20\n"
+"01020000.xhp\n"
+"par_id3153681\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether you want the name of the document to be included in the printout.</ahelp>"
+msgid "<ahelp hid=\"SVTOOLS_IMAGEBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_NEWFOLDER\">Creates a new folder.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id22\n"
+"01020000.xhp\n"
+"hd_id3148538\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to include the contents of the Commands window at the bottom of the printout.</ahelp>"
-msgstr ""
+msgid "Display area"
+msgstr "Zona e fundfaqes"
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id24\n"
+"01020000.xhp\n"
+"par_id3156113\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies a thin border to the formula area in the printout.</ahelp>"
+msgid "<ahelp hid=\"HID_FILEDLG_STANDARD\">Displays the files and folders in the folder that you are in.</ahelp> To open a file, select the file, and then click <emph>Open</emph>."
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id26\n"
+"01020000.xhp\n"
+"par_id3159256\n"
+"78\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints the formula without adjusting the current font size.</ahelp>"
+msgid "To open more than one document at the same time, each in an own window, hold <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while you click the files, and then click <emph>Open</emph>."
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id28\n"
+"01020000.xhp\n"
+"par_id3154514\n"
+"110\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Adjusts the formula to the page format used in the printout.</ahelp>"
+msgid "Click a column header to sort the files. Click again to reverse the sort order."
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id30\n"
+"01020000.xhp\n"
+"par_id3149514\n"
+"111\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Reduces or enlarges the size of the printed formula by a specified factor.</ahelp>"
+msgid "<ahelp hid=\"HID_FILEVIEW_MENU_DELETE\">To delete a file, right-click the file, and then choose <emph>Delete</emph>.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id32\n"
+"01020000.xhp\n"
+"par_id3147618\n"
+"112\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Reduces or enlarges the size of the printed formula by a specified factor.</ahelp>"
+msgid "<ahelp hid=\"HID_FILEVIEW_MENU_RENAME\">To rename a file, right-click the file, and then choose <emph>Rename</emph>.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id34\n"
+"01020000.xhp\n"
+"par_id3153331\n"
+"124\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">If checked empty pages that have no cell contents or draw objects are not printed.</ahelp>"
+msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_QUERYDELETE_BTN_YES\" visibility=\"hidden\">Click to delete the file with the name shown in this dialog.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id36\n"
+"01020000.xhp\n"
+"par_id3161458\n"
+"125\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">For printers with multiple trays this option specifies whether the paper tray used is specified by the system settings of the printer.</ahelp>"
+msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_QUERYDELETE_BTN_NO\" visibility=\"hidden\">Click to cancel deletion of the file with the name shown in this dialog.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3149164\n"
-"25\n"
+"01020000.xhp\n"
+"par_id3147531\n"
+"126\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints the entire document.</ahelp>"
+msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_QUERYDELETE_BTN_ALL\" visibility=\"hidden\">Click to delete all selected files.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3152944\n"
-"27\n"
+"01020000.xhp\n"
+"hd_id3154280\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints only the pages or slides that you specify in the <emph>Pages</emph> box.</ahelp>"
-msgstr ""
+msgid "File name"
+msgstr "Emri i fajllit"
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3150244\n"
-"30\n"
+"01020000.xhp\n"
+"par_id3161656\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints only the selected area(s) or object(s) in the current document.</ahelp>"
+msgid "<ahelp hid=\"HID_FILEDLG_AUTOCOMPLETEBOX\">Enter a file name or a path for the file. You can also enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> that starts with the protocol name ftp, http, or https.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3146848\n"
-"28\n"
+"01020000.xhp\n"
+"par_id3150541\n"
+"72\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12.</ahelp>"
+msgid "If you want, you can use wildcards in the <emph>File name </emph>box to filter the list of files that is displayed."
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3150772\n"
-"18\n"
+"01020000.xhp\n"
+"par_id3153779\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints to a file instead of to a printer.</ahelp>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>For example, to list all of the text files in a folder, enter the asterisk wildcard with the text file extension (*.txt), and then click<emph> Open</emph>. Use the question mark (?) wildcard to represent any character, as in (??3*.txt), which only displays text files with a '3' as the third character in the file name.</defaultinline></switchinline>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id38\n"
+"01020000.xhp\n"
+"hd_id3145117\n"
+"81\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to not rely on the printer to create collated copies but create a print job for each copy instead.</ahelp>"
-msgstr ""
+msgid "Version"
+msgstr "Verzioni:"
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id40\n"
+"01020000.xhp\n"
+"par_id3149291\n"
+"82\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to print pages in reverse order.</ahelp>"
+msgid "<ahelp hid=\"HID_FILEOPEN_VERSION\">If there are multiple versions of the selected file, select the version that you want to open.</ahelp> You can save and organize multiple versions of a document by choosing <emph>File - Versions</emph>. The versions of a document are opened in read-only mode."
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3145069\n"
-"34\n"
+"01020000.xhp\n"
+"hd_id3150767\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the number of copies that you want to print.</ahelp>"
-msgstr ""
+msgid "File type"
+msgstr "Tipi i fajllit"
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3150865\n"
-"36\n"
+"01020000.xhp\n"
+"par_id3153969\n"
+"26\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Preserves the page order of the original document.</ahelp>"
+msgid "<ahelp hid=\"SVTOOLS_LISTBOX_DLG_SVT_EXPLORERFILE_LB_EXPLORERFILE_FILETYPE\">Select the file type that you want to open, or select <emph>All Files (*)</emph> to display a list of all of the files in the folder.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3156113\n"
-"16\n"
+"01020000.xhp\n"
+"hd_id3154125\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the printer properties dialog. The printer properties vary according to the printer that you select.</ahelp>"
-msgstr ""
+msgid "Open"
+msgstr "Hape"
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id42\n"
+"01020000.xhp\n"
+"par_id3152933\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Show/Hide detailed information of the selected printer.</ahelp>"
+msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_OPEN\">Opens the selected document(s).</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3149511\n"
-"4\n"
+"01020000.xhp\n"
+"hd_id3147085\n"
+"88\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">The list box shows the installed printers. Click the printer to use for the current print job. Click the Printer details button to see some information about the selected printer. Click the Properties button to change some of the printer properties.</ahelp>"
-msgstr ""
+msgid "Insert"
+msgstr "Shto"
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id44\n"
+"01020000.xhp\n"
+"par_id3156293\n"
+"89\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify which pages to include in the output.</ahelp>"
+msgid "If you opened the dialog by choosing <emph>Insert - File</emph>, the <emph>Open</emph> button is labeled <emph>Insert</emph>. <ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Inserts the selected file into the current document at the cursor position.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id46\n"
+"01020000.xhp\n"
+"hd_id3144762\n"
+"35\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Brochure option to print the document in brochure format.</ahelp>"
-msgstr ""
+msgid "Read-only"
+msgstr "Vetëm -lexim"
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id48\n"
+"01020000.xhp\n"
+"par_id3145785\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select which pages of a brochure to print.</ahelp>"
+msgid "<ahelp hid=\"HID_FILEOPEN_READONLY\">Opens the file in read-only mode.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id0818200904102910\n"
+"01020000.xhp\n"
+"hd_id3149984\n"
+"113\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">For brochure printing, you can select a left-to-right order of pages or a right-to-left order.</ahelp>"
-msgstr ""
+msgid "Play"
+msgstr "Luaje"
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id50\n"
+"01020000.xhp\n"
+"par_id3147289\n"
+"114\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to draw a border around each page.</ahelp>"
+msgid "<ahelp hid=\"HID_FILESAVE_DOPLAY\">Plays the selected sound file. Click again to stop playing the sound file.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id52\n"
+"01020000.xhp\n"
+"hd_id3149260\n"
+"53\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select order in which pages are to be printed.</ahelp>"
-msgstr ""
+msgid "Opening Documents With Templates"
+msgstr "Përmban shabllone për krijimin e dokumenteve të reja"
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id54\n"
+"01020000.xhp\n"
+"par_id3145367\n"
+"40\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the orientation of the paper.</ahelp>"
+msgid "<item type=\"productname\">%PRODUCTNAME</item> recognizes templates that are located in any folder from the following list:"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id56\n"
+"01020000.xhp\n"
+"par_id3151292\n"
+"120\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select margin between the printed pages and paper edge.</ahelp>"
+msgid "the shared template folder"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id58\n"
+"01020000.xhp\n"
+"par_id3144442\n"
+"121\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select margin between individual pages on each sheet of paper.</ahelp>"
+msgid "the user template folder <switchinline select=\"sys\"><caseinline select=\"UNIX\">in the home directory</caseinline><defaultinline>in the Documents and Settings folder</defaultinline></switchinline>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id60\n"
+"01020000.xhp\n"
+"par_id3146905\n"
+"122\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select number of rows.</ahelp>"
+msgid "all template folders as defined in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010300.xhp\" name=\"%PRODUCTNAME - Paths\">%PRODUCTNAME - Paths</link></emph>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id62\n"
+"01020000.xhp\n"
+"par_id7375713\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select number of columns.</ahelp>"
+msgid "When you use <item type=\"menuitem\">File - Template - Save</item> to save a template, the template will be stored in your user template folder. When you open a document that is based on such a template, the document will be checked for a changed template as decribed below. The template is associated with the document, it may be called a \"sticky template\"."
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id64\n"
+"01020000.xhp\n"
+"par_id6930143\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select how many pages to print per sheet of paper.</ahelp>"
+msgid "When you use <item type=\"menuitem\">File - Save As</item> and select a template filter to save a template at any other folder that is not in the list, then the documents based on that template will not be checked."
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id66\n"
+"01020000.xhp\n"
+"par_id3150105\n"
+"73\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Print multiple pages per sheet of paper.</ahelp>"
+msgid "When you open a document that was created from a \"sticky template\" (as defined above), <item type=\"productname\">%PRODUCTNAME</item> checks to see if the template has been modified since the document was last opened. If the template was changed a dialog is shown where you can select which styles to apply to the document."
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id68\n"
+"01020000.xhp\n"
+"par_id3153096\n"
+"74\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select which parts of the document should be printed.</ahelp>"
+msgid "To apply the new styles from the template to the document, click <emph>Yes</emph>."
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id70\n"
+"01020000.xhp\n"
+"par_id3147581\n"
+"75\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select how many slides to print per page.</ahelp>"
+msgid "To retain the styles that are currently used in the document, click <emph>No</emph>."
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id72\n"
+"01020000.xhp\n"
+"par_id3154988\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify how to arrange slides on the printed page.</ahelp>"
+msgid "If a document was created using a template that cannot be found a dialog is shown that asks you how to proceed next time the document is opened."
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id74\n"
+"01020000.xhp\n"
+"par_id3151351\n"
+"91\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print the page name of a document.</ahelp>"
+msgid "To break the link between the document and the missing template, click <emph>No</emph>, otherwise <item type=\"productname\">%PRODUCTNAME</item> will look for the template the next time you open the document."
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id76\n"
+"01020000.xhp\n"
+"par_id3149417\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print the current date and time.</ahelp>"
+msgid "<link href=\"text/shared/guide/doc_open.xhp\" name=\"Opening Documents\">Opening Documents</link>"
msgstr ""
-#: 01130000.xhp
+#: 01020000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id78\n"
+"01020000.xhp\n"
+"par_id3153848\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print the pages that are currently hidden.</ahelp>"
+msgid "<link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filters\">Import and Export Filters</link>"
msgstr ""
-#: 01130000.xhp
+#: 01020101.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id80\n"
+"01020101.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print in original colors.</ahelp>"
-msgstr ""
+msgid "Select Path"
+msgstr "Selekto shtegun"
-#: 01130000.xhp
+#: 01020101.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id82\n"
+"01020101.xhp\n"
+"hd_id3150620\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print colors as grayscale.</ahelp>"
-msgstr ""
+msgid "Select Path"
+msgstr "Selekto shtegun"
-#: 01130000.xhp
+#: 01020101.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id84\n"
+"01020101.xhp\n"
+"par_id3149962\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print colors as black and white.</ahelp>"
-msgstr ""
+msgid "Sets file paths."
+msgstr "Format i panjohur i fajllit!"
-#: 01130000.xhp
+#: 01020101.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id86\n"
+"01020101.xhp\n"
+"hd_id3152821\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify how to scale slides in the printout.</ahelp>"
-msgstr ""
+msgid "Select"
+msgstr "Zgjedh"
-#: 01130000.xhp
+#: 01020101.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id88\n"
+"01020101.xhp\n"
+"par_id3150902\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that you do not want to further scale pages when printing.</ahelp>"
+msgid "<ahelp hid=\"HID_FILEDLG_PATH_BTN\" visibility=\"visible\">Selects the indicated path.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01020101.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id90\n"
+"01020101.xhp\n"
+"hd_id3148585\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer.</ahelp>"
-msgstr ""
+msgid "Path:"
+msgstr "Shtegu"
-#: 01130000.xhp
+#: 01020101.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id92\n"
+"01020101.xhp\n"
+"par_id3149346\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, several pages or slides will be printed on one page of paper.</ahelp>"
+msgid "<ahelp hid=\"HID_FILEDLG_PATH_FILENAME\" visibility=\"visible\">Enter or select the path from the list.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01020101.xhp
msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285074\n"
+"01020101.xhp\n"
+"par_id3149750\n"
"help.text"
-msgid "%PRODUCTNAME Writer / Calc / Impress / Draw / Math"
+msgid "<link name=\"Open Dialog\" href=\"text/shared/01/01020000.xhp\"><emph>Open</emph> Dialog</link>"
msgstr ""
-#: 01130000.xhp
+#: 01020103.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285019\n"
+"01020103.xhp\n"
+"tit\n"
"help.text"
-msgid "The tab page with the same name as the current application can be used to define the contents, color, size, and pages to be printed. You define settings that are specific to the current document type."
-msgstr ""
+msgid "Filter Selection"
+msgstr "Zgjedhja e databazës"
-#: 01130000.xhp
+#: 01020103.xhp
msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285112\n"
+"01020103.xhp\n"
+"hd_id3152876\n"
+"1\n"
"help.text"
-msgid "Page Layout"
-msgstr "Ndrysho formëdhënien..."
+msgid "Filter Selection"
+msgstr "Zgjedhja e databazës"
-#: 01130000.xhp
+#: 01020103.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285150\n"
+"01020103.xhp\n"
+"par_id3154926\n"
+"2\n"
"help.text"
-msgid "The Page Layout tab page can be used to save some sheets of paper by printing several pages onto each sheet of paper. You define the arrangement and size of output pages on the physical paper."
+msgid "Allows you to select an import filter."
msgstr ""
-#: 01130000.xhp
+#: 01020103.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id0818200904164735\n"
+"01020103.xhp\n"
+"hd_id3151100\n"
+"4\n"
"help.text"
-msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
-msgstr ""
+msgid "Filter list"
+msgstr "Kryerresht i listës"
-#: 01130000.xhp
+#: 01020103.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id0818200904102987\n"
+"01020103.xhp\n"
+"par_id3159201\n"
+"5\n"
"help.text"
-msgid "For some document types, you can choose to print a brochure."
+msgid "<ahelp hid=\"SFX2:LISTBOX:DLG_FILTER_SELECT:LB_DLG_LISTBOX\">Select the import filter for the file that you want to open.</ahelp>"
msgstr ""
-#: 01130000.xhp
+#: 01020103.xhp
msgctxt ""
-"01130000.xhp\n"
-"hd_id0818200912285138\n"
+"01020103.xhp\n"
+"par_id3152918\n"
+"6\n"
"help.text"
-msgid "Options"
-msgstr "Opcionet"
+msgid "If $[officename] does not recognize the file type of the document that your want to open, try any of the following:"
+msgstr ""
-#: 01130000.xhp
+#: 01020103.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id0818200912285146\n"
+"01020103.xhp\n"
+"par_id3152924\n"
+"7\n"
"help.text"
-msgid "On the Options tab page you can set some additional options for the current print job. Here you can specify to print to a file instead of printing on a printer."
-msgstr ""
+msgid "Select the import filter from the list."
+msgstr "Zgjidh skemën e tastierës nga lista e arkitekturave"
-#: 01130000.xhp
+#: 01020103.xhp
msgctxt ""
-"01130000.xhp\n"
-"hd_id0819200910481678\n"
+"01020103.xhp\n"
+"par_id3155892\n"
+"9\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Unix hints</caseinline></switchinline>"
+msgid "Ensure that the file extension corresponds to the file type of the document. For example, a Microsoft Word document must have a (*.doc) extension for $[officename] to use the appropriate filter."
msgstr ""
-#: 01130000.xhp
+#: 01020103.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3157320\n"
-"47\n"
+"01020103.xhp\n"
+"par_id3147571\n"
+"8\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">If you want, you can use the STAR_SPOOL_DIR environment variable to specify the directory where the Xprinter spoolfiles are saved. For example:</caseinline></switchinline>"
+msgid "Install a missing import filter with the <emph>$[officename] Setup</emph> program."
msgstr ""
-#: 01130000.xhp
+#: 01050000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3154330\n"
-"48\n"
+"01050000.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">setenv STAR_SPOOL_DIR /usr/local/tmp (in the csh/tcsh) or</caseinline></switchinline>"
-msgstr ""
+msgid "Close"
+msgstr "Mbylle"
-#: 01130000.xhp
+#: 01050000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3150768\n"
-"49\n"
+"01050000.xhp\n"
+"bm_id3154545\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">export STAR_SPOOL_DIR=/usr/local/tmp (in the sh/bash)</caseinline></switchinline>"
+msgid "<bookmark_value>documents; closing</bookmark_value><bookmark_value>closing;documents</bookmark_value>"
msgstr ""
-#: 01130000.xhp
+#: 01050000.xhp
msgctxt ""
-"01130000.xhp\n"
-"par_id3150449\n"
-"50\n"
+"01050000.xhp\n"
+"hd_id3154545\n"
+"1\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">You can also use the <link href=\"text/shared/guide/spadmin.xhp\" name=\"spadmin printer setup program\">spadmin printer setup program</link> to specify additional printer options.</caseinline></switchinline>"
+msgid "<link href=\"text/shared/01/01050000.xhp\" name=\"Close\">Close</link>"
msgstr ""
-#: 05250000.xhp
+#: 01050000.xhp
msgctxt ""
-"05250000.xhp\n"
-"tit\n"
+"01050000.xhp\n"
+"par_id3148731\n"
+"2\n"
"help.text"
-msgid "Arrange"
-msgstr "Rregullo"
+msgid "<ahelp hid=\".uno:CloseDoc\">Closes the current document without exiting the program.</ahelp>"
+msgstr ""
-#: 05250000.xhp
+#: 01050000.xhp
msgctxt ""
-"05250000.xhp\n"
-"bm_id3152427\n"
+"01050000.xhp\n"
+"par_id3149095\n"
+"7\n"
"help.text"
-msgid "<bookmark_value>objects; arranging within stacks</bookmark_value><bookmark_value>arranging; objects</bookmark_value><bookmark_value>borders; arranging</bookmark_value><bookmark_value>pictures; arranging within stacks</bookmark_value><bookmark_value>draw objects; arranging within stacks</bookmark_value><bookmark_value>controls; arranging within stacks</bookmark_value><bookmark_value>OLE objects; arranging within stacks</bookmark_value><bookmark_value>charts; arranging within stacks</bookmark_value><bookmark_value>layer arrangement</bookmark_value><bookmark_value>levels; depth stagger</bookmark_value><bookmark_value>depth stagger</bookmark_value>"
+msgid "The <emph>Close </emph>command closes all of the open windows for the current document."
msgstr ""
-#: 05250000.xhp
+#: 01050000.xhp
msgctxt ""
-"05250000.xhp\n"
-"hd_id3152427\n"
-"1\n"
+"01050000.xhp\n"
+"par_id3148620\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Arranging Objects\">Arrange</link>"
+msgid "If you have made changes to the current document, you are prompted if you want to <link href=\"text/shared/01/01060000.xhp\" name=\"save\">save</link> your changes."
msgstr ""
-#: 05250000.xhp
+#: 01050000.xhp
msgctxt ""
-"05250000.xhp\n"
-"par_id3154230\n"
-"2\n"
+"01050000.xhp\n"
+"par_id3159201\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".uno:ObjectPosition\">Changes the stacking order of the selected object(s).</ahelp>"
+msgid "When you close the last open document window, you see the <link href=\"text/shared/guide/startcenter.xhp\">Start Center</link>."
msgstr ""
-#: 05250000.xhp
+#: 01050000.xhp
msgctxt ""
-"05250000.xhp\n"
-"hd_id3153894\n"
+"01050000.xhp\n"
+"par_id3153821\n"
"9\n"
"help.text"
-msgid "Layer for text and graphics"
+msgid "<link href=\"text/shared/02/10100000.xhp\" name=\"Close the current window\">Close the current window</link>"
msgstr ""
-#: 05250000.xhp
+#: 01050000.xhp
msgctxt ""
-"05250000.xhp\n"
-"par_id3154186\n"
-"4\n"
+"01050000.xhp\n"
+"par_id3154750\n"
+"10\n"
"help.text"
-msgid "Each object that you place in your document is successively stacked on the preceding object. Use the arrange commands to change the stacking order of objects in your document. You cannot change the stacking order of text."
+msgid "<link href=\"text/shared/01/01170000.xhp\" name=\"Exit $[officename]\">Exit $[officename]</link>"
msgstr ""
-#: 05070300.xhp
+#: 01060000.xhp
msgctxt ""
-"05070300.xhp\n"
+"01060000.xhp\n"
"tit\n"
"help.text"
-msgid "Align Right"
-msgstr "Rreshto djathtas"
+msgid "Save"
+msgstr "Ruaje"
-#: 05070300.xhp
+#: 01060000.xhp
msgctxt ""
-"05070300.xhp\n"
-"hd_id3153383\n"
-"1\n"
+"01060000.xhp\n"
+"hd_id3147000\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070300.xhp\" name=\"Align Right\">Align Right</link>"
+msgid "<link href=\"text/shared/01/01060000.xhp\" name=\"Save\">Save</link>"
msgstr ""
-#: 05070300.xhp
+#: 01060000.xhp
msgctxt ""
-"05070300.xhp\n"
-"par_id3151264\n"
-"2\n"
+"01060000.xhp\n"
+"par_id3153255\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".uno:AlignRight\">Aligns the right edges of the selected objects. If only one object is selected in Impress or Draw, the right edge of the object is aligned to the right page margin.</ahelp>"
+msgid "<ahelp hid=\".uno:Save\">Saves the current document.</ahelp>"
msgstr ""
-#: 05070300.xhp
+#: 01060000.xhp
msgctxt ""
-"05070300.xhp\n"
-"par_id3144336\n"
-"3\n"
+"01060000.xhp\n"
+"par_id3152551\n"
+"4\n"
"help.text"
-msgid "Objects are aligned to the right edge of the rightmost object in the selection."
+msgid "When you edit an AutoText entry, this command changes to <emph>Save AutoText</emph>."
msgstr ""
-#: 02090000.xhp
+#: 01070000.xhp
msgctxt ""
-"02090000.xhp\n"
+"01070000.xhp\n"
"tit\n"
"help.text"
-msgid "Select All"
-msgstr "Zgjedh të gjitha"
+msgid "Save As"
+msgstr "Ruaje si"
-#: 02090000.xhp
+#: 01070000.xhp
msgctxt ""
-"02090000.xhp\n"
-"hd_id3145138\n"
+"01070000.xhp\n"
+"bm_id3151260\n"
+"help.text"
+msgid "<bookmark_value>saving as command; precautions</bookmark_value>"
+msgstr ""
+
+#: 01070000.xhp
+msgctxt ""
+"01070000.xhp\n"
+"hd_id3151260\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/02090000.xhp\" name=\"Select All\">Select All</link>"
+msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
msgstr ""
-#: 02090000.xhp
+#: 01070000.xhp
msgctxt ""
-"02090000.xhp\n"
-"par_id3149999\n"
+"01070000.xhp\n"
+"par_id3146856\n"
"2\n"
"help.text"
-msgid "<variable id=\"allestext\"><ahelp hid=\".uno:Select\" visibility=\"visible\">Selects the entire content of the current file, frame, or text object.</ahelp></variable>"
+msgid "<variable id=\"speichernuntertext\"><ahelp hid=\"HID_FILESAVE_DIALOG\">Saves the current document in a different location, or with a different file name or file type.</ahelp></variable>"
msgstr ""
-#: 02090000.xhp
+#: 01070000.xhp
msgctxt ""
-"02090000.xhp\n"
-"par_id3155261\n"
-"3\n"
+"01070000.xhp\n"
+"par_id3155934\n"
+"64\n"
"help.text"
-msgid "<switchinline select=\"appl\"> <caseinline select=\"CALC\">To select all of the cells on a sheet, click the button at the intersection of the column and row header in the top left corner of the sheet.</caseinline> <defaultinline/> </switchinline>"
+msgid "The following sections describe the <emph><item type=\"productname\">%PRODUCTNAME</item> Save as</emph> dialog. To activate the <emph><item type=\"productname\">%PRODUCTNAME</item> Open</emph> and <emph>Save</emph> dialog boxes, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\">%PRODUCTNAME- General</link></emph>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
msgstr ""
-#: 02090000.xhp
+#: 01070000.xhp
msgctxt ""
-"02090000.xhp\n"
-"par_id3154046\n"
-"4\n"
+"01070000.xhp\n"
+"par_id3147654\n"
+"59\n"
"help.text"
-msgid "<switchinline select=\"appl\"> <caseinline select=\"CALC\">To select all of the sheets in a spreadsheet file, right-click the name tab of a sheet, and then choose <emph>Select All Sheets</emph>.<ahelp hid=\".uno:TableSelectAll\" visibility=\"hidden\">Selects all of the sheets in the current spreadsheet.</ahelp></caseinline> <defaultinline/> </switchinline>"
+msgid "To save a document as a template, use the command <emph>File - Save As Template</emph>."
msgstr ""
-#: xformsdataaddcon.xhp
+#: 01070000.xhp
msgctxt ""
-"xformsdataaddcon.xhp\n"
-"tit\n"
+"01070000.xhp\n"
+"hd_id3146774\n"
"help.text"
-msgid "Add Condition"
-msgstr "Shto kushtin"
+msgid "Connect To Server"
+msgstr ""
-#: xformsdataaddcon.xhp
+#: 01070000.xhp
msgctxt ""
-"xformsdataaddcon.xhp\n"
-"bm_id8615680\n"
+"01070000.xhp\n"
+"par_id3153820\n"
"help.text"
-msgid "<bookmark_value>conditions;items in Data Navigator</bookmark_value><bookmark_value>XForms;conditions</bookmark_value>"
+msgid "<ahelp hid=\".\">Opens a dialog where you can set up connection to various types of servers, including WebDAV, FTP, SSH, Windows Share and CMIS.</ahelp>"
msgstr ""
-#: xformsdataaddcon.xhp
+#: 01070000.xhp
msgctxt ""
-"xformsdataaddcon.xhp\n"
-"par_idN1053E\n"
+"01070000.xhp\n"
+"hd_id3146775\n"
+"19\n"
"help.text"
-msgid "Add Condition"
-msgstr "Shto kushtin"
+msgid "Up One Level"
+msgstr "Një nivel më lartë"
-#: xformsdataaddcon.xhp
+#: 01070000.xhp
msgctxt ""
-"xformsdataaddcon.xhp\n"
-"par_idN10542\n"
+"01070000.xhp\n"
+"par_id3153821\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\".\">Add a condition in this subdialog of the Add Item / Edit Item dialog of the Data Navigator.</ahelp>"
+msgid "<ahelp hid=\"HID_FILESAVE_LEVELUP\">Move up one folder in the folder hierarchy. Long-click to see the higher level folders.</ahelp>"
msgstr ""
-#: xformsdataaddcon.xhp
+#: 01070000.xhp
msgctxt ""
-"xformsdataaddcon.xhp\n"
-"par_idN10561\n"
+"01070000.xhp\n"
+"hd_id3159157\n"
+"21\n"
"help.text"
-msgid "Condition"
-msgstr "Kushti"
+msgid "Create New Folder"
+msgstr ""
-#: xformsdataaddcon.xhp
+#: 01070000.xhp
msgctxt ""
-"xformsdataaddcon.xhp\n"
-"par_idN10565\n"
+"01070000.xhp\n"
+"par_id3155583\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter a condition.</ahelp>"
+msgid "<ahelp hid=\"HID_FILESAVE_CREATEDIRECTORY\">Creates a new folder.</ahelp>"
msgstr ""
-#: xformsdataaddcon.xhp
+#: 01070000.xhp
msgctxt ""
-"xformsdataaddcon.xhp\n"
-"par_idN10568\n"
+"01070000.xhp\n"
+"hd_id3155627\n"
"help.text"
-msgid "Result"
-msgstr "Rezultat"
+msgid "Places area"
+msgstr ""
-#: xformsdataaddcon.xhp
+#: 01070000.xhp
msgctxt ""
-"xformsdataaddcon.xhp\n"
-"par_idN1056C\n"
+"01070000.xhp\n"
+"par_id3149901\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays a preview of the result.</ahelp>"
+msgid "<ahelp hid=\".\">Displays \"favourite\" places, i.e. shortcuts to local or remote locations.</ahelp>"
msgstr ""
-#: xformsdataaddcon.xhp
+#: 01070000.xhp
msgctxt ""
-"xformsdataaddcon.xhp\n"
-"par_idN1056F\n"
+"01070000.xhp\n"
+"hd_id3155628\n"
+"29\n"
"help.text"
-msgid "Edit Namespaces"
-msgstr "Edito hapësirat e emrave"
+msgid "Display area"
+msgstr "Zona e fundfaqes"
-#: xformsdataaddcon.xhp
+#: 01070000.xhp
msgctxt ""
-"xformsdataaddcon.xhp\n"
-"par_idN10573\n"
+"01070000.xhp\n"
+"par_id3149902\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the Form Namespaces dialog where you can add, edit, or delete namespaces.</ahelp>"
+msgid "<ahelp hid=\"HID_FILESAVE_FILEVIEW\">Displays the files and folders in the folder that you are in.</ahelp>"
msgstr ""
-#: 06010601.xhp
+#: 01070000.xhp
msgctxt ""
-"06010601.xhp\n"
-"tit\n"
+"01070000.xhp\n"
+"hd_id3154810\n"
+"37\n"
"help.text"
-msgid "Edit Dictionary"
-msgstr "Edito Fjalorin"
+msgid "File name"
+msgstr "Emri i fajllit"
-#: 06010601.xhp
+#: 01070000.xhp
msgctxt ""
-"06010601.xhp\n"
-"bm_id905789\n"
+"01070000.xhp\n"
+"par_id3153626\n"
+"38\n"
"help.text"
-msgid "<bookmark_value>common terms;Chinese dictionary</bookmark_value><bookmark_value>dictionaries;common terms in simplified and traditional chinese</bookmark_value>"
+msgid "<ahelp hid=\"HID_FILESAVE_FILEURL\">Enter a file name or a path for the file. You can also enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link></ahelp>"
msgstr ""
-#: 06010601.xhp
+#: 01070000.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN1053D\n"
+"01070000.xhp\n"
+"hd_id3149669\n"
+"39\n"
"help.text"
-msgid "Edit Dictionary"
-msgstr "Edito Fjalorin"
+msgid "File type"
+msgstr "Tipi i fajllit"
-#: 06010601.xhp
+#: 01070000.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN10541\n"
+"01070000.xhp\n"
+"par_id3156343\n"
+"40\n"
"help.text"
-msgid "<ahelp hid=\".\">Edit the <link href=\"text/shared/01/06010600.xhp\">Chinese conversion</link> terms.</ahelp>"
+msgid "<ahelp hid=\"HID_FILESAVE_FILETYPE\">Select the file format for the document that you are saving.</ahelp> In the display area, only the documents with this file type are displayed. File types are described in <link href=\"text/shared/00/00000020.xhp\" name=\"Information on Import and Export Filters\">Information on Import and Export Filters</link>."
msgstr ""
-#: 06010601.xhp
+#: 01070000.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN10566\n"
+"01070000.xhp\n"
+"par_id3145116\n"
+"41\n"
"help.text"
-msgid "You can use this dialog to edit, to add, or to delete entries from the conversion dictionary. The file path name for the conversion dictionary is user/wordbook/commonterms.ctd. You cannot delete the default entries in this file."
+msgid "Always save your document in a <item type=\"productname\">%PRODUCTNAME</item> file type before saving it to an external file type. When you export to an external file type, some formatting features may be lost."
msgstr ""
-#: 06010601.xhp
+#: 01070000.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN10569\n"
+"01070000.xhp\n"
+"hd_id3147228\n"
+"42\n"
"help.text"
-msgid "Traditional Chinese to Simplified Chinese"
-msgstr ""
+msgid "Save"
+msgstr "Ruaje"
-#: 06010601.xhp
+#: 01070000.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN1056D\n"
+"01070000.xhp\n"
+"par_id3154068\n"
+"43\n"
"help.text"
-msgid "<ahelp hid=\".\">Converts traditional Chinese to simplified Chinese.</ahelp>"
+msgid "<ahelp hid=\"HID_FILESAVE_DOSAVE\">Saves the file.</ahelp>"
msgstr ""
-#: 06010601.xhp
+#: 01070000.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN10570\n"
+"01070000.xhp\n"
+"hd_id3145744\n"
+"44\n"
"help.text"
-msgid "Simplified Chinese to Traditional Chinese"
+msgid "Save with password"
+msgstr "Ruaje me fjalëkalim"
+
+#: 01070000.xhp
+msgctxt ""
+"01070000.xhp\n"
+"par_id3145152\n"
+"45\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FILESAVE_SAVEWITHPASSWORD\">Protects the file with a <link href=\"text/shared/01/password_dlg.xhp\" name=\"password\">password</link> that must be entered before a user can open the file.</ahelp>"
msgstr ""
-#: 06010601.xhp
+#: 01070000.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN10574\n"
+"01070000.xhp\n"
+"par_id3152920\n"
+"65\n"
"help.text"
-msgid "<ahelp hid=\".\">Converts simplified Chinese to traditional Chinese.</ahelp>"
+msgid "Only documents using the <item type=\"productname\">%PRODUCTNAME</item> XML-based format can be saved with a password."
msgstr ""
-#: 06010601.xhp
+#: 01070000.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN10577\n"
+"01070000.xhp\n"
+"hd_id3147502\n"
+"66\n"
"help.text"
-msgid "Reverse Mapping"
-msgstr "Hartim i kundërt."
+msgid "Edit filter settings"
+msgstr "Rregullo përshtatshmërinë e filtrave"
-#: 06010601.xhp
+#: 01070000.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN1057B\n"
+"01070000.xhp\n"
+"par_id3152883\n"
+"67\n"
"help.text"
-msgid "<ahelp hid=\".\">Automatically adds the reverse mapping direction to the list for each modification that you enter.</ahelp>"
+msgid "<ahelp hid=\"HID_FILESAVE_CUSTOMIZEFILTER\">Allows you to set the spreadsheet saving options for some types of data files.</ahelp>"
msgstr ""
-#: 06010601.xhp
+#: 01070000.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN1057E\n"
+"01070000.xhp\n"
+"hd_id3154988\n"
+"47\n"
"help.text"
-msgid "Term"
-msgstr "Term"
+msgid "Selection"
+msgstr "Selektimet"
-#: 06010601.xhp
+#: 01070000.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN10582\n"
+"01070000.xhp\n"
+"par_id3159125\n"
+"48\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the text that you want to replace with the Mapping term.</ahelp>"
+msgid "<ahelp hid=\"HID_FILESAVE_SELECTION\">Exports only the selected graphic objects in <item type=\"productname\">%PRODUCTNAME</item> Draw and Impress to another format. If this box is not checked, the entire document is exported.</ahelp>"
msgstr ""
-#: 06010601.xhp
+#: 01070000.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN10585\n"
+"01070000.xhp\n"
+"par_id3148577\n"
+"70\n"
"help.text"
-msgid "Mapping"
-msgstr "Duke hartuar"
+msgid "If you are exporting to any document file type, the entire document is exported."
+msgstr ""
-#: 06010601.xhp
+#: 01070000.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN10589\n"
+"01070000.xhp\n"
+"par_id3146986\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the text that you want to replace the Term with.</ahelp>"
+msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export of Text Files\">Export of Text Files</link>"
msgstr ""
-#: 06010601.xhp
+#: 01070001.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN1058C\n"
+"01070001.xhp\n"
+"tit\n"
"help.text"
-msgid "Property"
-msgstr "Veti"
+msgid "Export"
+msgstr "Eksporto"
-#: 06010601.xhp
+#: 01070001.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN10590\n"
+"01070001.xhp\n"
+"bm_id3153383\n"
"help.text"
-msgid "<ahelp hid=\".\">Defines the class of the selected term.</ahelp>"
+msgid "<bookmark_value>documents; exporting</bookmark_value><bookmark_value>converting; $[officename] documents</bookmark_value><bookmark_value>exporting;to foreign formats</bookmark_value>"
msgstr ""
-#: 06010601.xhp
+#: 01070001.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN10593\n"
+"01070001.xhp\n"
+"hd_id3153383\n"
+"13\n"
"help.text"
-msgid "Add"
-msgstr "Shto"
+msgid "<link href=\"text/shared/01/01070001.xhp\" name=\"Export\">Export</link>"
+msgstr ""
-#: 06010601.xhp
+#: 01070001.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN10597\n"
+"01070001.xhp\n"
+"par_id3149355\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Adds the term to the conversion dictionary. If the term is already in the dictionary, the new term receives precedence.</ahelp>"
+msgid "<variable id=\"exportieren\"><ahelp hid=\".uno:ExportTo\">Saves the current document with a different name and format to a location that you specify.</ahelp></variable>"
msgstr ""
-#: 06010601.xhp
+#: 01070001.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN1059A\n"
+"01070001.xhp\n"
+"par_id3150710\n"
+"2\n"
"help.text"
-msgid "Modify"
-msgstr "Modifiko"
+msgid "The following sections describe the <emph>$[officename] Export</emph> dialog box. To activate the <emph>$[officename] Open</emph> and <emph>Save</emph> dialog boxes, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"$[officename] - General\">$[officename] - General</link></emph>, and then select the <emph>Use $[officename] dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
+msgstr ""
-#: 06010601.xhp
+#: 01070001.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN1059E\n"
+"01070001.xhp\n"
+"hd_id3150693\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Saves the modified entry to the database file.</ahelp>"
-msgstr ""
+msgid "Up One Level"
+msgstr "Një nivel më lartë"
-#: 06010601.xhp
+#: 01070001.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN105A1\n"
+"01070001.xhp\n"
+"hd_id3153312\n"
+"5\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "Create New Directory"
+msgstr "Krijo një Folder të ri"
-#: 06010601.xhp
+#: 01070001.xhp
msgctxt ""
-"06010601.xhp\n"
-"par_idN105A5\n"
+"01070001.xhp\n"
+"hd_id3155535\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\">Removes the selected user-defined entry from the dictionary.</ahelp>"
-msgstr ""
+msgid "Default Directory"
+msgstr "Folderi standard"
-#: 02100300.xhp
+#: 01070001.xhp
msgctxt ""
-"02100300.xhp\n"
-"tit\n"
+"01070001.xhp\n"
+"hd_id3154317\n"
+"7\n"
"help.text"
-msgid "Text Format (Search)"
-msgstr "Teksti që përshkruan formatin."
+msgid "Display area"
+msgstr "Zona e fundfaqes"
-#: 02100300.xhp
+#: 01070001.xhp
msgctxt ""
-"02100300.xhp\n"
-"hd_id3154840\n"
-"130\n"
+"01070001.xhp\n"
+"hd_id3147209\n"
+"8\n"
"help.text"
-msgid "Text Format (Search)"
-msgstr "Teksti që përshkruan formatin."
+msgid "File Name"
+msgstr "Emri i Fajlit"
-#: 02100300.xhp
+#: 01070001.xhp
msgctxt ""
-"02100300.xhp\n"
-"par_id3150355\n"
-"131\n"
+"01070001.xhp\n"
+"hd_id3152996\n"
+"9\n"
"help.text"
-msgid "<variable id=\"formattext\"><ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_FORMAT\">Finds specific text formatting features, such as font types, font effects, and text flow characteristics.</ahelp></variable>"
-msgstr ""
+msgid "File Type"
+msgstr "Lloji i fajllit"
-#: 02100300.xhp
+#: 01070001.xhp
msgctxt ""
-"02100300.xhp\n"
-"par_id3145383\n"
-"192\n"
+"01070001.xhp\n"
+"hd_id3148539\n"
+"10\n"
"help.text"
-msgid "The search criteria for attributes are listed below the <emph>Search for</emph> box."
-msgstr ""
+msgid "Export"
+msgstr "Eksporto"
-#: 02100300.xhp
+#: 01100000.xhp
msgctxt ""
-"02100300.xhp\n"
-"par_id3150466\n"
-"132\n"
+"01100000.xhp\n"
+"tit\n"
"help.text"
-msgid "You do not need to specify a search text in the <emph>Search for</emph> box when you search and replace formatting."
-msgstr ""
+msgid "Document Properties"
+msgstr "Vetitë e dokumentit"
-#: 02100300.xhp
+#: 01100000.xhp
msgctxt ""
-"02100300.xhp\n"
-"par_id3156152\n"
-"133\n"
+"01100000.xhp\n"
+"hd_id3152876\n"
+"1\n"
"help.text"
-msgid "To define a replacement format, click in the <emph>Replace with</emph> box, and then click the <emph>Format </emph>button."
+msgid "<variable id=\"eigen_von\"><link href=\"text/shared/01/01100000.xhp\" name=\"Document Properties\">Document Properties</link></variable>"
msgstr ""
-#: 02100300.xhp
+#: 01100000.xhp
msgctxt ""
-"02100300.xhp\n"
-"par_id3153821\n"
-"157\n"
+"01100000.xhp\n"
+"par_id3153255\n"
+"2\n"
"help.text"
-msgid "Use the <emph>Text Format (Search)</emph> or the <emph>Text Format (Replace)</emph> to define your formatting search criteria. These dialogs contain the following tab pages:"
+msgid "<variable id=\"dokumentinfotext\"><ahelp hid=\".uno:SetDocumentProperties\">Displays the properties for the current file, including statistics such as word count and the date the file was created.</ahelp></variable>"
msgstr ""
-#: 02100300.xhp
+#: 01100000.xhp
msgctxt ""
-"02100300.xhp\n"
-"par_id3062837\n"
+"01100000.xhp\n"
+"par_id3153748\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Finds specific text formatting features, such as font types, font effects, and text flow characteristics.</ahelp>"
+msgid "The <emph>Properties</emph> dialog contains the following tab pages:"
msgstr ""
-#: 02100300.xhp
+#: 01100000.xhp
msgctxt ""
-"02100300.xhp\n"
-"par_id3149457\n"
+"01100000.xhp\n"
+"par_id3148643\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/shared/01/02100200.xhp\" name=\"Attributes\">Attributes</link>"
+msgid "Depending on your access rights to the file, you might not see all of the tabs in the <emph>Properties</emph> dialog."
msgstr ""
-#: 06140101.xhp
+#: 01100100.xhp
msgctxt ""
-"06140101.xhp\n"
+"01100100.xhp\n"
"tit\n"
"help.text"
-msgid "New Menu"
-msgstr "AutoPilot Meny"
+msgid "Description"
+msgstr "Përshkrimi"
-#: 06140101.xhp
+#: 01100100.xhp
msgctxt ""
-"06140101.xhp\n"
-"par_idN10540\n"
+"01100100.xhp\n"
+"hd_id3147588\n"
+"1\n"
"help.text"
-msgid "New Menu"
-msgstr "AutoPilot Meny"
+msgid "<link href=\"text/shared/01/01100100.xhp\" name=\"Description\">Description</link>"
+msgstr ""
-#: 06140101.xhp
+#: 01100100.xhp
msgctxt ""
-"06140101.xhp\n"
-"par_idN10558\n"
+"01100100.xhp\n"
+"par_id3154682\n"
+"2\n"
"help.text"
-msgid "Menu name"
-msgstr "Emri i grupit"
+msgid "<ahelp hid=\"sfx/ui/descriptioninfopage/DescriptionInfoPage\">Contains descriptive information about the document.</ahelp>"
+msgstr ""
-#: 06140101.xhp
+#: 01100100.xhp
msgctxt ""
-"06140101.xhp\n"
-"par_idN1055C\n"
+"01100100.xhp\n"
+"hd_id3152372\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter a name for the menu. To specify a letter in the name as an accelerator key, enter a tilde (~) before the letter.</ahelp>"
+msgid "Title"
+msgstr "Titulli"
+
+#: 01100100.xhp
+msgctxt ""
+"01100100.xhp\n"
+"par_id3156042\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/descriptioninfopage/title\">Enter a title for the document.</ahelp>"
msgstr ""
-#: 06140101.xhp
+#: 01100100.xhp
msgctxt ""
-"06140101.xhp\n"
-"par_idN1055F\n"
+"01100100.xhp\n"
+"hd_id3145669\n"
+"5\n"
"help.text"
-msgid "Menu position"
-msgstr "<Pozicion tjetër>"
+msgid "Subject"
+msgstr "Tema"
-#: 06140101.xhp
+#: 01100100.xhp
msgctxt ""
-"06140101.xhp\n"
-"par_idN10563\n"
+"01100100.xhp\n"
+"par_id3147571\n"
+"6\n"
"help.text"
-msgid "Moves the selected menu entry up one position or down one position in the menu when you click the arrow buttons."
+msgid "<ahelp hid=\"sfx/ui/descriptioninfopage/subject\">Enter a subject for the document. You can use a subject to group documents with similar contents.</ahelp>"
msgstr ""
-#: 05080400.xhp
+#: 01100100.xhp
msgctxt ""
-"05080400.xhp\n"
-"tit\n"
+"01100100.xhp\n"
+"hd_id3156426\n"
+"7\n"
"help.text"
-msgid "Justify"
-msgstr "Rrafsho në të dy anët"
+msgid "Keywords"
+msgstr "Fjalët kyçe"
-#: 05080400.xhp
+#: 01100100.xhp
msgctxt ""
-"05080400.xhp\n"
-"hd_id3152937\n"
-"1\n"
+"01100100.xhp\n"
+"par_id3155338\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/shared/01/05080400.xhp\" name=\"Justify\">Justify</link>"
+msgid "<ahelp hid=\"sfx/ui/descriptioninfopage/keywords\">Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons.</ahelp>"
msgstr ""
-#: 05080400.xhp
+#: 01100100.xhp
msgctxt ""
-"05080400.xhp\n"
-"par_id3146856\n"
-"2\n"
+"01100100.xhp\n"
+"hd_id3148620\n"
+"9\n"
"help.text"
-msgid "<variable id=\"blocktext\"><ahelp hid=\".uno:JustifyPara\">Aligns the selected paragraph(s) to the left and the right page margins. If you want, you can also specify the alignment options for the last line of a paragraph by choosing <emph>Format - Paragraph - Alignment</emph>.</ahelp></variable>"
+msgid "Comments"
+msgstr "Komentet"
+
+#: 01100100.xhp
+msgctxt ""
+"01100100.xhp\n"
+"par_id3155391\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"sfx/ui/descriptioninfopage/comments\">Enter comments to help identify the document.</ahelp>"
msgstr ""
-#: 05340500.xhp
+#: 01100200.xhp
msgctxt ""
-"05340500.xhp\n"
+"01100200.xhp\n"
"tit\n"
"help.text"
-msgid "Hide Columns"
-msgstr "Fshehi Kolonat"
+msgid "General"
+msgstr "Të përgjithshme"
-#: 05340500.xhp
+#: 01100200.xhp
msgctxt ""
-"05340500.xhp\n"
-"hd_id3148882\n"
+"01100200.xhp\n"
+"bm_id3149955\n"
+"help.text"
+msgid "<bookmark_value>version numbers of documents</bookmark_value> <bookmark_value>documents; version numbers</bookmark_value> <bookmark_value>files; version numbers</bookmark_value> <bookmark_value>editing time of documents</bookmark_value> <bookmark_value>documents; editing time</bookmark_value>"
+msgstr ""
+
+#: 01100200.xhp
+msgctxt ""
+"01100200.xhp\n"
+"hd_id3148668\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340500.xhp\" name=\"Hide Columns\">Hide Columns</link>"
+msgid "<link href=\"text/shared/01/01100200.xhp\" name=\"General\">General</link>"
msgstr ""
-#: 05340500.xhp
+#: 01100200.xhp
msgctxt ""
-"05340500.xhp\n"
-"par_id3155620\n"
+"01100200.xhp\n"
+"par_id3154863\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Hides the selected column(s). To display hidden columns, right-click any column header, and then choose <emph>Show Columns</emph>.</ahelp>"
+msgid "<ahelp hid=\"sfx/ui/documentinfopage/DocumentInfoPage\">Contains basic information about the current file.</ahelp>"
msgstr ""
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"tit\n"
+"01100200.xhp\n"
+"hd_id3149999\n"
+"3\n"
"help.text"
-msgid "Line Styles"
-msgstr "Stilet e grafikave"
+msgid "File"
+msgstr "Fajlli"
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3148919\n"
-"1\n"
+"01100200.xhp\n"
+"par_id3153114\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/shared/01/05200200.xhp\" name=\"Line Styles\">Line Styles</link>"
+msgid "<ahelp hid=\"sfx/ui/documentinfopage/nameed\">Displays the file name.</ahelp>"
msgstr ""
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3150146\n"
-"2\n"
+"01100200.xhp\n"
+"hd_id3156136\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"HID_LINE_DEF\">Edit or create dashed or dotted line styles.</ahelp>"
-msgstr ""
+msgid "Type:"
+msgstr "Tipi:"
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3147617\n"
-"3\n"
+"01100200.xhp\n"
+"par_id3155552\n"
+"20\n"
"help.text"
-msgid "Properties"
-msgstr "Vetitë"
+msgid "Displays the file type for the current document."
+msgstr ""
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3146873\n"
-"15\n"
+"01100200.xhp\n"
+"hd_id3145314\n"
+"18\n"
"help.text"
-msgid "Line style"
-msgstr "Stili i linjës"
+msgid "Location:"
+msgstr "Lokacioni:"
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3146807\n"
-"16\n"
+"01100200.xhp\n"
+"par_id3150506\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_LINE_DEF_LB_LINESTYLES\">Select the style of line that you want to create.</ahelp>"
+msgid "Displays the path and the name of the directory where the file is stored."
msgstr ""
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3149948\n"
-"5\n"
+"01100200.xhp\n"
+"hd_id3155892\n"
+"19\n"
"help.text"
-msgid "Type"
-msgstr "Tipi"
+msgid "Size:"
+msgstr "Madhësia:"
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3149031\n"
-"6\n"
+"01100200.xhp\n"
+"par_id3153311\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_LINE_DEF_LB_TYPE_2\">Select the combination of dashes and dots that you want.</ahelp>"
+msgid "Displays the size of the current document in bytes."
msgstr ""
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3148731\n"
+"01100200.xhp\n"
+"hd_id3149178\n"
"7\n"
"help.text"
-msgid "Number"
-msgstr "Numri"
+msgid "Created:"
+msgstr "Krijuar:"
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3155351\n"
+"01100200.xhp\n"
+"par_id3153748\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXPAGE_LINE_DEF_NUM_FLD_2\">Enter the number of times that you want a dot or a dash to appear in a sequence.</ahelp>"
+msgid "Displays the date and time and author when the file was first saved."
msgstr ""
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3154422\n"
+"01100200.xhp\n"
+"hd_id3149182\n"
"9\n"
"help.text"
-msgid "Length"
-msgstr "Gjatësi"
+msgid "Modified:"
+msgstr "Modifikuar:"
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3149640\n"
+"01100200.xhp\n"
+"par_id3150355\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_LINE_DEF_MTR_FLD_LENGTH_2\">Enter the length of the dash.</ahelp>"
+msgid "Displays the date and time and author when the file was last saved in a $[officename] file format."
msgstr ""
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3093440\n"
-"11\n"
+"01100200.xhp\n"
+"par_idN106C5\n"
"help.text"
-msgid "Spacing"
-msgstr "Hapësira"
+msgid "Digitally signed:"
+msgstr "Me nënshkrim digjital"
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3147834\n"
-"12\n"
+"01100200.xhp\n"
+"par_idN106C9\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_LINE_DEF_MTR_FLD_DISTANCE\">Enter the amount of space that you want to leave between dots or dashes.</ahelp>"
+msgid "Displays the date and the time when the file was last signed as well as the name of the author who signed the document."
msgstr ""
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3155805\n"
-"13\n"
+"01100200.xhp\n"
+"par_idN106CC\n"
"help.text"
-msgid "Fit to line width"
-msgstr "Fshij deri Fillim të Rreshtit"
+msgid "Digital Signature"
+msgstr "Nënshkrimi digjital"
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3147291\n"
-"14\n"
+"01100200.xhp\n"
+"par_idN106D0\n"
"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_LINE_DEF_CBX_SYNCHRONIZE\">Automatically adjusts the entries relative to the length of the line.</ahelp>"
+msgid "Opens the <link href=\"text/shared/01/digitalsignatures.xhp\">Digital Signatures</link> dialog where you can manage digital signatures for the current document."
msgstr ""
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3155355\n"
-"17\n"
+"01100200.xhp\n"
+"hd_id3156346\n"
+"11\n"
"help.text"
-msgid "Add"
-msgstr "Shto"
+msgid "Last printed:"
+msgstr "Shtypja e fundit:"
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3149827\n"
-"18\n"
+"01100200.xhp\n"
+"par_id3152780\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXPAGE_LINE_DEF_BTN_ADD\">Creates a new line style using the current settings.</ahelp>"
+msgid "Displays the date and time and user name when the file was last printed."
msgstr ""
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3155338\n"
-"19\n"
+"01100200.xhp\n"
+"hd_id3153252\n"
+"15\n"
"help.text"
-msgid "Name"
-msgstr "Emri"
+msgid "Revision number:"
+msgstr "Numri i regjistrimit"
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3153681\n"
-"20\n"
+"01100200.xhp\n"
+"par_id3149955\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\"\">Enter a name.</ahelp>"
+msgid "Displays the number of times that the file has been saved."
msgstr ""
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3155893\n"
-"21\n"
+"01100200.xhp\n"
+"hd_id3155342\n"
+"13\n"
"help.text"
-msgid "Modify"
-msgstr "Modifiko"
+msgid "Editing time:"
+msgstr "Koha totale e editimit:"
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3157863\n"
-"22\n"
+"01100200.xhp\n"
+"par_id3149795\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXPAGE_LINE_DEF_BTN_MODIFY\">Updates the selected line style using the current settings. To change the name of the selected line style, enter a new name when prompted.</ahelp>"
+msgid "Displays the amount of time that the file has been open for editing since the file was created. The editing time is updated when you save the file."
msgstr ""
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3147275\n"
-"23\n"
+"01100200.xhp\n"
+"hd_id3154810\n"
+"33\n"
"help.text"
-msgid "Load line style table"
-msgstr ""
+msgid "Apply User Data"
+msgstr "~Zbato të dhënat e shfrytëzuesit"
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3154749\n"
-"24\n"
+"01100200.xhp\n"
+"par_id3143271\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\"SVX_IMAGEBUTTON_RID_SVXPAGE_LINE_DEF_BTN_LOAD\">Imports a list of line styles.</ahelp>"
+msgid "<ahelp hid=\"sfx/ui/documentinfopage/userdatacb\">Saves the user's full name with the file. You can edit the name by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - User Data</emph>.</ahelp>"
msgstr ""
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"hd_id3148642\n"
-"25\n"
+"01100200.xhp\n"
+"hd_id3154046\n"
+"35\n"
"help.text"
-msgid "Save line style table"
-msgstr ""
+msgid "Delete"
+msgstr "Fshije"
-#: 05200200.xhp
+#: 01100200.xhp
msgctxt ""
-"05200200.xhp\n"
-"par_id3155449\n"
-"26\n"
+"01100200.xhp\n"
+"par_id3152349\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\"SVX_IMAGEBUTTON_RID_SVXPAGE_LINE_DEF_BTN_SAVE\">Saves the current list of line styles, so that you can load it again later.</ahelp>"
+msgid "<ahelp hid=\"sfx/ui/documentinfopage/reset\">Resets the editing time to zero, the creation date to the current date and time, and the version number to 1. The modification and printing dates are also deleted.</ahelp>"
msgstr ""
-#: 05100000.xhp
+#: 01100200.xhp
msgctxt ""
-"05100000.xhp\n"
-"tit\n"
+"01100200.xhp\n"
+"hd_id3149576\n"
+"5\n"
"help.text"
-msgid "Size"
-msgstr "Madhësia"
+msgid "Template:"
+msgstr "Shablloni:"
-#: 05100000.xhp
+#: 01100200.xhp
msgctxt ""
-"05100000.xhp\n"
-"bm_id3153391\n"
+"01100200.xhp\n"
+"par_id3147530\n"
+"6\n"
"help.text"
-msgid "<bookmark_value>text; font sizes</bookmark_value><bookmark_value>font sizes; text</bookmark_value>"
+msgid "Displays the template that was used to create the file."
msgstr ""
-#: 05100000.xhp
+#: 01100300.xhp
msgctxt ""
-"05100000.xhp\n"
-"hd_id3153391\n"
+"01100300.xhp\n"
+"tit\n"
+"help.text"
+msgid "Custom Properties"
+msgstr "Vetitë e kornizës"
+
+#: 01100300.xhp
+msgctxt ""
+"01100300.xhp\n"
+"hd_id3155069\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100000.xhp\" name=\"Size\">Size</link>"
+msgid "<link href=\"text/shared/01/01100300.xhp\" name=\"Custom Properties\">Custom Properties</link>"
msgstr ""
-#: 05100000.xhp
+#: 01100300.xhp
msgctxt ""
-"05100000.xhp\n"
-"par_id3146856\n"
-"2\n"
+"01100300.xhp\n"
+"par_id3155934\n"
+"9\n"
"help.text"
-msgid "Set the font size for the selected text."
+msgid "<ahelp hid=\"sfx2/ui/custominfopage/CustomInfoPage\">Allows you to assign custom information fields to your document.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01100300.xhp
msgctxt ""
-"05020301.xhp\n"
-"tit\n"
+"01100300.xhp\n"
+"hd_id3151234\n"
+"2\n"
"help.text"
-msgid "Number Format Codes"
-msgstr "Edito formatin e numri"
+msgid "Properties"
+msgstr "Vetitë"
-#: 05020301.xhp
+#: 01100300.xhp
msgctxt ""
-"05020301.xhp\n"
-"bm_id3153514\n"
+"01100300.xhp\n"
+"par_id3152551\n"
+"3\n"
"help.text"
-msgid "<bookmark_value>format codes; numbers</bookmark_value><bookmark_value>conditions; in number formats</bookmark_value><bookmark_value>number formats; codes</bookmark_value><bookmark_value>currency formats</bookmark_value><bookmark_value>formats;of currencies/date/time</bookmark_value><bookmark_value>numbers; date, time and currency formats</bookmark_value><bookmark_value>Euro; currency formats</bookmark_value><bookmark_value>date formats</bookmark_value><bookmark_value>times, formats</bookmark_value>"
+msgid "<ahelp hid=\"sfx2/ui/custominfopage/properties\">Enter your custom contents. You can change the name, type, and contents of each row. You can add or remove rows. The items will be exported as metadata to other file formats.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01100300.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3153514\n"
-"1\n"
+"01100300.xhp\n"
+"hd_id0811200812071796\n"
"help.text"
-msgid "<variable id=\"zahlenformatcodes\"><link href=\"text/shared/01/05020301.xhp\" name=\"Number Format Codes\">Number Format Codes</link></variable>"
-msgstr ""
+msgid "Add"
+msgstr "Shto"
-#: 05020301.xhp
+#: 01100300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150467\n"
-"88\n"
+"01100300.xhp\n"
+"par_id0811200812071785\n"
"help.text"
-msgid "Number format codes can consist of up to three sections separated by a semicolon (;)."
+msgid "<ahelp hid=\".\">Click to add a new row to the Properties list.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150146\n"
-"108\n"
+"01100400.xhp\n"
+"tit\n"
"help.text"
-msgid "In a number format code with two sections, the first section applies to positive values and zero, and the second section applies to negative values."
-msgstr ""
+msgid "Statistics"
+msgstr "Statistikat"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3158442\n"
-"109\n"
+"01100400.xhp\n"
+"bm_id1472518\n"
"help.text"
-msgid "In a number format code with three sections, the first section applies to positive values, the second section to negative values, and the third section to the value zero."
+msgid "<bookmark_value>number of pages</bookmark_value><bookmark_value>documents;number of pages/tables/sheets</bookmark_value><bookmark_value>number of tables</bookmark_value><bookmark_value>number of sheets</bookmark_value><bookmark_value>cells;number of</bookmark_value><bookmark_value>pictures;number of</bookmark_value><bookmark_value>OLE objects;number of</bookmark_value>"
msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155069\n"
-"110\n"
+"01100400.xhp\n"
+"hd_id3149962\n"
+"1\n"
"help.text"
-msgid "You can also assign conditions to the three sections, so that the format is only applied if a condition is met."
+msgid "<link href=\"text/shared/01/01100400.xhp\" name=\"Statistics\">Statistics</link>"
msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3151262\n"
-"229\n"
+"01100400.xhp\n"
+"par_id3156045\n"
+"2\n"
"help.text"
-msgid "Decimal Places and Significant Digits"
+msgid "<ahelp hid=\"modules/swriter/ui/statisticsinfopage/StatisticsInfoPage\">Displays statistics for the current file.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153624\n"
-"3\n"
+"01100400.xhp\n"
+"par_id3156324\n"
+"36\n"
"help.text"
-msgid "Use zero (0) or the number sign (#) as placeholders in your number format code to represent numbers. The (#) only displays significant digits, while the (0) displays zeroes if there are fewer digits in the number than in the number format."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Some statistic values can be used as <link href=\"text/swriter/02/14020000.xhp\" name=\"variables in formulas\">variables in formulas</link>. </caseinline></switchinline>"
msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153323\n"
-"107\n"
+"01100400.xhp\n"
+"hd_id3153255\n"
+"3\n"
"help.text"
-msgid "Use question marks (?) to represent the number of digits to include in the numerator and the denominator of a fraction. Fractions that do not fit the pattern that you define are displayed as floating point numbers."
-msgstr ""
+msgid "Number of Pages:"
+msgstr "Numri i faqeve:"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148440\n"
+"01100400.xhp\n"
+"par_id3154230\n"
"4\n"
"help.text"
-msgid "If a number contains more digits to the right of the decimal delimiter than there are placeholders in the format, the number is rounded accordingly. If a number contains more digits to the left of the decimal delimiter than there are placeholders in the format, the entire number is displayed. Use the following list as a guide for using placeholders when you create a number format code:"
-msgstr ""
+msgid "Number of pages in the file."
+msgstr "Shkronjë e pavlefshme në numër"
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150902\n"
-"86\n"
+"01100400.xhp\n"
+"hd_id3156027\n"
+"5\n"
"help.text"
-msgid "Placeholders"
-msgstr "Vendmbajtëset"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Tables: </caseinline><caseinline select=\"CALC\">Number of Sheets: </caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3157896\n"
-"87\n"
+"01100400.xhp\n"
+"par_id3153527\n"
+"6\n"
"help.text"
-msgid "Explanation"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of tables in the file. </caseinline><caseinline select=\"CALC\">Number of sheets in the file. </caseinline></switchinline> This statistic does not include tables that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects."
msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152801\n"
-"5\n"
+"01100400.xhp\n"
+"hd_id3153311\n"
+"30\n"
"help.text"
-msgid "#"
-msgstr "#"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of Cells: </caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145090\n"
-"6\n"
+"01100400.xhp\n"
+"par_id3156114\n"
+"31\n"
"help.text"
-msgid "Does not display extra zeros."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of cells with content in the file. </caseinline></switchinline>"
msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147088\n"
+"01100400.xhp\n"
+"hd_id3147210\n"
"7\n"
"help.text"
-msgid "0 (Zero)"
-msgstr "Vlerat zero"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Graphics: </caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150774\n"
+"01100400.xhp\n"
+"par_id3166411\n"
"8\n"
"help.text"
-msgid "Displays extra zeros if the number has less places than zeros in the format."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of graphics in the file. This statistic does not include graphics that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects. </caseinline></switchinline>"
msgstr ""
-#: 05020301.xhp
-msgctxt ""
-"05020301.xhp\n"
-"par_idN1087E\n"
-"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
-
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149182\n"
+"01100400.xhp\n"
+"hd_id3147618\n"
"9\n"
"help.text"
-msgid "Number Format"
-msgstr "Formati i numrit"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of OLE Objects: </caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154749\n"
+"01100400.xhp\n"
+"par_id3149820\n"
"10\n"
"help.text"
-msgid "Format Code"
-msgstr "Kodi i karakterit"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects in the file, including tables and graphics that were inserted as OLE objects. </caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148538\n"
+"01100400.xhp\n"
+"hd_id3153665\n"
"11\n"
"help.text"
-msgid "3456.78 as 3456.8"
-msgstr "Eksporto si PDF..."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Paragraphs: </caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150355\n"
+"01100400.xhp\n"
+"par_id3156156\n"
"12\n"
"help.text"
-msgid "####.#"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of paragraphs (including blank paragraphs) in the file. </caseinline></switchinline>"
msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154142\n"
+"01100400.xhp\n"
+"hd_id3155261\n"
"13\n"
"help.text"
-msgid "9.9 as 9.900"
-msgstr "Si Objekt"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Words: </caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3159256\n"
+"01100400.xhp\n"
+"par_id3147402\n"
"14\n"
"help.text"
-msgid "#.000"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of words (including words consisting of a single character) in the file. </caseinline></switchinline>"
msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147077\n"
+"01100400.xhp\n"
+"hd_id3150466\n"
"15\n"
"help.text"
-msgid "13 as 13.0 and 1234.567 as 1234.57"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Characters: </caseinline></switchinline>"
msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155388\n"
+"01100400.xhp\n"
+"par_id3149294\n"
"16\n"
"help.text"
-msgid "#.0#"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of characters (including spaces) in the file. Non-printable characters are not included. </caseinline></switchinline>"
msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149578\n"
-"17\n"
+"01100400.xhp\n"
+"hd_id3148947\n"
+"32\n"
"help.text"
-msgid "5.75 as 5 3/4 and 6.3 as 6 3/10"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Lines: </caseinline></switchinline>"
msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145315\n"
-"18\n"
+"01100400.xhp\n"
+"par_id3149650\n"
+"33\n"
"help.text"
-msgid "# ???/???"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of lines in the file. </caseinline></switchinline>"
msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156152\n"
-"19\n"
+"01100400.xhp\n"
+"hd_id3153525\n"
+"34\n"
"help.text"
-msgid ".5 as 0.5"
-msgstr "Si Objekt"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Update </caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01100400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149762\n"
-"20\n"
+"01100400.xhp\n"
+"par_id3148981\n"
+"35\n"
"help.text"
-msgid "0.##"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"modules/swriter/ui/statisticsinfopage/update\">Updates the statistics.</ahelp></caseinline></switchinline>"
msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3149276\n"
-"230\n"
+"01100600.xhp\n"
+"tit\n"
"help.text"
-msgid "Thousands Separator"
-msgstr "Ndarës i mijësheve"
+msgid "Security"
+msgstr "Siguri"
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154380\n"
-"21\n"
+"01100600.xhp\n"
+"bm_id1472519\n"
"help.text"
-msgid "Depending on your language setting, you can use a comma or a period as a thousands separator. You can also use the separator to reduce the size of the number that is displayed by a multiple of 1000."
+msgid "<bookmark_value>password as document property</bookmark_value><bookmark_value>file sharing options for current document</bookmark_value><bookmark_value>read-only documents;opening documents as</bookmark_value><bookmark_value>saving;with password by default</bookmark_value><bookmark_value>user data;removing when saving</bookmark_value>"
msgstr ""
-#: 05020301.xhp
-msgctxt ""
-"05020301.xhp\n"
-"par_id3154905\n"
-"22\n"
-"help.text"
-msgid "Number Format"
-msgstr "Formati i numrit"
-
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150822\n"
-"23\n"
+"01100600.xhp\n"
+"hd_id3149969\n"
"help.text"
-msgid "Format Code"
-msgstr "Kodi i karakterit"
+msgid "<link href=\"text/shared/01/01100600.xhp\" name=\"Security\">Security</link>"
+msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147264\n"
-"24\n"
+"01100600.xhp\n"
+"par_id3156049\n"
"help.text"
-msgid "15000 as 15,000"
+msgid "<ahelp hid=\".\">Sets password options for the current document.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151223\n"
-"25\n"
+"01100600.xhp\n"
+"par_idN106AA\n"
"help.text"
-msgid "#,###"
+msgid "Open file read-only"
msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154935\n"
-"26\n"
+"01100600.xhp\n"
+"par_idN106AE\n"
"help.text"
-msgid "16000 as 16"
-msgstr "Eksporto si PDF..."
+msgid "<ahelp hid=\".\">Select to allow this document to be opened in read-only mode only.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153961\n"
-"27\n"
+"01100600.xhp\n"
+"par_idN106B1\n"
"help.text"
-msgid "#,"
+msgid "This file sharing option protects the document against accidental changes. It is still possible to edit a copy of the document and save that copy with the same name as the original."
msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3154836\n"
-"79\n"
+"01100600.xhp\n"
+"par_idN106B4\n"
"help.text"
-msgid "Including Text in Number Format Codes"
-msgstr "Këmben një numër në tekst në format valute."
+msgid "Record changes"
+msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3150398\n"
-"231\n"
+"01100600.xhp\n"
+"par_idN106B8\n"
"help.text"
-msgid "Text and Numbers"
-msgstr "Teksti Perëndimor dhe pikëzimi Aziatik"
+msgid "<ahelp hid=\".\">Select to enable recording changes. This is the same as <emph>Edit - Changes - Record</emph>.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154224\n"
-"80\n"
+"01100600.xhp\n"
+"par_idN106C9\n"
"help.text"
-msgid "To include text in a number format that is applied to a cell containing numbers, place a double quotation mark (\") in front of and behind the text, or a backslash (\\) before a single character. For example, enter <emph>#.# \"meters\"</emph> to display \"3.5 meters\" or <emph>#.# \\m</emph> to display \"3.5 m\"."
+msgid "To protect the recording state with a password, click <emph>Protect</emph> and enter a password. Other users of this document can apply their changes, but they cannot disable change recording without knowing the password."
msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3148979\n"
-"232\n"
+"01100600.xhp\n"
+"par_idN106D0\n"
"help.text"
-msgid "Text and Text"
-msgstr "DHE logjike"
+msgid "Protect / Unprotect"
+msgstr ""
-#: 05020301.xhp
+#: 01100600.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153338\n"
-"82\n"
+"01100600.xhp\n"
+"par_idN106D4\n"
"help.text"
-msgid "To include text in a number format that is applied to a cell that might contain text, enclose the text by double quotation marks (\" \"), and then add an at sign (@). For example, enter <emph>\"Total for \"@</emph> to display \"Total for December\"."
+msgid "<ahelp hid=\"cui/ui/securityinfopage/protect\">Protects the change recording state with a password. If change recording is protected for the current document, the button is named <emph>Unprotect</emph>. Click <emph>Unprotect</emph> and type the correct password to disable the protection.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01110000.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3154330\n"
-"233\n"
+"01110000.xhp\n"
+"tit\n"
"help.text"
-msgid "Spaces"
-msgstr "Tabet dhe hapësirat"
+msgid "Templates"
+msgstr "Shabllonet"
-#: 05020301.xhp
+#: 01110000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156294\n"
-"81\n"
+"01110000.xhp\n"
+"hd_id3155577\n"
+"1\n"
"help.text"
-msgid "To use a character to define the width of a space in a number format, type an underscore ( _ ) followed by the character. The width of the space varies according to the width of the character that you choose. For example, <emph>_M</emph> creates a wider space than <emph>_i</emph>."
+msgid "<link href=\"text/shared/01/01110000.xhp\" name=\"Templates\">Templates</link>"
msgstr ""
-#: 05020301.xhp
+#: 01110000.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3155994\n"
-"234\n"
+"01110000.xhp\n"
+"par_id3154894\n"
+"2\n"
"help.text"
-msgid "Color"
-msgstr "Ngjyra"
+msgid "<ahelp hid=\".\">Lets you organize and edit your templates, as well as save the current file as a template.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01110000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156423\n"
-"28\n"
+"01110000.xhp\n"
+"hd_id3149893\n"
+"3\n"
"help.text"
-msgid "To set the color of a section of a number format code, insert one of the following color names in square brackets [ ]:"
+msgid "<link href=\"text/shared/01/01110101.xhp\" name=\"Address Book Source\">Address Book Source</link>"
msgstr ""
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154630\n"
-"29\n"
+"01110101.xhp\n"
+"tit\n"
"help.text"
-msgid "CYAN"
-msgstr "Cian"
+msgid "Templates: Address Book Assignment"
+msgstr "Shabllonet: Caktimi i Adresarit"
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148676\n"
-"30\n"
+"01110101.xhp\n"
+"hd_id3156411\n"
+"1\n"
"help.text"
-msgid "GREEN"
-msgstr "Gjelbërt"
+msgid "Templates: Address Book Assignment"
+msgstr "Shabllonet: Caktimi i Adresarit"
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154123\n"
-"31\n"
+"01110101.xhp\n"
+"par_id3147576\n"
+"2\n"
"help.text"
-msgid "BLACK"
-msgstr "Zi"
+msgid "<ahelp hid=\".uno:AddressBookSource\">Edit the field assignments and the data source for your address book.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149167\n"
-"32\n"
+"01110101.xhp\n"
+"hd_id3149399\n"
+"3\n"
"help.text"
-msgid "BLUE"
-msgstr "Kaltër"
+msgid "Address Book Source"
+msgstr "Burimi i adresarit"
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3158407\n"
-"33\n"
+"01110101.xhp\n"
+"par_id3152996\n"
+"4\n"
"help.text"
-msgid "MAGENTA"
-msgstr "Magjenta"
+msgid "Set the data source and data table for your address book."
+msgstr ""
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149560\n"
-"34\n"
+"01110101.xhp\n"
+"hd_id3147654\n"
+"5\n"
"help.text"
-msgid "RED"
-msgstr "Kuq"
+msgid "Data Source"
+msgstr "Burim i të Dhënave"
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147502\n"
-"35\n"
+"01110101.xhp\n"
+"par_id3154306\n"
+"6\n"
"help.text"
-msgid "WHITE"
-msgstr "Bardhë"
+msgid "<ahelp hid=\"svt/ui/addresstemplatedialog/datasource\">Select the data source for your address book.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153368\n"
-"36\n"
+"01110101.xhp\n"
+"hd_id3145315\n"
+"7\n"
"help.text"
-msgid "YELLOW"
-msgstr "Verdhë"
+msgid "Table"
+msgstr "Tabelë"
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3147435\n"
-"111\n"
+"01110101.xhp\n"
+"par_id3149164\n"
+"8\n"
"help.text"
-msgid "Conditions"
-msgstr "Duke vlerësuar kushtet e lansimit"
+msgid "<ahelp hid=\"svt/ui/addresstemplatedialog/datatable\">Select the data table for your address book.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3148575\n"
-"235\n"
+"01110101.xhp\n"
+"hd_id3145119\n"
+"9\n"
"help.text"
-msgid "Conditional Brackets"
-msgstr "Kllapa të vogla"
+msgid "Configure"
+msgstr "Konfiguro"
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155312\n"
-"112\n"
+"01110101.xhp\n"
+"par_id3150771\n"
+"10\n"
"help.text"
-msgid "You can define a number format so that it only applies when the condition that you specify is met. Conditions are enclosed by square brackets [ ]."
+msgid "<ahelp hid=\"svt/ui/addresstemplatedialog/admin\">Add a new data source to the <emph>Address Book Source </emph>list.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3159179\n"
-"115\n"
+"01110101.xhp\n"
+"hd_id3155629\n"
+"11\n"
"help.text"
-msgid "You can use any combination of numbers and the <, <=, >, >=, = and <> operators."
-msgstr ""
+msgid "Field assignment"
+msgstr "Caktim i fushës"
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3159196\n"
-"236\n"
+"01110101.xhp\n"
+"par_id3153320\n"
+"12\n"
"help.text"
-msgid "For example, if you want to apply different colors to different temperature data, enter:"
+msgid "Define the field assignments for your address book."
msgstr ""
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150872\n"
-"113\n"
+"01110101.xhp\n"
+"hd_id3155830\n"
+"13\n"
"help.text"
-msgid "[BLUE][<0]#,0 \"°C\";[RED][>30]#,0 \"°C\";[BLACK]#,0 \"°C\""
-msgstr ""
+msgid "(Field name)"
+msgstr "Emri i fushës"
-#: 05020301.xhp
+#: 01110101.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3157870\n"
-"114\n"
+"01110101.xhp\n"
+"par_id3154143\n"
+"14\n"
"help.text"
-msgid "All temperatures below zero are blue, temperatures between 0 and 30 °C are black, and temperatures higher than 30 °C are red."
+msgid "<ahelp hid=\"svt/ui/addresstemplatedialog/assign\">Select the field in the data table that corresponds to the address book entry.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3154833\n"
-"90\n"
+"01110300.xhp\n"
+"tit\n"
"help.text"
-msgid "Positive and Negative Numbers"
+msgid "Saving (Templates)"
+msgstr "Shabllonet e mia"
+
+#: 01110300.xhp
+msgctxt ""
+"01110300.xhp\n"
+"hd_id3160463\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/01110300.xhp\" name=\"Saving (Templates)\">Saving (Templates)</link>"
msgstr ""
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147295\n"
-"91\n"
+"01110300.xhp\n"
+"par_id3157898\n"
+"2\n"
"help.text"
-msgid "To define a number format that adds a different text to a number depending on if the number is positive, negative, or equal to zero, use the following format:"
+msgid "<ahelp hid=\".uno:SaveAsTemplate\">Saves the current document as a template.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153727\n"
-"92\n"
+"01110300.xhp\n"
+"hd_id3147226\n"
+"4\n"
"help.text"
-msgid "\"plus\" 0;\"minus\" 0;\"null\" 0"
-msgstr "Përmbajtja e fushës është ~NULL"
+msgid "New Template"
+msgstr "Shabllon i ri"
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3149260\n"
-"83\n"
+"01110300.xhp\n"
+"par_id3147043\n"
+"5\n"
"help.text"
-msgid "Percentages and Scientific Notation"
+msgid "<ahelp hid=\"SFX2:EDIT:DLG_DOC_TEMPLATE:ED_NAME\">Enter a name for the template.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3147218\n"
-"237\n"
+"01110300.xhp\n"
+"hd_id3147571\n"
+"6\n"
"help.text"
-msgid "Percentages"
-msgstr ""
+msgid "Templates"
+msgstr "Shabllonet"
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151168\n"
-"84\n"
+"01110300.xhp\n"
+"par_id3150774\n"
+"7\n"
"help.text"
-msgid "To display numbers as percentages, add the percent sign (%) to the number format."
+msgid "Lists templates and template categories."
msgstr ""
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3156005\n"
-"89\n"
+"01110300.xhp\n"
+"hd_id3143268\n"
+"8\n"
"help.text"
-msgid "Scientific Notation"
-msgstr ""
+msgid "Categories"
+msgstr "Kategoritë"
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146923\n"
-"85\n"
+"01110300.xhp\n"
+"par_id3159233\n"
+"9\n"
"help.text"
-msgid "Scientific notation lets you write very large numbers or very small fractions in a compact form. For example, in scientific notation, 650000 is written as 6.5 x 10^5, and 0.000065 as 6.5 x 10^-5. In <item type=\"productname\">%PRODUCTNAME</item>, these numbers are written as 6.5E+5 and 6.5E-5, respectively. To create a number format that displays numbers using scientific notation, enter a # or 0, and then one of the following codes E-, E+, e- or e+."
+msgid "<ahelp hid=\"SFX2:LISTBOX:DLG_DOC_TEMPLATE:LB_SECTION\">Select a category in which to save the new template.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3159080\n"
-"98\n"
+"01110300.xhp\n"
+"hd_id3150693\n"
+"10\n"
"help.text"
-msgid "Number Format Codes of Currency Formats"
-msgstr "Këmben një numër në tekst në format valute."
+msgid "Templates"
+msgstr "Shabllonet"
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147318\n"
-"99\n"
+"01110300.xhp\n"
+"par_id3149398\n"
+"11\n"
"help.text"
-msgid "The default currency format for the cells in your spreadsheet is determined by the regional setting of your operating system. If you want, you can apply a custom currency symbol to a cell. For example, enter #,##0.00 € to display 4.50 € (Euros)."
+msgid "<ahelp hid=\"SFX2:LISTBOX:DLG_DOC_TEMPLATE:LB_STYLESHEETS\">Lists the available template categories.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150032\n"
-"167\n"
+"01110300.xhp\n"
+"hd_id3163803\n"
+"12\n"
"help.text"
-msgid "You can also specify the locale setting for the currency by entering the locale code for the country after the symbol. For example, [$€-407] represents Euros in Germany. To view the locale code for a country, select the country in the <emph>Language</emph> list on the <emph>Numbers</emph> tab of the <emph>Format Cells</emph> dialog."
-msgstr ""
+msgid "Edit"
+msgstr "Edito"
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3157309\n"
-"238\n"
+"01110300.xhp\n"
+"par_id3147242\n"
+"13\n"
"help.text"
-msgid "Date and Time Formats"
-msgstr "Fusha e datës dhe kohës"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_DOC_TEMPLATE:BT_EDIT\">Opens the selected template for editing.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3153740\n"
-"37\n"
+"01110300.xhp\n"
+"hd_id3156156\n"
+"14\n"
"help.text"
-msgid "Date Formats"
-msgstr "(Të gjitha formatet)"
+msgid "Organize"
+msgstr "Organizo..."
-#: 05020301.xhp
+#: 01110300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152791\n"
-"38\n"
+"01110300.xhp\n"
+"par_id3155419\n"
+"15\n"
"help.text"
-msgid "To display days, months and years, use the following number format codes."
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_DOC_TEMPLATE:BT_ORGANIZE\">Opens the <emph>Template Management</emph> dialog where you can organize or create new templates.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01110400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id610980\n"
+"01110400.xhp\n"
+"tit\n"
"help.text"
-msgid "Not all format codes give meaningful results for all languages."
-msgstr ""
+msgid "Edit"
+msgstr "Edito"
-#: 05020301.xhp
+#: 01110400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152376\n"
-"39\n"
+"01110400.xhp\n"
+"hd_id3150620\n"
+"1\n"
"help.text"
-msgid "Format"
-msgstr "Formati"
+msgid "<link href=\"text/shared/01/01110400.xhp\" name=\"Edit\">Edit</link>"
+msgstr ""
-#: 05020301.xhp
+#: 01110400.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3159130\n"
-"40\n"
+"01110400.xhp\n"
+"par_id3144415\n"
+"2\n"
"help.text"
-msgid "Format Code"
-msgstr "Kodi i karakterit"
+msgid "<ahelp hid=\".uno:OpenTemplate\">Opens a dialog where you can select a template for editing.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147380\n"
-"41\n"
+"01130000.xhp\n"
+"tit\n"
"help.text"
-msgid "Month as 3."
-msgstr "Si Objekt"
+msgid "Print"
+msgstr "Shtyp"
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146928\n"
-"42\n"
+"01130000.xhp\n"
+"bm_id3154621\n"
"help.text"
-msgid "M"
-msgstr "M"
+msgid "<bookmark_value>printing; documents</bookmark_value><bookmark_value>documents; printing</bookmark_value><bookmark_value>text documents; printing</bookmark_value><bookmark_value>spreadsheets; printing</bookmark_value><bookmark_value>presentations; print menu</bookmark_value><bookmark_value>drawings; printing</bookmark_value><bookmark_value>choosing printers</bookmark_value><bookmark_value>printers; choosing</bookmark_value><bookmark_value>print area selection</bookmark_value><bookmark_value>selecting; print areas</bookmark_value><bookmark_value>pages; selecting one to print</bookmark_value><bookmark_value>printing; selections</bookmark_value><bookmark_value>printing; copies</bookmark_value><bookmark_value>copies; printing</bookmark_value><bookmark_value>spoolfiles with Xprinter</bookmark_value>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145594\n"
-"43\n"
+"01130000.xhp\n"
+"hd_id3154621\n"
+"1\n"
"help.text"
-msgid "Month as 03."
-msgstr "Asia/Novosibirsk"
+msgid "Print"
+msgstr "Shtyp"
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153052\n"
-"44\n"
+"01130000.xhp\n"
+"par_id3146946\n"
+"2\n"
"help.text"
-msgid "MM"
-msgstr "0 mm"
+msgid "<variable id=\"druckentext\"><ahelp hid=\".uno:Print\">Prints the current document, selection, or the pages that you specify. You can also set the print options for the current document.</ahelp></variable> The printing options can vary according to the printer and the operating system that you use."
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145728\n"
-"45\n"
+"01130000.xhp\n"
+"par_id0818200912284853\n"
"help.text"
-msgid "Month as Jan-Dec"
+msgid "The Print dialog consists of three main parts: A preview with navigation buttons, several tab pages with control elements specific to the current document type, and the Print, Cancel, and Help buttons."
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151073\n"
-"46\n"
+"01130000.xhp\n"
+"par_id0818200901193992\n"
"help.text"
-msgid "MMM"
+msgid "If you just want to know how to print your document, click any of the following links."
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149909\n"
-"47\n"
+"01130000.xhp\n"
+"par_id0818200912531416\n"
"help.text"
-msgid "Month as January-December"
+msgid "<emph>Printing text documents:</emph>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155318\n"
-"48\n"
+"01130000.xhp\n"
+"par_id0818200912531487\n"
"help.text"
-msgid "MMMM"
+msgid "<emph>Printing spreadsheets:</emph>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151218\n"
-"116\n"
+"01130000.xhp\n"
+"par_id0818200912531410\n"
"help.text"
-msgid "First letter of Name of Month"
-msgstr "Emri/ Mbiemri/Inicialet"
+msgid "<emph>Printing presentations:</emph>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150420\n"
-"117\n"
+"01130000.xhp\n"
+"par_id0818200912531449\n"
"help.text"
-msgid "MMMMM"
+msgid "<emph>General printing:</emph>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154501\n"
-"49\n"
+"01130000.xhp\n"
+"par_id0818200912284952\n"
"help.text"
-msgid "Day as 2"
-msgstr "Si Objekt"
+msgid "The settings that you define in the Print dialog are valid only for the current print job that you start by clicking the Print button. If you want to change some options permanently, open Tools - Options - %PRODUCTNAME (application name) - Print."
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156181\n"
-"50\n"
+"01130000.xhp\n"
+"par_id3156080\n"
+"41\n"
"help.text"
-msgid "D"
-msgstr "DDE"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To set the default <item type=\"productname\">%PRODUCTNAME</item> printer options for text documents, choose <link href=\"text/shared/optionen/01040400.xhp\" name=\"Tools - Options - Writer - Print\"><emph>Tools - Options - %PRODUCTNAME Writer - Print</emph></link>.</caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146969\n"
-"51\n"
+"01130000.xhp\n"
+"par_idN1099E\n"
"help.text"
-msgid "Day as 02"
-msgstr "Asia/Yekaterinburg"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">To set the default <item type=\"productname\">%PRODUCTNAME</item> printer options for spreadsheet documents, choose <link href=\"text/shared/optionen/01060700.xhp\" name=\"Tools - Options - Calc - Print\"><emph>Tools - Options - %PRODUCTNAME Calc - Print</emph></link>.</caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156358\n"
-"52\n"
+"01130000.xhp\n"
+"par_idN109CD\n"
"help.text"
-msgid "DD"
-msgstr "DDE"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">To set the default <item type=\"productname\">%PRODUCTNAME</item>printer options for presentation documents, choose <link href=\"text/shared/optionen/01070400.xhp\" name=\"Tools - Options - Impress - Print\"><emph>Tools - Options - %PRODUCTNAME Impress - Print</emph></link>.</caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148495\n"
-"53\n"
+"01130000.xhp\n"
+"par_id0818200901194137\n"
"help.text"
-msgid "Day as Sun-Sat"
+msgid "Press Shift+F1 or choose <item type=\"menuitem\">Help - What's This?</item> and point to any control element in the Print dialog to see an extended help text."
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3161665\n"
-"54\n"
+"01130000.xhp\n"
+"hd_id0818200912284914\n"
"help.text"
-msgid "NN or DDD"
-msgstr "~Prano ose Refuzo..."
+msgid "Preview"
+msgstr "Shikim paraprak"
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154272\n"
-"118\n"
+"01130000.xhp\n"
+"par_id081820091228505\n"
"help.text"
-msgid "Day as Sunday to Saturday"
+msgid "The preview shows how each sheet of paper will look. You can browse through all sheets of paper with the buttons below the preview."
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145164\n"
-"119\n"
+"01130000.xhp\n"
+"hd_id0818200912285056\n"
"help.text"
-msgid "NNN or DDDD"
-msgstr "~Prano ose Refuzo..."
+msgid "General"
+msgstr "Të përgjithshme"
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146791\n"
-"55\n"
+"01130000.xhp\n"
+"par_id0818200912285064\n"
"help.text"
-msgid "Day followed by comma, as in \"Sunday,\""
+msgid "On the General tab page, you find the most important control elements for printing. You can define which contents of your document are to be printed. You can select the printer and open the printer settings dialog."
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146081\n"
-"56\n"
+"01130000.xhp\n"
+"par_id2\n"
"help.text"
-msgid "NNNN"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print colors and objects that are inserted to the background of the page (Format - Page - Background).</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156275\n"
-"57\n"
+"01130000.xhp\n"
+"par_id4\n"
"help.text"
-msgid "Year as 00-99"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the graphics and drawings or OLE objects of your text document are printed.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3143236\n"
-"58\n"
+"01130000.xhp\n"
+"par_id6\n"
"help.text"
-msgid "YY"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable this option to print text that is marked as hidden.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148408\n"
-"59\n"
+"01130000.xhp\n"
+"par_id8\n"
"help.text"
-msgid "Year as 1900-2078"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable this option to print text placeholders. Disable this option to leave the text placeholders blank in the printout.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151358\n"
-"60\n"
+"01130000.xhp\n"
+"par_id10\n"
"help.text"
-msgid "YYYY"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether the form control fields of the text document are printed.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153355\n"
-"96\n"
+"01130000.xhp\n"
+"par_id12\n"
"help.text"
-msgid "Calendar week"
-msgstr "CDE-Kalendar-Fajll"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to always print text in black.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150744\n"
-"97\n"
+"01130000.xhp\n"
+"par_id14\n"
"help.text"
-msgid "WW"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">If this option is enabled automatically inserted blank pages are printed. This is best if you are printing double-sided. For example, in a book, a \"chapter\" paragraph style has been set to always start with an odd numbered page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even numbered blank page. This option controls whether to print that even numbered page.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154302\n"
-"103\n"
+"01130000.xhp\n"
+"par_id16\n"
"help.text"
-msgid "Quarterly as Q1 to Q4"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify where to print comments (if any).</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3159266\n"
-"104\n"
+"01130000.xhp\n"
+"par_id18\n"
"help.text"
-msgid "Q"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify where to print comments (if any).</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147583\n"
-"105\n"
+"01130000.xhp\n"
+"par_id20\n"
"help.text"
-msgid "Quarterly as 1st quarter to 4th quarter"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether you want the name of the document to be included in the printout.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146918\n"
-"106\n"
+"01130000.xhp\n"
+"par_id22\n"
"help.text"
-msgid "QQ"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to include the contents of the Commands window at the bottom of the printout.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147534\n"
-"120\n"
+"01130000.xhp\n"
+"par_id24\n"
"help.text"
-msgid "Era on the Japanese Gengou calendar, single character (possible values are: M, T, S, H)"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Applies a thin border to the formula area in the printout.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151249\n"
-"121\n"
+"01130000.xhp\n"
+"par_id26\n"
"help.text"
-msgid "G"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints the formula without adjusting the current font size.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3163806\n"
-"122\n"
+"01130000.xhp\n"
+"par_id28\n"
"help.text"
-msgid "Era, abbreviation"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Adjusts the formula to the page format used in the printout.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155962\n"
-"123\n"
+"01130000.xhp\n"
+"par_id30\n"
"help.text"
-msgid "GG"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Reduces or enlarges the size of the printed formula by a specified factor.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151187\n"
-"124\n"
+"01130000.xhp\n"
+"par_id32\n"
"help.text"
-msgid "Era, full name"
-msgstr "Emri i plotë për përdoruesin e ri:"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Reduces or enlarges the size of the printed formula by a specified factor.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149568\n"
-"125\n"
+"01130000.xhp\n"
+"par_id34\n"
"help.text"
-msgid "GGG"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">If checked empty pages that have no cell contents or draw objects are not printed.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147344\n"
-"126\n"
+"01130000.xhp\n"
+"par_id36\n"
"help.text"
-msgid "Number of the year within an era, without a leading zero for single-digit years"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">For printers with multiple trays this option specifies whether the paper tray used is specified by the system settings of the printer.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147255\n"
-"127\n"
+"01130000.xhp\n"
+"par_id3149164\n"
+"25\n"
"help.text"
-msgid "E"
-msgstr "E"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints the entire document.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148487\n"
-"128\n"
+"01130000.xhp\n"
+"par_id3152944\n"
+"27\n"
"help.text"
-msgid "Number of the year within an era, with a leading zero for single-digit years"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints only the pages or slides that you specify in the <emph>Pages</emph> box.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150298\n"
-"129\n"
+"01130000.xhp\n"
+"par_id3150244\n"
+"30\n"
"help.text"
-msgid "EE or R"
-msgstr "OSE logjike"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints only the selected area(s) or object(s) in the current document.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152861\n"
-"138\n"
+"01130000.xhp\n"
+"par_id3146848\n"
+"28\n"
"help.text"
-msgid "Era, full name and year"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">To print a range of pages, use a format like 3-6. To print single pages, use a format like 7;9;11. You can print a combination of page ranges and single pages, by using a format like 3-6;8;10;12.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149926\n"
-"139\n"
+"01130000.xhp\n"
+"par_id3150772\n"
+"18\n"
"help.text"
-msgid "RR or GGGEE"
-msgstr "~Prano ose Refuzo..."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Prints to a file instead of to a printer.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811423518\n"
+"01130000.xhp\n"
+"par_id38\n"
"help.text"
-msgid "The above listed formatting codes work with your language version of %PRODUCTNAME. However, when you need to switch the locale of %PRODUCTNAME to another locale, you will need to know the formatting codes used in that other locale."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to not rely on the printer to create collated copies but create a print job for each copy instead.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811423556\n"
+"01130000.xhp\n"
+"par_id40\n"
"help.text"
-msgid "For example, if your software is set to an English locale, and you want to format a year with four digits, you enter YYYY as a formatting code. When you switch to a German locale, you must use JJJJ instead. The following table lists only the localized differences."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to print pages in reverse order.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563044\n"
+"01130000.xhp\n"
+"par_id3145069\n"
+"34\n"
"help.text"
-msgid "Locale"
-msgstr "Zgjidh lokalizimin:"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the number of copies that you want to print.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563137\n"
+"01130000.xhp\n"
+"par_id3150865\n"
+"36\n"
"help.text"
-msgid "Year"
-msgstr "Viti"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Preserves the page order of the original document.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563164\n"
+"01130000.xhp\n"
+"par_id3156113\n"
+"16\n"
"help.text"
-msgid "Month"
-msgstr "Muaj"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the printer properties dialog. The printer properties vary according to the printer that you select.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563128\n"
+"01130000.xhp\n"
+"par_id42\n"
"help.text"
-msgid "Day"
-msgstr "Dita"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Show/Hide detailed information of the selected printer.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563135\n"
+"01130000.xhp\n"
+"par_id3149511\n"
+"4\n"
"help.text"
-msgid "Hour"
-msgstr "ORA"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">The list box shows the installed printers. Click the printer to use for the current print job. Click the Printer details button to see some information about the selected printer. Click the Properties button to change some of the printer properties.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563289\n"
+"01130000.xhp\n"
+"par_id44\n"
"help.text"
-msgid "Day Of Week"
-msgstr "Dita e parw e periudhws"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify which pages to include in the output.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id100220081156322\n"
+"01130000.xhp\n"
+"par_id46\n"
"help.text"
-msgid "Era"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Brochure option to print the document in brochure format.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563233\n"
+"01130000.xhp\n"
+"par_id48\n"
"help.text"
-msgid "English - en"
-msgstr "Fundi i dokumentit"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select which pages of a brochure to print.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563243\n"
+"01130000.xhp\n"
+"par_id0818200904102910\n"
"help.text"
-msgid "and all not listed locales"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">For brochure printing, you can select a left-to-right order of pages or a right-to-left order.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563352\n"
+"01130000.xhp\n"
+"par_id50\n"
"help.text"
-msgid "Y"
-msgstr "Y"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Check to draw a border around each page.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563396\n"
+"01130000.xhp\n"
+"par_id52\n"
"help.text"
-msgid "M"
-msgstr "M"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select order in which pages are to be printed.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563385\n"
+"01130000.xhp\n"
+"par_id54\n"
"help.text"
-msgid "D"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the orientation of the paper.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563472\n"
+"01130000.xhp\n"
+"par_id56\n"
"help.text"
-msgid "H"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select margin between the printed pages and paper edge.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563430\n"
+"01130000.xhp\n"
+"par_id58\n"
"help.text"
-msgid "A"
-msgstr "A"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select margin between individual pages on each sheet of paper.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563488\n"
+"01130000.xhp\n"
+"par_id60\n"
"help.text"
-msgid "G"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select number of rows.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563484\n"
+"01130000.xhp\n"
+"par_id62\n"
"help.text"
-msgid "German - de"
-msgstr "Standard"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select number of columns.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563518\n"
+"01130000.xhp\n"
+"par_id64\n"
"help.text"
-msgid "J"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select how many pages to print per sheet of paper.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563735\n"
+"01130000.xhp\n"
+"par_id66\n"
"help.text"
-msgid "T"
-msgstr "T"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Print multiple pages per sheet of paper.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563823\n"
+"01130000.xhp\n"
+"par_id68\n"
"help.text"
-msgid "Netherlands - nl"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select which parts of the document should be printed.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563852\n"
+"01130000.xhp\n"
+"par_id70\n"
"help.text"
-msgid "J"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select how many slides to print per page.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563827\n"
+"01130000.xhp\n"
+"par_id72\n"
"help.text"
-msgid "U"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify how to arrange slides on the printed page.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563916\n"
+"01130000.xhp\n"
+"par_id74\n"
"help.text"
-msgid "French - fr"
-msgstr "Franceze"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print the page name of a document.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563970\n"
+"01130000.xhp\n"
+"par_id76\n"
"help.text"
-msgid "A"
-msgstr "A"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print the current date and time.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811563980\n"
+"01130000.xhp\n"
+"par_id78\n"
"help.text"
-msgid "J"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to print the pages that are currently hidden.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564065\n"
+"01130000.xhp\n"
+"par_id80\n"
"help.text"
-msgid "O"
-msgstr "Kyçur"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print in original colors.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id100220081156407\n"
+"01130000.xhp\n"
+"par_id82\n"
"help.text"
-msgid "Italian - it"
-msgstr "Italiane (Amiga)"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print colors as grayscale.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id100220081156403\n"
+"01130000.xhp\n"
+"par_id84\n"
"help.text"
-msgid "A"
-msgstr "A"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies to print colors as black and white.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564042\n"
+"01130000.xhp\n"
+"par_id86\n"
"help.text"
-msgid "G"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specify how to scale slides in the printout.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id100220081156412\n"
+"01130000.xhp\n"
+"par_id88\n"
"help.text"
-msgid "O"
-msgstr "Kyçur"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that you do not want to further scale pages when printing.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564119\n"
+"01130000.xhp\n"
+"par_id90\n"
"help.text"
-msgid "X"
-msgstr "X"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies whether to scale down objects that are beyond the margins of the current printer so they fit on the paper in the printer.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564197\n"
+"01130000.xhp\n"
+"par_id92\n"
"help.text"
-msgid "Portuguese - pt"
-msgstr "Portugalisht (Brazil)"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Specifies that pages are to be printed in tiled format. If the pages or slides are smaller than the paper, several pages or slides will be printed on one page of paper.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564272\n"
+"01130000.xhp\n"
+"hd_id0818200912285074\n"
"help.text"
-msgid "A"
-msgstr "A"
+msgid "%PRODUCTNAME Writer / Calc / Impress / Draw / Math"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id100220081156423\n"
+"01130000.xhp\n"
+"par_id0818200912285019\n"
"help.text"
-msgid "O"
-msgstr "Kyçur"
+msgid "The tab page with the same name as the current application can be used to define the contents, color, size, and pages to be printed. You define settings that are specific to the current document type."
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564218\n"
+"01130000.xhp\n"
+"hd_id0818200912285112\n"
"help.text"
-msgid "Spanish - es"
-msgstr "Stilet"
+msgid "Page Layout"
+msgstr "Ndrysho formëdhënien..."
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564390\n"
+"01130000.xhp\n"
+"par_id0818200912285150\n"
"help.text"
-msgid "A"
-msgstr "A"
+msgid "The Page Layout tab page can be used to save some sheets of paper by printing several pages onto each sheet of paper. You define the arrangement and size of output pages on the physical paper."
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564319\n"
+"01130000.xhp\n"
+"par_id0818200904164735\n"
"help.text"
-msgid "O"
+msgid "Change the arrangement of pages to be printed on every sheet of paper. The preview shows how every final sheet of paper will look."
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id100220081156433\n"
+"01130000.xhp\n"
+"par_id0818200904102987\n"
"help.text"
-msgid "Danish - da"
-msgstr "Da~të"
+msgid "For some document types, you can choose to print a brochure."
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id100220081156444\n"
+"01130000.xhp\n"
+"hd_id0818200912285138\n"
"help.text"
-msgid "T"
-msgstr "T"
+msgid "Options"
+msgstr "Opcionet"
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564448\n"
+"01130000.xhp\n"
+"par_id0818200912285146\n"
"help.text"
-msgid "Norwegian - no, nb, nn"
+msgid "On the Options tab page you can set some additional options for the current print job. Here you can specify to print to a file instead of printing on a printer."
msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564549\n"
+"01130000.xhp\n"
+"hd_id0819200910481678\n"
"help.text"
-msgid "T"
-msgstr "T"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">Unix hints</caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564565\n"
+"01130000.xhp\n"
+"par_id3157320\n"
+"47\n"
"help.text"
-msgid "Swedish - sv"
-msgstr "Suedeze (Amiga)"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">If you want, you can use the STAR_SPOOL_DIR environment variable to specify the directory where the Xprinter spoolfiles are saved. For example:</caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564556\n"
+"01130000.xhp\n"
+"par_id3154330\n"
+"48\n"
"help.text"
-msgid "T"
-msgstr "T"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">setenv STAR_SPOOL_DIR /usr/local/tmp (in the csh/tcsh) or</caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564637\n"
+"01130000.xhp\n"
+"par_id3150768\n"
+"49\n"
"help.text"
-msgid "Finnish - fi"
-msgstr "Finlandeze (Sun; lloji 5)"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">export STAR_SPOOL_DIR=/usr/local/tmp (in the sh/bash)</caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01130000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564627\n"
+"01130000.xhp\n"
+"par_id3150449\n"
+"50\n"
"help.text"
-msgid "V"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\">You can also use the <link href=\"text/shared/guide/spadmin.xhp\" name=\"spadmin printer setup program\">spadmin printer setup program</link> to specify additional printer options.</caseinline></switchinline>"
msgstr ""
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564643\n"
+"01140000.xhp\n"
+"tit\n"
"help.text"
-msgid "K"
-msgstr ""
+msgid "Printer Setup"
+msgstr "Regullimi i shtypësit"
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564763\n"
+"01140000.xhp\n"
+"bm_id3147294\n"
"help.text"
-msgid "P"
-msgstr "P"
+msgid "<bookmark_value>printers; properties</bookmark_value><bookmark_value>settings; printers</bookmark_value><bookmark_value>properties; printers</bookmark_value><bookmark_value>default printer; setting up</bookmark_value><bookmark_value>printers; default printer</bookmark_value><bookmark_value>page formats; restriction</bookmark_value>"
+msgstr ""
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id1002200811564715\n"
+"01140000.xhp\n"
+"hd_id3147294\n"
+"1\n"
"help.text"
-msgid "T"
-msgstr "T"
+msgid "Printer Setup"
+msgstr "Regullimi i shtypësit"
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3149929\n"
-"227\n"
+"01140000.xhp\n"
+"par_id3154422\n"
+"2\n"
"help.text"
-msgid "Entering Dates"
+msgid "<variable id=\"druckereinstellungtext\"><ahelp hid=\"SVTOOLS:MODALDIALOG:DLG_SVT_PRNDLG_PRNSETUPDLG\">Select the default printer for the current document.</ahelp></variable>"
msgstr ""
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148397\n"
-"228\n"
+"01140000.xhp\n"
+"par_id3148620\n"
+"20\n"
"help.text"
-msgid "To enter a date in a cell, use the Gregorian calendar format. For example, in an English locale, enter 1/2/2002 for Jan 2, 2002."
+msgid "You might experience a slight delay when you change the default printer for a document that contains embedded $[officename] OLE objects."
msgstr ""
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153274\n"
-"137\n"
+"01140000.xhp\n"
+"hd_id3145345\n"
+"4\n"
"help.text"
-msgid "All date formats are dependent on the locale that is set in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages</emph>. For example, if your locale is set to 'Japanese', then the Gengou calendar is used. The default date format in <item type=\"productname\">%PRODUCTNAME</item> uses the Gregorian Calendar."
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Printer </caseinline></switchinline>"
msgstr ""
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153795\n"
-"216\n"
+"01140000.xhp\n"
+"par_id3145211\n"
+"5\n"
"help.text"
-msgid "To specify a calendar format that is independent of the locale, add a modifier in front of the date format. For example, to display a date using the Jewish calendar format in a non-Hebrew locale, enter: [~jewish]DD/MM/YYYY."
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Lists the information that applies to the selected printer. </caseinline></switchinline>"
msgstr ""
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145764\n"
-"217\n"
+"01140000.xhp\n"
+"par_id3148538\n"
+"19\n"
"help.text"
-msgid "Modifier"
-msgstr "Modifikuar:"
+msgid "If the list is empty, you need to install a default printer for your operating system. Refer to the online help for your operating system for instructions on how to install and setup a default printer."
+msgstr ""
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152967\n"
-"218\n"
+"01140000.xhp\n"
+"hd_id3154381\n"
+"6\n"
"help.text"
-msgid "Calendar"
-msgstr "Kalendari"
+msgid "Name"
+msgstr "Emri"
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148390\n"
-"219\n"
+"01140000.xhp\n"
+"par_id3156155\n"
+"7\n"
"help.text"
-msgid "[~buddhist]"
+msgid "<ahelp hid=\"SVTOOLS:LISTBOX:DLG_SVT_PRNDLG_PRNSETUPDLG:LB_NAMES\">Lists the installed printers on your operating system. To change the default printer, select a printer name from the list.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153781\n"
-"220\n"
+"01140000.xhp\n"
+"hd_id3156153\n"
+"8\n"
"help.text"
-msgid "Thai Buddhist Calendar"
-msgstr "CDE-Kalendar-Fajll"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Status </caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3157969\n"
-"133\n"
+"01140000.xhp\n"
+"par_id3150465\n"
+"9\n"
"help.text"
-msgid "[~gengou]"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Describes the current status of the selected printer. </caseinline></switchinline>"
msgstr ""
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154656\n"
-"134\n"
+"01140000.xhp\n"
+"hd_id3154898\n"
+"10\n"
"help.text"
-msgid "Japanese Gengou Calendar"
-msgstr "CDE-Kalendar-Fajll"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Type </caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150086\n"
-"131\n"
+"01140000.xhp\n"
+"par_id3156326\n"
+"11\n"
"help.text"
-msgid "[~gregorian]"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Displays the type of printer that you selected. </caseinline></switchinline>"
msgstr ""
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146070\n"
-"132\n"
+"01140000.xhp\n"
+"hd_id3149416\n"
+"12\n"
"help.text"
-msgid "Gregorian Calendar"
-msgstr "CDE-Kalendar-Fajll"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Location </caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146808\n"
-"221\n"
+"01140000.xhp\n"
+"par_id3149955\n"
+"13\n"
"help.text"
-msgid "[~hanja] or [~hanja_yoil]"
-msgstr "~Prano ose Refuzo..."
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Displays the port for the selected printer. </caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149207\n"
-"136\n"
+"01140000.xhp\n"
+"hd_id3145316\n"
+"14\n"
"help.text"
-msgid "Korean Calendar"
-msgstr "CDE-Kalendar-Fajll"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Comments </caseinline></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150304\n"
-"222\n"
+"01140000.xhp\n"
+"par_id3155923\n"
+"15\n"
"help.text"
-msgid "[~hijri]"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Displays additional information for the printer. </caseinline></switchinline>"
msgstr ""
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149238\n"
-"223\n"
+"01140000.xhp\n"
+"hd_id3149669\n"
+"16\n"
"help.text"
-msgid "Arabic Islamic Calendar, currently supported for the following locales: ar_EG, ar_LB, ar_SA, and ar_TN"
-msgstr ""
+msgid "Properties"
+msgstr "Vetitë"
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154903\n"
-"224\n"
+"01140000.xhp\n"
+"par_id3149045\n"
+"17\n"
"help.text"
-msgid "[~jewish]"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\"><ahelp hid=\"SVTOOLS:PUSHBUTTON:DLG_SVT_PRNDLG_PRNSETUPDLG:BTN_PROPERTIES\">Changes the printer settings of your operating system for the current document.</ahelp></caseinline></switchinline>"
msgstr ""
-#: 05020301.xhp
+#: 01140000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151288\n"
-"225\n"
+"01140000.xhp\n"
+"par_id3157322\n"
+"18\n"
"help.text"
-msgid "Jewish Calendar"
-msgstr "CDE-Kalendar-Fajll"
+msgid "Ensure that the Landscape or Portrait layout option set in the printer properties dialog matches the page format that you set by choosing <emph>Format - Page</emph>."
+msgstr ""
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3166442\n"
-"135\n"
+"01160000.xhp\n"
+"tit\n"
"help.text"
-msgid "[~ROC]"
-msgstr ""
+msgid "Send"
+msgstr "Vëzhguesi i dërgimit"
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145587\n"
-"226\n"
+"01160000.xhp\n"
+"hd_id3152895\n"
+"1\n"
"help.text"
-msgid "Republic Of China Calendar"
-msgstr "CDE-Kalendar-Fajll"
+msgid "<link href=\"text/shared/01/01160000.xhp\" name=\"Send\">Send</link>"
+msgstr ""
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152419\n"
-"140\n"
+"01160000.xhp\n"
+"par_id3151262\n"
+"2\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">If you perform a calculation that involves one or more cells using a date format, the result is formatted according to the following mappings: </caseinline></switchinline>"
+msgid "<ahelp hid=\".\">Sends a copy of the current document to different applications.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154194\n"
-"141\n"
+"01160000.xhp\n"
+"hd_id3154398\n"
+"3\n"
"help.text"
-msgid "Initial Format"
-msgstr "Format tjetër"
+msgid "<link href=\"text/shared/01/01160200.xhp\" name=\"Document as E-mail\">Document as E-mail</link>"
+msgstr ""
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149787\n"
-"142\n"
+"01160000.xhp\n"
+"par_id4546342\n"
"help.text"
-msgid "Result Format"
-msgstr "Format tjetër"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152993\n"
-"143\n"
+"01160000.xhp\n"
+"par_id6845301\n"
"help.text"
-msgid "Date + Date"
-msgstr "Data"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft file format is used.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150292\n"
-"144\n"
+"01160000.xhp\n"
+"hd_id8111514\n"
"help.text"
-msgid "Number (Days)"
-msgstr "Numri i faqes"
+msgid "E-mail as OpenDocument Spreadsheet"
+msgstr "Dërgo dokumentet me bashkangjitje si e-mail"
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150460\n"
-"145\n"
+"01160000.xhp\n"
+"par_id5917844\n"
"help.text"
-msgid "Date + Number"
-msgstr "Formati numerik: datë"
+msgid "<ahelp hid=\".\">Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154371\n"
-"146\n"
+"01160000.xhp\n"
+"hd_id5112460\n"
"help.text"
-msgid "Date"
-msgstr "Data"
+msgid "E-mail as Microsoft Excel"
+msgstr "Biff5 (Microsoft Excel 5.0/95)"
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145082\n"
-"147\n"
+"01160000.xhp\n"
+"par_id5759453\n"
"help.text"
-msgid "Date + Time"
-msgstr "<date/time>"
+msgid "<ahelp hid=\".\">Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft Excel file format is used.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156290\n"
-"148\n"
+"01160000.xhp\n"
+"hd_id6694540\n"
"help.text"
-msgid "Date&Time"
-msgstr "Data dhe Koha"
+msgid "E-mail as OpenDocument Presentation"
+msgstr "Dërgo dokumentet me bashkangjitje si e-mail"
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152456\n"
-"149\n"
+"01160000.xhp\n"
+"par_id7829218\n"
"help.text"
-msgid "Date + Date&Time"
-msgstr "<date/time>"
+msgid "<ahelp hid=\".\">Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156169\n"
-"150\n"
+"01160000.xhp\n"
+"hd_id2099063\n"
"help.text"
-msgid "Number"
-msgstr "Numri"
+msgid "E-mail as Microsoft PowerPoint Presentation"
+msgstr ""
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154527\n"
-"151\n"
+"01160000.xhp\n"
+"par_id8319650\n"
"help.text"
-msgid "Time + Time"
-msgstr "Koha"
+msgid "<ahelp hid=\".\">Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft PowerPoint file format is used.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3159625\n"
-"152\n"
+"01160000.xhp\n"
+"hd_id9657277\n"
"help.text"
-msgid "Time"
-msgstr "Koha"
+msgid "E-mail as OpenDocument Text"
+msgstr "Dërgo dokumentet me bashkangjitje si e-mail"
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146802\n"
-"153\n"
+"01160000.xhp\n"
+"par_id9085055\n"
"help.text"
-msgid "Time + Number"
-msgstr "Formati numerik: kohë"
+msgid "<ahelp hid=\".\">Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146770\n"
-"154\n"
+"01160000.xhp\n"
+"hd_id7941831\n"
"help.text"
-msgid "Time"
-msgstr "Koha"
+msgid "E-mail as Microsoft Word"
+msgstr "Dërgo dokumentet me bashkangjitje si e-mail"
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155500\n"
-"155\n"
+"01160000.xhp\n"
+"par_id5421918\n"
"help.text"
-msgid "Time + Date&Time"
-msgstr "<date/time>"
+msgid "<ahelp hid=\".\">Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft Word file format is used.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155128\n"
-"156\n"
+"01160000.xhp\n"
+"hd_id3155391\n"
+"5\n"
"help.text"
-msgid "Date&Time"
-msgstr "Data dhe Koha"
+msgid "<link href=\"text/shared/01/01160300.xhp\" name=\"Create Master Document\">Create Master Document</link>"
+msgstr ""
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152904\n"
-"157\n"
+"01160000.xhp\n"
+"hd_id3153345\n"
+"6\n"
"help.text"
-msgid "Date&Time + Date&Time"
-msgstr "<date/time>"
+msgid "<link href=\"text/swriter/01/01160500.xhp\" name=\"Create HTML Document\">Create HTML Document</link>"
+msgstr ""
-#: 05020301.xhp
+#: 01160000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3159143\n"
-"158\n"
+"01160000.xhp\n"
+"hd_id3149811\n"
+"4\n"
"help.text"
-msgid "Time"
-msgstr "Koha"
+msgid "<link href=\"text/swriter/01/01160300.xhp\" name=\"Create AutoAbstract\">Create AutoAbstract</link>"
+msgstr ""
-#: 05020301.xhp
+#: 01160200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148909\n"
-"159\n"
+"01160200.xhp\n"
+"tit\n"
"help.text"
-msgid "Date&Time + Number"
-msgstr "Formati numerik: kohë"
+msgid "Document as E-mail"
+msgstr "Dokumenti si E-mail..."
-#: 05020301.xhp
+#: 01160200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154806\n"
-"160\n"
+"01160200.xhp\n"
+"hd_id3150702\n"
+"1\n"
"help.text"
-msgid "Date&Time"
-msgstr "Data dhe Koha"
+msgid "<link href=\"text/shared/01/01160200.xhp\">Document as E-mail</link>"
+msgstr ""
-#: 05020301.xhp
+#: 01160200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151269\n"
-"161\n"
+"01160200.xhp\n"
+"par_id3152823\n"
+"2\n"
"help.text"
-msgid "Number + Number"
-msgstr "<number>"
+msgid "<variable id=\"versendentext\"><ahelp hid=\".uno:SendMail\">Opens a new window in your default e-mail program with the current document as an attachment. The current file format is used.</ahelp></variable> If the document is new and unsaved, the format specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - General is used."
+msgstr ""
-#: 05020301.xhp
+#: 01160200.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154951\n"
-"162\n"
+"01160200.xhp\n"
+"par_id0807200809553672\n"
"help.text"
-msgid "Number"
-msgstr "Numri"
+msgid "If the document is in HTML format, any embedded or linked images will not be sent with the e-mail."
+msgstr ""
-#: 05020301.xhp
+#: 01160300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149174\n"
-"163\n"
+"01160300.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">The Date&Time format displays the date and time that an entry was made to a cell with this format. </caseinline></switchinline>"
-msgstr ""
+msgid "Create Master Document"
+msgstr "Krijo dokumentin kryesor"
-#: 05020301.xhp
+#: 01160300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3143225\n"
-"164\n"
+"01160300.xhp\n"
+"hd_id3152790\n"
+"1\n"
"help.text"
-msgid "In <item type=\"productname\">%PRODUCTNAME</item>, a date with the value \"0\" corresponds to Dec 30, 1899."
-msgstr ""
+msgid "Create Master Document"
+msgstr "Krijo dokumentin kryesor"
-#: 05020301.xhp
+#: 01160300.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3155870\n"
-"61\n"
+"01160300.xhp\n"
+"par_id3148668\n"
+"2\n"
"help.text"
-msgid "Time Formats"
-msgstr "(Të gjitha formatet)"
+msgid "<variable id=\"globtext\"><ahelp hid=\"HID_SEND_MASTER_CTRL_PUSHBUTTON_CANCEL\">Creates a master document from the current Writer document. A new sub-document is created at each occurrence of a chosen paragraph style or outline level in the source document.</ahelp></variable>"
+msgstr ""
-#: 05020301.xhp
+#: 01160300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150108\n"
-"62\n"
+"01160300.xhp\n"
+"par_id3149999\n"
+"4\n"
"help.text"
-msgid "To display hours, minutes and seconds use the following number format codes."
+msgid "The <link href=\"text/shared/01/02110000.xhp\" name=\"Navigator\"><emph>Navigator</emph></link> appears after you create a master document. To edit a sub-document, double-click the name of a sub-document in the <emph>Navigator</emph>."
msgstr ""
-#: 05020301.xhp
+#: 01160300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149158\n"
-"63\n"
+"01160300.xhp\n"
+"hd_id3152924\n"
+"9\n"
"help.text"
-msgid "Format"
-msgstr "Formati"
+msgid "Display area"
+msgstr "Zona e fundfaqes"
-#: 05020301.xhp
+#: 01160300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154341\n"
-"64\n"
+"01160300.xhp\n"
+"hd_id3152425\n"
+"10\n"
"help.text"
-msgid "Format Code"
-msgstr "Kodi i karakterit"
+msgid "File name"
+msgstr "Emri i fajllit"
-#: 05020301.xhp
+#: 01160300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154557\n"
-"65\n"
+"01160300.xhp\n"
+"hd_id3147291\n"
+"8\n"
"help.text"
-msgid "Hours as 0-23"
-msgstr "Eksporto si PDF..."
+msgid "separated by"
+msgstr "~E ndarë nga"
-#: 05020301.xhp
+#: 01160300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156348\n"
-"66\n"
+"01160300.xhp\n"
+"par_id3156426\n"
+"7\n"
"help.text"
-msgid "h"
+msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
msgstr ""
-#: 05020301.xhp
+#: 01160300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3143218\n"
-"67\n"
+"01160300.xhp\n"
+"hd_id3153311\n"
+"11\n"
"help.text"
-msgid "Hours as 00-23"
-msgstr "Eksporto si PDF..."
+msgid "File type"
+msgstr "Tipi i fajllit"
-#: 05020301.xhp
+#: 01160300.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155266\n"
-"68\n"
+"01160300.xhp\n"
+"hd_id3145313\n"
+"12\n"
"help.text"
-msgid "hh"
-msgstr ""
+msgid "Save"
+msgstr "Ruaje"
-#: 05020301.xhp
+#: 01170000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150139\n"
-"69\n"
+"01170000.xhp\n"
+"tit\n"
"help.text"
-msgid "Minutes as 0-59"
-msgstr "Eksporto si PDF..."
+msgid "Exit"
+msgstr "Dalje"
-#: 05020301.xhp
+#: 01170000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149588\n"
-"70\n"
+"01170000.xhp\n"
+"bm_id3154545\n"
"help.text"
-msgid "m"
+msgid "<bookmark_value>exiting;$[officename]</bookmark_value>"
msgstr ""
-#: 05020301.xhp
+#: 01170000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150531\n"
-"71\n"
+"01170000.xhp\n"
+"hd_id3154545\n"
+"1\n"
"help.text"
-msgid "Minutes as 00-59"
-msgstr "Eksporto si PDF..."
+msgid "<link href=\"text/shared/01/01170000.xhp\" name=\"Exit\">Exit</link>"
+msgstr ""
-#: 05020301.xhp
+#: 01170000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147409\n"
-"72\n"
+"01170000.xhp\n"
+"par_id3151299\n"
+"2\n"
"help.text"
-msgid "mm"
-msgstr "0 mm"
+msgid "<ahelp hid=\".\">Closes all $[officename] programs and prompts you to save your changes.</ahelp> <switchinline select=\"sys\"><caseinline select=\"MAC\">This command does not exist on Mac OS X systems.</caseinline><defaultinline/></switchinline>"
+msgstr ""
-#: 05020301.xhp
+#: 01170000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154854\n"
-"73\n"
+"01170000.xhp\n"
+"par_id3154184\n"
+"6\n"
"help.text"
-msgid "Seconds as 0-59"
-msgstr "Eksporto si PDF..."
+msgid "<link href=\"text/shared/01/01050000.xhp\" name=\"Close the current document\">Close the current document</link>"
+msgstr ""
-#: 05020301.xhp
+#: 01180000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156173\n"
-"74\n"
+"01180000.xhp\n"
+"tit\n"
"help.text"
-msgid "s"
-msgstr ""
+msgid "Save All"
+msgstr "Ruaj të gjitha"
-#: 05020301.xhp
+#: 01180000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149506\n"
-"75\n"
+"01180000.xhp\n"
+"hd_id3150347\n"
+"4\n"
"help.text"
-msgid "Seconds as 00-59"
-msgstr "Eksporto si PDF..."
+msgid "<link href=\"text/shared/01/01180000.xhp\" name=\"Save All\">Save All</link>"
+msgstr ""
-#: 05020301.xhp
+#: 01180000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3157981\n"
-"76\n"
+"01180000.xhp\n"
+"par_id3151299\n"
+"1\n"
"help.text"
-msgid "ss"
+msgid "<ahelp hid=\".uno:SaveAll\">Saves all modified $[officename] documents.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01180000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156039\n"
-"77\n"
+"01180000.xhp\n"
+"par_id3148440\n"
+"3\n"
"help.text"
-msgid "To display seconds as fractions, add the decimal delimiter to your number format code. For example, enter <emph>hh:mm:ss.00</emph> to display the time as \"01:02:03.45\"."
+msgid "If you are saving a new file or a copy of a read-only file, the <link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link> dialog appears."
msgstr ""
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148649\n"
-"102\n"
+"01190000.xhp\n"
+"tit\n"
"help.text"
-msgid "If a time is entered in the form 02:03.45 or 01:02:03.45 or 25:01:02, the following formats are assigned if no other time format has been specified: MM:SS.00 or [HH]:MM:SS.00 or [HH]:MM:SS"
-msgstr ""
+msgid "Versions"
+msgstr "Verzionet"
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"hd_id3158404\n"
-"169\n"
+"01190000.xhp\n"
+"bm_id1759697\n"
"help.text"
-msgid "Displaying Numbers Using Native Characters"
+msgid "<bookmark_value>versions;file saving as, restriction</bookmark_value>"
msgstr ""
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149998\n"
-"170\n"
+"01190000.xhp\n"
+"hd_id3143272\n"
+"1\n"
"help.text"
-msgid "To display numbers using native number characters, use a [NatNum1], [NatNum2], ... [NatNum11] modifier at the beginning of a number format codes."
+msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
msgstr ""
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154600\n"
-"171\n"
+"01190000.xhp\n"
+"par_id3157898\n"
+"2\n"
"help.text"
-msgid "The [NatNum1] modifier always uses a one to one character mapping to convert numbers to a string that matches the native number format code of the corresponding locale. The other modifiers produce different results if they are used with different locales. A locale can be the language and the territory for which the format code is defined, or a modifier such as [$-yyy] that follows the native number modifier. In this case, yyy is the hexadecimal MS-LCID that is also used in currency format codes. For example, to display a number using Japanese short Kanji characters in an English US locale, use the following number format code:"
+msgid "<variable id=\"versionentext\"><ahelp hid=\".uno:VersionDialog\">Saves and organizes multiple versions of the current document in the same file. You can also open, delete, and compare previous versions.</ahelp></variable>"
msgstr ""
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152546\n"
-"172\n"
+"01190000.xhp\n"
+"par_id3153527\n"
+"22\n"
"help.text"
-msgid "[NatNum1][$-411]0"
+msgid "If you save a copy of a file that contains version information (by choosing <emph>File - Save As)</emph>, the version information is not saved with the file."
msgstr ""
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147269\n"
-"173\n"
+"01190000.xhp\n"
+"hd_id3149750\n"
+"4\n"
"help.text"
-msgid "In the following list, the Microsoft Excel [DBNumX] modifier that corresponds to <item type=\"productname\">%PRODUCTNAME</item> [NatNum] modifier is shown. If you want, you can use a [DBNumX] modifier instead of [NatNum] modifier for your locale. Whenever possible, <item type=\"productname\">%PRODUCTNAME</item> internally maps [DBNumX] modifiers to [NatNumN] modifiers."
-msgstr ""
+msgid "New versions"
+msgstr "Versionet e reja"
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_idN11234\n"
+"01190000.xhp\n"
+"par_id3163802\n"
+"5\n"
"help.text"
-msgid "Displaying dates using [NatNum] modifiers can have a different effect than displaying other types of numbers. Such effects are indicated by 'CAL: '. For example, 'CAL: 1/4/4' indicates that the year is displayed using the [NatNum1] modifier, while the day and month are displayed using the [NatNum4] modifier. If 'CAL' is not specified, the date formats for that particular modifier are not supported."
+msgid "Set the options for saving a new version of the document."
msgstr ""
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153111\n"
-"174\n"
+"01190000.xhp\n"
+"hd_id3147243\n"
+"6\n"
"help.text"
-msgid "[NatNum1] Transliterations"
-msgstr "Përpara objektit"
+msgid "Save New Version"
+msgstr "Ruaj versionin e ri"
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146895\n"
-"175\n"
+"01190000.xhp\n"
+"par_id3149149\n"
+"7\n"
"help.text"
-msgid "Chinese: Chinese lower case characters; CAL: 1/7/7 [DBNum1]"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_SAVE\">Saves the current state of the document as a new version. If you want, you can also enter comments in the <emph>Insert Version Comment </emph>dialog before you save the new version.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152536\n"
-"176\n"
+"01190000.xhp\n"
+"hd_id3153348\n"
+"8\n"
"help.text"
-msgid "Japanese: short Kanji characters [DBNum1]; CAL: 1/4/4 [DBNum1]"
-msgstr ""
+msgid "Insert Version Comment"
+msgstr "Shto komentet e versionit"
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3146125\n"
-"177\n"
+"01190000.xhp\n"
+"par_id3150466\n"
+"9\n"
"help.text"
-msgid "Korean: Korean lower case characters [DBNum1]; CAL: 1/7/7 [DBNum1]"
+msgid "<ahelp hid=\"SFX2:MULTILINEEDIT:DLG_COMMENTS:ME_VERSIONS\">Enter a comment here when you are saving a new version. If you clicked <emph>Show </emph>to open this dialog, you cannot edit the comment.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149945\n"
-"178\n"
+"01190000.xhp\n"
+"hd_id3149514\n"
+"10\n"
"help.text"
-msgid "Thai: Thai characters"
-msgstr "Karakteret e fusnotave"
+msgid "Always save version when closing"
+msgstr "Gjithmonë ruaje versionin në mbyllje"
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153264\n"
-"179\n"
+"01190000.xhp\n"
+"par_id3153823\n"
+"11\n"
"help.text"
-msgid "Arabic: Indic characters"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"SFX2:CHECKBOX:DLG_VERSIONS:CB_SAVEONCLOSE\">If you have made changes to your document, $[officename] automatically saves a new version when you close the document.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3148973\n"
-"180\n"
+"01190000.xhp\n"
+"par_id6663823\n"
"help.text"
-msgid "Indic: Indic characters"
-msgstr "Karakteret e fusnotave"
+msgid "If you save the document manually, do not change the document after saving, and then close, no new version will be created."
+msgstr ""
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_idN112A3\n"
+"01190000.xhp\n"
+"hd_id3159167\n"
+"12\n"
"help.text"
-msgid "Hebrew: Hebrew letters"
-msgstr "Shtyp prej letrave"
+msgid "Existing versions"
+msgstr "Versionet ekzistuese"
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3147520\n"
-"181\n"
+"01190000.xhp\n"
+"par_id3156327\n"
+"13\n"
"help.text"
-msgid "[NatNum2] Transliteration in"
-msgstr "Përpara objektit"
+msgid "<ahelp hid=\"SFX2:MODALDIALOG:DLG_VERSIONS\">Lists the existing versions of the current document, the date and the time they were created, the author and the associated comments.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155383\n"
-"182\n"
+"01190000.xhp\n"
+"hd_id3149578\n"
+"14\n"
"help.text"
-msgid "Chinese: Chinese upper case characters; CAL: 2/8/8 [DBNum2]"
-msgstr ""
+msgid "Open"
+msgstr "Hape"
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153931\n"
-"183\n"
+"01190000.xhp\n"
+"par_id3153827\n"
+"15\n"
"help.text"
-msgid "Japanese: traditional Kanji characters; CAL: 2/5/5 [DBNum2]"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_OPEN\">Opens the selected version in a read-only window.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155097\n"
-"184\n"
+"01190000.xhp\n"
+"hd_id3147530\n"
+"16\n"
"help.text"
-msgid "Korean: Korean upper case characters [DBNum2]; CAL: 2/8/8 [DBNum2]"
+msgid "Show"
+msgstr "Shfaq"
+
+#: 01190000.xhp
+msgctxt ""
+"01190000.xhp\n"
+"par_id3153061\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_VIEW\">Displays the entire comment for the selected version.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3152976\n"
-"185\n"
+"01190000.xhp\n"
+"hd_id3154923\n"
+"18\n"
"help.text"
-msgid "[NatNum3] Transliteration in"
-msgstr "Përpara objektit"
+msgid "Delete"
+msgstr "Fshije"
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154353\n"
-"186\n"
+"01190000.xhp\n"
+"par_id3149669\n"
+"19\n"
"help.text"
-msgid "Chinese: fullwidth Arabic digits; CAL: 3/3/3 [DBNum3]"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_DELETE\">Deletes the selected version.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154669\n"
-"187\n"
+"01190000.xhp\n"
+"hd_id3148739\n"
+"21\n"
"help.text"
-msgid "Japanese: fullwidth Arabic digits; CAL: 3/3/3 [DBNum3]"
-msgstr ""
+msgid "Compare"
+msgstr "Krahaso"
-#: 05020301.xhp
+#: 01190000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150472\n"
-"188\n"
+"01190000.xhp\n"
+"par_id3152811\n"
+"23\n"
"help.text"
-msgid "Korean: fullwidth Arabic digits [DBNum3]; CAL: 3/3/3 [DBNum3]"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_COMPARE\">Compare the changes that were made in each version.</ahelp> If you want, you can <link href=\"text/shared/01/02230400.xhp\" name=\"Accept or Reject Changes\"><emph>Accept or Reject Changes</emph></link>."
msgstr ""
-#: 05020301.xhp
+#: 01990000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3157811\n"
-"189\n"
+"01990000.xhp\n"
+"tit\n"
"help.text"
-msgid "[NatNum4] Transliteration in"
-msgstr "Përpara objektit"
+msgid "Recent Documents"
+msgstr "Duke i krijuar dokumentet..."
-#: 05020301.xhp
+#: 01990000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154592\n"
-"190\n"
+"01990000.xhp\n"
+"hd_id3150279\n"
+"6\n"
"help.text"
-msgid "Chinese: lower case text [DBNum1]"
+msgid "<variable id=\"picktitle\"><link href=\"text/shared/01/01990000.xhp\" name=\"Recent Documents\">Recent Documents</link></variable>"
msgstr ""
-#: 05020301.xhp
+#: 01990000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150350\n"
-"191\n"
+"01990000.xhp\n"
+"par_id3154794\n"
+"5\n"
"help.text"
-msgid "Japanese: modern long Kanji text [DBNum2]"
+msgid "<ahelp hid=\".\">Lists the most recently opened files. To open a file in the list, click its name.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 01990000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150930\n"
-"192\n"
+"01990000.xhp\n"
+"par_id3159079\n"
+"4\n"
"help.text"
-msgid "Korean: formal lower case text"
+msgid "The file is opened by the <item type=\"productname\">%PRODUCTNAME</item> module that saved it."
msgstr ""
-#: 05020301.xhp
+#: 02010000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153546\n"
-"193\n"
+"02010000.xhp\n"
+"tit\n"
"help.text"
-msgid "[NatNum5] Transliteration in"
-msgstr "Përpara objektit"
+msgid "Undo"
+msgstr "Zhbëj%O"
-#: 05020301.xhp
+#: 02010000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155612\n"
-"194\n"
+"02010000.xhp\n"
+"bm_id3155069\n"
"help.text"
-msgid "Chinese: Chinese upper case text [DBNum2]"
+msgid "<bookmark_value>undoing;editing</bookmark_value><bookmark_value>editing;undoing</bookmark_value>"
msgstr ""
-#: 05020301.xhp
+#: 02010000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155909\n"
-"195\n"
+"02010000.xhp\n"
+"hd_id3155069\n"
+"1\n"
"help.text"
-msgid "Japanese: traditional long Kanji text [DBNum3]"
+msgid "<link href=\"text/shared/01/02010000.xhp\" name=\"Undo\">Undo</link>"
msgstr ""
-#: 05020301.xhp
+#: 02010000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3151304\n"
-"196\n"
+"02010000.xhp\n"
+"par_id3149205\n"
+"2\n"
"help.text"
-msgid "Korean: formal upper case text"
+msgid "<ahelp hid=\"HID_IMAPDLG_UNDO\">Reverses the last command or the last entry you typed. To select the command that you want to reverse, click the arrow next to the <emph>Undo </emph>icon on the Standard bar.</ahelp>"
msgstr ""
-#: 05020301.xhp
+#: 02010000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155075\n"
-"197\n"
+"02010000.xhp\n"
+"par_idN10630\n"
"help.text"
-msgid "[NatNum6] Transliteration in"
-msgstr "Përpara objektit"
+msgid "To change the number of commands that you can undo, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Memory, and enter a new value in the number of steps box."
+msgstr ""
-#: 05020301.xhp
+#: 02010000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150214\n"
-"198\n"
+"02010000.xhp\n"
+"par_id3163803\n"
+"8\n"
"help.text"
-msgid "Chinese: fullwidth text [DBNum3]"
+msgid "Some commands (for example, editing Styles) cannot be undone."
msgstr ""
-#: 05020301.xhp
+#: 02010000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154114\n"
-"199\n"
+"02010000.xhp\n"
+"par_id3155338\n"
+"11\n"
"help.text"
-msgid "Japanese: fullwidth text"
-msgstr "Shiriti i Objektit Tekst"
+msgid "You can cancel the Undo command by choosing Edit - Redo."
+msgstr ""
-#: 05020301.xhp
+#: 02010000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155344\n"
-"200\n"
+"02010000.xhp\n"
+"hd_id3166410\n"
+"7\n"
"help.text"
-msgid "Korean: fullwidth text"
-msgstr "Shiriti i Objektit Tekst"
+msgid "About the Undo command in database tables"
+msgstr ""
-#: 05020301.xhp
+#: 02010000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155538\n"
-"201\n"
+"02010000.xhp\n"
+"par_id3148492\n"
+"3\n"
"help.text"
-msgid "[NatNum7] Transliteration in"
-msgstr "Përpara objektit"
+msgid "When you are working with database tables, you can only undo the last command."
+msgstr ""
-#: 05020301.xhp
+#: 02010000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145123\n"
-"202\n"
+"02010000.xhp\n"
+"par_id3155504\n"
+"4\n"
"help.text"
-msgid "Japanese: modern short Kanji text"
+msgid "If you change the content of a record in a database table that has not been saved, and then use the<emph> Undo</emph> command, the record is erased."
msgstr ""
-#: 05020301.xhp
+#: 02010000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149424\n"
-"203\n"
+"02010000.xhp\n"
+"hd_id3149415\n"
+"9\n"
"help.text"
-msgid "Korean: informal lower case text"
+msgid "About the Undo command in presentations"
msgstr ""
-#: 05020301.xhp
+#: 02010000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3153688\n"
-"204\n"
+"02010000.xhp\n"
+"par_id3159147\n"
+"10\n"
"help.text"
-msgid "[NatNum8] Transliteration in"
-msgstr "Përpara objektit"
+msgid "The <emph>Undo</emph> list is cleared when you apply a new layout to a slide."
+msgstr ""
-#: 05020301.xhp
+#: 02020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3156122\n"
-"205\n"
+"02020000.xhp\n"
+"tit\n"
"help.text"
-msgid "Japanese: traditional short Kanji text [DBNum4]"
-msgstr ""
+msgid "Redo"
+msgstr "Bëje prap"
-#: 05020301.xhp
+#: 02020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3145602\n"
-"206\n"
+"02020000.xhp\n"
+"bm_id3149991\n"
"help.text"
-msgid "Korean: informal upper case text"
+msgid "<bookmark_value>restoring;editing</bookmark_value><bookmark_value>redo command</bookmark_value>"
msgstr ""
-#: 05020301.xhp
+#: 02020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3159228\n"
-"207\n"
+"02020000.xhp\n"
+"hd_id3149991\n"
+"1\n"
"help.text"
-msgid "[NatNum9] Transliteration in"
-msgstr "Përpara objektit"
+msgid "<link href=\"text/shared/01/02020000.xhp\" name=\"Redo\">Redo</link>"
+msgstr ""
-#: 05020301.xhp
+#: 02020000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154644\n"
-"208\n"
+"02020000.xhp\n"
+"par_id3157898\n"
+"2\n"
"help.text"
-msgid "Korean: Hangul characters"
-msgstr "Hyrja e karaktereve alfanumerike"
+msgid "<ahelp hid=\"HID_IMAPDLG_REDO\">Reverses the action of the last <emph>Undo</emph> command. To select the <emph>Undo</emph> step that you want to reverse, click the arrow next to the <emph>Redo</emph> icon on the Standard bar.</ahelp>"
+msgstr ""
-#: 05020301.xhp
+#: 02030000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3155396\n"
-"209\n"
+"02030000.xhp\n"
+"tit\n"
"help.text"
-msgid "[NatNum10] Transliteration in"
-msgstr "Përpara objektit"
+msgid "Repeat"
+msgstr "Përsërite"
-#: 05020301.xhp
+#: 02030000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3150878\n"
-"210\n"
+"02030000.xhp\n"
+"bm_id3150279\n"
"help.text"
-msgid "Korean: formal Hangul text [DBNum4]; CAL: 9/11/11 [DBNum4]"
+msgid "<bookmark_value>repeating; commands</bookmark_value><bookmark_value>commands; repeating</bookmark_value>"
msgstr ""
-#: 05020301.xhp
+#: 02030000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3149384\n"
-"211\n"
+"02030000.xhp\n"
+"hd_id3150279\n"
+"1\n"
"help.text"
-msgid "[NatNum11] Transliteration in"
-msgstr "Përpara objektit"
+msgid "<link href=\"text/shared/01/02030000.xhp\" name=\"Repeat\">Repeat</link>"
+msgstr ""
-#: 05020301.xhp
+#: 02030000.xhp
msgctxt ""
-"05020301.xhp\n"
-"par_id3154213\n"
-"212\n"
+"02030000.xhp\n"
+"par_id3155934\n"
+"2\n"
"help.text"
-msgid "Korean: informal Hangul text"
+msgid "<ahelp hid=\".uno:Repeat\">Repeats the last command. This command is available in Writer and Calc.</ahelp>"
msgstr ""
-#: 05290000.xhp
+#: 02040000.xhp
msgctxt ""
-"05290000.xhp\n"
+"02040000.xhp\n"
"tit\n"
"help.text"
-msgid "Group"
-msgstr "Grupi"
+msgid "Cut"
+msgstr "Preje"
-#: 05290000.xhp
+#: 02040000.xhp
msgctxt ""
-"05290000.xhp\n"
-"hd_id3150603\n"
+"02040000.xhp\n"
+"bm_id3146936\n"
+"help.text"
+msgid "<bookmark_value>cutting</bookmark_value><bookmark_value>clipboard; cutting</bookmark_value>"
+msgstr ""
+
+#: 02040000.xhp
+msgctxt ""
+"02040000.xhp\n"
+"hd_id3146936\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290000.xhp\" name=\"Group\">Group</link>"
+msgid "<link href=\"text/shared/01/02040000.xhp\" name=\"Cut\">Cut</link>"
msgstr ""
-#: 05290000.xhp
+#: 02040000.xhp
msgctxt ""
-"05290000.xhp\n"
-"par_id3153323\n"
+"02040000.xhp\n"
+"par_id3153255\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Groups keep together selected objects, so that they can be moved or formatted as a single object.</ahelp>"
+msgid "<ahelp hid=\".uno:Cut\">Removes and copies the selection to the clipboard.</ahelp>"
msgstr ""
-#: 05290000.xhp
+#: 02050000.xhp
msgctxt ""
-"05290000.xhp\n"
-"hd_id3150943\n"
-"7\n"
+"02050000.xhp\n"
+"tit\n"
"help.text"
-msgid "Working with groups"
-msgstr "Dalje të Gjitha Grupeve"
+msgid "Copy"
+msgstr "Kopjo"
-#: 05290000.xhp
+#: 02050000.xhp
msgctxt ""
-"05290000.xhp\n"
-"par_id3152909\n"
-"8\n"
+"02050000.xhp\n"
+"bm_id3154824\n"
"help.text"
-msgid "To edit the individual objects of a group, select the group, right-click, and then choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Enter Group</emph></caseinline><defaultinline><emph>Group - Enter Group</emph></defaultinline></switchinline>"
+msgid "<bookmark_value>clipboard; Unix</bookmark_value><bookmark_value>copying; in Unix</bookmark_value>"
msgstr ""
-#: 05290000.xhp
+#: 02050000.xhp
msgctxt ""
-"05290000.xhp\n"
-"par_id3159158\n"
-"9\n"
+"02050000.xhp\n"
+"hd_id3152876\n"
+"1\n"
"help.text"
-msgid "When you are editing a group, the objects that are not part of the group are faded."
+msgid "<link href=\"text/shared/01/02050000.xhp\" name=\"Copy\">Copy</link>"
msgstr ""
-#: 05290000.xhp
+#: 02050000.xhp
msgctxt ""
-"05290000.xhp\n"
-"par_id3153541\n"
-"10\n"
+"02050000.xhp\n"
+"par_id3154682\n"
+"2\n"
"help.text"
-msgid "Use Tab and Shift+Tab to move forwards and backwards through the objects in a group."
+msgid "<ahelp hid=\".uno:Copy\">Copies the selection to the clipboard.</ahelp>"
msgstr ""
-#: 05290000.xhp
+#: 02050000.xhp
msgctxt ""
-"05290000.xhp\n"
-"par_id3154810\n"
-"11\n"
+"02050000.xhp\n"
+"par_id3155552\n"
+"4\n"
"help.text"
-msgid "To exit a group, right-click, and then choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Exit Group</emph></caseinline><defaultinline><emph>Group - Exit Group</emph></defaultinline></switchinline>"
+msgid "Each time you copy, the existing content of the clipboard is overwritten."
msgstr ""
-#: 05290000.xhp
+#: 02050000.xhp
msgctxt ""
-"05290000.xhp\n"
-"hd_id3145120\n"
+"02050000.xhp\n"
+"par_id3154824\n"
"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Grouping\">Group</link>"
+msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\"><variable id=\"unixkopieren\">$[officename] also supports the clipboard under Unix; however, you must use the $[officename] commands, such as Ctrl+C.</variable></caseinline></switchinline>"
msgstr ""
-#: 05290000.xhp
+#: 02060000.xhp
msgctxt ""
-"05290000.xhp\n"
-"hd_id3152474\n"
-"4\n"
+"02060000.xhp\n"
+"tit\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Remove\">Ungroup</link>"
-msgstr ""
+msgid "Paste"
+msgstr "Lësho"
-#: 05290000.xhp
+#: 02060000.xhp
msgctxt ""
-"05290000.xhp\n"
-"hd_id3145609\n"
-"5\n"
+"02060000.xhp\n"
+"bm_id3149031\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Edit group\">Enter Group</link>"
+msgid "<bookmark_value>pasting;cell ranges</bookmark_value><bookmark_value>clipboard; pasting</bookmark_value><bookmark_value>cells;pasting</bookmark_value>"
msgstr ""
-#: 05290000.xhp
+#: 02060000.xhp
msgctxt ""
-"05290000.xhp\n"
-"hd_id3145068\n"
-"6\n"
+"02060000.xhp\n"
+"hd_id3149031\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit\">Exit group</link>"
+msgid "<link href=\"text/shared/01/02060000.xhp\" name=\"Paste\">Paste</link>"
msgstr ""
-#: 06150120.xhp
+#: 02060000.xhp
msgctxt ""
-"06150120.xhp\n"
-"tit\n"
+"02060000.xhp\n"
+"par_id3149511\n"
+"2\n"
"help.text"
-msgid "Transformation"
-msgstr "Kthen transformimin e Fisherit."
+msgid "<ahelp hid=\".uno:Paste\">Inserts the contents of the clipboard at the location of the cursor, and replaces any selected text or objects.</ahelp>"
+msgstr ""
-#: 06150120.xhp
+#: 02060000.xhp
msgctxt ""
-"06150120.xhp\n"
-"hd_id3147477\n"
-"21\n"
+"02060000.xhp\n"
+"par_id3147834\n"
+"5\n"
"help.text"
-msgid "<variable id=\"transformation\"><link href=\"text/shared/01/06150120.xhp\" name=\"Transformation\">Transformation</link></variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">In a spreadsheet, when you paste a range of cells from the clipboard, the result depends on the current selection: If only one cell is selected, the cell range will be pasted started from that cell. If you mark a cell range wider than the cell range in the clipboard, the cell range will be pasted repeatedly to fill the selected cell range. </caseinline></switchinline>"
msgstr ""
-#: 06150120.xhp
+#: 02070000.xhp
msgctxt ""
-"06150120.xhp\n"
-"par_id3154350\n"
+"02070000.xhp\n"
+"tit\n"
+"help.text"
+msgid "Paste Special"
+msgstr "Lëshim special"
+
+#: 02070000.xhp
+msgctxt ""
+"02070000.xhp\n"
+"hd_id3147477\n"
"1\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"\">Enter or edit file information for an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
-msgstr ""
+msgid "Paste Special"
+msgstr "Lëshim special"
-#: 06150120.xhp
+#: 02070000.xhp
msgctxt ""
-"06150120.xhp\n"
-"hd_id3148668\n"
+"02070000.xhp\n"
+"par_id3147143\n"
"2\n"
"help.text"
-msgid "DocType"
+msgid "<variable id=\"inhalteeinfuegentext\"><ahelp hid=\".uno:PasteSpecial\">Inserts the contents of the clipboard into the current file in a format that you can specify.</ahelp></variable>"
msgstr ""
-#: 06150120.xhp
+#: 02070000.xhp
msgctxt ""
-"06150120.xhp\n"
-"par_id3155934\n"
-"3\n"
+"02070000.xhp\n"
+"hd_id3147576\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_DOCTYPE\" visibility=\"visible\">Enter the DOCTYPE of the XML file.</ahelp>"
-msgstr ""
+msgid "Source"
+msgstr "Burimi"
-#: 06150120.xhp
+#: 02070000.xhp
msgctxt ""
-"06150120.xhp\n"
-"par_id3155892\n"
-"11\n"
+"02070000.xhp\n"
+"par_id3149388\n"
+"6\n"
"help.text"
-msgid "The public identifier is used to detect the filter when you open a file without specifying a filter."
+msgid "<ahelp hid=\"cui/ui/pastespecial/source\">Displays the source of the clipboard contents.</ahelp>"
msgstr ""
-#: 06150120.xhp
+#: 02070000.xhp
msgctxt ""
-"06150120.xhp\n"
-"hd_id3155338\n"
-"12\n"
+"02070000.xhp\n"
+"hd_id3153684\n"
+"7\n"
"help.text"
-msgid "Browse"
-msgstr "Shfleto..."
+msgid "Selection"
+msgstr "Selektimet"
-#: 06150120.xhp
+#: 02070000.xhp
msgctxt ""
-"06150120.xhp\n"
-"par_id3150506\n"
-"13\n"
+"02070000.xhp\n"
+"par_id3149812\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_IMPORT_TEMPLATE_BROWSE\" visibility=\"visible\">Opens a file selection dialog.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pastespecial/list\">Select a format for the clipboard contents that you want to paste.</ahelp>"
msgstr ""
-#: 06150120.xhp
+#: 02070000.xhp
msgctxt ""
-"06150120.xhp\n"
-"hd_id3153527\n"
-"14\n"
+"02070000.xhp\n"
+"par_id3147653\n"
+"68\n"
"help.text"
-msgid "XSLT for export"
-msgstr "Eksporto si PDF..."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">When you paste HTML data into a text document, you can choose \"HTML format\" or \"HTML format without comments\". The second choice is the default; it pastes all HTML data, but no comments. </caseinline></switchinline>"
+msgstr ""
-#: 06150120.xhp
+#: 02070000.xhp
msgctxt ""
-"06150120.xhp\n"
-"par_id3152552\n"
+"02070000.xhp\n"
+"hd_id3155420\n"
"15\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_EXPORT_XSLT\" visibility=\"visible\">If this is an export filter, enter the file name of the XSLT stylesheet that you want to use for exporting.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Paste Special </caseinline></switchinline>"
msgstr ""
-#: 06150120.xhp
-msgctxt ""
-"06150120.xhp\n"
-"hd_id3149149\n"
-"20\n"
-"help.text"
-msgid "XSLT for import"
-msgstr "AutoCAD Import Filter"
-
-#: 06150120.xhp
+#: 02070000.xhp
msgctxt ""
-"06150120.xhp\n"
-"par_id3147653\n"
+"02070000.xhp\n"
+"par_id3150976\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_IMPORT_XSLT\" visibility=\"visible\">If this is an import filter, enter the file name of the XSLT stylesheet that you want to use for importing.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">This dialog appears in Calc if the clipboard contains spreadsheet cells. </caseinline></switchinline>"
msgstr ""
-#: 06150120.xhp
+#: 02070000.xhp
msgctxt ""
-"06150120.xhp\n"
-"hd_id3147242\n"
+"02070000.xhp\n"
+"hd_id3155341\n"
"17\n"
"help.text"
-msgid "Template for import"
-msgstr "AutoCAD Import Filter"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Selection </caseinline></switchinline>"
+msgstr ""
-#: 06150120.xhp
+#: 02070000.xhp
msgctxt ""
-"06150120.xhp\n"
-"par_id3153320\n"
-"18\n"
+"02070000.xhp\n"
+"par_id3152909\n"
+"40\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_IMPORT_TEMPLATE\" visibility=\"visible\">Enter the name of the template that you want to use for importing. In the template, styles are defined to display XML tags.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Select a format for the clipboard contents that you want to paste. </caseinline></switchinline>"
msgstr ""
-#: 06150120.xhp
+#: 02070000.xhp
msgctxt ""
-"06150120.xhp\n"
-"par_id3156330\n"
-"19\n"
+"02070000.xhp\n"
+"hd_id3145120\n"
+"41\n"
"help.text"
-msgid "The path to the directory that contains the template must be included in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Paths</emph>. When you open an XML file whose filter uses the template, the template opens first. In the template, you can map $[officename] styles to display XML tags in the XML document."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Paste all </caseinline></switchinline>"
msgstr ""
-#: 05110800.xhp
+#: 02070000.xhp
msgctxt ""
-"05110800.xhp\n"
-"tit\n"
+"02070000.xhp\n"
+"par_id3146848\n"
+"42\n"
"help.text"
-msgid "Subscript"
-msgstr "Nënshkrim"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSALL\">Pastes all cell contents, comments, formats, and objects into the current document.</ahelp></caseinline></switchinline>"
+msgstr ""
-#: 05110800.xhp
+#: 02070000.xhp
msgctxt ""
-"05110800.xhp\n"
-"hd_id3150278\n"
-"1\n"
+"02070000.xhp\n"
+"hd_id3155449\n"
+"43\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110800.xhp\" name=\"Subscript\">Subscript</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Text </caseinline></switchinline>"
msgstr ""
-#: 05110800.xhp
+#: 02070000.xhp
msgctxt ""
-"05110800.xhp\n"
-"par_id3152790\n"
-"2\n"
+"02070000.xhp\n"
+"par_id3149244\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\".uno:SubScript\">Reduces the font size of the selected text and lowers the text below the baseline.</ahelp>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSSTRINGS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing text. </caseinline></switchinline></ahelp>"
msgstr ""
-#: 03990000.xhp
+#: 02070000.xhp
msgctxt ""
-"03990000.xhp\n"
-"tit\n"
+"02070000.xhp\n"
+"hd_id3148947\n"
+"45\n"
"help.text"
-msgid "Toolbars"
-msgstr "Shiriti i veglave"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Numbers </caseinline></switchinline>"
+msgstr ""
-#: 03990000.xhp
+#: 02070000.xhp
msgctxt ""
-"03990000.xhp\n"
-"hd_id3160463\n"
-"1\n"
+"02070000.xhp\n"
+"par_id3152360\n"
+"46\n"
"help.text"
-msgid "<link href=\"text/shared/01/03990000.xhp\" name=\"Toolbars\">Toolbars</link>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSNUMBERS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing numbers. </caseinline></switchinline></ahelp>"
msgstr ""
-#: 03990000.xhp
+#: 02070000.xhp
msgctxt ""
-"03990000.xhp\n"
-"par_id3149748\n"
-"2\n"
+"02070000.xhp\n"
+"hd_id3151054\n"
+"47\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu to show and hide toolbars.</ahelp> A toolbar contains icons and options that let you quickly access $[officename] commands."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Date & Time </caseinline></switchinline>"
msgstr ""
-#: 03990000.xhp
+#: 02070000.xhp
msgctxt ""
-"03990000.xhp\n"
-"hd_id3153683\n"
-"3\n"
+"02070000.xhp\n"
+"par_id3154226\n"
+"48\n"
"help.text"
-msgid "<link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"Customize\">Customize</link>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSDATETIME\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing date and time values. </caseinline></switchinline></ahelp>"
msgstr ""
-#: 03990000.xhp
+#: 02070000.xhp
msgctxt ""
-"03990000.xhp\n"
-"par_id2789086\n"
+"02070000.xhp\n"
+"hd_id3150791\n"
+"49\n"
"help.text"
-msgid "Opens a dialog where you can add, edit, and remove icons."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulas </caseinline></switchinline>"
msgstr ""
-#: 03990000.xhp
-#, fuzzy
+#: 02070000.xhp
msgctxt ""
-"03990000.xhp\n"
-"hd_id371715\n"
+"02070000.xhp\n"
+"par_id3145744\n"
+"50\n"
"help.text"
-msgid "Reset"
-msgstr "Rifillo"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSFORMULAS\">Inserts cells containing formulae.</ahelp></caseinline></switchinline>"
+msgstr ""
-#: 03990000.xhp
+#: 02070000.xhp
msgctxt ""
-"03990000.xhp\n"
-"par_id1886654\n"
+"02070000.xhp\n"
+"hd_id3153968\n"
+"51\n"
"help.text"
-msgid "<ahelp hid=\".\">Choose <emph>View - Toolbars - Reset</emph> to reset the toolbars to their default context sensitive behavior. Now some toolbars will be shown automatically, dependent on the context.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments </caseinline></switchinline>"
msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"tit\n"
+"02070000.xhp\n"
+"par_id3156422\n"
+"52\n"
"help.text"
-msgid "Zoom & View Layout"
-msgstr "Apliko formëdhënien e prezantimit"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSNOTES\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts comments that are attached to cells. If you want to add the comments to the existing cell content, select the \"Add\" operation. </caseinline></switchinline></ahelp>"
+msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"bm_id3154682\n"
+"02070000.xhp\n"
+"hd_id3152935\n"
+"53\n"
"help.text"
-msgid "<bookmark_value>zooming;page views</bookmark_value> <bookmark_value>views; scaling</bookmark_value> <bookmark_value>screen; scaling</bookmark_value> <bookmark_value>pages; scaling</bookmark_value>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formats </caseinline></switchinline>"
msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3154682\n"
-"1\n"
+"02070000.xhp\n"
+"par_id3125863\n"
+"54\n"
"help.text"
-msgid "<link href=\"text/shared/01/03010000.xhp\">Zoom & View Layout</link>"
+msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSATTRS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cell format attributes. </caseinline></switchinline></ahelp>"
msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3149578\n"
-"2\n"
+"02070000.xhp\n"
+"hd_id3156282\n"
+"65\n"
"help.text"
-msgid "<variable id=\"massstabtext\"><ahelp hid=\".uno:Zoom\">Reduces or enlarges the screen display of %PRODUCTNAME.</ahelp></variable> The current zoom factor is displayed as a percentage value on the <emph>Status</emph> bar."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Objects </caseinline></switchinline>"
msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3149655\n"
-"26\n"
+"02070000.xhp\n"
+"par_id3149810\n"
+"66\n"
"help.text"
-msgid "Zooming is handled differently on Unix, Linux, and Windows platforms. A document saved with a 100% zoom factor in Windows is displayed at a larger zoom factor on Unix/Linux platforms. To change the zoom factor, double-click or right-click the percentage value on the <emph>Status</emph> bar, and select the zoom factor that you want."
+msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_INSCONT_BTN_INSOBJECTS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects. </caseinline></switchinline></ahelp>"
msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3149669\n"
-"3\n"
+"02070000.xhp\n"
+"hd_id3150440\n"
+"19\n"
"help.text"
-msgid "Zoom factor"
-msgstr "Zvogëlo"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Operations </caseinline></switchinline>"
+msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3154389\n"
-"4\n"
+"02070000.xhp\n"
+"par_id3151351\n"
+"38\n"
"help.text"
-msgid "Set the zoom factor at which to display the current document and all documents of the same type that you open thereafter."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Select the operation to apply when you paste cells into your sheet. </caseinline></switchinline>"
msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3153351\n"
+"02070000.xhp\n"
+"hd_id3153952\n"
"20\n"
"help.text"
-msgid "Optimal"
-msgstr "Optimale"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">None </caseinline></switchinline>"
+msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3144760\n"
+"02070000.xhp\n"
+"par_id3147348\n"
"21\n"
"help.text"
-msgid "<ahelp hid=\"HID_MNU_ZOOM_OPTIMAL\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Resizes the display to fit the width of the selected cell area at the moment the command is started.</caseinline><defaultinline>Resizes the display to fit the width of the text in the document at .</defaultinline></switchinline></ahelp>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_NOOP\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Does not apply an operation when you insert the cell range from the clipboard. The contents of the clipboard will replace existing cell contents. </caseinline></switchinline></ahelp>"
msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3151210\n"
+"02070000.xhp\n"
+"hd_id3154988\n"
"22\n"
"help.text"
-msgid "Fit width and height"
-msgstr "A~utoPërshtat gjerësinë dhe lartësinë"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Add </caseinline></switchinline>"
+msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3150543\n"
-"25\n"
+"02070000.xhp\n"
+"par_id3159196\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\"HID_MNU_ZOOM_WHOLE_PAGE\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Resizes the display to fit the width and height of the selected cell area at the moment the command is started.</caseinline><defaultinline>Displays the entire page on your screen.</defaultinline></switchinline></ahelp>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_ADD\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells. </caseinline></switchinline></ahelp>"
msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3152771\n"
+"02070000.xhp\n"
+"hd_id3145263\n"
"24\n"
"help.text"
-msgid "Fit width"
-msgstr "Gjerësia e plotë"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Subtract </caseinline></switchinline>"
+msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3143231\n"
-"23\n"
+"02070000.xhp\n"
+"par_id3154149\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"HID_MNU_ZOOM_PAGE_WIDTH\">Displays the complete width of the document page. The top and bottom edges of the page may not be visible.</ahelp>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_SUB\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Subtracts the values in the clipboard cells from the values in the target cells. </caseinline></switchinline></ahelp>"
msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3153106\n"
-"9\n"
+"02070000.xhp\n"
+"hd_id3155312\n"
+"26\n"
"help.text"
-msgid "100 %"
-msgstr "Pamja 100%"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Multiply </caseinline></switchinline>"
+msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3147353\n"
-"10\n"
+"02070000.xhp\n"
+"par_id3155307\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/zoomdialog/100pc\">Displays the document at its actual size.</ahelp>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_MUL\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Multiplies the values in the clipboard cells with the values in the target cells. </caseinline></switchinline></ahelp>"
msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3153191\n"
-"15\n"
+"02070000.xhp\n"
+"hd_id3154320\n"
+"28\n"
"help.text"
-msgid "Variable"
-msgstr "Variabël"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Divide </caseinline></switchinline>"
+msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3159125\n"
-"16\n"
+"02070000.xhp\n"
+"par_id3155417\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/zoomdialog/zoomsb\">Enter the zoom factor at which you want to display the document. Enter a percentage in the box.</ahelp>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_DIV\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Divides the values in the target cells by the values in the clipboard cells. </caseinline></switchinline></ahelp>"
msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id7319864\n"
+"02070000.xhp\n"
+"hd_id3147048\n"
+"55\n"
"help.text"
-msgid "View layout"
-msgstr "Ndrysho formëdhënien..."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Options </caseinline></switchinline>"
+msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3423871\n"
+"02070000.xhp\n"
+"par_id3156283\n"
+"56\n"
"help.text"
-msgid "For text documents, you can set the view layout. Reduce the zoom factor to see the effects of different view layout settings."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Sets the paste options for the clipboard contents. </caseinline></switchinline>"
msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id3818475\n"
+"02070000.xhp\n"
+"hd_id3151052\n"
+"30\n"
"help.text"
-msgid "Automatic"
-msgstr "Automatike"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Skip empty cells </caseinline></switchinline>"
+msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id3187353\n"
+"02070000.xhp\n"
+"par_id3148775\n"
+"31\n"
"help.text"
-msgid "<ahelp hid=\".\">The automatic view layout displays pages side by side, as many as the zoom factor allows.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_SKIP_EMPTY\">Empty cells from the clipboard do not replace target cells. If you use this option in conjunction with the <emph>Multiply</emph> or the <emph>Divide</emph> operation, the operation is not applied to the target cell of an empty cell in the clipboard.</ahelp></caseinline></switchinline>"
msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id8455153\n"
+"02070000.xhp\n"
+"par_id3155084\n"
+"32\n"
"help.text"
-msgid "Single page"
-msgstr "Numri i faqes"
+msgid "If you select a mathematical operation and clear the<emph> Skip empty cells </emph>box, empty cells in the clipboard are treated as zeroes. For example, if you apply the <emph>Multiply</emph> operation, the target cells are filled with zeroes."
+msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id9912411\n"
+"02070000.xhp\n"
+"hd_id3147173\n"
+"33\n"
"help.text"
-msgid "<ahelp hid=\".\">The single page view layout displays pages beneath each other, but never side by side.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Transpose </caseinline></switchinline>"
msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id9204992\n"
+"02070000.xhp\n"
+"par_id3147223\n"
+"34\n"
"help.text"
-msgid "Columns"
-msgstr "Kolonat"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_TRANSPOSE\">The rows of the range in the clipboard are pasted to become columns of the output range. The columns of the range in the clipboard are pasted to become rows.</ahelp></caseinline></switchinline>"
+msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id1993774\n"
+"02070000.xhp\n"
+"hd_id3152971\n"
+"35\n"
"help.text"
-msgid "<ahelp hid=\".\">In columns view layout you see pages in a given number of columns side by side. Enter the number of columns.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Link </caseinline></switchinline>"
msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"hd_id2949919\n"
+"02070000.xhp\n"
+"par_id3146969\n"
+"36\n"
"help.text"
-msgid "Book mode"
-msgstr "Modi piksel"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_LINK\">Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the <emph>Insert All</emph> option is also selected. </ahelp></caseinline></switchinline>"
+msgstr ""
-#: 03010000.xhp
+#: 02070000.xhp
msgctxt ""
-"03010000.xhp\n"
-"par_id2355113\n"
+"02070000.xhp\n"
+"par_id3145667\n"
+"37\n"
"help.text"
-msgid "<ahelp hid=\".\">In book mode view layout you see two pages side by side as in an open book. The first page is a right page with an odd page number.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">You can also link sheets within the same spreadsheet. When you link to other files, a <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE link\">DDE link</link> is automatically created. A DDE link is inserted as a matrix formula and can only be modified as a whole. </caseinline></switchinline>"
msgstr ""
-#: formatting_mark.xhp
+#: 02070000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"tit\n"
+"02070000.xhp\n"
+"hd_id3146914\n"
+"57\n"
"help.text"
-msgid "Formatting Mark"
-msgstr "Shenjë piksimi"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Shift Cells </caseinline></switchinline>"
+msgstr ""
-#: formatting_mark.xhp
+#: 02070000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"bm_id9930722\n"
+"02070000.xhp\n"
+"par_id3145169\n"
+"58\n"
"help.text"
-msgid "<bookmark_value>CTL;(not) wrapping words</bookmark_value> <bookmark_value>words;wrapping in CTL</bookmark_value>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Set the shift options for the target cells when the clipboard content is inserted. </caseinline></switchinline>"
msgstr ""
-#: formatting_mark.xhp
+#: 02070000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"hd_id030220091035120\n"
+"02070000.xhp\n"
+"hd_id3155518\n"
+"59\n"
"help.text"
-msgid "<variable id=\"formattingmark\"><link href=\"text/shared/01/formatting_mark.xhp\">Formatting Mark</link></variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Don't shift </caseinline></switchinline>"
msgstr ""
-#: formatting_mark.xhp
+#: 02070000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"par_id0302200910351248\n"
+"02070000.xhp\n"
+"par_id3154158\n"
+"60\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu to insert special formatting marks. Enable CTL for more commands.</ahelp>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_NONE\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserted cells replace the target cells. </caseinline></switchinline></ahelp>"
msgstr ""
-#: formatting_mark.xhp
+#: 02070000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"hd_id9996948\n"
+"02070000.xhp\n"
+"hd_id3148483\n"
+"61\n"
"help.text"
-msgid "Non-breaking space"
-msgstr "Shto hapësirën e pandërprerë"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Down </caseinline></switchinline>"
+msgstr ""
-#: formatting_mark.xhp
+#: 02070000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"par_id8326975\n"
+"02070000.xhp\n"
+"par_id3152962\n"
+"62\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts a space that will keep bordering characters together on line breaks.</ahelp>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_DOWN\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Target cells are shifted downward when you insert cells from the clipboard. </caseinline></switchinline></ahelp>"
msgstr ""
-#: formatting_mark.xhp
+#: 02070000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"hd_id6383556\n"
+"02070000.xhp\n"
+"hd_id3145621\n"
+"63\n"
"help.text"
-msgid "Non-breaking hyphen"
-msgstr "Shto hifenin e pandërprerë"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Right </caseinline></switchinline>"
+msgstr ""
-#: formatting_mark.xhp
+#: 02070000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"par_id8469191\n"
+"02070000.xhp\n"
+"par_id3159264\n"
+"64\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts a hyphen that will keep bordering characters together on line breaks.</ahelp>"
+msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_RIGHT\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Target cells are shifted to the right when you insert cells from the clipboard. </caseinline></switchinline></ahelp>"
msgstr ""
-#: formatting_mark.xhp
+#: 02090000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"hd_id3306680\n"
+"02090000.xhp\n"
+"tit\n"
"help.text"
-msgid "Optional hyphen"
-msgstr "Shto vizën bashkangjitëse opcionale"
+msgid "Select All"
+msgstr "Zgjedh të gjitha"
-#: formatting_mark.xhp
+#: 02090000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"par_id9407330\n"
+"02090000.xhp\n"
+"hd_id3145138\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts an invisible hyphen within a word that will appear and create a line break once it becomes the last character in a line.</ahelp>"
+msgid "<link href=\"text/shared/01/02090000.xhp\" name=\"Select All\">Select All</link>"
msgstr ""
-#: formatting_mark.xhp
+#: 02090000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"hd_id2295907\n"
+"02090000.xhp\n"
+"par_id3149999\n"
+"2\n"
"help.text"
-msgid "No-width optional break"
+msgid "<variable id=\"allestext\"><ahelp hid=\".uno:Select\" visibility=\"visible\">Selects the entire content of the current file, frame, or text object.</ahelp></variable>"
msgstr ""
-#: formatting_mark.xhp
+#: 02090000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"par_id1536301\n"
+"02090000.xhp\n"
+"par_id3155261\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts an invisible space within a word that will insert a line break once it becomes the last character in a line. Available when complex text layout (CTL) is enabled.</ahelp>"
+msgid "<switchinline select=\"appl\"> <caseinline select=\"CALC\">To select all of the cells on a sheet, click the button at the intersection of the column and row header in the top left corner of the sheet.</caseinline> <defaultinline/> </switchinline>"
msgstr ""
-#: formatting_mark.xhp
+#: 02090000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"hd_id3245643\n"
+"02090000.xhp\n"
+"par_id3154046\n"
+"4\n"
"help.text"
-msgid "No-width no break"
-msgstr "Pa thyerje të faqes"
+msgid "<switchinline select=\"appl\"> <caseinline select=\"CALC\">To select all of the sheets in a spreadsheet file, right-click the name tab of a sheet, and then choose <emph>Select All Sheets</emph>.<ahelp hid=\".uno:TableSelectAll\" visibility=\"hidden\">Selects all of the sheets in the current spreadsheet.</ahelp></caseinline> <defaultinline/> </switchinline>"
+msgstr ""
-#: formatting_mark.xhp
+#: 02100000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"par_id1085238\n"
+"02100000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts an invisible space within a word that will keep the word together at the end of a line. Available when complex text layout (CTL) is enabled.</ahelp>"
-msgstr ""
+msgid "Find & Replace"
+msgstr "Gjej dhe Zëvendëso"
-#: formatting_mark.xhp
+#: 02100000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"hd_id4634540\n"
+"02100000.xhp\n"
+"hd_id3154044\n"
+"1\n"
"help.text"
-msgid "Left-to-right mark"
-msgstr "Nga e djathta në të majtë (vertikalisht)"
+msgid "<variable id=\"02100000\"><link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link></variable>"
+msgstr ""
-#: formatting_mark.xhp
+#: 02100000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"par_id6690878\n"
+"02100000.xhp\n"
+"par_id3149893\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts a text direction mark that affects the text direction of any text following the mark. Available when complex text layout (CTL) is enabled.</ahelp>"
+msgid "<variable id=\"suchenersetzentext\"><ahelp hid=\".uno:SearchDialog\">Searches for or replaces text or formats in the current document.</ahelp></variable>"
msgstr ""
-#: formatting_mark.xhp
+#: 02100000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"hd_id9420148\n"
+"02100000.xhp\n"
+"par_id00001\n"
"help.text"
-msgid "Right-to-left mark"
-msgstr "Nga e djathta në të majtë (vertikalisht)"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Type the text to search in the current document. Press Enter to search the text.</ahelp>"
+msgstr ""
-#: formatting_mark.xhp
+#: 02100000.xhp
msgctxt ""
-"formatting_mark.xhp\n"
-"par_id923184\n"
+"02100000.xhp\n"
+"par_id00002\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts a text direction mark that affects the text direction of any text following the mark. Available when complex text layout (CTL) is enabled.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to search the next occurrence in downward direction.</ahelp>"
msgstr ""
-#: 05080100.xhp
+#: 02100000.xhp
msgctxt ""
-"05080100.xhp\n"
-"tit\n"
+"02100000.xhp\n"
+"par_id00003\n"
"help.text"
-msgid "Left"
-msgstr "Majtas"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to search the next occurrence in upward direction.</ahelp>"
+msgstr ""
-#: 05080100.xhp
+#: 02100000.xhp
msgctxt ""
-"05080100.xhp\n"
-"hd_id3154349\n"
-"1\n"
+"02100000.xhp\n"
+"hd_id3152425\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/05080100.xhp\" name=\"Left\">Left</link>"
-msgstr ""
+msgid "Search For"
+msgstr "Kërko për:"
-#: 05080100.xhp
+#: 02100000.xhp
msgctxt ""
-"05080100.xhp\n"
-"par_id3150756\n"
-"2\n"
+"02100000.xhp\n"
+"par_id3155805\n"
+"4\n"
"help.text"
-msgid "<variable id=\"linkstext\"><ahelp hid=\".uno:LeftPara\" visibility=\"visible\">Aligns the selected paragraph(s) to the left page margin.</ahelp></variable>"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/searchlist\">Enter the text that you want to search for, or select a previous search from the list.</ahelp>"
msgstr ""
-#: 05030000.xhp
+#: 02100000.xhp
msgctxt ""
-"05030000.xhp\n"
-"tit\n"
+"02100000.xhp\n"
+"par_id3153683\n"
+"189\n"
"help.text"
-msgid "Paragraph"
-msgstr "Paragraf"
+msgid "Search options are listed in the <emph>Options </emph>area of the dialog"
+msgstr ""
-#: 05030000.xhp
+#: 02100000.xhp
msgctxt ""
-"05030000.xhp\n"
-"hd_id3150467\n"
-"1\n"
+"02100000.xhp\n"
+"hd_id3152551\n"
+"5\n"
"help.text"
-msgid "Paragraph"
-msgstr "Paragraf"
+msgid "Replace With"
+msgstr "Zëvendëso 1/2 ...me..."
-#: 05030000.xhp
+#: 02100000.xhp
msgctxt ""
-"05030000.xhp\n"
-"par_id3148668\n"
-"2\n"
+"02100000.xhp\n"
+"par_id3156426\n"
+"6\n"
"help.text"
-msgid "<variable id=\"absatztext\"><ahelp hid=\".uno:EditStyle\">Modifies the format of the current paragraph, such as indents and alignment.</ahelp></variable> To modify the font of the current paragraph, select the entire paragraph, choose Format - Character, and then click on the Font tab."
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/replacelist\">Enter the replacement text, or select a recent replacement text or style from the list.</ahelp>"
msgstr ""
-#: 05030000.xhp
+#: 02100000.xhp
msgctxt ""
-"05030000.xhp\n"
-"par_id3156042\n"
-"3\n"
+"02100000.xhp\n"
+"par_id3150506\n"
+"190\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The paragraph style for the current paragraph is displayed at the <emph>Formatting</emph> toolbar, and is highlighted in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles and Formatting window</link>. </caseinline></switchinline>"
+msgid "Replacement options are listed in the <emph>Options </emph>area of the dialog."
msgstr ""
-#: 05250400.xhp
+#: 02100000.xhp
msgctxt ""
-"05250400.xhp\n"
-"tit\n"
+"02100000.xhp\n"
+"hd_id3166410\n"
+"8\n"
"help.text"
-msgid "Send to Back"
-msgstr "Dërgo Prapa"
+msgid "Options"
+msgstr "Opcionet"
-#: 05250400.xhp
+#: 02100000.xhp
msgctxt ""
-"05250400.xhp\n"
-"hd_id3155620\n"
-"1\n"
+"02100000.xhp\n"
+"hd_id3148538\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250400.xhp\" name=\"Send to Back\">Send to Back</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
msgstr ""
-#: 05250400.xhp
+#: 02100000.xhp
msgctxt ""
-"05250400.xhp\n"
-"par_id3156116\n"
-"2\n"
+"02100000.xhp\n"
+"par_id3149579\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\".uno:SendToBack\" visibility=\"visible\">Moves the selected object to the bottom of the stacking order, so that it is behind the other objects.</ahelp>"
+msgid "<variable id=\"ganze\"><ahelp hid=\"svx/ui/findreplacedialog/wholewords\">Searches for whole words or cells that are identical to the search text.</ahelp></variable>"
msgstr ""
-#: 05250400.xhp
+#: 02100000.xhp
msgctxt ""
-"05250400.xhp\n"
-"par_id3152895\n"
-"3\n"
+"02100000.xhp\n"
+"hd_id3156192\n"
+"14\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
-msgstr ""
+msgid "Backwards"
+msgstr "Mbrapsht"
-#: 05070400.xhp
+#: 02100000.xhp
msgctxt ""
-"05070400.xhp\n"
-"tit\n"
+"02100000.xhp\n"
+"par_id3150771\n"
+"15\n"
"help.text"
-msgid "Align Top"
-msgstr "Rreshto në Majë"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/backwards\">Search starts at the current cursor position and goes backwards to the beginning of the file.</ahelp>"
+msgstr ""
-#: 05070400.xhp
+#: 02100000.xhp
msgctxt ""
-"05070400.xhp\n"
-"hd_id3160463\n"
-"1\n"
+"02100000.xhp\n"
+"hd_id3144439\n"
+"16\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070400.xhp\" name=\"Align Top\">Align Top</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Regular expressions</defaultinline></switchinline>"
msgstr ""
-#: 05070400.xhp
+#: 02100000.xhp
msgctxt ""
-"05070400.xhp\n"
-"par_id3154613\n"
-"2\n"
+"02100000.xhp\n"
+"par_id3155342\n"
+"156\n"
"help.text"
-msgid "<ahelp hid=\".uno:AlignTop\">Vertically aligns the top edges of the selected objects. If only one object is selected in Draw or Impress, the top edge of the object is aligned to the upper page margin.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Allows you to use wildcards in your search.</defaultinline></switchinline>"
msgstr ""
-#: 05070400.xhp
+#: 02100000.xhp
msgctxt ""
-"05070400.xhp\n"
-"par_id3154230\n"
-"3\n"
+"02100000.xhp\n"
+"par_id3727225\n"
"help.text"
-msgid "Objects are aligned to the top edge of the topmost object in the selection. <embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Allows you to use wildcards in your search.</ahelp>"
msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"tit\n"
+"02100000.xhp\n"
+"hd_id3154924\n"
+"45\n"
"help.text"
-msgid "Versions"
-msgstr "Verzionet"
+msgid "Match case"
+msgstr "Përputh shkronjat"
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"bm_id1759697\n"
+"02100000.xhp\n"
+"bm_id3154760\n"
"help.text"
-msgid "<bookmark_value>versions;file saving as, restriction</bookmark_value>"
+msgid "<bookmark_value>case sensitivity;searching</bookmark_value>"
msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3143272\n"
-"1\n"
+"02100000.xhp\n"
+"par_id3154760\n"
+"46\n"
"help.text"
-msgid "<link href=\"text/shared/01/01190000.xhp\" name=\"Versions\">Versions</link>"
+msgid "<variable id=\"exakt\"><ahelp hid=\"svx/ui/findreplacedialog/matchcase\">Distinguishes between uppercase and lowercase characters.</ahelp></variable>"
msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3157898\n"
-"2\n"
+"02100000.xhp\n"
+"bm_id3147264\n"
"help.text"
-msgid "<variable id=\"versionentext\"><ahelp hid=\".uno:VersionDialog\">Saves and organizes multiple versions of the current document in the same file. You can also open, delete, and compare previous versions.</ahelp></variable>"
+msgid "<bookmark_value>finding; selections</bookmark_value>"
msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3153527\n"
-"22\n"
+"02100000.xhp\n"
+"hd_id3147264\n"
+"47\n"
"help.text"
-msgid "If you save a copy of a file that contains version information (by choosing <emph>File - Save As)</emph>, the version information is not saved with the file."
-msgstr ""
+msgid "Current selection only"
+msgstr "Krijo vetëm rresht"
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3149750\n"
-"4\n"
+"02100000.xhp\n"
+"par_id3150866\n"
+"48\n"
"help.text"
-msgid "New versions"
-msgstr "Versionet e reja"
+msgid "<ahelp hid=\".\">Searches only the selected text or cells.</ahelp>"
+msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3163802\n"
-"5\n"
+"02100000.xhp\n"
+"par_id8876918\n"
"help.text"
-msgid "Set the options for saving a new version of the document."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the Search for list. To specify a replacement style, select a style from the Replace with list.</ahelp>"
msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3147243\n"
-"6\n"
+"02100000.xhp\n"
+"hd_id3153524\n"
+"49\n"
"help.text"
-msgid "Save New Version"
-msgstr "Ruaj versionin e ri"
+msgid "Search for Styles / Including Styles"
+msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3149149\n"
-"7\n"
+"02100000.xhp\n"
+"par_id3155103\n"
+"50\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_SAVE\">Saves the current state of the document as a new version. If you want, you can also enter comments in the <emph>Insert Version Comment </emph>dialog before you save the new version.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/layout\">Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the <emph>Search for </emph>list. To specify a replacement style, select a style from the <emph>Replace with</emph> list.</ahelp>"
msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3153348\n"
-"8\n"
+"02100000.xhp\n"
+"par_idN109CC\n"
"help.text"
-msgid "Insert Version Comment"
-msgstr "Shto komentet e versionit"
+msgid "After you select the attributes that you want to search for, the <emph>Search for Styles</emph> box in the <emph>Options </emph>area of the %PRODUCTNAME Writer <emph>Find & Replace </emph>dialog changes to <emph>Including Styles</emph>."
+msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3150466\n"
-"9\n"
+"02100000.xhp\n"
+"par_idN109DF\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:MULTILINEEDIT:DLG_COMMENTS:ME_VERSIONS\">Enter a comment here when you are saving a new version. If you clicked <emph>Show </emph>to open this dialog, you cannot edit the comment.</ahelp>"
+msgid "If you want to search for text in which attributes were set by using direct formatting and styles, select the <emph>Including Styles</emph> box."
msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3149514\n"
-"10\n"
+"02100000.xhp\n"
+"hd_id0302200901464169\n"
"help.text"
-msgid "Always save version when closing"
-msgstr "Gjithmonë ruaje versionin në mbyllje"
+msgid "Comments"
+msgstr "Komentet"
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3153823\n"
-"11\n"
+"02100000.xhp\n"
+"par_id0302200901464150\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:CHECKBOX:DLG_VERSIONS:CB_SAVEONCLOSE\">If you have made changes to your document, $[officename] automatically saves a new version when you close the document.</ahelp>"
+msgid "<ahelp hid=\".\">In Writer, you can select to include the comment texts in your searches.</ahelp>"
msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id6663823\n"
+"02100000.xhp\n"
+"hd_id3149167\n"
+"204\n"
"help.text"
-msgid "If you save the document manually, do not change the document after saving, and then close, no new version will be created."
+msgid "<variable id=\"halbnormaltitel\">Match character width (only if Asian languages are enabled)</variable>"
msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3159167\n"
-"12\n"
+"02100000.xhp\n"
+"par_id3145744\n"
+"208\n"
"help.text"
-msgid "Existing versions"
-msgstr "Versionet ekzistuese"
+msgid "<variable id=\"halbnormaltext\"><ahelp hid=\"svx/ui/findreplacedialog/matchcharwidth\">Distinguishes between half-width and full-width character forms.</ahelp></variable>"
+msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3156327\n"
-"13\n"
+"02100000.xhp\n"
+"hd_id3153178\n"
+"205\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:MODALDIALOG:DLG_VERSIONS\">Lists the existing versions of the current document, the date and the time they were created, the author and the associated comments.</ahelp>"
+msgid "<variable id=\"aehnlichtitel\">Sounds like (Japanese) (only if Asian languages are enabled)</variable>"
msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3149578\n"
-"14\n"
+"02100000.xhp\n"
+"par_id3145421\n"
+"206\n"
"help.text"
-msgid "Open"
-msgstr "Hape"
+msgid "<variable id=\"aehnlichtext\"><ahelp hid=\"svx/ui/findreplacedialog/soundslike\">Lets you specify the search options for similar notation used in Japanese text. Select this checkbox, and then click the <emph>...</emph> button to specify the search options. </ahelp></variable>"
+msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3153827\n"
-"15\n"
+"02100000.xhp\n"
+"par_id3149765\n"
+"209\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_OPEN\">Opens the selected version in a read-only window.</ahelp>"
+msgid "<variable id=\"aehnlichbutton\"><ahelp hid=\"svx/ui/findreplacedialog/soundslikebtn\" visibility=\"hidden\">Sets the search options for similar notation used in Japanese text.</ahelp></variable>"
msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3147530\n"
-"16\n"
+"02100000.xhp\n"
+"par_id3148672\n"
+"212\n"
"help.text"
-msgid "Show"
-msgstr "Shfaq"
+msgid "<link href=\"text/shared/optionen/01150200.xhp\" name=\"Searching in Japanese\">Searching in Japanese</link>"
+msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3153061\n"
-"17\n"
+"02100000.xhp\n"
+"hd_id3154299\n"
+"66\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_VIEW\">Displays the entire comment for the selected version.</ahelp>"
+msgid "Find All"
+msgstr "Gjej të gjitha"
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3145785\n"
+"67\n"
+"help.text"
+msgid "Finds and selects all instances of the text or the format that you are searching for in the document (only in Writer and Calc documents)."
msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3154923\n"
-"18\n"
+"02100000.xhp\n"
+"par_id31454242785\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Finds and selects all instances of the text or the format that you are searching for in the document (only in Writer and Calc documents).</ahelp>"
+msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3149669\n"
-"19\n"
+"02100000.xhp\n"
+"hd_id3163821\n"
+"68\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_DELETE\">Deletes the selected version.</ahelp>"
+msgid "Find"
+msgstr "Gjeje"
+
+#: 02100000.xhp
+msgctxt ""
+"02100000.xhp\n"
+"par_id3147436\n"
+"69\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/search\">Finds and selects the next occurrence of the text or format that you searching for in the document.</ahelp>"
msgstr ""
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"hd_id3148739\n"
-"21\n"
+"02100000.xhp\n"
+"hd_id3153742\n"
+"70\n"
"help.text"
-msgid "Compare"
-msgstr "Krahaso"
+msgid "Replace All"
+msgstr "Zevëndëso të gjitha"
-#: 01190000.xhp
+#: 02100000.xhp
msgctxt ""
-"01190000.xhp\n"
-"par_id3152811\n"
-"23\n"
+"02100000.xhp\n"
+"par_id3145660\n"
+"71\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_VERSIONS:PB_COMPARE\">Compare the changes that were made in each version.</ahelp> If you want, you can <link href=\"text/shared/01/02230400.xhp\" name=\"Accept or Reject Changes\"><emph>Accept or Reject Changes</emph></link>."
+msgid "<ahelp hid=\".\">Replaces all of the occurrences of the text or format that you want to replace.</ahelp><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Repeat this command until all replacements on your slide have been made.</caseinline></switchinline>"
msgstr ""
-#: 05250100.xhp
+#: 02100000.xhp
msgctxt ""
-"05250100.xhp\n"
-"tit\n"
+"02100000.xhp\n"
+"hd_id3149065\n"
+"72\n"
"help.text"
-msgid "Bring to Front"
-msgstr "Sjelle përpara"
+msgid "Replace"
+msgstr "Zëvendëso"
-#: 05250100.xhp
+#: 02100000.xhp
msgctxt ""
-"05250100.xhp\n"
-"hd_id3154044\n"
-"1\n"
+"02100000.xhp\n"
+"par_id3151170\n"
+"73\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250100.xhp\" name=\"Bring to Front\">Bring to Front</link>"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/replace\">Replaces the selected text or format that you searched for, and then searches for the next occurrence.</ahelp>"
msgstr ""
-#: 05250100.xhp
+#: 02100000.xhp
msgctxt ""
-"05250100.xhp\n"
-"par_id3149991\n"
-"2\n"
+"02100000.xhp\n"
+"hd_id3147348\n"
+"192\n"
"help.text"
-msgid "<ahelp hid=\".uno:BringToFront\" visibility=\"visible\">Moves the selected object to the top of the stacking order, so that it is in front of other objects.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100200.xhp\" name=\"Attribute\">Attribute</link></caseinline></switchinline>"
msgstr ""
-#: 05250100.xhp
+#: 02100000.xhp
msgctxt ""
-"05250100.xhp\n"
-"par_id3147588\n"
-"3\n"
+"02100000.xhp\n"
+"hd_id3155854\n"
+"193\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100300.xhp\" name=\"Format\">Format</link></caseinline></switchinline>"
msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"tit\n"
+"02100000.xhp\n"
+"par_id8641315\n"
"help.text"
-msgid "Send"
-msgstr "Vëzhguesi i dërgimit"
+msgid "Finds specific text formatting features, such as font types, font effects, and text flow characteristics."
+msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"hd_id3152895\n"
-"1\n"
+"02100000.xhp\n"
+"hd_id3154188\n"
+"135\n"
"help.text"
-msgid "<link href=\"text/shared/01/01160000.xhp\" name=\"Send\">Send</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">No Format</caseinline></switchinline>"
msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"par_id3151262\n"
-"2\n"
+"02100000.xhp\n"
+"par_id3159155\n"
+"136\n"
"help.text"
-msgid "<ahelp hid=\".\">Sends a copy of the current document to different applications.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Click in the <emph>Search for </emph>or the <emph>Replace with </emph>box, and then click this button to remove the search criteria based on formats.</caseinline></switchinline>"
msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"hd_id3154398\n"
-"3\n"
+"02100000.xhp\n"
+"par_id1334269\n"
"help.text"
-msgid "<link href=\"text/shared/01/01160200.xhp\" name=\"Document as E-mail\">Document as E-mail</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click in the Search for or the Replace with box, and then click this button to remove the search criteria based on formats.</ahelp>"
msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"par_id4546342\n"
+"02100000.xhp\n"
+"par_id3150337\n"
+"137\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used.</ahelp>"
+msgid "The search criteria for formatting attributes are displayed under the <emph>Search for </emph>or the <emph>Replace with </emph>box."
msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"par_id6845301\n"
+"02100000.xhp\n"
+"par_id3150113\n"
+"139\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft file format is used.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows more or fewer search options. Click this button again to hide the extended search options.</ahelp>"
msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"hd_id8111514\n"
+"02100000.xhp\n"
+"hd_id3154944\n"
+"140\n"
"help.text"
-msgid "E-mail as OpenDocument Spreadsheet"
-msgstr "Dërgo dokumentet me bashkangjitje si e-mail"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Search in</caseinline></switchinline>"
+msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"par_id5917844\n"
+"02100000.xhp\n"
+"hd_id3146925\n"
+"142\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulas</caseinline></switchinline>"
msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"hd_id5112460\n"
+"02100000.xhp\n"
+"par_id6719870\n"
"help.text"
-msgid "E-mail as Microsoft Excel"
-msgstr "Biff5 (Microsoft Excel 5.0/95)"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for the characters that you specify in formulas and in fixed (not calculated) values. For example, you could look for formulas that contain 'SUM'.</ahelp>"
+msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"par_id5759453\n"
+"02100000.xhp\n"
+"hd_id3149400\n"
+"144\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft Excel file format is used.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Values</caseinline></switchinline>"
msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"hd_id6694540\n"
+"02100000.xhp\n"
+"par_id3146969\n"
+"145\n"
"help.text"
-msgid "E-mail as OpenDocument Presentation"
-msgstr "Dërgo dokumentet me bashkangjitje si e-mail"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches for the characters that you specify in values and in the results of formulas.</caseinline></switchinline>"
+msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"par_id7829218\n"
+"02100000.xhp\n"
+"par_id6064943\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for the characters that you specify in values and in the results of formulas.</ahelp>"
msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"hd_id2099063\n"
+"02100000.xhp\n"
+"hd_id3145650\n"
+"146\n"
"help.text"
-msgid "E-mail as Microsoft PowerPoint Presentation"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments</caseinline></switchinline>"
msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"par_id8319650\n"
+"02100000.xhp\n"
+"par_id3153947\n"
+"147\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft PowerPoint file format is used.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches for the characters that you specify in the comments that are attached to the cells.</caseinline></switchinline>"
msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"hd_id9657277\n"
+"02100000.xhp\n"
+"par_id9799798\n"
"help.text"
-msgid "E-mail as OpenDocument Text"
-msgstr "Dërgo dokumentet me bashkangjitje si e-mail"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for the characters that you specify in the comments that are attached to the cells.</ahelp>"
+msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"par_id9085055\n"
+"02100000.xhp\n"
+"hd_id3153004\n"
+"148\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a new window in your default e-mail program with the current document as an attachment. The OpenDocument file format is used.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Search direction</caseinline></switchinline>"
msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"hd_id7941831\n"
+"02100000.xhp\n"
+"par_id3156332\n"
+"207\n"
"help.text"
-msgid "E-mail as Microsoft Word"
-msgstr "Dërgo dokumentet me bashkangjitje si e-mail"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Determines the order for searching the cells.</caseinline></switchinline>"
+msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"par_id5421918\n"
+"02100000.xhp\n"
+"hd_id3155064\n"
+"150\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a new window in your default e-mail program with the current document as an attachment. The Microsoft Word file format is used.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">By Rows</caseinline></switchinline>"
msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"hd_id3155391\n"
-"5\n"
+"02100000.xhp\n"
+"par_id743430\n"
"help.text"
-msgid "<link href=\"text/shared/01/01160300.xhp\" name=\"Create Master Document\">Create Master Document</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches from left to right across the rows.</ahelp>"
msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"hd_id3153345\n"
-"6\n"
+"02100000.xhp\n"
+"hd_id3156277\n"
+"152\n"
"help.text"
-msgid "<link href=\"text/swriter/01/01160500.xhp\" name=\"Create HTML Document\">Create HTML Document</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">By Columns</caseinline></switchinline>"
msgstr ""
-#: 01160000.xhp
+#: 02100000.xhp
msgctxt ""
-"01160000.xhp\n"
-"hd_id3149811\n"
-"4\n"
+"02100000.xhp\n"
+"par_id3145207\n"
+"153\n"
"help.text"
-msgid "<link href=\"text/swriter/01/01160300.xhp\" name=\"Create AutoAbstract\">Create AutoAbstract</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches from top to bottom through the columns.</caseinline></switchinline>"
msgstr ""
-#: 03020000.xhp
+#: 02100000.xhp
msgctxt ""
-"03020000.xhp\n"
-"tit\n"
+"02100000.xhp\n"
+"par_id3470564\n"
"help.text"
-msgid "Standard Bar"
-msgstr "Shiriti i kontrollit"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches from top to bottom through the columns.</ahelp>"
+msgstr ""
-#: 03020000.xhp
+#: 02100000.xhp
msgctxt ""
-"03020000.xhp\n"
-"bm_id3150467\n"
+"02100000.xhp\n"
+"hd_id3153764\n"
+"194\n"
"help.text"
-msgid "<bookmark_value>standard bar on/off</bookmark_value>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Extras</caseinline></switchinline>"
msgstr ""
-#: 03020000.xhp
+#: 02100000.xhp
msgctxt ""
-"03020000.xhp\n"
-"hd_id3150467\n"
-"1\n"
+"02100000.xhp\n"
+"bm_id3152960\n"
"help.text"
-msgid "<link href=\"text/shared/01/03020000.xhp\" name=\"Standard Bar\">Standard Bar</link>"
+msgid "<bookmark_value>searching; all sheets</bookmark_value> <bookmark_value>finding; in all sheets</bookmark_value> <bookmark_value>sheets; searching all</bookmark_value>"
msgstr ""
-#: 03020000.xhp
+#: 02100000.xhp
msgctxt ""
-"03020000.xhp\n"
-"par_id3149495\n"
-"2\n"
+"02100000.xhp\n"
+"hd_id3152960\n"
+"196\n"
"help.text"
-msgid "<ahelp hid=\".uno:FunctionBarVisible\">Shows or hides the <emph>Standard Bar</emph>.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Search in all sheets</caseinline></switchinline>"
msgstr ""
-#: 07080000.xhp
+#: 02100000.xhp
msgctxt ""
-"07080000.xhp\n"
-"tit\n"
+"02100000.xhp\n"
+"par_id3145619\n"
+"197\n"
"help.text"
-msgid "Document List"
-msgstr "Kryerresht i listës"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches through all of the sheets in the current spreadsheet file.</caseinline></switchinline>"
+msgstr ""
-#: 07080000.xhp
+#: 02100000.xhp
msgctxt ""
-"07080000.xhp\n"
-"hd_id3155620\n"
-"1\n"
+"02100000.xhp\n"
+"par_id4089175\n"
"help.text"
-msgid "<link href=\"text/shared/01/07080000.xhp\" name=\"Document List\">Document List</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches through all of the sheets in the current spreadsheet file.</ahelp>"
msgstr ""
-#: 07080000.xhp
+#: 02100000.xhp
msgctxt ""
-"07080000.xhp\n"
-"par_id3147273\n"
-"2\n"
+"02100000.xhp\n"
+"par_id3151101\n"
+"188\n"
"help.text"
-msgid "Lists the currently open documents. Select the name of a document in the list to switch to that document."
+msgid "After you close the <emph>Find & Replace</emph> dialog, you can still search using the last search criteria that you entered, by pressing Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F."
msgstr ""
-#: 05090000.xhp
+#: 02100001.xhp
msgctxt ""
-"05090000.xhp\n"
+"02100001.xhp\n"
"tit\n"
"help.text"
-msgid "Font"
-msgstr "Fonti"
+msgid "List of Regular Expressions"
+msgstr "~Mundëso shprehjet e rregullta në formula"
-#: 05090000.xhp
+#: 02100001.xhp
msgctxt ""
-"05090000.xhp\n"
-"bm_id3155271\n"
+"02100001.xhp\n"
+"bm_id3146765\n"
"help.text"
-msgid "<bookmark_value>fonts; text objects</bookmark_value><bookmark_value>text objects; fonts</bookmark_value>"
+msgid "<bookmark_value>regular expressions; list of</bookmark_value> <bookmark_value>lists;regular expressions</bookmark_value> <bookmark_value>replacing;tab stops (regular expressions)</bookmark_value> <bookmark_value>tab stops;regular expressions</bookmark_value> <bookmark_value>concatenation, see ampersand symbol</bookmark_value> <bookmark_value>ampersand symbol, see also operators</bookmark_value>"
msgstr ""
-#: 05090000.xhp
+#: 02100001.xhp
msgctxt ""
-"05090000.xhp\n"
-"hd_id3155271\n"
-"1\n"
+"02100001.xhp\n"
+"hd_id3146765\n"
+"203\n"
"help.text"
-msgid "<link href=\"text/shared/01/05090000.xhp\" name=\"Font\">Font</link>"
+msgid "<variable id=\"02100001\"><link href=\"text/shared/01/02100001.xhp\">List of Regular Expressions</link></variable>"
msgstr ""
-#: 05090000.xhp
+#: 02100001.xhp
msgctxt ""
-"05090000.xhp\n"
-"par_id3153383\n"
-"2\n"
+"02100001.xhp\n"
+"par_id3149741\n"
+"17\n"
"help.text"
-msgid "Set the font options for the selected text."
-msgstr ""
+msgid "Character"
+msgstr "Karakter"
-#: 01100100.xhp
+#: 02100001.xhp
msgctxt ""
-"01100100.xhp\n"
-"tit\n"
+"02100001.xhp\n"
+"par_id3155577\n"
+"18\n"
"help.text"
-msgid "Description"
-msgstr "Përshkrimi"
+msgid "Result/Use"
+msgstr "Shfrytëzo ekzistuesin"
-#: 01100100.xhp
+#: 02100001.xhp
msgctxt ""
-"01100100.xhp\n"
-"hd_id3147588\n"
-"1\n"
+"02100001.xhp\n"
+"par_id6600543\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100100.xhp\" name=\"Description\">Description</link>"
-msgstr ""
+msgid "Any character"
+msgstr "Kodi i karakterit"
-#: 01100100.xhp
+#: 02100001.xhp
msgctxt ""
-"01100100.xhp\n"
-"par_id3154682\n"
-"2\n"
+"02100001.xhp\n"
+"par_id9824518.00000001\n"
"help.text"
-msgid "<ahelp hid=\"HID_DOCINFODESC\">Contains descriptive information about the document.</ahelp>"
+msgid "Represents the given character unless otherwise specified."
msgstr ""
-#: 01100100.xhp
+#: 02100001.xhp
msgctxt ""
-"01100100.xhp\n"
-"hd_id3152372\n"
-"3\n"
+"02100001.xhp\n"
+"par_id3152427\n"
+"19\n"
"help.text"
-msgid "Title"
-msgstr "Titulli"
+msgid "."
+msgstr ""
-#: 01100100.xhp
+#: 02100001.xhp
msgctxt ""
-"01100100.xhp\n"
-"par_id3156042\n"
-"4\n"
+"02100001.xhp\n"
+"par_id3149031\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:TP_DOCINFODESC:ED_TITLE\">Enter a title for the document.</ahelp>"
+msgid "Represents any single character except for a line break or paragraph break. For example, the search term \"sh.rt\" returns both \"shirt\" and \"short\"."
msgstr ""
-#: 01100100.xhp
+#: 02100001.xhp
msgctxt ""
-"01100100.xhp\n"
-"hd_id3145669\n"
-"5\n"
+"02100001.xhp\n"
+"par_id3154682\n"
+"21\n"
"help.text"
-msgid "Subject"
-msgstr "Tema"
+msgid "^"
+msgstr ""
-#: 01100100.xhp
+#: 02100001.xhp
msgctxt ""
-"01100100.xhp\n"
-"par_id3147571\n"
-"6\n"
+"02100001.xhp\n"
+"par_id3155351\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:TP_DOCINFODESC:ED_THEMA\">Enter a subject for the document. You can use a subject to group documents with similar contents.</ahelp>"
+msgid "Only finds the search term if the term is at the beginning of a paragraph. Special objects such as empty fields or character-anchored frames, at the beginning of a paragraph are ignored. Example: \"^Peter\"."
msgstr ""
-#: 01100100.xhp
+#: 02100001.xhp
msgctxt ""
-"01100100.xhp\n"
-"hd_id3156426\n"
-"7\n"
+"02100001.xhp\n"
+"par_id3159194\n"
+"23\n"
"help.text"
-msgid "Keywords"
-msgstr "Fjalët kyçe"
+msgid "$"
+msgstr ""
-#: 01100100.xhp
+#: 02100001.xhp
msgctxt ""
-"01100100.xhp\n"
-"par_id3155338\n"
-"8\n"
+"02100001.xhp\n"
+"par_id3152542\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:TP_DOCINFODESC:ED_KEYWORDS\">Enter the words that you want to use to index the content of your document. Keywords must be separated by commas. A keyword can contain white space characters or semicolons.</ahelp>"
+msgid "Only finds the search term if the term appears at the end of a paragraph. Special objects such as empty fields or character-anchored frames at the end of a paragraph are ignored. Example: \"Peter$\"."
msgstr ""
-#: 01100100.xhp
+#: 02100001.xhp
msgctxt ""
-"01100100.xhp\n"
-"hd_id3148620\n"
-"9\n"
+"02100001.xhp\n"
+"par_id3152543\n"
"help.text"
-msgid "Comments"
-msgstr "Komentet"
+msgid "$ on its own matches the end of a paragraph. This way it is possible to search and replace paragraph breaks."
+msgstr ""
-#: 01100100.xhp
+#: 02100001.xhp
msgctxt ""
-"01100100.xhp\n"
-"par_id3155391\n"
-"10\n"
+"02100001.xhp\n"
+"par_id3156414\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:MULTILINEEDIT:TP_DOCINFODESC:ED_COMMENT\">Enter comments to help identify the document.</ahelp>"
+msgid "*"
msgstr ""
-#: password_main.xhp
+#: 02100001.xhp
msgctxt ""
-"password_main.xhp\n"
-"tit\n"
+"02100001.xhp\n"
+"par_id3155555\n"
+"26\n"
"help.text"
-msgid "Enter Master Password"
-msgstr "Shkruaj parollwn pwr 'XX'"
+msgid "Finds zero or more of the characters in front of the \"*\". For example, \"Ab*c\" finds \"Ac\", \"Abc\", \"Abbc\", \"Abbbc\", and so on."
+msgstr ""
-#: password_main.xhp
+#: 02100001.xhp
msgctxt ""
-"password_main.xhp\n"
-"hd_id3154183\n"
-"1\n"
+"02100001.xhp\n"
+"par_id3147399\n"
+"27\n"
"help.text"
-msgid "<variable id=\"password_maintitle\"><link href=\"text/shared/01/password_main.xhp\" name=\"Enter Master Password\">Enter Master Password</link></variable>"
+msgid "+"
msgstr ""
-#: password_main.xhp
+#: 02100001.xhp
msgctxt ""
-"password_main.xhp\n"
-"par_id3154841\n"
-"2\n"
+"02100001.xhp\n"
+"par_id3157958\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"\">Assign a master password to protect the access to a saved password.</ahelp>"
+msgid "Finds one or more of the characters in front of the \"+\". For example, \"AX.+4\" finds \"AXx4\", but not \"AX4\"."
msgstr ""
-#: password_main.xhp
+#: 02100001.xhp
msgctxt ""
-"password_main.xhp\n"
-"par_id3146857\n"
-"3\n"
+"02100001.xhp\n"
+"par_id3145313\n"
+"207\n"
"help.text"
-msgid "You can save some passwords for the duration of a session, or permanently to a file protected by a master password."
+msgid "The longest possible string that matches this search pattern in a paragraph is always found. If the paragraph contains the string \"AX 4 AX4\", the entire passage is highlighted."
msgstr ""
-#: password_main.xhp
+#: 02100001.xhp
msgctxt ""
-"password_main.xhp\n"
-"par_id3147000\n"
-"6\n"
+"02100001.xhp\n"
+"par_id3143267\n"
+"199\n"
"help.text"
-msgid "You must enter the master password to access a file or service that is protected by a saved password. You only need to enter the master password once during a session."
+msgid "?"
msgstr ""
-#: password_main.xhp
+#: 02100001.xhp
msgctxt ""
-"password_main.xhp\n"
-"par_id0608200910545958\n"
+"02100001.xhp\n"
+"par_id3153684\n"
+"200\n"
"help.text"
-msgid "You should only use passwords that are hard to find by other persons or programs. A password should follow these rules:"
+msgid "Finds zero or one of the characters in front of the \"?\". For example, \"Texts?\" finds \"Text\" and \"Texts\" and \"x(ab|c)?y\" finds \"xy\", \"xaby\", or \"xcy\"."
msgstr ""
-#: password_main.xhp
+#: 02100001.xhp
msgctxt ""
-"password_main.xhp\n"
-"par_id0608200910545989\n"
+"02100001.xhp\n"
+"par_id3166410\n"
+"158\n"
"help.text"
-msgid "Length of eight or more characters."
+msgid "\\"
msgstr ""
-#: password_main.xhp
+#: 02100001.xhp
msgctxt ""
-"password_main.xhp\n"
-"par_id0608200910545951\n"
+"02100001.xhp\n"
+"par_id3147209\n"
+"159\n"
"help.text"
-msgid "Contains a mix of lower case and upper case letters, numbers, and special characters."
+msgid "Search interprets the special character that follows the \"\\\" as a normal character and not as a regular expression (except for the combinations \\n, \\t, \\>, and \\<). For example, \"tree\\.\" finds \"tree.\", not \"treed\" or \"trees\"."
msgstr ""
-#: password_main.xhp
+#: 02100001.xhp
msgctxt ""
-"password_main.xhp\n"
-"par_id0608200910545923\n"
+"02100001.xhp\n"
+"par_id3152945\n"
+"166\n"
"help.text"
-msgid "Cannot be found in any wordbook or encyclopedia."
+msgid "\\n"
msgstr ""
-#: password_main.xhp
+#: 02100001.xhp
msgctxt ""
-"password_main.xhp\n"
-"par_id0608200910550049\n"
+"02100001.xhp\n"
+"par_id3153700\n"
+"167\n"
"help.text"
-msgid "Has no direct relation to your personal data, e.g., date of birth or car plate."
+msgid "Represents a line break that was inserted with the Shift+Enter key combination. To change a line break into a paragraph break, enter <emph>\\n</emph> in the <emph>Search for</emph> and <emph>Replace with</emph> boxes, and then perform a search and replace."
msgstr ""
-#: password_main.xhp
+#: 02100001.xhp
msgctxt ""
-"password_main.xhp\n"
-"hd_id3147588\n"
-"7\n"
+"02100001.xhp\n"
+"par_id9262672\n"
"help.text"
-msgid "Master password"
-msgstr "Fjalëkalim i pavlefshëm"
+msgid "\\n in the <emph>Search for</emph> text box stands for a line break that was inserted with the Shift+Enter key combination."
+msgstr ""
-#: password_main.xhp
+#: 02100001.xhp
msgctxt ""
-"password_main.xhp\n"
-"par_id3148731\n"
-"8\n"
+"02100001.xhp\n"
+"par_id2366100\n"
"help.text"
-msgid "<ahelp hid=\"UUI_EDIT_DLG_UUI_PASSWORD_ED_MASTERPASSWORD\">Type a master password to prevent unauthorized users from accessing stored passwords.</ahelp>"
+msgid "\\n in the <emph>Replace with</emph> text box stands for a paragraph break that can be entered with the Enter or Return key."
msgstr ""
-#: password_main.xhp
+#: 02100001.xhp
msgctxt ""
-"password_main.xhp\n"
-"hd_id3144436\n"
-"9\n"
+"02100001.xhp\n"
+"par_id3153258\n"
+"29\n"
"help.text"
-msgid "Confirm master password"
-msgstr "Ndrysho mbrojtjen e fjalëkalimit"
+msgid "\\t"
+msgstr ""
-#: password_main.xhp
+#: 02100001.xhp
msgctxt ""
-"password_main.xhp\n"
-"par_id3145129\n"
-"10\n"
+"02100001.xhp\n"
+"par_id3157809\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\"UUI_EDIT_DLG_UUI_PASSWORD_CRT_ED_MASTERPASSWORD_REPEAT\">Re-enter the master password.</ahelp>"
+msgid "Represents a tab. You can also use this expression in the <emph>Replace with</emph> box."
msgstr ""
-#: 05120000.xhp
+#: 02100001.xhp
msgctxt ""
-"05120000.xhp\n"
-"tit\n"
+"02100001.xhp\n"
+"par_id3150670\n"
+"35\n"
"help.text"
-msgid "Line Spacing"
-msgstr "Hapësira në mes linjave"
+msgid "\\b"
+msgstr ""
-#: 05120000.xhp
+#: 02100001.xhp
msgctxt ""
-"05120000.xhp\n"
-"bm_id3152876\n"
+"02100001.xhp\n"
+"par_id3153666\n"
+"36\n"
"help.text"
-msgid "<bookmark_value>line spacing; context menu in paragraphs</bookmark_value><bookmark_value>text; line spacing</bookmark_value>"
+msgid "Match a word boundary. For example, \"\\bbook\" finds \"bookmark\" but not \"checkbook\" whereas \"book\\b\" finds \"checkbook\" but not \"bookmark\". The discrete word \"book\" is found by both search terms."
msgstr ""
-#: 05120000.xhp
+#: 02100001.xhp
msgctxt ""
-"05120000.xhp\n"
-"hd_id3152876\n"
-"1\n"
+"02100001.xhp\n"
+"par_id3149576\n"
+"37\n"
"help.text"
-msgid "<link href=\"text/shared/01/05120000.xhp\" name=\"Line Spacing\">Line Spacing</link>"
+msgid "^$"
msgstr ""
-#: 05120000.xhp
+#: 02100001.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3153514\n"
-"2\n"
+"02100001.xhp\n"
+"par_id3151245\n"
+"38\n"
"help.text"
-msgid "Specify the amount of space to leave between lines of text in a paragraph."
-msgstr ""
+msgid "Finds an empty paragraph."
+msgstr "Stilet e zbatuara të paragrafeve"
-#: 05120000.xhp
+#: 02100001.xhp
msgctxt ""
-"05120000.xhp\n"
-"par_id3155364\n"
+"02100001.xhp\n"
+"par_id3148550\n"
+"41\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Indents and Spacing\">Indents and Spacing</link>"
+msgid "^."
msgstr ""
-#: 01160300.xhp
+#: 02100001.xhp
msgctxt ""
-"01160300.xhp\n"
-"tit\n"
+"02100001.xhp\n"
+"par_id3159413\n"
+"42\n"
"help.text"
-msgid "Create Master Document"
-msgstr "Krijo dokumentin kryesor"
+msgid "Finds the first character of a paragraph."
+msgstr ""
-#: 01160300.xhp
+#: 02100001.xhp
msgctxt ""
-"01160300.xhp\n"
-"hd_id3152790\n"
-"1\n"
+"02100001.xhp\n"
+"par_id3147282\n"
+"43\n"
"help.text"
-msgid "Create Master Document"
-msgstr "Krijo dokumentin kryesor"
+msgid "& or $0"
+msgstr "ose"
-#: 01160300.xhp
+#: 02100001.xhp
msgctxt ""
-"01160300.xhp\n"
-"par_id3148668\n"
-"2\n"
+"02100001.xhp\n"
+"par_id3153961\n"
+"44\n"
"help.text"
-msgid "<variable id=\"globtext\"><ahelp hid=\"HID_SEND_MASTER_CTRL_PUSHBUTTON_CANCEL\">Creates a master document from the current Writer document. A new sub-document is created at each occurrence of a chosen paragraph style or outline level in the source document.</ahelp></variable>"
+msgid "Adds the string that was found by the search criteria in the <emph>Search for</emph> box to the term in the <emph>Replace with</emph> box when you make a replacement."
msgstr ""
-#: 01160300.xhp
+#: 02100001.xhp
msgctxt ""
-"01160300.xhp\n"
-"par_id3149999\n"
-"4\n"
+"02100001.xhp\n"
+"par_id3149650\n"
+"201\n"
"help.text"
-msgid "The <link href=\"text/shared/01/02110000.xhp\" name=\"Navigator\"><emph>Navigator</emph></link> appears after you create a master document. To edit a sub-document, double-click the name of a sub-document in the <emph>Navigator</emph>."
+msgid "For example, if you enter \"window\" in the <emph>Search for</emph> box and \"&frame\" in the <emph>Replace with</emph> box, the word \"window\" is replaced with \"windowframe\"."
msgstr ""
-#: 01160300.xhp
+#: 02100001.xhp
msgctxt ""
-"01160300.xhp\n"
-"hd_id3152924\n"
-"9\n"
+"02100001.xhp\n"
+"par_id3150543\n"
+"206\n"
"help.text"
-msgid "Display area"
-msgstr "Zona e fundfaqes"
+msgid "You can also enter an \"&\" in the <emph>Replace with</emph> box to modify the <emph>Attributes</emph> or the <emph>Format</emph> of the string found by the search criteria."
+msgstr ""
-#: 01160300.xhp
+#: 02100001.xhp
msgctxt ""
-"01160300.xhp\n"
-"hd_id3152425\n"
-"10\n"
+"02100001.xhp\n"
+"par_id3145419\n"
+"172\n"
"help.text"
-msgid "File name"
-msgstr "Emri i fajllit"
+msgid "[abc123]"
+msgstr ""
-#: 01160300.xhp
+#: 02100001.xhp
msgctxt ""
-"01160300.xhp\n"
-"hd_id3147291\n"
-"8\n"
+"02100001.xhp\n"
+"par_id3154630\n"
+"173\n"
"help.text"
-msgid "separated by"
-msgstr "~E ndarë nga"
+msgid "Represents one of the characters that are between the brackets."
+msgstr ""
-#: 01160300.xhp
+#: 02100001.xhp
msgctxt ""
-"01160300.xhp\n"
-"par_id3156426\n"
-"7\n"
+"02100001.xhp\n"
+"par_id3156293\n"
+"174\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_TEMPLATE\">Select the paragraph style or outline level that you want to use to separate the source document into sub-documents.</ahelp> By default a new document is created for every outline level 1."
+msgid "[a-e]"
msgstr ""
-#: 01160300.xhp
+#: 02100001.xhp
msgctxt ""
-"01160300.xhp\n"
-"hd_id3153311\n"
-"11\n"
+"02100001.xhp\n"
+"par_id3149167\n"
+"175\n"
"help.text"
-msgid "File type"
-msgstr "Tipi i fajllit"
+msgid "Represents any of the characters that are between a and e, including both start and end characters"
+msgstr ""
-#: 01160300.xhp
+#: 02100001.xhp
msgctxt ""
-"01160300.xhp\n"
-"hd_id3145313\n"
-"12\n"
+"02100001.xhp\n"
+"par_id100520090232005\n"
"help.text"
-msgid "Save"
-msgstr "Ruaje"
+msgid "The characters are ordered by their code numbers."
+msgstr ""
-#: 06990000.xhp
+#: 02100001.xhp
msgctxt ""
-"06990000.xhp\n"
-"tit\n"
+"02100001.xhp\n"
+"par_id3155994\n"
+"176\n"
"help.text"
-msgid "Spellcheck"
-msgstr "Kontrolli i drejtëshkrimit"
+msgid "[a-eh-x]"
+msgstr ""
-#: 06990000.xhp
+#: 02100001.xhp
msgctxt ""
-"06990000.xhp\n"
-"hd_id3147069\n"
-"1\n"
+"02100001.xhp\n"
+"par_id3148676\n"
+"177\n"
"help.text"
-msgid "<link href=\"text/shared/01/06990000.xhp\" name=\"Spellcheck\">Spellcheck</link>"
+msgid "Represents any of the characters that are between a-e and h-x."
msgstr ""
-#: 06990000.xhp
+#: 02100001.xhp
msgctxt ""
-"06990000.xhp\n"
-"par_id3153116\n"
-"2\n"
+"02100001.xhp\n"
+"par_id3145318\n"
+"178\n"
"help.text"
-msgid "<ahelp hid=\".\">Checks spelling manually.</ahelp>"
+msgid "[^a-s]"
msgstr ""
-#: 06990000.xhp
+#: 02100001.xhp
msgctxt ""
-"06990000.xhp\n"
-"par_id2551957\n"
+"02100001.xhp\n"
+"par_id3153351\n"
+"179\n"
"help.text"
-msgid "<link href=\"text/shared/01/06010000.xhp\" name=\"Check\">Spellcheck dialog</link>"
+msgid "Represents everything that is not between a and s."
msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"tit\n"
+"02100001.xhp\n"
+"par_id3156543\n"
+"180\n"
"help.text"
-msgid "Distribution"
-msgstr "Shpërndarje"
+msgid "\\xXXXX"
+msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3154812\n"
-"1\n"
+"02100001.xhp\n"
+"par_id3153768\n"
+"181\n"
"help.text"
-msgid "<link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\">Distribution</link>"
+msgid "Represents a special character based on its four-digit hexadecimal code (XXXX)."
msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3149119\n"
-"2\n"
+"02100001.xhp\n"
+"par_id3159252\n"
+"208\n"
"help.text"
-msgid "<variable id=\"verteilungtext\"><ahelp hid=\".uno:DistributeSelection\">Distributes three or more selected objects evenly along the horizontal axis or the vertical axis. You can also evenly distribute the spacing between objects.</ahelp></variable>"
+msgid "The code for the special character depends on the font used. You can view the codes by choosing <emph>Insert - Special Character</emph>."
msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3145383\n"
-"3\n"
+"02100001.xhp\n"
+"par_id3153951\n"
+"186\n"
"help.text"
-msgid "Objects are distributed with respect to the outermost objects in the selection."
+msgid "|"
msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3149811\n"
-"4\n"
+"02100001.xhp\n"
+"par_id3154985\n"
+"187\n"
"help.text"
-msgid "Horizontally"
-msgstr "Horizontalisht"
+msgid "Finds the terms that occur before the \"|\" and also finds the terms that occur after the \"|\". For example, \"this|that\" finds \"this\" and \"that\"."
+msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3150355\n"
-"5\n"
+"02100001.xhp\n"
+"par_id3147376\n"
+"209\n"
"help.text"
-msgid "Specify the horizontal distribution for the selected objects."
+msgid "{2}"
msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3149276\n"
-"6\n"
+"02100001.xhp\n"
+"par_id3150103\n"
+"210\n"
"help.text"
-msgid "None"
-msgstr "Asnjë"
+msgid "Defines the number of times that the character in front of the opening bracket occurs. For example, \"tre{2}\" finds and selects \"tree\"."
+msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3147618\n"
-"7\n"
+"02100001.xhp\n"
+"par_id3151289\n"
+"211\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_NONE\">Does not distribute the objects horizontally.</ahelp>"
+msgid "{1,2}"
msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3148990\n"
-"8\n"
+"02100001.xhp\n"
+"par_id3147317\n"
+"212\n"
"help.text"
-msgid "Left"
-msgstr "Majtas"
+msgid "Defines the minimum and maximum number of times that the character in front of the opening bracket can occur. For example, \"tre{1,2}\" finds and selects \"tre\" and \"tree\"."
+msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3159269\n"
-"9\n"
+"02100001.xhp\n"
+"par_id4870754\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_LEFT\">Distributes the selected objects, so that the left edges of the objects are evenly spaced from one another.</ahelp>"
+msgid "{1,}"
msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3150130\n"
-"10\n"
+"02100001.xhp\n"
+"par_id843836\n"
"help.text"
-msgid "Center"
-msgstr "Qendër"
+msgid "Defines the minimum number of times that the character in front of the opening bracket can occur. For example, \"tre{2,}\" finds \"tree\", \"treee\", and \"treeeee\"."
+msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3153146\n"
-"11\n"
+"02100001.xhp\n"
+"par_id3148616\n"
+"213\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_CENTER\">Distributes the selected objects, so that the horizontal centers of the objects are evenly spaced from one another.</ahelp>"
+msgid "( )"
msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3147574\n"
-"12\n"
+"02100001.xhp\n"
+"par_id2701803\n"
"help.text"
-msgid "Spacing"
-msgstr "Hapësira"
+msgid "In the <emph>Search for</emph> box:"
+msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3148924\n"
-"13\n"
+"02100001.xhp\n"
+"par_id3153573\n"
+"214\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_DISTANCE\">Distributes the selected objects horizontally, so that the objects are evenly spaced from one another.</ahelp>"
+msgid "Defines the characters inside the parentheses as a reference. You can then refer to the first reference in the current expression with \"\\1\", to the second reference with \"\\2\", and so on."
msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3155390\n"
-"14\n"
+"02100001.xhp\n"
+"par_id3156061\n"
+"215\n"
"help.text"
-msgid "Right"
-msgstr "Djathtas"
+msgid "For example, if your text contains the number 13487889 and you search using the regular expression (8)7\\1\\1, \"8788\" is found."
+msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3153252\n"
-"15\n"
+"02100001.xhp\n"
+"par_id2367931\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_RIGHT\">Distributes the selected objects, so that the right edges of the objects are evenly spaced from one another.</ahelp>"
+msgid "You can also use () to group terms, for example, \"a(bc)?d\" finds \"ad\" or \"abcd\"."
msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3150245\n"
-"16\n"
+"02100001.xhp\n"
+"par_id9200109\n"
"help.text"
-msgid "Vertically"
-msgstr "Vertikalisht"
+msgid "In the <emph>Replace with</emph> box:"
+msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3155321\n"
-"17\n"
+"02100001.xhp\n"
+"par_id5766472\n"
"help.text"
-msgid "Specify the vertical distribution for the selected objects."
+msgid "Use $ (dollar) instead of \\ (backslash) to replace references. Use $0 to replace the whole found string."
msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3148563\n"
-"18\n"
+"02100001.xhp\n"
+"par_id3154790\n"
+"226\n"
"help.text"
-msgid "None"
-msgstr "Asnjë"
+msgid "[:alpha:]"
+msgstr "alpha"
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3155922\n"
-"19\n"
+"02100001.xhp\n"
+"par_id3147397\n"
+"227\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_NONE\">Does not distribute the objects vertically.</ahelp>"
+msgid "Represents an alphabetic character. Use [:alpha:]+ to find one of them."
msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3153626\n"
-"20\n"
+"02100001.xhp\n"
+"par_id3152885\n"
+"216\n"
"help.text"
-msgid "Top"
-msgstr "Lartë"
+msgid "[:digit:]"
+msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3152361\n"
-"21\n"
+"02100001.xhp\n"
+"par_id3150010\n"
+"217\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_TOP\">Distributes the selected objects, so that the top edges of the objects are evenly spaced from one another.</ahelp>"
+msgid "Represents a decimal digit. Use [:digit:]+ to find one of them."
msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3147264\n"
-"22\n"
+"02100001.xhp\n"
+"par_id3153743\n"
+"224\n"
"help.text"
-msgid "Center"
-msgstr "Qendër"
+msgid "[:alnum:]"
+msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3161656\n"
-"23\n"
+"02100001.xhp\n"
+"par_id3153281\n"
+"225\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_CENTER\">Distributes the selected objects, so that the vertical centers of the objects are evenly spaced from one another.</ahelp>"
+msgid "Represents an alphanumeric character ([:alpha:] and [:digit:])."
msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3150865\n"
-"24\n"
+"02100001.xhp\n"
+"par_id3153726\n"
+"218\n"
"help.text"
-msgid "Spacing"
-msgstr "Hapësira"
+msgid "[:space:]"
+msgstr "&Hapësirë"
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3153360\n"
-"25\n"
+"02100001.xhp\n"
+"par_id3150961\n"
+"219\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_DISTANCE\">Distributes the selected objects vertically, so that the objects are evenly spaced from one another.</ahelp>"
+msgid "Represents a space character (but not other whitespace characters)."
msgstr ""
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"hd_id3154071\n"
-"26\n"
+"02100001.xhp\n"
+"par_id3150486\n"
+"220\n"
"help.text"
-msgid "Bottom"
-msgstr "Poshtë"
+msgid "[:print:]"
+msgstr "Shtyp"
-#: 05360000.xhp
+#: 02100001.xhp
msgctxt ""
-"05360000.xhp\n"
-"par_id3152771\n"
-"27\n"
+"02100001.xhp\n"
+"par_id3150872\n"
+"221\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_BOTTOM\">Distributes the selected objects, so that the bottom edges of the objects are evenly spaced from one another.</ahelp>"
+msgid "Represents a printable character."
+msgstr "Zgjedhja e karakterit të veçantë"
+
+#: 02100001.xhp
+msgctxt ""
+"02100001.xhp\n"
+"par_id3155854\n"
+"222\n"
+"help.text"
+msgid "[:cntrl:]"
msgstr ""
-#: 06010500.xhp
+#: 02100001.xhp
msgctxt ""
-"06010500.xhp\n"
-"tit\n"
+"02100001.xhp\n"
+"par_id3152576\n"
+"223\n"
"help.text"
-msgid "Language"
-msgstr "Gjuhë"
+msgid "Represents a nonprinting character."
+msgstr "Zgjedhja e karakterit të veçantë"
-#: 06010500.xhp
+#: 02100001.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_idN1055C\n"
+"02100001.xhp\n"
+"par_id3149958\n"
+"228\n"
"help.text"
-msgid "<link href=\"text/shared/01/06010500.xhp\">Language</link>"
-msgstr ""
+msgid "[:lower:]"
+msgstr "I mëposhtmi"
-#: 06010500.xhp
+#: 02100001.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_idN1056C\n"
+"02100001.xhp\n"
+"par_id3145730\n"
+"229\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu where you can choose language specific commands.</ahelp>"
+msgid "Represents a lowercase character if <emph>Match case</emph> is selected in <emph>Options</emph>."
msgstr ""
-#: 06010500.xhp
+#: 02100001.xhp
msgctxt ""
-"06010500.xhp\n"
-"hd_id5787224\n"
+"02100001.xhp\n"
+"par_id3148455\n"
+"230\n"
"help.text"
-msgid "For Selection"
-msgstr "Zgjedhja e databazës"
+msgid "[:upper:]"
+msgstr "I mësipërmi"
-#: 06010500.xhp
+#: 02100001.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_id1507309\n"
+"02100001.xhp\n"
+"par_id3150092\n"
+"231\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu. Choose a language for the selected text. <br/>Choose None to exclude the selected text from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>"
+msgid "Represents an uppercase character if <emph>Match case</emph> is selected in <emph>Options.</emph>"
msgstr ""
-#: 06010500.xhp
+#: 02100001.xhp
msgctxt ""
-"06010500.xhp\n"
-"hd_id7693411\n"
+"02100001.xhp\n"
+"hd_id5311441\n"
"help.text"
-msgid "For Paragraph"
-msgstr "Paragrafi: $(ARG)"
+msgid "Examples"
+msgstr "Shembuj:"
-#: 06010500.xhp
+#: 02100001.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_id3928952\n"
+"02100001.xhp\n"
+"par_id956834773\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu. Choose a language for the current paragraph. <br/>Choose None to exclude the current paragraph from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>"
+msgid "e([:digit:])? -- finds 'e' followed by zero or one digit. Note that currently all named character classes like [:digit:] must be enclosed in parentheses."
msgstr ""
-#: 06010500.xhp
+#: 02100001.xhp
msgctxt ""
-"06010500.xhp\n"
-"hd_id5206762\n"
+"02100001.xhp\n"
+"par_id952368773\n"
"help.text"
-msgid "For all Text"
-msgstr "Teksti për vargëzim."
+msgid "^([:digit:])$ -- finds lines or cells with exactly one digit."
+msgstr ""
-#: 06010500.xhp
+#: 02100001.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_id5735953\n"
+"02100001.xhp\n"
+"par_id9568773\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu. Choose a language for all text. <br/>Choose None to exclude all text from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>"
+msgid "You can combine the search terms to form complex searches."
msgstr ""
-#: 06010500.xhp
+#: 02100001.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_idN105AF\n"
+"02100001.xhp\n"
+"hd_id71413\n"
"help.text"
-msgid "Hyphenation"
-msgstr "Hifenacion"
+msgid "To find three-digit numbers alone in a paragraph"
+msgstr ""
-#: 06010500.xhp
+#: 02100001.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_idN105B3\n"
+"02100001.xhp\n"
+"par_id2924283\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/01/05340300.xhp\">Format - Cells - Alignment</link> tab page."
+msgid "^[:digit:]{3}$"
msgstr ""
-#: 06010500.xhp
+#: 02100001.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_idN105D0\n"
+"02100001.xhp\n"
+"par_id5781731\n"
"help.text"
-msgid "Hyphenation"
-msgstr "Hifenacion"
+msgid "^ means the match has to be at the start of a paragraph,"
+msgstr ""
-#: 06010500.xhp
+#: 02100001.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_idN105D4\n"
+"02100001.xhp\n"
+"par_id6942045\n"
"help.text"
-msgid "Turns hyphenation on and off."
+msgid "[:digit:] matches any decimal digit,"
msgstr ""
-#: 06010500.xhp
+#: 02100001.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_idN105E7\n"
+"02100001.xhp\n"
+"par_id4721823\n"
"help.text"
-msgid "Hyphenation"
-msgstr "Hifenacion"
+msgid "{3} means there must be exactly 3 copies of \"digit\","
+msgstr ""
-#: 06010500.xhp
+#: 02100001.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_idN105EB\n"
+"02100001.xhp\n"
+"par_id5806756\n"
"help.text"
-msgid "Turns hyphenation on and off."
+msgid "$ means the match must end a paragraph."
msgstr ""
-#: 06010500.xhp
+#: 02100001.xhp
msgctxt ""
-"06010500.xhp\n"
-"hd_id0805200811534540\n"
+"02100001.xhp\n"
+"par_id1751457\n"
"help.text"
-msgid "More Dictionaries Online"
-msgstr "Fjalorët e definuar nga shfrytëzuesi"
+msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Regular_Expressions_in_Writer\">Wiki page about regular expressions in Writer</link>"
+msgstr ""
-#: 06010500.xhp
+#: 02100001.xhp
msgctxt ""
-"06010500.xhp\n"
-"par_id0805200811534630\n"
+"02100001.xhp\n"
+"par_id5483870\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the default browser on the dictionaries extension page.</ahelp>"
+msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Regular_Expressions_in_Calc\">Wiki page about regular expressions in Calc</link>"
msgstr ""
-#: 05120300.xhp
+#: 02100100.xhp
msgctxt ""
-"05120300.xhp\n"
+"02100100.xhp\n"
"tit\n"
"help.text"
-msgid "Double (Line)"
-msgstr "Stili i linjës"
+msgid "Similarity Search"
+msgstr "Kërkimi i përgjasimit"
-#: 05120300.xhp
+#: 02100100.xhp
msgctxt ""
-"05120300.xhp\n"
-"hd_id3083278\n"
-"1\n"
+"02100100.xhp\n"
+"bm_id3156045\n"
"help.text"
-msgid "<link href=\"text/shared/01/05120300.xhp\" name=\"Double (Line)\">Double (Line)</link>"
+msgid "<bookmark_value>similarity search</bookmark_value><bookmark_value>finding; similarity search</bookmark_value>"
msgstr ""
-#: 05120300.xhp
+#: 02100100.xhp
msgctxt ""
-"05120300.xhp\n"
-"par_id3149783\n"
-"2\n"
+"02100100.xhp\n"
+"hd_id3156045\n"
+"52\n"
"help.text"
-msgid "<ahelp hid=\".uno:SpacePara2\">Sets the line spacing of the current paragraph to two lines.</ahelp>"
+msgid "<link href=\"text/shared/01/02100100.xhp\" name=\"Similarity Search\">Similarity Search</link>"
msgstr ""
-#: 04100000.xhp
+#: 02100100.xhp
msgctxt ""
-"04100000.xhp\n"
-"tit\n"
+"02100100.xhp\n"
+"par_id3146856\n"
+"53\n"
"help.text"
-msgid "Special Character"
-msgstr "karakter special"
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/similarity\">Find terms that are similar to the <emph>Search for </emph>text. Select this checkbox, and then click the <emph>...</emph> button to define the similarity options.</ahelp>"
+msgstr ""
-#: 04100000.xhp
+#: 02100100.xhp
msgctxt ""
-"04100000.xhp\n"
-"hd_id3152937\n"
-"1\n"
+"02100100.xhp\n"
+"par_id3149551\n"
+"66\n"
"help.text"
-msgid "Special Character"
-msgstr "karakter special"
+msgid "For example, a similarity search can find words that differ from the <emph>Search for </emph>text by two characters."
+msgstr ""
-#: 04100000.xhp
+#: 02100100.xhp
msgctxt ""
-"04100000.xhp\n"
-"par_id3150838\n"
-"2\n"
+"02100100.xhp\n"
+"hd_id3154621\n"
+"54\n"
"help.text"
-msgid "<variable id=\"sonder\"><ahelp hid=\".uno:Bullet\">Inserts special characters from the installed fonts.</ahelp></variable>"
-msgstr ""
+msgid "..."
+msgstr "..."
-#: 04100000.xhp
+#: 02100100.xhp
msgctxt ""
-"04100000.xhp\n"
-"par_id3152372\n"
-"11\n"
+"02100100.xhp\n"
+"par_id3145629\n"
+"55\n"
"help.text"
-msgid "When you click a character in the <emph>Special Characters </emph>dialog, a preview and the corresponding numerical code for the character is displayed."
+msgid "<ahelp hid=\"svx/ui/findreplacedialog/similaritybtn\">Set the options for the similarity search.</ahelp>"
msgstr ""
-#: 04100000.xhp
+#: 02100100.xhp
msgctxt ""
-"04100000.xhp\n"
-"hd_id3151315\n"
-"3\n"
+"02100100.xhp\n"
+"hd_id3149511\n"
+"56\n"
"help.text"
-msgid "Font"
-msgstr "Fonti"
+msgid "Settings"
+msgstr "Parametrat"
-#: 04100000.xhp
+#: 02100100.xhp
msgctxt ""
-"04100000.xhp\n"
-"par_id3152924\n"
-"4\n"
+"02100100.xhp\n"
+"par_id3152594\n"
+"57\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/specialcharacters/fontlb\">Select a font to display the special characters that are associated with it.</ahelp>"
+msgid "Define the criteria for determining if a word is similar to the search term."
msgstr ""
-#: 04100000.xhp
+#: 02100100.xhp
msgctxt ""
-"04100000.xhp\n"
-"hd_id3155555\n"
-"19\n"
+"02100100.xhp\n"
+"hd_id3153551\n"
+"58\n"
"help.text"
-msgid "Subset"
-msgstr "Nënbashkësi"
+msgid "Exchange characters"
+msgstr "Karakteret e fusnotave"
-#: 04100000.xhp
+#: 02100100.xhp
msgctxt ""
-"04100000.xhp\n"
-"par_id3145090\n"
-"20\n"
+"02100100.xhp\n"
+"par_id3152551\n"
+"59\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/specialcharacters/subsetlb\">Select a Unicode category for the current font.</ahelp> The special characters for the selected Unicode category are displayed in the character table."
+msgid "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXDLG_SEARCHSIMILARITY_NF_OTHER\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
msgstr ""
-#: 04100000.xhp
+#: 02100100.xhp
msgctxt ""
-"04100000.xhp\n"
-"hd_id3145071\n"
-"5\n"
+"02100100.xhp\n"
+"hd_id3147010\n"
+"60\n"
"help.text"
-msgid "Character Table"
-msgstr "Ndryshimet e tabelës"
+msgid "Add characters"
+msgstr "Karakteret e fusnotave"
-#: 04100000.xhp
+#: 02100100.xhp
msgctxt ""
-"04100000.xhp\n"
-"par_id3154288\n"
-"6\n"
+"02100100.xhp\n"
+"par_id3109847\n"
+"61\n"
"help.text"
-msgid "<ahelp hid=\"HID_CHARMAP_CTL_SHOWSET\">Click the special character(s) that you want to insert, and then click <emph>OK</emph>.</ahelp>"
+msgid "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXDLG_SEARCHSIMILARITY_NF_LONGER\">Enter the maximum number of characters by which a word can exceed the number of characters in the search term.</ahelp>"
msgstr ""
-#: 04100000.xhp
+#: 02100100.xhp
msgctxt ""
-"04100000.xhp\n"
-"hd_id3154317\n"
-"7\n"
+"02100100.xhp\n"
+"hd_id3166460\n"
+"62\n"
"help.text"
-msgid "Characters"
-msgstr "Karakteret"
+msgid "Remove characters"
+msgstr "Karakteret e fusnotave"
-#: 04100000.xhp
+#: 02100100.xhp
msgctxt ""
-"04100000.xhp\n"
-"par_id3152551\n"
-"8\n"
+"02100100.xhp\n"
+"par_id3148685\n"
+"63\n"
"help.text"
-msgid "Displays the special characters that you have selected."
+msgid "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXDLG_SEARCHSIMILARITY_NF_SHORTER\">Enter the number of characters by which a word can be shorter than the search term.</ahelp>"
msgstr ""
-#: 04100000.xhp
+#: 02100100.xhp
msgctxt ""
-"04100000.xhp\n"
-"hd_id3155535\n"
-"12\n"
+"02100100.xhp\n"
+"hd_id3153700\n"
+"64\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "Combine"
+msgstr "Kombino %O"
-#: 04100000.xhp
+#: 02100100.xhp
msgctxt ""
-"04100000.xhp\n"
-"par_id3147653\n"
-"13\n"
+"02100100.xhp\n"
+"par_id3156553\n"
+"65\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/specialcharacters/delete\">Clears the current selection of special characters that you want to insert.</ahelp>"
+msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXDLG_SEARCHSIMILARITY_CB_RELAX\">Searches for a term that matches any combination of the similarity search settings.</ahelp>"
msgstr ""
-#: 04140000.xhp
+#: 02100200.xhp
msgctxt ""
-"04140000.xhp\n"
+"02100200.xhp\n"
"tit\n"
"help.text"
-msgid "Inserting Pictures"
-msgstr "Duke shtuar indeksin..."
+msgid "Attributes"
+msgstr "Atributet"
-#: 04140000.xhp
+#: 02100200.xhp
msgctxt ""
-"04140000.xhp\n"
-"hd_id3154350\n"
+"02100200.xhp\n"
+"hd_id3154422\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"Inserting Pictures\">Inserting Pictures</link>"
-msgstr ""
+msgid "Attributes"
+msgstr "Atributet"
-#: 04140000.xhp
+#: 02100200.xhp
msgctxt ""
-"04140000.xhp\n"
-"par_id3159411\n"
+"02100200.xhp\n"
+"par_id3153331\n"
"2\n"
"help.text"
-msgid "<variable id=\"grafiktext\"><ahelp hid=\".uno:InsertGraphic\">Inserts a picture into the current document.</ahelp></variable>"
+msgid "<variable id=\"attributetext\"><ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_ATTRIBUTE\">Choose the text attributes that you want to search for. For example, if you search for the <emph>Font</emph> attribute, all instances of text that do not use the default font are found. All text that has a directly coded font attribute, and all text where a style switches the font attribute, are found. </ahelp></variable>"
msgstr ""
-#: 04140000.xhp
+#: 02100200.xhp
msgctxt ""
-"04140000.xhp\n"
-"hd_id3149760\n"
-"17\n"
+"02100200.xhp\n"
+"hd_id3150944\n"
+"6\n"
"help.text"
-msgid "Style"
-msgstr "Stili"
+msgid "Options"
+msgstr "Opcionet"
-#: 04140000.xhp
+#: 02100200.xhp
msgctxt ""
-"04140000.xhp\n"
-"par_id3154398\n"
-"18\n"
+"02100200.xhp\n"
+"par_id3151384\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEOPEN_IMAGE_TEMPLATE\">Select the frame style for the graphic.</ahelp>"
+msgid "<ahelp hid=\"HID_SEARCHATTR_CTL_ATTR\">Select the attributes that you want to search for.</ahelp>"
msgstr ""
-#: 04140000.xhp
+#: 02100200.xhp
msgctxt ""
-"04140000.xhp\n"
-"hd_id3150789\n"
-"6\n"
+"02100200.xhp\n"
+"hd_id3149245\n"
+"56\n"
"help.text"
-msgid "Link"
-msgstr "Link"
+msgid "Keep with Next Paragraph"
+msgstr "Mbaje me paragrafin tjetër"
-#: 04140000.xhp
+#: 02100200.xhp
msgctxt ""
-"04140000.xhp\n"
-"par_id3153750\n"
-"7\n"
+"02100200.xhp\n"
+"par_id3154760\n"
+"57\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEDLG_LINK_CB\">Inserts the selected graphic file as a link.</ahelp>"
+msgid "Finds the <emph>Keep With Next Paragraph</emph> attribute."
msgstr ""
-#: 04140000.xhp
+#: 02100200.xhp
msgctxt ""
-"04140000.xhp\n"
-"hd_id3155805\n"
-"8\n"
+"02100200.xhp\n"
+"hd_id3145068\n"
+"40\n"
"help.text"
-msgid "Preview"
-msgstr "Shikim paraprak"
+msgid "Split Paragraph"
+msgstr "Ndaj paragrafet"
-#: 04140000.xhp
+#: 02100200.xhp
msgctxt ""
-"04140000.xhp\n"
-"par_id3153311\n"
-"9\n"
+"02100200.xhp\n"
+"par_id3147560\n"
+"41\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEDLG_PREVIEW_CB\">Displays a preview of the selected graphic file.</ahelp>"
+msgid "Finds the <emph>Do not split paragraph</emph> attribute."
msgstr ""
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"tit\n"
+"02100200.xhp\n"
+"hd_id3156435\n"
+"52\n"
"help.text"
-msgid "Organizer"
-msgstr "Organizuesi"
+msgid "Spacing"
+msgstr "Hapësira"
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"bm_id3153383\n"
+"02100200.xhp\n"
+"par_id3150866\n"
+"53\n"
"help.text"
-msgid "<bookmark_value>organizing; styles</bookmark_value> <bookmark_value>styles; organizing</bookmark_value>"
+msgid "Finds the <emph>Spacing</emph> (top, bottom) attribute."
msgstr ""
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"hd_id3153383\n"
-"1\n"
+"02100200.xhp\n"
+"hd_id3154071\n"
+"38\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040100.xhp\" name=\"Organizer\">Organizer</link>"
-msgstr ""
+msgid "Alignment"
+msgstr "Mbështetje"
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3147588\n"
-"2\n"
+"02100200.xhp\n"
+"par_id3154365\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\"HID_MANAGE_STYLES\">Set the options for the selected style.</ahelp>"
+msgid "Finds the <emph>Alignment</emph> (left, right, centered, justified) attribute."
msgstr ""
-#: 05040100.xhp
-msgctxt ""
-"05040100.xhp\n"
-"hd_id3149525\n"
-"3\n"
-"help.text"
-msgid "Name"
-msgstr "Emri"
-
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3160481\n"
-"4\n"
+"02100200.xhp\n"
+"hd_id3145171\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:TP_MANAGE_STYLES:ED_NAME\">Displays the name of the selected style. If you are creating or modifying a custom style, enter a name for the style. You cannot change the name of a predefined style.</ahelp>"
-msgstr ""
+msgid "Effects"
+msgstr "Efektet"
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"hd_id3153750\n"
-"13\n"
+"02100200.xhp\n"
+"par_id3149203\n"
+"9\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">AutoUpdate </caseinline></switchinline>"
+msgid "Finds characters that use the <emph>Capital, Lowercase, Small capitals, </emph>and <emph>Title </emph>character attributes."
msgstr ""
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3153749\n"
-"14\n"
+"02100200.xhp\n"
+"hd_id3148676\n"
+"60\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SFX2:CHECKBOX:TP_MANAGE_STYLES:CB_AUTO\">Updates the style when you apply direct formatting to a paragraph using this style in your document. The formatting of all paragraphs using this style is automatically updated.</ahelp></caseinline></switchinline>"
-msgstr ""
+msgid "Blinking"
+msgstr "Duke Pulsuar"
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id0107200910584081\n"
+"02100200.xhp\n"
+"par_id3153193\n"
+"61\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Updates the style when you apply direct formatting to a paragraph using this style in your document. The formatting of all paragraphs using this style is automatically updated.</ahelp>"
+msgid "Finds characters use the <emph>Blinking</emph> attribute."
msgstr ""
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"hd_id3155392\n"
-"5\n"
+"02100200.xhp\n"
+"hd_id3153968\n"
+"14\n"
"help.text"
-msgid "Next Style"
-msgstr "Stili i linjës"
+msgid "Strikethrough"
+msgstr "Vizuar nëpërmes"
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3155941\n"
-"6\n"
+"02100200.xhp\n"
+"par_id3145746\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:LISTBOX:TP_MANAGE_STYLES:LB_NEXT\">Select an existing style that you want to follow the current style in your document. For paragraph styles, the next style is applied to the paragraph that is created when you press Enter. For page styles, the next style is applied when a new page is created.</ahelp>"
+msgid "Finds characters that use the <emph>Strikethrough</emph> (single or double) attribute."
msgstr ""
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"hd_id3163802\n"
-"7\n"
+"02100200.xhp\n"
+"hd_id3156422\n"
+"50\n"
"help.text"
-msgid "Linked with"
-msgstr "I lidhur me"
+msgid "Indent"
+msgstr "Kryerresht"
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3166461\n"
-"8\n"
+"02100200.xhp\n"
+"par_id3150449\n"
+"51\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:LISTBOX:TP_MANAGE_STYLES:LB_BASE\">Select an existing style that you want to base the new style on, or select none to define your own style.</ahelp>"
+msgid "Finds the <emph>Indent</emph> (from left, from right, first line) attribute."
msgstr ""
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"hd_id3148474\n"
-"9\n"
+"02100200.xhp\n"
+"hd_id3145203\n"
+"44\n"
"help.text"
-msgid "Category"
-msgstr "Kategori"
+msgid "Widows"
+msgstr "Të mbetura"
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3159269\n"
-"10\n"
+"02100200.xhp\n"
+"par_id3153105\n"
+"45\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:LISTBOX:TP_MANAGE_STYLES:LB_REGION\">Displays the category for the current style. If you are creating or modifying a new style, select 'Custom Style' from the list.</ahelp>"
+msgid "Finds the <emph>Widow Control</emph> attribute."
msgstr ""
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3150771\n"
-"17\n"
+"02100200.xhp\n"
+"hd_id3149560\n"
+"22\n"
"help.text"
-msgid "You cannot change the category for a predefined style."
-msgstr ""
+msgid "Kerning"
+msgstr "Kernimi"
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"hd_id3153717\n"
-"11\n"
+"02100200.xhp\n"
+"par_id3155132\n"
+"23\n"
"help.text"
-msgid "Contains"
-msgstr "Përmban"
+msgid "Finds <emph>Spacing</emph> (standard, expanded, condensed) attributes and Pair Kerning."
+msgstr ""
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3154306\n"
+"02100200.xhp\n"
+"hd_id3145261\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:MULTILINEEDIT:TP_MANAGE_STYLES:ED_DESC\">Describes the relevant formatting used in the current style.</ahelp>"
-msgstr ""
+msgid "Outline"
+msgstr "Konturë"
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_idN1072D\n"
+"02100200.xhp\n"
+"par_id3153143\n"
+"13\n"
"help.text"
-msgid "Assign Shortcut Key"
-msgstr "Çelësi: [1], Emri: [2], Vlera [3]"
+msgid "Finds the <emph>Outline</emph> attribute."
+msgstr ""
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_idN10731\n"
+"02100200.xhp\n"
+"hd_id3148575\n"
+"16\n"
"help.text"
-msgid "Opens the <emph>Tools - Customize - Keyboard</emph> tab page where you can assign a shortcut key to the current Style."
-msgstr ""
+msgid "Position"
+msgstr "Pozicion"
-#: 05040100.xhp
+#: 02100200.xhp
msgctxt ""
-"05040100.xhp\n"
-"par_id3145085\n"
+"02100200.xhp\n"
+"par_id3146922\n"
+"17\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05140000.xhp\" name=\"Update Style\">Update Style</link>"
+msgid "Finds characters using the <emph>Normal, Superscript</emph> or <emph>Subscript </emph>attributes."
msgstr ""
-#: 02180100.xhp
+#: 02100200.xhp
msgctxt ""
-"02180100.xhp\n"
-"tit\n"
+"02100200.xhp\n"
+"hd_id3156062\n"
+"62\n"
"help.text"
-msgid "Modify Links"
-msgstr "Linkat e vizituar"
+msgid "Register-true"
+msgstr "Regjistrimi-i saktë"
-#: 02180100.xhp
+#: 02100200.xhp
msgctxt ""
-"02180100.xhp\n"
-"bm_id3149877\n"
+"02100200.xhp\n"
+"par_id3152886\n"
+"63\n"
"help.text"
-msgid "<bookmark_value>links; modifying</bookmark_value><bookmark_value>changing; links</bookmark_value>"
+msgid "Finds the <emph>Register-true</emph> attribute."
msgstr ""
-#: 02180100.xhp
+#: 02100200.xhp
msgctxt ""
-"02180100.xhp\n"
-"hd_id3149877\n"
-"1\n"
+"02100200.xhp\n"
+"hd_id3159196\n"
+"64\n"
"help.text"
-msgid "<link href=\"text/shared/01/02180100.xhp\" name=\"Modify Links\">Modify Links</link>"
-msgstr ""
+msgid "Relief"
+msgstr "Relief"
-#: 02180100.xhp
+#: 02100200.xhp
msgctxt ""
-"02180100.xhp\n"
-"par_id3150838\n"
-"2\n"
+"02100200.xhp\n"
+"par_id3146120\n"
+"65\n"
"help.text"
-msgid "Change the properties for the selected <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE link\">DDE link</link>."
+msgid "Finds the <emph>Relief </emph>attribute."
msgstr ""
-#: 02180100.xhp
+#: 02100200.xhp
msgctxt ""
-"02180100.xhp\n"
-"hd_id3149549\n"
-"3\n"
+"02100200.xhp\n"
+"hd_id3154014\n"
+"66\n"
"help.text"
-msgid "Edit Links"
-msgstr "Rregullo linqet"
+msgid "Rotation"
+msgstr "Rrotullim"
-#: 02180100.xhp
+#: 02100200.xhp
msgctxt ""
-"02180100.xhp\n"
-"par_id3153114\n"
-"4\n"
+"02100200.xhp\n"
+"par_id3150873\n"
+"67\n"
"help.text"
-msgid "Lets you set the properties for the selected link."
+msgid "Finds the <emph>Rotation</emph> attribute."
msgstr ""
-#: 02180100.xhp
+#: 02100200.xhp
msgctxt ""
-"02180100.xhp\n"
-"hd_id3148548\n"
-"5\n"
+"02100200.xhp\n"
+"hd_id3152576\n"
+"28\n"
"help.text"
-msgid "Application:"
-msgstr "Programi ["
+msgid "Shadowed"
+msgstr "E hijezuar"
-#: 02180100.xhp
+#: 02100200.xhp
msgctxt ""
-"02180100.xhp\n"
-"par_id3154751\n"
-"6\n"
+"02100200.xhp\n"
+"par_id3150104\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\"SO3:EDIT:MD_DDE_LINKEDIT:ED_DDE_APP\">Lists the application that last saved the source file.</ahelp>"
+msgid "Finds the <emph>Shadowed</emph> attribute."
msgstr ""
-#: 02180100.xhp
+#: 02100200.xhp
msgctxt ""
-"02180100.xhp\n"
-"hd_id3155338\n"
-"7\n"
+"02100200.xhp\n"
+"hd_id3159156\n"
+"18\n"
"help.text"
-msgid "File:"
-msgstr "Fajli:"
+msgid "Font"
+msgstr "Fonti"
-#: 02180100.xhp
+#: 02100200.xhp
msgctxt ""
-"02180100.xhp\n"
-"par_id3153527\n"
-"8\n"
+"02100200.xhp\n"
+"par_id3154320\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"SO3:EDIT:MD_DDE_LINKEDIT:ED_DDE_TOPIC\">Lists the path to the source file.</ahelp>"
+msgid "Finds any instance where the default font was changed."
msgstr ""
-#: 02180100.xhp
-msgctxt ""
-"02180100.xhp\n"
-"hd_id3153577\n"
-"9\n"
-"help.text"
-msgid "Section"
-msgstr "Seksion"
-
-#: 02180100.xhp
+#: 02100200.xhp
msgctxt ""
-"02180100.xhp\n"
-"par_id3146958\n"
+"02100200.xhp\n"
+"hd_id3151113\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SO3:EDIT:MD_DDE_LINKEDIT:ED_DDE_ITEM\">Lists the section that the link refers to in the source file. If you want, you can enter a new section here.</ahelp>"
-msgstr ""
+msgid "Font Color"
+msgstr "Ngjyra e Fontit"
-#: gallery.xhp
+#: 02100200.xhp
msgctxt ""
-"gallery.xhp\n"
-"tit\n"
+"02100200.xhp\n"
+"par_id3149664\n"
+"11\n"
"help.text"
-msgid "Gallery"
-msgstr "Galeria"
+msgid "Finds any instance where the default font color was changed."
+msgstr ""
-#: gallery.xhp
+#: 02100200.xhp
msgctxt ""
-"gallery.xhp\n"
-"par_id3149783\n"
-"46\n"
+"02100200.xhp\n"
+"hd_id3152794\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_ICONVIEW\" visibility=\"hidden\">Displays the contents of the <emph>Gallery </emph>as icons.</ahelp>"
-msgstr ""
+msgid "Font Size"
+msgstr "Madhësia e Fontit"
-#: gallery.xhp
+#: 02100200.xhp
msgctxt ""
-"gallery.xhp\n"
-"par_id3148983\n"
-"47\n"
+"02100200.xhp\n"
+"par_id3150962\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_LISTVIEW\" visibility=\"hidden\">Displays the contents of the <emph>Gallery </emph>as small icons, with title and path information.</ahelp>"
+msgid "Finds the <emph>Font size/Font height</emph> attribute."
msgstr ""
-#: gallery.xhp
+#: 02100200.xhp
msgctxt ""
-"gallery.xhp\n"
-"hd_id3153894\n"
-"1\n"
+"02100200.xhp\n"
+"hd_id3163717\n"
+"32\n"
"help.text"
-msgid "<link href=\"text/shared/01/gallery.xhp\" name=\"Gallery\">Gallery</link>"
-msgstr ""
+msgid "Font Weight"
+msgstr "Trashësia e fontit"
-#: gallery.xhp
+#: 02100200.xhp
msgctxt ""
-"gallery.xhp\n"
-"par_id3150789\n"
-"2\n"
+"02100200.xhp\n"
+"par_id3150593\n"
+"33\n"
"help.text"
-msgid "<ahelp hid=\".uno:Gallery\">Opens the <emph>Gallery</emph>, where you can select graphics and sounds to insert into your document.</ahelp>"
+msgid "Finds the <emph>Bold</emph> or the <emph>Bold and Italic</emph> attribute."
msgstr ""
-#: gallery.xhp
+#: 02100200.xhp
msgctxt ""
-"gallery.xhp\n"
-"par_id3155555\n"
-"44\n"
+"02100200.xhp\n"
+"hd_id3146928\n"
+"26\n"
"help.text"
-msgid "You can display the contents of the <emph>Gallery </emph>as icons, or icons with titles and path information."
-msgstr ""
+msgid "Font Posture"
+msgstr "Vendosja e fontit"
-#: gallery.xhp
+#: 02100200.xhp
msgctxt ""
-"gallery.xhp\n"
-"par_id3153394\n"
-"45\n"
+"02100200.xhp\n"
+"par_id3154097\n"
+"27\n"
"help.text"
-msgid "To zoom in or zoom out on a single object in the <emph>Gallery</emph>, double-click the object, or select the object, and then press the Spacebar."
+msgid "Finds the <emph>Italic</emph> or the <emph>Bold and Italic</emph> attribute."
msgstr ""
-#: gallery.xhp
+#: 02100200.xhp
msgctxt ""
-"gallery.xhp\n"
-"par_id3145346\n"
-"26\n"
+"02100200.xhp\n"
+"hd_id3148388\n"
+"42\n"
"help.text"
-msgid "Themes are listed on the left side of the <emph>Gallery</emph>.<ahelp hid=\"HID_GALLERY_THEMELIST\">Click a theme to view the objects associated with the theme.</ahelp>"
-msgstr ""
+msgid "Orphans"
+msgstr "Jetimët"
-#: gallery.xhp
+#: 02100200.xhp
msgctxt ""
-"gallery.xhp\n"
-"par_id3155355\n"
-"50\n"
+"02100200.xhp\n"
+"par_id3156737\n"
+"43\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_WINDOW\">To insert a <emph>Gallery </emph>object, select the object, and then drag it into the document.</ahelp>"
+msgid "Finds the <link href=\"text/shared/00/00000005.xhp#schuster\">Orphan Control</link> attribute."
msgstr ""
-#: gallery.xhp
+#: 02100200.xhp
msgctxt ""
-"gallery.xhp\n"
-"hd_id3156113\n"
-"4\n"
+"02100200.xhp\n"
+"hd_id3153159\n"
+"54\n"
"help.text"
-msgid "Adding a New File to the Gallery"
-msgstr ""
+msgid "Page Style"
+msgstr "Stili i faqes"
-#: gallery.xhp
+#: 02100200.xhp
msgctxt ""
-"gallery.xhp\n"
-"par_id3153032\n"
-"43\n"
+"02100200.xhp\n"
+"par_id3147045\n"
+"55\n"
"help.text"
-msgid "To add a file to the <emph>Gallery</emph>, right-click a theme, choose <emph>Properties</emph>, click the <emph>Files </emph>tab, and then click <emph>Add</emph>. You can also click an object in the current document, hold, and then drag it to the <emph>Gallery</emph> window."
+msgid "Finds the <emph>Break With Page Style</emph> attribute."
msgstr ""
-#: gallery.xhp
+#: 02100200.xhp
msgctxt ""
-"gallery.xhp\n"
-"hd_id3145315\n"
-"10\n"
+"02100200.xhp\n"
+"hd_id3147124\n"
+"48\n"
"help.text"
-msgid "New theme"
-msgstr "Temë e Re"
+msgid "Hyphenation"
+msgstr "Hifenacion"
-#: gallery.xhp
+#: 02100200.xhp
msgctxt ""
-"gallery.xhp\n"
-"par_id3150275\n"
-"11\n"
+"02100200.xhp\n"
+"par_id3153877\n"
+"49\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_NEWTHEME\">Adds a new theme to the <emph>Gallery </emph>and lets you choose the files to include in the theme.</ahelp>"
+msgid "Finds the <emph>Hyphenation</emph> attribute."
msgstr ""
-#: gallery.xhp
+#: 02100200.xhp
msgctxt ""
-"gallery.xhp\n"
-"par_id3159167\n"
-"9\n"
+"02100200.xhp\n"
+"hd_id3148773\n"
+"68\n"
"help.text"
-msgid "To access the following commands, right-click a theme in the <emph>Gallery</emph>:"
-msgstr ""
+msgid "Scale"
+msgstr "Shkallë"
-#: gallery.xhp
+#: 02100200.xhp
msgctxt ""
-"gallery.xhp\n"
-"hd_id3154142\n"
-"15\n"
+"02100200.xhp\n"
+"par_id3147396\n"
+"69\n"
"help.text"
-msgid "Properties"
-msgstr "Vetitë"
+msgid "Finds the <emph>Scale </emph>attribute."
+msgstr ""
-#: gallery.xhp
+#: 02100200.xhp
msgctxt ""
-"gallery.xhp\n"
-"par_id3148990\n"
-"16\n"
+"02100200.xhp\n"
+"hd_id3148455\n"
+"24\n"
"help.text"
-msgid "The <emph>Properties of (Theme)</emph> dialog contains the following tabs:"
-msgstr ""
+msgid "Language"
+msgstr "Gjuhë"
-#: gallery.xhp
+#: 02100200.xhp
msgctxt ""
-"gallery.xhp\n"
-"hd_id3151384\n"
+"02100200.xhp\n"
+"par_id3150716\n"
"25\n"
"help.text"
-msgid "<link href=\"text/shared/01/gallery_files.xhp\" name=\"Files\">Files</link>"
+msgid "Finds the <emph>Language</emph> attribute (for spelling)."
msgstr ""
-#: 05340404.xhp
+#: 02100200.xhp
msgctxt ""
-"05340404.xhp\n"
-"tit\n"
+"02100200.xhp\n"
+"hd_id3154511\n"
+"46\n"
"help.text"
-msgid "Delete Rows"
-msgstr "Fshij Rreshtat"
+msgid "Tab Stops"
+msgstr "Ndalimet e tabit"
-#: 05340404.xhp
+#: 02100200.xhp
msgctxt ""
-"05340404.xhp\n"
-"hd_id3147617\n"
-"1\n"
+"02100200.xhp\n"
+"par_id3151037\n"
+"47\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340404.xhp\" name=\"Delete Rows\">Delete Rows</link>"
+msgid "Finds paragraphs that use an additional tab set."
msgstr ""
-#: 05340404.xhp
+#: 02100200.xhp
msgctxt ""
-"05340404.xhp\n"
-"par_id3147000\n"
-"2\n"
+"02100200.xhp\n"
+"hd_id3154164\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected row(s).</ahelp>"
-msgstr ""
+msgid "Underline"
+msgstr "Nënvizim"
-#: 05340404.xhp
+#: 02100200.xhp
msgctxt ""
-"05340404.xhp\n"
-"par_id3145129\n"
-"3\n"
+"02100200.xhp\n"
+"par_id3148566\n"
+"31\n"
"help.text"
-msgid "This command can be activated only when you select the <link href=\"text/shared/02/07070000.xhp\" name=\"Edit\">Edit</link> icon on the Table Data bar or Standard bar."
+msgid "Finds characters that use the <emph>Underlined</emph> attribute (single, double, or dotted)."
msgstr ""
-#: 01010100.xhp
+#: 02100200.xhp
msgctxt ""
-"01010100.xhp\n"
-"tit\n"
+"02100200.xhp\n"
+"hd_id3153099\n"
+"70\n"
"help.text"
-msgid "Templates and Documents"
-msgstr "Shabllone dhe Dokumente"
+msgid "Vertical text alignment"
+msgstr "Rreshtim vertikal i tekstit"
-#: 01010100.xhp
+#: 02100200.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3152937\n"
-"99\n"
+"02100200.xhp\n"
+"par_id3145650\n"
+"71\n"
"help.text"
-msgid "<variable id=\"vor_und_dok\"><link href=\"text/shared/01/01010100.xhp\" name=\"Templates and Documents\">Templates and Documents</link></variable>"
+msgid "Finds the <emph>Vertical text alignment </emph>attribute."
msgstr ""
-#: 01010100.xhp
+#: 02100200.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3148520\n"
-"117\n"
+"02100200.xhp\n"
+"hd_id3147259\n"
+"34\n"
"help.text"
-msgid "The <emph>Templates and Documents</emph> dialog allows you to manage your templates and sample documents."
-msgstr ""
+msgid "Individual Words"
+msgstr "Falët e veçanta"
-#: 01010100.xhp
+#: 02100200.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3157898\n"
-"118\n"
+"02100200.xhp\n"
+"par_id3156438\n"
+"35\n"
"help.text"
-msgid "To open the <emph>Templates and Documents</emph> dialog, do one of the following:"
+msgid "Finds individual words that use the underlined or the strikethrough attribute."
msgstr ""
-#: 01010100.xhp
+#: 02100200.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3156414\n"
-"125\n"
+"02100200.xhp\n"
+"hd_id3153948\n"
+"58\n"
"help.text"
-msgid "Choose <emph>File - New - Templates and Documents</emph>"
-msgstr ""
+msgid "Character background"
+msgstr "Prapavija e shkronjës"
-#: 01010100.xhp
+#: 02100200.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3153114\n"
-"126\n"
+"02100200.xhp\n"
+"par_id3145300\n"
+"59\n"
"help.text"
-msgid "Press Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+N."
+msgid "Finds characters that use the <emph>Background</emph> attribute."
msgstr ""
-#: 01010100.xhp
+#: 02100200.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3159234\n"
-"5\n"
+"02100200.xhp\n"
+"hd_id3146791\n"
+"36\n"
"help.text"
-msgid "Categories"
-msgstr "Kategoritë"
+msgid "Line Spacing"
+msgstr "Hapësira në mes linjave"
-#: 01010100.xhp
+#: 02100200.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3157958\n"
-"6\n"
+"02100200.xhp\n"
+"par_id3146912\n"
+"37\n"
"help.text"
-msgid "<ahelp hid=\".\">Categories are shown in the box on the left side of the<emph> Templates and Documents</emph> dialog. Click a category to display the files associated with that category in the <emph>Title </emph>box.</ahelp>"
+msgid "Finds the <emph>Line spacing</emph> (single line, 1.5 lines, double, proportional, at least, lead) attribute."
msgstr ""
-#: 01010100.xhp
+#: 02100300.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3149388\n"
-"100\n"
+"02100300.xhp\n"
+"tit\n"
"help.text"
-msgid "Title Box"
-msgstr "Kutia për kontrollim"
+msgid "Text Format (Search)"
+msgstr "Teksti që përshkruan formatin."
-#: 01010100.xhp
+#: 02100300.xhp
msgctxt ""
-"01010100.xhp\n"
+"02100300.xhp\n"
+"hd_id3154840\n"
+"130\n"
+"help.text"
+msgid "Text Format (Search)"
+msgstr "Teksti që përshkruan formatin."
+
+#: 02100300.xhp
+msgctxt ""
+"02100300.xhp\n"
"par_id3150355\n"
-"101\n"
+"131\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATEDLG_FILEVIEW\">Lists the available templates or documents for the selected category. Select a template or document and, then click <emph>Open</emph>. To preview the document, click the <emph>Preview</emph> button above the box on the right.</ahelp>"
+msgid "<variable id=\"formattext\"><ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_FORMAT\">Finds specific text formatting features, such as font types, font effects, and text flow characteristics.</ahelp></variable>"
msgstr ""
-#: 01010100.xhp
+#: 02100300.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3152996\n"
-"102\n"
+"02100300.xhp\n"
+"par_id3145383\n"
+"192\n"
"help.text"
-msgid "Back"
-msgstr "Prapa"
+msgid "The search criteria for attributes are listed below the <emph>Search for</emph> box."
+msgstr ""
-#: 01010100.xhp
+#: 02100300.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3153257\n"
+"02100300.xhp\n"
+"par_id3150466\n"
+"132\n"
"help.text"
-msgid "<image id=\"img_id3149784\" src=\"res/sc06301.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149784\">Icon</alt></image>"
+msgid "You do not need to specify a search text in the <emph>Search for</emph> box when you search and replace formatting."
msgstr ""
-#: 01010100.xhp
+#: 02100300.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3153822\n"
-"103\n"
+"02100300.xhp\n"
+"par_id3156152\n"
+"133\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_BACK\">Moves back to the previous window in the dialog.</ahelp>"
+msgid "To define a replacement format, click in the <emph>Replace with</emph> box, and then click the <emph>Format </emph>button."
msgstr ""
-#: 01010100.xhp
+#: 02100300.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3148685\n"
-"104\n"
+"02100300.xhp\n"
+"par_id3153821\n"
+"157\n"
"help.text"
-msgid "Up One Level"
-msgstr "Një nivel më lartë"
+msgid "Use the <emph>Text Format (Search)</emph> or the <emph>Text Format (Replace)</emph> to define your formatting search criteria. These dialogs contain the following tab pages:"
+msgstr ""
-#: 01010100.xhp
+#: 02100300.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3156152\n"
+"02100300.xhp\n"
+"par_id3062837\n"
"help.text"
-msgid "<image id=\"img_id3149762\" src=\"svtools/res/up_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149762\">Icon</alt></image>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Finds specific text formatting features, such as font types, font effects, and text flow characteristics.</ahelp>"
msgstr ""
-#: 01010100.xhp
+#: 02100300.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3156024\n"
-"105\n"
+"02100300.xhp\n"
+"par_id3149457\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PREV\">Moves up one folder level, if available.</ahelp>"
+msgid "<link href=\"text/shared/01/02100200.xhp\" name=\"Attributes\">Attributes</link>"
msgstr ""
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3147264\n"
-"106\n"
+"02110000.xhp\n"
+"tit\n"
"help.text"
-msgid "Print"
-msgstr "Shtyp"
+msgid "Navigator for Master Documents"
+msgstr "Përmban shabllone për krijimin e dokumenteve të reja"
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3154346\n"
+"02110000.xhp\n"
+"hd_id3153391\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3148663\" src=\"cmd/sc_print.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148663\">Icon</alt></image>"
+msgid "<link href=\"text/shared/01/02110000.xhp\">Navigator for Master Documents</link>"
msgstr ""
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3150359\n"
-"107\n"
+"02110000.xhp\n"
+"par_id3150603\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">Prints the selected template or document.</ahelp>"
+msgid "In a <link href=\"text/shared/01/01010001.xhp\">master document</link>, you can switch the Navigator between normal view and master view."
msgstr ""
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3149651\n"
-"9\n"
+"02110000.xhp\n"
+"par_id3148585\n"
+"25\n"
"help.text"
-msgid "Preview"
-msgstr "Shikim paraprak"
+msgid "<ahelp hid=\"HID_NAVIGATOR_GLOB_TREELIST\">The Navigator lists the main components of the master document. If you rest the mouse pointer over a name of a sub-document in the list, the full path of the sub-document is displayed.</ahelp>"
+msgstr ""
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3148799\n"
-"10\n"
+"02110000.xhp\n"
+"par_id3150789\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PRINT\">Allows you to preview the template or document, as well as view the document properties.</ahelp> To preview the template or document, click the <emph>Preview</emph> icon at the top of the Preview box on the right side of the dialog. To view the properties of the document, click the <emph>Document Properties</emph> icon at the top of the Preview box."
+msgid "The master view in the Navigator displays the following icons:"
msgstr ""
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3149807\n"
-"108\n"
+"02110000.xhp\n"
+"hd_id3152542\n"
+"4\n"
"help.text"
-msgid "Preview"
-msgstr "Shikim paraprak"
+msgid "Toggle"
+msgstr "Kapërce"
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3150741\n"
+"02110000.xhp\n"
+"par_id3153394\n"
+"5\n"
"help.text"
-msgid "<image id=\"img_id3148451\" src=\"svtools/res/preview_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148451\">Icon</alt></image>"
+msgid "Switches between master view and normal view."
msgstr ""
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3151043\n"
-"109\n"
+"02110000.xhp\n"
+"par_id3145313\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_PREVIEW\">Allows you to preview the selected template or document.</ahelp>"
+msgid "<image id=\"img_id3155535\" src=\"sw/imglst/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
msgstr ""
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3145606\n"
-"110\n"
+"02110000.xhp\n"
+"par_id3159233\n"
+"6\n"
"help.text"
-msgid "Document Properties"
-msgstr "Vetitë e dokumentit"
+msgid "Toggle"
+msgstr "Kapërce"
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3147353\n"
+"02110000.xhp\n"
+"hd_id3147275\n"
+"7\n"
"help.text"
-msgid "<image id=\"img_id3153367\" src=\"svtools/res/info_small.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153367\">Icon</alt></image>"
-msgstr ""
+msgid "Edit"
+msgstr "Edito"
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3153210\n"
-"12\n"
+"02110000.xhp\n"
+"par_id3147242\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEMPLATEDLG_TB_DOCINFO\">Displays the properties for the selected template or document.</ahelp>"
+msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the index dialog is opened.</ahelp>"
msgstr ""
-#: 01010100.xhp
-msgctxt ""
-"01010100.xhp\n"
-"hd_id3153142\n"
-"111\n"
-"help.text"
-msgid "Organize"
-msgstr "Organizo..."
-
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3156441\n"
-"112\n"
+"02110000.xhp\n"
+"par_id3153716\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_MANAGE\">Adds, removes, or rearranges templates or sample documents.</ahelp>"
+msgid "<image id=\"img_id3145416\" src=\"sw/imglst/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
msgstr ""
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3149483\n"
-"113\n"
+"02110000.xhp\n"
+"par_id3149192\n"
+"9\n"
"help.text"
msgid "Edit"
msgstr "Edito"
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3154470\n"
-"114\n"
+"02110000.xhp\n"
+"hd_id3150084\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT\">Opens the selected template for editing.</ahelp>"
-msgstr ""
+msgid "Update"
+msgstr "Azhuro"
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"hd_id3147428\n"
-"115\n"
+"02110000.xhp\n"
+"par_id3149164\n"
+"11\n"
"help.text"
-msgid "Open"
-msgstr "Hape"
+msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
+msgstr ""
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3148617\n"
-"116\n"
+"02110000.xhp\n"
+"par_id3159166\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_DOCTEMPLATE_BTN_DOCTEMPLATE_EDIT\">Opens the selected document or creates a document based on the selected template.</ahelp>"
+msgid "<image id=\"img_id3153146\" src=\"sw/imglst/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
msgstr ""
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3155306\n"
-"98\n"
+"02110000.xhp\n"
+"par_id3145086\n"
+"12\n"
"help.text"
-msgid "To add another folder to the template path, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010300.xhp\" name=\"$[officename] - Paths\"><emph>$[officename] - Paths</emph></link>, and then enter the path."
-msgstr ""
+msgid "Update"
+msgstr "Azhuro"
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3149379\n"
+"02110000.xhp\n"
+"hd_id3147264\n"
+"28\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100000.xhp\" name=\"File properties\">File properties</link>"
-msgstr ""
+msgid "Selection"
+msgstr "Selektimet"
-#: 01010100.xhp
+#: 02110000.xhp
msgctxt ""
-"01010100.xhp\n"
-"par_id3147396\n"
+"02110000.xhp\n"
+"par_id3147303\n"
+"29\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110100.xhp\" name=\"Template Management\">Template Management</link>"
+msgid "<ahelp hid=\"HID_GLBLTREE_UPD_SEL\">Updates the contents of the selection.</ahelp>"
msgstr ""
-#: 05990000.xhp
+#: 02110000.xhp
msgctxt ""
-"05990000.xhp\n"
-"tit\n"
+"02110000.xhp\n"
+"hd_id3148756\n"
+"30\n"
"help.text"
-msgid "Text"
-msgstr "Tekst"
+msgid "Indexes"
+msgstr "Indekset"
-#: 05990000.xhp
+#: 02110000.xhp
msgctxt ""
-"05990000.xhp\n"
-"hd_id3155757\n"
-"1\n"
+"02110000.xhp\n"
+"par_id3156435\n"
+"31\n"
"help.text"
-msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
+msgid "<ahelp hid=\"HID_GLBLTREE_UPD_IDX\">Updates all indexes.</ahelp>"
msgstr ""
-#: 05990000.xhp
+#: 02110000.xhp
msgctxt ""
-"05990000.xhp\n"
-"par_id3150467\n"
-"2\n"
+"02110000.xhp\n"
+"hd_id3153524\n"
+"32\n"
"help.text"
-msgid "<variable id=\"texttext\"><ahelp hid=\".uno:TextAttributes\">Sets the layout and anchoring properties for text in the selected drawing or text object.</ahelp></variable>"
-msgstr ""
+msgid "Links"
+msgstr "Lidhjet"
-#: 05990000.xhp
+#: 02110000.xhp
msgctxt ""
-"05990000.xhp\n"
-"par_id3150620\n"
-"3\n"
+"02110000.xhp\n"
+"par_id3154224\n"
+"33\n"
"help.text"
-msgid "This command is only available for drawing objects that can contain text, for example for rectangles, but not for lines."
+msgid "<ahelp hid=\"HID_GLBLTREE_UPD_LINK\">Updates all links.</ahelp>"
msgstr ""
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"tit\n"
+"02110000.xhp\n"
+"hd_id3154938\n"
+"34\n"
"help.text"
-msgid "Area"
-msgstr "Hapësira"
+msgid "All"
+msgstr "Të gjitha"
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"bm_id3149999\n"
+"02110000.xhp\n"
+"par_id3154154\n"
+"35\n"
"help.text"
-msgid "<bookmark_value>areas; styles</bookmark_value><bookmark_value>fill patterns for areas</bookmark_value><bookmark_value>fill colors for areas</bookmark_value><bookmark_value>invisible areas</bookmark_value>"
+msgid "<ahelp hid=\"HID_GLBLTREEUPD_ALL\">Updates all contents.</ahelp>"
msgstr ""
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3145759\n"
-"1\n"
+"02110000.xhp\n"
+"hd_id3154631\n"
+"48\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area\">Area</link>"
-msgstr ""
+msgid "Edit link"
+msgstr "Edito Linkun"
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3149748\n"
-"2\n"
+"02110000.xhp\n"
+"par_id3153105\n"
+"49\n"
"help.text"
-msgid "<ahelp hid=\"HID_AREA_AREA\">Set the fill options for the selected drawing object.</ahelp>"
+msgid "This command is found by right-clicking an inserted file in the Navigator.<ahelp hid=\"HID_GLBLTREE_EDIT_LINK\">Changes the link properties for the selected file.</ahelp>"
msgstr ""
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3154863\n"
-"65\n"
+"02110000.xhp\n"
+"hd_id3152933\n"
+"13\n"
"help.text"
-msgid "You can save collections of colors, gradients, hatchings, and bitmap patterns as lists that you can later load and use."
-msgstr ""
+msgid "Insert"
+msgstr "Shto"
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3149999\n"
-"3\n"
+"02110000.xhp\n"
+"par_id3147084\n"
+"14\n"
"help.text"
-msgid "Fill"
-msgstr "Mbush"
+msgid "<ahelp hid=\"HID_GLBLTREE_INSERT\">Inserts a file, an index, or a new document into the master document.</ahelp>"
+msgstr ""
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3154673\n"
-"4\n"
+"02110000.xhp\n"
+"par_id3153969\n"
+"57\n"
"help.text"
-msgid "<variable id=\"sytext\"><ahelp hid=\".uno:FillStyle\">Select the type of fill that you want to apply to the selected drawing object.</ahelp></variable>"
+msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
msgstr ""
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3148548\n"
-"55\n"
+"02110000.xhp\n"
+"par_id3153951\n"
"help.text"
-msgid "List boxes on the <emph>Drawing Object Properties</emph> toolbar:"
+msgid "<image id=\"img_id3146984\" src=\"sw/imglst/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
msgstr ""
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3147373\n"
-"5\n"
+"02110000.xhp\n"
+"par_id3150486\n"
+"15\n"
"help.text"
-msgid "None"
-msgstr "Asnjë"
+msgid "Insert"
+msgstr "Shto"
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3147088\n"
-"6\n"
+"02110000.xhp\n"
+"hd_id3146921\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_AREA_RBT_FILL_OFF\">Does not apply a fill to the selected object. If the object contains a fill, the fill is removed.</ahelp>"
+msgid "Index"
+msgstr "Indeks"
+
+#: 02110000.xhp
+msgctxt ""
+"02110000.xhp\n"
+"par_id3149267\n"
+"37\n"
+"help.text"
+msgid "<ahelp hid=\"HID_GLBLTREE_INS_IDX\">Inserts an index or a table of contents into the master document.</ahelp>"
msgstr ""
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3153345\n"
-"8\n"
+"02110000.xhp\n"
+"hd_id3155413\n"
+"42\n"
"help.text"
-msgid "Color"
-msgstr "Ngjyra"
+msgid "File"
+msgstr "Fajlli"
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3149750\n"
-"9\n"
+"02110000.xhp\n"
+"par_id3159198\n"
+"43\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_COLOR\">Fills the selected object with the color that you click in the list.</ahelp>"
+msgid "<ahelp hid=\"HID_GLBLTREE_INS_FILE\">Inserts one or more existing files into the master document.</ahelp>"
msgstr ""
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3153147\n"
-"57\n"
+"02110000.xhp\n"
+"hd_id3155856\n"
+"44\n"
"help.text"
-msgid "To add a color to the list, choose <link href=\"text/shared/optionen/01010500.xhp\" name=\"Format - Area\"><emph>Format - Area</emph></link>, click the<emph> Colors</emph> tab, and then click <emph>Edit</emph>."
-msgstr ""
+msgid "New Document"
+msgstr "Dokument i ri"
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id9695730\n"
+"02110000.xhp\n"
+"par_id3154321\n"
+"45\n"
"help.text"
-msgid "To add a color to the list, choose <link href=\"text/shared/optionen/01010500.xhp\" name=\"Format - Area\"><emph>Format - Area</emph></link>, click the <emph>Colors</emph> tab, and then click <emph>Edit</emph>."
+msgid "<ahelp hid=\"HID_GLBLTREE_INS_NEW_FILE\">Creates and inserts a new sub-document.</ahelp> When you create a new document, you are prompted to enter the file name and the location where you want to save the document."
msgstr ""
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3144438\n"
-"10\n"
+"02110000.xhp\n"
+"hd_id3154472\n"
+"46\n"
"help.text"
-msgid "Gradient"
-msgstr "Shkallëzim"
+msgid "Text"
+msgstr "Tekst"
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3153716\n"
-"11\n"
+"02110000.xhp\n"
+"par_id3163712\n"
+"47\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_GRADIENT\">Fills the selected object with the gradient that you click in the list.</ahelp>"
+msgid "<ahelp hid=\"HID_GLBLTREE_INS_TEXT\">Inserts a new paragraph in the master document where you can enter text. You cannot insert text next to an existing text entry in the Navigator.</ahelp>"
msgstr ""
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3154047\n"
-"12\n"
+"02110000.xhp\n"
+"hd_id3154640\n"
+"16\n"
"help.text"
-msgid "Hatching"
-msgstr "Vijëzim"
+msgid "Save Contents as well"
+msgstr "Ruaji përmbajtjet gjithashtu"
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3153698\n"
-"13\n"
+"02110000.xhp\n"
+"par_id3149666\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_AREA_RBT_HATCH\">Fills the selected object with the hatching pattern that you click in the list. To apply a background color to the hatching pattern, select the <emph>Background color</emph> box, and then click a color in the list.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_TBX21\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
msgstr ""
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3150771\n"
-"14\n"
+"02110000.xhp\n"
+"par_id3151351\n"
"help.text"
-msgid "Bitmap"
-msgstr "Bitmap"
+msgid "<image id=\"img_id3152885\" src=\"sw/imglst/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgstr ""
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3149762\n"
-"15\n"
+"02110000.xhp\n"
+"par_id3157974\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_BITMAP\">Fills the selected object with the bitmap pattern that you click in the list. To add a bitmap to the list, open this dialog in %PRODUCTNAME Draw, click the <emph>Bitmaps </emph>tab, and then click <emph>Import</emph>.</ahelp>"
-msgstr ""
+msgid "Save Contents as well"
+msgstr "Ruaji përmbajtjet gjithashtu"
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3150504\n"
-"16\n"
+"02110000.xhp\n"
+"hd_id3154096\n"
+"19\n"
"help.text"
-msgid "Area Fill"
-msgstr "Hijezo mbushjen"
+msgid "Move Down"
+msgstr "Lëviz poshtë"
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3153626\n"
-"17\n"
+"02110000.xhp\n"
+"par_id3155852\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_AREA:LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_TBX23\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3154346\n"
-"20\n"
+"02110000.xhp\n"
+"par_id3154790\n"
"help.text"
-msgid "Increments (Gradients)"
-msgstr "Zvogëlo shkallëzimin"
+msgid "<image id=\"img_id3166413\" src=\"sw/imglst/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
+msgstr ""
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3144423\n"
+"02110000.xhp\n"
+"par_id3149417\n"
"21\n"
"help.text"
-msgid "Set the number of steps for blending the two end colors of a gradient."
-msgstr ""
+msgid "Move Down"
+msgstr "Lëviz poshtë"
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3147264\n"
+"02110000.xhp\n"
+"hd_id3147124\n"
"22\n"
"help.text"
-msgid "Automatic"
-msgstr "Automatike"
+msgid "Move Up"
+msgstr "Lëviz sipër"
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3149457\n"
+"02110000.xhp\n"
+"par_id3146927\n"
"23\n"
"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_STEPCOUNT\">Automatically determines the number of steps for blending the two end colors of the gradient.</ahelp>"
+msgid "<ahelp hid=\"HID_NAVI_TBX22\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
msgstr ""
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3154388\n"
-"24\n"
+"02110000.xhp\n"
+"par_id3156178\n"
"help.text"
-msgid "Increment"
-msgstr "Rritje linje"
+msgid "<image id=\"img_id3155083\" src=\"sw/imglst/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgstr ""
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3150360\n"
-"25\n"
+"02110000.xhp\n"
+"par_id3147257\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_AREA:NUM_FLD_STEPCOUNT\">Enter the number of steps for blending the two end colors of the gradient.</ahelp>"
-msgstr ""
+msgid "Move Up"
+msgstr "Lëviz sipër"
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3153381\n"
-"31\n"
+"02110000.xhp\n"
+"hd_id3148566\n"
+"26\n"
"help.text"
-msgid "Size (Bitmaps)"
-msgstr "Bitampe të lidhura"
+msgid "Delete"
+msgstr "Fshije"
-#: 05210100.xhp
+#: 02110000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3148798\n"
-"32\n"
+"02110000.xhp\n"
+"par_id3153099\n"
+"27\n"
"help.text"
-msgid "Specify the dimensions of the bitmap."
-msgstr "Këmbe në bitmapë"
+msgid "<ahelp hid=\"HID_GLBLTREE_DEL\">Deletes the selection from the Navigator list.</ahelp>"
+msgstr ""
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3154068\n"
-"33\n"
+"02180000.xhp\n"
+"tit\n"
"help.text"
-msgid "Relative"
-msgstr "Madhësitë relative"
+msgid "Edit Links"
+msgstr "Rregullo linqet"
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3125865\n"
-"34\n"
+"02180000.xhp\n"
+"bm_id3156156\n"
"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_SCALE\">Rescales the bitmap relative to the size of the selected object by the percentage values that you enter in the <emph>Width</emph> and <emph>Height</emph> boxes . Clear this checkbox to resize the selected object with the measurements that you enter in the <emph>Width</emph> and <emph>Height</emph> boxes.</ahelp>"
+msgid "<bookmark_value>opening;documents with links</bookmark_value> <bookmark_value>links; updating specific links</bookmark_value> <bookmark_value>updating; links, on opening</bookmark_value> <bookmark_value>links; opening files with</bookmark_value>"
msgstr ""
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3149202\n"
-"35\n"
+"02180000.xhp\n"
+"hd_id3150279\n"
+"1\n"
"help.text"
-msgid "Original"
-msgstr "Origjinal"
+msgid "Edit Links"
+msgstr "Rregullo linqet"
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3153970\n"
-"36\n"
+"02180000.xhp\n"
+"par_id3150774\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_ORIGINAL\">Retains the original size of the bitmap when filling the selected object. To resize the bitmap, clear this checkbox, and then click <emph>Relative</emph>.</ahelp>"
+msgid "<variable id=\"verknuepfungentext\"><ahelp hid=\".uno:ManageLinks\">Lets you edit the properties of each link in the current document, including the path to the source file. This command is not available if the current document does not contain links to other files.</ahelp></variable>"
msgstr ""
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3155994\n"
-"37\n"
+"02180000.xhp\n"
+"par_id3156156\n"
+"27\n"
"help.text"
-msgid "Width"
-msgstr "Gjerësia"
+msgid "When you open a file that contains links, you are prompted to update the links. Depending on where the linked files are stored, the update process can take several minutes to complete."
+msgstr ""
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3149810\n"
-"38\n"
+"02180000.xhp\n"
+"par_id3143270\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_X_SIZE\">Enter a width for the bitmap.</ahelp>"
+msgid "If you are loading a file that contains DDE links, you are prompted to update the links. Decline the update if you do not want to establish a connection to the DDE server."
msgstr ""
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3156281\n"
-"39\n"
+"02180000.xhp\n"
+"par_idN10646\n"
"help.text"
-msgid "Height"
-msgstr "Lartësia"
+msgid "<ahelp hid=\"34869\">Double-click a link in the list to open a file dialog where you can select another object for this link.</ahelp>"
+msgstr ""
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3150868\n"
-"40\n"
+"02180000.xhp\n"
+"par_idN1099856\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_Y_SIZE\">Enter a height for the bitmap.</ahelp>"
+msgid "When you open a file by an URL from the Windows file dialog, Windows will open a local copy of the file, located in the Internet Explorer cache. The %PRODUCTNAME file dialog opens the remote file."
msgstr ""
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3148673\n"
-"41\n"
+"02180000.xhp\n"
+"hd_id3155503\n"
+"3\n"
"help.text"
-msgid "Position (Bitmaps)"
-msgstr "Bitampe të lidhura"
+msgid "Source file"
+msgstr "Skedari i burimit"
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3154821\n"
-"42\n"
+"02180000.xhp\n"
+"par_id3156152\n"
+"4\n"
"help.text"
-msgid "Click in the position grid to specify the offset for tiling the bitmap."
-msgstr ""
+msgid "Lists the path to the source file."
+msgstr "Shtegu për fajllin $(FILE) nuk ekziston."
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3153056\n"
-"43\n"
+"02180000.xhp\n"
+"hd_id3155449\n"
+"11\n"
"help.text"
-msgid "X Offset"
-msgstr ""
+msgid "Element"
+msgstr "Elementi"
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3147299\n"
-"44\n"
+"02180000.xhp\n"
+"par_id3153348\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_X_OFFSET\">Enter the horizontal offset for tiling the bitmap.</ahelp>"
+msgid "Lists the application (if known) that last saved the source file."
msgstr ""
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3149985\n"
-"45\n"
+"02180000.xhp\n"
+"hd_id3153061\n"
+"7\n"
"help.text"
-msgid "Y Offset"
-msgstr ""
+msgid "Type"
+msgstr "Tipi"
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3148559\n"
-"46\n"
+"02180000.xhp\n"
+"par_id3151384\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_Y_OFFSET\">Enter the vertical offset for tiling the bitmap.</ahelp>"
+msgid "Lists the file type, such as graphic, of the source file."
msgstr ""
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3156060\n"
-"27\n"
+"02180000.xhp\n"
+"hd_id3156343\n"
+"9\n"
"help.text"
-msgid "Tile"
-msgstr "Pllakë"
+msgid "Status"
+msgstr "Gjendje"
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3152576\n"
-"28\n"
+"02180000.xhp\n"
+"par_id3149046\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_TILE\">Tiles the bitmap to fill the selected object.</ahelp>"
+msgid "Lists additional information about the source file."
msgstr ""
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3150334\n"
-"29\n"
+"02180000.xhp\n"
+"hd_id3147264\n"
+"15\n"
"help.text"
-msgid "AutoFit"
-msgstr "Përshtate Automatikisht lartësinë"
+msgid "Automatic"
+msgstr "Automatike"
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3149481\n"
-"30\n"
+"02180000.xhp\n"
+"par_id3147304\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_STRETCH\">Stretches the bitmap to fill the selected object. To use this feature, clear the <emph>Tile </emph>box.</ahelp>"
+msgid "<ahelp hid=\"SO3:RADIOBUTTON:MD_UPDATE_BASELINKS:RB_AUTOMATIC\">Automatically updates the contents of the link when you open the file. Any changes made in the source file are then displayed in the file containing the link. Linked graphic files can only be updated manually.</ahelp> This option is not available for a linked graphic file."
msgstr ""
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3148555\n"
-"47\n"
+"02180000.xhp\n"
+"par_id3149456\n"
+"30\n"
"help.text"
-msgid "Offset"
+msgid "The <emph>Automatic</emph> option is only available for DDE links. You can insert a DDE link by copying the contents from one file and pasting by choosing <emph>Edit - Paste Special</emph>, and then selecting the <emph>Link</emph> box. As DDE is a text based linking system, only the displayed decimals are copied into the target sheet."
msgstr ""
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3155412\n"
-"48\n"
+"02180000.xhp\n"
+"hd_id3154938\n"
+"17\n"
"help.text"
-msgid "Specify the offset for tiling the bitmap in terms of rows and columns."
+msgid "Manual"
+msgstr "Joautomatike"
+
+#: 02180000.xhp
+msgctxt ""
+"02180000.xhp\n"
+"par_id3151210\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"SO3:RADIOBUTTON:MD_UPDATE_BASELINKS:RB_MANUAL\">Only updates the link when you click the <emph>Update </emph>button.</ahelp>"
msgstr ""
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3151115\n"
-"49\n"
+"02180000.xhp\n"
+"hd_id3156280\n"
+"19\n"
"help.text"
-msgid "Row"
-msgstr "Rresht"
+msgid "Update"
+msgstr "Azhuro"
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3155369\n"
-"50\n"
+"02180000.xhp\n"
+"par_id3157320\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_ROW\">Horizontally offsets the original bitmap relative to the bitmap tiles by the amount that you enter.</ahelp>"
+msgid "<ahelp hid=\"SO3:PUSHBUTTON:MD_UPDATE_BASELINKS:PB_UPDATE_NOW\">Updates the selected link so that the most recently saved version of the linked file is displayed in the current document.</ahelp>"
msgstr ""
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3144442\n"
-"51\n"
+"02180000.xhp\n"
+"hd_id3151381\n"
+"21\n"
"help.text"
-msgid "Column"
-msgstr "Kolonë"
+msgid "Modify"
+msgstr "Modifiko"
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3146974\n"
-"52\n"
+"02180000.xhp\n"
+"par_id3154125\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_COLUMN\">Vertically offsets the original bitmap relative to the bitmap tiles by the amount that you enter.</ahelp>"
+msgid "<ahelp hid=\"SO3:PUSHBUTTON:MD_UPDATE_BASELINKS:PB_CHANGE_SOURCE\">Change the source file for the selected link.</ahelp>"
msgstr ""
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3150684\n"
-"53\n"
+"02180000.xhp\n"
+"hd_id3147084\n"
+"23\n"
"help.text"
-msgid "Percent"
-msgstr "Përqindja"
+msgid "Break Link"
+msgstr "~linja ndërprerëse"
-#: 05210100.xhp
+#: 02180000.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3155314\n"
-"54\n"
+"02180000.xhp\n"
+"par_id3147230\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_OFFSET\">Enter the percentage to offset the rows or columns.</ahelp>"
+msgid "<ahelp hid=\"SO3:PUSHBUTTON:MD_UPDATE_BASELINKS:PB_BREAK_LINK\">Breaks the link between the source file and the current document. The most recently updated contents of the source file are kept in the current document.</ahelp>"
msgstr ""
-#: 05210100.xhp
+#: 02180100.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3152887\n"
-"59\n"
+"02180100.xhp\n"
+"tit\n"
"help.text"
-msgid "Background Color (Hatching)"
-msgstr "Ngjyra e 3D materialit"
+msgid "Modify Links"
+msgstr "Linkat e vizituar"
-#: 05210100.xhp
+#: 02180100.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3153364\n"
-"61\n"
+"02180100.xhp\n"
+"bm_id3149877\n"
"help.text"
-msgid "Background color"
-msgstr "Ngjyra e sfondit"
+msgid "<bookmark_value>links; modifying</bookmark_value><bookmark_value>changing; links</bookmark_value>"
+msgstr ""
-#: 05210100.xhp
+#: 02180100.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3152940\n"
-"62\n"
+"02180100.xhp\n"
+"hd_id3149877\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_AREA:CB_HATCHBCKGRD\">Applies a background color to the hatching pattern. Select this checkbox, and then click a color in the list.</ahelp>"
+msgid "<link href=\"text/shared/01/02180100.xhp\" name=\"Modify Links\">Modify Links</link>"
msgstr ""
-#: 05210100.xhp
+#: 02180100.xhp
msgctxt ""
-"05210100.xhp\n"
-"hd_id3152460\n"
-"63\n"
+"02180100.xhp\n"
+"par_id3150838\n"
+"2\n"
"help.text"
-msgid "List of colors"
-msgstr "Ngjyrat sipas dëshirës"
+msgid "Change the properties for the selected <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE link\">DDE link</link>."
+msgstr ""
-#: 05210100.xhp
+#: 02180100.xhp
msgctxt ""
-"05210100.xhp\n"
-"par_id3157309\n"
-"64\n"
+"02180100.xhp\n"
+"hd_id3149549\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_AREA:LB_HATCHBCKGRDCOLOR\">Click the color that you want to use as a background for the selected hatching pattern.</ahelp>"
+msgid "Edit Links"
+msgstr "Rregullo linqet"
+
+#: 02180100.xhp
+msgctxt ""
+"02180100.xhp\n"
+"par_id3153114\n"
+"4\n"
+"help.text"
+msgid "Lets you set the properties for the selected link."
msgstr ""
-#: 05070000.xhp
+#: 02180100.xhp
msgctxt ""
-"05070000.xhp\n"
-"tit\n"
+"02180100.xhp\n"
+"hd_id3148548\n"
+"5\n"
"help.text"
-msgid "Aligning (Objects)"
-msgstr "Titull, 4 Objekte"
+msgid "Application:"
+msgstr "Programi ["
-#: 05070000.xhp
+#: 02180100.xhp
msgctxt ""
-"05070000.xhp\n"
-"bm_id3149987\n"
+"02180100.xhp\n"
+"par_id3154751\n"
+"6\n"
"help.text"
-msgid "<bookmark_value>aligning; objects</bookmark_value><bookmark_value>positioning; objects</bookmark_value><bookmark_value>ordering; objects</bookmark_value>"
+msgid "<ahelp hid=\"SO3:EDIT:MD_DDE_LINKEDIT:ED_DDE_APP\">Lists the application that last saved the source file.</ahelp>"
msgstr ""
-#: 05070000.xhp
+#: 02180100.xhp
msgctxt ""
-"05070000.xhp\n"
-"hd_id3149987\n"
-"1\n"
+"02180100.xhp\n"
+"hd_id3155338\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070000.xhp\" name=\"Aligning (Objects)\">Alignment (Objects)</link>"
-msgstr ""
+msgid "File:"
+msgstr "Fajli:"
-#: 05070000.xhp
+#: 02180100.xhp
msgctxt ""
-"05070000.xhp\n"
-"par_id3150445\n"
-"2\n"
+"02180100.xhp\n"
+"par_id3153527\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\">Aligns selected objects with respect to one another.</ahelp>"
+msgid "<ahelp hid=\"SO3:EDIT:MD_DDE_LINKEDIT:ED_DDE_TOPIC\">Lists the path to the source file.</ahelp>"
msgstr ""
-#: 05070000.xhp
+#: 02180100.xhp
msgctxt ""
-"05070000.xhp\n"
-"par_id3150144\n"
-"4\n"
+"02180100.xhp\n"
+"hd_id3153577\n"
+"9\n"
"help.text"
-msgid "If one of the selected objects is anchored as a character, some of the alignment options do not work."
-msgstr ""
+msgid "Section"
+msgstr "Seksion"
-#: 05070000.xhp
+#: 02180100.xhp
msgctxt ""
-"05070000.xhp\n"
-"par_id8872646\n"
+"02180100.xhp\n"
+"par_id3146958\n"
+"10\n"
"help.text"
-msgid "Not all types of objects can be selected together. Not all modules (Writer, Calc, Impress, Draw) support all types of alignment."
+msgid "<ahelp hid=\"SO3:EDIT:MD_DDE_LINKEDIT:ED_DDE_ITEM\">Lists the section that the link refers to in the source file. If you want, you can enter a new section here.</ahelp>"
msgstr ""
-#: 01110000.xhp
+#: 02190000.xhp
msgctxt ""
-"01110000.xhp\n"
+"02190000.xhp\n"
"tit\n"
"help.text"
-msgid "Templates"
-msgstr "Shabllonet"
+msgid "Plug-in"
+msgstr "Lësho në..."
-#: 01110000.xhp
+#: 02190000.xhp
msgctxt ""
-"01110000.xhp\n"
-"hd_id3155577\n"
-"1\n"
+"02190000.xhp\n"
+"bm_id3146946\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110000.xhp\" name=\"Templates\">Templates</link>"
+msgid "<bookmark_value>plug-ins; activating and deactivating</bookmark_value><bookmark_value>activating;plug-ins</bookmark_value><bookmark_value>deactivating; plug-ins</bookmark_value>"
msgstr ""
-#: 01110000.xhp
+#: 02190000.xhp
msgctxt ""
-"01110000.xhp\n"
-"par_id3154894\n"
-"2\n"
+"02190000.xhp\n"
+"hd_id3146946\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Lets you organize and edit your templates, as well as save the current file as a template.</ahelp>"
+msgid "<link href=\"text/shared/01/02190000.xhp\" name=\"Plug-in\">Plug-in</link>"
msgstr ""
-#: 01110000.xhp
+#: 02190000.xhp
msgctxt ""
-"01110000.xhp\n"
-"hd_id3149893\n"
-"3\n"
+"02190000.xhp\n"
+"par_id3154863\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110101.xhp\" name=\"Address Book Source\">Address Book Source</link>"
+msgid "<ahelp hid=\".uno:PlugInsActive\">Allows you to edit <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-ins\">plug-ins</link> in your file. Choose this command to enable or disable this feature. When enabled, a check mark appears beside this command, and you find commands to edit the plug-in in its context menu. When disabled, you find commands to control the plug-in in its context menu.</ahelp>"
msgstr ""
-#: 01160200.xhp
+#: 02200000.xhp
msgctxt ""
-"01160200.xhp\n"
+"02200000.xhp\n"
"tit\n"
"help.text"
-msgid "Document as E-mail"
-msgstr "Dokumenti si E-mail..."
+msgid "Object"
+msgstr "Objekt"
-#: 01160200.xhp
+#: 02200000.xhp
msgctxt ""
-"01160200.xhp\n"
-"hd_id3150702\n"
+"02200000.xhp\n"
+"hd_id3146959\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/01160200.xhp\">Document as E-mail</link>"
+msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
msgstr ""
-#: 01160200.xhp
+#: 02200000.xhp
msgctxt ""
-"01160200.xhp\n"
-"par_id3152823\n"
+"02200000.xhp\n"
+"par_id3154840\n"
"2\n"
"help.text"
-msgid "<variable id=\"versendentext\"><ahelp hid=\".uno:SendMail\">Opens a new window in your default e-mail program with the current document as an attachment. The current file format is used.</ahelp></variable> If the document is new and unsaved, the format specified in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - General is used."
+msgid "<ahelp hid=\".uno:ObjectMenue\">Lets you edit a selected object in your file that you inserted with the <emph>Insert - Object </emph>command.</ahelp>"
msgstr ""
-#: 01160200.xhp
+#: 02200000.xhp
msgctxt ""
-"01160200.xhp\n"
-"par_id0807200809553672\n"
+"02200000.xhp\n"
+"par_id3153551\n"
"help.text"
-msgid "If the document is in HTML format, any embedded or linked images will not be sent with the e-mail."
+msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Insert - Object\">Insert - Object</link>"
msgstr ""
-#: 05200100.xhp
+#: 02200000.xhp
msgctxt ""
-"05200100.xhp\n"
+"02200000.xhp\n"
+"par_id1717886\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Resizes the object to the original size.</ahelp>"
+msgstr ""
+
+#: 02200100.xhp
+msgctxt ""
+"02200100.xhp\n"
"tit\n"
"help.text"
-msgid "Line"
-msgstr "Rreshti"
+msgid "Edit"
+msgstr "Edito"
-#: 05200100.xhp
+#: 02200100.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3148882\n"
-"1\n"
+"02200100.xhp\n"
+"bm_id3145138\n"
"help.text"
-msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line\">Line</link>"
+msgid "<bookmark_value>objects; editing</bookmark_value><bookmark_value>editing; objects</bookmark_value>"
msgstr ""
-#: 05200100.xhp
+#: 02200100.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3153272\n"
-"2\n"
+"02200100.xhp\n"
+"hd_id3145138\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_LINE_LINE\">Set the formatting options for the selected line or the line that you want to draw. You can also add arrowheads to a line, or change chart symbols.</ahelp>"
+msgid "<link href=\"text/shared/01/02200100.xhp\" name=\"Edit\">Edit</link>"
msgstr ""
-#: 05200100.xhp
+#: 02200100.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3147000\n"
-"3\n"
+"02200100.xhp\n"
+"par_id3150008\n"
+"2\n"
"help.text"
-msgid "Line properties"
-msgstr "Vetitë e kornizës"
+msgid "<ahelp visibility=\"visible\" hid=\"\">Lets you edit a selected object in your file that you inserted with the <emph>Insert – Object </emph>command.</ahelp>"
+msgstr ""
-#: 05200100.xhp
+#: 02200200.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3148983\n"
-"5\n"
+"02200200.xhp\n"
+"tit\n"
"help.text"
-msgid "Styles"
-msgstr "Stilet"
+msgid "Open"
+msgstr "Hape"
-#: 05200100.xhp
+#: 02200200.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3147143\n"
-"6\n"
+"02200200.xhp\n"
+"bm_id3085157\n"
"help.text"
-msgid "<variable id=\"stiltext\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_LINE_STYLE\">Select the line style that you want to use.</ahelp></variable>"
+msgid "<bookmark_value>objects; opening</bookmark_value><bookmark_value>opening; objects</bookmark_value>"
msgstr ""
-#: 05200100.xhp
+#: 02200200.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3150789\n"
-"7\n"
+"02200200.xhp\n"
+"hd_id3085157\n"
+"1\n"
"help.text"
-msgid "Colors"
-msgstr "Ngjyrat"
+msgid "<link href=\"text/shared/01/02200200.xhp\" name=\"Open\">Open</link>"
+msgstr ""
-#: 05200100.xhp
+#: 02200200.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3147226\n"
-"8\n"
+"02200200.xhp\n"
+"par_id3151097\n"
+"2\n"
"help.text"
-msgid "<variable id=\"farbetext\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_COLOR\">Select a color for the line.</ahelp></variable>"
+msgid "Opens the selected OLE object with the program that the object was created in."
msgstr ""
-#: 05200100.xhp
+#: 02200200.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3159234\n"
-"9\n"
+"02200200.xhp\n"
+"par_id3154230\n"
+"3\n"
"help.text"
-msgid "Widths"
-msgstr "Gjerësia"
+msgid "This menu command is inserted into <emph>Edit – Objects</emph> submenu by the application that created the linked object. Depending on the application, the “Open” command for the OLE object might have a different name."
+msgstr ""
-#: 05200100.xhp
+#: 02200200.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3150774\n"
-"10\n"
+"02200200.xhp\n"
+"par_id3149760\n"
+"4\n"
"help.text"
-msgid "<variable id=\"breitetext\"><ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MTR_FLD_LINE_WIDTH\">Select the width for the line. You can append a measurement unit. A zero line width results in a hairline with a width of one pixel of the output medium.</ahelp></variable>"
+msgid "After you have completed your changes, close the source file for the OLE object. The OLE object is then updated in the container document."
msgstr ""
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3153681\n"
-"11\n"
+"02210101.xhp\n"
+"tit\n"
"help.text"
-msgid "Transparency"
-msgstr "Transparencë"
+msgid "Floating Frame Properties"
+msgstr "Vetitë e kornizës lëvizëse"
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3156346\n"
-"12\n"
+"02210101.xhp\n"
+"hd_id3150347\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MTR_LINE_TRANSPARENT\">Enter the transparency of the line, where 100% corresponds to completely transparent and 0% to completely opaque. </ahelp>"
+msgid "<link href=\"text/shared/01/02210101.xhp\" name=\"Floating Frame Properties\">Floating Frame Properties</link>"
msgstr ""
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3152996\n"
-"33\n"
+"02210101.xhp\n"
+"par_id3149031\n"
+"2\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The <emph>Line</emph> tab of the <emph>Data Series</emph> dialog is only available if you select an XY <emph>Chart type</emph>.</defaultinline></switchinline>"
+msgid "<ahelp hid=\"SFX2:TABPAGE:TP_FRAMEPROPERTIES\">Changes the properties of the selected floating frame. Floating frames work best when they contain an html document, and when they are inserted in another html document.</ahelp>"
msgstr ""
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3153331\n"
-"23\n"
+"02210101.xhp\n"
+"hd_id3155364\n"
+"3\n"
"help.text"
-msgid "Icon"
-msgstr "Ikonë"
+msgid "Name"
+msgstr "Emri"
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3149955\n"
-"24\n"
+"02210101.xhp\n"
+"par_id3149511\n"
+"4\n"
"help.text"
-msgid "Set the options for the data point symbols in your chart."
+msgid "<ahelp hid=\"SFX2:EDIT:TP_FRAMEPROPERTIES:ED_FRAMENAME\">Enter a name for the floating frame. The name cannot contain spaces, special characters, or begin with an underscore ( _ ).</ahelp>"
msgstr ""
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3158430\n"
-"25\n"
+"02210101.xhp\n"
+"hd_id3150789\n"
+"5\n"
"help.text"
-msgid "Select"
-msgstr "Zgjedh"
+msgid "Contents"
+msgstr "Përmbajtjet"
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3152944\n"
-"26\n"
+"02210101.xhp\n"
+"par_id3156414\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"SVX:MENUBUTTON:RID_SVXPAGE_LINE:MB_SYMBOL_BITMAP\">Select the symbol style that you want to use in your chart.</ahelp> If you select <emph>Automatic</emph>, $[officename] uses the default symbols for the selected chart type."
+msgid "<ahelp hid=\"SFX2:EDIT:TP_FRAMEPROPERTIES:ED_URL\">Enter the path and the name of the file that you want to display in the floating frame. You can also click the <emph>...</emph> button and locate the file that you want to display.</ahelp> For example, you can enter:"
msgstr ""
-#: 05200100.xhp
-msgctxt ""
-"05200100.xhp\n"
-"hd_id3154381\n"
-"27\n"
-"help.text"
-msgid "Width"
-msgstr "Gjerësia"
-
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3150976\n"
-"28\n"
+"02210101.xhp\n"
+"par_id3147399\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MF_SYMBOL_WIDTH\">Enter a width for the symbol.</ahelp>"
+msgid "http://www.example.com"
msgstr ""
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3149166\n"
-"29\n"
+"02210101.xhp\n"
+"par_id3153683\n"
+"8\n"
"help.text"
-msgid "Height"
-msgstr "Lartësia"
+msgid "file:///c|/Readme.txt"
+msgstr "Paraqit readme fajllin"
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3155179\n"
-"30\n"
+"02210101.xhp\n"
+"hd_id3147088\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MF_SYMBOL_HEIGHT\">Enter a height for the symbol.</ahelp>"
-msgstr ""
+msgid "..."
+msgstr "..."
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3147620\n"
-"31\n"
+"02210101.xhp\n"
+"par_id3155355\n"
+"11\n"
"help.text"
-msgid "Keep ratio"
-msgstr "Mbaje përpjestimin"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_FRAMEPROPERTIES:BT_FILEOPEN\">Locate the file that you want to display in the selected floating frame, and then click <emph>Open</emph>.</ahelp>"
+msgstr ""
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3156326\n"
-"32\n"
+"02210101.xhp\n"
+"hd_id3146957\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_LINE:CB_SYMBOL_RATIO\">Maintains the proportions of the symbol when you enter a new height or width value.</ahelp>"
-msgstr ""
+msgid "Scrollbar"
+msgstr "Madhësi e njëjtë e fontit"
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3154579\n"
+"02210101.xhp\n"
+"par_id3156346\n"
"13\n"
"help.text"
-msgid "Arrow styles"
-msgstr "Stilet e grafikave"
+msgid "Add or remove a scrollbar from the selected floating frame."
+msgstr ""
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3161459\n"
+"02210101.xhp\n"
+"hd_id3163802\n"
"14\n"
"help.text"
-msgid "You can add arrowheads to one end, or both ends of the selected line. To add a custom arrow style to the list, select the arrow in your document, and then click on the <link href=\"text/shared/01/05200300.xhp\" name=\"Arrow Styles\"><emph>Arrow Styles</emph></link> tab of this dialog."
-msgstr ""
+msgid "On"
+msgstr "Kyçur"
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3147530\n"
+"02210101.xhp\n"
+"par_id3150355\n"
"15\n"
"help.text"
-msgid "Style"
-msgstr "Stili"
+msgid "<ahelp hid=\"SFX2:RADIOBUTTON:TP_FRAMEPROPERTIES:RB_SCROLLINGON\">Displays the scrollbar for the floating frame.</ahelp>"
+msgstr ""
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3146794\n"
+"02210101.xhp\n"
+"hd_id3155628\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_END_STYLE\">Select the arrowhead that you want to apply to the selected line.</ahelp>"
-msgstr ""
+msgid "Off"
+msgstr "Ç'kyçur"
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3149656\n"
+"02210101.xhp\n"
+"par_id3150669\n"
"17\n"
"help.text"
-msgid "Width"
-msgstr "Gjerësia"
+msgid "<ahelp hid=\"SFX2:RADIOBUTTON:TP_FRAMEPROPERTIES:RB_SCROLLINGOFF\">Hides the scrollbar for the floating frame.</ahelp>"
+msgstr ""
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3148755\n"
+"02210101.xhp\n"
+"hd_id3150503\n"
"18\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MTR_FLD_END_WIDTH\">Enter a width for the arrowhead.</ahelp>"
-msgstr ""
+msgid "Automatic"
+msgstr "Automatike"
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3154935\n"
+"02210101.xhp\n"
+"par_id3152909\n"
"19\n"
"help.text"
-msgid "Center"
-msgstr "Qendër"
+msgid "<ahelp hid=\"SFX2:RADIOBUTTON:TP_FRAMEPROPERTIES:RB_SCROLLINGAUTO\">Mark this option if the currently active floating frame can have a scrollbar when needed.</ahelp>"
+msgstr ""
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3153526\n"
+"02210101.xhp\n"
+"hd_id3156156\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_LINE:TSB_CENTER_END\">Places the center of the arrowhead(s) on the endpoint(s) of the selected line.</ahelp>"
-msgstr ""
+msgid "Border"
+msgstr "Kufiri"
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3154072\n"
+"02210101.xhp\n"
+"par_id3150943\n"
"21\n"
"help.text"
-msgid "Synchronize ends"
-msgstr "Rreshti përfundon"
+msgid "Displays or hides the border of the floating frame."
+msgstr ""
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3154365\n"
+"02210101.xhp\n"
+"hd_id3146774\n"
"22\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_LINE:CBX_SYNCHRONIZE\">Automatically updates both arrowhead settings when you enter a different width, select a different arrowhead style,or center an arrowhead.</ahelp>"
-msgstr ""
+msgid "On"
+msgstr "Kyçur"
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3154580\n"
+"02210101.xhp\n"
+"par_id3159147\n"
+"23\n"
"help.text"
-msgid "Corner and cap styles"
+msgid "<ahelp hid=\"SFX2:RADIOBUTTON:TP_FRAMEPROPERTIES:RB_FRMBORDER_ON\">Displays the border of the floating frame.</ahelp>"
msgstr ""
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3154582\n"
+"02210101.xhp\n"
+"hd_id3153146\n"
+"24\n"
"help.text"
-msgid "Corner style"
-msgstr ""
+msgid "Off"
+msgstr "Ç'kyçur"
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3154583\n"
+"02210101.xhp\n"
+"par_id3156329\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_EDGE_STYLE\">Select the shape to be used at the corners of the line. In case of a small angle between lines, a mitered shape is replaced with a beveled shape.</ahelp>"
+msgid "<ahelp hid=\"SFX2:RADIOBUTTON:TP_FRAMEPROPERTIES:RB_FRMBORDER_OFF\">Hides the border of the floating frame.</ahelp>"
msgstr ""
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"hd_id3154585\n"
+"02210101.xhp\n"
+"hd_id3148563\n"
+"28\n"
"help.text"
-msgid "Cap style"
-msgstr ""
+msgid "Spacing to contents"
+msgstr "Hapësira me përmbajtje"
-#: 05200100.xhp
+#: 02210101.xhp
msgctxt ""
-"05200100.xhp\n"
-"par_id3154586\n"
+"02210101.xhp\n"
+"par_id3148943\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_CAP_STYLE\">Select the style of the line end caps. The caps are added to inner dashes as well.</ahelp>"
+msgid "Define the amount of space that is left between the border of the floating frame and the contents of the floating frame provided that both documents inside and outside the floating frame are HTML documents."
msgstr ""
-#: 03150100.xhp
-msgctxt ""
-"03150100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Confirm Delete"
-msgstr "Konfirmo fshirjen"
-
-#: 03150100.xhp
+#: 02210101.xhp
msgctxt ""
-"03150100.xhp\n"
-"hd_id3150278\n"
-"1\n"
+"02210101.xhp\n"
+"hd_id3152473\n"
+"30\n"
"help.text"
-msgid "Confirm Delete"
-msgstr "Konfirmo fshirjen"
+msgid "Width"
+msgstr "Gjerësia"
-#: 03150100.xhp
+#: 02210101.xhp
msgctxt ""
-"03150100.xhp\n"
-"par_id3148668\n"
-"2\n"
+"02210101.xhp\n"
+"par_id3149656\n"
+"31\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:MODALDIALOG:DLG_SFX_QUERYDELETE\" visibility=\"visible\">Confirms or cancels the deletion.</ahelp>"
+msgid "<ahelp hid=\"SFX2:NUMERICFIELD:TP_FRAMEPROPERTIES:NM_MARGINWIDTH\">Enter the amount of horizontal space that you want to leave between the right and the left edges of the floating frame and the contents of the frame. Both documents inside and outside the floating frame must be HTML documents.</ahelp>"
msgstr ""
-#: 03150100.xhp
+#: 02210101.xhp
msgctxt ""
-"03150100.xhp\n"
-"hd_id3152821\n"
-"3\n"
+"02210101.xhp\n"
+"hd_id3147303\n"
+"32\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "Height"
+msgstr "Lartësia"
-#: 03150100.xhp
+#: 02210101.xhp
msgctxt ""
-"03150100.xhp\n"
-"par_id3150040\n"
-"4\n"
+"02210101.xhp\n"
+"par_id3149670\n"
+"33\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_YES\" visibility=\"visible\">Performs the deletion in the current file.</ahelp>"
+msgid "<ahelp hid=\"SFX2:NUMERICFIELD:TP_FRAMEPROPERTIES:NM_MARGINHEIGHT\">Enter the amount of vertical space that you want to leave between the top and bottom edges of the floating frame and the contents of the frame. Both documents inside and outside the floating frame must be HTML documents.</ahelp>"
msgstr ""
-#: 03150100.xhp
+#: 02210101.xhp
msgctxt ""
-"03150100.xhp\n"
-"hd_id3149999\n"
-"5\n"
+"02210101.xhp\n"
+"hd_id3150865\n"
+"34\n"
"help.text"
-msgid "Delete All"
-msgstr "Fshij të gjitha"
+msgid "Default"
+msgstr "Standarde"
-#: 03150100.xhp
+#: 02210101.xhp
msgctxt ""
-"03150100.xhp\n"
-"par_id3155616\n"
-"6\n"
+"02210101.xhp\n"
+"par_id3150400\n"
+"35\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_ALL\" visibility=\"visible\">Performs the deletion in all selected files.</ahelp>"
+msgid "<ahelp hid=\"SFX2:CHECKBOX:TP_FRAMEPROPERTIES:CB_MARGINHEIGHTDEFAULT\">Applies the default spacing.</ahelp>"
msgstr ""
-#: 03150100.xhp
+#: 02220000.xhp
msgctxt ""
-"03150100.xhp\n"
-"hd_id3157991\n"
-"7\n"
+"02220000.xhp\n"
+"tit\n"
"help.text"
-msgid "Do Not Delete"
-msgstr "Mos fshij"
+msgid "ImageMap Editor"
+msgstr "Edituesi i ImageMapës"
-#: 03150100.xhp
+#: 02220000.xhp
msgctxt ""
-"03150100.xhp\n"
-"par_id3147043\n"
-"8\n"
+"02220000.xhp\n"
+"hd_id3150502\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_NO\" visibility=\"visible\">Rejects the deletion for the current file.</ahelp>"
-msgstr ""
+msgid "ImageMap Editor"
+msgstr "Edituesi i ImageMapës"
-#: 03150100.xhp
+#: 02220000.xhp
msgctxt ""
-"03150100.xhp\n"
-"hd_id3149346\n"
-"9\n"
+"02220000.xhp\n"
+"par_id3159194\n"
+"2\n"
"help.text"
-msgid "Cancel"
-msgstr "Anulo"
+msgid "<variable id=\"imagemaptext\"><ahelp hid=\"SVX:FLOATINGWINDOW:RID_SVXDLG_IMAP\">Allows you to attach URLs to specific areas, called hotspots, on a graphic or a group of graphics. An image map is a group of one or more hotspots.</ahelp></variable>"
+msgstr ""
-#: 03150100.xhp
+#: 02220000.xhp
msgctxt ""
-"03150100.xhp\n"
-"par_id3148620\n"
-"10\n"
+"02220000.xhp\n"
+"par_id3149751\n"
+"3\n"
"help.text"
-msgid "Cancels the deletion in the current file and any other selected files."
+msgid "You can draw three types of hotspots: rectangles, ellipses, and polygons. When you click a hotspot, the URL is opened in the browser window or frame that you specify. You can also specify the text that appears when your mouse rests on the hotspot."
msgstr ""
-#: 05250200.xhp
+#: 02220000.xhp
msgctxt ""
-"05250200.xhp\n"
-"tit\n"
+"02220000.xhp\n"
+"hd_id3154317\n"
+"5\n"
"help.text"
-msgid "Bring Forward"
-msgstr "Sjelle përpara"
+msgid "Apply"
+msgstr "Zbato"
-#: 05250200.xhp
+#: 02220000.xhp
msgctxt ""
-"05250200.xhp\n"
-"hd_id3152790\n"
-"1\n"
+"02220000.xhp\n"
+"par_id3150506\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250200.xhp\" name=\"Bring Forward \">Bring Forward </link>"
+msgid "<ahelp hid=\"HID_IMAPDLG_APPLY\">Applies the changes that you made to the image map.</ahelp>"
msgstr ""
-#: 05250200.xhp
+#: 02220000.xhp
msgctxt ""
-"05250200.xhp\n"
-"par_id3151264\n"
-"2\n"
+"02220000.xhp\n"
+"par_id3149811\n"
"help.text"
-msgid "<ahelp hid=\".\">Moves the selected object up one level, so that it is closer to top of the stacking order.</ahelp>"
+msgid "<image id=\"img_id3147275\" src=\"svx/res/nu07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147275\">Icon</alt></image>"
msgstr ""
-#: 05250200.xhp
+#: 02220000.xhp
msgctxt ""
-"05250200.xhp\n"
-"par_id3149495\n"
-"3\n"
+"02220000.xhp\n"
+"par_id3153321\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
-msgstr ""
+msgid "Apply"
+msgstr "Zbato"
-#: 05250500.xhp
+#: 02220000.xhp
msgctxt ""
-"05250500.xhp\n"
-"tit\n"
+"02220000.xhp\n"
+"hd_id3149579\n"
+"8\n"
"help.text"
-msgid "To Foreground"
-msgstr "Nga Plani i Parë"
+msgid "Open"
+msgstr "Hape"
-#: 05250500.xhp
+#: 02220000.xhp
msgctxt ""
-"05250500.xhp\n"
-"hd_id3150278\n"
-"1\n"
+"02220000.xhp\n"
+"par_id3155829\n"
+"10\n"
"help.text"
-msgid "<variable id=\"foreground\"><link href=\"text/shared/01/05250500.xhp\" name=\"To Foreground\">To Foreground</link></variable>"
+msgid "<ahelp hid=\"HID_IMAPDLG_OPEN\">Loads an existing image map in the <emph>MAP-CERN, MAP-NCSA</emph> or <emph>SIP StarView ImageMap </emph>file format.</ahelp>"
msgstr ""
-#: 05250500.xhp
+#: 02220000.xhp
msgctxt ""
-"05250500.xhp\n"
-"par_id3151387\n"
-"2\n"
+"02220000.xhp\n"
+"par_id3149795\n"
"help.text"
-msgid "<ahelp hid=\".uno:SetObjectToForeground\">Moves the selected object in front of text.</ahelp>"
+msgid "<image id=\"img_id3155503\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155503\">Icon</alt></image>"
msgstr ""
-#: 05250500.xhp
+#: 02220000.xhp
msgctxt ""
-"05250500.xhp\n"
-"par_id3147000\n"
-"6\n"
+"02220000.xhp\n"
+"par_id3159158\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
-msgstr ""
+msgid "Open"
+msgstr "Hape"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"tit\n"
+"02220000.xhp\n"
+"hd_id3147618\n"
+"11\n"
"help.text"
-msgid "List of Regular Expressions"
-msgstr "~Mundëso shprehjet e rregullta në formula"
+msgid "Save"
+msgstr "Ruaje"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"bm_id3146765\n"
+"02220000.xhp\n"
+"par_id3153626\n"
+"13\n"
"help.text"
-msgid "<bookmark_value>regular expressions; list of</bookmark_value> <bookmark_value>lists;regular expressions</bookmark_value> <bookmark_value>replacing;tab stops (regular expressions)</bookmark_value> <bookmark_value>tab stops;regular expressions</bookmark_value> <bookmark_value>concatenation, see ampersand symbol</bookmark_value> <bookmark_value>ampersand symbol, see also operators</bookmark_value>"
+msgid "<ahelp hid=\"HID_IMAPDLG_SAVEAS\">Saves the image map in the<emph> MAP-CERN, MAP-NCSA</emph> or <emph>SIP StarView ImageMap </emph>file format.</ahelp>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"hd_id3146765\n"
-"203\n"
+"02220000.xhp\n"
+"par_id3154280\n"
"help.text"
-msgid "<variable id=\"02100001\"><link href=\"text/shared/01/02100001.xhp\">List of Regular Expressions</link></variable>"
+msgid "<image id=\"img_id3154923\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154923\">Icon</alt></image>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3149741\n"
-"17\n"
+"02220000.xhp\n"
+"par_id3152772\n"
+"12\n"
"help.text"
-msgid "Character"
-msgstr "Karakter"
+msgid "Save"
+msgstr "Ruaje"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3155577\n"
-"18\n"
+"02220000.xhp\n"
+"hd_id3150791\n"
+"14\n"
"help.text"
-msgid "Result/Use"
-msgstr "Shfrytëzo ekzistuesin"
+msgid "Select"
+msgstr "Zgjedh"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id6600543\n"
+"02220000.xhp\n"
+"par_id3154073\n"
+"16\n"
"help.text"
-msgid "Any character"
-msgstr "Kodi i karakterit"
+msgid "<ahelp hid=\"HID_IMAPDLG_SELECT\">Selects a hotspot in the image map for editing.</ahelp>"
+msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id9824518.00000001\n"
+"02220000.xhp\n"
+"par_id3156214\n"
"help.text"
-msgid "Represents the given character unless otherwise specified."
+msgid "<image id=\"img_id3153192\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153192\">Icon</alt></image>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3152427\n"
-"19\n"
+"02220000.xhp\n"
+"par_id3153351\n"
+"15\n"
"help.text"
-msgid "."
-msgstr ""
+msgid "Select"
+msgstr "Zgjedh"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3149031\n"
-"20\n"
+"02220000.xhp\n"
+"hd_id3149807\n"
+"17\n"
"help.text"
-msgid "Represents any single character except for a line break or paragraph break. For example, the search term \"sh.rt\" returns both \"shirt\" and \"short\"."
-msgstr ""
+msgid "Rectangle"
+msgstr "Drejtkëndësh"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3154682\n"
-"21\n"
+"02220000.xhp\n"
+"par_id3150870\n"
+"19\n"
"help.text"
-msgid "^"
+msgid "<ahelp hid=\"HID_IMAPDLG_RECT\">Draws a rectangular hotspot where you drag in the graphic. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3155351\n"
-"22\n"
+"02220000.xhp\n"
+"par_id3150769\n"
"help.text"
-msgid "Only finds the search term if the term is at the beginning of a paragraph. Special objects such as empty fields or character-anchored frames, at the beginning of a paragraph are ignored. Example: \"^Peter\"."
+msgid "<image id=\"img_id3154297\" src=\"cmd/sc_rect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154297\">Icon</alt></image>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3159194\n"
-"23\n"
+"02220000.xhp\n"
+"par_id3157894\n"
+"18\n"
"help.text"
-msgid "$"
-msgstr ""
+msgid "Rectangle"
+msgstr "Drejtkëndësh"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3152542\n"
-"24\n"
+"02220000.xhp\n"
+"hd_id3153518\n"
+"20\n"
"help.text"
-msgid "Only finds the search term if the term appears at the end of a paragraph. Special objects such as empty fields or character-anchored frames at the end of a paragraph are ignored. Example: \"Peter$\"."
-msgstr ""
+msgid "Ellipse"
+msgstr "Elips"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3152543\n"
+"02220000.xhp\n"
+"par_id3145591\n"
+"22\n"
"help.text"
-msgid "$ on its own matches the end of a paragraph. This way it is possible to search and replace paragraph breaks."
+msgid "<ahelp hid=\"HID_IMAPDLG_CIRCLE\">Draws an elliptical hotspot where you drag in the graphic. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3156414\n"
-"25\n"
+"02220000.xhp\n"
+"par_id3155308\n"
"help.text"
-msgid "*"
+msgid "<image id=\"img_id3154011\" src=\"cmd/sc_ellipse.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154011\">Icon</alt></image>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3155555\n"
-"26\n"
+"02220000.xhp\n"
+"par_id3153212\n"
+"21\n"
"help.text"
-msgid "Finds zero or more of the characters in front of the \"*\". For example, \"Ab*c\" finds \"Ac\", \"Abc\", \"Abbc\", \"Abbbc\", and so on."
-msgstr ""
+msgid "Ellipse"
+msgstr "Elips"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3147399\n"
-"27\n"
+"02220000.xhp\n"
+"hd_id3153573\n"
+"23\n"
"help.text"
-msgid "+"
-msgstr "+"
+msgid "Polygon"
+msgstr "Shumëkëndësh"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3157958\n"
-"28\n"
+"02220000.xhp\n"
+"par_id3153190\n"
+"25\n"
"help.text"
-msgid "Finds one or more of the characters in front of the \"+\". For example, \"AX.+4\" finds \"AXx4\", but not \"AX4\"."
+msgid "<ahelp hid=\"HID_IMAPDLG_POLY\">Draws a polygonal hotspot in the graphic. Click this icon, drag in the graphic, and then click to define one side of the polygon. Move to where you want to place the end of the next side, and then click. Repeat until you have drawn all of the sides of the polygon. When you are finished, double-click to close the polygon. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3145313\n"
-"207\n"
+"02220000.xhp\n"
+"par_id3148577\n"
"help.text"
-msgid "The longest possible string that matches this search pattern in a paragraph is always found. If the paragraph contains the string \"AX 4 AX4\", the entire passage is highlighted."
+msgid "<image id=\"img_id3156005\" src=\"cmd/sc_polygon.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156005\">Icon</alt></image>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3143267\n"
-"199\n"
+"02220000.xhp\n"
+"par_id3153364\n"
+"24\n"
"help.text"
-msgid "?"
-msgstr "?"
+msgid "Polygon"
+msgstr "Shumëkëndësh"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3153684\n"
-"200\n"
+"02220000.xhp\n"
+"hd_id3153140\n"
+"41\n"
"help.text"
-msgid "Finds zero or one of the characters in front of the \"?\". For example, \"Texts?\" finds \"Text\" and \"Texts\" and \"x(ab|c)?y\" finds \"xy\", \"xaby\", or \"xcy\"."
-msgstr ""
+msgid "Freeform Polygon"
+msgstr "Në shumëkëndësh"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3166410\n"
-"158\n"
+"02220000.xhp\n"
+"par_id3147046\n"
+"42\n"
"help.text"
-msgid "\\"
+msgid "<ahelp hid=\"HID_IMAPDLG_FREEPOLY\">Draws a hotspot that is based on a freeform polygon. Click this icon and move to where you want to draw the hotspot. Drag a freeform line and release to close the shape. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3147209\n"
-"159\n"
+"02220000.xhp\n"
+"par_id3153877\n"
"help.text"
-msgid "Search interprets the special character that follows the \"\\\" as a normal character and not as a regular expression (except for the combinations \\n, \\t, \\>, and \\<). For example, \"tree\\.\" finds \"tree.\", not \"treed\" or \"trees\"."
+msgid "<image id=\"img_id3148386\" src=\"cmd/sc_freeline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148386\">Icon</alt></image>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3152945\n"
-"166\n"
+"02220000.xhp\n"
+"par_id3159128\n"
+"43\n"
"help.text"
-msgid "\\n"
-msgstr ""
+msgid "Freeform Polygon"
+msgstr "Në shumëkëndësh"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3153700\n"
-"167\n"
+"02220000.xhp\n"
+"hd_id3145251\n"
+"44\n"
"help.text"
-msgid "Represents a line break that was inserted with the Shift+Enter key combination. To change a line break into a paragraph break, enter <emph>\\n</emph> in the <emph>Search for</emph> and <emph>Replace with</emph> boxes, and then perform a search and replace."
-msgstr ""
+msgid "Edit Points"
+msgstr "Edito pikat"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id9262672\n"
+"02220000.xhp\n"
+"par_id3153745\n"
+"45\n"
"help.text"
-msgid "\\n in the <emph>Search for</emph> text box stands for a line break that was inserted with the Shift+Enter key combination."
+msgid "<ahelp hid=\"HID_IMAPDLG_POLYEDIT\">Lets you change the shape of the selected hotspot by editing the anchor points.</ahelp>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id2366100\n"
+"02220000.xhp\n"
+"par_id3145801\n"
"help.text"
-msgid "\\n in the <emph>Replace with</emph> text box stands for a paragraph break that can be entered with the Enter or Return key."
+msgid "<image id=\"img_id3150113\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150113\">Icon</alt></image>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3153258\n"
-"29\n"
+"02220000.xhp\n"
+"par_id3153416\n"
+"46\n"
"help.text"
-msgid "\\t"
-msgstr ""
+msgid "Edit points"
+msgstr "Edito pikat"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3157809\n"
-"30\n"
+"02220000.xhp\n"
+"hd_id3155600\n"
+"47\n"
"help.text"
-msgid "Represents a tab. You can also use this expression in the <emph>Replace with</emph> box."
-msgstr ""
+msgid "Move Points"
+msgstr "Lëviz pikat"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3150670\n"
-"35\n"
+"02220000.xhp\n"
+"par_id3151318\n"
+"48\n"
"help.text"
-msgid "\\b"
+msgid "<ahelp hid=\"HID_IMAPDLG_POLYMOVE\">Lets you move the individual anchor points of the selected hotspot.</ahelp>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3153666\n"
-"36\n"
+"02220000.xhp\n"
+"par_id3146971\n"
"help.text"
-msgid "Match a word boundary. For example, \"\\bbook\" finds \"bookmark\" but not \"checkbook\" whereas \"book\\b\" finds \"checkbook\" but not \"bookmark\". The discrete word \"book\" is found by both search terms."
+msgid "<image id=\"img_id3148570\" src=\"cmd/sc_beziermove.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148570\">Icon</alt></image>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3149576\n"
-"37\n"
+"02220000.xhp\n"
+"par_id3153839\n"
+"49\n"
"help.text"
-msgid "^$"
-msgstr ""
+msgid "Move Points"
+msgstr "Lëviz pikat"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3151245\n"
-"38\n"
+"02220000.xhp\n"
+"hd_id3145162\n"
+"50\n"
"help.text"
-msgid "Finds an empty paragraph."
-msgstr "Stilet e zbatuara të paragrafeve"
+msgid "Insert Points"
+msgstr "Shto pikat"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3148550\n"
-"41\n"
+"02220000.xhp\n"
+"par_id3156355\n"
+"51\n"
"help.text"
-msgid "^."
+msgid "<ahelp hid=\"HID_IMAPDLG_POLYINSERT\">Adds an anchor point where you click on the outline of the hotspot.</ahelp>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3159413\n"
-"42\n"
+"02220000.xhp\n"
+"par_id3150749\n"
"help.text"
-msgid "Finds the first character of a paragraph."
+msgid "<image id=\"img_id3146793\" src=\"cmd/sc_bezierinsert.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146793\">Icon</alt></image>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3147282\n"
-"43\n"
+"02220000.xhp\n"
+"par_id3148915\n"
+"52\n"
"help.text"
-msgid "& or $0"
-msgstr "ose"
+msgid "Insert Points"
+msgstr "Shto pikat"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3153961\n"
-"44\n"
+"02220000.xhp\n"
+"hd_id3083283\n"
+"53\n"
"help.text"
-msgid "Adds the string that was found by the search criteria in the <emph>Search for</emph> box to the term in the <emph>Replace with</emph> box when you make a replacement."
-msgstr ""
+msgid "Delete Points"
+msgstr "Fshij pikat"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3149650\n"
-"201\n"
+"02220000.xhp\n"
+"par_id3163824\n"
+"54\n"
"help.text"
-msgid "For example, if you enter \"window\" in the <emph>Search for</emph> box and \"&frame\" in the <emph>Replace with</emph> box, the word \"window\" is replaced with \"windowframe\"."
+msgid "<ahelp hid=\"HID_IMAPDLG_POLYDELETE\">Deletes the selected anchor point.</ahelp>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3150543\n"
-"206\n"
+"02220000.xhp\n"
+"par_id3149021\n"
"help.text"
-msgid "You can also enter an \"&\" in the <emph>Replace with</emph> box to modify the <emph>Attributes</emph> or the <emph>Format</emph> of the string found by the search criteria."
+msgid "<image id=\"img_id3154508\" src=\"cmd/sc_bezierdelete.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Icon</alt></image>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3145419\n"
-"172\n"
+"02220000.xhp\n"
+"par_id3147341\n"
+"55\n"
"help.text"
-msgid "[abc123]"
-msgstr ""
+msgid "Delete Points"
+msgstr "Fshij pikat"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3154630\n"
-"173\n"
+"02220000.xhp\n"
+"hd_id3166448\n"
+"26\n"
"help.text"
-msgid "Represents one of the characters that are between the brackets."
-msgstr ""
+msgid "Active"
+msgstr "Aktiv"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3156293\n"
-"174\n"
+"02220000.xhp\n"
+"par_id3146918\n"
+"28\n"
"help.text"
-msgid "[a-e]"
+msgid "<ahelp hid=\"HID_IMAPDLG_ACTIVE\">Disables or enables the hyperlink for the selected hotspot. A disabled hotspot is transparent.</ahelp>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3149167\n"
-"175\n"
+"02220000.xhp\n"
+"par_id3155901\n"
"help.text"
-msgid "Represents any of the characters that are between a and e, including both start and end characters"
+msgid "<image id=\"img_id3145232\" src=\"svx/res/id016.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145232\">Icon</alt></image>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id100520090232005\n"
+"02220000.xhp\n"
+"par_id3155959\n"
+"27\n"
"help.text"
-msgid "The characters are ordered by their code numbers."
-msgstr ""
+msgid "Active"
+msgstr "Aktiv"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3155994\n"
-"176\n"
+"02220000.xhp\n"
+"hd_id3153966\n"
+"38\n"
"help.text"
-msgid "[a-eh-x]"
-msgstr ""
+msgid "Macro"
+msgstr "Makro"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3148676\n"
-"177\n"
+"02220000.xhp\n"
+"par_id3151250\n"
+"40\n"
"help.text"
-msgid "Represents any of the characters that are between a-e and h-x."
+msgid "<ahelp hid=\"HID_IMAPDLG_MACRO\">Lets you assign a macro that runs when you click the selected hotspot in a browser.</ahelp>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3145318\n"
-"178\n"
+"02220000.xhp\n"
+"par_id3145769\n"
"help.text"
-msgid "[^a-s]"
+msgid "<image id=\"img_id3153922\" src=\"cmd/sc_choosemacro.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153922\">Icon</alt></image>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3153351\n"
-"179\n"
+"02220000.xhp\n"
+"par_id3149239\n"
+"39\n"
"help.text"
-msgid "Represents everything that is not between a and s."
-msgstr ""
+msgid "Macro"
+msgstr "Makro"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3156543\n"
-"180\n"
+"02220000.xhp\n"
+"hd_id3149207\n"
+"56\n"
"help.text"
-msgid "\\xXXXX"
-msgstr ""
+msgid "Properties"
+msgstr "Vetitë"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3153768\n"
-"181\n"
+"02220000.xhp\n"
+"par_id3150785\n"
+"57\n"
"help.text"
-msgid "Represents a special character based on its four-digit hexadecimal code (XXXX)."
+msgid "<ahelp hid=\"HID_IMAPDLG_PROPERTY\">Allows you to define the properties of the selected hotspot.</ahelp>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3159252\n"
-"208\n"
+"02220000.xhp\n"
+"par_id3159104\n"
"help.text"
-msgid "The code for the special character depends on the font used. You can view the codes by choosing <emph>Insert - Special Character</emph>."
+msgid "<image id=\"img_id3149735\" src=\"cmd/sc_modifyframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149735\">Icon</alt></image>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3153951\n"
-"186\n"
+"02220000.xhp\n"
+"par_id3153196\n"
+"58\n"
"help.text"
-msgid "|"
-msgstr ""
+msgid "Properties"
+msgstr "Vetitë"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3154985\n"
-"187\n"
+"02220000.xhp\n"
+"hd_id3144418\n"
+"29\n"
"help.text"
-msgid "Finds the terms that occur before the \"|\" and also finds the terms that occur after the \"|\". For example, \"this|that\" finds \"this\" and \"that\"."
-msgstr ""
+msgid "Address:"
+msgstr "Adresa"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3147376\n"
-"209\n"
+"02220000.xhp\n"
+"par_id3157969\n"
+"30\n"
"help.text"
-msgid "{2}"
+msgid "<ahelp hid=\"SVX:COMBOBOX:RID_SVXDLG_IMAP:CBB_URL\">Enter the URL for the file that you want to open when you click the selected hotspot.</ahelp> If you want to jump to an anchor within the document, the address should be of the form \"file:///C/document_name#anchor_name\"."
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3150103\n"
-"210\n"
+"02220000.xhp\n"
+"hd_id3146132\n"
+"31\n"
"help.text"
-msgid "Defines the number of times that the character in front of the opening bracket occurs. For example, \"tre{2}\" finds and selects \"tree\"."
-msgstr ""
+msgid "Text:"
+msgstr "Tekst"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3151289\n"
-"211\n"
+"02220000.xhp\n"
+"par_id3159090\n"
+"32\n"
"help.text"
-msgid "{1,2}"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAP:EDT_TEXT\">Enter the text that you want to display when the mouse rests on the hotspot in a browser.</ahelp> If you do not enter any text, the <emph>Address </emph>is displayed."
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3147317\n"
-"212\n"
+"02220000.xhp\n"
+"hd_id3158445\n"
+"33\n"
"help.text"
-msgid "Defines the minimum and maximum number of times that the character in front of the opening bracket can occur. For example, \"tre{1,2}\" finds and selects \"tre\" and \"tree\"."
-msgstr ""
+msgid "Frame:"
+msgstr "Kornizë"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id4870754\n"
+"02220000.xhp\n"
+"par_id3150208\n"
+"34\n"
"help.text"
-msgid "{1,}"
+msgid "Enter the name of the target frame that you want to open the URL in. You can also select a standard frame name from the list."
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id843836\n"
+"02220000.xhp\n"
+"par_id3153231\n"
+"35\n"
"help.text"
-msgid "Defines the minimum number of times that the character in front of the opening bracket can occur. For example, \"tre{2,}\" finds \"tree\", \"treee\", and \"treeeee\"."
+msgid "<link href=\"text/shared/01/05020400.xhp#targets\" name=\"List of frame types\">List of frame types</link>"
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3148616\n"
-"213\n"
+"02220000.xhp\n"
+"hd_id3150345\n"
+"36\n"
"help.text"
-msgid "( )"
-msgstr ""
+msgid "Graphic View"
+msgstr "Pamja e shënimeve"
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id2701803\n"
+"02220000.xhp\n"
+"par_id3150382\n"
+"37\n"
"help.text"
-msgid "In the <emph>Search for</emph> box:"
+msgid "<ahelp hid=\"HID_IMAPDLG_GRAPHWND\"/>Displays the image map, so that you can click and edit the hotspots."
msgstr ""
-#: 02100001.xhp
+#: 02220000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3153573\n"
-"214\n"
+"02220000.xhp\n"
+"par_id3150983\n"
"help.text"
-msgid "Defines the characters inside the parentheses as a reference. You can then refer to the first reference in the current expression with \"\\1\", to the second reference with \"\\2\", and so on."
+msgid "<link href=\"text/shared/guide/keyboard.xhp\" name=\"Controlling the ImageMap Editor With the Keyboard\">Controlling the ImageMap Editor With the Keyboard</link>"
msgstr ""
-#: 02100001.xhp
+#: 02220100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3156061\n"
-"215\n"
+"02220100.xhp\n"
+"tit\n"
"help.text"
-msgid "For example, if your text contains the number 13487889 and you search using the regular expression (8)7\\1\\1, \"8788\" is found."
-msgstr ""
+msgid "Description"
+msgstr "Përshkrimi"
-#: 02100001.xhp
+#: 02220100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id2367931\n"
+"02220100.xhp\n"
+"bm_id1202200909085990\n"
"help.text"
-msgid "You can also use () to group terms, for example, \"a(bc)?d\" finds \"ad\" or \"abcd\"."
+msgid "<bookmark_value>hotspots;properties</bookmark_value> <bookmark_value>properties;hotspots</bookmark_value> <bookmark_value>ImageMap;hotspot properties</bookmark_value>"
msgstr ""
-#: 02100001.xhp
+#: 02220100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id9200109\n"
+"02220100.xhp\n"
+"hd_id3154810\n"
+"1\n"
"help.text"
-msgid "In the <emph>Replace with</emph> box:"
-msgstr ""
+msgid "Description"
+msgstr "Përshkrimi"
-#: 02100001.xhp
+#: 02220100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id5766472\n"
+"02220100.xhp\n"
+"par_id3152910\n"
+"2\n"
"help.text"
-msgid "Use $ (dollar) instead of \\ (backslash) to replace references. Use $0 to replace the whole found string."
+msgid "<ahelp hid=\"SVX:MODALDIALOG:RID_SVXDLG_IMAPURL\">Lists the properties for the selected hotspot.</ahelp>"
msgstr ""
-#: 02100001.xhp
+#: 02220100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3154790\n"
-"226\n"
+"02220100.xhp\n"
+"hd_id3150976\n"
+"3\n"
"help.text"
-msgid "[:alpha:]"
-msgstr "alpha"
+msgid "Hyperlink"
+msgstr "Hiperlink"
-#: 02100001.xhp
+#: 02220100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3147397\n"
-"227\n"
+"02220100.xhp\n"
+"par_id3152349\n"
+"4\n"
"help.text"
-msgid "Represents an alphabetic character. Use [:alpha:]+ to find one of them."
+msgid "Lists the properties of the URL that is attached to the hotspot."
msgstr ""
-#: 02100001.xhp
+#: 02220100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3152885\n"
-"216\n"
+"02220100.xhp\n"
+"hd_id3156327\n"
+"5\n"
"help.text"
-msgid "[:digit:]"
-msgstr ""
+msgid "URL:"
+msgstr "URL"
-#: 02100001.xhp
+#: 02220100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3150010\n"
-"217\n"
+"02220100.xhp\n"
+"par_id3155831\n"
+"6\n"
"help.text"
-msgid "Represents a decimal digit. Use [:digit:]+ to find one of them."
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAPURL:EDT_URL\">Enter the URL for the file that you want to open when you click the selected hotspot.</ahelp> If you want to jump to a named anchor within the current document, the address should be of the form \"file:///C/[current_document_name]#anchor_name\"."
msgstr ""
-#: 02100001.xhp
+#: 02220100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3153743\n"
-"224\n"
+"02220100.xhp\n"
+"hd_id3153827\n"
+"7\n"
"help.text"
-msgid "[:alnum:]"
-msgstr ""
+msgid "Alternative text:"
+msgstr "Alternativ (vetëm tekst)"
-#: 02100001.xhp
+#: 02220100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3153281\n"
-"225\n"
+"02220100.xhp\n"
+"par_id3153665\n"
+"8\n"
"help.text"
-msgid "Represents an alphanumeric character ([:alpha:] and [:digit:])."
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAPURL:EDT_URLDESCRIPTION\">Enter the text that you want to display when the mouse rests on the hotspot in a browser.</ahelp> If you do not enter any text, the <emph>Address </emph>is displayed."
msgstr ""
-#: 02100001.xhp
+#: 02220100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3153726\n"
-"218\n"
+"02220100.xhp\n"
+"hd_id3149166\n"
+"9\n"
"help.text"
-msgid "[:space:]"
-msgstr "&Hapësirë"
+msgid "Frame:"
+msgstr "Kornizë"
-#: 02100001.xhp
+#: 02220100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3150961\n"
-"219\n"
+"02220100.xhp\n"
+"par_id3155922\n"
+"10\n"
"help.text"
-msgid "Represents a space character (but not other whitespace characters)."
+msgid "<ahelp hid=\"SVX:COMBOBOX:RID_SVXDLG_IMAPURL:CBB_TARGETS\">Enter the name of the target frame that you want to open the URL in. You can also select a standard frame name that is recognized by all browsers from the list.</ahelp>"
msgstr ""
-#: 02100001.xhp
+#: 02220100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3150486\n"
-"220\n"
+"02220100.xhp\n"
+"hd_id3147530\n"
+"11\n"
"help.text"
-msgid "[:print:]"
-msgstr "Shtyp"
+msgid "Name:"
+msgstr "Emri:"
-#: 02100001.xhp
+#: 02220100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3150872\n"
-"221\n"
+"02220100.xhp\n"
+"par_id3148550\n"
+"12\n"
"help.text"
-msgid "Represents a printable character."
-msgstr "Zgjedhja e karakterit të veçantë"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAPURL:EDT_NAME\">Enter a name for the image.</ahelp>"
+msgstr ""
-#: 02100001.xhp
+#: 02220100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3155854\n"
-"222\n"
+"02220100.xhp\n"
+"hd_id7557298\n"
"help.text"
-msgid "[:cntrl:]"
-msgstr ""
+msgid "Description"
+msgstr "Përshkrimi"
-#: 02100001.xhp
+#: 02220100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3152576\n"
-"223\n"
+"02220100.xhp\n"
+"par_id5057222\n"
"help.text"
-msgid "Represents a nonprinting character."
-msgstr "Zgjedhja e karakterit të veçantë"
+msgid "<ahelp hid=\".\">Enter a description for the hotspot.</ahelp>"
+msgstr ""
-#: 02100001.xhp
+#: 02230000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3149958\n"
-"228\n"
+"02230000.xhp\n"
+"tit\n"
"help.text"
-msgid "[:lower:]"
-msgstr "I mëposhtmi"
+msgid "Changes"
+msgstr "$1 ndryshimet"
-#: 02100001.xhp
+#: 02230000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3145730\n"
-"229\n"
+"02230000.xhp\n"
+"hd_id3152952\n"
+"1\n"
"help.text"
-msgid "Represents a lowercase character if <emph>Match case</emph> is selected in <emph>Options</emph>."
+msgid "<link href=\"text/shared/01/02230000.xhp\" name=\"Changes\">Changes</link>"
msgstr ""
-#: 02100001.xhp
+#: 02230000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3148455\n"
-"230\n"
+"02230000.xhp\n"
+"par_id3145759\n"
+"2\n"
"help.text"
-msgid "[:upper:]"
-msgstr "I mësipërmi"
+msgid "<ahelp hid=\".\">Lists the commands that are available for tracking changes in your file.</ahelp>"
+msgstr ""
-#: 02100001.xhp
+#: 02230000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id3150092\n"
-"231\n"
+"02230000.xhp\n"
+"hd_id3154894\n"
+"7\n"
"help.text"
-msgid "Represents an uppercase character if <emph>Match case</emph> is selected in <emph>Options.</emph>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02230200.xhp\" name=\"Show\">Show</link></caseinline></switchinline>"
msgstr ""
-#: 02100001.xhp
+#: 02230000.xhp
msgctxt ""
-"02100001.xhp\n"
-"hd_id5311441\n"
+"02230000.xhp\n"
+"hd_id3154184\n"
+"8\n"
"help.text"
-msgid "Examples"
-msgstr "Shembuj:"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/01/02230200.xhp\" name=\"Show\">Show</link></caseinline></switchinline>"
+msgstr ""
-#: 02100001.xhp
+#: 02230000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id956834773\n"
+"02230000.xhp\n"
+"hd_id3153527\n"
+"4\n"
"help.text"
-msgid "e([:digit:])? -- finds 'e' followed by zero or one digit. Note that currently all named character classes like [:digit:] must be enclosed in parentheses."
+msgid "<link href=\"text/shared/01/02230400.xhp\" name=\"Accept or Reject\">Accept or Reject</link>"
msgstr ""
-#: 02100001.xhp
+#: 02230000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id952368773\n"
+"02230000.xhp\n"
+"hd_id3145072\n"
+"3\n"
"help.text"
-msgid "^([:digit:])$ -- finds lines or cells with exactly one digit."
+msgid "<link href=\"text/shared/01/02230300.xhp\" name=\"Comment\">Comment</link>"
msgstr ""
-#: 02100001.xhp
+#: 02230000.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id9568773\n"
+"02230000.xhp\n"
+"hd_id3150694\n"
+"5\n"
"help.text"
-msgid "You can combine the search terms to form complex searches."
+msgid "<link href=\"text/shared/01/02230500.xhp\" name=\"Merge Document\">Merge Document</link>"
msgstr ""
-#: 02100001.xhp
+#: 02230100.xhp
msgctxt ""
-"02100001.xhp\n"
-"hd_id71413\n"
+"02230100.xhp\n"
+"tit\n"
"help.text"
-msgid "To find three-digit numbers alone in a paragraph"
-msgstr ""
+msgid "Record"
+msgstr "Shënim"
-#: 02100001.xhp
+#: 02230100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id2924283\n"
+"02230100.xhp\n"
+"hd_id3150758\n"
+"1\n"
"help.text"
-msgid "^[:digit:]{3}$"
+msgid "<link href=\"text/shared/01/02230100.xhp\" name=\"Record\">Record</link>"
msgstr ""
-#: 02100001.xhp
+#: 02230100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id5781731\n"
+"02230100.xhp\n"
+"par_id3155599\n"
+"2\n"
"help.text"
-msgid "^ means the match has to be at the start of a paragraph,"
+msgid "<ahelp hid=\".uno:TraceChangeMode\">Tracks each change that is made in the current document by author and date. </ahelp>"
msgstr ""
-#: 02100001.xhp
+#: 02230100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id6942045\n"
+"02230100.xhp\n"
+"par_id3155934\n"
+"26\n"
"help.text"
-msgid "[:digit:] matches any decimal digit,"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you choose <emph>Record - Show</emph>, the lines containing changed text passages are indicated by a vertical line in the left page margin. You can set the properties of the vertical line and the other markup elements by choosing <emph><link href=\"text/shared/optionen/01040700.xhp\" name=\"Writer - Changes\">%PRODUCTNAME Writer - Changes</link></emph> in the Options dialog box.</caseinline></switchinline>"
msgstr ""
-#: 02100001.xhp
+#: 02230100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id4721823\n"
+"02230100.xhp\n"
+"par_id3147261\n"
+"27\n"
"help.text"
-msgid "{3} means there must be exactly 3 copies of \"digit\","
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">You can set the properties of the markup elements by choosing <link href=\"text/shared/optionen/01060600.xhp\" name=\"Calc - Changes\"><emph>%PRODUCTNAME Calc - Changes</emph></link> in the Options dialog box.</caseinline></switchinline>"
msgstr ""
-#: 02100001.xhp
+#: 02230100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id5806756\n"
+"02230100.xhp\n"
+"par_id3145669\n"
+"7\n"
"help.text"
-msgid "$ means the match must end a paragraph."
+msgid "The following changes are tracked when the record changes command is active:"
msgstr ""
-#: 02100001.xhp
+#: 02230100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id1751457\n"
+"02230100.xhp\n"
+"par_id3149388\n"
+"8\n"
"help.text"
-msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Regular_Expressions_in_Writer\">Wiki page about regular expressions in Writer</link>"
-msgstr ""
+msgid "Paste and delete text"
+msgstr "Teksti Perëndimor dhe pikëzimi Aziatik"
-#: 02100001.xhp
+#: 02230100.xhp
msgctxt ""
-"02100001.xhp\n"
-"par_id5483870\n"
+"02230100.xhp\n"
+"par_id3150693\n"
+"9\n"
"help.text"
-msgid "<link href=\"http://wiki.documentfoundation.org/Documentation/How_Tos/Regular_Expressions_in_Calc\">Wiki page about regular expressions in Calc</link>"
-msgstr ""
+msgid "Move paragraphs"
+msgstr "Lëviz paragrafet"
-#: 05210300.xhp
+#: 02230100.xhp
msgctxt ""
-"05210300.xhp\n"
-"tit\n"
+"02230100.xhp\n"
+"par_id3147088\n"
+"10\n"
"help.text"
-msgid "Gradients"
-msgstr "Zvogëlo shkallëzimin"
+msgid "Sort text"
+msgstr "Rendit tekstin"
-#: 05210300.xhp
+#: 02230100.xhp
msgctxt ""
-"05210300.xhp\n"
-"hd_id3145356\n"
-"1\n"
+"02230100.xhp\n"
+"par_id3148620\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210300.xhp\" name=\"Gradients\">Gradients</link>"
-msgstr ""
+msgid "Find and replace text"
+msgstr "Zëvendëso me Kutinë e Tekstit"
-#: 05210300.xhp
+#: 02230100.xhp
msgctxt ""
-"05210300.xhp\n"
-"par_id3154812\n"
-"2\n"
+"02230100.xhp\n"
+"par_id3145382\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"HID_AREA_GRADIENT\">Set the properties of a gradient, or save and load gradient lists.</ahelp>"
+msgid "Insert attributes that are one character wide, for example, fields and footnotes."
msgstr ""
-#: 05210300.xhp
+#: 02230100.xhp
msgctxt ""
-"05210300.xhp\n"
-"hd_id3148983\n"
-"3\n"
+"02230100.xhp\n"
+"par_id3146797\n"
+"13\n"
"help.text"
-msgid "Type"
-msgstr "Tipi"
+msgid "Insert sheets, ranges"
+msgstr "Futi Intervalet e Emërtimit"
-#: 05210300.xhp
+#: 02230100.xhp
msgctxt ""
-"05210300.xhp\n"
-"par_id3148440\n"
-"4\n"
+"02230100.xhp\n"
+"par_id3154749\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_GRADIENT:LB_GRADIENT_TYPES\">Select the gradient that you want to apply.</ahelp>"
-msgstr ""
+msgid "Insert document"
+msgstr "Shto dokumentin"
-#: 05210300.xhp
+#: 02230100.xhp
msgctxt ""
-"05210300.xhp\n"
-"hd_id3149511\n"
-"5\n"
+"02230100.xhp\n"
+"par_id3153252\n"
+"15\n"
"help.text"
-msgid "Center X"
-msgstr "Qendër"
+msgid "Insert AutoText"
+msgstr "Shto AutoText"
-#: 05210300.xhp
+#: 02230100.xhp
msgctxt ""
-"05210300.xhp\n"
-"par_id3153114\n"
-"6\n"
+"02230100.xhp\n"
+"par_id3155449\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_GRADIENT:MTR_CENTER_X\">Enter the horizontal offset for the gradient, where 0% corresponds to the current horizontal location of the endpoint color in the gradient. The endpoint color is the color that is selected in the <emph>To</emph> box.</ahelp>"
-msgstr ""
+msgid "Insert from clipboard"
+msgstr "Gabim duke lexuar nga clipboardi."
-#: 05210300.xhp
+#: 02230100.xhp
msgctxt ""
-"05210300.xhp\n"
-"hd_id3157896\n"
-"7\n"
+"02230100.xhp\n"
+"par_id3153821\n"
+"20\n"
"help.text"
-msgid "Center Y"
-msgstr "Qendër"
+msgid "Change cell contents by insertions and deletions"
+msgstr ""
-#: 05210300.xhp
+#: 02230100.xhp
msgctxt ""
-"05210300.xhp\n"
-"par_id3154751\n"
-"8\n"
+"02230100.xhp\n"
+"par_id3150771\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_GRADIENT:MTR_CENTER_Y\">Enter the vertical offset for the gradient, where 0% corresponds to the current vertical location of the endpoint color in the gradient. The endpoint color is the color that is selected in the <emph>To</emph> box.</ahelp>"
+msgid "Insert or delete columns and rows"
msgstr ""
-#: 05210300.xhp
+#: 02230100.xhp
msgctxt ""
-"05210300.xhp\n"
-"hd_id3151226\n"
-"9\n"
+"02230100.xhp\n"
+"par_id3150085\n"
+"22\n"
"help.text"
-msgid "Angle"
-msgstr "Këndi"
+msgid "Insert sheets"
+msgstr "Selekto Fletët"
-#: 05210300.xhp
+#: 02230100.xhp
msgctxt ""
-"05210300.xhp\n"
-"par_id3149177\n"
-"10\n"
+"02230100.xhp\n"
+"par_id3154381\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_GRADIENT:MTR_ANGLE\">Enter a rotation angle for the selected gradient.</ahelp>"
+msgid "Cut, copy and paste through the clipboard"
msgstr ""
-#: 05210300.xhp
+#: 02230100.xhp
msgctxt ""
-"05210300.xhp\n"
-"hd_id3149827\n"
-"11\n"
+"02230100.xhp\n"
+"par_id3145119\n"
+"24\n"
"help.text"
-msgid "Border"
-msgstr "Kufiri"
+msgid "Move by dragging and dropping"
+msgstr ""
-#: 05210300.xhp
+#: 02230100.xhp
msgctxt ""
-"05210300.xhp\n"
-"par_id3155941\n"
-"12\n"
+"02230100.xhp\n"
+"par_id3154347\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_GRADIENT:MTR_BORDER\">Enter the amount by which you want to adjust the area of the endpoint color on the gradient. The endpoint color is the color that is selected in the <emph>To</emph> box.</ahelp>"
+msgid "When the record changes command is active, you cannot delete, move, merge, split, or copy cells or delete sheets."
msgstr ""
-#: 05210300.xhp
+#: 02230150.xhp
msgctxt ""
-"05210300.xhp\n"
-"hd_id3152551\n"
-"35\n"
+"02230150.xhp\n"
+"tit\n"
"help.text"
-msgid "From"
-msgstr "Nga"
+msgid "Protect Records"
+msgstr "Regjistrat e Mbrojtur"
-#: 05210300.xhp
+#: 02230150.xhp
msgctxt ""
-"05210300.xhp\n"
-"par_id3153527\n"
-"23\n"
+"02230150.xhp\n"
+"hd_id3154349\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_GRADIENT:LB_COLOR_FROM\">Select a color for the beginning point of the gradient.</ahelp>"
+msgid "<link href=\"text/shared/01/02230150.xhp\" name=\"Protect Records\">Protect Records</link>"
msgstr ""
-#: 05210300.xhp
+#: 02230150.xhp
msgctxt ""
-"05210300.xhp\n"
-"par_id3149398\n"
-"25\n"
+"02230150.xhp\n"
+"par_id3150794\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_GRADIENT:MTR_COLOR_FROM\">Enter the intensity for the color in the <emph>From </emph>box, where 0% corresponds to black, and 100 % to the selected color.</ahelp>"
+msgid "<ahelp hid=\".uno:ProtectTraceChangeMode\">Prevents a user from deactivating the record changes feature, or from accepting or rejecting changes unless the user enters a password.</ahelp>"
msgstr ""
-#: 05210300.xhp
+#: 02230200.xhp
msgctxt ""
-"05210300.xhp\n"
-"hd_id3149903\n"
-"36\n"
+"02230200.xhp\n"
+"tit\n"
"help.text"
-msgid "To"
-msgstr "Në 3D"
+msgid "Show Changes"
+msgstr "Trego Ndryshimet"
-#: 05210300.xhp
+#: 02230200.xhp
msgctxt ""
-"05210300.xhp\n"
-"par_id3159269\n"
-"27\n"
+"02230200.xhp\n"
+"bm_id3149988\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_GRADIENT:LB_COLOR_TO\">Select a color for the endpoint of the gradient.</ahelp>"
+msgid "<bookmark_value>changes; showing</bookmark_value><bookmark_value>hiding;changes</bookmark_value><bookmark_value>showing; changes</bookmark_value>"
msgstr ""
-#: 05210300.xhp
+#: 02230200.xhp
msgctxt ""
-"05210300.xhp\n"
-"par_id3154142\n"
-"29\n"
+"02230200.xhp\n"
+"hd_id3149988\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_GRADIENT:MTR_COLOR_TO\">Enter the intensity for the color in the <emph>To </emph>box, where 0% corresponds to black, and 100 % to the selected color.</ahelp>"
+msgid "<link href=\"text/shared/01/02230200.xhp\" name=\"Show Changes\">Show Changes</link>"
msgstr ""
-#: 05210300.xhp
+#: 02230200.xhp
msgctxt ""
-"05210300.xhp\n"
-"hd_id3155830\n"
-"15\n"
+"02230200.xhp\n"
+"par_id3153323\n"
+"2\n"
"help.text"
-msgid "Gradients"
-msgstr "Zvogëlo shkallëzimin"
+msgid "<variable id=\"text\"><ahelp hid=\".uno:ShowChanges\">Shows or hides recorded changes.</ahelp></variable>"
+msgstr ""
-#: 05210300.xhp
+#: 02230200.xhp
msgctxt ""
-"05210300.xhp\n"
-"par_id3157909\n"
-"16\n"
+"02230200.xhp\n"
+"par_id3152425\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_GRADIENT:LB_GRADIENTS\">Select the type of gradient that you want to apply or create.</ahelp>"
+msgid "You can change the display properties of the markup elements by choosing <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/optionen/01060600.xhp\" name=\"Writer - Changes\"><emph>%PRODUCTNAME Writer - Changes</emph></link> in the Options dialog box.</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060600.xhp\" name=\"Calc - Changes\"><emph>%PRODUCTNAME Calc - Changes</emph></link> in the Options dialog box.</caseinline></switchinline>"
msgstr ""
-#: 05210300.xhp
+#: 02230200.xhp
msgctxt ""
-"05210300.xhp\n"
-"hd_id3150669\n"
-"17\n"
+"02230200.xhp\n"
+"par_id3155356\n"
+"6\n"
"help.text"
-msgid "Add"
-msgstr "Shto"
+msgid "When you rest the mouse pointer over a change markup in the document, a <emph>Tip</emph> displays the author and the date and time that the change was made.<switchinline select=\"appl\"><caseinline select=\"CALC\"> If the <emph>Extended Tips</emph> are activated, the type of change and any attached comments are also displayed.</caseinline></switchinline>"
+msgstr ""
-#: 05210300.xhp
+#: 02230200.xhp
msgctxt ""
-"05210300.xhp\n"
-"par_id3145416\n"
-"18\n"
+"02230200.xhp\n"
+"hd_id3153681\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_GRADIENT:BTN_ADD\">Adds a custom gradient to the current list. Specify the properties of your gradient, and then click this button</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Show changes in spreadsheet</caseinline></switchinline>"
msgstr ""
-#: 05210300.xhp
+#: 02230200.xhp
msgctxt ""
-"05210300.xhp\n"
-"hd_id3150772\n"
-"19\n"
+"02230200.xhp\n"
+"par_id3149150\n"
+"9\n"
"help.text"
-msgid "Modify"
-msgstr "Modifiko"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT\">Shows or hides recorded changes.</ahelp></caseinline></switchinline>"
+msgstr ""
-#: 05210300.xhp
+#: 02230200.xhp
msgctxt ""
-"05210300.xhp\n"
-"par_id3147573\n"
-"20\n"
+"02230200.xhp\n"
+"hd_id3147336\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_GRADIENT:BTN_MODIFY\">Applies the current gradient properties to the selected gradient. If you want, you can save the gradient under a different name.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Show accepted changes</caseinline></switchinline>"
msgstr ""
-#: 05210300.xhp
+#: 02230200.xhp
msgctxt ""
-"05210300.xhp\n"
-"hd_id3155341\n"
-"31\n"
+"02230200.xhp\n"
+"par_id3153541\n"
+"11\n"
"help.text"
-msgid "Load Gradients List"
-msgstr "Zgjedhni listën e adresave"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_ACCEPT\">Shows or hides the changes that were accepted.</ahelp></caseinline></switchinline>"
+msgstr ""
-#: 05210300.xhp
+#: 02230200.xhp
msgctxt ""
-"05210300.xhp\n"
-"par_id3145085\n"
-"32\n"
+"02230200.xhp\n"
+"hd_id3149956\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_GRADIENT:BTN_LOAD\">Load a different list of gradients.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Show rejected changes </caseinline></switchinline>"
msgstr ""
-#: 05210300.xhp
+#: 02230200.xhp
msgctxt ""
-"05210300.xhp\n"
-"hd_id3148943\n"
-"33\n"
+"02230200.xhp\n"
+"par_id3159166\n"
+"13\n"
"help.text"
-msgid "Save Gradients List"
-msgstr "Zgjedhni listën e adresave"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_REJECT\">Shows or hides the changes that were rejected.</ahelp></caseinline></switchinline>"
+msgstr ""
-#: 05210300.xhp
+#: 02230200.xhp
msgctxt ""
-"05210300.xhp\n"
-"par_id3161459\n"
-"34\n"
+"02230200.xhp\n"
+"par_id3145119\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_GRADIENT:BTN_SAVE\">Saves the current list of gradients, so that you can load it later.</ahelp>"
+msgid "<link href=\"text/shared/01/02230300.xhp\" name=\"Comments\">Comments</link>"
msgstr ""
-#: 05080000.xhp
+#: 02230300.xhp
msgctxt ""
-"05080000.xhp\n"
+"02230300.xhp\n"
"tit\n"
"help.text"
-msgid "Alignment (Text Objects)"
-msgstr "Titulli, Tekst, 2 Objekte"
+msgid "Comment"
+msgstr "Koment"
-#: 05080000.xhp
+#: 02230300.xhp
msgctxt ""
-"05080000.xhp\n"
-"bm_id3152942\n"
+"02230300.xhp\n"
+"hd_id3083278\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>aligning; text objects</bookmark_value><bookmark_value>text objects; alignment</bookmark_value>"
+msgid "Comment"
+msgstr "Koment"
+
+#: 02230300.xhp
+msgctxt ""
+"02230300.xhp\n"
+"par_id3148983\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"kommentartext\"><ahelp hid=\"cui/ui/comment/edit\">Enter a comment for the recorded change.</ahelp></variable>"
msgstr ""
-#: 05080000.xhp
+#: 02230300.xhp
msgctxt ""
-"05080000.xhp\n"
-"hd_id3152942\n"
-"1\n"
+"02230300.xhp\n"
+"par_id3155391\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/05080000.xhp\" name=\"Alignment (Text Objects)\">Alignment (Text Objects)</link>"
+msgid "You can attach a comment when <switchinline select=\"appl\"><caseinline select=\"WRITER\">the cursor is in a changed text passage </caseinline><caseinline select=\"CALC\">the changed cell is selected</caseinline></switchinline>, or in the <emph>Accept or Reject Changes</emph> dialog."
msgstr ""
-#: 05080000.xhp
+#: 02230300.xhp
msgctxt ""
-"05080000.xhp\n"
-"par_id3150278\n"
-"2\n"
+"02230300.xhp\n"
+"par_id3156426\n"
+"5\n"
"help.text"
-msgid "Set the alignment options for the current selection."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments are displayed as callouts in the sheet when you rest your mouse pointer over a cell with a recorded change. You can also view comments that are attached to a changed cell in the changes list in the <link href=\"text/shared/01/02230400.xhp\" name=\"Accept or Reject Changes\"><emph>Accept or Reject Changes</emph></link> dialog. </caseinline></switchinline>"
msgstr ""
-#: 05250300.xhp
+#: 02230400.xhp
msgctxt ""
-"05250300.xhp\n"
+"02230400.xhp\n"
"tit\n"
"help.text"
-msgid "Send Backward"
-msgstr "Dërgo prapa"
+msgid "Accept or reject changes"
+msgstr "Prano ose Refuzo ndryshimet"
-#: 05250300.xhp
+#: 02230400.xhp
msgctxt ""
-"05250300.xhp\n"
-"hd_id3150146\n"
+"02230400.xhp\n"
+"hd_id3145138\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05250300.xhp\" name=\"Send Backward\">Send Backward</link>"
-msgstr ""
+msgid "Accept or reject changes"
+msgstr "Prano ose Refuzo ndryshimet"
-#: 05250300.xhp
+#: 02230400.xhp
msgctxt ""
-"05250300.xhp\n"
-"par_id3150794\n"
+"02230400.xhp\n"
+"par_id3147240\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Moves the selected object down one level, so that it is closer to the bottom of the stacking order.</ahelp>"
-msgstr ""
-
-#: 05250300.xhp
-msgctxt ""
-"05250300.xhp\n"
-"par_id3150445\n"
-"3\n"
-"help.text"
-msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
+msgid "<variable id=\"redlining\"><ahelp hid=\".uno:AcceptChanges\" visibility=\"visible\">Accept or reject recorded changes.</ahelp></variable>"
msgstr ""
#: 02230401.xhp
@@ -11467,7 +11672,7 @@ msgctxt ""
"par_id3154894\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_VIEW_PAGE\">Accept or reject individual changes.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/redlineviewpage/RedlineViewPage\">Accept or reject individual changes.</ahelp>"
msgstr ""
#: 02230401.xhp
@@ -11611,7 +11816,7 @@ msgctxt ""
"par_id3161459\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_VIEW_DG_VIEW\">Lists the changes that were recorded in the document. When you select an entry in the list, the change is highlighted in the document. To sort the list, click a column heading. </ahelp> Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while you click to select multiple entries in the list."
+msgid "<ahelp hid=\"svx/ui/redlineviewpage/changes\">Lists the changes that were recorded in the document. When you select an entry in the list, the change is highlighted in the document. To sort the list, click a column heading. </ahelp> Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while you click to select multiple entries in the list."
msgstr ""
#: 02230401.xhp
@@ -11737,7 +11942,7 @@ msgctxt ""
"par_id3152935\n"
"19\n"
"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_VIEW_PB_ACCEPT\">Accepts the selected change and removes the highlighting from the change in the document.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/accept\">Accepts the selected change and removes the highlighting from the change in the document.</ahelp>"
msgstr ""
#: 02230401.xhp
@@ -11755,7 +11960,7 @@ msgctxt ""
"par_id3150441\n"
"23\n"
"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_VIEW_PB_REJECT\">Rejects the selected change and removes the highlighting from the change in the document.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/reject\">Rejects the selected change and removes the highlighting from the change in the document.</ahelp>"
msgstr ""
#: 02230401.xhp
@@ -11773,7 +11978,7 @@ msgctxt ""
"par_id3150012\n"
"21\n"
"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_VIEW_PB_ACCEPTALL\">Accepts all of the changes and removes the highlighting from the document.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/acceptall\">Accepts all of the changes and removes the highlighting from the document.</ahelp>"
msgstr ""
#: 02230401.xhp
@@ -11791,7 +11996,7 @@ msgctxt ""
"par_id3151353\n"
"25\n"
"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_VIEW_PB_REJECTALL\">Rejects all of the changes and removes the highlighting from the document.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/acceptrejectchangesdialog/rejectall\">Rejects all of the changes and removes the highlighting from the document.</ahelp>"
msgstr ""
#: 02230401.xhp
@@ -11818,7 +12023,7 @@ msgctxt ""
"par_id3151116\n"
"42\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you made changes by choosing <emph>Format - AutoCorrect - Apply and Edit Changes</emph>, the <emph>Undo </emph>button appears in the dialog.<ahelp hid=\"HID_REDLINING_VIEW_PB_UNDO\"> Reverse the last Accept or Reject command.</ahelp></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you made changes by choosing <emph>Format - AutoCorrect - Apply and Edit Changes</emph>, the <emph>Undo </emph>button appears in the dialog.<ahelp hid=\"svx/ui/acceptrejectchangesdialog/undo\"> Reverse the last Accept or Reject command.</ahelp></caseinline></switchinline>"
msgstr ""
#: 02230401.xhp
@@ -11956,15905 +12161,17393 @@ msgctxt ""
msgid "<ahelp hid=\"HID_SORT_POSITION\">Sorts the list in a descending order according to the position of the changes in the document. This is the default sorting method.</ahelp>"
msgstr ""
-#: 05200000.xhp
+#: 02230402.xhp
msgctxt ""
-"05200000.xhp\n"
+"02230402.xhp\n"
"tit\n"
"help.text"
-msgid "Line"
-msgstr "Rreshti"
+msgid "Filter"
+msgstr "Filtër"
-#: 05200000.xhp
+#: 02230402.xhp
msgctxt ""
-"05200000.xhp\n"
-"hd_id3154350\n"
+"02230402.xhp\n"
+"hd_id3153323\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
+msgid "<link href=\"text/shared/01/02230402.xhp\" name=\"Filter\">Filter</link>"
msgstr ""
-#: 05200000.xhp
+#: 02230402.xhp
msgctxt ""
-"05200000.xhp\n"
-"par_id3147588\n"
+"02230402.xhp\n"
+"par_id3147088\n"
"2\n"
"help.text"
-msgid "<variable id=\"linietext\"><ahelp hid=\".uno:FormatLine\">Sets the formatting options for the selected line.</ahelp></variable>"
+msgid "Set the criteria for filtering the list of changes on the <link href=\"text/shared/01/02230401.xhp\" name=\"List\"><emph>List</emph></link> tab."
msgstr ""
-#: 05110100.xhp
+#: 02230402.xhp
msgctxt ""
-"05110100.xhp\n"
-"tit\n"
+"02230402.xhp\n"
+"hd_id3150355\n"
+"3\n"
"help.text"
-msgid "Bold"
-msgstr "Me të trasha"
+msgid "Date"
+msgstr "Data"
-#: 05110100.xhp
+#: 02230402.xhp
msgctxt ""
-"05110100.xhp\n"
-"bm_id3150278\n"
+"02230402.xhp\n"
+"par_id3147573\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>text; bold</bookmark_value><bookmark_value>bold; text</bookmark_value><bookmark_value>characters; bold</bookmark_value>"
+msgid "<ahelp hid=\"svx/ui/redlinefilterpage/endtime\">Filters the list of changes according to the date and the time that you specify.</ahelp>"
msgstr ""
-#: 05110100.xhp
+#: 02230402.xhp
msgctxt ""
-"05110100.xhp\n"
-"hd_id3150278\n"
-"1\n"
+"02230402.xhp\n"
+"hd_id3154811\n"
+"17\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110100.xhp\" name=\"Bold\">Bold</link>"
-msgstr ""
+msgid "Set Date/Time"
+msgstr "Data Koha Autori"
-#: 05110100.xhp
+#: 02230402.xhp
msgctxt ""
-"05110100.xhp\n"
-"par_id3153089\n"
-"2\n"
+"02230402.xhp\n"
+"par_id3159147\n"
"help.text"
-msgid "<ahelp hid=\".uno:Bold\">Makes the selected text bold. If the cursor is in a word, the entire word is made bold. If the selection or word is already bold, the formatting is removed.</ahelp>"
+msgid "<image id=\"img_id3150771\" src=\"cmd/sc_timefield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150771\">Icon</alt></image>"
msgstr ""
-#: 05110100.xhp
+#: 02230402.xhp
msgctxt ""
-"05110100.xhp\n"
-"par_id3153255\n"
-"3\n"
+"02230402.xhp\n"
+"par_id3143270\n"
+"18\n"
"help.text"
-msgid "If the cursor is not inside a word, and no text is selected, then the font style is applied to the text that you type."
+msgid "<ahelp hid=\"svx/ui/redlinefilterpage/endclock\">Enters the current date and time into the corresponding boxes.</ahelp>"
msgstr ""
-#: 06140402.xhp
+#: 02230402.xhp
msgctxt ""
-"06140402.xhp\n"
-"tit\n"
+"02230402.xhp\n"
+"hd_id3155261\n"
+"5\n"
"help.text"
-msgid "Change Icon"
-msgstr "Fshije ikonën"
+msgid "Author"
+msgstr "Autori"
-#: 06140402.xhp
+#: 02230402.xhp
msgctxt ""
-"06140402.xhp\n"
-"par_idN10543\n"
+"02230402.xhp\n"
+"par_id3150084\n"
+"6\n"
"help.text"
-msgid "Change Icon"
-msgstr "Fshije ikonën"
+msgid "<ahelp hid=\"svx/ui/redlinefilterpage/authorlist\">Filters the list of changes according to the name of the author that you select from the list.</ahelp>"
+msgstr ""
-#: 06140402.xhp
+#: 02230402.xhp
msgctxt ""
-"06140402.xhp\n"
-"par_idN10547\n"
+"02230402.xhp\n"
+"hd_id3147531\n"
+"13\n"
"help.text"
-msgid "Icons"
-msgstr "Ikonë"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Range </caseinline></switchinline>"
+msgstr ""
-#: 06140402.xhp
+#: 02230402.xhp
msgctxt ""
-"06140402.xhp\n"
-"par_idN1054B\n"
+"02230402.xhp\n"
+"par_id3156344\n"
+"14\n"
"help.text"
-msgid "Displays the available icons in %PRODUCTNAME. To replace the icon that you selected in the <link href=\"text/shared/01/06140400.xhp\">Customize</link> dialog, click an icon, then click the <emph>OK</emph> button."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"svx/ui/redlinefilterpage/rangeedit\">Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the <emph>Set Reference </emph>button (<emph>...</emph>).</ahelp></caseinline></switchinline>"
msgstr ""
-#: 06140402.xhp
+#: 02230402.xhp
msgctxt ""
-"06140402.xhp\n"
-"par_idN1055C\n"
+"02230402.xhp\n"
+"par_id4441663\n"
"help.text"
-msgid "Import"
-msgstr "Importo"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the range of cells that you want to use as a filter.</ahelp>"
+msgstr ""
-#: 06140402.xhp
+#: 02230402.xhp
msgctxt ""
-"06140402.xhp\n"
-"par_idN10560\n"
+"02230402.xhp\n"
+"hd_id3147304\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\".\">Adds new icons to the list of icons. You see a file open dialog that imports the selected icon or icons into the internal icon directory of %PRODUCTNAME.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Set Reference </caseinline></switchinline>"
msgstr ""
-#: 06140402.xhp
+#: 02230402.xhp
msgctxt ""
-"06140402.xhp\n"
-"par_idN10575\n"
+"02230402.xhp\n"
+"par_id3151210\n"
"help.text"
-msgid "You can only import icons that are in the PNG file format and that are 16x16 or 26x26 pixels in size."
+msgid "<image id=\"img_id3154138\" src=\"starmath/res/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154138\">Icon</alt></image>"
msgstr ""
-#: 06140402.xhp
+#: 02230402.xhp
msgctxt ""
-"06140402.xhp\n"
-"par_id8224433\n"
+"02230402.xhp\n"
+"par_id3156215\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\".\">Click to remove the selected icon from the list. Only user-defined icons can be removed.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/redlinefilterpage/dotdotdot\">Select the range of cells that you want to use as a filter.</ahelp>"
msgstr ""
-#: 05260400.xhp
+#: 02230402.xhp
msgctxt ""
-"05260400.xhp\n"
-"tit\n"
+"02230402.xhp\n"
+"hd_id3159149\n"
+"20\n"
"help.text"
-msgid "To Cell"
-msgstr "Nga ~Qelia"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Shrink/Max </caseinline></switchinline>"
+msgstr ""
-#: 05260400.xhp
+#: 02230402.xhp
msgctxt ""
-"05260400.xhp\n"
-"hd_id3147212\n"
-"1\n"
+"02230402.xhp\n"
+"par_id3149809\n"
"help.text"
-msgid "<link href=\"text/shared/01/05260400.xhp\" name=\"To Cell\">To Cell</link>"
+msgid "<image id=\"img_id3154153\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3154153\">Icon</alt></image>"
msgstr ""
-#: 05260400.xhp
+#: 02230402.xhp
msgctxt ""
-"05260400.xhp\n"
-"par_id3150794\n"
-"2\n"
+"02230402.xhp\n"
+"par_id3147287\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".uno:SetAnchorToCell\" visibility=\"visible\">Anchors the selected item to a cell.</ahelp> The anchor icon is displayed in the upper left corner of the cell."
+msgid "<ahelp hid=\"SC:IMAGEBUTTON:RID_SCDLG_SIMPLEREF:RB_ASSIGN\">Select the range of cells that you want to use as a filter, and then click this button to return to the filter list.</ahelp>"
msgstr ""
-#: 01010302.xhp
+#: 02230402.xhp
msgctxt ""
-"01010302.xhp\n"
-"tit\n"
+"02230402.xhp\n"
+"hd_id3156543\n"
+"9\n"
"help.text"
-msgid "Business Cards"
-msgstr "Vizitkartat"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Action </caseinline></switchinline>"
+msgstr ""
-#: 01010302.xhp
+#: 02230402.xhp
msgctxt ""
-"01010302.xhp\n"
-"hd_id3152414\n"
-"1\n"
+"02230402.xhp\n"
+"par_id3155413\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010302.xhp\" name=\"Business Cards\">Business Cards</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"svx/ui/redlinefilterpage/actionlist\">Filters the list of changes according to the type of change that you select in the <emph>Action</emph> box.</ahelp></caseinline></switchinline>"
msgstr ""
-#: 01010302.xhp
+#: 02230402.xhp
msgctxt ""
-"01010302.xhp\n"
-"par_id3153882\n"
-"2\n"
+"02230402.xhp\n"
+"hd_id3155855\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\"\" visibility=\"visible\">Define the appearance of your business cards.</ahelp>"
-msgstr ""
+msgid "Comment"
+msgstr "Koment"
-#: 01010302.xhp
+#: 02230402.xhp
msgctxt ""
-"01010302.xhp\n"
-"hd_id3146873\n"
-"3\n"
+"02230402.xhp\n"
+"par_id3151114\n"
+"23\n"
"help.text"
-msgid "Content"
-msgstr "Përmbajtje"
+msgid "<ahelp hid=\"svx/ui/redlinefilterpage/commentedit\">Filters the comments of the changes according to the keyword(s) that you enter. </ahelp>"
+msgstr ""
-#: 01010302.xhp
+#: 02230402.xhp
msgctxt ""
-"01010302.xhp\n"
-"par_id3147527\n"
-"4\n"
+"02230402.xhp\n"
+"par_id3163820\n"
+"24\n"
"help.text"
-msgid "Select a design layout for your business card."
+msgid "You can also use <link href=\"text/shared/01/02100000.xhp\" name=\"regular expressions\">regular expressions</link> (wildcards) when you filter the comments."
msgstr ""
-#: 01010302.xhp
+#: 02230500.xhp
msgctxt ""
-"01010302.xhp\n"
-"par_id3158442\n"
-"5\n"
+"02230500.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"HID_BUSINESS_CARD_CONTENT\">Select a business card category in <emph>AutoText - Section</emph> box, and then click a layout in the <emph>Content </emph>list.</ahelp>"
-msgstr ""
+msgid "Merge Document"
+msgstr "~Bashko dokumentin..."
-#: 01010302.xhp
+#: 02230500.xhp
msgctxt ""
-"01010302.xhp\n"
-"hd_id3148668\n"
-"6\n"
+"02230500.xhp\n"
+"hd_id3149000\n"
+"1\n"
"help.text"
-msgid "AutoText - Section"
-msgstr "AutoText - seksioni"
+msgid "Merge Document"
+msgstr "~Bashko dokumentin..."
-#: 01010302.xhp
+#: 02230500.xhp
msgctxt ""
-"01010302.xhp\n"
-"par_id3154894\n"
-"7\n"
+"02230500.xhp\n"
+"par_id3154408\n"
+"2\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SW_LISTBOX_TP_VISITING_CARDS_LB_AUTO_TEXT_GROUP\">Select a business card category, and then click a layout in the <emph>Content </emph>list.</ahelp>"
+msgid "<variable id=\"dokzus\"><ahelp hid=\".uno:MergeDocuments\" visibility=\"visible\">Imports changes made to copies of the same document into the original document. Changes made to footnotes, headers, frames and fields are ignored.</ahelp></variable> Identical changes are merged automatically."
msgstr ""
-#: 06140000.xhp
+#: 02240000.xhp
msgctxt ""
-"06140000.xhp\n"
+"02240000.xhp\n"
"tit\n"
"help.text"
-msgid "Customize"
-msgstr "Përshtat..."
+msgid "Compare Document"
+msgstr "Krahaso Dokumentin"
-#: 06140000.xhp
+#: 02240000.xhp
msgctxt ""
-"06140000.xhp\n"
-"hd_id3146946\n"
+"02240000.xhp\n"
+"hd_id3149877\n"
"1\n"
"help.text"
-msgid "Customize"
-msgstr "Përshtat..."
+msgid "Compare Document"
+msgstr "Krahaso Dokumentin"
-#: 06140000.xhp
+#: 02240000.xhp
msgctxt ""
-"06140000.xhp\n"
-"par_id3155069\n"
+"02240000.xhp\n"
+"par_id3150838\n"
"2\n"
"help.text"
-msgid "<variable id=\"anpassen\"><ahelp hid=\".uno:LoadToolBox\">Customizes $[officename] menus, shortcut keys, toolbars, and macro assignments to events.</ahelp></variable>"
-msgstr ""
-
-#: 06140000.xhp
-msgctxt ""
-"06140000.xhp\n"
-"par_id3152821\n"
-"7\n"
-"help.text"
-msgid "You can customize shortcut keys and macro assignments for the current application, or for all $[officename] applications."
+msgid "<variable id=\"dokver\"><ahelp hid=\".uno:CompareDocuments\">Compares the current document with a document that you select.</ahelp></variable> The contents of the selected document are marked as deletions in the dialog that opens. If you want, you can insert the contents of the selected file into the current document by selecting the relevant deleted entries, clicking <emph>Reject</emph>, and then clicking <emph>Insert</emph>."
msgstr ""
-#: 06140000.xhp
+#: 02240000.xhp
msgctxt ""
-"06140000.xhp\n"
-"par_id3153303\n"
+"02240000.xhp\n"
+"par_id3153662\n"
"4\n"
"help.text"
-msgid "You can also save and load individual menu, shortcut key, and toolbar custom settings."
+msgid "The contents of footnotes, headers, frames and fields are ignored."
msgstr ""
-#: 05020100.xhp
-#, fuzzy
+#: 02250000.xhp
msgctxt ""
-"05020100.xhp\n"
+"02250000.xhp\n"
"tit\n"
"help.text"
-msgid "Font"
-msgstr "Fonti"
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"bm_id3154812\n"
-"help.text"
-msgid "<bookmark_value>formats; fonts</bookmark_value><bookmark_value>characters;fonts and formats</bookmark_value><bookmark_value>fonts; formats</bookmark_value><bookmark_value>text; fonts and formats</bookmark_value><bookmark_value>typefaces; formats</bookmark_value><bookmark_value>font sizes; relative changes</bookmark_value><bookmark_value>languages; spellchecking and formatting</bookmark_value><bookmark_value>characters; enabling CTL and Asian characters</bookmark_value>"
-msgstr ""
+msgid "Bibliography Database"
+msgstr "Të Dhëna Bazë Bibliografike"
-#: 05020100.xhp
+#: 02250000.xhp
msgctxt ""
-"05020100.xhp\n"
-"hd_id3154812\n"
+"02250000.xhp\n"
+"hd_id3150999\n"
"1\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"><link href=\"text/shared/01/05020100.xhp\" name=\"Characters\">Characters</link></caseinline><defaultinline><link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link></defaultinline></switchinline>"
+msgid "<link href=\"text/shared/01/02250000.xhp\" name=\"Bibliography Database\">Bibliography Database</link>"
msgstr ""
-#: 05020100.xhp
+#: 02250000.xhp
msgctxt ""
-"05020100.xhp\n"
-"par_id3158405\n"
+"02250000.xhp\n"
+"par_id3149119\n"
"2\n"
"help.text"
-msgid "<variable id=\"zn\"><ahelp hid=\"cui/ui/charnamepage/CharNamePage\">Specify the formatting and the font that you want to apply.</ahelp></variable>"
-msgstr ""
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3155616\n"
-"3\n"
-"help.text"
-msgid "The changes are applied to the current selection, to the entire word that contains the cursor, or to the new text that you type."
-msgstr ""
-
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"par_id3155552\n"
-"52\n"
-"help.text"
-msgid "Depending on your language settings, you can change the formatting for the following font types:"
+msgid "<variable id=\"litdattext\"><ahelp hid=\"HID_BIB_DB_TBX\">Insert, delete, edit, and organize records in the bibliography database.</ahelp></variable>"
msgstr ""
-#: 05020100.xhp
+#: 02250000.xhp
msgctxt ""
-"05020100.xhp\n"
-"par_id3147291\n"
+"02250000.xhp\n"
+"par_id3149346\n"
"53\n"
"help.text"
-msgid "Western text font - Latin character sets."
+msgid "If the fields in your database are read-only, ensure that the data source view is closed."
msgstr ""
-#: 05020100.xhp
+#: 02250000.xhp
msgctxt ""
-"05020100.xhp\n"
-"par_id3155391\n"
-"54\n"
+"02250000.xhp\n"
+"par_id3150506\n"
+"41\n"
"help.text"
-msgid "Asian text font - Chinese, Japanese, or Korean character sets"
+msgid "The supplied bibliography database contains sample records of books."
msgstr ""
-#: 05020100.xhp
+#: 02250000.xhp
msgctxt ""
-"05020100.xhp\n"
-"par_id3147576\n"
-"57\n"
+"02250000.xhp\n"
+"par_id3155356\n"
+"4\n"
"help.text"
-msgid "Complex text layout font - right-to-left text direction"
+msgid "Use the toolbar to select a table in the bibliography database, to search for records, or to sort the records using filters."
msgstr ""
-#: 05020100.xhp
+#: 02250000.xhp
msgctxt ""
-"05020100.xhp\n"
-"par_id3153663\n"
-"58\n"
+"02250000.xhp\n"
+"par_id3163802\n"
+"21\n"
"help.text"
-msgid "To enable support for complex text layout and Asian character sets, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>, and then select the <emph>Enabled </emph>box in the corresponding area."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the available tables in the current database. Click a name in the list to display the records for that table.</ahelp>"
msgstr ""
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3148686\n"
-"4\n"
-"help.text"
-msgid "Font"
-msgstr "Fonti"
-
-#: 05020100.xhp
+#: 02250000.xhp
msgctxt ""
-"05020100.xhp\n"
-"par_id3148491\n"
-"7\n"
+"02250000.xhp\n"
+"par_id3158432\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/charnamepage/ctlfontnamelb\">Enter the name of an installed font that you want to use, or select a font from the list.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Go to the first record in the table.</ahelp>"
msgstr ""
-#: 05020100.xhp
-msgctxt ""
-"05020100.xhp\n"
-"hd_id3143271\n"
-"10\n"
-"help.text"
-msgid "Typeface"
-msgstr "Rrokje"
-
-#: 05020100.xhp
+#: 02250000.xhp
msgctxt ""
-"05020100.xhp\n"
-"par_id3155922\n"
-"11\n"
+"02250000.xhp\n"
+"par_id3149192\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/charnamepage/ctlstylelb\">Select the formatting that you want to apply.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Go to the previous record in the table.</ahelp>"
msgstr ""
-#: 05020100.xhp
+#: 02250000.xhp
msgctxt ""
-"05020100.xhp\n"
-"hd_id3151054\n"
-"16\n"
+"02250000.xhp\n"
+"par_id3146795\n"
+"26\n"
"help.text"
-msgid "Size"
-msgstr "Madhësia"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Go to the next record in the table.</ahelp>"
+msgstr ""
-#: 05020100.xhp
+#: 02250000.xhp
msgctxt ""
-"05020100.xhp\n"
-"par_id3150359\n"
-"19\n"
+"02250000.xhp\n"
+"par_id3144760\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/charnamepage/ctlsizelb\">Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Go to the last record in the table.</ahelp>"
msgstr ""
-#: 05020100.xhp
+#: 02250000.xhp
msgctxt ""
-"05020100.xhp\n"
-"par_id3148797\n"
-"45\n"
+"02250000.xhp\n"
+"par_id3157960\n"
+"31\n"
"help.text"
-msgid "If you are creating a Style that is based on another Style, you can enter a percentage value or a point value (for example, -2pt or +5pt)."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Type the number of the record that you want to display, and then press Enter.</ahelp>"
msgstr ""
-#: 05020100.xhp
+#: 02250000.xhp
msgctxt ""
-"05020100.xhp\n"
-"hd_id3151176\n"
-"38\n"
+"02250000.xhp\n"
+"hd_id3150868\n"
+"5\n"
"help.text"
-msgid "Language"
-msgstr "Gjuhë"
+msgid "Inserting a New Record"
+msgstr "Mbroje regjistrin e ndryshimeve"
-#: 05020100.xhp
+#: 02250000.xhp
msgctxt ""
-"05020100.xhp\n"
-"par_id3157961\n"
-"39\n"
+"02250000.xhp\n"
+"par_id3149168\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/charnamepage/ctlsizelb\">Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them.</ahelp>"
+msgid "<ahelp hid=\"HID_GRID_TRAVEL_NEW\" visibility=\"hidden\">Inserts a new record into the current table.</ahelp> To create a record, click the asterisk (*) button at the bottom of the table view. An empty row is added at the end of the table."
msgstr ""
-#: 05020100.xhp
+#: 02250000.xhp
msgctxt ""
-"05020100.xhp\n"
-"par_id3153770\n"
-"59\n"
+"02250000.xhp\n"
+"par_id3152920\n"
+"7\n"
"help.text"
-msgid "You can only change the language setting for cells (choose <emph>Format - Cells – Numbers</emph>)."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the type of record that you want to create. $[officename] inserts a number in the <emph>Type</emph> column of the record that corresponds to the type that you select here.</ahelp>"
msgstr ""
-#: 05020100.xhp
+#: 02250000.xhp
msgctxt ""
-"05020100.xhp\n"
-"par_id3145364\n"
-"60\n"
+"02250000.xhp\n"
+"par_id3156423\n"
+"32\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Asian languages support\">Asian languages support</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a short name for the record. The short name appears in the <emph>Identifier</emph> column in the list of records.</ahelp>"
msgstr ""
-#: 05020100.xhp
+#: 02250000.xhp
msgctxt ""
-"05020100.xhp\n"
-"par_id3147213\n"
-"61\n"
+"02250000.xhp\n"
+"par_id3155994\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Complex text layout support\">Complex text layout support</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter additional information for the selected record. If you want, you can also enter the information in the corresponding field in the table.</ahelp>"
msgstr ""
-#: 05110500.xhp
+#: 02250000.xhp
msgctxt ""
-"05110500.xhp\n"
-"tit\n"
+"02250000.xhp\n"
+"hd_id3163716\n"
+"9\n"
"help.text"
-msgid "Shadows"
-msgstr "Hije"
+msgid "Finding and Filtering Records"
+msgstr ""
-#: 05110500.xhp
+#: 02250000.xhp
msgctxt ""
-"05110500.xhp\n"
-"bm_id3154545\n"
+"02250000.xhp\n"
+"par_id3147478\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>text; shadowed</bookmark_value><bookmark_value>characters; shadowed</bookmark_value><bookmark_value>shadows;characters, using context menu</bookmark_value>"
+msgid "You can search for records by matching a keyword to a field entry."
msgstr ""
-#: 05110500.xhp
+#: 02250000.xhp
msgctxt ""
-"05110500.xhp\n"
-"hd_id3154545\n"
-"1\n"
+"02250000.xhp\n"
+"hd_id3159181\n"
+"28\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110500.xhp\" name=\"Shadows\">Shadows</link>"
-msgstr ""
+msgid "Entering Search key"
+msgstr "Çelësi i kërkimit nuk është gjetur"
-#: 05110500.xhp
+#: 02250000.xhp
msgctxt ""
-"05110500.xhp\n"
-"par_id3151299\n"
-"2\n"
+"02250000.xhp\n"
+"par_id3159125\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\".uno:Shadowed\">Adds a shadow to the selected text, or if the cursor is in a word, to the entire word.</ahelp>"
+msgid "<ahelp hid=\".uno:Bib/query\">Type the information that you want to search for, and then press Enter. To change the filter options for the search, long-click the <emph>AutoFilter</emph> icon, and then select a different data field. You can use wildcards such as % or * for any number of characters, and _ or ? for one character in your search. To display all of the records in the table, clear this box, and then press Enter. </ahelp>"
msgstr ""
-#: 02100100.xhp
+#: 02250000.xhp
msgctxt ""
-"02100100.xhp\n"
-"tit\n"
+"02250000.xhp\n"
+"hd_id3155511\n"
+"29\n"
"help.text"
-msgid "Similarity Search"
-msgstr "Kërkimi i përgjasimit"
+msgid "AutoFilter"
+msgstr "AutoFiltër"
-#: 02100100.xhp
+#: 02250000.xhp
msgctxt ""
-"02100100.xhp\n"
-"bm_id3156045\n"
+"02250000.xhp\n"
+"par_id3146975\n"
+"14\n"
"help.text"
-msgid "<bookmark_value>similarity search</bookmark_value><bookmark_value>finding; similarity search</bookmark_value>"
+msgid "<ahelp hid=\".uno:Bib/autoFilter\">Long-click to select the data field that you want to search using the term that you entered in the <emph>Search Key</emph> box. You can only search one data field.</ahelp>"
msgstr ""
-#: 02100100.xhp
+#: 02250000.xhp
msgctxt ""
-"02100100.xhp\n"
-"hd_id3156045\n"
-"52\n"
+"02250000.xhp\n"
+"par_id3149664\n"
+"15\n"
"help.text"
-msgid "<link href=\"text/shared/01/02100100.xhp\" name=\"Similarity Search\">Similarity Search</link>"
+msgid "The list of table records is automatically updated to match the new filter settings."
msgstr ""
-#: 02100100.xhp
+#: 02250000.xhp
msgctxt ""
-"02100100.xhp\n"
-"par_id3146856\n"
-"53\n"
+"02250000.xhp\n"
+"par_id3145590\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXDLG_SEARCH_CB_SIMILARITY\">Find terms that are similar to the <emph>Search for </emph>text. Select this checkbox, and then click the <emph>...</emph> button to define the similarity options.</ahelp>"
+msgid "<ahelp hid=\".\">Use the <emph>Standard Filter</emph> to refine and to combine <emph>AutoFilter </emph>search options.</ahelp>"
msgstr ""
-#: 02100100.xhp
+#: 02250000.xhp
msgctxt ""
-"02100100.xhp\n"
-"par_id3149551\n"
-"66\n"
+"02250000.xhp\n"
+"par_id3155311\n"
+"16\n"
"help.text"
-msgid "For example, a similarity search can find words that differ from the <emph>Search for </emph>text by two characters."
+msgid "<ahelp hid=\".\">To display all of the records in a table, click the <emph>Remove Filter</emph> icon.</ahelp>"
msgstr ""
-#: 02100100.xhp
+#: 02250000.xhp
msgctxt ""
-"02100100.xhp\n"
-"hd_id3154621\n"
-"54\n"
+"02250000.xhp\n"
+"hd_id3147580\n"
+"17\n"
"help.text"
-msgid "..."
-msgstr "..."
+msgid "Deleting a Record"
+msgstr "Numri i regjistrimit"
-#: 02100100.xhp
+#: 02250000.xhp
msgctxt ""
-"02100100.xhp\n"
-"par_id3145629\n"
-"55\n"
+"02250000.xhp\n"
+"par_id3154471\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SEARCH_PB_SIMILARITY\">Set the options for the similarity search.</ahelp>"
+msgid "To delete a record in the current table, right-click the row header of the record, and then select <emph>Delete</emph>. <ahelp hid=\"SID_FM_DELETEROWS\" visibility=\"hidden\">Deletes the selected record.</ahelp>"
msgstr ""
-#: 02100100.xhp
-msgctxt ""
-"02100100.xhp\n"
-"hd_id3149511\n"
-"56\n"
-"help.text"
-msgid "Settings"
-msgstr "Parametrat"
-
-#: 02100100.xhp
+#: 02250000.xhp
msgctxt ""
-"02100100.xhp\n"
-"par_id3152594\n"
-"57\n"
+"02250000.xhp\n"
+"hd_id3152941\n"
+"33\n"
"help.text"
-msgid "Define the criteria for determining if a word is similar to the search term."
-msgstr ""
+msgid "Changing the data source"
+msgstr "Lidhja me burimin e të dhënave"
-#: 02100100.xhp
+#: 02250000.xhp
msgctxt ""
-"02100100.xhp\n"
-"hd_id3153551\n"
-"58\n"
+"02250000.xhp\n"
+"hd_id3147214\n"
+"38\n"
"help.text"
-msgid "Exchange characters"
-msgstr "Karakteret e fusnotave"
+msgid "Data Source"
+msgstr "Burim i të Dhënave"
-#: 02100100.xhp
+#: 02250000.xhp
msgctxt ""
-"02100100.xhp\n"
-"par_id3152551\n"
-"59\n"
+"02250000.xhp\n"
+"par_id3151118\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXDLG_SEARCHSIMILARITY_NF_OTHER\">Enter the number of characters in the search term that can be exchanged.</ahelp> For example, if you specify 2 exchanged characters, \"black\" and \"crack\" are considered similar."
+msgid "<ahelp hid=\".uno:Bib/sdbsource\">Select the data source for the bibliography database.</ahelp>"
msgstr ""
-#: 02100100.xhp
+#: 02250000.xhp
msgctxt ""
-"02100100.xhp\n"
-"hd_id3147010\n"
-"60\n"
+"02250000.xhp\n"
+"hd_id3145645\n"
+"35\n"
"help.text"
-msgid "Add characters"
-msgstr "Karakteret e fusnotave"
+msgid "Column Arrangement"
+msgstr "Aranzhimi i Kolonave"
-#: 02100100.xhp
+#: 02250000.xhp
msgctxt ""
-"02100100.xhp\n"
-"par_id3109847\n"
-"61\n"
+"02250000.xhp\n"
+"par_id3151282\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXDLG_SEARCHSIMILARITY_NF_LONGER\">Enter the maximum number of characters by which a word can exceed the number of characters in the search term.</ahelp>"
+msgid "<ahelp hid=\".uno:Bib/Mapping\">Lets you map the column headings to data fields from a different data source. To define a different data source for your bibliography, click the<emph> Data Source</emph> button on the record<emph> Object Bar</emph>.</ahelp>"
msgstr ""
-#: 02100100.xhp
+#: 02250000.xhp
msgctxt ""
-"02100100.xhp\n"
-"hd_id3166460\n"
-"62\n"
+"02250000.xhp\n"
+"par_id3144767\n"
+"37\n"
"help.text"
-msgid "Remove characters"
-msgstr "Karakteret e fusnotave"
+msgid "<ahelp hid=\"BIB_LISTBOX_RID_DLG_MAPPING_LB_CUSTOM4\">Select the data field that you want to map to the current <emph>Column name</emph>. To change the available data fields, select a different data source for your bibliography.</ahelp>"
+msgstr ""
-#: 02100100.xhp
+#: 02250000.xhp
msgctxt ""
-"02100100.xhp\n"
-"par_id3148685\n"
-"63\n"
+"02250000.xhp\n"
+"par_id3153947\n"
+"48\n"
"help.text"
-msgid "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXDLG_SEARCHSIMILARITY_NF_SHORTER\">Enter the number of characters by which a word can be shorter than the search term.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current record.</ahelp>"
msgstr ""
-#: 02100100.xhp
+#: 02250000.xhp
msgctxt ""
-"02100100.xhp\n"
-"hd_id3153700\n"
-"64\n"
+"02250000.xhp\n"
+"par_id3151019\n"
+"52\n"
"help.text"
-msgid "Combine"
-msgstr "Kombino %O"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Lets you choose a different data source for your bibliography.</ahelp>"
+msgstr ""
-#: 02100100.xhp
+#: 02250000.xhp
msgctxt ""
-"02100100.xhp\n"
-"par_id3156553\n"
-"65\n"
+"02250000.xhp\n"
+"par_id3153730\n"
+"50\n"
"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXDLG_SEARCHSIMILARITY_CB_RELAX\">Searches for a term that matches any combination of the similarity search settings.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new record into the current table.</ahelp>"
msgstr ""
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
+"03010000.xhp\n"
"tit\n"
"help.text"
-msgid "Footer"
-msgstr "Mbarimi"
+msgid "Zoom & View Layout"
+msgstr "Apliko formëdhënien e prezantimit"
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3155620\n"
-"1\n"
+"03010000.xhp\n"
+"bm_id3154682\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040400.xhp\" name=\"Footer\">Footer</link>"
+msgid "<bookmark_value>zooming;page views</bookmark_value> <bookmark_value>views; scaling</bookmark_value> <bookmark_value>screen; scaling</bookmark_value> <bookmark_value>pages; scaling</bookmark_value>"
msgstr ""
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3156553\n"
-"2\n"
+"03010000.xhp\n"
+"hd_id3154682\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FORMAT_FOOTER\">Adds a footer to the current page style. A footer is an area in the bottom page margin, where you can add text or graphics.</ahelp>"
+msgid "<link href=\"text/shared/01/03010000.xhp\">Zoom & View Layout</link>"
msgstr ""
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3145136\n"
-"32\n"
+"03010000.xhp\n"
+"par_id3149578\n"
+"2\n"
"help.text"
-msgid "If you want, you can also add borders or a background fill to a footer."
+msgid "<variable id=\"massstabtext\"><ahelp hid=\".uno:Zoom\">Reduces or enlarges the screen display of %PRODUCTNAME.</ahelp></variable> The current zoom factor is displayed as a percentage value on the <emph>Status</emph> bar."
msgstr ""
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3155339\n"
-"31\n"
+"03010000.xhp\n"
+"par_id3149655\n"
+"26\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To insert a footer into the current document, select <emph>Footer on</emph>, and then click <emph>OK</emph>. </caseinline></switchinline>"
+msgid "Zooming is handled differently on Unix, Linux, and Windows platforms. A document saved with a 100% zoom factor in Windows is displayed at a larger zoom factor on Unix/Linux platforms. To change the zoom factor, double-click or right-click the percentage value on the <emph>Status</emph> bar, and select the zoom factor that you want."
msgstr ""
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3147209\n"
-"30\n"
+"03010000.xhp\n"
+"hd_id3149669\n"
+"3\n"
"help.text"
-msgid "If you want to extend a footer into the page margins, insert a frame into the footer."
-msgstr ""
+msgid "Zoom factor"
+msgstr "Zvogëlo"
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3150976\n"
-"28\n"
+"03010000.xhp\n"
+"par_id3154389\n"
+"4\n"
"help.text"
-msgid "To quickly move the text cursor from the document text to the header or footer, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down. Press the same key again to move the text cursor back into the document text."
+msgid "Set the zoom factor at which to display the current document and all documents of the same type that you open thereafter."
msgstr ""
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3150504\n"
-"3\n"
+"03010000.xhp\n"
+"hd_id3153351\n"
+"20\n"
"help.text"
-msgid "Footer"
-msgstr "Mbarimi"
+msgid "Optimal"
+msgstr "Optimale"
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3149235\n"
-"4\n"
+"03010000.xhp\n"
+"par_id3144760\n"
+"21\n"
"help.text"
-msgid "Set the properties of the footer."
-msgstr "Faqja e mbarimit $(ARG1)"
+msgid "<ahelp hid=\"HID_MNU_ZOOM_OPTIMAL\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Resizes the display to fit the width of the selected cell area at the moment the command is started.</caseinline><defaultinline>Resizes the display to fit the width of the text in the document at .</defaultinline></switchinline></ahelp>"
+msgstr ""
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3154380\n"
-"6\n"
+"03010000.xhp\n"
+"hd_id3151210\n"
+"22\n"
"help.text"
-msgid "Footer on"
-msgstr "Mbështjell"
+msgid "Fit width and height"
+msgstr "A~utoPërshtat gjerësinë dhe lartësinë"
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3153348\n"
-"7\n"
+"03010000.xhp\n"
+"par_id3150543\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_TURNON\">Adds a footer to the current page style.</ahelp>"
+msgid "<ahelp hid=\"HID_MNU_ZOOM_WHOLE_PAGE\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Resizes the display to fit the width and height of the selected cell area at the moment the command is started.</caseinline><defaultinline>Displays the entire page on your screen.</defaultinline></switchinline></ahelp>"
msgstr ""
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3145087\n"
-"20\n"
+"03010000.xhp\n"
+"hd_id3152771\n"
+"24\n"
"help.text"
-msgid "Same content left/right"
-msgstr "Madhësia e tejkalimit (majtas/djathtas)"
+msgid "Fit width"
+msgstr "Gjerësia e plotë"
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3149575\n"
-"21\n"
+"03010000.xhp\n"
+"par_id3143231\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_SHARED\">Even and odd pages share the same content.<switchinline select=\"appl\"><caseinline select=\"CALC\"> To assign a different footer to even and odd pages, clear this option, and then click <emph>Edit</emph>. </caseinline></switchinline></ahelp>"
+msgid "<ahelp hid=\"HID_MNU_ZOOM_PAGE_WIDTH\">Displays the complete width of the document page. The top and bottom edges of the page may not be visible.</ahelp>"
msgstr ""
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3154937\n"
-"21\n"
+"03010000.xhp\n"
+"hd_id3153106\n"
+"9\n"
"help.text"
-msgid "Same content on first page"
-msgstr ""
+msgid "100 %"
+msgstr "Pamja 100%"
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3154939\n"
-"22\n"
+"03010000.xhp\n"
+"par_id3147353\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_SHARED_FIRST\">First and even/odd pages share the same content.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/zoomdialog/100pc\">Displays the document at its actual size.</ahelp>"
msgstr ""
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3147264\n"
-"16\n"
+"03010000.xhp\n"
+"hd_id3153191\n"
+"15\n"
"help.text"
-msgid "Left margin"
-msgstr "Margjina e majtë"
+msgid "Variable"
+msgstr "Variabël"
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3156434\n"
-"17\n"
+"03010000.xhp\n"
+"par_id3159125\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_LMARGIN\">Enter the amount of space to leave between the left edge of the page and the left edge of the footer.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/zoomdialog/zoomsb\">Enter the zoom factor at which you want to display the document. Enter a percentage in the box.</ahelp>"
msgstr ""
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3154073\n"
-"18\n"
+"03010000.xhp\n"
+"hd_id7319864\n"
"help.text"
-msgid "Right margin"
-msgstr "Margjina e djathtë"
+msgid "View layout"
+msgstr "Ndrysho formëdhënien..."
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3154224\n"
-"19\n"
+"03010000.xhp\n"
+"par_id3423871\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_RMARGIN\">Enter the amount of space to leave between the right edge of the page and the right edge of the footer.</ahelp>"
+msgid "For text documents, you can set the view layout. Reduce the zoom factor to see the effects of different view layout settings."
msgstr ""
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3154140\n"
-"8\n"
+"03010000.xhp\n"
+"hd_id3818475\n"
"help.text"
-msgid "Spacing"
-msgstr "Hapësira"
+msgid "Automatic"
+msgstr "Automatike"
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3154908\n"
-"9\n"
+"03010000.xhp\n"
+"par_id3187353\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_DIST\">Enter the amount of space that you want to maintain between the bottom edge of the document text and the top edge of the footer.</ahelp>"
+msgid "<ahelp hid=\".\">The automatic view layout displays pages side by side, as many as the zoom factor allows.</ahelp>"
msgstr ""
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3158409\n"
-"34\n"
+"03010000.xhp\n"
+"hd_id8455153\n"
"help.text"
-msgid "Use dynamic spacing"
-msgstr "Përdor %WRITERCOMPATIBILITYVERSIONOOO11 hapësirën mes rreshtave"
+msgid "Single page"
+msgstr "Numri i faqes"
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3144760\n"
-"35\n"
+"03010000.xhp\n"
+"par_id9912411\n"
"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_FOOTER_CB_DYNSPACING\">Overrides the <emph>Spacing </emph>setting and allows the footer to expand into the area between the footer and document text.</ahelp>"
+msgid "<ahelp hid=\".\">The single page view layout displays pages beneath each other, but never side by side.</ahelp>"
msgstr ""
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3154821\n"
-"12\n"
+"03010000.xhp\n"
+"hd_id9204992\n"
"help.text"
-msgid "Height"
-msgstr "Lartësia"
+msgid "Columns"
+msgstr "Kolonat"
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3125865\n"
-"13\n"
+"03010000.xhp\n"
+"par_id1993774\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_HEIGHT\">Enter the height you want for the footer.</ahelp>"
+msgid "<ahelp hid=\".\">In columns view layout you see pages in a given number of columns side by side. Enter the number of columns.</ahelp>"
msgstr ""
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3150742\n"
-"14\n"
+"03010000.xhp\n"
+"hd_id2949919\n"
"help.text"
-msgid "AutoFit height"
-msgstr "Përshtate Automatikisht lartësinë"
+msgid "Book mode"
+msgstr "Modi piksel"
-#: 05040400.xhp
+#: 03010000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3145744\n"
-"15\n"
+"03010000.xhp\n"
+"par_id2355113\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_HEIGHT_DYN\">Automatically adjusts the height of the footer to fit the content you enter.</ahelp>"
+msgid "<ahelp hid=\".\">In book mode view layout you see two pages side by side as in an open book. The first page is a right page with an odd page number.</ahelp>"
msgstr ""
-#: 05040400.xhp
+#: 03020000.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3149807\n"
-"23\n"
+"03020000.xhp\n"
+"tit\n"
"help.text"
-msgid "More"
-msgstr "Më shumë"
+msgid "Standard Bar"
+msgstr "Shiriti i kontrollit"
-#: 05040400.xhp
+#: 03020000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3145421\n"
-"24\n"
+"03020000.xhp\n"
+"bm_id3150467\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_FOOTER:BTN_EXTRAS\">Defines a border, a background color, or a background pattern for the footer.</ahelp>"
+msgid "<bookmark_value>standard bar on/off</bookmark_value>"
msgstr ""
-#: 05040400.xhp
+#: 03020000.xhp
msgctxt ""
-"05040400.xhp\n"
-"hd_id3157892\n"
-"26\n"
+"03020000.xhp\n"
+"hd_id3150467\n"
+"1\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Edit </caseinline></switchinline>"
+msgid "<link href=\"text/shared/01/03020000.xhp\" name=\"Standard Bar\">Standard Bar</link>"
msgstr ""
-#: 05040400.xhp
+#: 03020000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id0609200910255518\n"
+"03020000.xhp\n"
+"par_id3149495\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Add or edit footer text.</ahelp>"
+msgid "<ahelp hid=\".uno:FunctionBarVisible\">Shows or hides the <emph>Standard Bar</emph>.</ahelp>"
msgstr ""
-#: 05040400.xhp
+#: 03040000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3150439\n"
-"27\n"
+"03040000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_FOOTER_EDIT\"><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02120000.xhp\" name=\"Add or edit footer text.\">Add or edit footer text.</link></caseinline></switchinline></ahelp>"
-msgstr ""
+msgid "Input Method Status"
+msgstr "Statusi i metodës për futjen e shënimeve"
-#: 05040400.xhp
+#: 03040000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3151112\n"
+"03040000.xhp\n"
+"bm_id3159079\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04230000.xhp\" name=\"Footers\">Footers</link>"
+msgid "<bookmark_value>IME;showing/hiding</bookmark_value><bookmark_value>input method window</bookmark_value>"
msgstr ""
-#: 05040400.xhp
+#: 03040000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3155411\n"
+"03040000.xhp\n"
+"hd_id3159079\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Changing measurement units\">Changing measurement units</link>"
+msgid "<link href=\"text/shared/01/03040000.xhp\" name=\"Input Method Status\">Input Method Status</link>"
msgstr ""
-#: 05040400.xhp
+#: 03040000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3154189\n"
+"03040000.xhp\n"
+"par_id3148668\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link>"
+msgid "<ahelp hid=\".uno:ShowImeStatusWindow\">Shows or hides the Input Method Engine (IME) status window.</ahelp>"
msgstr ""
-#: 05040400.xhp
+#: 03040000.xhp
msgctxt ""
-"05040400.xhp\n"
-"par_id3152791\n"
+"03040000.xhp\n"
+"par_id3157898\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Backgrounds\">Backgrounds</link>"
+msgid "Currently only the Internet/Intranet Input Method Protocol (IIIMP) under Unix is supported."
msgstr ""
-#: 06140400.xhp
+#: 03050000.xhp
msgctxt ""
-"06140400.xhp\n"
+"03050000.xhp\n"
"tit\n"
"help.text"
-msgid "Toolbars"
-msgstr "Shiriti i veglave"
+msgid "Tools Bar"
+msgstr "Shiriti i kontrollit"
-#: 06140400.xhp
+#: 03050000.xhp
msgctxt ""
-"06140400.xhp\n"
-"hd_id3154100\n"
+"03050000.xhp\n"
+"bm_id3145356\n"
+"help.text"
+msgid "<bookmark_value>tools bar</bookmark_value>"
+msgstr ""
+
+#: 03050000.xhp
+msgctxt ""
+"03050000.xhp\n"
+"hd_id3145356\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140400.xhp\" name=\"Toolbars\">Toolbars</link>"
+msgid "<link href=\"text/shared/01/03050000.xhp\" name=\"Tools Bar\">Tools Bar</link>"
msgstr ""
-#: 06140400.xhp
+#: 03050000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_id3150279\n"
+"03050000.xhp\n"
+"par_id3150603\n"
"2\n"
"help.text"
-msgid "Lets you customize $[officename] toolbars."
+msgid "<ahelp hid=\".uno:ToolBarVisible\">Shows or hides the <emph>Tools bar</emph>.</ahelp>"
msgstr ""
-#: 06140400.xhp
+#: 03060000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10601\n"
+"03060000.xhp\n"
+"tit\n"
"help.text"
-msgid "Toolbar"
-msgstr "Shiriti i kryesor i veglave"
+msgid "Status Bar"
+msgstr "Shiriti i gjendjes"
-#: 06140400.xhp
+#: 03060000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10604\n"
+"03060000.xhp\n"
+"bm_id3152823\n"
"help.text"
-msgid "Select the toolbar you want to edit."
-msgstr "A dëshironi të redaktoni rregullimin e kolonës?"
+msgid "<bookmark_value>status bar on/off</bookmark_value>"
+msgstr ""
-#: 06140400.xhp
+#: 03060000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10607\n"
+"03060000.xhp\n"
+"hd_id3152823\n"
+"1\n"
"help.text"
-msgid "New"
-msgstr "E re"
+msgid "<link href=\"text/shared/01/03060000.xhp\" name=\"Status Bar\">Status Bar</link>"
+msgstr ""
-#: 06140400.xhp
+#: 03060000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1060A\n"
+"03060000.xhp\n"
+"par_id3147000\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Name dialog, where you enter the name of a new toolbar and select the location of the new toolbar.</ahelp> Opens the Name dialog, where you enter the name of a new toolbar and select the location of the new toolbar."
+msgid "<ahelp hid=\".uno:StatusBarVisible\">Shows or hides the <emph>Status Bar</emph> at the bottom edge of the window.</ahelp>"
msgstr ""
-#: 06140400.xhp
+#: 03110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106011\n"
+"03110000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the name of a new toolbar.</ahelp>"
+msgid "Full Screen"
+msgstr "Ekrani i Plotë"
+
+#: 03110000.xhp
+msgctxt ""
+"03110000.xhp\n"
+"bm_id3160463\n"
+"help.text"
+msgid "<bookmark_value>full screen view</bookmark_value><bookmark_value>screen; full screen views</bookmark_value><bookmark_value>complete screen view</bookmark_value><bookmark_value>views;full screen</bookmark_value>"
msgstr ""
-#: 06140400.xhp
+#: 03110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106012\n"
+"03110000.xhp\n"
+"hd_id3160463\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the location of the new toolbar.</ahelp>"
+msgid "<link href=\"text/shared/01/03110000.xhp\" name=\"Full Screen\">Full Screen</link>"
msgstr ""
-#: 06140400.xhp
+#: 03110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1061B\n"
+"03110000.xhp\n"
+"par_id3148983\n"
+"2\n"
"help.text"
-msgid "Toolbar"
-msgstr "Shiriti i kryesor i veglave"
+msgid "<ahelp hid=\".uno:FullScreen\">Shows or hides the menus and toolbars in Writer or Calc. To exit the full screen mode, click the <emph>Full Screen On/Off</emph> button.</ahelp>"
+msgstr ""
-#: 06140400.xhp
+#: 03110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1061E\n"
+"03110000.xhp\n"
+"par_id3152594\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\".\">The Toolbar button opens a submenu</ahelp> with the following commands:"
+msgid "<ahelp hid=\"HID_FULLSCREENTOOLBOX\">In Writer and Calc, you can also use the shortcut keys <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+J to switch between the normal and full screen mode.</ahelp>"
msgstr ""
-#: 06140400.xhp
+#: 03110000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10621\n"
+"03110000.xhp\n"
+"par_id3154318\n"
+"28\n"
"help.text"
-msgid "Rename"
-msgstr "Riemëro"
+msgid "You can still use shortcut keys in <emph>Full Screen</emph> mode, even though the menus are unavailable. <switchinline select=\"sys\"><caseinline select=\"WIN\">To open the <emph>View</emph> menu, press Alt+V. </caseinline></switchinline>"
+msgstr ""
-#: 06140400.xhp
+#: 03150100.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10624\n"
+"03150100.xhp\n"
+"tit\n"
"help.text"
-msgid "Opens the <emph>Name</emph> dialog, where you enter a new name for the selected toolbar."
-msgstr "Ju lutem jepe një emër për shkallëzimin e ri:"
+msgid "Confirm Delete"
+msgstr "Konfirmo fshirjen"
-#: 06140400.xhp
+#: 03150100.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1062B\n"
+"03150100.xhp\n"
+"hd_id3150278\n"
+"1\n"
"help.text"
-msgid "New name"
-msgstr "Emri i ri"
+msgid "Confirm Delete"
+msgstr "Konfirmo fshirjen"
-#: 06140400.xhp
+#: 03150100.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1062E\n"
+"03150100.xhp\n"
+"par_id3148668\n"
+"2\n"
"help.text"
-msgid "Enter the new name for the selected toolbar."
-msgstr "Ju lutem jepe një emër për shkallëzimin e ri:"
+msgid "<ahelp hid=\"SFX2:MODALDIALOG:DLG_SFX_QUERYDELETE\" visibility=\"visible\">Confirms or cancels the deletion.</ahelp>"
+msgstr ""
-#: 06140400.xhp
+#: 03150100.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10631\n"
+"03150100.xhp\n"
+"hd_id3152821\n"
+"3\n"
"help.text"
msgid "Delete"
msgstr "Fshije"
-#: 06140400.xhp
+#: 03150100.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10634\n"
+"03150100.xhp\n"
+"par_id3150040\n"
+"4\n"
"help.text"
-msgid "Deletes the selected toolbar after you agree to the question. You can only delete custom toolbars, not the built-in toolbars."
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_YES\" visibility=\"visible\">Performs the deletion in the current file.</ahelp>"
msgstr ""
-#: 06140400.xhp
+#: 03150100.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10637\n"
+"03150100.xhp\n"
+"hd_id3149999\n"
+"5\n"
"help.text"
-msgid "Restore Default Settings"
-msgstr "Parametrat e shfaqjes së sllajdeve..."
+msgid "Delete All"
+msgstr "Fshij të gjitha"
-#: 06140400.xhp
+#: 03150100.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1063A\n"
+"03150100.xhp\n"
+"par_id3155616\n"
+"6\n"
"help.text"
-msgid "Restores the default settings."
-msgstr "Parametrat e shfaqjes së sllajdeve..."
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_ALL\" visibility=\"visible\">Performs the deletion in all selected files.</ahelp>"
+msgstr ""
-#: 06140400.xhp
+#: 03150100.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1064F\n"
+"03150100.xhp\n"
+"hd_id3157991\n"
+"7\n"
"help.text"
-msgid "Icons only"
-msgstr "Vetëm titull"
+msgid "Do Not Delete"
+msgstr "Mos fshij"
-#: 06140400.xhp
+#: 03150100.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10652\n"
+"03150100.xhp\n"
+"par_id3147043\n"
+"8\n"
"help.text"
-msgid "Shows icons only."
-msgstr "Krijo vetëm rresht"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_SFX_QUERYDELETE:BTN_NO\" visibility=\"visible\">Rejects the deletion for the current file.</ahelp>"
+msgstr ""
-#: 06140400.xhp
+#: 03150100.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10655\n"
+"03150100.xhp\n"
+"hd_id3149346\n"
+"9\n"
"help.text"
-msgid "Text only"
-msgstr "I ri (vetëm tekst)"
+msgid "Cancel"
+msgstr "Anulo"
-#: 06140400.xhp
+#: 03150100.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10658\n"
+"03150100.xhp\n"
+"par_id3148620\n"
+"10\n"
"help.text"
-msgid "Shows text only."
-msgstr "I ri (vetëm tekst)"
+msgid "Cancels the deletion in the current file and any other selected files."
+msgstr ""
-#: 06140400.xhp
+#: 03170000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1065B\n"
+"03170000.xhp\n"
+"tit\n"
"help.text"
-msgid "Icons & Text"
-msgstr "Vizato tekstin"
+msgid "Color Bar"
+msgstr "Shiriti i Ngjyrave"
-#: 06140400.xhp
+#: 03170000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1065E\n"
+"03170000.xhp\n"
+"bm_id3147477\n"
"help.text"
-msgid "Shows icons and text."
-msgstr "Teksti Perëndimor dhe pikëzimi Aziatik"
+msgid "<bookmark_value>color bar</bookmark_value><bookmark_value>paint box</bookmark_value>"
+msgstr ""
-#: 06140400.xhp
+#: 03170000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1069AAA\n"
+"03170000.xhp\n"
+"hd_id3147477\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves the selected item up in the list.</ahelp>"
+msgid "<link href=\"text/shared/01/03170000.xhp\" name=\"Color Bar\">Color Bar</link>"
msgstr ""
-#: 06140400.xhp
+#: 03170000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1068AAA\n"
+"03170000.xhp\n"
+"par_id3153255\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves the selected item down in the list.</ahelp>"
+msgid "<ahelp hid=\".uno:ColorControl\">Show or hides the <emph>Color Bar</emph>. To modify or change the color table that is displayed, choose <emph>Format - Area</emph>, and then click on the <emph>Colors</emph> tab.</ahelp>"
msgstr ""
-#: 06140400.xhp
+#: 03170000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10661\n"
+"03170000.xhp\n"
+"par_id3154186\n"
+"3\n"
"help.text"
-msgid "Commands"
-msgstr "Komandat"
+msgid "<ahelp hid=\"HID_COLOR_CTL_COLORS\">Click the color that you want to use. To change the fill color of an object in the current file, select the object and then click a color. To change the line color of the selected object, right-click a color. To change the color of text in a text object, double-click the text-object, select the text, and then click a color.</ahelp>"
+msgstr ""
-#: 06140400.xhp
+#: 03170000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10664\n"
+"03170000.xhp\n"
+"par_id3147399\n"
+"9\n"
"help.text"
-msgid "Displays a list of commands for the selected toolbar of the current application or document."
+msgid "You can also drag a color from the <emph>Color Bar</emph> and drop it on a draw object on your slide."
msgstr ""
-#: 06140400.xhp
+#: 03170000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10667\n"
+"03170000.xhp\n"
+"par_id3147009\n"
+"7\n"
"help.text"
-msgid "Add"
-msgstr "Shto"
+msgid "To detach the <emph>Color Bar</emph>, click on a gray area of the toolbar and then drag. To reattach the <emph>Color Bar</emph>, drag the title bar of the toolbar to the edge of the window."
+msgstr ""
-#: 06140400.xhp
+#: 03990000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1066A\n"
+"03990000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the Add Commands dialog. Select any command, then click <emph>Add</emph> or drag-and-drop the command into the <emph>Customize</emph> dialog.</ahelp>"
-msgstr ""
+msgid "Toolbars"
+msgstr "Shiriti i veglave"
-#: 06140400.xhp
+#: 03990000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10675\n"
+"03990000.xhp\n"
+"hd_id3160463\n"
+"1\n"
"help.text"
-msgid "Modify"
-msgstr "Modifiko"
+msgid "<link href=\"text/shared/01/03990000.xhp\" name=\"Toolbars\">Toolbars</link>"
+msgstr ""
-#: 06140400.xhp
+#: 03990000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10678\n"
+"03990000.xhp\n"
+"par_id3149748\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">The Modify button opens a submenu</ahelp> with the following commands:"
+msgid "<ahelp hid=\".\">Opens a submenu to show and hide toolbars.</ahelp> A toolbar contains icons and options that let you quickly access $[officename] commands."
msgstr ""
-#: 06140400.xhp
+#: 03990000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1067B\n"
+"03990000.xhp\n"
+"hd_id3153683\n"
+"3\n"
"help.text"
-msgid "Rename"
-msgstr "Riemëro"
+msgid "<link href=\"text/shared/guide/edit_symbolbar.xhp\" name=\"Customize\">Customize</link>"
+msgstr ""
-#: 06140400.xhp
+#: 03990000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1067E\n"
+"03990000.xhp\n"
+"par_id2789086\n"
"help.text"
-msgid "Opens the <emph>Rename</emph> dialog, where you enter a new name for the selected command."
-msgstr "Ju lutem jepe një emër për shkallëzimin e ri:"
+msgid "Opens a dialog where you can add, edit, and remove icons."
+msgstr ""
-#: 06140400.xhp
+#: 03990000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10685\n"
+"03990000.xhp\n"
+"hd_id371715\n"
"help.text"
-msgid "New name"
-msgstr "Emri i ri"
+msgid "Reset"
+msgstr "Rifillo"
-#: 06140400.xhp
+#: 03990000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10688\n"
+"03990000.xhp\n"
+"par_id1886654\n"
"help.text"
-msgid "Enter the new name for the selected command."
-msgstr "Ju lutem jepe një emër për shkallëzimin e ri:"
+msgid "<ahelp hid=\".\">Choose <emph>View - Toolbars - Reset</emph> to reset the toolbars to their default context sensitive behavior. Now some toolbars will be shown automatically, dependent on the context.</ahelp>"
+msgstr ""
-#: 06140400.xhp
+#: 04050000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1068B\n"
+"04050000.xhp\n"
+"tit\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "Comment"
+msgstr "Koment"
-#: 06140400.xhp
+#: 04050000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN1068E\n"
+"04050000.xhp\n"
+"bm_id3154100\n"
"help.text"
-msgid "Deletes the selected command after you agree to the question."
+msgid "<bookmark_value>comments;inserting/editing/deleting/printing</bookmark_value> <bookmark_value>inserting; comments</bookmark_value> <bookmark_value>editing; comments</bookmark_value> <bookmark_value>deleting;comments</bookmark_value> <bookmark_value>Navigator;comments</bookmark_value> <bookmark_value>printing;comments</bookmark_value> <bookmark_value>records; inserting comments </bookmark_value> <bookmark_value>remarks, see also comments</bookmark_value>"
msgstr ""
-#: 06140400.xhp
+#: 04050000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10691\n"
+"04050000.xhp\n"
+"hd_id3154100\n"
+"1\n"
"help.text"
-msgid "Restore Default Settings"
-msgstr "Parametrat e shfaqjes së sllajdeve..."
+msgid "Comment"
+msgstr "Koment"
-#: 06140400.xhp
+#: 04050000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN10694\n"
+"04050000.xhp\n"
+"par_id3151100\n"
+"2\n"
"help.text"
-msgid "Restores the default settings."
-msgstr "Parametrat e shfaqjes së sllajdeve..."
+msgid "<variable id=\"notizbearbeitentext\"><ahelp hid=\".uno:InsertAnnotation\">Inserts a comment.</ahelp></variable>"
+msgstr ""
-#: 06140400.xhp
+#: 04050000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106A9\n"
+"04050000.xhp\n"
+"hd_id9851680\n"
"help.text"
-msgid "Begin a Group"
-msgstr "Emri i grupit"
+msgid "Inserting comments"
+msgstr "Pamja e shënimeve"
-#: 06140400.xhp
+#: 04050000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106AC\n"
+"04050000.xhp\n"
+"par_id1830500\n"
"help.text"
-msgid "Inserts a separator line under the current toolbar entry."
+msgid "In Writer, the command <item type=\"menuitem\">Insert - Comment</item> or the <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+C key combination inserts a comment anchor at the current cursor position. A comment box is shown at the page margin, where you can enter the text of your comment. A line connects anchor and comment box. If a text range is selected, the comment is attached to the text range."
msgstr ""
-#: 06140400.xhp
+#: 04050000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106AF\n"
+"04050000.xhp\n"
+"par_id0915200910571516\n"
"help.text"
-msgid "Change Icon"
-msgstr "Fshije ikonën"
+msgid "In Calc, Draw, and Impress, the command <item type=\"menuitem\">Insert - Comment</item> inserts a comment."
+msgstr ""
-#: 06140400.xhp
+#: 04050000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106B2\n"
+"04050000.xhp\n"
+"par_id1831\n"
"help.text"
-msgid "Opens the Change Icon dialog, where you can assign a different icon to the current command."
+msgid "The author name and the date and time of creating this comment is shown at the bottom of the comment box."
msgstr ""
-#: 06140400.xhp
+#: 04050000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106B5\n"
+"04050000.xhp\n"
+"par_id6718649\n"
"help.text"
-msgid "Reset Icon"
-msgstr "Fshije ikonën"
+msgid "The comments by different authors get different colors. Choose <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - User Data</item> to enter your name so that it can show up as the comment author."
+msgstr ""
-#: 06140400.xhp
+#: 04050000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106B8\n"
+"04050000.xhp\n"
+"hd_id2929166\n"
"help.text"
-msgid "Resets the icon to the default icon."
-msgstr ""
+msgid "Editing comments"
+msgstr "Edito komentin..."
-#: 06140400.xhp
+#: 04050000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106BB\n"
+"04050000.xhp\n"
+"par_id5201879\n"
"help.text"
-msgid "Save In"
-msgstr "Ruaje macron nw"
+msgid "Every user with write permission to the document can edit and delete comments of all authors."
+msgstr ""
-#: 06140400.xhp
+#: 04050000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106D2\n"
+"04050000.xhp\n"
+"par_id2571794\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the location where to load the configuration and where to save it.</ahelp>"
+msgid "The comment box contains an icon with a down arrow. Click the icon to open a menu with some commands to delete comments."
msgstr ""
-#: 06140400.xhp
+#: 04050000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106D5\n"
+"04050000.xhp\n"
+"par_id0522200809383431\n"
"help.text"
-msgid "For every entry in the list box, an own configuration is maintained. Select one of the open documents or select the application to load and edit the associated configuration. Edit the configuration and save it back to the location from where you loaded it. Editing the configuration in one location does not change the configuration in any other location."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Delete the current comment.</ahelp>"
msgstr ""
-#: 06140400.xhp
+#: 04050000.xhp
msgctxt ""
-"06140400.xhp\n"
-"par_idN106D8\n"
+"04050000.xhp\n"
+"par_id0522200809383485\n"
"help.text"
-msgid "It is not possible to load a configuration from one location and save it to another location."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Delete all comments by this author in the current document.</ahelp>"
msgstr ""
-#: digitalsignatures.xhp
+#: 04050000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"tit\n"
+"04050000.xhp\n"
+"par_id0522200809383428\n"
"help.text"
-msgid "Digital Signatures"
-msgstr "Nënshkrim digjital..."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Delete all comments in the current document.</ahelp>"
+msgstr ""
-#: digitalsignatures.xhp
+#: 04050000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10544\n"
+"04050000.xhp\n"
+"par_id1857051\n"
"help.text"
-msgid "<link href=\"text/shared/01/digitalsignatures.xhp\">Digital Signatures</link>"
+msgid "<ahelp hid=\".\">Choose a command to delete the current comment, or all comments from the same author as the current comment, or all comments in the document.</ahelp>"
msgstr ""
-#: digitalsignatures.xhp
+#: 04050000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10548\n"
+"04050000.xhp\n"
+"par_id0305200911090684\n"
"help.text"
-msgid "<ahelp hid=\".\">Adds and removes digital signatures to and from your document. You can also use the dialog to view certificates.</ahelp>"
+msgid "If the comment in a text document was written by another author, there is a Reply command in the context menu. <ahelp hid=\".\">This command inserts a new comment adjacent to the comment to which you want to reply.</ahelp> The comment anchor is the same for both comments. Type your reply text in the new comment. Save and send your document to other authors, then those authors can add replies, too."
msgstr ""
-#: digitalsignatures.xhp
+#: 04050000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10629\n"
+"04050000.xhp\n"
+"par_id0804200803435883\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">You must save a file before you can apply a digital signature to the file.</ahelp>"
+msgid "<ahelp hid=\".\">Use <item type=\"menuitem\">View - Comments</item> to show or hide all comments (not available in Calc).</ahelp>"
msgstr ""
-#: digitalsignatures.xhp
+#: 04050000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10644\n"
+"04050000.xhp\n"
+"par_id0302200901430918\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">You must save a file in OpenDocument format before you can apply a digital signature to the file.</ahelp>"
+msgid "In the Find & Replace dialog of text documents, you can select to include the comments texts in your searches."
msgstr ""
-#: digitalsignatures.xhp
+#: 04050000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN1055F\n"
+"04050000.xhp\n"
+"hd_id3445539\n"
"help.text"
-msgid "List"
-msgstr "Lista"
+msgid "Navigating from comment to comment in text documents"
+msgstr "Nga kreu në fund"
-#: digitalsignatures.xhp
+#: 04050000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10563\n"
+"04050000.xhp\n"
+"par_id4271370\n"
"help.text"
-msgid "<ahelp hid=\".\">Lists the digital signatures for the current document.</ahelp>"
+msgid "When the cursor is inside a comment, you can press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Page Down to jump to the next comment, or press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command+Option</caseinline><defaultinline>Ctrl+Alt</defaultinline></switchinline>+Page Up to jump to the previous comment."
msgstr ""
-#: digitalsignatures.xhp
+#: 04050000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10566\n"
+"04050000.xhp\n"
+"par_id2116153\n"
"help.text"
-msgid "The Signed icon<image id=\"img_id4557023\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.1665in\" height=\"0.1146in\"><alt id=\"alt_id4557023\">Icon</alt></image> indicates a valid digital signature, while the Exclamation mark icon<image id=\"img_id249336\" src=\"xmlsecurity/res/caution_11x16.png\" width=\"0.1665in\" height=\"0.1146in\"><alt id=\"alt_id249336\">Icon</alt></image> indicates an invalid digital signature."
+msgid "When the cursor is inside the normal text, press the above mentioned keys to jump to the next or previous comment anchor. You can also use the small Navigation window below the vertical scrollbar to jump from one comment anchor to the next comment anchor."
msgstr ""
-#: digitalsignatures.xhp
+#: 04050000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_id0821200910573716\n"
+"04050000.xhp\n"
+"par_id5381328\n"
"help.text"
-msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
+msgid "You can also open the Navigator to see a list of all comments. Right-click a comment name in the Navigator to edit or delete the comment."
msgstr ""
-#: digitalsignatures.xhp
+#: 04050000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN1056C\n"
+"04050000.xhp\n"
+"hd_id5664235\n"
"help.text"
-msgid "View Certificate"
+msgid "Printing comments"
msgstr "Pamja e shënimeve"
-#: digitalsignatures.xhp
+#: 04050000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10570\n"
+"04050000.xhp\n"
+"par_id2254402\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/optionen/viewcertificate.xhp\">View Certificate</link> dialog.</ahelp>"
+msgid "To change the printing option for comments for all your text documents, choose <item type=\"menuitem\">Tools - Options - %PRODUCTNAME Writer - Print</item>."
msgstr ""
-#: digitalsignatures.xhp
-#, fuzzy
+#: 04050000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10581\n"
+"04050000.xhp\n"
+"hd_id0915200910571612\n"
"help.text"
-msgid "Sign Document"
-msgstr "Duke i krijuar dokumentet..."
+msgid "Comments in spreadsheets"
+msgstr ""
-#: digitalsignatures.xhp
+#: 04050000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10585\n"
+"04050000.xhp\n"
+"par_id3166460\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/selectcertificate.xhp\">Select Certificate</link> dialog.</ahelp>"
+msgid "When you attach a comment to a cell, a callout appears where you can enter your text. A small square in the upper right corner of a cell marks the position of a comment. To display the comment permanently, right-click the cell, and choose <emph>Show Comment</emph>."
msgstr ""
-#: digitalsignatures.xhp
+#: 04050000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN10596\n"
+"04050000.xhp\n"
+"par_id8336741\n"
"help.text"
-msgid "Remove"
-msgstr "Largo"
+msgid "To change the object properties of a comment, for example the background color, choose <emph>Show Comment</emph> as above, then right-click the comment (do not double-click the text)."
+msgstr ""
-#: digitalsignatures.xhp
+#: 04050000.xhp
msgctxt ""
-"digitalsignatures.xhp\n"
-"par_idN1059A\n"
+"04050000.xhp\n"
+"par_id3155390\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\">Removes the selected source from the list.</ahelp>"
+msgid "To edit a shown comment, double-click the comment text. To edit a comment that is not shown permanently, right-click in the cell that contains the comment, and then choose <emph>Insert - Comment</emph>. To specify the formatting of the comment text, right-click the comment text in edit mode."
msgstr ""
-#: 05110300.xhp
+#: 04050000.xhp
msgctxt ""
-"05110300.xhp\n"
-"tit\n"
+"04050000.xhp\n"
+"par_idN107A1\n"
"help.text"
-msgid "Underline"
-msgstr "Nënvizim"
+msgid "To change the position or size of a comment, drag a border or corner of the comment."
+msgstr ""
-#: 05110300.xhp
+#: 04050000.xhp
msgctxt ""
-"05110300.xhp\n"
-"bm_id3150756\n"
+"04050000.xhp\n"
+"par_id9499496\n"
"help.text"
-msgid "<bookmark_value>characters;underlining</bookmark_value><bookmark_value>underlining;characters</bookmark_value>"
+msgid "To delete a comment, right-click the cell, then choose <emph>Delete Comment</emph>."
msgstr ""
-#: 05110300.xhp
+#: 04050000.xhp
msgctxt ""
-"05110300.xhp\n"
-"hd_id3150756\n"
-"1\n"
+"04050000.xhp\n"
+"par_id2036805\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110300.xhp\" name=\"Underline\">Underline</link>"
+msgid "You can also right-click a comment name in the Navigator window to choose some editing commands."
msgstr ""
-#: 05110300.xhp
+#: 04050000.xhp
msgctxt ""
-"05110300.xhp\n"
-"par_id3149031\n"
-"2\n"
+"04050000.xhp\n"
+"par_id3153716\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".uno:Underline\" visibility=\"visible\">Underlines or removes underlining from the selected text.</ahelp>"
+msgid "To set the printing options for comments in your spreadsheet, choose <emph>Format - Page</emph>, and then click the <emph>Sheet</emph> tab."
msgstr ""
-#: 05110300.xhp
+#: 04050000.xhp
msgctxt ""
-"05110300.xhp\n"
-"par_id3152821\n"
-"3\n"
+"04050000.xhp\n"
+"par_id2419507\n"
"help.text"
-msgid "If the cursor is not in a word, the new text that you enter is underlined."
+msgid "In Impress, you can choose to use the Notes view to write a page of notes for every slide. Additionally, you can insert comments to your slides."
msgstr ""
-#: 05110300.xhp
+#: 04060000.xhp
msgctxt ""
-"05110300.xhp\n"
-"par_id3154894\n"
-"4\n"
+"04060000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".uno:UnderlineDouble\" visibility=\"hidden\">Underlines the selected text with two lines.</ahelp>"
-msgstr ""
+msgid "Scan"
+msgstr "Skeno"
-#: 05220000.xhp
+#: 04060000.xhp
msgctxt ""
-"05220000.xhp\n"
-"tit\n"
+"04060000.xhp\n"
+"hd_id3146902\n"
+"1\n"
"help.text"
-msgid "Text"
-msgstr "Tekst"
+msgid "<link href=\"text/shared/01/04060000.xhp\" name=\"Scan\">Scan</link>"
+msgstr ""
-#: 05220000.xhp
+#: 04060000.xhp
msgctxt ""
-"05220000.xhp\n"
-"bm_id3146856\n"
+"04060000.xhp\n"
+"par_id3154926\n"
+"2\n"
"help.text"
-msgid "<bookmark_value>text; text/draw objects</bookmark_value> <bookmark_value>draw objects; text in</bookmark_value> <bookmark_value>frames; text fitting to frames</bookmark_value>"
+msgid "<variable id=\"scan\"><ahelp hid=\".uno:Scan\">Inserts a scanned image into your document.</ahelp></variable>"
msgstr ""
-#: 05220000.xhp
+#: 04060000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3146856\n"
-"1\n"
+"04060000.xhp\n"
+"par_id3153124\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/shared/01/05220000.xhp\" name=\"Text\">Text</link>"
+msgid "To insert a scanned image, the driver for your scanner must be installed. <switchinline select=\"sys\"><caseinline select=\"UNIX\">Under UNIX systems, install the SANE package found at http://www.mostang.com/sane/. The SANE package must use the same libc as $[officename].</caseinline></switchinline>"
msgstr ""
-#: 05220000.xhp
+#: 04060000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3150279\n"
-"2\n"
+"04060000.xhp\n"
+"hd_id3154673\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_PAGE_TEXTATTR\">Sets the layout and anchoring properties for text in the selected drawing or text object.</ahelp>"
+msgid "<link href=\"text/shared/01/04060100.xhp\" name=\"Select Source\">Select Source</link>"
msgstr ""
-#: 05220000.xhp
+#: 04060000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3154794\n"
+"04060000.xhp\n"
+"hd_id3152801\n"
"4\n"
"help.text"
-msgid "The text is positioned relative to the edges of the drawing or text object."
+msgid "<link href=\"text/shared/01/04060200.xhp\" name=\"Request\">Request</link>"
msgstr ""
-#: 05220000.xhp
+#: 04060100.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3149031\n"
-"5\n"
+"04060100.xhp\n"
+"tit\n"
"help.text"
-msgid "Text"
-msgstr "Tekst"
+msgid "Select Source"
+msgstr "Selekto Burimin"
-#: 05220000.xhp
+#: 04060100.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3150445\n"
-"7\n"
+"04060100.xhp\n"
+"hd_id3150758\n"
+"1\n"
"help.text"
-msgid "Fit width to text"
-msgstr "Përshtate tekstin sipas kornizës"
+msgid "Select Source"
+msgstr "Selekto Burimin"
-#: 05220000.xhp
+#: 04060100.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3145629\n"
-"8\n"
+"04060100.xhp\n"
+"par_id3152823\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_AUTOGROW_WIDTH\">Expands the width of the object to the width of the text, if the object is smaller than the text.</ahelp>"
+msgid "<variable id=\"quellaus\"><ahelp hid=\".uno:TwainSelect\" visibility=\"visible\">Selects the scanner that you want to use.</ahelp></variable>"
msgstr ""
-#: 05220000.xhp
+#: 04060200.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3149511\n"
-"9\n"
+"04060200.xhp\n"
+"tit\n"
"help.text"
-msgid "Fit height to text"
-msgstr "Përshtate tekstin sipas kornizës"
+msgid "Request"
+msgstr "Kërkesë..."
-#: 05220000.xhp
+#: 04060200.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3149640\n"
-"10\n"
+"04060200.xhp\n"
+"hd_id3153514\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_AUTOGROW_HEIGHT\">Expands the height of the object to the height of the text, if the object is smaller than the text.</ahelp>"
+msgid "Request"
+msgstr "Kërkesë..."
+
+#: 04060200.xhp
+msgctxt ""
+"04060200.xhp\n"
+"par_id3150278\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"anford\"><ahelp hid=\".uno:TwainTransfer\" visibility=\"visible\">Scans an image, and then inserts the result into the document. The scanning dialog is provided by the manufacturer of the scanner.</ahelp></variable> For an explanation of the dialog please refer to the documentation on your scanner."
msgstr ""
-#: 05220000.xhp
+#: 04100000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3152867\n"
-"11\n"
+"04100000.xhp\n"
+"tit\n"
"help.text"
-msgid "Fit to frame"
-msgstr "Përshtate me Kornizë"
+msgid "Special Character"
+msgstr "karakter special"
-#: 05220000.xhp
+#: 04100000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3147834\n"
-"12\n"
+"04100000.xhp\n"
+"hd_id3152937\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_FIT_TO_SIZE\">Resizes the text to fit the entire area of the drawing or text object.</ahelp>"
-msgstr ""
+msgid "Special Character"
+msgstr "karakter special"
-#: 05220000.xhp
+#: 04100000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3155892\n"
-"29\n"
+"04100000.xhp\n"
+"par_id3150838\n"
+"2\n"
"help.text"
-msgid "Adjust to contour"
-msgstr "Shndërro në konturë"
+msgid "<variable id=\"sonder\"><ahelp hid=\".uno:Bullet\">Inserts special characters from the installed fonts.</ahelp></variable>"
+msgstr ""
-#: 05220000.xhp
+#: 04100000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3153577\n"
-"30\n"
+"04100000.xhp\n"
+"par_id3152372\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_CONTOUR\">Adapts the text flow so that it matches the contours of the selected drawing object.</ahelp>"
+msgid "When you click a character in the <emph>Special Characters </emph>dialog, a preview and the corresponding numerical code for the character is displayed."
msgstr ""
-#: 05220000.xhp
+#: 04100000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_idN10705\n"
+"04100000.xhp\n"
+"hd_id3151315\n"
+"3\n"
"help.text"
-msgid "Word wrap text in shape"
-msgstr "Përshtat tekstin për formë"
+msgid "Font"
+msgstr "Fonti"
-#: 05220000.xhp
+#: 04100000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_idN10709\n"
+"04100000.xhp\n"
+"par_id3152924\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Wraps the text that you add after double-clicking a custom shape to fit inside the shape.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/specialcharacters/fontlb\">Select a font to display the special characters that are associated with it.</ahelp>"
msgstr ""
-#: 05220000.xhp
+#: 04100000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_idN10720\n"
+"04100000.xhp\n"
+"hd_id3155555\n"
+"19\n"
"help.text"
-msgid "Resize shape to fit text"
-msgstr "Rritje automatike e formës për ta nxënë tekstin"
+msgid "Subset"
+msgstr "Nënbashkësi"
-#: 05220000.xhp
+#: 04100000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_idN10724\n"
+"04100000.xhp\n"
+"par_id3145090\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\".\">Resizes a custom shape to fit the text that you enter after double-clicking the shape.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/specialcharacters/subsetlb\">Select a Unicode category for the current font.</ahelp> The special characters for the selected Unicode category are displayed in the character table."
msgstr ""
-#: 05220000.xhp
+#: 04100000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3154288\n"
-"13\n"
+"04100000.xhp\n"
+"hd_id3145071\n"
+"5\n"
"help.text"
-msgid "Spacing to borders"
-msgstr "Hapësira me përmbajtje"
+msgid "Character Table"
+msgstr "Ndryshimet e tabelës"
-#: 05220000.xhp
+#: 04100000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3151265\n"
-"14\n"
+"04100000.xhp\n"
+"par_id3154288\n"
+"6\n"
"help.text"
-msgid "Specify the amount of space to leave between the edges of the drawing or text object and the borders of the text."
+msgid "<ahelp hid=\"HID_CHARMAP_CTL_SHOWSET\">Click the special character(s) that you want to insert, and then click <emph>OK</emph>.</ahelp>"
msgstr ""
-#: 05220000.xhp
+#: 04100000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3150443\n"
-"15\n"
+"04100000.xhp\n"
+"hd_id3154317\n"
+"7\n"
"help.text"
-msgid "Left"
-msgstr "Majtas"
+msgid "Characters"
+msgstr "Karakteret"
-#: 05220000.xhp
+#: 04100000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3156113\n"
-"16\n"
+"04100000.xhp\n"
+"par_id3152551\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_LEFT\">Enter the amount of space to leave between the left edge of the drawing or text object and the left border of the text.</ahelp>"
+msgid "Displays the special characters that you have selected."
msgstr ""
-#: 05220000.xhp
+#: 04100000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3155419\n"
-"17\n"
+"04100000.xhp\n"
+"hd_id3155535\n"
+"12\n"
"help.text"
-msgid "Right"
-msgstr "Djathtas"
+msgid "Delete"
+msgstr "Fshije"
-#: 05220000.xhp
+#: 04100000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3155388\n"
-"18\n"
+"04100000.xhp\n"
+"par_id3147653\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_RIGHT\">Enter the amount of space to leave between the right edge of the drawing or text object and the right border of the text.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/specialcharacters/delete\">Clears the current selection of special characters that you want to insert.</ahelp>"
msgstr ""
-#: 05220000.xhp
+#: 04140000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3148926\n"
-"19\n"
+"04140000.xhp\n"
+"tit\n"
"help.text"
-msgid "Top"
-msgstr "Lartë"
+msgid "Inserting Pictures"
+msgstr "Duke shtuar indeksin..."
-#: 05220000.xhp
+#: 04140000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3157808\n"
-"20\n"
+"04140000.xhp\n"
+"hd_id3154350\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_TOP\">Enter the amount of space to leave between the top edge of the drawing or text object and the upper border of the text.</ahelp>"
+msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"Inserting Pictures\">Inserting Pictures</link>"
msgstr ""
-#: 05220000.xhp
-msgctxt ""
-"05220000.xhp\n"
-"hd_id3149237\n"
-"21\n"
-"help.text"
-msgid "Bottom"
-msgstr "Poshtë"
-
-#: 05220000.xhp
+#: 04140000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3159342\n"
-"22\n"
+"04140000.xhp\n"
+"par_id3159411\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_BOTTOM\">Enter the amount of space to leave between the bottom edge of the drawing or text object and the lower border of the text.</ahelp>"
+msgid "<variable id=\"grafiktext\"><ahelp hid=\".uno:InsertGraphic\">Inserts a picture into the current document.</ahelp></variable>"
msgstr ""
-#: 05220000.xhp
+#: 04140000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3149192\n"
-"23\n"
+"04140000.xhp\n"
+"hd_id3149760\n"
+"17\n"
"help.text"
-msgid "Text anchor"
-msgstr "Spirancar<->Tekst"
+msgid "Style"
+msgstr "Stili"
-#: 05220000.xhp
+#: 04140000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3155179\n"
-"24\n"
+"04140000.xhp\n"
+"par_id3154398\n"
+"18\n"
"help.text"
-msgid "Set the anchor type and the anchor position."
-msgstr "Cakto pozitën dhe madhësinë për %O"
+msgid "<ahelp hid=\"HID_FILEOPEN_IMAGE_TEMPLATE\">Select the frame style for the graphic.</ahelp>"
+msgstr ""
-#: 05220000.xhp
+#: 04140000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3154381\n"
-"25\n"
+"04140000.xhp\n"
+"hd_id3150789\n"
+"6\n"
"help.text"
-msgid "Graphic field"
-msgstr "Emri i fushës"
+msgid "Link"
+msgstr "Link"
-#: 05220000.xhp
+#: 04140000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3155504\n"
-"26\n"
+"04140000.xhp\n"
+"par_id3153750\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_TEXTATTR_CTL_POSITION\">Click where you want to place the anchor for the text.</ahelp>"
+msgid "<ahelp hid=\"HID_FILEDLG_LINK_CB\">Inserts the selected graphic file as a link.</ahelp>"
msgstr ""
-#: 05220000.xhp
+#: 04140000.xhp
msgctxt ""
-"05220000.xhp\n"
-"hd_id3155323\n"
-"27\n"
+"04140000.xhp\n"
+"hd_id3155805\n"
+"8\n"
"help.text"
-msgid "Full width"
-msgstr "Gjerësia e plotë"
+msgid "Preview"
+msgstr "Shikim paraprak"
-#: 05220000.xhp
+#: 04140000.xhp
msgctxt ""
-"05220000.xhp\n"
-"par_id3150244\n"
-"28\n"
+"04140000.xhp\n"
+"par_id3153311\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\".\">Anchors the text to the full width of the drawing object or text object.</ahelp>"
+msgid "<ahelp hid=\"HID_FILEDLG_PREVIEW_CB\">Displays a preview of the selected graphic file.</ahelp>"
msgstr ""
-#: 06010101.xhp
+#: 04150000.xhp
msgctxt ""
-"06010101.xhp\n"
+"04150000.xhp\n"
"tit\n"
"help.text"
-msgid "Writing aids"
-msgstr "Duke shkruar ndihmën"
+msgid "Drawing Object"
+msgstr "Vizatim"
-#: 06010101.xhp
+#: 04150000.xhp
msgctxt ""
-"06010101.xhp\n"
-"hd_id3145138\n"
+"04150000.xhp\n"
+"hd_id3146873\n"
"1\n"
"help.text"
-msgid "Writing aids"
-msgstr "Duke shkruar ndihmën"
+msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Drawing Object\">Drawing Object</link>"
+msgstr ""
-#: 06010101.xhp
+#: 04150000.xhp
msgctxt ""
-"06010101.xhp\n"
-"par_id3148882\n"
+"04150000.xhp\n"
+"par_id3159079\n"
"2\n"
"help.text"
-msgid "Select the user-defined dictionaries and set the rules for the spellchecking."
+msgid "<ahelp hid=\".\">Inserts an object into your document. For movies and sounds, use <emph>Insert - Movie and Sound</emph> instead.</ahelp>"
msgstr ""
-#: 05290400.xhp
+#: 04150000.xhp
msgctxt ""
-"05290400.xhp\n"
-"tit\n"
+"04150000.xhp\n"
+"hd_id3154894\n"
+"8\n"
"help.text"
-msgid "Exit Group"
-msgstr "Grupi Dalës"
+msgid "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE Object</link>"
+msgstr ""
-#: 05290400.xhp
+#: 04150000.xhp
msgctxt ""
-"05290400.xhp\n"
-"hd_id3157552\n"
-"1\n"
+"04150000.xhp\n"
+"hd_id3159201\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
+msgid "<link href=\"text/shared/01/04150400.xhp\" name=\"Sound\">Sound</link>"
msgstr ""
-#: 05290400.xhp
+#: 04150000.xhp
msgctxt ""
-"05290400.xhp\n"
-"par_id3147294\n"
-"2\n"
+"04150000.xhp\n"
+"hd_id3157896\n"
+"7\n"
"help.text"
-msgid "<variable id=\"verlassentext\"><ahelp hid=\".uno:LeaveGroup\" visibility=\"visible\">Exits the group, so that you can no longer edit the individual objects in the group.</ahelp></variable> If you are in a nested group, only the nested group is closed."
+msgid "<link href=\"text/shared/01/04150500.xhp\" name=\"Video\">Video</link>"
msgstr ""
-#: 05290400.xhp
+#: 04150000.xhp
msgctxt ""
-"05290400.xhp\n"
-"par_id3153124\n"
+"04150000.xhp\n"
+"hd_id3153577\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290000.xhp\" name=\"Groups\">Groups</link>"
+msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula</link>"
msgstr ""
-#: 05290400.xhp
+#: 04150000.xhp
msgctxt ""
-"05290400.xhp\n"
-"par_id3148520\n"
+"04150000.xhp\n"
+"hd_id3152552\n"
+"10\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Edit Group\">Edit Group</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link></caseinline></switchinline>"
msgstr ""
-#: 05290100.xhp
+#: 04150000.xhp
msgctxt ""
-"05290100.xhp\n"
+"04150000.xhp\n"
+"par_id0302200903593543\n"
+"help.text"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Inserts a chart.</caseinline></switchinline>"
+msgstr ""
+
+#: 04150100.xhp
+msgctxt ""
+"04150100.xhp\n"
"tit\n"
"help.text"
-msgid "Group"
-msgstr "Grupi"
+msgid "Insert OLE Object"
+msgstr "Shto OLE Objekt"
-#: 05290100.xhp
+#: 04150100.xhp
msgctxt ""
-"05290100.xhp\n"
-"hd_id3152823\n"
-"1\n"
+"04150100.xhp\n"
+"bm_id3153116\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
+msgid "<bookmark_value>OLE objects; inserting</bookmark_value><bookmark_value>inserting; OLE objects</bookmark_value><bookmark_value>objects; inserting OLE objects</bookmark_value>"
msgstr ""
-#: 05290100.xhp
+#: 04150100.xhp
msgctxt ""
-"05290100.xhp\n"
-"par_id3154689\n"
+"04150100.xhp\n"
+"hd_id3153116\n"
+"1\n"
+"help.text"
+msgid "Insert OLE Object"
+msgstr "Shto OLE Objekt"
+
+#: 04150100.xhp
+msgctxt ""
+"04150100.xhp\n"
+"par_id3149748\n"
"2\n"
"help.text"
-msgid "<variable id=\"gruppierentext\"><ahelp hid=\".uno:FormatGroup\" visibility=\"visible\">Groups the selected objects, so that they can be moved as a single object.</ahelp></variable>"
+msgid "<variable id=\"ole\"><ahelp hid=\".uno:InsertObject\">Inserts an <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> object into the current document. The OLE object is inserted as a link or an embedded object.</ahelp></variable>"
msgstr ""
-#: 05290100.xhp
+#: 04150100.xhp
msgctxt ""
-"05290100.xhp\n"
-"par_id3150008\n"
-"3\n"
+"04150100.xhp\n"
+"par_id3149205\n"
+"19\n"
"help.text"
-msgid "The properties of individual objects are maintained even after you group the objects. You can nest groups, that is, you can have a group within a group."
+msgid "To speed up the display of the document, OLE objects are kept in the program cache. If you want to change the cache settings, choose <link href=\"text/shared/optionen/01011000.xhp\" name=\"Tools - Options - $[officename] - Memory\"><emph>Tools - Options - $[officename] - Memory</emph></link>."
msgstr ""
-#: 06010600.xhp
+#: 04150100.xhp
msgctxt ""
-"06010600.xhp\n"
-"tit\n"
+"04150100.xhp\n"
+"par_id3145314\n"
+"18\n"
"help.text"
-msgid "Chinese Conversion"
+msgid "You cannot use the clipboard or drag and drop to move OLE objects to other files."
msgstr ""
-#: 06010600.xhp
+#: 04150100.xhp
msgctxt ""
-"06010600.xhp\n"
-"bm_id49745\n"
+"04150100.xhp\n"
+"par_id3150693\n"
+"17\n"
"help.text"
-msgid "<bookmark_value>Chinese writing systems</bookmark_value><bookmark_value>simplified Chinese;conversion to traditional Chinese</bookmark_value><bookmark_value>traditional Chinese;conversion to simplified Chinese</bookmark_value>"
+msgid "Empty and inactive OLE objects are transparent."
msgstr ""
-#: 06010600.xhp
+#: 04150100.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10547\n"
+"04150100.xhp\n"
+"hd_id3149178\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/06010600.xhp\">Chinese Conversion</link>"
-msgstr ""
+msgid "Create new"
+msgstr "~Krijo tw re"
-#: 06010600.xhp
+#: 04150100.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10557\n"
+"04150100.xhp\n"
+"par_id3145345\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Converts the selected Chinese text from one Chinese writing system to the other. If no text is selected, the entire document is converted.</ahelp> You can only use this command if you enable Asian language support in <emph>Tools - Options - Language Settings - Languages</emph>."
+msgid "<ahelp hid=\"cui/ui/insertoleobject/createnew\">Creates a new OLE object based on the object type that you select.</ahelp>"
msgstr ""
-#: 06010600.xhp
+#: 04150100.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10572\n"
+"04150100.xhp\n"
+"hd_id3155535\n"
+"5\n"
"help.text"
-msgid "Conversion direction"
-msgstr ""
+msgid "Object type"
+msgstr "Lloji i objektit"
-#: 06010600.xhp
+#: 04150100.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10576\n"
+"04150100.xhp\n"
+"par_id3109847\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the conversion direction.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/insertoleobject/types\">Select the type of document that you want to create.</ahelp>"
msgstr ""
-#: 06010600.xhp
+#: 04150100.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10579\n"
+"04150100.xhp\n"
+"hd_id3163803\n"
+"7\n"
"help.text"
-msgid "Traditional Chinese to Simplified Chinese"
-msgstr ""
+msgid "Create from file"
+msgstr "Krijo nga skedari"
-#: 06010600.xhp
+#: 04150100.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN1057D\n"
+"04150100.xhp\n"
+"par_id3149191\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\">Converts traditional Chinese text characters to simplified Chinese text characters. Click <emph>OK</emph> to convert the selected text. If no text is selected, the whole document is converted.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/insertoleobject/createfromfile\">Creates an OLE object from an existing file.</ahelp>"
msgstr ""
-#: 06010600.xhp
+#: 04150100.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10580\n"
+"04150100.xhp\n"
+"hd_id3150084\n"
+"15\n"
"help.text"
-msgid "Simplified Chinese to Traditional Chinese"
-msgstr ""
+msgid "File"
+msgstr "Fajlli"
-#: 06010600.xhp
+#: 04150100.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10584\n"
+"04150100.xhp\n"
+"par_id3146773\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\".\">Converts simplified Chinese text characters to traditional Chinese text characters. Click <emph>OK</emph> to convert the selected text. If no text is selected, the whole document is converted.</ahelp>"
+msgid "Choose the file that you want to insert as an OLE object."
msgstr ""
-#: 06010600.xhp
+#: 04150100.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN1058E\n"
+"04150100.xhp\n"
+"hd_id3144438\n"
+"9\n"
"help.text"
-msgid "Common terms"
-msgstr "Termat e përbashkët"
+msgid "File"
+msgstr "Fajlli"
-#: 06010600.xhp
+#: 04150100.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10592\n"
+"04150100.xhp\n"
+"par_id3155434\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\">Common terms are words that have the same meaning in traditional and simplified Chinese but are written with different characters.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/insertoleobject/urled\">Enter the name of the file that you want to link or embed, or click <emph>Search</emph>, to locate the file.</ahelp>"
msgstr ""
-#: 06010600.xhp
+#: 04150100.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10595\n"
+"04150100.xhp\n"
+"hd_id3153127\n"
+"11\n"
"help.text"
-msgid "Convert Common Terms"
-msgstr ""
+msgid "Search..."
+msgstr "Kërko..."
-#: 06010600.xhp
+#: 04150100.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN10599\n"
+"04150100.xhp\n"
+"par_id3156326\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".\">Converts words with two or more characters that are in the list of common terms. After the list is scanned, the remaining text is converted character by character.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/insertoleobject/urlbtn\">Locate the file that you want to insert, and then click <emph>Open</emph>.</ahelp>"
msgstr ""
-#: 06010600.xhp
+#: 04150100.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN1059C\n"
+"04150100.xhp\n"
+"hd_id4174321\n"
"help.text"
-msgid "Edit terms"
-msgstr "Edito termat"
+msgid "Link to file"
+msgstr "~Linku me skedarin"
-#: 06010600.xhp
+#: 04150100.xhp
msgctxt ""
-"06010600.xhp\n"
-"par_idN105A0\n"
+"04150100.xhp\n"
+"par_id6636555\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06010601.xhp\">Edit Dictionary</link> dialog where you can edit the list of conversion terms.</ahelp>"
+msgid "<ahelp hid=\".\">Enable this checkbox to insert the OLE object as a link to the original file. If this checkbox is not enabled, the OLE object will be embedded into your document.</ahelp>"
msgstr ""
-#: 02210101.xhp
+#: 04150200.xhp
msgctxt ""
-"02210101.xhp\n"
+"04150200.xhp\n"
"tit\n"
"help.text"
-msgid "Floating Frame Properties"
-msgstr "Vetitë e kornizës lëvizëse"
+msgid "Insert Plug-In"
+msgstr "Shto Plug-in"
-#: 02210101.xhp
+#: 04150200.xhp
msgctxt ""
-"02210101.xhp\n"
-"hd_id3150347\n"
-"1\n"
+"04150200.xhp\n"
+"bm_id3149962\n"
"help.text"
-msgid "<link href=\"text/shared/01/02210101.xhp\" name=\"Floating Frame Properties\">Floating Frame Properties</link>"
+msgid "<bookmark_value>plug-ins; inserting</bookmark_value><bookmark_value>inserting; plug-ins</bookmark_value>"
msgstr ""
-#: 02210101.xhp
+#: 04150200.xhp
msgctxt ""
-"02210101.xhp\n"
-"par_id3149031\n"
+"04150200.xhp\n"
+"hd_id3149962\n"
+"1\n"
+"help.text"
+msgid "Insert Plug-In"
+msgstr "Shto Plug-in"
+
+#: 04150200.xhp
+msgctxt ""
+"04150200.xhp\n"
+"par_id3155599\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:TABPAGE:TP_FRAMEPROPERTIES\">Changes the properties of the selected floating frame. Floating frames work best when they contain an html document, and when they are inserted in another html document.</ahelp>"
+msgid "<variable id=\"plugin\"><ahelp hid=\".uno:InsertPlugin\">Inserts a plug-in into the current document.</ahelp> </variable> A <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-in\">plug-in</link> is a software component that extends the capabilities of a web browser."
msgstr ""
-#: 02210101.xhp
+#: 04150200.xhp
msgctxt ""
-"02210101.xhp\n"
-"hd_id3155364\n"
+"04150200.xhp\n"
+"hd_id3148585\n"
"3\n"
"help.text"
-msgid "Name"
-msgstr "Emri"
+msgid "File/URL"
+msgstr "Skedari / URL\""
-#: 02210101.xhp
+#: 04150200.xhp
msgctxt ""
-"02210101.xhp\n"
-"par_id3149511\n"
+"04150200.xhp\n"
+"par_id3147399\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:TP_FRAMEPROPERTIES:ED_FRAMENAME\">Enter a name for the floating frame. The name cannot contain spaces, special characters, or begin with an underscore ( _ ).</ahelp>"
+msgid "<ahelp hid=\"cui/ui/insertplugin/urled\">Enter the URL for the plug-in or click <emph>Browse</emph>, and then locate the plug-in that you want to insert.</ahelp>"
msgstr ""
-#: 02210101.xhp
+#: 04150200.xhp
msgctxt ""
-"02210101.xhp\n"
-"hd_id3150789\n"
+"04150200.xhp\n"
+"hd_id3155552\n"
"5\n"
"help.text"
-msgid "Contents"
-msgstr "Përmbajtjet"
+msgid "Browse"
+msgstr "Shfleto..."
-#: 02210101.xhp
+#: 04150200.xhp
msgctxt ""
-"02210101.xhp\n"
-"par_id3156414\n"
+"04150200.xhp\n"
+"par_id3143267\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:TP_FRAMEPROPERTIES:ED_URL\">Enter the path and the name of the file that you want to display in the floating frame. You can also click the <emph>...</emph> button and locate the file that you want to display.</ahelp> For example, you can enter:"
+msgid "<ahelp hid=\"cui/ui/insertplugin/urlbtn\">Locate the plug-in that you want to insert, and then click <emph>Open</emph>.</ahelp>"
msgstr ""
-#: 02210101.xhp
+#: 04150200.xhp
msgctxt ""
-"02210101.xhp\n"
-"par_id3147399\n"
+"04150200.xhp\n"
+"hd_id3149750\n"
"7\n"
"help.text"
-msgid "http://www.example.com"
-msgstr ""
+msgid "Options"
+msgstr "Opcionet"
-#: 02210101.xhp
+#: 04150200.xhp
msgctxt ""
-"02210101.xhp\n"
-"par_id3153683\n"
+"04150200.xhp\n"
+"par_id3150774\n"
"8\n"
"help.text"
-msgid "file:///c|/Readme.txt"
-msgstr "Paraqit readme fajllin"
+msgid "<ahelp hid=\"cui/ui/insertplugin/pluginoptions\">Enter the parameters for the plug-in using the format <emph>parameter1=\"some text\"</emph>.</ahelp>"
+msgstr ""
-#: 02210101.xhp
+#: 04150400.xhp
msgctxt ""
-"02210101.xhp\n"
-"hd_id3147088\n"
-"10\n"
+"04150400.xhp\n"
+"tit\n"
"help.text"
-msgid "..."
-msgstr "..."
+msgid "Insert sound"
+msgstr "Shto Plug-in të Zërit"
-#: 02210101.xhp
+#: 04150400.xhp
msgctxt ""
-"02210101.xhp\n"
-"par_id3155355\n"
-"11\n"
+"04150400.xhp\n"
+"hd_id3152414\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_FRAMEPROPERTIES:BT_FILEOPEN\">Locate the file that you want to display in the selected floating frame, and then click <emph>Open</emph>.</ahelp>"
-msgstr ""
+msgid "Insert sound"
+msgstr "Shto Plug-in të Zërit"
-#: 02210101.xhp
+#: 04150400.xhp
msgctxt ""
-"02210101.xhp\n"
-"hd_id3146957\n"
-"12\n"
+"04150400.xhp\n"
+"par_id3154840\n"
+"2\n"
"help.text"
-msgid "Scrollbar"
-msgstr "Madhësi e njëjtë e fontit"
+msgid "<variable id=\"klang\"><ahelp hid=\".uno:InsertSound\">Inserts a sound file into the current document.</ahelp></variable>"
+msgstr ""
-#: 02210101.xhp
+#: 04150500.xhp
msgctxt ""
-"02210101.xhp\n"
-"par_id3156346\n"
-"13\n"
+"04150500.xhp\n"
+"tit\n"
"help.text"
-msgid "Add or remove a scrollbar from the selected floating frame."
-msgstr ""
+msgid "Insert video"
+msgstr "Shto Plug-in të Videos"
-#: 02210101.xhp
+#: 04150500.xhp
msgctxt ""
-"02210101.xhp\n"
-"hd_id3163802\n"
-"14\n"
+"04150500.xhp\n"
+"hd_id3150999\n"
+"1\n"
"help.text"
-msgid "On"
-msgstr "Kyçur"
+msgid "Insert video"
+msgstr "Shto Plug-in të Videos"
-#: 02210101.xhp
+#: 04150500.xhp
msgctxt ""
-"02210101.xhp\n"
-"par_id3150355\n"
-"15\n"
+"04150500.xhp\n"
+"par_id3152895\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:RADIOBUTTON:TP_FRAMEPROPERTIES:RB_SCROLLINGON\">Displays the scrollbar for the floating frame.</ahelp>"
+msgid "<variable id=\"video\"><ahelp hid=\".uno:InsertVideo\">Inserts a video file into the current document.</ahelp></variable>"
msgstr ""
-#: 02210101.xhp
+#: 04160300.xhp
msgctxt ""
-"02210101.xhp\n"
-"hd_id3155628\n"
-"16\n"
+"04160300.xhp\n"
+"tit\n"
"help.text"
-msgid "Off"
-msgstr "Ç'kyçur"
+msgid "Formula"
+msgstr "Formula"
-#: 02210101.xhp
+#: 04160300.xhp
msgctxt ""
-"02210101.xhp\n"
-"par_id3150669\n"
-"17\n"
+"04160300.xhp\n"
+"bm_id3152937\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:RADIOBUTTON:TP_FRAMEPROPERTIES:RB_SCROLLINGOFF\">Hides the scrollbar for the floating frame.</ahelp>"
+msgid "<bookmark_value>formulas; starting formula editor</bookmark_value><bookmark_value>$[officename] Math start</bookmark_value><bookmark_value>Math formula editor</bookmark_value><bookmark_value>equations in formula editor</bookmark_value><bookmark_value>editors;formula editor</bookmark_value>"
msgstr ""
-#: 02210101.xhp
+#: 04160300.xhp
msgctxt ""
-"02210101.xhp\n"
-"hd_id3150503\n"
-"18\n"
+"04160300.xhp\n"
+"hd_id3152937\n"
+"1\n"
"help.text"
-msgid "Automatic"
-msgstr "Automatike"
+msgid "Formula"
+msgstr "Formula"
-#: 02210101.xhp
+#: 04160300.xhp
msgctxt ""
-"02210101.xhp\n"
-"par_id3152909\n"
-"19\n"
+"04160300.xhp\n"
+"par_id3149495\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:RADIOBUTTON:TP_FRAMEPROPERTIES:RB_SCROLLINGAUTO\">Mark this option if the currently active floating frame can have a scrollbar when needed.</ahelp>"
+msgid "<variable id=\"starmath\"><ahelp hid=\".uno:InsertObjectStarMath\">Inserts a formula into the current document.</ahelp><switchinline select=\"appl\"><caseinline select=\"MATH\"></caseinline><defaultinline> For more information open the $[officename] Math Help.</defaultinline></switchinline></variable>"
msgstr ""
-#: 02210101.xhp
-msgctxt ""
-"02210101.xhp\n"
-"hd_id3156156\n"
-"20\n"
-"help.text"
-msgid "Border"
-msgstr "Kufiri"
-
-#: 02210101.xhp
+#: 04160300.xhp
msgctxt ""
-"02210101.xhp\n"
-"par_id3150943\n"
-"21\n"
+"04160300.xhp\n"
+"par_id3154317\n"
"help.text"
-msgid "Displays or hides the border of the floating frame."
+msgid "<link href=\"text/smath/main0000.xhp\" name=\"Formulas\">Formulas</link>"
msgstr ""
-#: 02210101.xhp
+#: 04160500.xhp
msgctxt ""
-"02210101.xhp\n"
-"hd_id3146774\n"
-"22\n"
+"04160500.xhp\n"
+"tit\n"
"help.text"
-msgid "On"
-msgstr "Kyçur"
+msgid "Insert Floating Frame"
+msgstr "Vendose kornizën lëvizëse"
-#: 02210101.xhp
+#: 04160500.xhp
msgctxt ""
-"02210101.xhp\n"
-"par_id3159147\n"
-"23\n"
+"04160500.xhp\n"
+"bm_id3149783\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:RADIOBUTTON:TP_FRAMEPROPERTIES:RB_FRMBORDER_ON\">Displays the border of the floating frame.</ahelp>"
+msgid "<bookmark_value>floating frames in HTML documents</bookmark_value><bookmark_value>inserting; floating frames</bookmark_value>"
msgstr ""
-#: 02210101.xhp
+#: 04160500.xhp
msgctxt ""
-"02210101.xhp\n"
-"hd_id3153146\n"
-"24\n"
+"04160500.xhp\n"
+"hd_id3149783\n"
+"1\n"
"help.text"
-msgid "Off"
-msgstr "Ç'kyçur"
+msgid "Insert Floating Frame"
+msgstr "Vendose kornizën lëvizëse"
-#: 02210101.xhp
+#: 04160500.xhp
msgctxt ""
-"02210101.xhp\n"
-"par_id3156329\n"
-"25\n"
+"04160500.xhp\n"
+"par_id3148410\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:RADIOBUTTON:TP_FRAMEPROPERTIES:RB_FRMBORDER_OFF\">Hides the border of the floating frame.</ahelp>"
+msgid "<variable id=\"frameeinfuegentext\"><ahelp hid=\".\">Inserts a floating frame into the current document. Floating frames are used in HTML documents to display the contents of another file.</ahelp></variable>"
msgstr ""
-#: 02210101.xhp
+#: 04160500.xhp
msgctxt ""
-"02210101.xhp\n"
-"hd_id3148563\n"
-"28\n"
+"04160500.xhp\n"
+"par_id3151100\n"
+"6\n"
"help.text"
-msgid "Spacing to contents"
-msgstr "Hapësira me përmbajtje"
+msgid "If you want to create HTML pages that use floating frames, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML compatibility</emph>, and then select the \"MS Internet Explorer\" option. The floating frame is bounded by <IFRAME> and </IFRAME> tags."
+msgstr ""
-#: 02210101.xhp
+#: 04160500.xhp
msgctxt ""
-"02210101.xhp\n"
-"par_id3148943\n"
-"29\n"
+"04160500.xhp\n"
+"par_id3151330\n"
"help.text"
-msgid "Define the amount of space that is left between the border of the floating frame and the contents of the floating frame provided that both documents inside and outside the floating frame are HTML documents."
+msgid "<link href=\"text/shared/01/02210101.xhp\" name=\"Floating frame properties\">Floating frame properties</link>"
msgstr ""
-#: 02210101.xhp
+#: 04180100.xhp
msgctxt ""
-"02210101.xhp\n"
-"hd_id3152473\n"
-"30\n"
+"04180100.xhp\n"
+"tit\n"
"help.text"
-msgid "Width"
-msgstr "Gjerësia"
+msgid "Data Sources"
+msgstr "Burimet e të dhënave"
-#: 02210101.xhp
+#: 04180100.xhp
msgctxt ""
-"02210101.xhp\n"
-"par_id3149656\n"
-"31\n"
+"04180100.xhp\n"
+"hd_id3156053\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:NUMERICFIELD:TP_FRAMEPROPERTIES:NM_MARGINWIDTH\">Enter the amount of horizontal space that you want to leave between the right and the left edges of the floating frame and the contents of the frame. Both documents inside and outside the floating frame must be HTML documents.</ahelp>"
+msgid "<link href=\"text/shared/01/04180100.xhp\" name=\"Data Sources\">Data Sources</link>"
msgstr ""
-#: 02210101.xhp
+#: 04180100.xhp
msgctxt ""
-"02210101.xhp\n"
-"hd_id3147303\n"
-"32\n"
+"04180100.xhp\n"
+"par_id3149495\n"
+"2\n"
"help.text"
-msgid "Height"
-msgstr "Lartësia"
+msgid "<ahelp hid=\".uno:ViewDataSourceBrowser\">Lists the databases that are registered in <item type=\"productname\">%PRODUCTNAME</item> and lets you manage the contents of the databases.</ahelp>"
+msgstr ""
-#: 02210101.xhp
+#: 04180100.xhp
msgctxt ""
-"02210101.xhp\n"
-"par_id3149670\n"
-"33\n"
+"04180100.xhp\n"
+"par_id3156136\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:NUMERICFIELD:TP_FRAMEPROPERTIES:NM_MARGINHEIGHT\">Enter the amount of vertical space that you want to leave between the top and bottom edges of the floating frame and the contents of the frame. Both documents inside and outside the floating frame must be HTML documents.</ahelp>"
+msgid "The <emph>Data sources</emph> command is only available when a text document or a spreadsheet is open."
msgstr ""
-#: 02210101.xhp
+#: 04180100.xhp
msgctxt ""
-"02210101.xhp\n"
-"hd_id3150865\n"
-"34\n"
+"04180100.xhp\n"
+"par_id3154823\n"
+"31\n"
"help.text"
-msgid "Default"
-msgstr "Standarde"
+msgid "You can insert fields from a database into your file or you can create forms to access the database."
+msgstr ""
-#: 02210101.xhp
+#: 04180100.xhp
msgctxt ""
-"02210101.xhp\n"
-"par_id3150400\n"
-"35\n"
+"04180100.xhp\n"
+"par_id3156427\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:CHECKBOX:TP_FRAMEPROPERTIES:CB_MARGINHEIGHTDEFAULT\">Applies the default spacing.</ahelp>"
+msgid "<link href=\"text/shared/main0212.xhp\" name=\"Table Data bar\">Table Data bar</link>"
msgstr ""
-#: 05040300.xhp
+#: 04180100.xhp
msgctxt ""
-"05040300.xhp\n"
+"04180100.xhp\n"
+"par_id3153311\n"
+"help.text"
+msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Forms\">Forms</link>"
+msgstr ""
+
+#: 04990000.xhp
+msgctxt ""
+"04990000.xhp\n"
"tit\n"
"help.text"
-msgid "Header"
-msgstr "Kreu"
+msgid "Picture"
+msgstr "Fotografi"
-#: 05040300.xhp
+#: 04990000.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3155599\n"
+"04990000.xhp\n"
+"hd_id3156045\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040300.xhp\" name=\"Header\">Header</link>"
+msgid "<link href=\"text/shared/01/04990000.xhp\" name=\"Picture\">Picture</link>"
msgstr ""
-#: 05040300.xhp
+#: 04990000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3156027\n"
+"04990000.xhp\n"
+"par_id3154613\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FORMAT_HEADER\">Adds a header to the current page style. A header is an area in the top page margin, where you can add text or graphics.</ahelp>"
+msgid "<ahelp hid=\".\">Select the source for a picture that you want to insert.</ahelp>"
msgstr ""
-#: 05040300.xhp
+#: 04990000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3150693\n"
-"33\n"
+"04990000.xhp\n"
+"hd_id3158442\n"
+"3\n"
"help.text"
-msgid "If you want, you can also add borders or a background fill to a header."
+msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
msgstr ""
-#: 05040300.xhp
+#: 05010000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3153821\n"
-"32\n"
+"05010000.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To add a header to the current page style, select <emph>Header on</emph>, and then click <emph>OK</emph>. </caseinline></switchinline>"
-msgstr ""
+msgid "Clear Direct Formatting"
+msgstr "Formatimi i faqes"
-#: 05040300.xhp
+#: 05010000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3153827\n"
-"31\n"
+"05010000.xhp\n"
+"bm_id3157959\n"
"help.text"
-msgid "If you want to extend a header into the page margins, insert a frame into the header."
+msgid "<bookmark_value>formatting; undoing when writing</bookmark_value><bookmark_value>hyperlinks; deleting</bookmark_value><bookmark_value>deleting; hyperlinks</bookmark_value><bookmark_value>cells;resetting formats</bookmark_value>"
msgstr ""
-#: 05040300.xhp
+#: 05010000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3154046\n"
-"29\n"
+"05010000.xhp\n"
+"hd_id3153391\n"
+"1\n"
"help.text"
-msgid "To quickly move the text cursor from the document text to the header or footer, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down. Press the same key again to move the text cursor back into the document text."
+msgid "<link href=\"text/shared/01/05010000.xhp\" name=\"Clear Direct Formatting\">Clear Direct Formatting</link>"
msgstr ""
-#: 05040300.xhp
+#: 05010000.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3152360\n"
-"4\n"
+"05010000.xhp\n"
+"par_id3145829\n"
+"2\n"
"help.text"
-msgid "Header"
-msgstr "Kreu"
+msgid "<ahelp hid=\".uno:StandardTextAttributes\">Removes direct formatting and formatting by character styles from the selection.</ahelp>"
+msgstr ""
-#: 05040300.xhp
+#: 05010000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3154924\n"
+"05010000.xhp\n"
+"par_id3147261\n"
"5\n"
"help.text"
-msgid "Set the properties of the header."
-msgstr "Përsërite kreun"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Direct formatting is formatting that you applied without using styles, such as setting bold typeface by clicking the <emph>Bold</emph> icon.</defaultinline></switchinline>"
+msgstr ""
-#: 05040300.xhp
+#: 05010000.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3147304\n"
-"7\n"
+"05010000.xhp\n"
+"par_id3157959\n"
+"3\n"
"help.text"
-msgid "Header on"
-msgstr "Mbështjell"
+msgid "To stop applying a direct format, such as underlining, while you type new text at the end of a line, press Shift+Ctrl+X."
+msgstr ""
-#: 05040300.xhp
+#: 05020000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3154388\n"
-"8\n"
+"05020000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_HEADER:CB_TURNON\">Adds a header to the current page style.</ahelp>"
-msgstr ""
+msgid "Character"
+msgstr "Karakter"
-#: 05040300.xhp
+#: 05020000.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3154936\n"
-"21\n"
+"05020000.xhp\n"
+"hd_id3150347\n"
+"1\n"
"help.text"
-msgid "Same content left/right"
-msgstr "Madhësia e tejkalimit (majtas/djathtas)"
+msgid "Character"
+msgstr "Karakter"
-#: 05040300.xhp
+#: 05020000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3154938\n"
-"22\n"
+"05020000.xhp\n"
+"par_id3153272\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_HEADER:CB_SHARED\">Even and odd pages share the same content.<switchinline select=\"appl\"><caseinline select=\"CALC\"> To assign a different header to even and odd pages, clear this option, and then click <emph>Edit</emph>. </caseinline></switchinline></ahelp>"
+msgid "<variable id=\"zeichentext\"><ahelp hid=\".uno:FontDialog\">Changes the font and the font formatting for the selected characters.</ahelp></variable>"
msgstr ""
-#: 05040300.xhp
+#: 05020000.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3154937\n"
-"21\n"
+"05020000.xhp\n"
+"hd_id3149988\n"
+"4\n"
"help.text"
-msgid "Same content on first page"
+msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
msgstr ""
-#: 05040300.xhp
+#: 05020000.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3154939\n"
-"22\n"
+"05020000.xhp\n"
+"hd_id3147588\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_HEADER:CB_SHARED_FIRST\">First and even/odd pages share the same content.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/05020400.xhp\" name=\"Hyperlink\">Hyperlink</link></caseinline></switchinline>"
msgstr ""
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3145202\n"
-"17\n"
+"05020100.xhp\n"
+"tit\n"
"help.text"
-msgid "Left margin"
-msgstr "Margjina e majtë"
+msgid "Font"
+msgstr "Fonti"
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3150449\n"
-"18\n"
+"05020100.xhp\n"
+"bm_id3154812\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HEADER:ED_LMARGIN\">Enter the amount of space to leave between the left edge of the page and the left edge of the header.</ahelp>"
+msgid "<bookmark_value>formats; fonts</bookmark_value><bookmark_value>characters;fonts and formats</bookmark_value><bookmark_value>fonts; formats</bookmark_value><bookmark_value>text; fonts and formats</bookmark_value><bookmark_value>typefaces; formats</bookmark_value><bookmark_value>font sizes; relative changes</bookmark_value><bookmark_value>languages; spellchecking and formatting</bookmark_value><bookmark_value>characters; enabling CTL and Asian characters</bookmark_value>"
msgstr ""
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3153351\n"
-"19\n"
+"05020100.xhp\n"
+"hd_id3154812\n"
+"1\n"
"help.text"
-msgid "Right margin"
-msgstr "Margjina e djathtë"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"><link href=\"text/shared/01/05020100.xhp\" name=\"Characters\">Characters</link></caseinline><defaultinline><link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link></defaultinline></switchinline>"
+msgstr ""
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3157322\n"
-"20\n"
+"05020100.xhp\n"
+"par_id3158405\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HEADER:ED_RMARGIN\">Enter the amount of space to leave between the right edge of the page and the right edge of the header.</ahelp>"
+msgid "<variable id=\"zn\"><ahelp hid=\"cui/ui/charnamepage/CharNamePage\">Specify the formatting and the font that you want to apply.</ahelp></variable>"
msgstr ""
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3148672\n"
-"9\n"
+"05020100.xhp\n"
+"par_id3155616\n"
+"3\n"
"help.text"
-msgid "Spacing"
-msgstr "Hapësira"
+msgid "The changes are applied to the current selection, to the entire word that contains the cursor, or to the new text that you type."
+msgstr ""
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3153970\n"
-"10\n"
+"05020100.xhp\n"
+"par_id3155552\n"
+"52\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HEADER:ED_DIST\">Enter the amount of space that you want to maintain between the bottom edge of the header and the top edge of the document text.</ahelp>"
+msgid "Depending on your language settings, you can change the formatting for the following font types:"
msgstr ""
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3154330\n"
-"35\n"
+"05020100.xhp\n"
+"par_id3147291\n"
+"53\n"
"help.text"
-msgid "Use dynamic spacing"
-msgstr "Përdor %WRITERCOMPATIBILITYVERSIONOOO11 hapësirën mes rreshtave"
+msgid "Western text font - Latin character sets."
+msgstr ""
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3148453\n"
-"36\n"
+"05020100.xhp\n"
+"par_id3155391\n"
+"54\n"
"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_HEADER_CB_DYNSPACING\">Overrides the <emph>Spacing </emph>setting, and allows the header to expand into the area between the header and the document text.</ahelp>"
+msgid "Asian text font - Chinese, Japanese, or Korean character sets"
msgstr ""
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3150290\n"
-"13\n"
+"05020100.xhp\n"
+"par_id3147576\n"
+"57\n"
"help.text"
-msgid "Height"
-msgstr "Lartësia"
+msgid "Complex text layout font - right-to-left text direction"
+msgstr ""
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3155429\n"
-"14\n"
+"05020100.xhp\n"
+"par_id3153663\n"
+"58\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HEADER:ED_HEIGHT\">Enter the height that you want for the header.</ahelp>"
+msgid "To enable support for complex text layout and Asian character sets, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - Languages</emph>, and then select the <emph>Enabled </emph>box in the corresponding area."
msgstr ""
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3156543\n"
-"15\n"
+"05020100.xhp\n"
+"hd_id3148686\n"
+"4\n"
"help.text"
-msgid "AutoFit height"
-msgstr "Përshtate Automatikisht lartësinë"
+msgid "Font"
+msgstr "Fonti"
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3153095\n"
-"16\n"
+"05020100.xhp\n"
+"par_id3148491\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_HEADER:CB_HEIGHT_DYN\">Automatically adjusts the height of the header to fit the content that you enter.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/charnamepage/ctlfontnamelb\">Enter the name of an installed font that you want to use, or select a font from the list.</ahelp>"
msgstr ""
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3145271\n"
-"24\n"
+"05020100.xhp\n"
+"hd_id3143271\n"
+"10\n"
"help.text"
-msgid "More"
-msgstr "Më shumë"
+msgid "Typeface"
+msgstr "Rrokje"
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3145367\n"
-"25\n"
+"05020100.xhp\n"
+"par_id3155922\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_HEADER:BTN_EXTRAS\">Defines a border, a background color, or a background pattern for the header.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/charnamepage/ctlstylelb\">Select the formatting that you want to apply.</ahelp>"
msgstr ""
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"hd_id3155306\n"
-"27\n"
+"05020100.xhp\n"
+"hd_id3151054\n"
+"16\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Edit </caseinline></switchinline>"
-msgstr ""
+msgid "Size"
+msgstr "Madhësia"
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id0609200910261473\n"
+"05020100.xhp\n"
+"par_id3150359\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Add or edit header text.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/charnamepage/ctlsizelb\">Enter or select the font size that you want to apply. For scalable fonts, you can also enter decimal values.</ahelp>"
msgstr ""
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3145749\n"
-"28\n"
+"05020100.xhp\n"
+"par_id3148797\n"
+"45\n"
"help.text"
-msgid "<ahelp hid=\"HID_SC_HEADER_EDIT\"><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02120000.xhp\" name=\"Add or edit\">Add or edit</link> header text. </caseinline></switchinline></ahelp>"
+msgid "If you are creating a Style that is based on another Style, you can enter a percentage value or a point value (for example, -2pt or +5pt)."
msgstr ""
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3163716\n"
+"05020100.xhp\n"
+"hd_id3151176\n"
+"38\n"
"help.text"
-msgid "<link href=\"text/swriter/01/04220000.xhp\" name=\"Headers\">Headers</link>"
+msgid "Language"
+msgstr "Gjuhë"
+
+#: 05020100.xhp
+msgctxt ""
+"05020100.xhp\n"
+"par_id3157961\n"
+"39\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/charnamepage/ctlsizelb\">Sets the language that the spellchecker uses for the selected text or the text that you type. Available language modules have a check mark in front of them.</ahelp>"
msgstr ""
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3150032\n"
+"05020100.xhp\n"
+"par_id3153770\n"
+"59\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Changing measurement units\">Changing measurement units</link>"
+msgid "You can only change the language setting for cells (choose <emph>Format - Cells – Numbers</emph>)."
msgstr ""
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3150873\n"
+"05020100.xhp\n"
+"par_id3145364\n"
+"60\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link>"
+msgid "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Asian languages support\">Asian languages support</link>"
msgstr ""
-#: 05040300.xhp
+#: 05020100.xhp
msgctxt ""
-"05040300.xhp\n"
-"par_id3147326\n"
+"05020100.xhp\n"
+"par_id3147213\n"
+"61\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Backgrounds\">Backgrounds</link>"
+msgid "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Complex text layout support\">Complex text layout support</link>"
msgstr ""
-#: 01020103.xhp
+#: 05020200.xhp
msgctxt ""
-"01020103.xhp\n"
+"05020200.xhp\n"
"tit\n"
"help.text"
-msgid "Filter Selection"
-msgstr "Zgjedhja e databazës"
+msgid "Font Effects"
+msgstr "Efektet e fontit"
-#: 01020103.xhp
+#: 05020200.xhp
msgctxt ""
-"01020103.xhp\n"
-"hd_id3152876\n"
+"05020200.xhp\n"
+"bm_id3153514\n"
+"help.text"
+msgid "<bookmark_value>fonts;effects</bookmark_value> <bookmark_value>formatting; font effects</bookmark_value> <bookmark_value>characters; font effects</bookmark_value> <bookmark_value>text; font effects</bookmark_value> <bookmark_value>effects; fonts</bookmark_value> <bookmark_value>underlining; text</bookmark_value> <bookmark_value>capital letters; font effects</bookmark_value> <bookmark_value>lowercase letters; font effects</bookmark_value> <bookmark_value>titles; font effects</bookmark_value> <bookmark_value>small capitals</bookmark_value> <bookmark_value>strikethrough; font effects</bookmark_value> <bookmark_value>fonts; strikethrough</bookmark_value> <bookmark_value>outlines; font effects</bookmark_value> <bookmark_value>fonts; outlines</bookmark_value> <bookmark_value>shadows; characters</bookmark_value> <bookmark_value>fonts; shadows</bookmark_value> <bookmark_value>fonts;color ignored</bookmark_value> <bookmark_value>ignored font colors</bookmark_value> <bookmark_value>colors;ignored text color</bookmark_value>"
+msgstr ""
+
+#: 05020200.xhp
+msgctxt ""
+"05020200.xhp\n"
+"hd_id3153514\n"
"1\n"
"help.text"
-msgid "Filter Selection"
-msgstr "Zgjedhja e databazës"
+msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Font Effects</link>"
+msgstr ""
-#: 01020103.xhp
+#: 05020200.xhp
msgctxt ""
-"01020103.xhp\n"
-"par_id3154926\n"
+"05020200.xhp\n"
+"par_id3149205\n"
"2\n"
"help.text"
-msgid "Allows you to select an import filter."
+msgid "<ahelp hid=\"cui/ui/effectspage/EffectsPage\">Specify the font effects that you want to use.</ahelp>"
msgstr ""
-#: 01020103.xhp
+#: 05020200.xhp
msgctxt ""
-"01020103.xhp\n"
-"hd_id3151100\n"
-"4\n"
+"05020200.xhp\n"
+"hd_id3149482\n"
+"81\n"
"help.text"
-msgid "Filter list"
-msgstr "Kryerresht i listës"
+msgid "Font Color"
+msgstr "Ngjyra e Fontit"
-#: 01020103.xhp
+#: 05020200.xhp
msgctxt ""
-"01020103.xhp\n"
-"par_id3159201\n"
-"5\n"
+"05020200.xhp\n"
+"par_id3146924\n"
+"82\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:LISTBOX:DLG_FILTER_SELECT:LB_DLG_LISTBOX\">Select the import filter for the file that you want to open.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/effectspage/fontcolorlb\">Sets the color for the selected text. If you select<emph> Automatic</emph>, the text color is set to black for light backgrounds and to white for dark backgrounds.</ahelp>"
msgstr ""
-#: 01020103.xhp
+#: 05020200.xhp
msgctxt ""
-"01020103.xhp\n"
-"par_id3152918\n"
-"6\n"
+"05020200.xhp\n"
+"par_idN10CC2\n"
"help.text"
-msgid "If $[officename] does not recognize the file type of the document that your want to open, try any of the following:"
+msgid "To change the color of a text selection, select the text that you want to change, and click the <emph>Font Color</emph> icon. To apply a different color, click the arrow next to the <emph>Font Color</emph> icon, and then select the color that you want to use."
msgstr ""
-#: 01020103.xhp
+#: 05020200.xhp
msgctxt ""
-"01020103.xhp\n"
-"par_id3152924\n"
-"7\n"
+"05020200.xhp\n"
+"par_idN10CC9\n"
"help.text"
-msgid "Select the import filter from the list."
-msgstr "Zgjidh skemën e tastierës nga lista e arkitekturave"
+msgid "If you click the <emph>Font Color</emph> icon before you select text, the paint can cursor appears. To change the color of text, select the text with the paint can cursor. To change the color of a single word, double-click in a word. To apply a different color, click the arrow next to the <emph>Font Color</emph> icon, and then select the color that you want to use."
+msgstr ""
-#: 01020103.xhp
+#: 05020200.xhp
msgctxt ""
-"01020103.xhp\n"
-"par_id3155892\n"
-"9\n"
+"05020200.xhp\n"
+"par_idN10CD6\n"
"help.text"
-msgid "Ensure that the file extension corresponds to the file type of the document. For example, a Microsoft Word document must have a (*.doc) extension for $[officename] to use the appropriate filter."
+msgid "To undo the last change, right-click."
msgstr ""
-#: 01020103.xhp
+#: 05020200.xhp
msgctxt ""
-"01020103.xhp\n"
-"par_id3147571\n"
-"8\n"
+"05020200.xhp\n"
+"par_idN10CDA\n"
"help.text"
-msgid "Install a missing import filter with the <emph>$[officename] Setup</emph> program."
+msgid "To exit the paint can mode, click once, or press the Escape key."
msgstr ""
-#: 06050200.xhp
+#: 05020200.xhp
msgctxt ""
-"06050200.xhp\n"
-"tit\n"
+"05020200.xhp\n"
+"par_id3150037\n"
+"85\n"
"help.text"
-msgid "Numbering Style"
-msgstr "Stili i numërimit"
+msgid "The text color is ignored when printing, if the <emph>Print black</emph> check box is selected in <link href=\"text/shared/optionen/01040400.xhp\" name=\"Writer - Print\"><emph>%PRODUCTNAME Writer - Print</emph></link> in the Options dialog box."
+msgstr ""
-#: 06050200.xhp
+#: 05020200.xhp
msgctxt ""
-"06050200.xhp\n"
-"hd_id3146807\n"
-"1\n"
+"05020200.xhp\n"
+"par_id7613757\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050200.xhp\" name=\"Numbering Style\">Numbering</link>"
+msgid "The text color is ignored on screen, if the <emph>Use automatic font color for screen display</emph> check box is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01013000.xhp\"><emph>%PRODUCTNAME - Accessibility</emph></link>."
msgstr ""
-#: 06050200.xhp
+#: 05020200.xhp
msgctxt ""
-"06050200.xhp\n"
-"par_id3148765\n"
-"2\n"
+"05020200.xhp\n"
+"par_id3144766\n"
+"84\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the different numbering styles that you can apply.</ahelp>"
+msgid "<ahelp hid=\".uno:FontColor\" visibility=\"hidden\"><variable id=\"textfarbe\">Click to apply the current font color to the selected characters. You can also click here, and then drag a selection to change the text color. Click the arrow next to the icon to open the Font color toolbar.</variable></ahelp>"
msgstr ""
-#: 06050200.xhp
+#: 05020200.xhp
msgctxt ""
-"06050200.xhp\n"
-"hd_id3147000\n"
+"05020200.xhp\n"
+"hd_id3146137\n"
"3\n"
"help.text"
-msgid "Selection"
-msgstr "Selektimet"
+msgid "Effects"
+msgstr "Efektet"
-#: 06050200.xhp
+#: 05020200.xhp
msgctxt ""
-"06050200.xhp\n"
-"par_id3151100\n"
-"4\n"
+"05020200.xhp\n"
+"par_id3150084\n"
+"64\n"
"help.text"
-msgid "<ahelp hid=\"HID_VALUESET_SINGLENUM\">Click the numbering style that you want to use.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/effectspage/effectslb\">Select the font effects that you want to apply.</ahelp>"
msgstr ""
-#: 06050200.xhp
+#: 05020200.xhp
msgctxt ""
-"06050200.xhp\n"
-"par_id3149355\n"
+"05020200.xhp\n"
+"hd_id3149575\n"
+"65\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position tab (Numbering/Bullets dialog)\">Position tab (Bullets and Numbering dialog)</link>"
-msgstr ""
+msgid "Effects"
+msgstr "Efektet"
-#: 06050200.xhp
+#: 05020200.xhp
msgctxt ""
-"06050200.xhp\n"
-"par_id3152918\n"
+"05020200.xhp\n"
+"par_id3148944\n"
+"66\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Options tab (Bullets and Numbering dialog)</link>"
+msgid "The following capitalization effects are available:"
msgstr ""
-#: 01100300.xhp
+#: 05020200.xhp
msgctxt ""
-"01100300.xhp\n"
-"tit\n"
+"05020200.xhp\n"
+"par_id3155922\n"
+"67\n"
"help.text"
-msgid "Custom Properties"
-msgstr "Vetitë e kornizës"
+msgid "Without - no effect is applied"
+msgstr ""
-#: 01100300.xhp
+#: 05020200.xhp
msgctxt ""
-"01100300.xhp\n"
-"hd_id3155069\n"
-"1\n"
+"05020200.xhp\n"
+"par_id3154280\n"
+"68\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100300.xhp\" name=\"Custom Properties\">Custom Properties</link>"
+msgid "Capitals - changes the selected lowercase characters to uppercase characters"
msgstr ""
-#: 01100300.xhp
+#: 05020200.xhp
msgctxt ""
-"01100300.xhp\n"
-"par_id3155934\n"
-"9\n"
+"05020200.xhp\n"
+"par_id3148947\n"
+"69\n"
"help.text"
-msgid "<ahelp hid=\"HID_DOCINFOUSER\">Allows you to assign custom information fields to your document.</ahelp>"
+msgid "Lowercase - changes the selected uppercase characters to lower characters"
msgstr ""
-#: 01100300.xhp
+#: 05020200.xhp
msgctxt ""
-"01100300.xhp\n"
-"hd_id3151234\n"
-"2\n"
+"05020200.xhp\n"
+"par_id3149456\n"
+"71\n"
"help.text"
-msgid "Properties"
-msgstr "Vetitë"
+msgid "Title font - changes the first character of each selected word to an uppercase character"
+msgstr ""
-#: 01100300.xhp
+#: 05020200.xhp
msgctxt ""
-"01100300.xhp\n"
-"par_id3152551\n"
-"3\n"
+"05020200.xhp\n"
+"par_id3154937\n"
+"70\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:TP_DOCINFOUSER:ED_INFO4\">Enter your custom contents. You can change the name, type, and contents of each row. You can add or remove rows. The items will be exported as metadata to other file formats.</ahelp>"
+msgid "Small capitals - changes the selected lowercase characters to uppercase characters, and then reduces their size"
msgstr ""
-#: 01100300.xhp
+#: 05020200.xhp
msgctxt ""
-"01100300.xhp\n"
-"hd_id0811200812071796\n"
+"05020200.xhp\n"
+"hd_id3154129\n"
+"76\n"
"help.text"
-msgid "Add"
-msgstr "Shto"
+msgid "Relief"
+msgstr "Relief"
-#: 01100300.xhp
+#: 05020200.xhp
msgctxt ""
-"01100300.xhp\n"
-"par_id0811200812071785\n"
+"05020200.xhp\n"
+"par_id3146974\n"
+"77\n"
"help.text"
-msgid "<ahelp hid=\".\">Click to add a new row to the Properties list.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/effectspage/relieflb\">Select a relief effect to apply to the selected text. The embossed relief makes the characters appear as if they are raised above the page. The engraved relief makes the characters appear as if they are pressed into the page.</ahelp>"
msgstr ""
-#: 03110000.xhp
+#: 05020200.xhp
msgctxt ""
-"03110000.xhp\n"
-"tit\n"
+"05020200.xhp\n"
+"hd_id3147287\n"
+"72\n"
"help.text"
-msgid "Full Screen"
-msgstr "Ekrani i Plotë"
+msgid "Outline"
+msgstr "Konturë"
-#: 03110000.xhp
+#: 05020200.xhp
msgctxt ""
-"03110000.xhp\n"
-"bm_id3160463\n"
+"05020200.xhp\n"
+"par_id3159126\n"
+"73\n"
"help.text"
-msgid "<bookmark_value>full screen view</bookmark_value><bookmark_value>screen; full screen views</bookmark_value><bookmark_value>complete screen view</bookmark_value><bookmark_value>views;full screen</bookmark_value>"
+msgid "<ahelp hid=\"cui/ui/effectspage/outlinecb\">Displays the outline of the selected characters. This effect does not work with every font.</ahelp>"
msgstr ""
-#: 03110000.xhp
+#: 05020200.xhp
msgctxt ""
-"03110000.xhp\n"
-"hd_id3160463\n"
-"1\n"
+"05020200.xhp\n"
+"hd_id3163714\n"
+"74\n"
"help.text"
-msgid "<link href=\"text/shared/01/03110000.xhp\" name=\"Full Screen\">Full Screen</link>"
-msgstr ""
+msgid "Shadow"
+msgstr "Hije"
-#: 03110000.xhp
+#: 05020200.xhp
msgctxt ""
-"03110000.xhp\n"
-"par_id3148983\n"
-"2\n"
+"05020200.xhp\n"
+"par_id3150962\n"
+"75\n"
"help.text"
-msgid "<ahelp hid=\".uno:FullScreen\">Shows or hides the menus and toolbars in Writer or Calc. To exit the full screen mode, click the <emph>Full Screen On/Off</emph> button.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/effectspage/shadowcb\">Adds a shadow that casts below and to the right of the selected characters.</ahelp>"
msgstr ""
-#: 03110000.xhp
+#: 05020200.xhp
msgctxt ""
-"03110000.xhp\n"
-"par_id3152594\n"
-"29\n"
+"05020200.xhp\n"
+"bm_id410168\n"
"help.text"
-msgid "<ahelp hid=\"HID_FULLSCREENTOOLBOX\">In Writer and Calc, you can also use the shortcut keys <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Shift+J to switch between the normal and full screen mode.</ahelp>"
+msgid "<bookmark_value>blinking fonts</bookmark_value> <bookmark_value>flashing fonts</bookmark_value>"
msgstr ""
-#: 03110000.xhp
+#: 05020200.xhp
msgctxt ""
-"03110000.xhp\n"
-"par_id3154318\n"
-"28\n"
+"05020200.xhp\n"
+"hd_id3152941\n"
+"15\n"
"help.text"
-msgid "You can still use shortcut keys in <emph>Full Screen</emph> mode, even though the menus are unavailable. <switchinline select=\"sys\"><caseinline select=\"WIN\">To open the <emph>View</emph> menu, press Alt+V. </caseinline></switchinline>"
+msgid "Blinking"
+msgstr "Duke Pulsuar"
+
+#: 05020200.xhp
+msgctxt ""
+"05020200.xhp\n"
+"par_id3145662\n"
+"16\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/effectspage/blinkingcb\">Makes the selected characters blink. You cannot change the blink frequency.</ahelp>"
msgstr ""
-#: 01170000.xhp
+#: 05020200.xhp
msgctxt ""
-"01170000.xhp\n"
-"tit\n"
+"05020200.xhp\n"
+"par_idN10B81\n"
"help.text"
-msgid "Exit"
-msgstr "Dalje"
+msgid "Hidden"
+msgstr "i fshehtë"
-#: 01170000.xhp
+#: 05020200.xhp
msgctxt ""
-"01170000.xhp\n"
-"bm_id3154545\n"
+"05020200.xhp\n"
+"par_idN10B85\n"
"help.text"
-msgid "<bookmark_value>exiting;$[officename]</bookmark_value>"
+msgid "<ahelp hid=\"cui/ui/effectspage/hiddencb\">Hides the selected characters.</ahelp> To display the hidden text, ensure that <emph>Non-printing Characters</emph> is selected in the <emph>View</emph> menu. You can also choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph> and select <emph>Hidden text</emph>."
msgstr ""
-#: 01170000.xhp
+#: 05020200.xhp
msgctxt ""
-"01170000.xhp\n"
-"hd_id3154545\n"
-"1\n"
+"05020200.xhp\n"
+"par_id0123200902291084\n"
"help.text"
-msgid "<link href=\"text/shared/01/01170000.xhp\" name=\"Exit\">Exit</link>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\"><emph>Overlines or removes overlining from the selected text. If the cursor is not in a word, the new text that you enter is overlined.</emph></ahelp>"
msgstr ""
-#: 01170000.xhp
+#: 05020200.xhp
msgctxt ""
-"01170000.xhp\n"
-"par_id3151299\n"
-"2\n"
+"05020200.xhp\n"
+"hd_id0123200902243376\n"
"help.text"
-msgid "<ahelp hid=\".\">Closes all $[officename] programs and prompts you to save your changes.</ahelp> <switchinline select=\"sys\"><caseinline select=\"MAC\">This command does not exist on Mac OS X systems.</caseinline><defaultinline/></switchinline>"
-msgstr ""
+msgid "Overlining"
+msgstr "Kernimi"
-#: 01170000.xhp
+#: 05020200.xhp
msgctxt ""
-"01170000.xhp\n"
-"par_id3154184\n"
-"6\n"
+"05020200.xhp\n"
+"par_id0123200902243343\n"
"help.text"
-msgid "<link href=\"text/shared/01/01050000.xhp\" name=\"Close the current document\">Close the current document</link>"
+msgid "<ahelp hid=\"cui/ui/effectspage/overlinelb\">Select the overlining style that you want to apply. To apply the overlining to words only, select the <emph>Individual Words</emph> box.</ahelp>"
msgstr ""
-#: 05230100.xhp
+#: 05020200.xhp
msgctxt ""
-"05230100.xhp\n"
-"tit\n"
+"05020200.xhp\n"
+"hd_id0123200902243470\n"
"help.text"
-msgid "Position and Size"
-msgstr "Pozita dhe Madhësia"
+msgid "Overline color"
+msgstr "Ngjyra e vijës"
-#: 05230100.xhp
+#: 05020200.xhp
msgctxt ""
-"05230100.xhp\n"
-"bm_id3154350\n"
+"05020200.xhp\n"
+"par_id0123200902243466\n"
"help.text"
-msgid "<bookmark_value>positioning;draw objects and controls</bookmark_value><bookmark_value>draw objects;positioning and resizing</bookmark_value><bookmark_value>controls; positions and sizes</bookmark_value><bookmark_value>sizes;draw objects</bookmark_value><bookmark_value>anchors;types/positions for draw objects</bookmark_value><bookmark_value>draw objects; anchoring</bookmark_value>"
+msgid "<ahelp hid=\"cui/ui/effectspage/overlinecolorlb\">Select the color for the overlining.</ahelp>"
msgstr ""
-#: 05230100.xhp
+#: 05020200.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3154350\n"
-"1\n"
+"05020200.xhp\n"
+"hd_id3150400\n"
+"43\n"
"help.text"
-msgid "<link href=\"text/shared/01/05230100.xhp\" name=\"Position and Size\">Position and Size</link>"
-msgstr ""
+msgid "Strikethrough"
+msgstr "Vizuar nëpërmes"
-#: 05230100.xhp
+#: 05020200.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3153255\n"
-"2\n"
+"05020200.xhp\n"
+"par_id3145203\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\".\">Resizes or moves the selected object.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/effectspage/strikeoutlb\">Select a strikethrough style for the selected text.</ahelp>"
msgstr ""
-#: 05230100.xhp
+#: 05020200.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3158405\n"
-"3\n"
+"05020200.xhp\n"
+"par_id3150496\n"
+"48\n"
"help.text"
-msgid "Position"
-msgstr "Pozicion"
+msgid "If you save your document in MS Word format, all of the strikethrough styles are converted to the single line style."
+msgstr ""
-#: 05230100.xhp
+#: 05020200.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3159201\n"
-"4\n"
+"05020200.xhp\n"
+"hd_id3151226\n"
+"41\n"
"help.text"
-msgid "Specify the location of the selected object on the page."
+msgid "Underlining"
msgstr ""
-#: 05230100.xhp
+#: 05020200.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3157896\n"
-"5\n"
+"05020200.xhp\n"
+"par_id3147576\n"
+"42\n"
"help.text"
-msgid "Position X"
-msgstr "Pozicion"
+msgid "<ahelp hid=\"cui/ui/effectspage/underlinelb\">Select the underlining style that you want to apply. To apply the underlining to words only, select the <emph>Individual Words</emph> box.</ahelp>"
+msgstr ""
-#: 05230100.xhp
+#: 05020200.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3155616\n"
-"6\n"
+"05020200.xhp\n"
+"par_id3153147\n"
+"58\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_POS_X\">Enter the horizontal distance that you want to move the object relative to the base point selected in the grid.</ahelp>"
+msgid "If you apply underlining to a superscript text, the underlining is raised to the level of the superscript. If the superscript is contained in a word with normal text, the underlining is not raised."
msgstr ""
-#: 05230100.xhp
+#: 05020200.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3151226\n"
-"7\n"
+"05020200.xhp\n"
+"hd_id3148642\n"
+"78\n"
"help.text"
-msgid "Position Y"
-msgstr "Pozicion"
+msgid "Underline color"
+msgstr "Nënvizim"
-#: 05230100.xhp
+#: 05020200.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3147373\n"
-"8\n"
+"05020200.xhp\n"
+"par_id3150254\n"
+"79\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_POS_Y\">Enter the vertical distance that you want to move the object relative to the base point selected in the grid.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/effectspage/underlinecolorlb\">Select the color for the underlining.</ahelp>"
msgstr ""
-#: 05230100.xhp
+#: 05020200.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3147834\n"
-"9\n"
+"05020200.xhp\n"
+"hd_id3153104\n"
+"45\n"
"help.text"
-msgid "Base point"
-msgstr "Shëni pikën"
+msgid "Individual words"
+msgstr "Falët e veçanta"
-#: 05230100.xhp
+#: 05020200.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3147008\n"
-"10\n"
+"05020200.xhp\n"
+"par_id3152935\n"
+"46\n"
"help.text"
-msgid "<ahelp hid=\"HID_TPPOSITION_CTRL\">Click a base point in the grid, and then enter the amount that you want to shift the object relative to the base point that you selected in the <emph>Position Y</emph> and <emph>Position X</emph> boxes. The base points correspond to the selection handles on an object.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/effectspage/individualwordscb\">Applies the selected effect only to words and ignores spaces.</ahelp>"
msgstr ""
-#: 05230100.xhp
+#: 05020200.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3155942\n"
-"19\n"
+"05020200.xhp\n"
+"hd_id3150332\n"
+"60\n"
"help.text"
-msgid "Size"
-msgstr "Madhësia"
+msgid "Emphasis mark"
+msgstr "Shenjë theksimi"
-#: 05230100.xhp
+#: 05020200.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3150774\n"
-"20\n"
+"05020200.xhp\n"
+"par_id3152576\n"
+"61\n"
"help.text"
-msgid "Specify the amount by which you want to resize the selected object with respect to the selected base point ."
+msgid "<ahelp hid=\"cui/ui/effectspage/emphasislb\">Select a character to display over or below the entire length of the selected text.</ahelp>"
msgstr ""
-#: 05230100.xhp
+#: 05020200.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3143267\n"
-"21\n"
+"05020200.xhp\n"
+"hd_id3152460\n"
+"62\n"
"help.text"
-msgid "Width"
-msgstr "Gjerësia"
+msgid "Position"
+msgstr "Pozicion"
-#: 05230100.xhp
+#: 05020200.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3149811\n"
-"22\n"
+"05020200.xhp\n"
+"par_id3147436\n"
+"63\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_WIDTH\">Enter a width for the selected object.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/effectspage/positionlb\">Specify where to display the emphasis marks.</ahelp>"
msgstr ""
-#: 05230100.xhp
-msgctxt ""
-"05230100.xhp\n"
-"hd_id3150443\n"
-"23\n"
-"help.text"
-msgid "Height"
-msgstr "Lartësia"
-
-#: 05230100.xhp
+#: 05020200.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3147209\n"
-"24\n"
+"05020200.xhp\n"
+"par_id3151053\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_HEIGHT\">Enter a height for the selected object.</ahelp>"
+msgid "<link href=\"text/shared/optionen/01010500.xhp\" name=\"$[officename] color tables\">$[officename] color tables</link>"
msgstr ""
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3149796\n"
-"25\n"
+"05020300.xhp\n"
+"tit\n"
"help.text"
-msgid "Keep ratio"
-msgstr "Mbaje përpjestimin"
+msgid "Numbers / Format"
+msgstr "Format tjetër"
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3155341\n"
-"26\n"
+"05020300.xhp\n"
+"bm_id3152942\n"
"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_POSITION_SIZE_CBX_SCALE\">Maintains proportions when you resize the selected object.</ahelp>"
+msgid "<bookmark_value>formats; number and currency formats</bookmark_value><bookmark_value>number formats; formats</bookmark_value><bookmark_value>currencies;format codes</bookmark_value><bookmark_value>defaults; number formats</bookmark_value>"
msgstr ""
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3148686\n"
-"29\n"
+"05020300.xhp\n"
+"hd_id3152942\n"
+"1\n"
"help.text"
-msgid "Base point"
-msgstr "Shëni pikën"
+msgid "Numbers / Format"
+msgstr "Format tjetër"
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3154897\n"
-"30\n"
+"05020300.xhp\n"
+"par_id3145071\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_TPSIZE_CTRL\">Click a base point in the grid, and then enter the new size dimensions for the selected object in the <emph>Width</emph> and <emph>Height</emph> boxes.</ahelp>"
+msgid "<variable id=\"zahlen\"><ahelp hid=\".uno:TableNumberFormatDialog\">Specify the formatting options for the selected cell(s).</ahelp> </variable>"
msgstr ""
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3148990\n"
-"17\n"
+"05020300.xhp\n"
+"hd_id3155392\n"
+"3\n"
"help.text"
-msgid "Protect"
-msgstr "Mbroj"
+msgid "Category"
+msgstr "Kategori"
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3153698\n"
-"37\n"
+"05020300.xhp\n"
+"par_id3150774\n"
+"4\n"
"help.text"
-msgid "Position"
-msgstr "Pozicion"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/categorylb\">Select a category from the list, and then select a formatting style in the <emph>Format </emph>box.</ahelp>"
+msgstr ""
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3149784\n"
-"18\n"
+"05020300.xhp\n"
+"par_id3145416\n"
+"101\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_POSPROTECT\">Prevents changes to the position or the size of the selected object.</ahelp>"
+msgid "The default currency format for a cell is determined by the regional settings of your operating system."
msgstr ""
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3153254\n"
-"27\n"
+"05020300.xhp\n"
+"hd_id3155342\n"
+"5\n"
"help.text"
-msgid "Size"
-msgstr "Madhësia"
+msgid "Format"
+msgstr "Formati"
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3152349\n"
-"28\n"
+"05020300.xhp\n"
+"par_id3148491\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_SIZEPROTECT\">Prevents you from resizing the object.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/formatlb\">Select how you want the contents of the selected cell(s) to be displayed.</ahelp> The code for the selected option is displayed in the <emph>Format Code</emph> box."
msgstr ""
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3149275\n"
-"11\n"
+"05020300.xhp\n"
+"hd_id3154811\n"
+"97\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Anchoring </caseinline></switchinline>"
+msgid "Currency category list boxes"
msgstr ""
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3147531\n"
-"12\n"
+"05020300.xhp\n"
+"par_id3148563\n"
+"98\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Set the anchoring options for the selected object. </caseinline></switchinline>"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/currencylb\">Select a currency, and then scroll to the top of the <emph>Format</emph> list to view the formatting options for the currency.</ahelp>"
msgstr ""
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3151246\n"
-"13\n"
+"05020300.xhp\n"
+"par_id3150866\n"
+"99\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Anchor </caseinline></switchinline>"
+msgid "The format code for currencies uses the form [$xxx-nnn], where xxx is the currency symbol, and nnn the country code. Special banking symbols, such as EUR (for Euro), do not require the country code. The currency format is not dependent on the language that you select in the<emph> Language</emph> box."
msgstr ""
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3154758\n"
-"14\n"
+"05020300.xhp\n"
+"hd_id3154071\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_POSITION_SIZE_LB_ANCHOR\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Select the type of anchor for the selected object. </caseinline></switchinline></ahelp>"
-msgstr ""
+msgid "Language"
+msgstr "Gjuhë"
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3149295\n"
-"15\n"
+"05020300.xhp\n"
+"par_id3154138\n"
+"24\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Position </caseinline></switchinline>"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/languagelb\">Specifies the language setting for the selected <switchinline select=\"appl\"><caseinline select=\"CALC\">cells </caseinline><defaultinline>fields</defaultinline></switchinline>. With the language set to <emph>Automatic</emph>, $[officename] automatically applies the number formats associated with the system default language. Select any language to fix the settings for the selected <switchinline select=\"appl\"><caseinline select=\"CALC\">cells </caseinline><defaultinline>fields</defaultinline></switchinline>.</ahelp>"
msgstr ""
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3154935\n"
-"16\n"
+"05020300.xhp\n"
+"par_id3157320\n"
+"102\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_POSITION_SIZE_LB_ORIENT\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Specifies the position of the anchor in relation to the character height. </caseinline></switchinline></ahelp>"
+msgid "The language setting ensures that date and currency formats are preserved even when the document is opened in an operating system that uses a different default language setting."
msgstr ""
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3153525\n"
-"31\n"
+"05020300.xhp\n"
+"hd_id3155995\n"
+"104\n"
"help.text"
-msgid "Adapt"
-msgstr "Adapto objektet..."
+msgid "Source format"
+msgstr "Format tjetër"
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id31512110\n"
+"05020300.xhp\n"
+"par_id3144432\n"
+"105\n"
"help.text"
-msgid "Specifies, if the size of a drawing object should be adjusted to fit the size of entered text."
+msgid "<ahelp hid=\"cui/ui/numberformatpage/sourceformat\">Uses the same number format as the cells containing the data for the chart.</ahelp>"
msgstr ""
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3151042\n"
-"33\n"
+"05020300.xhp\n"
+"hd_id3148451\n"
+"7\n"
"help.text"
-msgid "Fit width to text"
-msgstr "Përshtate tekstin sipas kornizës"
+msgid "Options"
+msgstr "Opcionet"
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id31591510\n"
+"05020300.xhp\n"
+"par_id3148922\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_AUTOGROW_WIDTH\">Expands the width of the object to the width of the text, if the object is smaller than the text.</ahelp>"
+msgid "Specify the options for the selected format."
msgstr ""
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"hd_id3145746\n"
-"35\n"
+"05020300.xhp\n"
+"hd_id3153970\n"
+"9\n"
"help.text"
-msgid "Fit height to text"
-msgstr "Përshtate tekstin sipas kornizës"
+msgid "Decimal places"
+msgstr "Vendet decimale"
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id31540680\n"
+"05020300.xhp\n"
+"par_id3154684\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_AUTOGROW_HEIGHT\">Expands the height of the object to the height of the text, if the object is smaller than the text.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/decimalsed\">Enter the number of decimal places that you want to display.</ahelp>"
msgstr ""
-#: 05230100.xhp
+#: 05020300.xhp
msgctxt ""
-"05230100.xhp\n"
-"par_id3145606\n"
+"05020300.xhp\n"
+"hd_id3154819\n"
+"11\n"
"help.text"
-msgid "<link href=\"text/shared/01/05260000.xhp\" name=\"Anchor types\">Anchor types</link>"
+msgid "Leading zeroes"
msgstr ""
-#: 02110000.xhp
+#: 05020300.xhp
msgctxt ""
-"02110000.xhp\n"
-"tit\n"
+"05020300.xhp\n"
+"par_id3147352\n"
+"12\n"
"help.text"
-msgid "Navigator for Master Documents"
-msgstr "Përmban shabllone për krijimin e dokumenteve të reja"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/leadzerosed\">Enter the maximum number of zeroes to display in front of the decimal point.</ahelp>"
+msgstr ""
-#: 02110000.xhp
+#: 05020300.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3153391\n"
-"1\n"
+"05020300.xhp\n"
+"hd_id3155131\n"
+"13\n"
"help.text"
-msgid "<link href=\"text/shared/01/02110000.xhp\">Navigator for Master Documents</link>"
+msgid "Negative numbers in red"
msgstr ""
-#: 02110000.xhp
+#: 05020300.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150603\n"
-"2\n"
+"05020300.xhp\n"
+"par_id3159252\n"
+"14\n"
"help.text"
-msgid "In a <link href=\"text/shared/01/01010001.xhp\">master document</link>, you can switch the Navigator between normal view and master view."
+msgid "<ahelp hid=\"cui/ui/numberformatpage/negnumred\">Changes the font color of negative numbers to red.</ahelp>"
msgstr ""
-#: 02110000.xhp
+#: 05020300.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3148585\n"
-"25\n"
+"05020300.xhp\n"
+"hd_id3147434\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVIGATOR_GLOB_TREELIST\">The Navigator lists the main components of the master document. If you rest the mouse pointer over a name of a sub-document in the list, the full path of the sub-document is displayed.</ahelp>"
-msgstr ""
+msgid "Use thousands separator"
+msgstr "Pa ndarës të mijësheve."
-#: 02110000.xhp
+#: 05020300.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150789\n"
-"3\n"
+"05020300.xhp\n"
+"par_id3146148\n"
+"16\n"
"help.text"
-msgid "The master view in the Navigator displays the following icons:"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/thousands\">Inserts a separator between thousands. The type of separator that is used depends on your language settings.</ahelp>"
msgstr ""
-#: 02110000.xhp
+#: 05020300.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3152542\n"
-"4\n"
+"05020300.xhp\n"
+"hd_id3150103\n"
+"17\n"
"help.text"
-msgid "Toggle"
-msgstr "Kapërce"
+msgid "Format code"
+msgstr "Kodi i karakterit"
-#: 02110000.xhp
+#: 05020300.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3153394\n"
-"5\n"
+"05020300.xhp\n"
+"par_id3159156\n"
+"18\n"
"help.text"
-msgid "Switches between master view and normal view."
+msgid "<ahelp hid=\"cui/ui/numberformatpage/formated\">Displays the number format code for the selected format. You can also enter a custom format.</ahelp> The following options are only available for user-defined number formats."
msgstr ""
-#: 02110000.xhp
+#: 05020300.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3145313\n"
+"05020300.xhp\n"
+"hd_id3155311\n"
+"19\n"
"help.text"
-msgid "<image id=\"img_id3155535\" src=\"sw/imglst/sc20244.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3155535\">Icon</alt></image>"
-msgstr ""
+msgid "Add"
+msgstr "Shto"
-#: 02110000.xhp
+#: 05020300.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3159233\n"
-"6\n"
+"05020300.xhp\n"
+"par_id3147219\n"
+"20\n"
"help.text"
-msgid "Toggle"
-msgstr "Kapërce"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/add\">Adds the number format code that you entered to the user-defined category.</ahelp>"
+msgstr ""
-#: 02110000.xhp
+#: 05020300.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3147275\n"
-"7\n"
+"05020300.xhp\n"
+"hd_id3149263\n"
+"21\n"
"help.text"
-msgid "Edit"
-msgstr "Edito"
+msgid "Delete"
+msgstr "Fshije"
-#: 02110000.xhp
+#: 05020300.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3147242\n"
-"8\n"
+"05020300.xhp\n"
+"par_id3154150\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_EDIT\">Edit the contents of the component selected in the Navigator list. If the selection is a file, the file is opened for editing. If the selection is an index, the index dialog is opened.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/delete\">Deletes the selected number format.</ahelp> The changes are effective after you restart $[officename]."
msgstr ""
-#: 02110000.xhp
+#: 05020300.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3153716\n"
+"05020300.xhp\n"
+"hd_id3153573\n"
+"26\n"
"help.text"
-msgid "<image id=\"img_id3145416\" src=\"sw/imglst/sc20245.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3145416\">Icon</alt></image>"
+msgid "Edit Comment"
+msgstr "Edito komentin..."
+
+#: 05020300.xhp
+msgctxt ""
+"05020300.xhp\n"
+"par_id3083444\n"
+"27\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/edit\">Adds a comment to the selected number format.</ahelp>"
msgstr ""
-#: 02110000.xhp
+#: 05020300.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3149192\n"
-"9\n"
+"05020300.xhp\n"
+"hd_id3150332\n"
+"95\n"
"help.text"
-msgid "Edit"
-msgstr "Edito"
+msgid "Name line"
+msgstr "Stili i linjës"
-#: 02110000.xhp
+#: 05020300.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3150084\n"
-"10\n"
+"05020300.xhp\n"
+"par_id3156060\n"
+"96\n"
"help.text"
-msgid "Update"
-msgstr "Azhuro"
+msgid "<ahelp hid=\"cui/ui/numberformatpage/commented\">Enter a comment for the selected number format, and then click outside this box.</ahelp>"
+msgstr ""
-#: 02110000.xhp
+#: 05020300.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3149164\n"
-"11\n"
+"05020300.xhp\n"
+"par_id3145364\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_UPDATE\">Click and choose the contents that you want to update.</ahelp>"
+msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"Number format codes\">Number format codes</link>"
msgstr ""
-#: 02110000.xhp
+#: 05020300.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3159166\n"
+"05020300.xhp\n"
+"par_id3153095\n"
"help.text"
-msgid "<image id=\"img_id3153146\" src=\"sw/imglst/sc20246.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3153146\">Icon</alt></image>"
+msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"Custom format codes\">Custom format codes</link>"
msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3145086\n"
-"12\n"
+"05020301.xhp\n"
+"tit\n"
"help.text"
-msgid "Update"
-msgstr "Azhuro"
+msgid "Number Format Codes"
+msgstr "Edito formatin e numri"
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3147264\n"
-"28\n"
+"05020301.xhp\n"
+"bm_id3153514\n"
"help.text"
-msgid "Selection"
-msgstr "Selektimet"
+msgid "<bookmark_value>format codes; numbers</bookmark_value><bookmark_value>conditions; in number formats</bookmark_value><bookmark_value>number formats; codes</bookmark_value><bookmark_value>currency formats</bookmark_value><bookmark_value>formats;of currencies/date/time</bookmark_value><bookmark_value>numbers; date, time and currency formats</bookmark_value><bookmark_value>Euro; currency formats</bookmark_value><bookmark_value>date formats</bookmark_value><bookmark_value>times, formats</bookmark_value>"
+msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3147303\n"
-"29\n"
+"05020301.xhp\n"
+"hd_id3153514\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_UPD_SEL\">Updates the contents of the selection.</ahelp>"
+msgid "<variable id=\"zahlenformatcodes\"><link href=\"text/shared/01/05020301.xhp\" name=\"Number Format Codes\">Number Format Codes</link></variable>"
msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3148756\n"
-"30\n"
+"05020301.xhp\n"
+"par_id3150467\n"
+"88\n"
"help.text"
-msgid "Indexes"
-msgstr "Indekset"
+msgid "Number format codes can consist of up to three sections separated by a semicolon (;)."
+msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3156435\n"
-"31\n"
+"05020301.xhp\n"
+"par_id3150146\n"
+"108\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_UPD_IDX\">Updates all indexes.</ahelp>"
+msgid "In a number format code with two sections, the first section applies to positive values and zero, and the second section applies to negative values."
msgstr ""
-#: 02110000.xhp
-#, fuzzy
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3153524\n"
-"32\n"
+"05020301.xhp\n"
+"par_id3158442\n"
+"109\n"
"help.text"
-msgid "Links"
-msgstr "Lidhjet"
+msgid "In a number format code with three sections, the first section applies to positive values, the second section to negative values, and the third section to the value zero."
+msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3154224\n"
-"33\n"
+"05020301.xhp\n"
+"par_id3155069\n"
+"110\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_UPD_LINK\">Updates all links.</ahelp>"
+msgid "You can also assign conditions to the three sections, so that the format is only applied if a condition is met."
msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3154938\n"
-"34\n"
+"05020301.xhp\n"
+"hd_id3151262\n"
+"229\n"
"help.text"
-msgid "All"
-msgstr "Të gjitha"
+msgid "Decimal Places and Significant Digits"
+msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3154154\n"
-"35\n"
+"05020301.xhp\n"
+"par_id3153624\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREEUPD_ALL\">Updates all contents.</ahelp>"
+msgid "Use zero (0) or the number sign (#) as placeholders in your number format code to represent numbers. The (#) only displays significant digits, while the (0) displays zeroes if there are fewer digits in the number than in the number format."
msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3154631\n"
-"48\n"
+"05020301.xhp\n"
+"par_id3153323\n"
+"107\n"
"help.text"
-msgid "Edit link"
-msgstr "Edito Linkun"
+msgid "Use question marks (?) to represent the number of digits to include in the numerator and the denominator of a fraction. Fractions that do not fit the pattern that you define are displayed as floating point numbers."
+msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3153105\n"
-"49\n"
+"05020301.xhp\n"
+"par_id3148440\n"
+"4\n"
"help.text"
-msgid "This command is found by right-clicking an inserted file in the Navigator.<ahelp hid=\"HID_GLBLTREE_EDIT_LINK\">Changes the link properties for the selected file.</ahelp>"
+msgid "If a number contains more digits to the right of the decimal delimiter than there are placeholders in the format, the number is rounded accordingly. If a number contains more digits to the left of the decimal delimiter than there are placeholders in the format, the entire number is displayed. Use the following list as a guide for using placeholders when you create a number format code:"
msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3152933\n"
-"13\n"
+"05020301.xhp\n"
+"par_id3150902\n"
+"86\n"
"help.text"
-msgid "Insert"
-msgstr "Shto"
+msgid "Placeholders"
+msgstr "Vendmbajtëset"
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3147084\n"
-"14\n"
+"05020301.xhp\n"
+"par_id3157896\n"
+"87\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_INSERT\">Inserts a file, an index, or a new document into the master document.</ahelp>"
+msgid "Explanation"
msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3153969\n"
-"57\n"
+"05020301.xhp\n"
+"par_id3152801\n"
+"5\n"
"help.text"
-msgid "You can also insert files into the master document by dragging a file from your desktop and dropping on the master view of the Navigator."
+msgid "#"
msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3153951\n"
+"05020301.xhp\n"
+"par_id3145090\n"
+"6\n"
"help.text"
-msgid "<image id=\"img_id3146984\" src=\"sw/imglst/sc20247.png\" width=\"0.1665in\" height=\"0.1665in\"><alt id=\"alt_id3146984\">Icon</alt></image>"
+msgid "Does not display extra zeros."
msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3150486\n"
-"15\n"
+"05020301.xhp\n"
+"par_id3147088\n"
+"7\n"
"help.text"
-msgid "Insert"
-msgstr "Shto"
+msgid "0 (Zero)"
+msgstr "Vlerat zero"
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3146921\n"
-"36\n"
+"05020301.xhp\n"
+"par_id3150774\n"
+"8\n"
"help.text"
-msgid "Index"
-msgstr "Indeks"
+msgid "Displays extra zeros if the number has less places than zeros in the format."
+msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3149267\n"
-"37\n"
+"05020301.xhp\n"
+"par_idN1087E\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_INS_IDX\">Inserts an index or a table of contents into the master document.</ahelp>"
-msgstr ""
+msgid "Examples"
+msgstr "Shembuj:"
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3155413\n"
-"42\n"
+"05020301.xhp\n"
+"par_id3149182\n"
+"9\n"
"help.text"
-msgid "File"
-msgstr "Fajlli"
+msgid "Number Format"
+msgstr "Formati i numrit"
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3159198\n"
-"43\n"
+"05020301.xhp\n"
+"par_id3154749\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_INS_FILE\">Inserts one or more existing files into the master document.</ahelp>"
-msgstr ""
+msgid "Format Code"
+msgstr "Kodi i karakterit"
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3155856\n"
-"44\n"
+"05020301.xhp\n"
+"par_id3148538\n"
+"11\n"
"help.text"
-msgid "New Document"
-msgstr "Dokument i ri"
+msgid "3456.78 as 3456.8"
+msgstr "Eksporto si PDF..."
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3154321\n"
-"45\n"
+"05020301.xhp\n"
+"par_id3150355\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_INS_NEW_FILE\">Creates and inserts a new sub-document.</ahelp> When you create a new document, you are prompted to enter the file name and the location where you want to save the document."
+msgid "####.#"
msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3154472\n"
-"46\n"
+"05020301.xhp\n"
+"par_id3154142\n"
+"13\n"
"help.text"
-msgid "Text"
-msgstr "Tekst"
+msgid "9.9 as 9.900"
+msgstr "Si Objekt"
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3163712\n"
-"47\n"
+"05020301.xhp\n"
+"par_id3159256\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_INS_TEXT\">Inserts a new paragraph in the master document where you can enter text. You cannot insert text next to an existing text entry in the Navigator.</ahelp>"
+msgid "#.000"
msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3154640\n"
-"16\n"
+"05020301.xhp\n"
+"par_id3147077\n"
+"15\n"
"help.text"
-msgid "Save Contents as well"
-msgstr "Ruaji përmbajtjet gjithashtu"
+msgid "13 as 13.0 and 1234.567 as 1234.57"
+msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3149666\n"
-"17\n"
+"05020301.xhp\n"
+"par_id3155388\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_TBX21\">Saves a copy of the contents of the linked files in the master document. This ensures that the current contents are available when the linked files cannot be accessed.</ahelp>"
+msgid "#.0#"
msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3151351\n"
+"05020301.xhp\n"
+"par_id3149578\n"
+"17\n"
"help.text"
-msgid "<image id=\"img_id3152885\" src=\"sw/imglst/sc20248.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3152885\">Icon</alt></image>"
+msgid "5.75 as 5 3/4 and 6.3 as 6 3/10"
msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3157974\n"
+"05020301.xhp\n"
+"par_id3145315\n"
"18\n"
"help.text"
-msgid "Save Contents as well"
-msgstr "Ruaji përmbajtjet gjithashtu"
+msgid "# ???/???"
+msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3154096\n"
+"05020301.xhp\n"
+"par_id3156152\n"
"19\n"
"help.text"
-msgid "Move Down"
-msgstr "Lëviz poshtë"
+msgid ".5 as 0.5"
+msgstr "Si Objekt"
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3155852\n"
+"05020301.xhp\n"
+"par_id3149762\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_TBX23\">Moves the selection down one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
+msgid "0.##"
msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3154790\n"
+"05020301.xhp\n"
+"hd_id3149276\n"
+"230\n"
"help.text"
-msgid "<image id=\"img_id3166413\" src=\"sw/imglst/sc20171.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3166413\">Icon</alt></image>"
-msgstr ""
+msgid "Thousands Separator"
+msgstr "Ndarës i mijësheve"
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3149417\n"
+"05020301.xhp\n"
+"par_id3154380\n"
"21\n"
"help.text"
-msgid "Move Down"
-msgstr "Lëviz poshtë"
+msgid "Depending on your language setting, you can use a comma or a period as a thousands separator. You can also use the separator to reduce the size of the number that is displayed by a multiple of 1000."
+msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3147124\n"
+"05020301.xhp\n"
+"par_id3154905\n"
"22\n"
"help.text"
-msgid "Move Up"
-msgstr "Lëviz sipër"
+msgid "Number Format"
+msgstr "Formati i numrit"
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3146927\n"
+"05020301.xhp\n"
+"par_id3150822\n"
"23\n"
"help.text"
-msgid "<ahelp hid=\"HID_NAVI_TBX22\">Moves the selection up one position in the Navigator list.</ahelp> You can also move entries by dragging and dropping them in the list. If you move a text section onto another text section, the text sections are merged."
-msgstr ""
+msgid "Format Code"
+msgstr "Kodi i karakterit"
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3156178\n"
+"05020301.xhp\n"
+"par_id3147264\n"
+"24\n"
"help.text"
-msgid "<image id=\"img_id3155083\" src=\"sw/imglst/sc20174.png\" width=\"0.2228in\" height=\"0.2228in\"><alt id=\"alt_id3155083\">Icon</alt></image>"
+msgid "15000 as 15,000"
msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3147257\n"
-"24\n"
+"05020301.xhp\n"
+"par_id3151223\n"
+"25\n"
"help.text"
-msgid "Move Up"
-msgstr "Lëviz sipër"
+msgid "#,###"
+msgstr ""
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"hd_id3148566\n"
+"05020301.xhp\n"
+"par_id3154935\n"
"26\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "16000 as 16"
+msgstr "Eksporto si PDF..."
-#: 02110000.xhp
+#: 05020301.xhp
msgctxt ""
-"02110000.xhp\n"
-"par_id3153099\n"
+"05020301.xhp\n"
+"par_id3153961\n"
"27\n"
"help.text"
-msgid "<ahelp hid=\"HID_GLBLTREE_DEL\">Deletes the selection from the Navigator list.</ahelp>"
+msgid "#,"
msgstr ""
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"hd_id3154836\n"
+"79\n"
"help.text"
-msgid "Bibliography Database"
-msgstr "Të Dhëna Bazë Bibliografike"
+msgid "Including Text in Number Format Codes"
+msgstr "Këmben një numër në tekst në format valute."
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"hd_id3150999\n"
-"1\n"
+"05020301.xhp\n"
+"hd_id3150398\n"
+"231\n"
"help.text"
-msgid "<link href=\"text/shared/01/02250000.xhp\" name=\"Bibliography Database\">Bibliography Database</link>"
-msgstr ""
+msgid "Text and Numbers"
+msgstr "Teksti Perëndimor dhe pikëzimi Aziatik"
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3149119\n"
-"2\n"
+"05020301.xhp\n"
+"par_id3154224\n"
+"80\n"
"help.text"
-msgid "<variable id=\"litdattext\"><ahelp hid=\"HID_BIB_DB_TBX\">Insert, delete, edit, and organize records in the bibliography database.</ahelp></variable>"
+msgid "To include text in a number format that is applied to a cell containing numbers, place a double quotation mark (\") in front of and behind the text, or a backslash (\\) before a single character. For example, enter <emph>#.# \"meters\"</emph> to display \"3.5 meters\" or <emph>#.# \\m</emph> to display \"3.5 m\"."
msgstr ""
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3149346\n"
-"53\n"
+"05020301.xhp\n"
+"hd_id3148979\n"
+"232\n"
"help.text"
-msgid "If the fields in your database are read-only, ensure that the data source view is closed."
-msgstr ""
+msgid "Text and Text"
+msgstr "DHE logjike"
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3150506\n"
-"41\n"
+"05020301.xhp\n"
+"par_id3153338\n"
+"82\n"
"help.text"
-msgid "The supplied bibliography database contains sample records of books."
+msgid "To include text in a number format that is applied to a cell that might contain text, enclose the text by double quotation marks (\" \"), and then add an at sign (@). For example, enter <emph>\"Total for \"@</emph> to display \"Total for December\"."
msgstr ""
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3155356\n"
-"4\n"
+"05020301.xhp\n"
+"hd_id3154330\n"
+"233\n"
"help.text"
-msgid "Use the toolbar to select a table in the bibliography database, to search for records, or to sort the records using filters."
-msgstr ""
+msgid "Spaces"
+msgstr "Tabet dhe hapësirat"
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3163802\n"
-"21\n"
+"05020301.xhp\n"
+"par_id3156294\n"
+"81\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Lists the available tables in the current database. Click a name in the list to display the records for that table.</ahelp>"
+msgid "To use a character to define the width of a space in a number format, type an underscore ( _ ) followed by the character. The width of the space varies according to the width of the character that you choose. For example, <emph>_M</emph> creates a wider space than <emph>_i</emph>."
msgstr ""
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3158432\n"
-"24\n"
+"05020301.xhp\n"
+"hd_id3155994\n"
+"234\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Go to the first record in the table.</ahelp>"
-msgstr ""
+msgid "Color"
+msgstr "Ngjyra"
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3149192\n"
-"25\n"
+"05020301.xhp\n"
+"par_id3156423\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Go to the previous record in the table.</ahelp>"
+msgid "To set the color of a section of a number format code, insert one of the following color names in square brackets [ ]:"
msgstr ""
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3146795\n"
-"26\n"
+"05020301.xhp\n"
+"par_id3154630\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Go to the next record in the table.</ahelp>"
-msgstr ""
+msgid "CYAN"
+msgstr "Cian"
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3144760\n"
-"27\n"
+"05020301.xhp\n"
+"par_id3148676\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Go to the last record in the table.</ahelp>"
-msgstr ""
+msgid "GREEN"
+msgstr "Gjelbërt"
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3157960\n"
+"05020301.xhp\n"
+"par_id3154123\n"
"31\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Type the number of the record that you want to display, and then press Enter.</ahelp>"
-msgstr ""
+msgid "BLACK"
+msgstr "Zi"
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"hd_id3150868\n"
-"5\n"
+"05020301.xhp\n"
+"par_id3149167\n"
+"32\n"
"help.text"
-msgid "Inserting a New Record"
-msgstr "Mbroje regjistrin e ndryshimeve"
+msgid "BLUE"
+msgstr "Kaltër"
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3149168\n"
-"6\n"
+"05020301.xhp\n"
+"par_id3158407\n"
+"33\n"
"help.text"
-msgid "<ahelp hid=\"HID_GRID_TRAVEL_NEW\" visibility=\"hidden\">Inserts a new record into the current table.</ahelp> To create a record, click the asterisk (*) button at the bottom of the table view. An empty row is added at the end of the table."
-msgstr ""
+msgid "MAGENTA"
+msgstr "Magjenta"
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3152920\n"
-"7\n"
+"05020301.xhp\n"
+"par_id3149560\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the type of record that you want to create. $[officename] inserts a number in the <emph>Type</emph> column of the record that corresponds to the type that you select here.</ahelp>"
-msgstr ""
+msgid "RED"
+msgstr "Kuq"
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3156423\n"
-"32\n"
+"05020301.xhp\n"
+"par_id3147502\n"
+"35\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter a short name for the record. The short name appears in the <emph>Identifier</emph> column in the list of records.</ahelp>"
-msgstr ""
+msgid "WHITE"
+msgstr "Bardhë"
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3155994\n"
-"8\n"
+"05020301.xhp\n"
+"par_id3153368\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter additional information for the selected record. If you want, you can also enter the information in the corresponding field in the table.</ahelp>"
-msgstr ""
+msgid "YELLOW"
+msgstr "Verdhë"
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"hd_id3163716\n"
-"9\n"
+"05020301.xhp\n"
+"hd_id3147435\n"
+"111\n"
"help.text"
-msgid "Finding and Filtering Records"
-msgstr ""
+msgid "Conditions"
+msgstr "Duke vlerësuar kushtet e lansimit"
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3147478\n"
-"10\n"
+"05020301.xhp\n"
+"hd_id3148575\n"
+"235\n"
"help.text"
-msgid "You can search for records by matching a keyword to a field entry."
-msgstr ""
+msgid "Conditional Brackets"
+msgstr "Kllapa të vogla"
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"hd_id3159181\n"
-"28\n"
+"05020301.xhp\n"
+"par_id3155312\n"
+"112\n"
"help.text"
-msgid "Entering Search key"
-msgstr "Çelësi i kërkimit nuk është gjetur"
+msgid "You can define a number format so that it only applies when the condition that you specify is met. Conditions are enclosed by square brackets [ ]."
+msgstr ""
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3159125\n"
-"11\n"
+"05020301.xhp\n"
+"par_id3159179\n"
+"115\n"
"help.text"
-msgid "<ahelp hid=\".uno:Bib/query\">Type the information that you want to search for, and then press Enter. To change the filter options for the search, long-click the <emph>AutoFilter</emph> icon, and then select a different data field. You can use wildcards such as % or * for any number of characters, and _ or ? for one character in your search. To display all of the records in the table, clear this box, and then press Enter. </ahelp>"
+msgid "You can use any combination of numbers and the <, <=, >, >=, = and <> operators."
msgstr ""
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"hd_id3155511\n"
-"29\n"
+"05020301.xhp\n"
+"par_id3159196\n"
+"236\n"
"help.text"
-msgid "AutoFilter"
-msgstr "AutoFiltër"
+msgid "For example, if you want to apply different colors to different temperature data, enter:"
+msgstr ""
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3146975\n"
-"14\n"
+"05020301.xhp\n"
+"par_id3150872\n"
+"113\n"
"help.text"
-msgid "<ahelp hid=\".uno:Bib/autoFilter\">Long-click to select the data field that you want to search using the term that you entered in the <emph>Search Key</emph> box. You can only search one data field.</ahelp>"
+msgid "[BLUE][<0]#,0 \"°C\";[RED][>30]#,0 \"°C\";[BLACK]#,0 \"°C\""
msgstr ""
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3149664\n"
-"15\n"
+"05020301.xhp\n"
+"par_id3157870\n"
+"114\n"
"help.text"
-msgid "The list of table records is automatically updated to match the new filter settings."
+msgid "All temperatures below zero are blue, temperatures between 0 and 30 °C are black, and temperatures higher than 30 °C are red."
msgstr ""
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3145590\n"
-"30\n"
+"05020301.xhp\n"
+"hd_id3154833\n"
+"90\n"
"help.text"
-msgid "<ahelp hid=\".\">Use the <emph>Standard Filter</emph> to refine and to combine <emph>AutoFilter </emph>search options.</ahelp>"
+msgid "Positive and Negative Numbers"
msgstr ""
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3155311\n"
-"16\n"
+"05020301.xhp\n"
+"par_id3147295\n"
+"91\n"
"help.text"
-msgid "<ahelp hid=\".\">To display all of the records in a table, click the <emph>Remove Filter</emph> icon.</ahelp>"
+msgid "To define a number format that adds a different text to a number depending on if the number is positive, negative, or equal to zero, use the following format:"
msgstr ""
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"hd_id3147580\n"
-"17\n"
+"05020301.xhp\n"
+"par_id3153727\n"
+"92\n"
"help.text"
-msgid "Deleting a Record"
-msgstr "Numri i regjistrimit"
+msgid "\"plus\" 0;\"minus\" 0;\"null\" 0"
+msgstr "Përmbajtja e fushës është ~NULL"
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3154471\n"
-"18\n"
+"05020301.xhp\n"
+"hd_id3149260\n"
+"83\n"
"help.text"
-msgid "To delete a record in the current table, right-click the row header of the record, and then select <emph>Delete</emph>. <ahelp hid=\"SID_FM_DELETEROWS\" visibility=\"hidden\">Deletes the selected record.</ahelp>"
+msgid "Percentages and Scientific Notation"
msgstr ""
-#: 02250000.xhp
-msgctxt ""
-"02250000.xhp\n"
-"hd_id3152941\n"
-"33\n"
-"help.text"
-msgid "Changing the data source"
-msgstr "Lidhja me burimin e të dhënave"
-
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"hd_id3147214\n"
-"38\n"
+"05020301.xhp\n"
+"hd_id3147218\n"
+"237\n"
"help.text"
-msgid "Data Source"
-msgstr "Burim i të Dhënave"
+msgid "Percentages"
+msgstr ""
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3151118\n"
-"39\n"
+"05020301.xhp\n"
+"par_id3151168\n"
+"84\n"
"help.text"
-msgid "<ahelp hid=\".uno:Bib/sdbsource\">Select the data source for the bibliography database.</ahelp>"
+msgid "To display numbers as percentages, add the percent sign (%) to the number format."
msgstr ""
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"hd_id3145645\n"
-"35\n"
+"05020301.xhp\n"
+"hd_id3156005\n"
+"89\n"
"help.text"
-msgid "Column Arrangement"
-msgstr "Aranzhimi i Kolonave"
+msgid "Scientific Notation"
+msgstr ""
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3151282\n"
-"36\n"
+"05020301.xhp\n"
+"par_id3146923\n"
+"85\n"
"help.text"
-msgid "<ahelp hid=\".uno:Bib/Mapping\">Lets you map the column headings to data fields from a different data source. To define a different data source for your bibliography, click the<emph> Data Source</emph> button on the record<emph> Object Bar</emph>.</ahelp>"
+msgid "Scientific notation lets you write very large numbers or very small fractions in a compact form. For example, in scientific notation, 650000 is written as 6.5 x 10^5, and 0.000065 as 6.5 x 10^-5. In <item type=\"productname\">%PRODUCTNAME</item>, these numbers are written as 6.5E+5 and 6.5E-5, respectively. To create a number format that displays numbers using scientific notation, enter a # or 0, and then one of the following codes E-, E+, e- or e+."
msgstr ""
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3144767\n"
-"37\n"
+"05020301.xhp\n"
+"hd_id3159080\n"
+"98\n"
"help.text"
-msgid "<ahelp hid=\"BIB_LISTBOX_RID_DLG_MAPPING_LB_CUSTOM4\">Select the data field that you want to map to the current <emph>Column name</emph>. To change the available data fields, select a different data source for your bibliography.</ahelp>"
-msgstr ""
+msgid "Number Format Codes of Currency Formats"
+msgstr "Këmben një numër në tekst në format valute."
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3153947\n"
-"48\n"
+"05020301.xhp\n"
+"par_id3147318\n"
+"99\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Deletes the current record.</ahelp>"
+msgid "The default currency format for the cells in your spreadsheet is determined by the regional setting of your operating system. If you want, you can apply a custom currency symbol to a cell. For example, enter #,##0.00 € to display 4.50 € (Euros)."
msgstr ""
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3151019\n"
-"52\n"
+"05020301.xhp\n"
+"par_id3150032\n"
+"167\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Lets you choose a different data source for your bibliography.</ahelp>"
+msgid "You can also specify the locale setting for the currency by entering the locale code for the country after the symbol. For example, [$€-407] represents Euros in Germany. To view the locale code for a country, select the country in the <emph>Language</emph> list on the <emph>Numbers</emph> tab of the <emph>Format Cells</emph> dialog."
msgstr ""
-#: 02250000.xhp
+#: 05020301.xhp
msgctxt ""
-"02250000.xhp\n"
-"par_id3153730\n"
-"50\n"
+"05020301.xhp\n"
+"hd_id3157309\n"
+"238\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Inserts a new record into the current table.</ahelp>"
-msgstr ""
+msgid "Date and Time Formats"
+msgstr "Fusha e datës dhe kohës"
-#: 06130001.xhp
+#: 05020301.xhp
msgctxt ""
-"06130001.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"hd_id3153740\n"
+"37\n"
"help.text"
-msgid "Macros"
-msgstr "Makrot"
+msgid "Date Formats"
+msgstr "(Të gjitha formatet)"
-#: 06130001.xhp
+#: 05020301.xhp
msgctxt ""
-"06130001.xhp\n"
-"hd_id3152414\n"
-"1\n"
+"05020301.xhp\n"
+"par_id3152791\n"
+"38\n"
"help.text"
-msgid "<link href=\"text/shared/01/06130001.xhp\" name=\"Macros\">Macros</link>"
+msgid "To display days, months and years, use the following number format codes."
msgstr ""
-#: 06130001.xhp
+#: 05020301.xhp
msgctxt ""
-"06130001.xhp\n"
-"par_id3150008\n"
-"3\n"
+"05020301.xhp\n"
+"par_id610980\n"
"help.text"
-msgid "Lets you record or organize and edit macros."
+msgid "Not all format codes give meaningful results for all languages."
msgstr ""
-#: 06130001.xhp
+#: 05020301.xhp
msgctxt ""
-"06130001.xhp\n"
-"par_idN105B1\n"
+"05020301.xhp\n"
+"par_id3152376\n"
+"39\n"
"help.text"
-msgid "<link href=\"text/shared/01/06130000.xhp\">Run Macro</link>"
-msgstr ""
+msgid "Format"
+msgstr "Formati"
-#: 06130001.xhp
+#: 05020301.xhp
msgctxt ""
-"06130001.xhp\n"
-"par_idN105EB\n"
+"05020301.xhp\n"
+"par_id3159130\n"
+"40\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog where you can start a macro.</ahelp>"
-msgstr ""
+msgid "Format Code"
+msgstr "Kodi i karakterit"
-#: 06130001.xhp
+#: 05020301.xhp
msgctxt ""
-"06130001.xhp\n"
-"par_idN10608\n"
+"05020301.xhp\n"
+"par_id3147380\n"
+"41\n"
"help.text"
-msgid "<link href=\"text/shared/01/digitalsignatures.xhp\">Digital Signature</link>"
-msgstr ""
+msgid "Month as 3."
+msgstr "Si Objekt"
-#: 06130001.xhp
+#: 05020301.xhp
msgctxt ""
-"06130001.xhp\n"
-"par_idN10618\n"
+"05020301.xhp\n"
+"par_id3146928\n"
+"42\n"
"help.text"
-msgid "<ahelp hid=\".\">Adds and removes digital signatures to and from your macros. You can also use the dialog to view certificates.</ahelp>"
+msgid "M"
msgstr ""
-#: 06130001.xhp
+#: 05020301.xhp
msgctxt ""
-"06130001.xhp\n"
-"par_idN105D3\n"
+"05020301.xhp\n"
+"par_id3145594\n"
+"43\n"
"help.text"
-msgid "<link href=\"text/shared/01/06130000.xhp\">Organize Dialogs</link>"
-msgstr ""
+msgid "Month as 03."
+msgstr "Asia/Novosibirsk"
-#: 06130001.xhp
+#: 05020301.xhp
msgctxt ""
-"06130001.xhp\n"
-"par_idN105E3\n"
+"05020301.xhp\n"
+"par_id3153052\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the Dialogs tab page of the Macro Organizer.</ahelp>"
-msgstr ""
+msgid "MM"
+msgstr "0 mm"
-#: 05340200.xhp
+#: 05020301.xhp
msgctxt ""
-"05340200.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id3145728\n"
+"45\n"
"help.text"
-msgid "Column width"
-msgstr "Gjerësia e kolonës"
+msgid "Month as Jan-Dec"
+msgstr ""
-#: 05340200.xhp
+#: 05020301.xhp
msgctxt ""
-"05340200.xhp\n"
-"hd_id3158397\n"
-"1\n"
+"05020301.xhp\n"
+"par_id3151073\n"
+"46\n"
"help.text"
-msgid "Column width"
-msgstr "Gjerësia e kolonës"
+msgid "MMM"
+msgstr ""
-#: 05340200.xhp
+#: 05020301.xhp
msgctxt ""
-"05340200.xhp\n"
-"par_id3153272\n"
-"2\n"
+"05020301.xhp\n"
+"par_id3149909\n"
+"47\n"
"help.text"
-msgid "<variable id=\"spaltetext\"><ahelp hid=\"HID_BROWSER_COLUMNWIDTH\" visibility=\"visible\">Changes the width of the current column, or the selected columns.</ahelp></variable>"
+msgid "Month as January-December"
msgstr ""
-#: 05340200.xhp
+#: 05020301.xhp
msgctxt ""
-"05340200.xhp\n"
-"par_id3152821\n"
-"7\n"
+"05020301.xhp\n"
+"par_id3155318\n"
+"48\n"
"help.text"
-msgid "You can also change the width of a column by dragging the divider beside the column header.<switchinline select=\"appl\"> <caseinline select=\"CALC\"> To fit the column width to the cell contents, double-click the divider.</caseinline> </switchinline>"
+msgid "MMMM"
msgstr ""
-#: 05340200.xhp
+#: 05020301.xhp
msgctxt ""
-"05340200.xhp\n"
-"hd_id3149346\n"
-"3\n"
+"05020301.xhp\n"
+"par_id3151218\n"
+"116\n"
"help.text"
-msgid "Width"
-msgstr "Gjerësia"
+msgid "First letter of Name of Month"
+msgstr "Emri/ Mbiemri/Inicialet"
-#: 05340200.xhp
+#: 05020301.xhp
msgctxt ""
-"05340200.xhp\n"
-"par_id3147576\n"
-"4\n"
+"05020301.xhp\n"
+"par_id3150420\n"
+"117\n"
"help.text"
-msgid "<ahelp hid=\"DBACCESS_METRICFIELD_DLG_COLWIDTH_MF_VALUE\" visibility=\"visible\">Enter the column width that you want to use.</ahelp>"
+msgid "MMMMM"
msgstr ""
-#: 05340200.xhp
+#: 05020301.xhp
msgctxt ""
-"05340200.xhp\n"
-"hd_id3148621\n"
-"5\n"
+"05020301.xhp\n"
+"par_id3154501\n"
+"49\n"
"help.text"
-msgid "<switchinline select=\"appl\"> <caseinline select=\"CALC\">Default value</caseinline> <defaultinline>Automatic</defaultinline> </switchinline>"
-msgstr ""
+msgid "Day as 2"
+msgstr "Si Objekt"
-#: 05340200.xhp
+#: 05020301.xhp
msgctxt ""
-"05340200.xhp\n"
-"par_id3147008\n"
-"6\n"
+"05020301.xhp\n"
+"par_id3156181\n"
+"50\n"
"help.text"
-msgid "<ahelp hid=\"DBACCESS_CHECKBOX_DLG_COLWIDTH_CB_STANDARD\" visibility=\"visible\">Automatically adjusts the column width based on the current font.</ahelp>"
+msgid "D"
msgstr ""
-#: 06050400.xhp
+#: 05020301.xhp
msgctxt ""
-"06050400.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id3146969\n"
+"51\n"
"help.text"
-msgid "Graphics"
-msgstr "Grafikat"
+msgid "Day as 02"
+msgstr "Asia/Yekaterinburg"
-#: 06050400.xhp
+#: 05020301.xhp
msgctxt ""
-"06050400.xhp\n"
-"hd_id0611200904373284\n"
+"05020301.xhp\n"
+"par_id3156358\n"
+"52\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050400.xhp\" name=\"Graphics\">Graphics</link>"
-msgstr ""
+msgid "DD"
+msgstr "DDE"
-#: 06050400.xhp
+#: 05020301.xhp
msgctxt ""
-"06050400.xhp\n"
-"par_id0611200904373226\n"
+"05020301.xhp\n"
+"par_id3148495\n"
+"53\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the different graphics that you can use as bullets in a bulleted list.</ahelp>"
+msgid "Day as Sun-Sat"
msgstr ""
-#: 06050400.xhp
+#: 05020301.xhp
msgctxt ""
-"06050400.xhp\n"
-"hd_id0611200904361573\n"
+"05020301.xhp\n"
+"par_id3161665\n"
+"54\n"
"help.text"
-msgid "Selection"
-msgstr "Selektimet"
+msgid "NN or DDD"
+msgstr "~Prano ose Refuzo..."
-#: 06050400.xhp
+#: 05020301.xhp
msgctxt ""
-"06050400.xhp\n"
-"par_id061120090436150\n"
+"05020301.xhp\n"
+"par_id3154272\n"
+"118\n"
"help.text"
-msgid "<ahelp hid=\".\">Click the graphics that you want to use as bullets.</ahelp>"
+msgid "Day as Sunday to Saturday"
msgstr ""
-#: 06050400.xhp
-msgctxt ""
-"06050400.xhp\n"
-"hd_id061120090436157\n"
-"help.text"
-msgid "Link graphics"
-msgstr "Grafikat e lidhura"
-
-#: 06050400.xhp
+#: 05020301.xhp
msgctxt ""
-"06050400.xhp\n"
-"par_id0611200904361575\n"
+"05020301.xhp\n"
+"par_id3145164\n"
+"119\n"
"help.text"
-msgid "<ahelp hid=\".\">If enabled, the graphics are inserted as links. If not enabled, the graphics are embedded into the document.</ahelp>"
-msgstr ""
+msgid "NNN or DDDD"
+msgstr "~Prano ose Refuzo..."
-#: 06050400.xhp
+#: 05020301.xhp
msgctxt ""
-"06050400.xhp\n"
-"par_id061120090437338\n"
+"05020301.xhp\n"
+"par_id3146791\n"
+"55\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position tab (Numbering/Bullets dialog)\">Position tab (Bullets and Numbering dialog)</link>"
+msgid "Day followed by comma, as in \"Sunday,\""
msgstr ""
-#: 06050400.xhp
+#: 05020301.xhp
msgctxt ""
-"06050400.xhp\n"
-"par_id0611200904373391\n"
+"05020301.xhp\n"
+"par_id3146081\n"
+"56\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Options tab (Bullets and Numbering dialog)</link>"
+msgid "NNNN"
msgstr ""
-#: 05070600.xhp
+#: 05020301.xhp
msgctxt ""
-"05070600.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id3156275\n"
+"57\n"
"help.text"
-msgid "Align Bottom"
-msgstr "Rreshto poshtë"
+msgid "Year as 00-99"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 05070600.xhp
+#: 05020301.xhp
msgctxt ""
-"05070600.xhp\n"
-"hd_id3153383\n"
-"1\n"
+"05020301.xhp\n"
+"par_id3143236\n"
+"58\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070600.xhp\" name=\"Align Bottom\">Align Bottom</link>"
+msgid "YY"
msgstr ""
-#: 05070600.xhp
+#: 05020301.xhp
msgctxt ""
-"05070600.xhp\n"
-"par_id3154613\n"
-"2\n"
+"05020301.xhp\n"
+"par_id3148408\n"
+"59\n"
"help.text"
-msgid "<ahelp hid=\".\">Vertically aligns the bottom edges of the selected objects. If only one object is selected in Draw or Impress, the bottom edge of the object is aligned to the lower page margin.</ahelp>"
-msgstr ""
+msgid "Year as 1900-2078"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 05070600.xhp
+#: 05020301.xhp
msgctxt ""
-"05070600.xhp\n"
-"par_id3151330\n"
-"4\n"
+"05020301.xhp\n"
+"par_id3151358\n"
+"60\n"
"help.text"
-msgid "Objects are aligned to the bottom edge of the bottom most object in the selection. <embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
+msgid "YYYY"
msgstr ""
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id3153355\n"
+"96\n"
"help.text"
-msgid "Keyboard"
-msgstr "Tastiera"
+msgid "Calendar week"
+msgstr "CDE-Kalendar-Fajll"
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"bm_id2322763\n"
+"05020301.xhp\n"
+"par_id3150744\n"
+"97\n"
"help.text"
-msgid "<bookmark_value>keyboard;assigning/editing shortcut keys</bookmark_value><bookmark_value>customizing;keyboard</bookmark_value><bookmark_value>editing;shortcut keys</bookmark_value><bookmark_value>styles;keyboard shortcuts</bookmark_value>"
+msgid "WW"
msgstr ""
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3148882\n"
-"1\n"
+"05020301.xhp\n"
+"par_id3154302\n"
+"103\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"Keyboard\">Keyboard</link>"
+msgid "Quarterly as Q1 to Q4"
msgstr ""
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3159411\n"
-"2\n"
+"05020301.xhp\n"
+"par_id3159266\n"
+"104\n"
"help.text"
-msgid "<ahelp hid=\"HID_CONFIG_ACCEL\">Assigns or edits the shortcut keys for $[officename] commands, or $[officename] Basic macros.</ahelp>"
+msgid "Q"
msgstr ""
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3154682\n"
-"21\n"
+"05020301.xhp\n"
+"par_id3147583\n"
+"105\n"
"help.text"
-msgid "You can assign or edit shortcut keys for the current application or for all $[officename] applications."
+msgid "Quarterly as 1st quarter to 4th quarter"
msgstr ""
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3150144\n"
-"29\n"
+"05020301.xhp\n"
+"par_id3146918\n"
+"106\n"
"help.text"
-msgid "Avoid assigning shortcut keys that are currently used by your operating system."
+msgid "QQ"
msgstr ""
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3147250\n"
-"27\n"
+"05020301.xhp\n"
+"par_id3147534\n"
+"120\n"
"help.text"
-msgid "$[officename]"
+msgid "Era on the Japanese Gengou calendar, single character (possible values are: M, T, S, H)"
msgstr ""
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3152425\n"
-"26\n"
+"05020301.xhp\n"
+"par_id3151249\n"
+"121\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_RADIOBUTTON_TP_CONFIG_ACCEL_RB_OFFICE\">Displays shortcut keys that are common to all $[officename] applications.</ahelp>"
+msgid "G"
msgstr ""
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3149095\n"
-"25\n"
+"05020301.xhp\n"
+"par_id3163806\n"
+"122\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Writer</caseinline><caseinline select=\"CALC\">Calc</caseinline><caseinline select=\"IMPRESS\">Impress</caseinline><caseinline select=\"DRAW\">Draw</caseinline><caseinline select=\"MATH\">Math</caseinline></switchinline>"
+msgid "Era, abbreviation"
msgstr ""
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3155892\n"
-"24\n"
+"05020301.xhp\n"
+"par_id3155962\n"
+"123\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_RADIOBUTTON_TP_CONFIG_ACCEL_RB_MODULE\">Displays shortcut keys for the current $[officename] application.</ahelp>"
+msgid "GG"
msgstr ""
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3149398\n"
-"3\n"
+"05020301.xhp\n"
+"par_id3151187\n"
+"124\n"
"help.text"
-msgid "Shortcut keys"
-msgstr "Tastet përshpejtuese"
+msgid "Era, full name"
+msgstr "Emri i plotë për përdoruesin e ri:"
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3149811\n"
-"4\n"
+"05020301.xhp\n"
+"par_id3149568\n"
+"125\n"
"help.text"
-msgid "<ahelp hid=\"HID_ACCELCONFIG_LISTBOX\">Lists the shortcut keys and the associated commands. To assign or modify the shortcut key for the command selected in the <emph>Function</emph> list, click a shortcut in this list, and then click <emph>Modify</emph>.</ahelp>"
+msgid "GGG"
msgstr ""
-#: 06140200.xhp
-msgctxt ""
-"06140200.xhp\n"
-"hd_id3157909\n"
-"5\n"
-"help.text"
-msgid "Functions"
-msgstr "Funksionet"
-
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3155388\n"
-"6\n"
+"05020301.xhp\n"
+"par_id3147344\n"
+"126\n"
"help.text"
-msgid "Lists the function categories and the $[officename] functions that you can assign shortcut keys to."
+msgid "Number of the year within an era, without a leading zero for single-digit years"
msgstr ""
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3155321\n"
-"7\n"
+"05020301.xhp\n"
+"par_id3147255\n"
+"127\n"
"help.text"
-msgid "Category"
-msgstr "Kategori"
+msgid "E"
+msgstr ""
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3149166\n"
-"8\n"
+"05020301.xhp\n"
+"par_id3148487\n"
+"128\n"
"help.text"
-msgid "<ahelp hid=\"HID_CONFIGGROUP_ACC_LISTBOX\">Lists the available function categories. To assign shortcuts to Styles, open the \"Styles\" category.</ahelp>"
+msgid "Number of the year within an era, with a leading zero for single-digit years"
msgstr ""
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3154380\n"
-"9\n"
+"05020301.xhp\n"
+"par_id3150298\n"
+"129\n"
"help.text"
-msgid "Function"
-msgstr "Funksioni"
+msgid "EE or R"
+msgstr "OSE logjike"
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3159148\n"
-"10\n"
+"05020301.xhp\n"
+"par_id3152861\n"
+"138\n"
"help.text"
-msgid "<ahelp hid=\"HID_CONFIGFUNCTION_ACC_LISTBOX\">Select a function that you want to assign a shortcut key to, click a key combination in the <emph>Shortcut keys</emph> list, and then click <emph>Modify</emph>. If the selected function already has a shortcut key, it is displayed in the <emph>Keys </emph>list.</ahelp>"
+msgid "Era, full name and year"
msgstr ""
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3153332\n"
-"11\n"
+"05020301.xhp\n"
+"par_id3149926\n"
+"139\n"
"help.text"
-msgid "Keys"
-msgstr "Tastet"
+msgid "RR or GGGEE"
+msgstr "~Prano ose Refuzo..."
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3150084\n"
-"12\n"
+"05020301.xhp\n"
+"par_id1002200811423518\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:LISTBOX:TP_CONFIG_ACCEL:BOX_ACC_KEY\">Displays the shortcut keys that are assigned to the selected function.</ahelp>"
+msgid "The above listed formatting codes work with your language version of %PRODUCTNAME. However, when you need to switch the locale of %PRODUCTNAME to another locale, you will need to know the formatting codes used in that other locale."
msgstr ""
-#: 06140200.xhp
-msgctxt ""
-"06140200.xhp\n"
-"hd_id3150772\n"
-"15\n"
-"help.text"
-msgid "Modify"
-msgstr "Modifiko"
-
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3152909\n"
-"16\n"
+"05020301.xhp\n"
+"par_id1002200811423556\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_ACCEL:BTN_ACC_CHANGE\">Assigns the key combination selected in the <emph>Shortcut keys</emph> list to the command selected in the <emph>Function </emph>list.</ahelp>"
+msgid "For example, if your software is set to an English locale, and you want to format a year with four digits, you enter YYYY as a formatting code. When you switch to a German locale, you must use JJJJ instead. The following table lists only the localized differences."
msgstr ""
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id7730033\n"
+"05020301.xhp\n"
+"par_id1002200811563044\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected element or elements without requiring confirmation.</ahelp>"
-msgstr ""
+msgid "Locale"
+msgstr "Zgjidh lokalizimin:"
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3154307\n"
-"17\n"
+"05020301.xhp\n"
+"par_id1002200811563137\n"
"help.text"
-msgid "Load"
-msgstr "Ngarko"
+msgid "Year"
+msgstr "Viti"
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3145609\n"
-"18\n"
+"05020301.xhp\n"
+"par_id1002200811563164\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_ACCEL:BTN_LOAD\">Replaces the shortcut key configuration with one that was previously saved.</ahelp>"
-msgstr ""
+msgid "Month"
+msgstr "Muaj"
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3150823\n"
-"19\n"
+"05020301.xhp\n"
+"par_id1002200811563128\n"
"help.text"
-msgid "Save"
-msgstr "Ruaje"
+msgid "Day"
+msgstr "Dita"
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id3149655\n"
-"20\n"
+"05020301.xhp\n"
+"par_id1002200811563135\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_ACCEL:BTN_SAVE\">Saves the current shortcut key configuration, so that you can load it later.</ahelp>"
-msgstr ""
+msgid "Hour"
+msgstr "ORA"
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"hd_id3150824\n"
-"19\n"
+"05020301.xhp\n"
+"par_id1002200811563289\n"
"help.text"
-msgid "Reset"
-msgstr "Rifillo"
+msgid "Day Of Week"
+msgstr "Dita e parw e periudhws"
-#: 06140200.xhp
+#: 05020301.xhp
msgctxt ""
-"06140200.xhp\n"
-"par_id756248\n"
+"05020301.xhp\n"
+"par_id100220081156322\n"
"help.text"
-msgid "<ahelp hid=\".\">Resets modified values back to the default values.</ahelp>"
+msgid "Era"
msgstr ""
-#: 05110600m.xhp
+#: 05020301.xhp
msgctxt ""
-"05110600m.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id1002200811563233\n"
"help.text"
-msgid "Space Rows Equally"
-msgstr "Hapësira për rreshta e barabartë"
+msgid "English - en"
+msgstr "Fundi i dokumentit"
-#: 05110600m.xhp
+#: 05020301.xhp
msgctxt ""
-"05110600m.xhp\n"
-"hd_id3149871\n"
-"1\n"
+"05020301.xhp\n"
+"par_id1002200811563243\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110600m.xhp\" name=\"Space Equally\">Space Rows Equally</link>"
+msgid "and all not listed locales"
msgstr ""
-#: 05110600m.xhp
+#: 05020301.xhp
msgctxt ""
-"05110600m.xhp\n"
-"par_id3154766\n"
-"2\n"
+"05020301.xhp\n"
+"par_id1002200811563352\n"
"help.text"
-msgid "<variable id=\"verteilentext\"><ahelp hid=\".uno:DistributeRows\">Adjusts the height of the selected rows to match the height of the tallest row in the selection.</ahelp></variable>"
+msgid "Y"
msgstr ""
-#: 05110600m.xhp
+#: 05020301.xhp
msgctxt ""
-"05110600m.xhp\n"
-"par_id3153569\n"
-"92\n"
+"05020301.xhp\n"
+"par_id1002200811563396\n"
"help.text"
-msgid "Choose <emph>Table - Autofit - Distribute Rows Equally</emph>"
+msgid "M"
msgstr ""
-#: 05110600m.xhp
+#: 05020301.xhp
msgctxt ""
-"05110600m.xhp\n"
-"par_id3153755\n"
-"93\n"
+"05020301.xhp\n"
+"par_id1002200811563385\n"
"help.text"
-msgid "Open <emph>Optimize</emph> toolbar from <emph>Table</emph> Bar, click"
+msgid "D"
msgstr ""
-#: 05110600m.xhp
+#: 05020301.xhp
msgctxt ""
-"05110600m.xhp\n"
-"par_id3145297\n"
+"05020301.xhp\n"
+"par_id1002200811563472\n"
"help.text"
-msgid "<image id=\"img_id3155994\" src=\"cmd/sc_distributerows.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3155994\">Icon</alt></image>"
+msgid "H"
msgstr ""
-#: 05110600m.xhp
+#: 05020301.xhp
msgctxt ""
-"05110600m.xhp\n"
-"par_id3153206\n"
-"94\n"
+"05020301.xhp\n"
+"par_id1002200811563430\n"
"help.text"
-msgid "Distribute Rows Equally"
-msgstr "Shprëndaj rreshtat barabartë"
+msgid "A"
+msgstr ""
-#: 05340100.xhp
+#: 05020301.xhp
msgctxt ""
-"05340100.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id1002200811563488\n"
"help.text"
-msgid "Row Height"
-msgstr "Lartësia e rreshtit"
+msgid "G"
+msgstr ""
-#: 05340100.xhp
+#: 05020301.xhp
msgctxt ""
-"05340100.xhp\n"
-"hd_id3154400\n"
-"1\n"
+"05020301.xhp\n"
+"par_id1002200811563484\n"
"help.text"
-msgid "Row Height"
-msgstr "Lartësia e rreshtit"
+msgid "German - de"
+msgstr "Standard"
-#: 05340100.xhp
+#: 05020301.xhp
msgctxt ""
-"05340100.xhp\n"
-"par_id3154044\n"
-"2\n"
+"05020301.xhp\n"
+"par_id1002200811563518\n"
"help.text"
-msgid "<variable id=\"zeilenhoehetext\"><ahelp hid=\"HID_BROWSER_ROWHEIGHT\">Changes the height of the current row, or the selected rows.</ahelp></variable>"
+msgid "J"
msgstr ""
-#: 05340100.xhp
+#: 05020301.xhp
msgctxt ""
-"05340100.xhp\n"
-"par_id3150756\n"
-"7\n"
+"05020301.xhp\n"
+"par_id1002200811563735\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">You can also change the height of a row by dragging the divider below the row header. To fit the row height to the cell contents, double-click the divider. </caseinline></switchinline>"
+msgid "T"
msgstr ""
-#: 05340100.xhp
-msgctxt ""
-"05340100.xhp\n"
-"hd_id3149962\n"
-"3\n"
-"help.text"
-msgid "Height"
-msgstr "Lartësia"
-
-#: 05340100.xhp
+#: 05020301.xhp
msgctxt ""
-"05340100.xhp\n"
-"par_id3144750\n"
-"4\n"
+"05020301.xhp\n"
+"par_id1002200811563823\n"
"help.text"
-msgid "<ahelp hid=\"DBACCESS_METRICFIELD_DLG_ROWHEIGHT_MF_VALUE\">Enter the row height that you want to use.</ahelp>"
+msgid "Netherlands - nl"
msgstr ""
-#: 05340100.xhp
+#: 05020301.xhp
msgctxt ""
-"05340100.xhp\n"
-"hd_id3154926\n"
-"5\n"
+"05020301.xhp\n"
+"par_id1002200811563852\n"
"help.text"
-msgid "Default value"
-msgstr "Mosparaqitje vlerash"
+msgid "J"
+msgstr ""
-#: 05340100.xhp
+#: 05020301.xhp
msgctxt ""
-"05340100.xhp\n"
-"par_id3154894\n"
-"6\n"
+"05020301.xhp\n"
+"par_id1002200811563827\n"
"help.text"
-msgid "<ahelp hid=\"DBACCESS_CHECKBOX_DLG_ROWHEIGHT_CB_STANDARD\">Adjusts the row height to the size based on the default template. Existing contents may be shown vertically cropped. The height no longer increases automatically when you enter larger contents.</ahelp>"
+msgid "U"
msgstr ""
-#: 03170000.xhp
+#: 05020301.xhp
msgctxt ""
-"03170000.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id1002200811563916\n"
"help.text"
-msgid "Color Bar"
-msgstr "Shiriti i Ngjyrave"
+msgid "French - fr"
+msgstr "Franceze"
-#: 03170000.xhp
+#: 05020301.xhp
msgctxt ""
-"03170000.xhp\n"
-"bm_id3147477\n"
+"05020301.xhp\n"
+"par_id1002200811563970\n"
"help.text"
-msgid "<bookmark_value>color bar</bookmark_value><bookmark_value>paint box</bookmark_value>"
+msgid "A"
msgstr ""
-#: 03170000.xhp
+#: 05020301.xhp
msgctxt ""
-"03170000.xhp\n"
-"hd_id3147477\n"
-"1\n"
+"05020301.xhp\n"
+"par_id1002200811563980\n"
"help.text"
-msgid "<link href=\"text/shared/01/03170000.xhp\" name=\"Color Bar\">Color Bar</link>"
+msgid "J"
msgstr ""
-#: 03170000.xhp
+#: 05020301.xhp
msgctxt ""
-"03170000.xhp\n"
-"par_id3153255\n"
-"2\n"
+"05020301.xhp\n"
+"par_id1002200811564065\n"
"help.text"
-msgid "<ahelp hid=\".uno:ColorControl\">Show or hides the <emph>Color Bar</emph>. To modify or change the color table that is displayed, choose <emph>Format - Area</emph>, and then click on the <emph>Colors</emph> tab.</ahelp>"
+msgid "O"
msgstr ""
-#: 03170000.xhp
+#: 05020301.xhp
msgctxt ""
-"03170000.xhp\n"
-"par_id3154186\n"
-"3\n"
+"05020301.xhp\n"
+"par_id100220081156407\n"
"help.text"
-msgid "<ahelp hid=\"HID_COLOR_CTL_COLORS\">Click the color that you want to use. To change the fill color of an object in the current file, select the object and then click a color. To change the line color of the selected object, right-click a color. To change the color of text in a text object, double-click the text-object, select the text, and then click a color.</ahelp>"
-msgstr ""
+msgid "Italian - it"
+msgstr "Italiane (Amiga)"
-#: 03170000.xhp
+#: 05020301.xhp
msgctxt ""
-"03170000.xhp\n"
-"par_id3147399\n"
-"9\n"
+"05020301.xhp\n"
+"par_id100220081156403\n"
"help.text"
-msgid "You can also drag a color from the <emph>Color Bar</emph> and drop it on a draw object on your slide."
+msgid "A"
msgstr ""
-#: 03170000.xhp
+#: 05020301.xhp
msgctxt ""
-"03170000.xhp\n"
-"par_id3147009\n"
-"7\n"
+"05020301.xhp\n"
+"par_id1002200811564042\n"
"help.text"
-msgid "To detach the <emph>Color Bar</emph>, click on a gray area of the toolbar and then drag. To reattach the <emph>Color Bar</emph>, drag the title bar of the toolbar to the edge of the window."
+msgid "G"
msgstr ""
-#: 01010303.xhp
-msgctxt ""
-"01010303.xhp\n"
-"tit\n"
-"help.text"
-msgid "Private"
-msgstr "Private"
-
-#: 01010303.xhp
+#: 05020301.xhp
msgctxt ""
-"01010303.xhp\n"
-"hd_id3149031\n"
-"1\n"
+"05020301.xhp\n"
+"par_id100220081156412\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010303.xhp\" name=\"Private\">Private</link>"
+msgid "O"
msgstr ""
-#: 01010303.xhp
+#: 05020301.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3148731\n"
-"2\n"
+"05020301.xhp\n"
+"par_id1002200811564119\n"
"help.text"
-msgid "<ahelp hid=\".\">Contains personal contact information for business cards. Business card layouts are selected on the <emph>Business Cards</emph> tab.</ahelp>"
+msgid "X"
msgstr ""
-#: 01010303.xhp
+#: 05020301.xhp
msgctxt ""
-"01010303.xhp\n"
-"hd_id3159201\n"
-"3\n"
+"05020301.xhp\n"
+"par_id1002200811564197\n"
"help.text"
-msgid "Private data"
-msgstr "Të dhëna private"
+msgid "Portuguese - pt"
+msgstr "Portugalisht (Brazil)"
-#: 01010303.xhp
+#: 05020301.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3147399\n"
-"4\n"
+"05020301.xhp\n"
+"par_id1002200811564272\n"
"help.text"
-msgid "Enter the contact information that you want to include on your business card. You can also modify or update these entries by choosing <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - User Data</emph>."
+msgid "A"
msgstr ""
-#: 01010303.xhp
-msgctxt ""
-"01010303.xhp\n"
-"hd_id3156427\n"
-"15\n"
-"help.text"
-msgid "First name 2"
-msgstr "Emri"
-
-#: 01010303.xhp
+#: 05020301.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3149750\n"
-"16\n"
+"05020301.xhp\n"
+"par_id100220081156423\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_FIRSTNAME_2\">Enter the first name of the person, whom you want to use as a second contact.</ahelp>"
+msgid "O"
msgstr ""
-#: 01010303.xhp
+#: 05020301.xhp
msgctxt ""
-"01010303.xhp\n"
-"hd_id3145345\n"
-"17\n"
+"05020301.xhp\n"
+"par_id1002200811564218\n"
"help.text"
-msgid "Last name 2"
-msgstr "Mbiemri"
+msgid "Spanish - es"
+msgstr "Stilet"
-#: 01010303.xhp
+#: 05020301.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3154288\n"
-"18\n"
+"05020301.xhp\n"
+"par_id1002200811564390\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_NAME_2\">Enter the last name of the person, whom you want to use as a second contact.</ahelp>"
+msgid "A"
msgstr ""
-#: 01010303.xhp
-msgctxt ""
-"01010303.xhp\n"
-"hd_id3150774\n"
-"19\n"
-"help.text"
-msgid "Initials 2"
-msgstr "Inicialet"
-
-#: 01010303.xhp
+#: 05020301.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3151110\n"
-"20\n"
+"05020301.xhp\n"
+"par_id1002200811564319\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_SHORTCUT_2\">Enter the initials of the person, whom you want to use as a second contact.</ahelp>"
+msgid "O"
msgstr ""
-#: 01010303.xhp
+#: 05020301.xhp
msgctxt ""
-"01010303.xhp\n"
-"hd_id3153543\n"
-"5\n"
+"05020301.xhp\n"
+"par_id100220081156433\n"
"help.text"
-msgid "Country"
-msgstr "Vendi"
+msgid "Danish - da"
+msgstr "Da~të"
-#: 01010303.xhp
+#: 05020301.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3150085\n"
-"6\n"
+"05020301.xhp\n"
+"par_id100220081156444\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_STATE\">Enter the name of the country in which you live.</ahelp>"
+msgid "T"
msgstr ""
-#: 01010303.xhp
+#: 05020301.xhp
msgctxt ""
-"01010303.xhp\n"
-"hd_id3155449\n"
-"7\n"
+"05020301.xhp\n"
+"par_id1002200811564448\n"
"help.text"
-msgid "Profession"
-msgstr "Titulli/Profesioni"
+msgid "Norwegian - no, nb, nn"
+msgstr ""
-#: 01010303.xhp
+#: 05020301.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3156192\n"
-"8\n"
+"05020301.xhp\n"
+"par_id1002200811564549\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_PROFESSION\">Enter the title of your profession.</ahelp>"
+msgid "T"
msgstr ""
-#: 01010303.xhp
+#: 05020301.xhp
msgctxt ""
-"01010303.xhp\n"
-"hd_id3147336\n"
-"9\n"
+"05020301.xhp\n"
+"par_id1002200811564565\n"
"help.text"
-msgid "Phone"
-msgstr "Telefoni/Celulari"
+msgid "Swedish - sv"
+msgstr "Suedeze (Amiga)"
-#: 01010303.xhp
+#: 05020301.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3145315\n"
-"10\n"
+"05020301.xhp\n"
+"par_id1002200811564556\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_PHONE\">Enter your home telephone number.</ahelp>"
+msgid "T"
msgstr ""
-#: 01010303.xhp
+#: 05020301.xhp
msgctxt ""
-"01010303.xhp\n"
-"hd_id3149763\n"
-"11\n"
+"05020301.xhp\n"
+"par_id1002200811564637\n"
"help.text"
-msgid "Mobile"
-msgstr "Celulari"
+msgid "Finnish - fi"
+msgstr "Finlandeze (Sun; lloji 5)"
-#: 01010303.xhp
+#: 05020301.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3156155\n"
-"12\n"
+"05020301.xhp\n"
+"par_id1002200811564627\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_MOBILE\">Enter your mobile telephone number.</ahelp>"
+msgid "V"
msgstr ""
-#: 01010303.xhp
+#: 05020301.xhp
msgctxt ""
-"01010303.xhp\n"
-"hd_id3154306\n"
-"13\n"
+"05020301.xhp\n"
+"par_id1002200811564643\n"
"help.text"
-msgid "Homepage"
-msgstr "Faqja fillestare"
+msgid "K"
+msgstr ""
-#: 01010303.xhp
+#: 05020301.xhp
msgctxt ""
-"01010303.xhp\n"
-"par_id3153666\n"
-"14\n"
+"05020301.xhp\n"
+"par_id1002200811564763\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_PRIVATE_DATA:ED_WWW\">Enter the address of your internet homepage.</ahelp>"
+msgid "P"
msgstr ""
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id1002200811564715\n"
"help.text"
-msgid "Filter"
-msgstr "Filtër"
+msgid "T"
+msgstr ""
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"hd_id3153323\n"
-"1\n"
+"05020301.xhp\n"
+"hd_id3149929\n"
+"227\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230402.xhp\" name=\"Filter\">Filter</link>"
+msgid "Entering Dates"
msgstr ""
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3147088\n"
-"2\n"
+"05020301.xhp\n"
+"par_id3148397\n"
+"228\n"
"help.text"
-msgid "Set the criteria for filtering the list of changes on the <link href=\"text/shared/01/02230401.xhp\" name=\"List\"><emph>List</emph></link> tab."
+msgid "To enter a date in a cell, use the Gregorian calendar format. For example, in an English locale, enter 1/2/2002 for Jan 2, 2002."
msgstr ""
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"hd_id3150355\n"
-"3\n"
+"05020301.xhp\n"
+"par_id3153274\n"
+"137\n"
"help.text"
-msgid "Date"
-msgstr "Data"
+msgid "All date formats are dependent on the locale that is set in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language settings - Languages</emph>. For example, if your locale is set to 'Japanese', then the Gengou calendar is used. The default date format in <item type=\"productname\">%PRODUCTNAME</item> uses the Gregorian Calendar."
+msgstr ""
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3147573\n"
-"4\n"
+"05020301.xhp\n"
+"par_id3153795\n"
+"216\n"
"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_FILTER_TF_DATE2\">Filters the list of changes according to the date and the time that you specify.</ahelp>"
+msgid "To specify a calendar format that is independent of the locale, add a modifier in front of the date format. For example, to display a date using the Jewish calendar format in a non-Hebrew locale, enter: [~jewish]DD/MM/YYYY."
msgstr ""
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"hd_id3154811\n"
-"17\n"
+"05020301.xhp\n"
+"par_id3145764\n"
+"217\n"
"help.text"
-msgid "Set Date/Time"
-msgstr "Data Koha Autori"
+msgid "Modifier"
+msgstr "Modifikuar:"
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3159147\n"
+"05020301.xhp\n"
+"par_id3152967\n"
+"218\n"
"help.text"
-msgid "<image id=\"img_id3150771\" src=\"cmd/sc_timefield.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150771\">Icon</alt></image>"
-msgstr ""
+msgid "Calendar"
+msgstr "Kalendari"
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3143270\n"
-"18\n"
+"05020301.xhp\n"
+"par_id3148390\n"
+"219\n"
"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_FILTER_IB_CLOCK2\">Enters the current date and time into the corresponding boxes.</ahelp>"
+msgid "[~buddhist]"
msgstr ""
-#: 02230402.xhp
-msgctxt ""
-"02230402.xhp\n"
-"hd_id3155261\n"
-"5\n"
-"help.text"
-msgid "Author"
-msgstr "Autori"
-
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3150084\n"
-"6\n"
+"05020301.xhp\n"
+"par_id3153781\n"
+"220\n"
"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_FILTER_LB_AUTOR\">Filters the list of changes according to the name of the author that you select from the list.</ahelp>"
-msgstr ""
+msgid "Thai Buddhist Calendar"
+msgstr "CDE-Kalendar-Fajll"
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"hd_id3147531\n"
-"13\n"
+"05020301.xhp\n"
+"par_id3157969\n"
+"133\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Range </caseinline></switchinline>"
+msgid "[~gengou]"
msgstr ""
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3156344\n"
-"14\n"
+"05020301.xhp\n"
+"par_id3154656\n"
+"134\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"HID_REDLINING_FILTER_ED_RANGE\">Filters the list of changes according to the range of cells that you specify. To select a range of cells in your sheet, click the <emph>Set Reference </emph>button (<emph>...</emph>).</ahelp></caseinline></switchinline>"
-msgstr ""
+msgid "Japanese Gengou Calendar"
+msgstr "CDE-Kalendar-Fajll"
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id4441663\n"
+"05020301.xhp\n"
+"par_id3150086\n"
+"131\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the range of cells that you want to use as a filter.</ahelp>"
+msgid "[~gregorian]"
msgstr ""
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"hd_id3147304\n"
-"15\n"
+"05020301.xhp\n"
+"par_id3146070\n"
+"132\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Set Reference </caseinline></switchinline>"
-msgstr ""
+msgid "Gregorian Calendar"
+msgstr "CDE-Kalendar-Fajll"
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3151210\n"
+"05020301.xhp\n"
+"par_id3146808\n"
+"221\n"
"help.text"
-msgid "<image id=\"img_id3154138\" src=\"starmath/res/mi22011.png\" width=\"0.3335inch\" height=\"0.3335inch\"><alt id=\"alt_id3154138\">Icon</alt></image>"
-msgstr ""
+msgid "[~hanja] or [~hanja_yoil]"
+msgstr "~Prano ose Refuzo..."
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3156215\n"
-"16\n"
+"05020301.xhp\n"
+"par_id3149207\n"
+"136\n"
"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_FILTER_BTN_REF\">Select the range of cells that you want to use as a filter.</ahelp>"
-msgstr ""
+msgid "Korean Calendar"
+msgstr "CDE-Kalendar-Fajll"
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"hd_id3159149\n"
-"20\n"
+"05020301.xhp\n"
+"par_id3150304\n"
+"222\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Shrink/Max </caseinline></switchinline>"
+msgid "[~hijri]"
msgstr ""
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3149809\n"
+"05020301.xhp\n"
+"par_id3149238\n"
+"223\n"
"help.text"
-msgid "<image id=\"img_id3154153\" src=\"formula/res/refinp1.png\" width=\"0.1327inch\" height=\"0.1327inch\"><alt id=\"alt_id3154153\">Icon</alt></image>"
+msgid "Arabic Islamic Calendar, currently supported for the following locales: ar_EG, ar_LB, ar_SA, and ar_TN"
msgstr ""
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3147287\n"
-"21\n"
+"05020301.xhp\n"
+"par_id3154903\n"
+"224\n"
"help.text"
-msgid "<ahelp hid=\"SC:IMAGEBUTTON:RID_SCDLG_SIMPLEREF:RB_ASSIGN\">Select the range of cells that you want to use as a filter, and then click this button to return to the filter list.</ahelp>"
+msgid "[~jewish]"
msgstr ""
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"hd_id3156543\n"
-"9\n"
+"05020301.xhp\n"
+"par_id3151288\n"
+"225\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Action </caseinline></switchinline>"
-msgstr ""
+msgid "Jewish Calendar"
+msgstr "CDE-Kalendar-Fajll"
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3155413\n"
-"12\n"
+"05020301.xhp\n"
+"par_id3166442\n"
+"135\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"HID_REDLINING_FILTER_LB_ACTION\">Filters the list of changes according to the type of change that you select in the <emph>Action</emph> box.</ahelp></caseinline></switchinline>"
+msgid "[~ROC]"
msgstr ""
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"hd_id3155855\n"
-"22\n"
+"05020301.xhp\n"
+"par_id3145587\n"
+"226\n"
"help.text"
-msgid "Comment"
-msgstr "Koment"
+msgid "Republic Of China Calendar"
+msgstr "CDE-Kalendar-Fajll"
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3151114\n"
-"23\n"
+"05020301.xhp\n"
+"par_id3152419\n"
+"140\n"
"help.text"
-msgid "<ahelp hid=\"HID_REDLINING_FILTER_ED_COMMENT\">Filters the comments of the changes according to the keyword(s) that you enter. </ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">If you perform a calculation that involves one or more cells using a date format, the result is formatted according to the following mappings: </caseinline></switchinline>"
msgstr ""
-#: 02230402.xhp
+#: 05020301.xhp
msgctxt ""
-"02230402.xhp\n"
-"par_id3163820\n"
-"24\n"
+"05020301.xhp\n"
+"par_id3154194\n"
+"141\n"
"help.text"
-msgid "You can also use <link href=\"text/shared/01/02100000.xhp\" name=\"regular expressions\">regular expressions</link> (wildcards) when you filter the comments."
-msgstr ""
+msgid "Initial Format"
+msgstr "Format tjetër"
-#: 01050000.xhp
+#: 05020301.xhp
msgctxt ""
-"01050000.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id3149787\n"
+"142\n"
"help.text"
-msgid "Close"
-msgstr "Mbylle"
+msgid "Result Format"
+msgstr "Format tjetër"
-#: 01050000.xhp
+#: 05020301.xhp
msgctxt ""
-"01050000.xhp\n"
-"bm_id3154545\n"
+"05020301.xhp\n"
+"par_id3152993\n"
+"143\n"
"help.text"
-msgid "<bookmark_value>documents; closing</bookmark_value><bookmark_value>closing;documents</bookmark_value>"
-msgstr ""
+msgid "Date + Date"
+msgstr "Data"
-#: 01050000.xhp
+#: 05020301.xhp
msgctxt ""
-"01050000.xhp\n"
-"hd_id3154545\n"
-"1\n"
+"05020301.xhp\n"
+"par_id3150292\n"
+"144\n"
"help.text"
-msgid "<link href=\"text/shared/01/01050000.xhp\" name=\"Close\">Close</link>"
-msgstr ""
+msgid "Number (Days)"
+msgstr "Numri i faqes"
-#: 01050000.xhp
+#: 05020301.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3148731\n"
-"2\n"
+"05020301.xhp\n"
+"par_id3150460\n"
+"145\n"
"help.text"
-msgid "<ahelp hid=\".uno:CloseDoc\">Closes the current document without exiting the program.</ahelp>"
-msgstr ""
+msgid "Date + Number"
+msgstr "Formati numerik: datë"
-#: 01050000.xhp
+#: 05020301.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3149095\n"
-"7\n"
+"05020301.xhp\n"
+"par_id3154371\n"
+"146\n"
"help.text"
-msgid "The <emph>Close </emph>command closes all of the open windows for the current document."
-msgstr ""
+msgid "Date"
+msgstr "Data"
-#: 01050000.xhp
+#: 05020301.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3148620\n"
-"4\n"
+"05020301.xhp\n"
+"par_id3145082\n"
+"147\n"
"help.text"
-msgid "If you have made changes to the current document, you are prompted if you want to <link href=\"text/shared/01/01060000.xhp\" name=\"save\">save</link> your changes."
-msgstr ""
+msgid "Date + Time"
+msgstr "<date/time>"
-#: 01050000.xhp
+#: 05020301.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3159201\n"
-"8\n"
+"05020301.xhp\n"
+"par_id3156290\n"
+"148\n"
"help.text"
-msgid "When you close the last open document window, you see the <link href=\"text/shared/guide/startcenter.xhp\">Start Center</link>."
-msgstr ""
+msgid "Date&Time"
+msgstr "Data dhe Koha"
-#: 01050000.xhp
+#: 05020301.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3153821\n"
-"9\n"
+"05020301.xhp\n"
+"par_id3152456\n"
+"149\n"
"help.text"
-msgid "<link href=\"text/shared/02/10100000.xhp\" name=\"Close the current window\">Close the current window</link>"
-msgstr ""
+msgid "Date + Date&Time"
+msgstr "<date/time>"
-#: 01050000.xhp
+#: 05020301.xhp
msgctxt ""
-"01050000.xhp\n"
-"par_id3154750\n"
-"10\n"
+"05020301.xhp\n"
+"par_id3156169\n"
+"150\n"
"help.text"
-msgid "<link href=\"text/shared/01/01170000.xhp\" name=\"Exit $[officename]\">Exit $[officename]</link>"
-msgstr ""
+msgid "Number"
+msgstr "Numri"
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id3154527\n"
+"151\n"
"help.text"
-msgid "Hangul/Hanja Options"
-msgstr "Shndërrimi Hangul/Hanja"
+msgid "Time + Time"
+msgstr "Koha"
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10542\n"
+"05020301.xhp\n"
+"par_id3159625\n"
+"152\n"
"help.text"
-msgid "Hangul/Hanja Options"
-msgstr "Shndërrimi Hangul/Hanja"
+msgid "Time"
+msgstr "Koha"
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10546\n"
+"05020301.xhp\n"
+"par_id3146802\n"
+"153\n"
"help.text"
-msgid "Define options for the <link href=\"text/shared/01/06200000.xhp\">Hangul/Hanja conversion</link>."
-msgstr ""
+msgid "Time + Number"
+msgstr "Formati numerik: kohë"
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN1055F\n"
+"05020301.xhp\n"
+"par_id3146770\n"
+"154\n"
"help.text"
-msgid "User-defined dictionaries"
-msgstr "Fjalorët e definuar nga shfrytëzuesi"
+msgid "Time"
+msgstr "Koha"
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10563\n"
+"05020301.xhp\n"
+"par_id3155500\n"
+"155\n"
"help.text"
-msgid "<ahelp hid=\"HID_HANGULHANJA_NEWDICT_DLG\">Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use.</ahelp>"
-msgstr ""
+msgid "Time + Date&Time"
+msgstr "<date/time>"
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN1057A\n"
+"05020301.xhp\n"
+"par_id3155128\n"
+"156\n"
"help.text"
-msgid "New"
-msgstr "E re"
+msgid "Date&Time"
+msgstr "Data dhe Koha"
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN1057E\n"
+"05020301.xhp\n"
+"par_id3152904\n"
+"157\n"
"help.text"
-msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_NEW\">Opens the New dictionary dialog box, where you can create a new dictionary.</ahelp>"
-msgstr ""
+msgid "Date&Time + Date&Time"
+msgstr "<date/time>"
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10595\n"
+"05020301.xhp\n"
+"par_id3159143\n"
+"158\n"
"help.text"
-msgid "Name"
-msgstr "Emri"
+msgid "Time"
+msgstr "Koha"
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10599\n"
+"05020301.xhp\n"
+"par_id3148909\n"
+"159\n"
"help.text"
-msgid "<ahelp hid=\"svx:Edit:RID_SVX_MDLG_HANGULHANJA_NEWDICT:ED_DICTNAME\">Enter a name for the dictionary.</ahelp> To display the new dictionary in the <emph>User-defined dictionaries</emph> list box, click <emph>OK</emph>."
-msgstr ""
+msgid "Date&Time + Number"
+msgstr "Formati numerik: kohë"
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN105B5\n"
+"05020301.xhp\n"
+"par_id3154806\n"
+"160\n"
"help.text"
-msgid "Edit"
-msgstr "Edito"
+msgid "Date&Time"
+msgstr "Data dhe Koha"
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN105B9\n"
+"05020301.xhp\n"
+"par_id3151269\n"
+"161\n"
"help.text"
-msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_EDIT\">Opens the <link href=\"text/shared/01/06202000.xhp\">Edit Custom Dictionary</link> dialog where you can edit any user-defined dictionary.</ahelp>"
-msgstr ""
+msgid "Number + Number"
+msgstr "<number>"
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN105DE\n"
+"05020301.xhp\n"
+"par_id3154951\n"
+"162\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "Number"
+msgstr "Numri"
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN105E2\n"
+"05020301.xhp\n"
+"par_id3149174\n"
+"163\n"
"help.text"
-msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_DELETE\">Deletes the selected user-defined dictionary.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">The Date&Time format displays the date and time that an entry was made to a cell with this format. </caseinline></switchinline>"
msgstr ""
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN105F1\n"
+"05020301.xhp\n"
+"par_id3143225\n"
+"164\n"
"help.text"
-msgid "Options"
-msgstr "Opcionet"
+msgid "In <item type=\"productname\">%PRODUCTNAME</item>, a date with the value \"0\" corresponds to Dec 30, 1899."
+msgstr ""
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN105F5\n"
+"05020301.xhp\n"
+"hd_id3155870\n"
+"61\n"
"help.text"
-msgid "Specifies additional options for all dictionaries."
-msgstr ""
+msgid "Time Formats"
+msgstr "(Të gjitha formatet)"
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10600\n"
+"05020301.xhp\n"
+"par_id3150108\n"
+"62\n"
"help.text"
-msgid "Ignore post-positional word"
+msgid "To display hours, minutes and seconds use the following number format codes."
msgstr ""
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10604\n"
+"05020301.xhp\n"
+"par_id3149158\n"
+"63\n"
"help.text"
-msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_IGNOREPOST\">Ignores positional characters at the end of Korean words when you search a dictionary.</ahelp>"
-msgstr ""
+msgid "Format"
+msgstr "Formati"
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN1061B\n"
+"05020301.xhp\n"
+"par_id3154341\n"
+"64\n"
"help.text"
-msgid "Close Conversion dialog automatically after replacement"
-msgstr ""
+msgid "Format Code"
+msgstr "Kodi i karakterit"
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN1061F\n"
+"05020301.xhp\n"
+"par_id3154557\n"
+"65\n"
"help.text"
-msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_AUTOCLOSE\">Closes the Hangul/Hanja Conversion dialog box after you click <emph>Ignore</emph>, <emph>Always Ignore</emph>, <emph>Replace</emph>, or <emph>Always Replace</emph>.</ahelp>"
-msgstr ""
+msgid "Hours as 0-23"
+msgstr "Eksporto si PDF..."
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10636\n"
+"05020301.xhp\n"
+"par_id3156348\n"
+"66\n"
"help.text"
-msgid "Show entries recently used first"
+msgid "h"
msgstr ""
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN1063A\n"
+"05020301.xhp\n"
+"par_id3143218\n"
+"67\n"
"help.text"
-msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_SHOWRECENTLYFIRST\">Shows the replacement suggestion that you selected the last time as the first entry on the list.</ahelp>"
-msgstr ""
+msgid "Hours as 00-23"
+msgstr "Eksporto si PDF..."
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10651\n"
+"05020301.xhp\n"
+"par_id3155266\n"
+"68\n"
"help.text"
-msgid "Replace all unique entries automatically"
+msgid "hh"
msgstr ""
-#: 06201000.xhp
+#: 05020301.xhp
msgctxt ""
-"06201000.xhp\n"
-"par_idN10655\n"
+"05020301.xhp\n"
+"par_id3150139\n"
+"69\n"
"help.text"
-msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_AUTOREPLACEUNIQUE\">Automatically replaces words that only have one suggested word replacement.</ahelp>"
-msgstr ""
+msgid "Minutes as 0-59"
+msgstr "Eksporto si PDF..."
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"tit\n"
+"05020301.xhp\n"
+"par_id3149588\n"
+"70\n"
"help.text"
-msgid "Paste Special"
-msgstr "Lëshim special"
+msgid "m"
+msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3147477\n"
-"1\n"
+"05020301.xhp\n"
+"par_id3150531\n"
+"71\n"
"help.text"
-msgid "Paste Special"
-msgstr "Lëshim special"
+msgid "Minutes as 00-59"
+msgstr "Eksporto si PDF..."
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3147143\n"
-"2\n"
+"05020301.xhp\n"
+"par_id3147409\n"
+"72\n"
"help.text"
-msgid "<variable id=\"inhalteeinfuegentext\"><ahelp hid=\".uno:PasteSpecial\">Inserts the contents of the clipboard into the current file in a format that you can specify.</ahelp></variable>"
-msgstr ""
+msgid "mm"
+msgstr "0 mm"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3147576\n"
-"5\n"
+"05020301.xhp\n"
+"par_id3154854\n"
+"73\n"
"help.text"
-msgid "Source"
-msgstr "Burimi"
+msgid "Seconds as 0-59"
+msgstr "Eksporto si PDF..."
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3149388\n"
-"6\n"
+"05020301.xhp\n"
+"par_id3156173\n"
+"74\n"
"help.text"
-msgid "<ahelp hid=\"HID_PASTE_DLG\">Displays the source of the clipboard contents.</ahelp>"
+msgid "s"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3153684\n"
-"7\n"
+"05020301.xhp\n"
+"par_id3149506\n"
+"75\n"
"help.text"
-msgid "Selection"
-msgstr "Selektimet"
+msgid "Seconds as 00-59"
+msgstr "Eksporto si PDF..."
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3149812\n"
-"8\n"
+"05020301.xhp\n"
+"par_id3157981\n"
+"76\n"
"help.text"
-msgid "<ahelp hid=\"SO3:LISTBOX:MD_PASTE_OBJECT:LB_INSERT_LIST\">Select a format for the clipboard contents that you want to paste.</ahelp>"
+msgid "ss"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3147653\n"
-"68\n"
+"05020301.xhp\n"
+"par_id3156039\n"
+"77\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">When you paste HTML data into a text document, you can choose \"HTML format\" or \"HTML format without comments\". The second choice is the default; it pastes all HTML data, but no comments. </caseinline></switchinline>"
+msgid "To display seconds as fractions, add the decimal delimiter to your number format code. For example, enter <emph>hh:mm:ss.00</emph> to display the time as \"01:02:03.45\"."
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3155420\n"
-"15\n"
+"05020301.xhp\n"
+"par_id3148649\n"
+"102\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Paste Special </caseinline></switchinline>"
+msgid "If a time is entered in the form 02:03.45 or 01:02:03.45 or 25:01:02, the following formats are assigned if no other time format has been specified: MM:SS.00 or [HH]:MM:SS.00 or [HH]:MM:SS"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3150976\n"
-"16\n"
+"05020301.xhp\n"
+"hd_id3158404\n"
+"169\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">This dialog appears in Calc if the clipboard contains spreadsheet cells. </caseinline></switchinline>"
+msgid "Displaying Numbers Using Native Characters"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3155341\n"
-"17\n"
+"05020301.xhp\n"
+"par_id3149998\n"
+"170\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Selection </caseinline></switchinline>"
+msgid "To display numbers using native number characters, use a [NatNum1], [NatNum2], ... [NatNum11] modifier at the beginning of a number format codes."
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3152909\n"
-"40\n"
+"05020301.xhp\n"
+"par_id3154600\n"
+"171\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Select a format for the clipboard contents that you want to paste. </caseinline></switchinline>"
+msgid "The [NatNum1] modifier always uses a one to one character mapping to convert numbers to a string that matches the native number format code of the corresponding locale. The other modifiers produce different results if they are used with different locales. A locale can be the language and the territory for which the format code is defined, or a modifier such as [$-yyy] that follows the native number modifier. In this case, yyy is the hexadecimal MS-LCID that is also used in currency format codes. For example, to display a number using Japanese short Kanji characters in an English US locale, use the following number format code:"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3145120\n"
-"41\n"
+"05020301.xhp\n"
+"par_id3152546\n"
+"172\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Paste all </caseinline></switchinline>"
+msgid "[NatNum1][$-411]0"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3146848\n"
-"42\n"
+"05020301.xhp\n"
+"par_id3147269\n"
+"173\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSALL\">Pastes all cell contents, comments, formats, and objects into the current document.</ahelp></caseinline></switchinline>"
+msgid "In the following list, the Microsoft Excel [DBNumX] modifier that corresponds to <item type=\"productname\">%PRODUCTNAME</item> [NatNum] modifier is shown. If you want, you can use a [DBNumX] modifier instead of [NatNum] modifier for your locale. Whenever possible, <item type=\"productname\">%PRODUCTNAME</item> internally maps [DBNumX] modifiers to [NatNumN] modifiers."
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3155449\n"
-"43\n"
+"05020301.xhp\n"
+"par_idN11234\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Text </caseinline></switchinline>"
+msgid "Displaying dates using [NatNum] modifiers can have a different effect than displaying other types of numbers. Such effects are indicated by 'CAL: '. For example, 'CAL: 1/4/4' indicates that the year is displayed using the [NatNum1] modifier, while the day and month are displayed using the [NatNum4] modifier. If 'CAL' is not specified, the date formats for that particular modifier are not supported."
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3149244\n"
-"44\n"
+"05020301.xhp\n"
+"par_id3153111\n"
+"174\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSSTRINGS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing text. </caseinline></switchinline></ahelp>"
-msgstr ""
+msgid "[NatNum1] Transliterations"
+msgstr "Përpara objektit"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3148947\n"
-"45\n"
+"05020301.xhp\n"
+"par_id3146895\n"
+"175\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Numbers </caseinline></switchinline>"
+msgid "Chinese: Chinese lower case characters; CAL: 1/7/7 [DBNum1]"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3152360\n"
-"46\n"
+"05020301.xhp\n"
+"par_id3152536\n"
+"176\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSNUMBERS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing numbers. </caseinline></switchinline></ahelp>"
+msgid "Japanese: short Kanji characters [DBNum1]; CAL: 1/4/4 [DBNum1]"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3151054\n"
-"47\n"
+"05020301.xhp\n"
+"par_id3146125\n"
+"177\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Date & Time </caseinline></switchinline>"
+msgid "Korean: Korean lower case characters [DBNum1]; CAL: 1/7/7 [DBNum1]"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3154226\n"
-"48\n"
+"05020301.xhp\n"
+"par_id3149945\n"
+"178\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSDATETIME\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cells containing date and time values. </caseinline></switchinline></ahelp>"
-msgstr ""
+msgid "Thai: Thai characters"
+msgstr "Karakteret e fusnotave"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3150791\n"
-"49\n"
+"05020301.xhp\n"
+"par_id3153264\n"
+"179\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulas </caseinline></switchinline>"
-msgstr ""
+msgid "Arabic: Indic characters"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3145744\n"
-"50\n"
+"05020301.xhp\n"
+"par_id3148973\n"
+"180\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSFORMULAS\">Inserts cells containing formulae.</ahelp></caseinline></switchinline>"
-msgstr ""
+msgid "Indic: Indic characters"
+msgstr "Karakteret e fusnotave"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3153968\n"
-"51\n"
+"05020301.xhp\n"
+"par_idN112A3\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments </caseinline></switchinline>"
-msgstr ""
+msgid "Hebrew: Hebrew letters"
+msgstr "Shtyp prej letrave"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3156422\n"
-"52\n"
+"05020301.xhp\n"
+"par_id3147520\n"
+"181\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSNOTES\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts comments that are attached to cells. If you want to add the comments to the existing cell content, select the \"Add\" operation. </caseinline></switchinline></ahelp>"
-msgstr ""
+msgid "[NatNum2] Transliteration in"
+msgstr "Përpara objektit"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3152935\n"
-"53\n"
+"05020301.xhp\n"
+"par_id3155383\n"
+"182\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formats </caseinline></switchinline>"
+msgid "Chinese: Chinese upper case characters; CAL: 2/8/8 [DBNum2]"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3125863\n"
-"54\n"
+"05020301.xhp\n"
+"par_id3153931\n"
+"183\n"
"help.text"
-msgid "<ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_INSATTRS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts cell format attributes. </caseinline></switchinline></ahelp>"
+msgid "Japanese: traditional Kanji characters; CAL: 2/5/5 [DBNum2]"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3156282\n"
-"65\n"
+"05020301.xhp\n"
+"par_id3155097\n"
+"184\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Objects </caseinline></switchinline>"
+msgid "Korean: Korean upper case characters [DBNum2]; CAL: 2/8/8 [DBNum2]"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3149810\n"
-"66\n"
+"05020301.xhp\n"
+"par_id3152976\n"
+"185\n"
"help.text"
-msgid "<ahelp hid=\"SC_CHECKBOX_RID_SCDLG_INSCONT_BTN_INSOBJECTS\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserts objects contained within the selected cell range. These can be OLE objects, chart objects, or drawing objects. </caseinline></switchinline></ahelp>"
-msgstr ""
+msgid "[NatNum3] Transliteration in"
+msgstr "Përpara objektit"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3150440\n"
-"19\n"
+"05020301.xhp\n"
+"par_id3154353\n"
+"186\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Operations </caseinline></switchinline>"
+msgid "Chinese: fullwidth Arabic digits; CAL: 3/3/3 [DBNum3]"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3151351\n"
-"38\n"
+"05020301.xhp\n"
+"par_id3154669\n"
+"187\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Select the operation to apply when you paste cells into your sheet. </caseinline></switchinline>"
+msgid "Japanese: fullwidth Arabic digits; CAL: 3/3/3 [DBNum3]"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3153952\n"
-"20\n"
+"05020301.xhp\n"
+"par_id3150472\n"
+"188\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">None </caseinline></switchinline>"
+msgid "Korean: fullwidth Arabic digits [DBNum3]; CAL: 3/3/3 [DBNum3]"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3147348\n"
-"21\n"
+"05020301.xhp\n"
+"par_id3157811\n"
+"189\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_NOOP\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Does not apply an operation when you insert the cell range from the clipboard. The contents of the clipboard will replace existing cell contents. </caseinline></switchinline></ahelp>"
-msgstr ""
+msgid "[NatNum4] Transliteration in"
+msgstr "Përpara objektit"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3154988\n"
-"22\n"
+"05020301.xhp\n"
+"par_id3154592\n"
+"190\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Add </caseinline></switchinline>"
+msgid "Chinese: lower case text [DBNum1]"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3159196\n"
-"23\n"
+"05020301.xhp\n"
+"par_id3150350\n"
+"191\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_ADD\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Adds the values in the clipboard cells to the values in the target cells. Also, if the clipboard only contains comments, adds the comments to the target cells. </caseinline></switchinline></ahelp>"
+msgid "Japanese: modern long Kanji text [DBNum2]"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3145263\n"
-"24\n"
+"05020301.xhp\n"
+"par_id3150930\n"
+"192\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Subtract </caseinline></switchinline>"
+msgid "Korean: formal lower case text"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3154149\n"
-"25\n"
+"05020301.xhp\n"
+"par_id3153546\n"
+"193\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_SUB\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Subtracts the values in the clipboard cells from the values in the target cells. </caseinline></switchinline></ahelp>"
-msgstr ""
+msgid "[NatNum5] Transliteration in"
+msgstr "Përpara objektit"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3155312\n"
-"26\n"
+"05020301.xhp\n"
+"par_id3155612\n"
+"194\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Multiply </caseinline></switchinline>"
+msgid "Chinese: Chinese upper case text [DBNum2]"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3155307\n"
-"27\n"
+"05020301.xhp\n"
+"par_id3155909\n"
+"195\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_MUL\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Multiplies the values in the clipboard cells with the values in the target cells. </caseinline></switchinline></ahelp>"
+msgid "Japanese: traditional long Kanji text [DBNum3]"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3154320\n"
-"28\n"
+"05020301.xhp\n"
+"par_id3151304\n"
+"196\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Divide </caseinline></switchinline>"
+msgid "Korean: formal upper case text"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3155417\n"
-"29\n"
+"05020301.xhp\n"
+"par_id3155075\n"
+"197\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_OP_DIV\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Divides the values in the target cells by the values in the clipboard cells. </caseinline></switchinline></ahelp>"
-msgstr ""
+msgid "[NatNum6] Transliteration in"
+msgstr "Përpara objektit"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3147048\n"
-"55\n"
+"05020301.xhp\n"
+"par_id3150214\n"
+"198\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Options </caseinline></switchinline>"
+msgid "Chinese: fullwidth text [DBNum3]"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3156283\n"
-"56\n"
+"05020301.xhp\n"
+"par_id3154114\n"
+"199\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Sets the paste options for the clipboard contents. </caseinline></switchinline>"
-msgstr ""
+msgid "Japanese: fullwidth text"
+msgstr "Shiriti i Objektit Tekst"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3151052\n"
-"30\n"
+"05020301.xhp\n"
+"par_id3155344\n"
+"200\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Skip empty cells </caseinline></switchinline>"
-msgstr ""
+msgid "Korean: fullwidth text"
+msgstr "Shiriti i Objektit Tekst"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3148775\n"
-"31\n"
+"05020301.xhp\n"
+"par_id3155538\n"
+"201\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_SKIP_EMPTY\">Empty cells from the clipboard do not replace target cells. If you use this option in conjunction with the <emph>Multiply</emph> or the <emph>Divide</emph> operation, the operation is not applied to the target cell of an empty cell in the clipboard.</ahelp></caseinline></switchinline>"
-msgstr ""
+msgid "[NatNum7] Transliteration in"
+msgstr "Përpara objektit"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3155084\n"
-"32\n"
+"05020301.xhp\n"
+"par_id3145123\n"
+"202\n"
"help.text"
-msgid "If you select a mathematical operation and clear the<emph> Skip empty cells </emph>box, empty cells in the clipboard are treated as zeroes. For example, if you apply the <emph>Multiply</emph> operation, the target cells are filled with zeroes."
+msgid "Japanese: modern short Kanji text"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3147173\n"
-"33\n"
+"05020301.xhp\n"
+"par_id3149424\n"
+"203\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Transpose </caseinline></switchinline>"
+msgid "Korean: informal lower case text"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3147223\n"
-"34\n"
+"05020301.xhp\n"
+"par_id3153688\n"
+"204\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_TRANSPOSE\">The rows of the range in the clipboard are pasted to become columns of the output range. The columns of the range in the clipboard are pasted to become rows.</ahelp></caseinline></switchinline>"
-msgstr ""
+msgid "[NatNum8] Transliteration in"
+msgstr "Përpara objektit"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3152971\n"
-"35\n"
+"05020301.xhp\n"
+"par_id3156122\n"
+"205\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Link </caseinline></switchinline>"
+msgid "Japanese: traditional short Kanji text [DBNum4]"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3146969\n"
-"36\n"
+"05020301.xhp\n"
+"par_id3145602\n"
+"206\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_INSCONT:BTN_LINK\">Inserts the cell range as a link, so that changes made to the cells in the source file are updated in the target file. To ensure that changes made to empty cells in the source file are updated in the target file, ensure that the <emph>Insert All</emph> option is also selected. </ahelp></caseinline></switchinline>"
+msgid "Korean: informal upper case text"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3145667\n"
-"37\n"
+"05020301.xhp\n"
+"par_id3159228\n"
+"207\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">You can also link sheets within the same spreadsheet. When you link to other files, a <link href=\"text/shared/00/00000005.xhp#dde\" name=\"DDE link\">DDE link</link> is automatically created. A DDE link is inserted as a matrix formula and can only be modified as a whole. </caseinline></switchinline>"
-msgstr ""
+msgid "[NatNum9] Transliteration in"
+msgstr "Përpara objektit"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3146914\n"
-"57\n"
+"05020301.xhp\n"
+"par_id3154644\n"
+"208\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Shift Cells </caseinline></switchinline>"
-msgstr ""
+msgid "Korean: Hangul characters"
+msgstr "Hyrja e karaktereve alfanumerike"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3145169\n"
-"58\n"
+"05020301.xhp\n"
+"par_id3155396\n"
+"209\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Set the shift options for the target cells when the clipboard content is inserted. </caseinline></switchinline>"
-msgstr ""
+msgid "[NatNum10] Transliteration in"
+msgstr "Përpara objektit"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3155518\n"
-"59\n"
+"05020301.xhp\n"
+"par_id3150878\n"
+"210\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Don't shift </caseinline></switchinline>"
+msgid "Korean: formal Hangul text [DBNum4]; CAL: 9/11/11 [DBNum4]"
msgstr ""
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3154158\n"
-"60\n"
+"05020301.xhp\n"
+"par_id3149384\n"
+"211\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_NONE\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Inserted cells replace the target cells. </caseinline></switchinline></ahelp>"
-msgstr ""
+msgid "[NatNum11] Transliteration in"
+msgstr "Përpara objektit"
-#: 02070000.xhp
+#: 05020301.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3148483\n"
-"61\n"
+"05020301.xhp\n"
+"par_id3154213\n"
+"212\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Down </caseinline></switchinline>"
+msgid "Korean: informal Hangul text"
msgstr ""
-#: 02070000.xhp
+#: 05020400.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3152962\n"
-"62\n"
+"05020400.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_DOWN\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Target cells are shifted downward when you insert cells from the clipboard. </caseinline></switchinline></ahelp>"
-msgstr ""
+msgid "Hyperlink"
+msgstr "Hiperlink"
-#: 02070000.xhp
+#: 05020400.xhp
msgctxt ""
-"02070000.xhp\n"
-"hd_id3145621\n"
-"63\n"
+"05020400.xhp\n"
+"bm_id3152895\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Right </caseinline></switchinline>"
+msgid "<bookmark_value>formatting; hyperlinks</bookmark_value><bookmark_value>characters; hyperlinks</bookmark_value><bookmark_value>hyperlinks; character formats</bookmark_value><bookmark_value>text;hyperlinks</bookmark_value><bookmark_value>links; character formats</bookmark_value>"
msgstr ""
-#: 02070000.xhp
+#: 05020400.xhp
msgctxt ""
-"02070000.xhp\n"
-"par_id3159264\n"
-"64\n"
+"05020400.xhp\n"
+"hd_id3152895\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SC:RADIOBUTTON:RID_SCDLG_INSCONT:BTN_MV_RIGHT\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Target cells are shifted to the right when you insert cells from the clipboard. </caseinline></switchinline></ahelp>"
+msgid "<link href=\"text/shared/01/05020400.xhp\" name=\"Hyperlink\">Hyperlink</link>"
msgstr ""
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
-"tit\n"
+"05020400.xhp\n"
+"par_id3149388\n"
+"2\n"
"help.text"
-msgid "Internet"
-msgstr "Internet"
+msgid "<variable id=\"hyperlinktext\"><ahelp hid=\".uno:InsertHyperlinkDlg\">Assigns a new hyperlink or edits the selected hyperlink.</ahelp></variable> A hyperlink is a link to a file on the Internet or on your local system."
+msgstr ""
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
-"bm_id3145669\n"
+"05020400.xhp\n"
+"par_id3145211\n"
+"38\n"
"help.text"
-msgid "<bookmark_value>auto reloading HTML documents</bookmark_value><bookmark_value>reloading; HTML documents, automatically</bookmark_value><bookmark_value>loading; HTML documents, automatically</bookmark_value><bookmark_value>HTML documents; auto reloading</bookmark_value>"
+msgid "You can also assign or edit a named HTML anchor, or <link href=\"text/swriter/01/04040000.xhp\" name=\"Bookmark\">Bookmark</link>, that refers to a specific place in a document."
msgstr ""
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
-"hd_id3147588\n"
-"1\n"
+"05020400.xhp\n"
+"hd_id3147243\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100500.xhp\" name=\"Internet\">Internet</link>"
-msgstr ""
+msgid "Hyperlink"
+msgstr "Hiperlink"
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3148731\n"
-"2\n"
+"05020400.xhp\n"
+"par_id3156113\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"HID_DOCINFORELOAD\">Sets the refresh and redirect options for an HTML page.</ahelp>"
-msgstr ""
+msgid "Specify the properties for the hyperlink."
+msgstr "Shfrytëzo të dhënat për vetitë e dokumentit"
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
-"hd_id3156027\n"
-"26\n"
+"05020400.xhp\n"
+"hd_id3166410\n"
+"14\n"
"help.text"
-msgid "Do not refresh automatically"
-msgstr "Mos fresko automatikisht"
+msgid "URL"
+msgstr "URL"
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3152924\n"
-"27\n"
+"05020400.xhp\n"
+"par_id3153332\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_RADIOBUTTON_TP_DOCINFORELOAD_RB_NOAUTOUPDATE\">User must refresh the page manually.</ahelp>"
+msgid "<variable id=\"texturl\"><ahelp hid=\"modules/swriter/ui/charurlpage/urled\">Enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> for the file that you want to open when you click the hyperlink.</ahelp> If you do not specify a target frame, the file opens in the current document or frame.</variable>"
msgstr ""
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
-"hd_id3145669\n"
-"5\n"
+"05020400.xhp\n"
+"hd_id3153716\n"
+"16\n"
"help.text"
-msgid "Refresh this document"
-msgstr "Fresko këtë dokument"
+msgid "Browse"
+msgstr "Shfleto..."
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3153528\n"
-"6\n"
+"05020400.xhp\n"
+"par_id3157910\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_RADIOBUTTON_TP_DOCINFORELOAD_RB_RELOADUPDATE\">Reloads the HTML page after the number of seconds that you enter in the <emph>seconds</emph> box. To observe the result, open the page in a browser.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/urlpb\">Locate the file that you want to link to, and then click <emph>Open</emph>.</ahelp>"
msgstr ""
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
-"hd_id3155535\n"
-"7\n"
+"05020400.xhp\n"
+"hd_id3156152\n"
+"18\n"
"help.text"
-msgid "Seconds"
-msgstr "sekonda"
+msgid "Reference"
+msgstr "Referencë"
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3157958\n"
-"8\n"
+"05020400.xhp\n"
+"par_id3155450\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:NUMERICFIELD:TP_DOCINFORELOAD:ED_SECONDS\">Enter the number of seconds to wait before the page is reloaded.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/texted\">Enter the text that you want to display for the hyperlink.</ahelp>"
msgstr ""
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
-"hd_id3148538\n"
+"05020400.xhp\n"
+"hd_id3158430\n"
"28\n"
"help.text"
-msgid "Redirect from this document"
-msgstr "Ridrejto nga ky dokument"
+msgid "Events"
+msgstr "Ngjarjet"
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3153662\n"
+"05020400.xhp\n"
+"par_id3153257\n"
"29\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_RADIOBUTTON_TP_DOCINFORELOAD_RB_FORWARDUPDATE\">Loads a page that you specify after the number of seconds that you enter in the <emph>seconds </emph>box.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/eventpb\">Specify an event that triggers when you click the hyperlink.</ahelp>"
msgstr ""
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
-"hd_id3147335\n"
+"05020400.xhp\n"
+"hd_id3153348\n"
"30\n"
"help.text"
-msgid "after ... seconds"
-msgstr "Pas seksionit"
+msgid "Name"
+msgstr "Emri"
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3145315\n"
+"05020400.xhp\n"
+"par_id3156023\n"
"31\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_RADIOBUTTON_TP_DOCINFORELOAD_RB_FORWARDUPDATE\">Enter the number of seconds to wait before redirecting the browser to a different file.</ahelp>"
-msgstr ""
-
-#: 01100500.xhp
-msgctxt ""
-"01100500.xhp\n"
-"hd_id3153127\n"
-"9\n"
-"help.text"
-msgid "to URL"
-msgstr "në URL"
-
-#: 01100500.xhp
-msgctxt ""
-"01100500.xhp\n"
-"par_id3153349\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:TP_DOCINFORELOAD:ED_URL\">Enter the URL address of the file that you want to open.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/nameed\">Enter a name for the hyperlink.</ahelp> $[officename] inserts a NAME tag in the hyperlink:"
msgstr ""
-#: 01100500.xhp
-msgctxt ""
-"01100500.xhp\n"
-"hd_id3154306\n"
-"32\n"
-"help.text"
-msgid "..."
-msgstr "..."
-
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3150976\n"
-"33\n"
+"05020400.xhp\n"
+"par_id3148943\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:TP_DOCINFORELOAD:ED_URL\">Locate the file that you want to open, and then click <emph>Open</emph>.</ahelp>"
+msgid "<A HREF=\"http://www.example.com/\" NAME=\"Nametext\" TARGET=\"_blank\">Note</A>"
msgstr ""
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
-"hd_id3150771\n"
-"11\n"
+"05020400.xhp\n"
+"hd_id3155923\n"
+"20\n"
"help.text"
-msgid "to frame"
-msgstr "në kornizën"
+msgid "Frame"
+msgstr "Kornizë"
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3149514\n"
-"12\n"
+"05020400.xhp\n"
+"par_id3147559\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:COMBOBOX:TP_DOCINFORELOAD:LB_DEFAULT\">If the current HTML page uses frames, select the name of the <link href=\"text/shared/00/00000002.xhp#frame\" name=\"target frame\">target frame</link> where you want the file to be loaded.</ahelp>"
+msgid "<variable id=\"textframe\"><ahelp hid=\"modules/swriter/ui/charurlpage/targetfrmlb\">Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list.</ahelp> If you leave this box blank, the linked file opens in the current browser window.</variable>"
msgstr ""
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
+"05020400.xhp\n"
"par_id3155922\n"
"24\n"
"help.text"
msgid "Name of Frame"
msgstr "Përmbajtjet e kornizës"
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
+"05020400.xhp\n"
"par_id3154924\n"
"25\n"
"help.text"
msgid "Definition"
msgstr "Definicion"
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
+"05020400.xhp\n"
"par_id3159413\n"
"14\n"
"help.text"
msgid "Named entries"
msgstr "AutoCapitalize hyrjet"
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
+"05020400.xhp\n"
"par_id3154935\n"
"15\n"
"help.text"
msgid "File opens in a named frame in the current HTML document."
msgstr ""
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
+"05020400.xhp\n"
"par_id3148739\n"
"16\n"
"help.text"
msgid "_self"
msgstr ""
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
+"05020400.xhp\n"
"par_id3150358\n"
"17\n"
"help.text"
msgid "File opens in the current frame."
msgstr ""
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
+"05020400.xhp\n"
"par_id3151210\n"
"18\n"
"help.text"
msgid "_blank"
msgstr "Sllajd i zbrazët"
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
+"05020400.xhp\n"
"par_id3152920\n"
"19\n"
"help.text"
msgid "File opens in a new page."
msgstr ""
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
+"05020400.xhp\n"
"par_id3148451\n"
"20\n"
"help.text"
msgid "_parent"
msgstr ""
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
-"par_id3154216\n"
+"05020400.xhp\n"
+"par_id3154217\n"
"21\n"
"help.text"
msgid "File opens in the parent frame of the current frame. If there is no parent frame, the current frame is used."
msgstr ""
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
+"05020400.xhp\n"
"par_id3154153\n"
"22\n"
"help.text"
msgid "_top"
msgstr "Lartë"
-#: 01100500.xhp
+#: 05020400.xhp
msgctxt ""
-"01100500.xhp\n"
+"05020400.xhp\n"
"par_id3150288\n"
"23\n"
"help.text"
msgid "File opens in the topmost frame in the hierarchy."
msgstr ""
-#: 05240200.xhp
+#: 05020400.xhp
msgctxt ""
-"05240200.xhp\n"
-"tit\n"
+"05020400.xhp\n"
+"hd_id3149656\n"
+"22\n"
"help.text"
-msgid "Horizontally"
-msgstr "Horizontalisht"
+msgid "Character Styles"
+msgstr "Stilet e karakterit"
-#: 05240200.xhp
+#: 05020400.xhp
msgctxt ""
-"05240200.xhp\n"
-"hd_id3147543\n"
-"1\n"
+"05020400.xhp\n"
+"par_id3148664\n"
+"23\n"
"help.text"
-msgid "<link href=\"text/shared/01/05240200.xhp\" name=\"Horizontally\">Horizontally</link>"
+msgid "Specify the formatting options for the hyperlink."
msgstr ""
-#: 05240200.xhp
+#: 05020400.xhp
msgctxt ""
-"05240200.xhp\n"
-"par_id3146936\n"
-"2\n"
+"05020400.xhp\n"
+"hd_id3151056\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\".uno:ObjectMirrorHorizontal\">Flips the selected object(s) horizontally from left to right.</ahelp>"
+msgid "Visited links"
+msgstr "Lindhjet e vizituara"
+
+#: 05020400.xhp
+msgctxt ""
+"05020400.xhp\n"
+"par_id3150359\n"
+"25\n"
+"help.text"
+msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/visitedlb\">Select a formatting style to use for visited links from the list. To add or modify a style in this list, close this dialog, and click the <emph>Styles and Formatting</emph> icon on the <emph>Formatting</emph> toolbar.</ahelp>"
msgstr ""
-#: 06130100.xhp
+#: 05020400.xhp
msgctxt ""
-"06130100.xhp\n"
+"05020400.xhp\n"
+"hd_id3154365\n"
+"26\n"
+"help.text"
+msgid "Unvisited links"
+msgstr "Lidhje të pavizituara"
+
+#: 05020400.xhp
+msgctxt ""
+"05020400.xhp\n"
+"par_id3154216\n"
+"27\n"
+"help.text"
+msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/unvisitedlb\">Select a formatting style to use for unvisited links from the list. To add or modify a style in this list, close this dialog, and click the <emph>Styles and Formatting</emph> icon on the <emph>Formatting</emph> toolbar.</ahelp>"
+msgstr ""
+
+#: 05020400.xhp
+msgctxt ""
+"05020400.xhp\n"
+"par_id3143231\n"
+"help.text"
+msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink dialog</link>"
+msgstr ""
+
+#: 05020400.xhp
+msgctxt ""
+"05020400.xhp\n"
+"par_id3152933\n"
+"help.text"
+msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"Assign macro\">Assign macro</link>"
+msgstr ""
+
+#: 05020500.xhp
+msgctxt ""
+"05020500.xhp\n"
"tit\n"
"help.text"
-msgid "Change Password"
-msgstr "Ndrysho mbrojtjen e fjalëkalimit"
+msgid "Font Position"
+msgstr "Pozicioni i Fontit"
-#: 06130100.xhp
+#: 05020500.xhp
msgctxt ""
-"06130100.xhp\n"
-"hd_id3153514\n"
+"05020500.xhp\n"
+"bm_id3154841\n"
+"help.text"
+msgid "<bookmark_value>positioning; fonts</bookmark_value><bookmark_value>formats; positions</bookmark_value><bookmark_value>effects;font positions</bookmark_value><bookmark_value>fonts; positions in text</bookmark_value><bookmark_value>spacing; font effects</bookmark_value><bookmark_value>characters; spacing</bookmark_value><bookmark_value>pair kerning</bookmark_value><bookmark_value>kerning; in characters</bookmark_value><bookmark_value>text; kerning</bookmark_value>"
+msgstr ""
+
+#: 05020500.xhp
+msgctxt ""
+"05020500.xhp\n"
+"hd_id3154841\n"
"1\n"
"help.text"
-msgid "Change Password"
-msgstr "Ndrysho mbrojtjen e fjalëkalimit"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Font Position</link></caseinline><defaultinline><link href=\"text/shared/01/05020500.xhp\" name=\"Position\">Position</link></defaultinline></switchinline>"
+msgstr ""
-#: 06130100.xhp
+#: 05020500.xhp
msgctxt ""
-"06130100.xhp\n"
-"par_id3154545\n"
+"05020500.xhp\n"
+"par_id3148585\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_PASSWORD\">Protects the selected library with a password.</ahelp> You can enter a new password, or change the current password."
+msgid "<ahelp hid=\"cui/ui/positionpage/PositionPage\">Specify the position, scaling, rotation, and spacing for characters.</ahelp>"
msgstr ""
-#: 06130100.xhp
+#: 05020500.xhp
msgctxt ""
-"06130100.xhp\n"
-"hd_id3145759\n"
+"05020500.xhp\n"
+"hd_id3147089\n"
"3\n"
"help.text"
-msgid "Old password"
-msgstr "Fjalëkalim i pavlefshëm"
+msgid "Position"
+msgstr "Pozicion"
-#: 06130100.xhp
+#: 05020500.xhp
msgctxt ""
-"06130100.xhp\n"
-"hd_id3150603\n"
+"05020500.xhp\n"
+"par_id3153748\n"
"4\n"
"help.text"
-msgid "Password"
-msgstr "Fjalëkalimi"
+msgid "Set the subscript or superscript options for a character."
+msgstr ""
-#: 06130100.xhp
+#: 05020500.xhp
msgctxt ""
-"06130100.xhp\n"
-"par_id3144415\n"
+"05020500.xhp\n"
+"hd_id3153311\n"
"5\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Enter the current password for the selected library.</ahelp>"
-msgstr ""
+msgid "Superscript"
+msgstr "Mbishkrim"
-#: 06130100.xhp
+#: 05020500.xhp
msgctxt ""
-"06130100.xhp\n"
-"hd_id3145160\n"
+"05020500.xhp\n"
+"par_id3154750\n"
"6\n"
"help.text"
-msgid "New password"
-msgstr "Fjalëkalim i pavlefshëm"
+msgid "<variable id=\"hochtext\"><ahelp hid=\"cui/ui/positionpage/superscript\">Reduces the font size of the selected text and raises the text above the baseline.</ahelp></variable>"
+msgstr ""
-#: 06130100.xhp
+#: 05020500.xhp
msgctxt ""
-"06130100.xhp\n"
-"hd_id3149525\n"
+"05020500.xhp\n"
+"hd_id3147275\n"
"7\n"
"help.text"
-msgid "Password"
-msgstr "Fjalëkalimi"
+msgid "Normal"
+msgstr "Normal"
-#: 06130100.xhp
+#: 05020500.xhp
msgctxt ""
-"06130100.xhp\n"
-"par_id3159194\n"
+"05020500.xhp\n"
+"par_id3155503\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Enter a new password for the selected library.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/positionpage/normal\">Removes superscript or subscript formatting.</ahelp>"
msgstr ""
-#: 06130100.xhp
+#: 05020500.xhp
msgctxt ""
-"06130100.xhp\n"
-"hd_id3166445\n"
+"05020500.xhp\n"
+"hd_id3150465\n"
"9\n"
"help.text"
-msgid "Confirm"
-msgstr "Konfirmo"
+msgid "Subscript"
+msgstr "Nënshkrim"
-#: 06130100.xhp
+#: 05020500.xhp
msgctxt ""
-"06130100.xhp\n"
-"par_id3153114\n"
+"05020500.xhp\n"
+"par_id3155420\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Reenter the new password for the selected library.</ahelp>"
+msgid "<variable id=\"tieftext\"><ahelp hid=\"cui/ui/positionpage/subscript\">Reduces the font size of the selected text and lowers the text below the baseline.</ahelp></variable>"
msgstr ""
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"tit\n"
+"05020500.xhp\n"
+"hd_id3148992\n"
+"11\n"
"help.text"
-msgid "Movie and Sound"
-msgstr "Fil~mi dhevZëri"
+msgid "Raise/lower by"
+msgstr "**Pjesëtim me zero**"
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"bm_id1907712\n"
+"05020500.xhp\n"
+"par_id3150275\n"
+"12\n"
"help.text"
-msgid "<bookmark_value>inserting;movies/sounds</bookmark_value> <bookmark_value>sound files</bookmark_value> <bookmark_value>playing movies and sound files</bookmark_value> <bookmark_value>videos</bookmark_value> <bookmark_value>movies</bookmark_value> <bookmark_value>audio</bookmark_value> <bookmark_value>music</bookmark_value>"
+msgid "<ahelp hid=\"cui/ui/positionpage/raiselowersb\">Enter the amount by which you want to raise or to lower the selected text in relation to the baseline. One hundred percent is equal to the height of the font.</ahelp>"
msgstr ""
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN1065C\n"
+"05020500.xhp\n"
+"hd_id3150670\n"
+"13\n"
"help.text"
-msgid "<variable id=\"moviesoundtitle\"><link href=\"text/shared/01/moviesound.xhp\">Movie and Sound</link></variable>"
-msgstr ""
+msgid "Relative font size"
+msgstr "Madhësia Rel. e Fontit"
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN1066C\n"
+"05020500.xhp\n"
+"par_id3153126\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts a video or sound file into your document.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/positionpage/fontsizesb\">Enter the amount by which you want to reduce the font size of the selected text.</ahelp>"
msgstr ""
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN10683\n"
+"05020500.xhp\n"
+"hd_id3153349\n"
+"15\n"
"help.text"
-msgid "To insert a movie or sound file into your document"
+msgid "Automatic"
+msgstr "Automatike"
+
+#: 05020500.xhp
+msgctxt ""
+"05020500.xhp\n"
+"par_id3153061\n"
+"16\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/positionpage/automatic\">Automatically sets the amount by which the selected text is raised or lowered in relation to the baseline.</ahelp>"
msgstr ""
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN1068A\n"
+"05020500.xhp\n"
+"hd_id3154905\n"
+"30\n"
"help.text"
-msgid "Click where you want to insert the file."
+msgid "Rotation / scaling"
+msgstr "Rritje e bitmap-it"
+
+#: 05020500.xhp
+msgctxt ""
+"05020500.xhp\n"
+"par_id3154923\n"
+"36\n"
+"help.text"
+msgid "Set the rotation and the scaling options for the selected text."
msgstr ""
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN1068E\n"
+"05020500.xhp\n"
+"hd_id3154280\n"
+"31\n"
"help.text"
-msgid "Choose <emph>Insert - Movie and Sound</emph>."
+msgid "0 degrees"
+msgstr "0 shkallë"
+
+#: 05020500.xhp
+msgctxt ""
+"05020500.xhp\n"
+"par_id3149045\n"
+"37\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/positionpage/0deg\">Does not rotate the selected text.</ahelp>"
msgstr ""
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN10696\n"
+"05020500.xhp\n"
+"hd_id3156434\n"
+"32\n"
"help.text"
-msgid "In the File Open dialog, select the file that you want to insert."
+msgid "90 degrees"
+msgstr "90 shkallë"
+
+#: 05020500.xhp
+msgctxt ""
+"05020500.xhp\n"
+"par_id3148739\n"
+"38\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/positionpage/90deg\">Rotates the selected text to the left by 90 degrees.</ahelp>"
msgstr ""
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN10699\n"
+"05020500.xhp\n"
+"hd_id3150398\n"
+"33\n"
"help.text"
-msgid "The file types that are listed in this dialog are not supported by all operating systems."
+msgid "270 degrees"
+msgstr "270 shkallë"
+
+#: 05020500.xhp
+msgctxt ""
+"05020500.xhp\n"
+"par_id3153778\n"
+"39\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/positionpage/270deg\">Rotates the selected text to the right by 90 degrees.</ahelp>"
msgstr ""
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN10700\n"
+"05020500.xhp\n"
+"hd_id3147228\n"
+"34\n"
"help.text"
-msgid "Click the <emph>Link</emph> box if you want a link to the original file. If it is not checked, the media file will be embedded (not supported with all file formats)."
+msgid "Fit to line"
+msgstr "Përkuzifo në rresht"
+
+#: 05020500.xhp
+msgctxt ""
+"05020500.xhp\n"
+"par_id3150288\n"
+"40\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/positionpage/fittoline\">Stretches or compresses the selected text so that it fits between the line that is above the text and the line that is below the text.</ahelp>"
msgstr ""
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN106D7\n"
+"05020500.xhp\n"
+"hd_id3155994\n"
+"35\n"
"help.text"
-msgid "Click <emph>Open</emph>."
-msgstr "Dokumenti nuk mund të hapet."
+msgid "Scale width"
+msgstr "Gjerësia e plotë"
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_id0120200912190948\n"
+"05020500.xhp\n"
+"par_id3145171\n"
+"41\n"
"help.text"
-msgid "Alternatively, you can choose <item type=\"menuitem\">Tools - Media Player</item> to open the Media Player. Use the Media Player to preview all supported media files. Click the Apply button in the Media Player window to insert the current media file into your document."
+msgid "<ahelp hid=\"cui/ui/positionpage/scalewidthsb\">Enter the percentage of the font width by which to horizontally stretch or compress the selected text.</ahelp>"
msgstr ""
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN1069C\n"
+"05020500.xhp\n"
+"hd_id3149807\n"
+"17\n"
"help.text"
-msgid "To play a movie or sound file"
+msgid "Spacing"
+msgstr "Hapësira"
+
+#: 05020500.xhp
+msgctxt ""
+"05020500.xhp\n"
+"par_id3156212\n"
+"18\n"
+"help.text"
+msgid "Specify the spacing between individual characters."
msgstr ""
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN106A7\n"
+"05020500.xhp\n"
+"hd_id3125865\n"
+"19\n"
"help.text"
-msgid "Click the object icon for the movie or sound file in your document."
+msgid "Spacing"
+msgstr "Hapësira"
+
+#: 05020500.xhp
+msgctxt ""
+"05020500.xhp\n"
+"par_id3153178\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/positionpage/kerninglb\">Specifies the spacing between the characters of the selected text. For expanded or condensed spacing, enter the amount that you want to expand or condense the text in the <emph>by </emph>box.</ahelp>"
msgstr ""
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_id0120200912190940\n"
+"05020500.xhp\n"
+"par_id3154908\n"
+"21\n"
"help.text"
-msgid "If the icon is arranged on the background, hold down Ctrl while you click."
+msgid "<emph>Default</emph> - uses the character spacing specified in the font type"
msgstr ""
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_id0120200912062096\n"
+"05020500.xhp\n"
+"par_id3156543\n"
+"22\n"
"help.text"
-msgid "The Media Playback toolbar is shown."
+msgid "<emph>Expanded</emph> - increases the character spacing"
msgstr ""
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN10788\n"
+"05020500.xhp\n"
+"par_id3154297\n"
+"23\n"
"help.text"
-msgid "Click <emph>Play</emph> on the <emph>Media Playback</emph> toolbar."
+msgid "<emph>Condensed</emph> - decreases the character spacing"
msgstr ""
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_id0120200912062064\n"
+"05020500.xhp\n"
+"hd_id3157870\n"
+"25\n"
"help.text"
-msgid "When you show an Impress presentation, the embedded sound or video on the current slide plays automatically until it's over or until you leave the slide."
+msgid "by"
+msgstr "nga"
+
+#: 05020500.xhp
+msgctxt ""
+"05020500.xhp\n"
+"par_id3146974\n"
+"26\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/positionpage/kerninged\">Enter the amount by which you want to expand or condense the character spacing for the selected text.</ahelp>"
msgstr ""
-#: moviesound.xhp
+#: 05020500.xhp
msgctxt ""
-"moviesound.xhp\n"
-"par_idN106D0\n"
+"05020500.xhp\n"
+"hd_id3154127\n"
+"27\n"
"help.text"
-msgid "You can also use the Media Playback Bar to pause, to stop, to loop, as well as to adjust the volume or to mute the playback of the file. The current playback position in the file is indicated on the left slider. Use the right slider to adjust the playback volume. For movie files, the bar also contains a list box where you can select the zoom factor for the playback."
+msgid "<link href=\"text/shared/00/00000005.xhp#kerning\" name=\"Pair kerning\">Pair kerning</link>"
msgstr ""
-#: about_meta_tags.xhp
+#: 05020500.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"tit\n"
+"05020500.xhp\n"
+"par_id3148616\n"
+"28\n"
"help.text"
-msgid "HTML import and export"
-msgstr "TIFF Import dhe Eksport Filteri"
+msgid "<ahelp hid=\"cui/ui/positionpage/pairkerning\">Automatically adjust the character spacing for specific letter combinations.</ahelp>"
+msgstr ""
-#: about_meta_tags.xhp
+#: 05020500.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"bm_id3154380\n"
+"05020500.xhp\n"
+"par_id3150010\n"
+"29\n"
"help.text"
-msgid "<bookmark_value>importing; HTML with META tags</bookmark_value><bookmark_value>exporting; to HTML</bookmark_value><bookmark_value>HTML; importing META tags</bookmark_value><bookmark_value>HTML documents; META tags in</bookmark_value><bookmark_value>META tags</bookmark_value><bookmark_value>tags; META tags</bookmark_value>"
+msgid "Kerning is only available for certain font types and requires that your printer support this option."
msgstr ""
-#: about_meta_tags.xhp
+#: 05020600.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"hd_id3154380\n"
-"20\n"
+"05020600.xhp\n"
+"tit\n"
"help.text"
-msgid "HTML import and export"
-msgstr "TIFF Import dhe Eksport Filteri"
+msgid "Asian Layout"
+msgstr "Formëdhënja Aziatike"
-#: about_meta_tags.xhp
+#: 05020600.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3145119\n"
-"1\n"
+"05020600.xhp\n"
+"bm_id3156053\n"
"help.text"
-msgid "When you export a file to an HTML document, the description and the user-defined file properties are included as META <link href=\"text/shared/00/00000002.xhp#tags\" name=\"tags\">tags</link> between the HEAD tags of the exported document. META tags are not displayed in a Web browser, and are used to include information, such as keywords for search engines on your Web page. To set the properties of the current document, choose <emph>File - Properties</emph>, click the <emph>Description</emph> or <emph>User Defined</emph> tabs, and then type the information you want."
+msgid "<bookmark_value>double-line writing in Asian layout</bookmark_value><bookmark_value>formats; Asian layout</bookmark_value><bookmark_value>characters; Asian layout</bookmark_value><bookmark_value>text; Asian layout</bookmark_value>"
msgstr ""
-#: about_meta_tags.xhp
+#: 05020600.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3148552\n"
-"21\n"
+"05020600.xhp\n"
+"hd_id3156053\n"
+"1\n"
"help.text"
-msgid "The following file properties are converted to META tags when you export a file as an HTML document:"
+msgid "<link href=\"text/shared/01/05020600.xhp\" name=\"Asian Layout\">Asian Layout</link>"
msgstr ""
-#: about_meta_tags.xhp
+#: 05020600.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3154935\n"
+"05020600.xhp\n"
+"par_id3155351\n"
"2\n"
"help.text"
-msgid "File Property"
-msgstr "Vendos vetinë '#'"
+msgid "<ahelp hid=\"\">Sets the options for double-line writing for Asian languages. Select the characters in your text, and then choose this command.</ahelp>"
+msgstr ""
-#: about_meta_tags.xhp
+#: 05020600.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3151056\n"
+"05020600.xhp\n"
+"hd_id3152552\n"
"3\n"
"help.text"
-msgid "<TITLE>"
-msgstr "Titulli"
+msgid "Double-lined"
+msgstr "Linja të dyfishta"
-#: about_meta_tags.xhp
+#: 05020600.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3153778\n"
+"05020600.xhp\n"
+"par_id3155338\n"
"4\n"
"help.text"
-msgid "Subject"
-msgstr "Tema"
+msgid "Set the double-line options for the selected text."
+msgstr ""
-#: about_meta_tags.xhp
+#: 05020600.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3147228\n"
+"05020600.xhp\n"
+"hd_id3147089\n"
"5\n"
"help.text"
-msgid "<META NAME=\"CLASSIFICATION\" CONTENT=\"Field Content\">"
-msgstr ""
+msgid "Write in double lines"
+msgstr "Rreshtat në kornizë të tekstit"
-#: about_meta_tags.xhp
+#: 05020600.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3154908\n"
+"05020600.xhp\n"
+"par_id3150693\n"
"6\n"
"help.text"
-msgid "Keywords"
-msgstr "Fjalët kyçe"
+msgid "<ahelp hid=\"cui/ui/twolinespage/twolines\">Allows you to write in double lines in the area that you selected in the current document.</ahelp>"
+msgstr ""
-#: about_meta_tags.xhp
+#: 05020600.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3156422\n"
+"05020600.xhp\n"
+"hd_id3157959\n"
"7\n"
"help.text"
-msgid "<META NAME=\"KEYWORDS\" CONTENT=\"Field Content\">"
-msgstr ""
+msgid "Enclosing characters"
+msgstr "Karakteret e fusnotave"
-#: about_meta_tags.xhp
+#: 05020600.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3151041\n"
+"05020600.xhp\n"
+"par_id3154749\n"
"8\n"
"help.text"
-msgid "Description"
-msgstr "Përshkrimi"
+msgid "Specify the characters to enclose the double-lined area."
+msgstr ""
-#: about_meta_tags.xhp
+#: 05020600.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3125863\n"
+"05020600.xhp\n"
+"hd_id3148539\n"
"9\n"
"help.text"
-msgid "<META NAME=\"DESCRIPTION\" CONTENT=\"Field Content\">"
-msgstr ""
+msgid "Initial character"
+msgstr "Kodi i karakterit"
-#: about_meta_tags.xhp
+#: 05020600.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3159149\n"
+"05020600.xhp\n"
+"par_id3150504\n"
"10\n"
"help.text"
-msgid "Info fields 1...4"
-msgstr "Fushat e informatës..."
+msgid "<ahelp hid=\"cui/ui/twolinespage/startbracket\">Select the character to define the start of the double-lined area. If you want to choose a custom character, select <emph>Other Characters</emph>.</ahelp>"
+msgstr ""
-#: about_meta_tags.xhp
+#: 05020600.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3157892\n"
+"05020600.xhp\n"
+"hd_id3159115\n"
"11\n"
"help.text"
-msgid "<META NAME=\"Info field name\" CONTENT=\"Field Content\">"
-msgstr ""
+msgid "Final character"
+msgstr "Kodi i karakterit"
-#: about_meta_tags.xhp
+#: 05020600.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3155855\n"
-"22\n"
+"05020600.xhp\n"
+"par_id3149191\n"
+"12\n"
"help.text"
-msgid "When you import an HTML containing these META tags, the contents of the tags are added to the corresponding $[officename] file property box."
+msgid "<ahelp hid=\"cui/ui/twolinespage/endbracket\">Select the character to define the end of the double-lined area. If you want to choose a custom character, select <emph>Other Characters</emph>.</ahelp>"
msgstr ""
-#: about_meta_tags.xhp
+#: 05020700.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id0926200812164481\n"
+"05020700.xhp\n"
+"tit\n"
"help.text"
-msgid "Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
-msgstr ""
+msgid "Asian Typography"
+msgstr "Tipografi Aziatike"
-#: about_meta_tags.xhp
+#: 05020700.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"hd_id3163822\n"
-"12\n"
+"05020700.xhp\n"
+"bm_id3155620\n"
"help.text"
-msgid "Import Tips"
-msgstr "Këshilla të zgjeruara"
+msgid "<bookmark_value>Asian typography</bookmark_value><bookmark_value>formatting; Asian typography</bookmark_value><bookmark_value>paragraphs; Asian typography</bookmark_value><bookmark_value>typography; Asian</bookmark_value>"
+msgstr ""
-#: about_meta_tags.xhp
+#: 05020700.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3155307\n"
-"13\n"
+"05020700.xhp\n"
+"hd_id3155620\n"
+"1\n"
"help.text"
-msgid "When you import an HTML document, following META tags are automatically converted to $[officename] fields: <META HTTP-EQUIV=\"REFRESH\"...> and <META NAME=\"...\" ...> , where NAME equals to AUTHOR, CREATED, CHANGED, CHANGEDBY, DESCRIPTION, KEYWORDS or CLASSIFICATION."
+msgid "<link href=\"text/shared/01/05020700.xhp\" name=\"Asian Typography\">Asian Typography</link>"
msgstr ""
-#: about_meta_tags.xhp
+#: 05020700.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3146146\n"
-"15\n"
+"05020700.xhp\n"
+"par_id3153124\n"
+"2\n"
"help.text"
-msgid "Scripts, comments, and META tags that are positioned directly before a TABLE tag are inserted in the first cell of the table."
+msgid "<ahelp hid=\".\">Set the typographic options for cells or paragraphs in Asian language files. To enable Asian language support, choose <emph>Language Settings - Languages</emph> in the Options dialog box, and then select the <emph>Enabled</emph> box in the <emph>Asian language support</emph> area.</ahelp> The Asian typography options are ignored in HTML documents."
msgstr ""
-#: about_meta_tags.xhp
+#: 05020700.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3155366\n"
-"16\n"
+"05020700.xhp\n"
+"hd_id3147571\n"
+"3\n"
"help.text"
-msgid "Scripts and META tags in the header of an HTML document are imported and anchored to the first paragraph in the document."
+msgid "Line change"
+msgstr "Change Line Color"
+
+#: 05020700.xhp
+msgctxt ""
+"05020700.xhp\n"
+"par_id3147834\n"
+"4\n"
+"help.text"
+msgid "Set the options for line breaks in Asian language documents."
msgstr ""
-#: about_meta_tags.xhp
+#: 05020700.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3152885\n"
-"14\n"
+"05020700.xhp\n"
+"hd_id3145072\n"
+"9\n"
"help.text"
-msgid "To set the options for importing HTML tags, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>. A known META tag contains either \"HTTP-EQUIV\" or \"NAME\", and are imported as $[officename] comments. The only exception is <META NAME=\"GENERATOR\"...>, which is ignored."
+msgid "Apply list of forbidden characters to the beginning and end of line"
+msgstr "Zbato listën e karaktereve të ndaluara në fillim dhe në fund të rreshtit"
+
+#: 05020700.xhp
+msgctxt ""
+"05020700.xhp\n"
+"par_id3153683\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/asiantypography/checkForbidList\">Prevents the characters in the list from starting or ending a line. The characters are relocated to either the previous or the next line.</ahelp> To edit the list of restricted characters, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - <link href=\"text/shared/optionen/01150100.xhp\" name=\"Asian Layout\">Asian Layout</link></emph>."
msgstr ""
-#: about_meta_tags.xhp
+#: 05020700.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"hd_id3163717\n"
-"17\n"
+"05020700.xhp\n"
+"hd_id3149751\n"
+"5\n"
"help.text"
-msgid "Export Tips"
-msgstr "Këshilla të zgjeruara"
+msgid "Allow hanging punctuation"
+msgstr "Pikëzim i varur në fund të rreshtit"
-#: about_meta_tags.xhp
+#: 05020700.xhp
msgctxt ""
-"about_meta_tags.xhp\n"
-"par_id3159180\n"
-"19\n"
+"05020700.xhp\n"
+"par_id3149096\n"
+"6\n"
"help.text"
-msgid "Comments and script fields at the beginning of the first paragraph in a document are exported to the header of an HTML document. If the document begins with a table, the first paragraph in the first cell of the table is exported to the header of the HTML document."
+msgid "<ahelp hid=\"cui/ui/asiantypography/checkHangPunct\">Prevents commas and periods from breaking the line. Instead, these characters are added to the end of the line, even in the page margin.</ahelp>"
msgstr ""
-#: 04150400.xhp
+#: 05020700.xhp
msgctxt ""
-"04150400.xhp\n"
-"tit\n"
+"05020700.xhp\n"
+"par_id3147275\n"
+"7\n"
"help.text"
-msgid "Insert sound"
-msgstr "Shto Plug-in të Zërit"
+msgid "<emph>Apply spacing between Asian, Latin and Complex text</emph>"
+msgstr ""
-#: 04150400.xhp
+#: 05020700.xhp
msgctxt ""
-"04150400.xhp\n"
-"hd_id3152414\n"
-"1\n"
+"05020700.xhp\n"
+"par_id3148539\n"
+"8\n"
"help.text"
-msgid "Insert sound"
-msgstr "Shto Plug-in të Zërit"
+msgid "<ahelp hid=\"cui/ui/asiantypography/checkApplySpacing\">Inserts a space between Asian, Latin and complex characters.</ahelp>"
+msgstr ""
-#: 04150400.xhp
+#: 05020700.xhp
msgctxt ""
-"04150400.xhp\n"
-"par_id3154840\n"
-"2\n"
+"05020700.xhp\n"
+"par_id3153665\n"
"help.text"
-msgid "<variable id=\"klang\"><ahelp hid=\".uno:InsertSound\">Inserts a sound file into the current document.</ahelp></variable>"
+msgid "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Enabling Asian language support\">Enabling Asian language support</link>"
msgstr ""
-#: 05070200.xhp
+#: 05030000.xhp
msgctxt ""
-"05070200.xhp\n"
+"05030000.xhp\n"
"tit\n"
"help.text"
-msgid "Center Horizontal"
-msgstr "Në qendër horizontalisht"
+msgid "Paragraph"
+msgstr "Paragraf"
-#: 05070200.xhp
+#: 05030000.xhp
msgctxt ""
-"05070200.xhp\n"
-"hd_id3150278\n"
+"05030000.xhp\n"
+"hd_id3150467\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070200.xhp\" name=\"Center Horizontal\">Center Horizontal</link>"
-msgstr ""
+msgid "Paragraph"
+msgstr "Paragraf"
-#: 05070200.xhp
+#: 05030000.xhp
msgctxt ""
-"05070200.xhp\n"
-"par_id3145138\n"
+"05030000.xhp\n"
+"par_id3148668\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:AlignHorizontalCenter\">Horizontally centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the horizontal center of the page.</ahelp>"
+msgid "<variable id=\"absatztext\"><ahelp hid=\".uno:EditStyle\">Modifies the format of the current paragraph, such as indents and alignment.</ahelp></variable> To modify the font of the current paragraph, select the entire paragraph, choose Format - Character, and then click on the Font tab."
msgstr ""
-#: 05070200.xhp
+#: 05030000.xhp
msgctxt ""
-"05070200.xhp\n"
-"par_id3144336\n"
+"05030000.xhp\n"
+"par_id3156042\n"
"3\n"
"help.text"
-msgid "The vertical position of the selected objects is not affected by this command.<embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">The paragraph style for the current paragraph is displayed at the <emph>Formatting</emph> toolbar, and is highlighted in the <link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles and Formatting window</link>. </caseinline></switchinline>"
msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
+"05030100.xhp\n"
"tit\n"
"help.text"
-msgid "XML Filter Settings"
-msgstr "Parametrat e XLM Filtrit"
+msgid "Indents and Spacing"
+msgstr "Pozita dhe hapësira"
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"bm_id3153272\n"
+"05030100.xhp\n"
+"bm_id3154689\n"
"help.text"
-msgid "<bookmark_value>filters; XML filter settings</bookmark_value><bookmark_value>XML filters; settings</bookmark_value>"
+msgid "<bookmark_value>spacing; between paragraphs in footnotes</bookmark_value> <bookmark_value>line spacing; paragraph</bookmark_value> <bookmark_value>spacing; lines and paragraphs</bookmark_value> <bookmark_value>single-line spacing in text</bookmark_value> <bookmark_value>one and a half line spacing in text</bookmark_value> <bookmark_value>double-line spacing in paragraphs</bookmark_value> <bookmark_value>leading between paragraphs</bookmark_value> <bookmark_value>paragraphs;spacing</bookmark_value>"
msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3153272\n"
+"05030100.xhp\n"
+"hd_id3154689\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Indents and Spacing\">Indents and Spacing</link>"
+msgstr ""
+
+#: 05030100.xhp
+msgctxt ""
+"05030100.xhp\n"
+"par_id3155069\n"
"2\n"
"help.text"
-msgid "<link href=\"text/shared/01/06150000.xhp\" name=\"XML Filter Settings\">XML Filter Settings</link>"
+msgid "<ahelp hid=\"HID_FORMAT_PARAGRAPH_STD\">Sets the indenting and the spacing options for the paragraph.</ahelp>"
msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3152937\n"
-"1\n"
+"05030100.xhp\n"
+"par_id3153910\n"
+"64\n"
"help.text"
-msgid "<ahelp hid=\".uno:OpenXMLFilterSettings\">Opens the <emph>XML Filter Settings </emph>dialog, where you can create, edit, delete, and test filters to import and to export XML files.</ahelp>"
+msgid "To change the measurement units used in this dialog, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - General, and then select a new measurement unit in the Settings area."
msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_idN10646\n"
+"05030100.xhp\n"
+"par_id3154823\n"
+"11\n"
"help.text"
-msgid "Some filters are only available as optional components during the %PRODUCTNAME installation. To install an optional filter, run the %PRODUCTNAME Setup application, select \"Modify\", and then select the filter that you want in the list of modules."
+msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <emph>View - Ruler</emph>."
msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3154794\n"
+"05030100.xhp\n"
+"hd_id3158430\n"
"3\n"
"help.text"
-msgid "The term <emph>XML filter</emph> is used in the following as a shortcut for the more exact description as an <emph>XSLT based filter</emph>."
-msgstr ""
+msgid "Indent"
+msgstr "Kryerresht"
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3149495\n"
+"05030100.xhp\n"
+"par_id3155419\n"
"4\n"
"help.text"
-msgid "Term"
-msgstr "Term"
+msgid "Specify the amount of space to leave between the left and the right page margins and the paragraph."
+msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3149549\n"
+"05030100.xhp\n"
+"hd_id3153698\n"
"5\n"
"help.text"
-msgid "Description"
-msgstr "Përshkrimi"
+msgid "Before text"
+msgstr "Vizato tekstin"
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3144758\n"
+"05030100.xhp\n"
+"par_id3148990\n"
"6\n"
"help.text"
-msgid "XML"
-msgstr "XML Dokument i formularit"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_LEFTINDENT\">Enter the amount of space that you want to indent the paragraph from the page margin. If you want the paragraph to extend into the page margin, enter a negative number. In Left-to-Right languages, the left edge of the paragraph is indented with respect to the left page margin. In Right-to-Left languages, the right edge of the paragraph is indented with respect to the right page margin.</ahelp>"
+msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3152425\n"
-"7\n"
+"05030100.xhp\n"
+"hd_id3152361\n"
+"9\n"
"help.text"
-msgid "Extensible Markup Language"
-msgstr "HTML (HyperText Markup Language)"
+msgid "After text"
+msgstr "Vizato tekstin"
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3155355\n"
-"8\n"
+"05030100.xhp\n"
+"par_id3154390\n"
+"10\n"
"help.text"
-msgid "XSL"
-msgstr "XSLT Filterat shembuj"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_RIGHTINDENT\">Enter the amount of space that you want to indent the paragraph from the page margin. If you want the paragraph to extend into the page margin, enter a negative number. In Left-to-Right languages, the right edge of the paragraph is indented with respect to the right page margin. In Right-to-Left languages, the left edge of the paragraph is indented with respect to the left page margin.</ahelp>"
+msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3145071\n"
-"9\n"
+"05030100.xhp\n"
+"hd_id3149169\n"
+"7\n"
"help.text"
-msgid "Extensible Stylesheet Language"
-msgstr "Modulet e gjuhëve në dispozicion"
+msgid "First line"
+msgstr "Rreshti i Parë"
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3156426\n"
-"10\n"
+"05030100.xhp\n"
+"par_id3150651\n"
+"8\n"
"help.text"
-msgid "XSLT"
-msgstr "XSLT Filterat shembuj"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_FLINEINDENT\">Indents the first line of a paragraph by the amount that you enter. To create a hanging indent enter a positive value for \"Before text\" and a negative value for \"First line\". To indent the first line of a paragraph that uses numbering or bullets, choose \"<link href=\"text/shared/01/06050600.xhp\">Format - Bullets and Numbering - Position</link>\".</ahelp>"
+msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3154983\n"
-"11\n"
+"05030100.xhp\n"
+"hd_id3150288\n"
+"52\n"
"help.text"
-msgid "Extensible Stylesheet Language Transformation. XSLT files are also called XSLT stylesheets."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Automatic </caseinline></switchinline>"
msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_idN106E7\n"
+"05030100.xhp\n"
+"par_id3151041\n"
+"53\n"
"help.text"
-msgid "The XHTML export filter produces valid \"XHTML 1.0 Strict\" output for Writer, Calc, Draw, and Impress documents."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_STD_PARAGRAPH:CB_AUTO\">Automatically indents a paragraph according to the font size and the line spacing. The setting in the <emph>First Line </emph>box is ignored.</ahelp></caseinline></switchinline>"
msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3145382\n"
-"12\n"
+"05030100.xhp\n"
+"hd_id3157894\n"
+"22\n"
"help.text"
-msgid "Filter list"
-msgstr "Kryerresht i listës"
+msgid "Spacing"
+msgstr "Hapësira"
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3147209\n"
-"13\n"
+"05030100.xhp\n"
+"par_id3152462\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/filterlist\">Select one or more filters, then click one of the buttons.</ahelp>"
+msgid "Specify the amount of space to leave between selected paragraphs."
msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_idN10711\n"
+"05030100.xhp\n"
+"hd_id3147216\n"
+"24\n"
"help.text"
-msgid "Some filters are only available as optional components during the %PRODUCTNAME installation. To install an optional filter, run the %PRODUCTNAME Setup application, select \"Modify\", and then select the filter that you want in the list of modules."
-msgstr ""
+msgid "Above paragraph"
+msgstr "Paragrafi: $(ARG)"
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3153032\n"
-"33\n"
+"05030100.xhp\n"
+"par_id3146148\n"
+"25\n"
"help.text"
-msgid "The lists shows the name and the type of the installed filters."
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_TOPDIST\">Enter the amount of space that you want to leave above the selected paragraph(s).</ahelp>"
msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3154577\n"
-"14\n"
+"05030100.xhp\n"
+"hd_id3145590\n"
+"26\n"
"help.text"
-msgid "Click a filter to select it."
-msgstr "Zgjedh një komandë apo kliko për të zgjedhur temën."
+msgid "Below paragraph"
+msgstr "Paragrafi: $(ARG)"
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3149885\n"
-"15\n"
+"05030100.xhp\n"
+"par_id3163822\n"
+"27\n"
"help.text"
-msgid "Shift-click or <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click to select several filters."
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_BOTTOMDIST\">Enter the amount of space that you want to leave below the selected paragraph(s).</ahelp>"
msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3149784\n"
-"16\n"
+"05030100.xhp\n"
+"hd_id3145591\n"
+"26\n"
"help.text"
-msgid "Double-click a name to edit the filter."
+msgid "Don't add space between paragraphs of the same style"
msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3159400\n"
-"17\n"
+"05030100.xhp\n"
+"par_id3163823\n"
+"27\n"
"help.text"
-msgid "New"
-msgstr "E re"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_STD_PARAGRAPH:CB_CONTEXTUALSPACING\">Makes any space specified before or after this paragraph not be applied when the preceding and following paragraphs are of the same paragraph style.</ahelp>"
+msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3149516\n"
-"18\n"
+"05030100.xhp\n"
+"hd_id3156441\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/new\">Opens a dialog with the name of a new filter.</ahelp>"
+msgid "Line spacing"
+msgstr "Hapësira në mes rreshtave"
+
+#: 05030100.xhp
+msgctxt ""
+"05030100.xhp\n"
+"par_id3146985\n"
+"29\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_STD_PARAGRAPH:LB_LINEDIST\">Specify the amount of space to leave between lines of text in a paragraph.</ahelp>"
msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3143270\n"
-"19\n"
+"05030100.xhp\n"
+"hd_id3146923\n"
+"30\n"
"help.text"
-msgid "Edit"
-msgstr "Edito"
+msgid "Single"
+msgstr "E vetme"
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3156192\n"
-"20\n"
+"05030100.xhp\n"
+"par_id3150011\n"
+"31\n"
"help.text"
-msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/edit\">Opens a dialog with the name of the selected file.</ahelp>"
+msgid "<variable id=\"einzeiligtext\">Applies single line spacing to the current paragraph. This is the default setting. </variable>"
msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3154380\n"
-"21\n"
+"05030100.xhp\n"
+"hd_id3148500\n"
+"33\n"
"help.text"
-msgid "Test XSLTs"
-msgstr "Parametrat testues"
+msgid "1.5 lines"
+msgstr "1.5 Rreshta"
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3148491\n"
-"22\n"
+"05030100.xhp\n"
+"par_id3150094\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/test\">Opens a dialog with the name of the selected file.</ahelp>"
+msgid "<variable id=\"eineinhalbzeiligtext\">Sets the line spacing to 1.5 lines. </variable>"
msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3157909\n"
-"23\n"
+"05030100.xhp\n"
+"hd_id3149378\n"
+"36\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "Double"
+msgstr "Dyfish"
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3153564\n"
-"24\n"
+"05030100.xhp\n"
+"par_id3154512\n"
+"37\n"
"help.text"
-msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/delete\">Deletes the selected file after you confirm the dialog that follows.</ahelp>"
+msgid "<variable id=\"zweizeiligtext\">Sets the line spacing to two lines. </variable>"
msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3151384\n"
-"25\n"
+"05030100.xhp\n"
+"hd_id3151206\n"
+"39\n"
"help.text"
-msgid "Save as Package"
-msgstr "Paketo -Ruaej si"
+msgid "Proportional"
+msgstr "Proporcionale"
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3149575\n"
-"26\n"
+"05030100.xhp\n"
+"par_id3147494\n"
+"40\n"
"help.text"
-msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/save\">Displays a <emph>Save as </emph>dialog to save the selected file as an XSLT filter package (*.jar).</ahelp>"
+msgid "Select this option and then enter a percentage value in the box, where 100% corresponds to single line spacing."
msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3154758\n"
-"27\n"
+"05030100.xhp\n"
+"hd_id3156332\n"
+"41\n"
"help.text"
-msgid "Open Package"
-msgstr "~Menagjer i paketave"
+msgid "At Least"
+msgstr "Gjerësia (më së paku)"
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3147559\n"
-"28\n"
+"05030100.xhp\n"
+"par_id3157965\n"
+"42\n"
"help.text"
-msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/open\">Displays an <emph>Open </emph>dialog to open a filter from an XSLT filter package (*.jar).</ahelp>"
+msgid "Sets the minimum line spacing to the value that you enter in the box."
msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3153960\n"
-"29\n"
+"05030100.xhp\n"
+"par_id3150744\n"
+"47\n"
"help.text"
-msgid "Help"
-msgstr "Ndihma"
+msgid "If you use different font sizes within a paragraph, the line spacing is automatically adjusted to the largest font size. If you prefer to have identical spacing for all lines, specify a value in <emph>At least</emph> that corresponds to the largest font size."
+msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3150865\n"
-"30\n"
+"05030100.xhp\n"
+"hd_id3153927\n"
+"43\n"
"help.text"
-msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/help\">Displays the help page for this dialog.</ahelp>"
+msgid "Leading"
msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"hd_id3152772\n"
-"31\n"
+"05030100.xhp\n"
+"par_id3153354\n"
+"44\n"
"help.text"
-msgid "Close"
-msgstr "Mbylle"
+msgid "Sets the height of the vertical space that is inserted between two lines."
+msgstr ""
-#: 06150000.xhp
+#: 05030100.xhp
msgctxt ""
-"06150000.xhp\n"
-"par_id3159086\n"
-"32\n"
+"05030100.xhp\n"
+"hd_id3155443\n"
+"54\n"
"help.text"
-msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/close\">Closes the dialog.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fixed </caseinline></switchinline>"
msgstr ""
-#: 02180000.xhp
+#: 05030100.xhp
msgctxt ""
-"02180000.xhp\n"
-"tit\n"
+"05030100.xhp\n"
+"par_id3153711\n"
+"55\n"
"help.text"
-msgid "Edit Links"
-msgstr "Rregullo linqet"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Sets the line spacing to exactly match the value that you enter in the box. This can result in cropped characters. </caseinline></switchinline>"
+msgstr ""
-#: 02180000.xhp
+#: 05030100.xhp
msgctxt ""
-"02180000.xhp\n"
-"bm_id3156156\n"
+"05030100.xhp\n"
+"hd_id3156383\n"
+"45\n"
"help.text"
-msgid "<bookmark_value>opening;documents with links</bookmark_value> <bookmark_value>links; updating specific links</bookmark_value> <bookmark_value>updating; links, on opening</bookmark_value> <bookmark_value>links; opening files with</bookmark_value>"
+msgid "of"
+msgstr "nga"
+
+#: 05030100.xhp
+msgctxt ""
+"05030100.xhp\n"
+"par_id3154304\n"
+"46\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_LINEDISTMETRIC\">Enter the value to use for the line spacing.</ahelp>"
msgstr ""
-#: 02180000.xhp
+#: 05030100.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3150279\n"
-"1\n"
+"05030100.xhp\n"
+"hd_id3154965\n"
+"48\n"
"help.text"
-msgid "Edit Links"
-msgstr "Rregullo linqet"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Register-true </caseinline></switchinline>"
+msgstr ""
-#: 02180000.xhp
+#: 05030100.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3150774\n"
-"2\n"
+"05030100.xhp\n"
+"hd_id3146316\n"
+"50\n"
"help.text"
-msgid "<variable id=\"verknuepfungentext\"><ahelp hid=\".uno:ManageLinks\">Lets you edit the properties of each link in the current document, including the path to the source file. This command is not available if the current document does not contain links to other files.</ahelp></variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Activate </caseinline></switchinline>"
msgstr ""
-#: 02180000.xhp
+#: 05030100.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3156156\n"
-"27\n"
+"05030100.xhp\n"
+"par_id3156315\n"
+"51\n"
"help.text"
-msgid "When you open a file that contains links, you are prompted to update the links. Depending on where the linked files are stored, the update process can take several minutes to complete."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_STD_PARAGRAPH:CB_REGISTER\">Aligns the baseline of each line of text to a vertical document grid, so that each line is the same height. To use this feature, you must first activate the <emph>Register-true </emph>option for the current page style. To do this, choose <emph>Format - Page</emph>, click on the <emph>Page </emph>tab, and then select the<emph> Register-true</emph> box in the<emph> Layout settings</emph> area.</ahelp></caseinline></switchinline>"
msgstr ""
-#: 02180000.xhp
+#: 05030100.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3143270\n"
-"28\n"
+"05030100.xhp\n"
+"par_id9267250\n"
"help.text"
-msgid "If you are loading a file that contains DDE links, you are prompted to update the links. Decline the update if you do not want to establish a connection to the DDE server."
+msgid "<link href=\"text/swriter/guide/registertrue.xhp\" name=\"Writing Register-true\">Writing Register-true</link>"
msgstr ""
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_idN10646\n"
+"05030300.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"34869\">Double-click a link in the list to open a file dialog where you can select another object for this link.</ahelp>"
+msgid "Tabs"
+msgstr "Tabet"
+
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"bm_id3156027\n"
+"help.text"
+msgid "<bookmark_value>formats; tabulators</bookmark_value><bookmark_value>fill characters with tabulators</bookmark_value><bookmark_value>tab stops;settings</bookmark_value>"
msgstr ""
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_idN1099856\n"
+"05030300.xhp\n"
+"hd_id3156027\n"
+"1\n"
"help.text"
-msgid "When you open a file by an URL from the Windows file dialog, Windows will open a local copy of the file, located in the Internet Explorer cache. The %PRODUCTNAME file dialog opens the remote file."
+msgid "<link href=\"text/shared/01/05030300.xhp\" name=\"Tabs\">Tabs</link>"
msgstr ""
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3155503\n"
-"3\n"
+"05030300.xhp\n"
+"par_id3153577\n"
+"2\n"
"help.text"
-msgid "Source file"
-msgstr "Skedari i burimit"
+msgid "<ahelp hid=\"HID_TABULATOR\">Set the position of a tab stop in a paragraph.</ahelp>"
+msgstr ""
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3156152\n"
-"4\n"
+"05030300.xhp\n"
+"par_id3147653\n"
+"40\n"
"help.text"
-msgid "Lists the path to the source file."
-msgstr "Shtegu për fajllin $(FILE) nuk ekziston."
+msgid "If you want, you can also use the ruler to set the tab positions."
+msgstr ""
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3155449\n"
-"11\n"
+"05030300.xhp\n"
+"hd_id3154897\n"
+"3\n"
"help.text"
-msgid "Element"
-msgstr "Elementi"
+msgid "Position"
+msgstr "Pozicion"
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3153348\n"
-"12\n"
+"05030300.xhp\n"
+"par_id3153331\n"
+"4\n"
"help.text"
-msgid "Lists the application (if known) that last saved the source file."
+msgid "<ahelp hid=\"SVX:METRICBOX:RID_SVXPAGE_TABULATOR:ED_TABPOS\">Select a tab stop type, enter a new measurement, and then click <emph>New</emph>. If you want, you can also specify the measurement units to use for the tab (cm for centimeter, or \" for inches). Existing tabs to the left of the first tab that you set are removed.</ahelp>"
msgstr ""
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3153061\n"
-"7\n"
+"05030300.xhp\n"
+"hd_id3155180\n"
+"9\n"
"help.text"
msgid "Type"
msgstr "Tipi"
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3151384\n"
-"8\n"
+"05030300.xhp\n"
+"par_id3149514\n"
+"10\n"
"help.text"
-msgid "Lists the file type, such as graphic, of the source file."
+msgid "Select the type of tab stop that you want to modify."
msgstr ""
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3156343\n"
-"9\n"
+"05030300.xhp\n"
+"hd_id3157910\n"
+"11\n"
"help.text"
-msgid "Status"
-msgstr "Gjendje"
+msgid "Left"
+msgstr "Majtas"
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3149046\n"
-"10\n"
+"05030300.xhp\n"
+"par_id3146847\n"
+"41\n"
"help.text"
-msgid "Lists additional information about the source file."
+msgid "The name of this tab stop is <emph>Left/Top</emph> if Asian language support is enabled."
msgstr ""
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3147264\n"
-"15\n"
+"05030300.xhp\n"
+"par_id3153698\n"
+"12\n"
"help.text"
-msgid "Automatic"
-msgstr "Automatike"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_LEFT\">Aligns the left edge of the text to the tab stop and extends the text to the right.</ahelp>"
+msgstr ""
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3147304\n"
-"16\n"
+"05030300.xhp\n"
+"hd_id3149763\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"SO3:RADIOBUTTON:MD_UPDATE_BASELINKS:RB_AUTOMATIC\">Automatically updates the contents of the link when you open the file. Any changes made in the source file are then displayed in the file containing the link. Linked graphic files can only be updated manually.</ahelp> This option is not available for a linked graphic file."
+msgid "Right"
+msgstr "Djathtas"
+
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id3148491\n"
+"42\n"
+"help.text"
+msgid "This name of this tab stop is <emph>Right/Bottom</emph> if Asian language support is enabled."
msgstr ""
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3149456\n"
-"30\n"
+"05030300.xhp\n"
+"par_id3151384\n"
+"14\n"
"help.text"
-msgid "The <emph>Automatic</emph> option is only available for DDE links. You can insert a DDE link by copying the contents from one file and pasting by choosing <emph>Edit - Paste Special</emph>, and then selecting the <emph>Link</emph> box. As DDE is a text based linking system, only the displayed decimals are copied into the target sheet."
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_RIGHT\">Aligns the right edge of the text to the tab stop and extends the text to the left of the tab stop.</ahelp>"
msgstr ""
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3154938\n"
+"05030300.xhp\n"
+"hd_id3153628\n"
+"15\n"
+"help.text"
+msgid "Center"
+msgstr "Qendër"
+
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id3154347\n"
+"16\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_CENTER\">Aligns the center of the text to the tab stop.</ahelp>"
+msgstr ""
+
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"hd_id3148552\n"
"17\n"
"help.text"
-msgid "Manual"
-msgstr "Joautomatike"
+msgid "Decimal"
+msgstr "Decimale"
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3151210\n"
+"05030300.xhp\n"
+"par_id3144422\n"
"18\n"
"help.text"
-msgid "<ahelp hid=\"SO3:RADIOBUTTON:MD_UPDATE_BASELINKS:RB_MANUAL\">Only updates the link when you click the <emph>Update </emph>button.</ahelp>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_DECIMAL\">Aligns the decimal point of a number to the center of the tab stop and text to the left of the tab.</ahelp>"
msgstr ""
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3156280\n"
+"05030300.xhp\n"
+"par_id3154388\n"
"19\n"
"help.text"
-msgid "Update"
-msgstr "Azhuro"
+msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">The character that is used as a decimal separator depends on the regional setting of your operating system. </caseinline></switchinline>"
+msgstr ""
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3157320\n"
+"05030300.xhp\n"
+"hd_id3153380\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"SO3:PUSHBUTTON:MD_UPDATE_BASELINKS:PB_UPDATE_NOW\">Updates the selected link so that the most recently saved version of the linked file is displayed in the current document.</ahelp>"
-msgstr ""
+msgid "Character"
+msgstr "Karakter"
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3151381\n"
+"05030300.xhp\n"
+"par_id3153778\n"
"21\n"
"help.text"
-msgid "Modify"
-msgstr "Modifiko"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_TABULATOR:ED_TABTYPE_DECCHAR\">Enter a character that you want the decimal tab to use as a decimal separator.</ahelp>"
+msgstr ""
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3154125\n"
+"05030300.xhp\n"
+"hd_id3159151\n"
"22\n"
"help.text"
-msgid "<ahelp hid=\"SO3:PUSHBUTTON:MD_UPDATE_BASELINKS:PB_CHANGE_SOURCE\">Change the source file for the selected link.</ahelp>"
-msgstr ""
+msgid "Fill Character"
+msgstr "Mbush karakterin"
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"hd_id3147084\n"
+"05030300.xhp\n"
+"par_id3154153\n"
"23\n"
"help.text"
-msgid "Break Link"
-msgstr "~linja ndërprerëse"
+msgid "Specify the characters to use as leader to the left of the tab stop."
+msgstr ""
-#: 02180000.xhp
+#: 05030300.xhp
msgctxt ""
-"02180000.xhp\n"
-"par_id3147230\n"
+"05030300.xhp\n"
+"hd_id3144760\n"
"24\n"
"help.text"
-msgid "<ahelp hid=\"SO3:PUSHBUTTON:MD_UPDATE_BASELINKS:PB_BREAK_LINK\">Breaks the link between the source file and the current document. The most recently updated contents of the source file are kept in the current document.</ahelp>"
-msgstr ""
+msgid "None"
+msgstr "Asnjë"
-#: 05110400.xhp
+#: 05030300.xhp
msgctxt ""
-"05110400.xhp\n"
-"tit\n"
+"05030300.xhp\n"
+"par_id3143231\n"
+"25\n"
"help.text"
-msgid "Strikethrough"
-msgstr "Vizuar nëpërmes"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_NO\">Inserts no fill characters, or removes existing fill characters to the left of the tab stop.</ahelp>"
+msgstr ""
-#: 05110400.xhp
+#: 05030300.xhp
msgctxt ""
-"05110400.xhp\n"
-"bm_id3152942\n"
+"05030300.xhp\n"
+"hd_id3152933\n"
+"26\n"
"help.text"
-msgid "<bookmark_value>strikethrough;characters</bookmark_value>"
+msgid "......."
msgstr ""
-#: 05110400.xhp
+#: 05030300.xhp
msgctxt ""
-"05110400.xhp\n"
-"hd_id3152942\n"
-"1\n"
+"05030300.xhp\n"
+"par_id3153192\n"
+"27\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110400.xhp\" name=\"Strikethrough\">Strikethrough</link>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_POINTS\">Fills the empty space to the left of the tab stop with dots.</ahelp>"
msgstr ""
-#: 05110400.xhp
+#: 05030300.xhp
msgctxt ""
-"05110400.xhp\n"
-"par_id3153391\n"
-"2\n"
+"05030300.xhp\n"
+"hd_id3156280\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\".uno:Strikeout\" visibility=\"visible\">Draws a line through the selected text, or if the cursor is in a word, the entire word.</ahelp>"
+msgid "------"
msgstr ""
-#: 05230300.xhp
+#: 05030300.xhp
msgctxt ""
-"05230300.xhp\n"
-"tit\n"
+"05030300.xhp\n"
+"par_id3156212\n"
+"29\n"
"help.text"
-msgid "Rotation"
-msgstr "Rrotullim"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_DASHLINE\">Fills the empty space to the left of the tab stop with dashes.</ahelp>"
+msgstr ""
-#: 05230300.xhp
+#: 05030300.xhp
msgctxt ""
-"05230300.xhp\n"
-"hd_id3149741\n"
-"1\n"
+"05030300.xhp\n"
+"hd_id3157960\n"
+"30\n"
"help.text"
-msgid "<link href=\"text/shared/01/05230300.xhp\" name=\"Rotation\">Rotation</link>"
+msgid "______"
msgstr ""
-#: 05230300.xhp
+#: 05030300.xhp
msgctxt ""
-"05230300.xhp\n"
-"par_id3146873\n"
-"2\n"
+"05030300.xhp\n"
+"par_id3151043\n"
+"31\n"
"help.text"
-msgid "<ahelp hid=\"HID_TRANS_ANGLE\">Rotates the selected object.</ahelp>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_UNDERSCORE\">Draws a line to fill the empty space to the left of the tab stop.</ahelp>"
msgstr ""
-#: 05230300.xhp
+#: 05030300.xhp
msgctxt ""
-"05230300.xhp\n"
-"hd_id3148983\n"
-"3\n"
+"05030300.xhp\n"
+"hd_id3153770\n"
+"32\n"
"help.text"
-msgid "Pivot point"
-msgstr "Shëni pikën"
+msgid "Character"
+msgstr "Karakter"
-#: 05230300.xhp
+#: 05030300.xhp
msgctxt ""
-"05230300.xhp\n"
-"par_id3150902\n"
-"4\n"
+"05030300.xhp\n"
+"par_id3150441\n"
+"33\n"
"help.text"
-msgid "The selected object is rotated around a pivot point that you specify. The default pivot point is at the center of the object."
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_OTHER\">Allows you to specify a character to fill the empty space to the left of the tab stop.</ahelp>"
msgstr ""
-#: 05230300.xhp
+#: 05030300.xhp
msgctxt ""
-"05230300.xhp\n"
-"par_id3153528\n"
-"17\n"
+"05030300.xhp\n"
+"hd_id3152596\n"
+"36\n"
"help.text"
-msgid "If you set a pivot point too far outside of the object boundaries, the object could be rotated off of the page."
+msgid "New"
+msgstr "E re"
+
+#: 05030300.xhp
+msgctxt ""
+"05030300.xhp\n"
+"par_id3163717\n"
+"37\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_TABULATOR:BTN_NEW\">Adds the tab stop that you defined to the current paragraph.</ahelp>"
msgstr ""
-#: 05230300.xhp
+#: 05030300.xhp
msgctxt ""
-"05230300.xhp\n"
-"hd_id3145382\n"
-"5\n"
+"05030300.xhp\n"
+"hd_id3153945\n"
+"38\n"
"help.text"
-msgid "X Position"
-msgstr "Pozita X"
+msgid "Clear All"
+msgstr "Prano të gjitha"
-#: 05230300.xhp
+#: 05030300.xhp
msgctxt ""
-"05230300.xhp\n"
-"par_id3166410\n"
-"6\n"
+"05030300.xhp\n"
+"par_id3145660\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ANGLE:MTR_FLD_POS_X\">Enter the horizontal distance from the left edge of the page to the pivot point.</ahelp>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_TABULATOR:BTN_DELALL\">Removes all of the tab stops that you defined under <emph>Position</emph>. Sets <emph>Left</emph> tab stops at regular intervals as the default tab stops.</ahelp>"
msgstr ""
-#: 05230300.xhp
+#: 05030500.xhp
msgctxt ""
-"05230300.xhp\n"
-"hd_id3155323\n"
-"7\n"
+"05030500.xhp\n"
+"tit\n"
"help.text"
-msgid "Y Position"
-msgstr "Pozita Y"
+msgid "Borders"
+msgstr "Kufinjtë"
-#: 05230300.xhp
+#: 05030500.xhp
msgctxt ""
-"05230300.xhp\n"
-"par_id3150669\n"
-"8\n"
+"05030500.xhp\n"
+"hd_id3154812\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ANGLE:MTR_FLD_POS_Y\">Enter the vertical distance from the top edge of the page to the pivot point.</ahelp>"
+msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link>"
msgstr ""
-#: 05230300.xhp
+#: 05030500.xhp
msgctxt ""
-"05230300.xhp\n"
-"hd_id3153332\n"
-"9\n"
+"05030500.xhp\n"
+"par_id3151097\n"
+"2\n"
"help.text"
-msgid "Defaults"
-msgstr "Standarde"
+msgid "<ahelp hid=\"cui/ui/borderpage/BorderPage\">Sets the border options for the selected objects in Writer or Calc.</ahelp>"
+msgstr ""
-#: 05230300.xhp
+#: 05030500.xhp
msgctxt ""
-"05230300.xhp\n"
-"par_id3143270\n"
-"10\n"
+"05030500.xhp\n"
+"par_id3155351\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\"HID_TPROTATION_CTRL1\">Click where you want to place the pivot point.</ahelp>"
+msgid "You can specify the border position, size, and style in Writer or Calc. <switchinline select=\"appl\"><caseinline select=\"WRITER\">In $[officename] Writer, you can add borders to pages, frames, graphics, tables, paragraphs, and to embedded objects. </caseinline></switchinline>"
msgstr ""
-#: 05230300.xhp
+#: 05030500.xhp
msgctxt ""
-"05230300.xhp\n"
-"hd_id3146847\n"
-"11\n"
+"05030500.xhp\n"
+"par_id3152997\n"
+"40\n"
"help.text"
-msgid "Rotation angle"
-msgstr "Këndi i rrotullimit"
+msgid "To modify the border of an entire table, place the cursor in a table cell, right-click, choose <emph>Table</emph>, and then click the <emph>Borders</emph> tab. To modify the border of a table cell, select the cell, right-click, choose <emph>Table</emph>, and then click the <emph>Borders</emph> tab."
+msgstr ""
-#: 05230300.xhp
+#: 05030500.xhp
msgctxt ""
-"05230300.xhp\n"
-"par_id3156155\n"
-"12\n"
+"05030500.xhp\n"
+"hd_id3145417\n"
+"3\n"
"help.text"
-msgid "Specify the number of degrees that you want to rotate the selected object, or click in the rotation grid."
-msgstr ""
+msgid "Line arrangement"
+msgstr "Aranzhimi i kolonave..."
-#: 05230300.xhp
+#: 05030500.xhp
msgctxt ""
-"05230300.xhp\n"
-"hd_id3154173\n"
-"13\n"
+"05030500.xhp\n"
+"par_id3153332\n"
+"4\n"
"help.text"
-msgid "Angle"
-msgstr "Këndi"
+msgid "<ahelp hid=\"cui/ui/borderpage/presets\">Select a predefined border style to apply.</ahelp>"
+msgstr ""
-#: 05230300.xhp
+#: 05030500.xhp
msgctxt ""
-"05230300.xhp\n"
-"par_id3147573\n"
-"14\n"
+"05030500.xhp\n"
+"par_id3148643\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ANGLE:MTR_FLD_ANGLE\">Enter the number of degrees that you want to rotate the selected object.</ahelp>"
+msgid "If you are in a table or spreadsheet, you can also add or remove predefined borders. Use the <emph>Borders</emph> icon on the <emph>Table Bar</emph>."
msgstr ""
-#: 05230300.xhp
+#: 05030500.xhp
msgctxt ""
-"05230300.xhp\n"
-"hd_id3148474\n"
-"15\n"
+"05030500.xhp\n"
+"hd_id3149575\n"
+"23\n"
"help.text"
-msgid "Defaults"
-msgstr "Standarde"
+msgid "Line"
+msgstr "Rreshti"
-#: 05230300.xhp
+#: 05030500.xhp
msgctxt ""
-"05230300.xhp\n"
-"par_id3154811\n"
-"16\n"
+"05030500.xhp\n"
+"par_id3152360\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\"HID_TPROTATION_CTRL2\">Click to specify the rotation angle in multiples of 45 degrees.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/borderpage/linestylelb\">Click the border style that you want to apply. The style is applied to the borders selected in the preview.</ahelp>"
msgstr ""
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"tit\n"
+"05030500.xhp\n"
+"par_id3154938\n"
+"29\n"
"help.text"
-msgid "Hatching"
-msgstr "Vijëzim"
+msgid "<ahelp hid=\"cui/ui/borderpage/linecolorlb\">Select the line color that you want to use for the selected border(s).</ahelp>"
+msgstr ""
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"bm_id3149962\n"
+"05030500.xhp\n"
+"hd_id3150359\n"
+"21\n"
"help.text"
-msgid "<bookmark_value>hatching</bookmark_value><bookmark_value>areas; hatched/dotted</bookmark_value><bookmark_value>dotted areas</bookmark_value>"
-msgstr ""
+msgid "Spacing to contents"
+msgstr "Hapësira me përmbajtje"
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3149962\n"
-"1\n"
+"05030500.xhp\n"
+"par_id3154365\n"
+"22\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210400.xhp\" name=\"Hatching\">Hatching</link>"
+msgid "Specify the amount of space that you want to leave between the border and the contents of the selection."
msgstr ""
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3144436\n"
-"2\n"
+"05030500.xhp\n"
+"hd_id3147084\n"
+"45\n"
"help.text"
-msgid "<ahelp hid=\"HID_AREA_HATCH\">Set the properties of a hatching pattern, or save and load hatching lists.</ahelp>"
+msgid "Left"
+msgstr "Majtas"
+
+#: 05030500.xhp
+msgctxt ""
+"05030500.xhp\n"
+"par_id3151176\n"
+"46\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/borderpage/leftmf\">Enter the distance that you want to have between the left border and the contents of the selection.</ahelp>"
msgstr ""
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3156042\n"
-"3\n"
+"05030500.xhp\n"
+"hd_id3150650\n"
+"47\n"
"help.text"
-msgid "Properties"
-msgstr "Vetitë"
+msgid "Right"
+msgstr "Djathtas"
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3147291\n"
-"4\n"
+"05030500.xhp\n"
+"par_id3153104\n"
+"48\n"
"help.text"
-msgid "Define or modify a hatching pattern."
+msgid "<ahelp hid=\"cui/ui/borderpage/rightmf\">Enter the distance that you want to have between the right border and the contents of the selection.</ahelp>"
msgstr ""
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3147834\n"
-"5\n"
+"05030500.xhp\n"
+"hd_id3150495\n"
+"49\n"
"help.text"
-msgid "Spacing"
-msgstr "Hapësira"
+msgid "Top"
+msgstr "Lartë"
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3147010\n"
-"6\n"
+"05030500.xhp\n"
+"par_id3156212\n"
+"50\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HATCH:MTR_FLD_DISTANCE\">Enter the amount of space that you want to have between the hatch lines.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/borderpage/topmf\">Enter the distance that you want to have between the top border and the contents of the selection.</ahelp>"
msgstr ""
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3155355\n"
-"7\n"
+"05030500.xhp\n"
+"hd_id3150767\n"
+"51\n"
"help.text"
-msgid "Angle"
-msgstr "Këndi"
+msgid "Bottom"
+msgstr "Poshtë"
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3156410\n"
-"8\n"
+"05030500.xhp\n"
+"par_id3158410\n"
+"52\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HATCH:MTR_FLD_ANGLE\">Enter the rotation angle for the hatch lines, or click a position in the angle grid.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/borderpage/bottommf\">Enter the distance that you want to have between the bottom border and the contents of the selection.</ahelp>"
msgstr ""
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3156113\n"
-"9\n"
+"05030500.xhp\n"
+"hd_id3155429\n"
+"53\n"
"help.text"
-msgid "Angle grid"
-msgstr "Rrjeta e dukshme"
+msgid "Synchronize"
+msgstr "Sinkronizo etiketat"
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3147242\n"
-"10\n"
+"05030500.xhp\n"
+"par_id3154299\n"
+"54\n"
"help.text"
-msgid "<ahelp hid=\"HID_TPHATCH_CTRL\">Click a position in the grid to define the rotation angle for the hatch lines.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/borderpage/sync\">Applies the same <emph>spacing to contents</emph> setting to all four borders when you enter a new distance.</ahelp>"
msgstr ""
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3155449\n"
-"21\n"
+"05030500.xhp\n"
+"bm_id3155855\n"
"help.text"
-msgid "Line type"
-msgstr "Lloji i vijës"
+msgid "<bookmark_value>shadows; borders</bookmark_value><bookmark_value>borders; shadows</bookmark_value><bookmark_value>margins; shadows</bookmark_value>"
+msgstr ""
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3152909\n"
-"22\n"
+"05030500.xhp\n"
+"hd_id3155855\n"
+"31\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_LINE_TYPE\">Select the type of hatch lines that you want to use.</ahelp>"
-msgstr ""
+msgid "Shadow style"
+msgstr "Stili i linjës"
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3150503\n"
-"23\n"
+"05030500.xhp\n"
+"par_id3146975\n"
+"32\n"
"help.text"
-msgid "Line color"
-msgstr "Ngjyra e vijës"
+msgid "You can also apply a shadow effect to borders. For the best results, only apply this effect when all four borders are visible."
+msgstr ""
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3149578\n"
-"24\n"
+"05030500.xhp\n"
+"par_id3157309\n"
+"43\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_LINE_COLOR\">Select the color of the hatch lines.</ahelp>"
+msgid "Graphics or objects that are anchored to a frame in the document cannot exceed the size of the frame. If you apply a shadow to the borders of an object that fills an entire frame, the size of the object is reduced to display the shadows."
msgstr ""
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3159147\n"
-"11\n"
+"05030500.xhp\n"
+"hd_id3153728\n"
+"33\n"
"help.text"
-msgid "Hatches List"
-msgstr "Kryerresht i listës"
+msgid "Position"
+msgstr "Pozicion"
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3149955\n"
-"12\n"
+"05030500.xhp\n"
+"par_id3153364\n"
+"34\n"
"help.text"
-msgid "Lists the available hatching patterns. You can also modify or create your own hatching pattern. To save the list, click the <emph>Save Hatches List</emph> button. To display a different list, click the <emph>Load Hatches List</emph> button."
+msgid "<ahelp hid=\"cui/ui/borderpage/shadows\">Click a shadow style for the selected borders.</ahelp>"
msgstr ""
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3150670\n"
-"13\n"
+"05030500.xhp\n"
+"hd_id3156444\n"
+"35\n"
"help.text"
-msgid "Hatches list"
-msgstr "Kryerresht i listës"
+msgid "Distance"
+msgstr "Distancë"
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3144438\n"
-"14\n"
+"05030500.xhp\n"
+"par_id3156060\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_HATCHINGS\">Lists the available hatching patterns. Click the hatching pattern that you want to apply, and then click <emph>OK</emph>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/borderpage/distancemf\">Enter the width of the shadow.</ahelp>"
msgstr ""
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3153823\n"
-"15\n"
+"05030500.xhp\n"
+"hd_id3155307\n"
+"37\n"
"help.text"
-msgid "Add"
-msgstr "Shto"
+msgid "Color"
+msgstr "Ngjyra"
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3148924\n"
-"16\n"
+"05030500.xhp\n"
+"par_id3146147\n"
+"38\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_HATCH:BTN_ADD\">Adds a custom hatching pattern to the current list. Specify the properties of your hatching pattern, and then click this button.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/borderpage/shadowcolorlb\">Select a color for the shadow.</ahelp>"
msgstr ""
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3147620\n"
-"17\n"
+"05030500.xhp\n"
+"par_idN10A2B\n"
"help.text"
-msgid "Modify"
-msgstr "Modifiko"
+msgid "Properties"
+msgstr "Vetitë"
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3156023\n"
-"18\n"
+"05030500.xhp\n"
+"par_idN10A2F\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_HATCH:BTN_MODIFY\">Applies the current hatching properties to the selected hatching pattern. If you want, you can save the pattern under a different name.</ahelp>"
+msgid "Specifies the properties for the current paragraph or the selected paragraphs."
msgstr ""
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3147304\n"
-"25\n"
+"05030500.xhp\n"
+"par_idN10A3A\n"
"help.text"
-msgid "Load Hatches List"
-msgstr "Zgjedhni listën e adresave"
+msgid "Merge with next paragraph"
+msgstr "Mbaje me paragrafin tjetër"
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3156343\n"
-"26\n"
+"05030500.xhp\n"
+"par_idN10A3E\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_HATCH:BTN_LOAD\">Loads a different list of hatching patterns.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/borderpage/mergewithnext\">Merges the border style and the shadow style of the current paragraph with the next paragraph.</ahelp> These styles are only merged if the indent, border, and shadow styles of the next paragraph are the same as the current paragraph. This option is also available for Paragraph Styles."
msgstr ""
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"hd_id3154347\n"
-"27\n"
+"05030500.xhp\n"
+"par_idN109BA\n"
"help.text"
-msgid "Save Hatches List"
-msgstr "Zgjedhni listën e adresave"
+msgid "Merge adjacent line styles"
+msgstr ""
-#: 05210400.xhp
+#: 05030500.xhp
msgctxt ""
-"05210400.xhp\n"
-"par_id3152811\n"
-"28\n"
+"05030500.xhp\n"
+"par_idN109BE\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_HATCH:BTN_SAVE\">Saves the current list of hatching patterns, so that you can load it later.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/borderpage/mergeadjacent\">Merges two different border styles of adjacent cells in a Writer table into one border style. This property is valid for a whole table in a Writer document.</ahelp>"
msgstr ""
-#: 04060200.xhp
+#: 05030500.xhp
msgctxt ""
-"04060200.xhp\n"
+"05030500.xhp\n"
+"par_idN109C1\n"
+"help.text"
+msgid "The rules can be condensed to the statement that the stronger attribute wins. If, for example, one cell has a red border of 2 point width, and the adjacent cell has a blue border of 3 point width, then the common border between these two cells will be blue with 3 point width."
+msgstr ""
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
"tit\n"
"help.text"
-msgid "Request"
-msgstr "Kërkesë..."
+msgid "Background"
+msgstr "Sfond"
-#: 04060200.xhp
+#: 05030600.xhp
msgctxt ""
-"04060200.xhp\n"
-"hd_id3153514\n"
+"05030600.xhp\n"
+"bm_id3151097\n"
+"help.text"
+msgid "<bookmark_value>frames; backgrounds</bookmark_value><bookmark_value>backgrounds; frames/sections/indexes</bookmark_value><bookmark_value>sections; backgrounds</bookmark_value><bookmark_value>indexes; backgrounds</bookmark_value><bookmark_value>footers;backgrounds</bookmark_value><bookmark_value>headers;backgrounds</bookmark_value>"
+msgstr ""
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"hd_id3151097\n"
"1\n"
"help.text"
-msgid "Request"
-msgstr "Kërkesë..."
+msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background\">Background</link>"
+msgstr ""
-#: 04060200.xhp
+#: 05030600.xhp
msgctxt ""
-"04060200.xhp\n"
-"par_id3150278\n"
+"05030600.xhp\n"
+"par_id3153748\n"
"2\n"
"help.text"
-msgid "<variable id=\"anford\"><ahelp hid=\".uno:TwainTransfer\" visibility=\"visible\">Scans an image, and then inserts the result into the document. The scanning dialog is provided by the manufacturer of the scanner.</ahelp></variable> For an explanation of the dialog please refer to the documentation on your scanner."
+msgid "<ahelp hid=\"cui/ui/backgroundpage/BackgroundPage\">Set the background color or graphic.</ahelp>"
msgstr ""
-#: 05210000.xhp
+#: 05030600.xhp
msgctxt ""
-"05210000.xhp\n"
-"tit\n"
+"05030600.xhp\n"
+"par_id3147653\n"
+"34\n"
"help.text"
-msgid "Area"
-msgstr "Hapësira"
+msgid "You can specify the background for <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraphs, pages, headers, footers, text frames, tables, table cells, sections, and indexes.</caseinline><caseinline select=\"CALC\">cells and pages.</caseinline></switchinline>"
+msgstr ""
-#: 05210000.xhp
+#: 05030600.xhp
msgctxt ""
-"05210000.xhp\n"
-"hd_id3085157\n"
-"1\n"
+"05030600.xhp\n"
+"hd_id3154514\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
+msgid "As"
+msgstr "Si Objekt"
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3154380\n"
+"5\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/selectlb\">Select the type of background that you want to apply.</ahelp>"
msgstr ""
-#: 05210000.xhp
+#: 05030600.xhp
msgctxt ""
-"05210000.xhp\n"
-"par_id3144436\n"
-"2\n"
+"05030600.xhp\n"
+"hd_id3151245\n"
+"7\n"
"help.text"
-msgid "<variable id=\"flaechetext\"><ahelp hid=\".uno:FormatArea\">Sets the fill properties of the selected drawing object.</ahelp></variable>"
+msgid "Using a Color as a Background"
msgstr ""
-#: 01100600.xhp
-#, fuzzy
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"tit\n"
+"05030600.xhp\n"
+"hd_id3148946\n"
+"8\n"
"help.text"
-msgid "Security"
-msgstr "Siguri"
+msgid "Color Background"
+msgstr "Ngjyra e sfondit"
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"bm_id1472519\n"
+"05030600.xhp\n"
+"par_id3152361\n"
+"9\n"
"help.text"
-msgid "<bookmark_value>password as document property</bookmark_value><bookmark_value>file sharing options for current document</bookmark_value><bookmark_value>read-only documents;opening documents as</bookmark_value><bookmark_value>saving;with password by default</bookmark_value><bookmark_value>user data;removing when saving</bookmark_value>"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/backgroundcolorset\">Click the color that you want to use as a background. To remove a background color, click <emph>No Fill</emph>.</ahelp>"
msgstr ""
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"hd_id3149969\n"
+"05030600.xhp\n"
+"hd_id3153524\n"
+"37\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100600.xhp\" name=\"Security\">Security</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Transparency</caseinline></switchinline>"
msgstr ""
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_id3156049\n"
+"05030600.xhp\n"
+"par_idN107A4\n"
"help.text"
-msgid "<ahelp hid=\".\">Sets password options for the current document.</ahelp>"
+msgid "Background transparency can be set only for frames."
msgstr ""
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"hd_id31499\n"
+"05030600.xhp\n"
+"par_id3150358\n"
+"38\n"
"help.text"
-msgid "File encryption"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/backgroundpage/transparencymf\">Set the transparency for the background color or graphic of a frame, where 100% is completely transparent and 0% is opaque. When you increase the transparency of the background, the underlying text or objects become visible through the background of the frame.</ahelp></caseinline></switchinline>"
msgstr ""
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"hd_id31499A\n"
+"05030600.xhp\n"
+"hd_id3154216\n"
+"11\n"
"help.text"
-msgid "The password to open the current document can be set in the Properties dialog on the Security tab page. You can also set a password to open the document when you save the document. Check the Save with password option on the Save As dialog, and enter the password."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">For</caseinline></switchinline>"
msgstr ""
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106AA1\n"
+"05030600.xhp\n"
+"par_id3145419\n"
+"12\n"
"help.text"
-msgid "Enter password to open"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/backgroundpage/tablelb\">Select the area that you want to apply the background color to.</ahelp> For example, when you define the background color for a table, you can choose to apply it to the table, the active cell, the row, or the column.</caseinline></switchinline>"
msgstr ""
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_id3150502B\n"
+"05030600.xhp\n"
+"par_id3150497\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\".\">Type a password. A password is case sensitive.</ahelp>"
+msgid "This option is only available when you edit the background of a table or a paragraph style."
msgstr ""
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106AA2\n"
+"05030600.xhp\n"
+"hd_id3151246\n"
"help.text"
-msgid "Confirm password"
+msgid "Using a Gradient as a Background"
msgstr ""
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_id3151100E\n"
+"05030600.xhp\n"
+"hd_id3153525\n"
"help.text"
-msgid "<ahelp hid=\".\">Re-enter the password.</ahelp>"
+msgid "Background gradient"
msgstr ""
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106A3\n"
+"05030600.xhp\n"
+"par_id3152364\n"
"help.text"
-msgid "File sharing options"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/gradientslb\">Click the gradient that you want to use as a background. To remove a background gradient, set <emph>As</emph> to <emph>Color</emph>, then click <emph>No Fill</emph>.</ahelp>"
msgstr ""
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"hd_id31499F\n"
+"05030600.xhp\n"
+"hd_id3153526\n"
"help.text"
-msgid "The password to edit the current document can be set in the Properties dialog on the Security tab page. Currently this option is evaluated for documents in some Microsoft file formats."
-msgstr ""
+msgid "Preview field"
+msgstr "Emri i fushës"
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106AA3\n"
+"05030600.xhp\n"
+"par_id3152362\n"
"help.text"
-msgid "Enter password to allow editing"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/previewctl\">Displays a preview of the currently selected gradient.</ahelp>"
msgstr ""
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_id3150502H\n"
+"05030600.xhp\n"
+"hd_id3153056\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\".\">Type a password. A password is case sensitive.</ahelp>"
+msgid "Using a Graphic as a Background"
msgstr ""
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106AA4\n"
+"05030600.xhp\n"
+"hd_id3149983\n"
+"15\n"
"help.text"
-msgid "Confirm password"
-msgstr ""
+msgid "File"
+msgstr "Fajlli"
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_id3151100J\n"
+"05030600.xhp\n"
+"par_id3152462\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\".\">Re-enter the password.</ahelp>"
+msgid "Contains information about the graphic file."
msgstr ""
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106AA\n"
+"05030600.xhp\n"
+"hd_id3145592\n"
+"17\n"
"help.text"
-msgid "Open file read-only"
-msgstr ""
+msgid "Display field"
+msgstr "Paraqit fushën"
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106AE\n"
+"05030600.xhp\n"
+"par_id3154920\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to allow this document to be opened in read-only mode only.</ahelp>"
+msgid "Shows the path for the graphic file."
msgstr ""
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106B1\n"
+"05030600.xhp\n"
+"hd_id3145272\n"
+"19\n"
"help.text"
-msgid "This file sharing option protects the document against accidental changes. It is still possible to edit a copy of the document and save that copy with the same name as the original."
-msgstr ""
+msgid "Link"
+msgstr "Link"
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106B4\n"
+"05030600.xhp\n"
+"par_id3154150\n"
+"20\n"
"help.text"
-msgid "Record changes"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/link\">Links to or embeds the graphic file in the current file.</ahelp>"
msgstr ""
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106B8\n"
+"05030600.xhp\n"
+"hd_id3155366\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to enable recording changes. This is the same as <emph>Edit - Changes - Record</emph>.</ahelp>"
-msgstr ""
+msgid "Preview"
+msgstr "Shikim paraprak"
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106C9\n"
+"05030600.xhp\n"
+"par_id3147426\n"
+"22\n"
"help.text"
-msgid "To protect the recording state with a password, click <emph>Protect</emph> and enter a password. Other users of this document can apply their changes, but they cannot disable change recording without knowing the password."
+msgid "<ahelp hid=\"cui/ui/backgroundpage/showpreview\">Displays or hides a preview of the selected graphic.</ahelp>"
msgstr ""
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106D0\n"
+"05030600.xhp\n"
+"hd_id3154472\n"
+"23\n"
"help.text"
-msgid "Protect / Unprotect"
-msgstr ""
+msgid "Browse"
+msgstr "Shfleto..."
-#: 01100600.xhp
+#: 05030600.xhp
msgctxt ""
-"01100600.xhp\n"
-"par_idN106D4\n"
+"05030600.xhp\n"
+"par_id3153951\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\"703992336\">Protects the change recording state with a password. If change recording is protected for the current document, the button is named <emph>Unprotect</emph>. Click <emph>Unprotect</emph> and type the correct password to disable the protection.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/browse\">Locate the graphic file that you want to use as a background, and then click <emph>Open</emph>.</ahelp>"
msgstr ""
-#: 05260300.xhp
+#: 05030600.xhp
msgctxt ""
-"05260300.xhp\n"
-"tit\n"
+"05030600.xhp\n"
+"hd_id3153726\n"
+"25\n"
"help.text"
-msgid "To Character"
-msgstr "Tek karakteri"
+msgid "Type"
+msgstr "Tipi"
-#: 05260300.xhp
+#: 05030600.xhp
msgctxt ""
-"05260300.xhp\n"
-"hd_id3154044\n"
-"1\n"
+"05030600.xhp\n"
+"par_id3147442\n"
+"26\n"
"help.text"
-msgid "<link href=\"text/shared/01/05260300.xhp\" name=\"To Character\">To Character</link>"
+msgid "Specify the way that you want to display the background graphic."
msgstr ""
-#: 05260300.xhp
+#: 05030600.xhp
msgctxt ""
-"05260300.xhp\n"
-"par_id3147069\n"
-"2\n"
+"05030600.xhp\n"
+"hd_id3153366\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\".\">Anchors the selected item to a character.</ahelp> This command is only available for graphic objects."
-msgstr ""
+msgid "Position"
+msgstr "Pozicion"
-#: 05260300.xhp
+#: 05030600.xhp
msgctxt ""
-"05260300.xhp\n"
-"par_id3146067\n"
-"3\n"
+"05030600.xhp\n"
+"par_id3153741\n"
+"28\n"
"help.text"
-msgid "The anchor is displayed in front of the character."
+msgid "<ahelp hid=\"cui/ui/backgroundpage/positionrb\">Select this option, and then click a location in the position grid.</ahelp>"
msgstr ""
-#: 05260300.xhp
+#: 05030600.xhp
msgctxt ""
-"05260300.xhp\n"
-"par_id3152924\n"
-"4\n"
+"05030600.xhp\n"
+"hd_id3156005\n"
+"29\n"
"help.text"
-msgid "To align a graphic relative to the character that it is anchored to, right-click the graphic, and then choose <emph>Graphics</emph>. Click the <emph>Type </emph>tab, and in the <emph>Position </emph>area, select <emph>Character</emph> in the <emph>to</emph> boxes."
+msgid "Area"
+msgstr "Hapësira"
+
+#: 05030600.xhp
+msgctxt ""
+"05030600.xhp\n"
+"par_id3152596\n"
+"30\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/arearb\">Stretches the graphic to fill the entire background of the selected object.</ahelp>"
msgstr ""
-#: 06150200.xhp
+#: 05030600.xhp
msgctxt ""
-"06150200.xhp\n"
-"tit\n"
+"05030600.xhp\n"
+"hd_id3145663\n"
+"32\n"
"help.text"
-msgid "Test XML Filter"
-msgstr "Parametrat e XLM Filtrit"
+msgid "Tile"
+msgstr "Pllakë"
-#: 06150200.xhp
+#: 05030600.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3150379\n"
-"22\n"
+"05030600.xhp\n"
+"par_id3149481\n"
+"33\n"
"help.text"
-msgid "<variable id=\"testxml\"><link href=\"text/shared/01/06150200.xhp\" name=\"Test XML Filter\">Test XML Filter</link></variable>"
+msgid "<ahelp hid=\"cui/ui/backgroundpage/tilerb\">Repeats the graphic so that it covers the entire background of the selected object.</ahelp>"
msgstr ""
-#: 06150200.xhp
+#: 05030600.xhp
msgctxt ""
-"06150200.xhp\n"
-"par_id3146857\n"
-"23\n"
+"05030600.xhp\n"
+"par_id3151114\n"
+"35\n"
"help.text"
-msgid "<ahelp hid=\".\">Tests the XSLT stylesheets used by the selected <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click a color. Click No Fill to remove a background or highlighting color. Click Automatic to reset a font color.</ahelp>"
msgstr ""
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3146765\n"
+"05030700.xhp\n"
+"tit\n"
+"help.text"
+msgid "Alignment"
+msgstr "Mbështetje"
+
+#: 05030700.xhp
+msgctxt ""
+"05030700.xhp\n"
+"bm_id3150008\n"
+"help.text"
+msgid "<bookmark_value>aligning; paragraphs</bookmark_value><bookmark_value>paragraphs; alignment</bookmark_value><bookmark_value>lines of text; alignment</bookmark_value><bookmark_value>left alignment of paragraphs</bookmark_value><bookmark_value>right alignment of paragraphs</bookmark_value><bookmark_value>centered text</bookmark_value><bookmark_value>justifying text</bookmark_value>"
+msgstr ""
+
+#: 05030700.xhp
+msgctxt ""
+"05030700.xhp\n"
+"hd_id3150008\n"
"1\n"
"help.text"
-msgid "Export"
-msgstr "Eksporto"
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Alignment\">Alignment</link>"
+msgstr ""
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3153070\n"
+"05030700.xhp\n"
+"par_id3147399\n"
"2\n"
"help.text"
-msgid "XSLT for export"
-msgstr "Eksporto si PDF..."
+msgid "<ahelp hid=\"HID_FORMAT_PARAGRAPH_ALIGN\">Sets the alignment of the paragraph relative to the margins of page.</ahelp>"
+msgstr ""
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"par_id3147617\n"
+"05030700.xhp\n"
+"hd_id3143268\n"
"3\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the file name of the XSLT filter that you entered on the <emph>Transformation</emph> tab page.</ahelp>"
-msgstr ""
+msgid "Alignment"
+msgstr "Mbështetje"
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3147090\n"
+"05030700.xhp\n"
+"par_id3147008\n"
"4\n"
"help.text"
-msgid "Transform document"
-msgstr "Ngarko dokumentin"
+msgid "Set the alignment options for the current paragraph."
+msgstr ""
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"par_id3153029\n"
+"05030700.xhp\n"
+"hd_id3153681\n"
"5\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the file name of the document that you want to use to test the XSLT filter.</ahelp>"
-msgstr ""
+msgid "Left"
+msgstr "Majtas"
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3145160\n"
+"05030700.xhp\n"
+"par_id3153031\n"
"6\n"
"help.text"
-msgid "Browse"
-msgstr "Shfleto..."
+msgid "<variable id=\"linkstext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_LEFTALIGN\">Aligns the paragraph to the left page margin.</ahelp></variable> If Asian language support is enabled, this option is named Left/Top."
+msgstr ""
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"par_id3144436\n"
+"05030700.xhp\n"
+"hd_id3154142\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_BROWSE\">Locate the file that you want to apply the XML export filter to. The XML code of the transformed file is opened in your default XML editor after transformation.</ahelp>"
-msgstr ""
+msgid "Right"
+msgstr "Djathtas"
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3159194\n"
+"05030700.xhp\n"
+"par_id3156326\n"
"8\n"
"help.text"
-msgid "Current Document"
-msgstr "Përdor dokumentin aktual"
+msgid "<variable id=\"rechtstext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_RIGHTALIGN\">Aligns the paragraph to the right page margin.</ahelp></variable> If Asian language support is enabled, this option is named Right/Bottom."
+msgstr ""
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"par_id3147250\n"
+"05030700.xhp\n"
+"hd_id3148642\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_CURRENT\">The front-most open file that matches the XML filter criteria will be used to test the filter. The current XML export filter transforms the file and the resulting XML code is displayed in the <link href=\"text/shared/01/06150210.xhp\">XML Filter output</link> window.</ahelp>"
-msgstr ""
+msgid "Centered"
+msgstr "Në qendër"
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3154823\n"
+"05030700.xhp\n"
+"par_id3153257\n"
"10\n"
"help.text"
-msgid "Import"
-msgstr "Importo"
+msgid "<variable id=\"zentrierttext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_CENTERALIGN\">Centers the contents of the paragraph on the page.</ahelp></variable>"
+msgstr ""
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3159233\n"
+"05030700.xhp\n"
+"hd_id3149415\n"
"11\n"
"help.text"
-msgid "XSLT for import"
-msgstr "AutoCAD Import Filter"
+msgid "Justify"
+msgstr "Rrafsho në të dy anët"
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"par_id3153681\n"
+"05030700.xhp\n"
+"par_id3152474\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_CURRENT\">Displays the file name of the XSLT filter that you entered on the <emph>Transformation</emph> tab page.</ahelp>"
+msgid "<variable id=\"blocksatztext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_JUSTIFYALIGN\">Aligns the paragraph to the left and to the right page margins.</ahelp></variable>"
msgstr ""
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3149177\n"
+"05030700.xhp\n"
+"hd_id3145068\n"
"13\n"
"help.text"
-msgid "Template for import"
-msgstr "AutoCAD Import Filter"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Last Line </caseinline></switchinline>"
+msgstr ""
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"par_id3156410\n"
+"05030700.xhp\n"
+"par_id3154280\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_CURRENT\">Displays the file name of the template that you entered on the <emph>Transformation</emph> tab page.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_ALIGN_PARAGRAPH:LB_LASTLINE\">Specify the alignment for the last line in the paragraph.</ahelp></caseinline></switchinline>"
msgstr ""
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3163802\n"
+"05030700.xhp\n"
+"hd_id3154936\n"
"15\n"
"help.text"
-msgid "Transform file"
-msgstr "Emri i fajllit"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Expand single word </caseinline></switchinline>"
+msgstr ""
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3147242\n"
+"05030700.xhp\n"
+"par_id3154224\n"
"16\n"
"help.text"
-msgid "Display source"
-msgstr "Selekto kodin..."
-
-#: 06150200.xhp
-msgctxt ""
-"06150200.xhp\n"
-"par_id3150444\n"
-"17\n"
-"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_TEST_IMPORT_DISPLAY_SOURCE\">Opens the XML source of the selected document in your default XML editor after importing.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_ALIGN_PARAGRAPH:CB_EXPAND\">If the last line of a justified paragraph consists of one word, the word is stretched to the width of the paragraph.</ahelp></caseinline></switchinline>"
msgstr ""
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3147078\n"
-"18\n"
+"05030700.xhp\n"
+"hd_id3150495\n"
+"22\n"
"help.text"
-msgid "Browse"
-msgstr "Shfleto..."
+msgid "Snap to text grid (if active)"
+msgstr "Paragrafi mbërthehet në rrjetën e tekstit (nëse është aktive)"
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"par_id3149885\n"
-"19\n"
+"05030700.xhp\n"
+"par_id3154331\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_TEST_IMPORT_BROWSE\">Opens a file selection dialog. The selected file is opened using the current XML import filter.</ahelp>"
+msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_ALIGN_PARAGRAPH_CB_SNAP\">Aligns the paragraph to a text grid. To activate the text grid, choose <link href=\"text/swriter/01/05040800.xhp\" name=\"Format - Page - Text Grid\"><emph>Format - Page - Text Grid</emph></link>.</ahelp>"
msgstr ""
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"hd_id3153666\n"
-"20\n"
+"05030700.xhp\n"
+"hd_id3148672\n"
+"18\n"
"help.text"
-msgid "Recent File"
-msgstr "Emri i fajllit"
+msgid "Text-to-text - Alignment"
+msgstr "Rreshtim vertikal i tekstit"
-#: 06150200.xhp
+#: 05030700.xhp
msgctxt ""
-"06150200.xhp\n"
-"par_id3146137\n"
-"21\n"
+"05030700.xhp\n"
+"par_id3149807\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_TEST_IMPORT_RECENT\">Re-opens the document that was last opened with this dialog.</ahelp>"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGN_PARAGRAPH_LB_VERTALIGN\">Select an alignment option for oversized or undersized characters in the paragraph relative to the rest of the text in the paragraph.</ahelp>"
msgstr ""
-#: 05080300.xhp
+#: 05030700.xhp
msgctxt ""
-"05080300.xhp\n"
-"tit\n"
+"05030700.xhp\n"
+"hd_id3144434\n"
+"23\n"
"help.text"
-msgid "Center"
-msgstr "Qendër"
+msgid "Properties"
+msgstr "Vetitë"
-#: 05080300.xhp
+#: 05030700.xhp
msgctxt ""
-"05080300.xhp\n"
-"hd_id3153514\n"
-"1\n"
+"05030700.xhp\n"
+"hd_id3154631\n"
+"25\n"
"help.text"
-msgid "<link href=\"text/shared/01/05080300.xhp\" name=\"Center\">Center</link>"
-msgstr ""
+msgid "Text direction"
+msgstr "Drejtimi teksti"
-#: 05080300.xhp
+#: 05030700.xhp
msgctxt ""
-"05080300.xhp\n"
-"par_id3152876\n"
-"2\n"
+"05030700.xhp\n"
+"par_id3157960\n"
+"24\n"
"help.text"
-msgid "<variable id=\"zentrierttext\"><ahelp hid=\".uno:CenterPara\" visibility=\"visible\">Centers the selected paragraph(s) on the page.</ahelp></variable>"
+msgid "<ahelp hid=\"hid/modules/swriter/ui/columnpage/textdirectionlb\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
msgstr ""
-#: 04150100.xhp
+#: 05030800.xhp
msgctxt ""
-"04150100.xhp\n"
+"05030800.xhp\n"
"tit\n"
"help.text"
-msgid "Insert OLE Object"
-msgstr "Shto OLE Objekt"
+msgid "Crop"
+msgstr "Preje"
-#: 04150100.xhp
+#: 05030800.xhp
msgctxt ""
-"04150100.xhp\n"
-"bm_id3153116\n"
+"05030800.xhp\n"
+"bm_id3148585\n"
"help.text"
-msgid "<bookmark_value>OLE objects; inserting</bookmark_value><bookmark_value>inserting; OLE objects</bookmark_value><bookmark_value>objects; inserting OLE objects</bookmark_value>"
+msgid "<bookmark_value>cropping pictures</bookmark_value><bookmark_value>pictures; cropping and zooming</bookmark_value><bookmark_value>zooming; pictures</bookmark_value><bookmark_value>scaling;pictures</bookmark_value><bookmark_value>sizes; pictures</bookmark_value><bookmark_value>original size;restoring after cropping</bookmark_value>"
msgstr ""
-#: 04150100.xhp
+#: 05030800.xhp
msgctxt ""
-"04150100.xhp\n"
-"hd_id3153116\n"
+"05030800.xhp\n"
+"hd_id3154044\n"
"1\n"
"help.text"
-msgid "Insert OLE Object"
-msgstr "Shto OLE Objekt"
+msgid "<link href=\"text/shared/01/05030800.xhp\" name=\"Crop\">Crop</link>"
+msgstr ""
-#: 04150100.xhp
+#: 05030800.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3149748\n"
+"05030800.xhp\n"
+"par_id3150603\n"
"2\n"
"help.text"
-msgid "<variable id=\"ole\"><ahelp hid=\".uno:InsertObject\">Inserts an <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> object into the current document. The OLE object is inserted as a link or an embedded object.</ahelp></variable>"
+msgid "<ahelp hid=\".\">Trims or scales the selected graphic. You can also restore the graphic to its original size.</ahelp>"
msgstr ""
-#: 04150100.xhp
+#: 05030800.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3149205\n"
-"19\n"
+"05030800.xhp\n"
+"hd_id3148585\n"
+"3\n"
"help.text"
-msgid "To speed up the display of the document, OLE objects are kept in the program cache. If you want to change the cache settings, choose <link href=\"text/shared/optionen/01011000.xhp\" name=\"Tools - Options - $[officename] - Memory\"><emph>Tools - Options - $[officename] - Memory</emph></link>."
-msgstr ""
+msgid "Crop"
+msgstr "Preje"
-#: 04150100.xhp
+#: 05030800.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3145314\n"
-"18\n"
+"05030800.xhp\n"
+"par_id3152372\n"
+"4\n"
"help.text"
-msgid "You cannot use the clipboard or drag and drop to move OLE objects to other files."
+msgid "Use this area to trim or scale the selected graphic, or to add white space around the graphic."
msgstr ""
-#: 04150100.xhp
+#: 05030800.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3150693\n"
-"17\n"
+"05030800.xhp\n"
+"hd_id3145669\n"
+"15\n"
"help.text"
-msgid "Empty and inactive OLE objects are transparent."
+msgid "Keep scale"
+msgstr "Përshtat Shkallën"
+
+#: 05030800.xhp
+msgctxt ""
+"05030800.xhp\n"
+"par_id3149346\n"
+"16\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_GRFCROP_RB_ZOOMCONST\">Maintains the original scale of the graphic when you crop, so that only the size of the graphic changes.</ahelp>"
msgstr ""
-#: 04150100.xhp
+#: 05030800.xhp
msgctxt ""
-"04150100.xhp\n"
-"hd_id3149178\n"
-"3\n"
+"05030800.xhp\n"
+"hd_id3156426\n"
+"13\n"
"help.text"
-msgid "Create new"
-msgstr "~Krijo tw re"
+msgid "Keep image size"
+msgstr "Përshtate me madhësinë"
-#: 04150100.xhp
+#: 05030800.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3145345\n"
-"4\n"
+"05030800.xhp\n"
+"par_id3155892\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/insertoleobject/createnew\">Creates a new OLE object based on the object type that you select.</ahelp>"
+msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_GRFCROP_RB_SIZECONST\">Maintains the original size of the graphic when you crop, so that only the scale of the graphic changes. To reduce the scale of the graphic, select this option and enter negative values in the cropping boxes. To increase the scale of the graphic, enter positive values in the cropping boxes.</ahelp>"
msgstr ""
-#: 04150100.xhp
+#: 05030800.xhp
msgctxt ""
-"04150100.xhp\n"
-"hd_id3155535\n"
+"05030800.xhp\n"
+"hd_id3153683\n"
"5\n"
"help.text"
-msgid "Object type"
-msgstr "Lloji i objektit"
+msgid "Left"
+msgstr "Majtas"
-#: 04150100.xhp
+#: 05030800.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3109847\n"
+"05030800.xhp\n"
+"par_id3145313\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/insertoleobject/types\">Select the type of document that you want to create.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_LEFT\">If the <emph>Keep Scale</emph> option is selected, enter a positive amount to trim the left edge of the graphic, or a negative amount to add white space to the left of the graphic. If the <emph>Keep image size</emph> option is selected, enter a positive amount to increase the horizontal scale of the graphic, or a negative amount to decrease the horizontal scale of the graphic.</ahelp>"
msgstr ""
-#: 04150100.xhp
+#: 05030800.xhp
msgctxt ""
-"04150100.xhp\n"
+"05030800.xhp\n"
"hd_id3163803\n"
"7\n"
"help.text"
-msgid "Create from file"
-msgstr "Krijo nga skedari"
+msgid "Right"
+msgstr "Djathtas"
-#: 04150100.xhp
+#: 05030800.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3149191\n"
+"05030800.xhp\n"
+"par_id3145382\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/insertoleobject/createfromfile\">Creates an OLE object from an existing file.</ahelp>"
-msgstr ""
-
-#: 04150100.xhp
-msgctxt ""
-"04150100.xhp\n"
-"hd_id3150084\n"
-"15\n"
-"help.text"
-msgid "File"
-msgstr "Fajlli"
-
-#: 04150100.xhp
-msgctxt ""
-"04150100.xhp\n"
-"par_id3146773\n"
-"16\n"
-"help.text"
-msgid "Choose the file that you want to insert as an OLE object."
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_RIGHT\">If the <emph>Keep Scale</emph> option is selected, enter a positive amount to trim the right edge of the graphic, or a negative amount to add white space to the right of the graphic. If the <emph>Keep image size</emph> option is selected, enter a positive amount to increase the horizontal scale of the graphic, or a negative amount to decrease the horizontal scale of the graphic.</ahelp>"
msgstr ""
-#: 04150100.xhp
+#: 05030800.xhp
msgctxt ""
-"04150100.xhp\n"
-"hd_id3144438\n"
+"05030800.xhp\n"
+"hd_id3156153\n"
"9\n"
"help.text"
-msgid "File"
-msgstr "Fajlli"
+msgid "Top"
+msgstr "Lartë"
-#: 04150100.xhp
+#: 05030800.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3155434\n"
+"05030800.xhp\n"
+"par_id3154514\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/insertoleobject/urled\">Enter the name of the file that you want to link or embed, or click <emph>Search</emph>, to locate the file.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_TOP\">If the <emph>Keep Scale</emph> option is selected, enter a positive amount to trim the top of the graphic, or a negative amount to add white space above the graphic. If the <emph>Keep image size</emph> option is selected, enter a positive amount to increase the vertical scale of the graphic, or a negative amount to decrease the vertical scale of the graphic.</ahelp>"
msgstr ""
-#: 04150100.xhp
+#: 05030800.xhp
msgctxt ""
-"04150100.xhp\n"
-"hd_id3153127\n"
+"05030800.xhp\n"
+"hd_id3149956\n"
"11\n"
"help.text"
-msgid "Search..."
-msgstr "Kërko..."
+msgid "Bottom"
+msgstr "Poshtë"
-#: 04150100.xhp
+#: 05030800.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id3156326\n"
+"05030800.xhp\n"
+"par_id3150084\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/insertoleobject/urlbtn\">Locate the file that you want to insert, and then click <emph>Open</emph>.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_BOTTOM\">If the <emph>Keep Scale</emph> option is selected, enter a positive amount to trim the bottom of the graphic, or a negative amount to add white space below the graphic. If the <emph>Keep image size</emph> option is selected, enter a positive amount to increase the vertical scale of the graphic, or a negative amount to decrease the vertical scale of the graphic.</ahelp>"
msgstr ""
-#: 04150100.xhp
-msgctxt ""
-"04150100.xhp\n"
-"hd_id4174321\n"
-"help.text"
-msgid "Link to file"
-msgstr "~Linku me skedarin"
-
-#: 04150100.xhp
+#: 05030800.xhp
msgctxt ""
-"04150100.xhp\n"
-"par_id6636555\n"
+"05030800.xhp\n"
+"hd_id3158432\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\".\">Enable this checkbox to insert the OLE object as a link to the original file. If this checkbox is not enabled, the OLE object will be embedded into your document.</ahelp>"
-msgstr ""
+msgid "Scale"
+msgstr "Shkallë"
-#: 06050300.xhp
+#: 05030800.xhp
msgctxt ""
-"06050300.xhp\n"
-"tit\n"
+"05030800.xhp\n"
+"par_id3153257\n"
+"24\n"
"help.text"
-msgid "Outline"
-msgstr "Konturë"
+msgid "Changes the scale of the selected graphic."
+msgstr "Ndryshimet ndikojnë në madhësinë e tabelës"
-#: 06050300.xhp
+#: 05030800.xhp
msgctxt ""
-"06050300.xhp\n"
-"hd_id3147543\n"
-"1\n"
+"05030800.xhp\n"
+"hd_id3155504\n"
+"25\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050300.xhp\" name=\"Outline\">Outline</link>"
-msgstr ""
+msgid "Width"
+msgstr "Gjerësia"
-#: 06050300.xhp
+#: 05030800.xhp
msgctxt ""
-"06050300.xhp\n"
-"par_id3146936\n"
-"2\n"
+"05030800.xhp\n"
+"par_id3148943\n"
+"26\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the different styles that you can apply to a hierarchical list. $[officename] supports up to nine outline levels in a list hierarchy.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_WIDTHZOOM\">Enter the width for the selected graphic as a percentage.</ahelp>"
msgstr ""
-#: 06050300.xhp
+#: 05030800.xhp
msgctxt ""
-"06050300.xhp\n"
-"hd_id3147000\n"
-"3\n"
+"05030800.xhp\n"
+"hd_id3145609\n"
+"27\n"
"help.text"
-msgid "Selection"
-msgstr "Selektimet"
+msgid "Height"
+msgstr "Lartësia"
-#: 06050300.xhp
+#: 05030800.xhp
msgctxt ""
-"06050300.xhp\n"
-"par_id3155934\n"
-"4\n"
+"05030800.xhp\n"
+"par_id3154348\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"HID_VALUESET_NUM\">Click the outline style that you want to use.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_HEIGHTZOOM\">Enter the height of the selected graphic as a percentage.</ahelp>"
msgstr ""
-#: 06050300.xhp
+#: 05030800.xhp
msgctxt ""
-"06050300.xhp\n"
-"par_id3144436\n"
+"05030800.xhp\n"
+"hd_id3154924\n"
+"17\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position tab (Numbering/Bullets dialog)\">Position tab (Bullets and Numbering dialog)</link>"
-msgstr ""
+msgid "Image size"
+msgstr "Madhësia Origjinale"
-#: 06050300.xhp
+#: 05030800.xhp
msgctxt ""
-"06050300.xhp\n"
-"par_id3153935\n"
+"05030800.xhp\n"
+"par_id3148755\n"
+"18\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Options tab (Bullets and Numbering dialog)</link>"
-msgstr ""
+msgid "Changes the size of the selected graphic."
+msgstr "Ndryshimet ndikojnë në madhësinë e tabelës"
-#: 05140100.xhp
+#: 05030800.xhp
msgctxt ""
-"05140100.xhp\n"
-"tit\n"
+"05030800.xhp\n"
+"hd_id3161656\n"
+"19\n"
"help.text"
-msgid "Create Style"
-msgstr "Krijo Stilin"
+msgid "Width"
+msgstr "Gjerësia"
-#: 05140100.xhp
+#: 05030800.xhp
msgctxt ""
-"05140100.xhp\n"
-"hd_id3152823\n"
-"1\n"
+"05030800.xhp\n"
+"par_id3150543\n"
+"20\n"
"help.text"
-msgid "Create Style"
-msgstr "Krijo Stilin"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_WIDTH\">Enter a width for the selected graphic.</ahelp>"
+msgstr ""
-#: 05140100.xhp
+#: 05030800.xhp
msgctxt ""
-"05140100.xhp\n"
-"hd_id3152790\n"
-"4\n"
+"05030800.xhp\n"
+"hd_id3150398\n"
+"21\n"
"help.text"
-msgid "Style name"
-msgstr "Emri i stilit"
+msgid "Height"
+msgstr "Lartësia"
-#: 05140100.xhp
+#: 05030800.xhp
msgctxt ""
-"05140100.xhp\n"
-"par_id3155599\n"
-"5\n"
+"05030800.xhp\n"
+"par_id3154686\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:COMBOBOX:DLG_NEW_STYLE_BY_EXAMPLE:LB_COL\" visibility=\"visible\">Enter a name for the new Style.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_HEIGHT\">Enter a height for the selected graphic.</ahelp>"
msgstr ""
-#: 05140100.xhp
+#: 05030800.xhp
msgctxt ""
-"05140100.xhp\n"
-"hd_id3154682\n"
-"6\n"
+"05030800.xhp\n"
+"hd_id3148676\n"
+"31\n"
"help.text"
-msgid "List of Custom Styles"
-msgstr "Zëvendëso stilet e zakonshme"
+msgid "Original Size"
+msgstr "Madhësia Origjinale"
-#: 05140100.xhp
+#: 05030800.xhp
msgctxt ""
-"05140100.xhp\n"
-"par_id3154894\n"
-"7\n"
+"05030800.xhp\n"
+"par_id3154068\n"
+"32\n"
"help.text"
-msgid "Lists the user-defined styles that are attached to the current document."
+msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXPAGE_GRFCROP_PB_ORGSIZE\">Returns the selected graphic to its original size.</ahelp>"
msgstr ""
-#: 05060000.xhp
+#: 05040100.xhp
msgctxt ""
-"05060000.xhp\n"
+"05040100.xhp\n"
"tit\n"
"help.text"
-msgid "Asian Phonetic Guide"
-msgstr "Dr~ejtues fonetik aziatik..."
+msgid "Organizer"
+msgstr "Organizuesi"
-#: 05060000.xhp
+#: 05040100.xhp
msgctxt ""
-"05060000.xhp\n"
-"bm_id9598376\n"
+"05040100.xhp\n"
+"bm_id3153383\n"
"help.text"
-msgid "<bookmark_value>Asian Phonetic Guide</bookmark_value><bookmark_value>phonetic guide</bookmark_value>"
+msgid "<bookmark_value>organizing; styles</bookmark_value> <bookmark_value>styles; organizing</bookmark_value>"
msgstr ""
-#: 05060000.xhp
+#: 05040100.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3147527\n"
+"05040100.xhp\n"
+"hd_id3153383\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05060000.xhp\" name=\"Ruby\">Asian Phonetic Guide</link>"
+msgid "<link href=\"text/shared/01/05040100.xhp\" name=\"Organizer\">Organizer</link>"
msgstr ""
-#: 05060000.xhp
+#: 05040100.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3083278\n"
+"05040100.xhp\n"
+"par_id3147588\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:RubyDialog\">Allows you to add comments above Asian characters to serve as a pronunciation guide.</ahelp>"
+msgid "<ahelp hid=\"sfx/ui/managestylepage/ManageStylePage\">Set the options for the selected style.</ahelp>"
msgstr ""
-#: 05060000.xhp
+#: 05040100.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3154044\n"
-"13\n"
+"05040100.xhp\n"
+"hd_id3149525\n"
+"3\n"
"help.text"
-msgid "Select one or more words in the document."
-msgstr ""
+msgid "Name"
+msgstr "Emri"
-#: 05060000.xhp
+#: 05040100.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3149987\n"
-"14\n"
+"05040100.xhp\n"
+"par_id3160481\n"
+"4\n"
"help.text"
-msgid "Choose <emph>Format - Asian Phonetic Guide</emph>."
+msgid "<ahelp hid=\"sfx/ui/managestylepage/namerw\">Displays the name of the selected style. If you are creating or modifying a custom style, enter a name for the style. You cannot change the name of a predefined style.</ahelp>"
msgstr ""
-#: 05060000.xhp
+#: 05040100.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3154838\n"
-"15\n"
+"05040100.xhp\n"
+"hd_id3153750\n"
+"13\n"
"help.text"
-msgid "Enter the text that you want to use as a pronunciation guide in the <emph>Ruby text</emph> box."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">AutoUpdate </caseinline></switchinline>"
msgstr ""
-#: 05060000.xhp
+#: 05040100.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3150793\n"
-"3\n"
+"05040100.xhp\n"
+"par_id3153749\n"
+"14\n"
"help.text"
-msgid "Base text"
-msgstr "Madhësia max. e tekstit bazë"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"sfx/ui/managestylepage/autoupdate\">Updates the style when you apply direct formatting to a paragraph using this style in your document. The formatting of all paragraphs using this style is automatically updated.</ahelp></caseinline></switchinline>"
+msgstr ""
-#: 05060000.xhp
+#: 05040100.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3154155\n"
-"4\n"
+"05040100.xhp\n"
+"par_id0107200910584081\n"
"help.text"
-msgid "<ahelp hid=\"SVX_EDIT_RID_SVXDLG_RUBY_ED_LEFT_4\">Displays the base text that you selected in the current file. If you want, you can modify the base text by entering new text here.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Updates the style when you apply direct formatting to a paragraph using this style in your document. The formatting of all paragraphs using this style is automatically updated.</ahelp>"
msgstr ""
-#: 05060000.xhp
+#: 05040100.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3145154\n"
+"05040100.xhp\n"
+"hd_id3155392\n"
"5\n"
"help.text"
-msgid "Ruby text"
-msgstr "Madhësia max. e tekstit rubin"
+msgid "Next Style"
+msgstr "Stili i linjës"
-#: 05060000.xhp
+#: 05040100.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3145420\n"
+"05040100.xhp\n"
+"par_id3155941\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SVX_EDIT_RID_SVXDLG_RUBY_ED_RIGHT_4\">Enter the text that you want to use as a pronunciation guide for the base text.</ahelp>"
+msgid "<ahelp hid=\"sfx/ui/managestylepage/nextstyle\">Select an existing style that you want to follow the current style in your document. For paragraph styles, the next style is applied to the paragraph that is created when you press Enter. For page styles, the next style is applied when a new page is created.</ahelp>"
msgstr ""
-#: 05060000.xhp
+#: 05040100.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3148920\n"
+"05040100.xhp\n"
+"hd_id3163802\n"
"7\n"
"help.text"
-msgid "Alignment"
-msgstr "Mbështetje"
+msgid "Linked with"
+msgstr "I lidhur me"
-#: 05060000.xhp
+#: 05040100.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3156280\n"
+"05040100.xhp\n"
+"par_id3166461\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_RUBY_LB_ADJUST\">Select the horizontal alignment for the Ruby text.</ahelp>"
+msgid "<ahelp hid=\"sfx/ui/managestylepage/linkedwith\">Select an existing style that you want to base the new style on, or select none to define your own style.</ahelp>"
msgstr ""
-#: 05060000.xhp
+#: 05040100.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3148451\n"
-"16\n"
+"05040100.xhp\n"
+"hd_id3148474\n"
+"9\n"
"help.text"
-msgid "Position"
-msgstr "Pozicion"
+msgid "Category"
+msgstr "Kategori"
-#: 05060000.xhp
+#: 05040100.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3153104\n"
-"17\n"
+"05040100.xhp\n"
+"par_id3159269\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_RUBY_LB_POSITION\">Select where you want to place the ruby text.</ahelp>"
+msgid "<ahelp hid=\"sfx/ui/managestylepage/category\">Displays the category for the current style. If you are creating or modifying a new style, select 'Custom Style' from the list.</ahelp>"
msgstr ""
-#: 05060000.xhp
-msgctxt ""
-"05060000.xhp\n"
-"hd_id3148672\n"
-"9\n"
-"help.text"
-msgid "Character Style for ruby text"
-msgstr "Stili i karakterit për hyrjet kryesore"
-
-#: 05060000.xhp
+#: 05040100.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3148676\n"
-"10\n"
+"05040100.xhp\n"
+"par_id3150771\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_RUBY_LB_CHAR_STYLE\">Select a character style for the ruby text.</ahelp>"
+msgid "You cannot change the category for a predefined style."
msgstr ""
-#: 05060000.xhp
+#: 05040100.xhp
msgctxt ""
-"05060000.xhp\n"
-"hd_id3150449\n"
+"05040100.xhp\n"
+"hd_id3153717\n"
"11\n"
"help.text"
-msgid "Styles and Formatting"
-msgstr "Struktura dhe formatimi"
+msgid "Contains"
+msgstr "Përmban"
-#: 05060000.xhp
+#: 05040100.xhp
msgctxt ""
-"05060000.xhp\n"
-"par_id3149202\n"
+"05040100.xhp\n"
+"par_id3154306\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_RUBY_PB_STYLIST\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles and Formatting window</link></caseinline><defaultinline>Styles and Formatting window</defaultinline></switchinline> where you can select a character style for the ruby text.</ahelp>"
+msgid "<ahelp hid=\"sfx/ui/managestylepage/desc\">Describes the relevant formatting used in the current style.</ahelp>"
msgstr ""
-#: selectcertificate.xhp
+#: 05040100.xhp
msgctxt ""
-"selectcertificate.xhp\n"
-"tit\n"
+"05040100.xhp\n"
+"par_idN1072D\n"
"help.text"
-msgid "Select Certificate"
-msgstr "Selekto kodin..."
+msgid "Assign Shortcut Key"
+msgstr "Çelësi: [1], Emri: [2], Vlera [3]"
-#: selectcertificate.xhp
+#: 05040100.xhp
msgctxt ""
-"selectcertificate.xhp\n"
-"par_idN10541\n"
+"05040100.xhp\n"
+"par_idN10731\n"
"help.text"
-msgid "Select Certificate"
-msgstr "Selekto kodin..."
+msgid "Opens the <emph>Tools - Customize - Keyboard</emph> tab page where you can assign a shortcut key to the current Style."
+msgstr ""
-#: selectcertificate.xhp
+#: 05040100.xhp
msgctxt ""
-"selectcertificate.xhp\n"
-"par_idN10545\n"
+"05040100.xhp\n"
+"par_id3145085\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the certificate that you want to <link href=\"text/shared/01/digitalsignatures.xhp\">digitally sign</link> the current document with.</ahelp>"
+msgid "<link href=\"text/swriter/01/05140000.xhp\" name=\"Update Style\">Update Style</link>"
msgstr ""
-#: selectcertificate.xhp
+#: 05040200.xhp
msgctxt ""
-"selectcertificate.xhp\n"
-"par_idN1056A\n"
+"05040200.xhp\n"
+"tit\n"
"help.text"
-msgid "List"
-msgstr "Lista"
+msgid "Page"
+msgstr "Faqe"
-#: selectcertificate.xhp
+#: 05040200.xhp
msgctxt ""
-"selectcertificate.xhp\n"
-"par_idN1056E\n"
+"05040200.xhp\n"
+"bm_id3150620\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the certificate that you want to digitally sign the current document with.</ahelp>"
+msgid "<bookmark_value>pages;formatting and numbering</bookmark_value><bookmark_value>formatting;pages</bookmark_value><bookmark_value>paper formats</bookmark_value><bookmark_value>paper trays</bookmark_value><bookmark_value>printers;paper trays</bookmark_value><bookmark_value>layout;pages</bookmark_value><bookmark_value>binding space</bookmark_value><bookmark_value>margins;pages</bookmark_value><bookmark_value>gutter</bookmark_value>"
msgstr ""
-#: selectcertificate.xhp
+#: 05040200.xhp
msgctxt ""
-"selectcertificate.xhp\n"
-"par_idN10571\n"
+"05040200.xhp\n"
+"hd_id3150620\n"
+"1\n"
"help.text"
-msgid "View Certificate"
-msgstr "Pamja e shënimeve"
+msgid "<link href=\"text/shared/01/05040200.xhp\" name=\"Page\">Page</link>"
+msgstr ""
-#: selectcertificate.xhp
+#: 05040200.xhp
msgctxt ""
-"selectcertificate.xhp\n"
-"par_idN10575\n"
+"05040200.xhp\n"
+"par_id3153255\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/optionen/viewcertificate.xhp\">View Certificate</link> dialog where you can examine the selected certificate.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/PageFormatPage\">Allows you to define page layouts for single and multiple-page documents, as well as a numbering and paper formats.</ahelp>"
msgstr ""
-#: 05340405.xhp
+#: 05040200.xhp
msgctxt ""
-"05340405.xhp\n"
-"tit\n"
+"05040200.xhp\n"
+"hd_id3149549\n"
+"31\n"
"help.text"
-msgid "Column format"
+msgid "Paper format"
msgstr "Format tjetër"
-#: 05340405.xhp
+#: 05040200.xhp
msgctxt ""
-"05340405.xhp\n"
-"hd_id3152876\n"
-"1\n"
+"05040200.xhp\n"
+"par_id3150710\n"
+"32\n"
"help.text"
-msgid "Column format"
-msgstr "Format tjetër"
+msgid "Select from a list of predefined paper sizes, or define a custom paper format."
+msgstr ""
-#: 05340405.xhp
+#: 05040200.xhp
msgctxt ""
-"05340405.xhp\n"
-"par_id3147543\n"
-"2\n"
+"05040200.xhp\n"
+"hd_id3153394\n"
+"33\n"
"help.text"
-msgid "<variable id=\"spaltformtext\"><ahelp hid=\"HID_BROWSER_COLUMNFORMAT\" visibility=\"visible\">Formats the selected column(s).</ahelp></variable>"
-msgstr ""
+msgid "Format"
+msgstr "Formati"
-#: 05340405.xhp
+#: 05040200.xhp
msgctxt ""
-"05340405.xhp\n"
-"hd_id3150620\n"
-"3\n"
+"05040200.xhp\n"
+"par_id3149827\n"
+"34\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format\">Format</link>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/comboPageFormat\">Select a predefined paper size, or create a custom format by entering the dimensions for the paper in the <emph>Height </emph>and <emph>Width </emph>boxes.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"tit\n"
+"05040200.xhp\n"
+"hd_id3154823\n"
+"35\n"
"help.text"
-msgid "Find & Replace"
-msgstr "Gjej dhe Zëvendëso"
+msgid "Width"
+msgstr "Gjerësia"
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3154044\n"
-"1\n"
+"05040200.xhp\n"
+"par_id3145313\n"
+"36\n"
"help.text"
-msgid "<variable id=\"02100000\"><link href=\"text/shared/01/02100000.xhp\" name=\"Find & Replace\">Find & Replace</link></variable>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/spinWidth\">Displays the width of the selected paper format. To define a custom format, enter a width here.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3149893\n"
-"2\n"
+"05040200.xhp\n"
+"hd_id3147008\n"
+"37\n"
"help.text"
-msgid "<variable id=\"suchenersetzentext\"><ahelp hid=\".uno:SearchDialog\">Searches for or replaces text or formats in the current document.</ahelp></variable>"
-msgstr ""
+msgid "Height"
+msgstr "Lartësia"
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id00001\n"
+"05040200.xhp\n"
+"par_id3156113\n"
+"38\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Type the text to search in the current document. Press Enter to search the text.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/spinHeight\">Displays the height of the selected paper format. To define a custom format, enter a height here.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id00002\n"
+"05040200.xhp\n"
+"hd_id3146798\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to search the next occurrence in downward direction.</ahelp>"
+msgid "Portrait"
+msgstr "Orientim vertikal"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id3149811\n"
+"40\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/radiobuttonPortrait\">Displays and prints the current document with the paper oriented vertically.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id00003\n"
+"05040200.xhp\n"
+"hd_id3150976\n"
+"41\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to search the next occurrence in upward direction.</ahelp>"
+msgid "Landscape"
+msgstr "Orientim horizontal"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id3153827\n"
+"42\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/radiobuttonLandscape\">Displays and prints the current document with the paper oriented horizontally.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3152425\n"
-"3\n"
+"05040200.xhp\n"
+"hd_id3156153\n"
+"74\n"
"help.text"
-msgid "Search For"
-msgstr "Kërko për:"
+msgid "Text direction"
+msgstr "Drejtimi teksti"
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3155805\n"
-"4\n"
+"05040200.xhp\n"
+"par_id3154380\n"
+"73\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_SEARCH:LB_SEARCH\">Enter the text that you want to search for, or select a previous search from the list.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/comboTextFlowBox\">Select the text direction that you want to use in your document.</ahelp> The \"right-to-left (vertical)\" text flow direction rotates all layout settings to the right by 90 degrees, except for the header and footer."
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3153683\n"
-"189\n"
+"05040200.xhp\n"
+"hd_id3156327\n"
+"43\n"
+"help.text"
+msgid "Paper tray"
+msgstr "Shporta e letrave"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id3150771\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\"SVX:MULTILINEEDIT:RID_SVXDLG_SEARCH:ED_SEARCH_FORMATS\">Search options are listed in the <emph>Options </emph>area of the dialog</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/comboPaperTray\">Select the paper source for your printer. If you want, you can assign different paper trays to different page styles. For example, assign a different tray to the First Page style and load the tray with your company's letterhead paper.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3152551\n"
-"5\n"
+"05040200.xhp\n"
+"hd_id3150275\n"
+"3\n"
"help.text"
-msgid "Replace With"
-msgstr "Zëvendëso 1/2 ...me..."
+msgid "Margins"
+msgstr "Margjinat"
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3156426\n"
-"6\n"
+"05040200.xhp\n"
+"par_id3153348\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_SEARCH:LB_REPLACE\">Enter the replacement text, or select a recent replacement text or style from the list.</ahelp>"
+msgid "Specify the amount of space to leave between the edges of the page and the document text."
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3150506\n"
-"190\n"
+"05040200.xhp\n"
+"hd_id3153061\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"SVX:MULTILINEEDIT:RID_SVXDLG_SEARCH:ED_REPLACE_FORMATS\">Replacement options are listed in the <emph>Options </emph>area of the dialog.</ahelp>"
+msgid "Left / Inner"
+msgstr "Mbështjellje e brendshme"
+
+#: 05040200.xhp
+msgctxt ""
+"05040200.xhp\n"
+"par_id3151384\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/spinMargLeft\">Enter the amount of space to leave between the left edge of the page and the document text. If you are using the <emph>Mirrored</emph> page layout, enter the amount of space to leave between the inner text margin and the inner edge of the page.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3166410\n"
+"05040200.xhp\n"
+"hd_id3154923\n"
"8\n"
"help.text"
-msgid "Options"
-msgstr "Opcionet"
+msgid "Right / Outer"
+msgstr "Mbështjellje e jashtme"
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3148538\n"
-"10\n"
+"05040200.xhp\n"
+"par_id3147304\n"
+"9\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Entire Cells</caseinline><defaultinline>Whole words only</defaultinline></switchinline>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/spinMargRight\">Enter the amount of space to leave between the right edge of the page and the document text. If you are using the <emph>Mirrored</emph> page layout, enter the amount of space to leave between the outer text margin and the outer edge of the page.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3149579\n"
+"05040200.xhp\n"
+"hd_id3161657\n"
"11\n"
"help.text"
-msgid "<variable id=\"ganze\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_SEARCH:BTN_CELLS\">Searches for whole words or cells that are identical to the search text.</ahelp></variable>"
-msgstr ""
+msgid "Top"
+msgstr "Lartë"
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3156192\n"
-"14\n"
+"05040200.xhp\n"
+"par_id3154226\n"
+"12\n"
"help.text"
-msgid "Backwards"
-msgstr "Mbrapsht"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/spinMargTop\">Enter the amount of space to leave between the upper edge of the page and the document text.</ahelp>"
+msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3150771\n"
-"15\n"
+"05040200.xhp\n"
+"hd_id3153381\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_SEARCH:BTN_BACKWARDS\">Search starts at the current cursor position and goes backwards to the beginning of the file.</ahelp>"
-msgstr ""
+msgid "Bottom"
+msgstr "Poshtë"
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3144439\n"
-"16\n"
+"05040200.xhp\n"
+"par_id3154138\n"
+"14\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Regular expressions</defaultinline></switchinline>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/spinMargBot\">Enter the amount of space to leave between the lower edge of the page and the document text.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3155342\n"
-"156\n"
+"05040200.xhp\n"
+"par_id0522200809473735\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Allows you to use wildcards in your search.</defaultinline></switchinline>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the text on the selected Page Style to a vertical page grid.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3727225\n"
+"05040200.xhp\n"
+"hd_id3150488\n"
+"55\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Allows you to use wildcards in your search.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Register-true</caseinline></switchinline>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3154924\n"
-"45\n"
+"05040200.xhp\n"
+"par_id3151112\n"
+"56\n"
"help.text"
-msgid "Match case"
-msgstr "Përputh shkronjat"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/pageformatpage/checkRegisterTrue\">Aligns the text on the selected Page Style to a vertical page grid.</ahelp> The spacing of the grid is defined by the <emph>Reference Style</emph>.</caseinline></switchinline>"
+msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"bm_id3154760\n"
+"05040200.xhp\n"
+"par_id0522200809473732\n"
"help.text"
-msgid "<bookmark_value>case sensitivity;searching</bookmark_value>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Paragraph Style that you want to use as a reference for lining up the text on the selected Page style. The height of the font that is specified in the reference style sets the spacing of the vertical page grid. </ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3154760\n"
-"46\n"
+"05040200.xhp\n"
+"hd_id3150686\n"
+"57\n"
"help.text"
-msgid "<variable id=\"exakt\"><ahelp hid=\"SVX_CHECKBOX_RID_SVXDLG_SEARCH_CB_MATCH_CASE\">Distinguishes between uppercase and lowercase characters.</ahelp></variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Reference Style</caseinline></switchinline>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"bm_id3147264\n"
+"05040200.xhp\n"
+"par_id3146146\n"
+"58\n"
"help.text"
-msgid "<bookmark_value>finding; selections</bookmark_value>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/comboRegisterStyle\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Select the Paragraph Style that you want to use as a reference for lining up the text on the selected Page style. The height of the font that is specified in the reference style sets the spacing of the vertical page grid.</caseinline></switchinline></ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3147264\n"
+"05040200.xhp\n"
+"hd_id3147480\n"
"47\n"
"help.text"
-msgid "Current selection only"
-msgstr "Krijo vetëm rresht"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Table alignment</caseinline></switchinline>"
+msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3150866\n"
+"05040200.xhp\n"
+"par_id3150417\n"
"48\n"
"help.text"
-msgid "<ahelp hid=\".\">Searches only the selected text or cells.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Specify the alignment options for the cells on a printed page.</caseinline></switchinline>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id8876918\n"
+"05040200.xhp\n"
+"par_id0522200809473845\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the Search for list. To specify a replacement style, select a style from the Replace with list.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Centers the cells horizontally on the printed page.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3153524\n"
+"05040200.xhp\n"
+"hd_id3147047\n"
"49\n"
"help.text"
-msgid "Search for Styles / Including Styles"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Horizontal</caseinline></switchinline>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3155103\n"
+"05040200.xhp\n"
+"par_id3153878\n"
"50\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_SEARCH:BTN_LAYOUTS\">Searches for text formatted with the style that you specify. Select this checkbox, and then select a style from the <emph>Search for </emph>list. To specify a replacement style, select a style from the <emph>Replace with</emph> list.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/checkbuttonHorz\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Centers the cells horizontally on the printed page.</caseinline></switchinline></ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_idN109CC\n"
+"05040200.xhp\n"
+"par_id0522200809473811\n"
"help.text"
-msgid "After you select the attributes that you want to search for, the <emph>Search for Styles</emph> box in the <emph>Options </emph>area of the %PRODUCTNAME Writer <emph>Find & Replace </emph>dialog changes to <emph>Including Styles</emph>."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Centers the cells vertically on the printed page.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_idN109DF\n"
+"05040200.xhp\n"
+"hd_id3153522\n"
+"51\n"
"help.text"
-msgid "If you want to search for text in which attributes were set by using direct formatting and styles, select the <emph>Including Styles</emph> box."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Vertical</caseinline></switchinline>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id0302200901464169\n"
+"05040200.xhp\n"
+"par_id3149413\n"
+"52\n"
"help.text"
-msgid "Comments"
-msgstr "Komentet"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/checkbuttonVert\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Centers the cells vertically on the printed page.</caseinline></switchinline></ahelp>"
+msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id0302200901464150\n"
+"05040200.xhp\n"
+"hd_id3147381\n"
+"63\n"
"help.text"
-msgid "<ahelp hid=\".\">In Writer, you can select to include the comment texts in your searches.</ahelp>"
-msgstr ""
+msgid "Layout settings"
+msgstr "Parametrat e faqes"
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3149167\n"
-"204\n"
+"05040200.xhp\n"
+"hd_id3151041\n"
+"15\n"
"help.text"
-msgid "<variable id=\"halbnormaltitel\">Match character width (only if Asian languages are enabled)</variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Page Layout</defaultinline></switchinline>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3145744\n"
-"208\n"
+"05040200.xhp\n"
+"par_id3157962\n"
+"16\n"
"help.text"
-msgid "<variable id=\"halbnormaltext\"><ahelp hid=\"SVX_CHECKBOX_RID_SVXDLG_SEARCH_CB_JAP_MATCH_FULL_HALF_WIDTH\">Distinguishes between half-width and full-width character forms.</ahelp></variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Select the page layout style to use in the current document.</defaultinline></switchinline>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3153178\n"
-"205\n"
+"05040200.xhp\n"
+"hd_id3145744\n"
+"17\n"
"help.text"
-msgid "<variable id=\"aehnlichtitel\">Sounds like (Japanese) (only if Asian languages are enabled)</variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Page layout</defaultinline></switchinline>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3145421\n"
-"206\n"
+"05040200.xhp\n"
+"par_id3154218\n"
+"18\n"
"help.text"
-msgid "<variable id=\"aehnlichtext\"><ahelp hid=\"SVX_CHECKBOX_RID_SVXDLG_SEARCH_CB_JAP_SOUNDS_LIKE\">Lets you specify the search options for similar notation used in Japanese text. Select this checkbox, and then click the <emph>...</emph> button to specify the search options. </ahelp></variable>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/comboPageLayout\"><switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Specify whether the current style should show odd pages, even pages, or both odd and even pages.</defaultinline></switchinline></ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3149765\n"
-"209\n"
+"05040200.xhp\n"
+"hd_id3154946\n"
+"19\n"
"help.text"
-msgid "<variable id=\"aehnlichbutton\"><ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SEARCH_PB_JAP_OPTIONS\" visibility=\"hidden\">Sets the search options for similar notation used in Japanese text.</ahelp></variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Right and left</defaultinline></switchinline>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3148672\n"
-"212\n"
+"05040200.xhp\n"
+"par_id3153058\n"
+"20\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01150200.xhp\" name=\"Searching in Japanese\">Searching in Japanese</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The current page style shows both odd and even pages with left and right margins as specified.</defaultinline></switchinline>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3154299\n"
-"66\n"
+"05040200.xhp\n"
+"hd_id3147287\n"
+"21\n"
"help.text"
-msgid "Find All"
-msgstr "Gjej të gjitha"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Mirrored</defaultinline></switchinline>"
+msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3145785\n"
-"67\n"
+"05040200.xhp\n"
+"par_id3147317\n"
+"22\n"
"help.text"
-msgid "Finds and selects all instances of the text or the format that you are searching for in the document (only in Writer and Calc documents)."
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The current page style shows both odd and even pages with inner and outer margins as specified. Use this layout if you want to bind the printed pages like a book. Enter the binding space as the \"Inner\" margin.</defaultinline></switchinline>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id31454242785\n"
+"05040200.xhp\n"
+"hd_id3155308\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Finds and selects all instances of the text or the format that you are searching for in the document (only in Writer and Calc documents).</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Only right</defaultinline></switchinline>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3163821\n"
-"68\n"
+"05040200.xhp\n"
+"par_id3152885\n"
+"24\n"
"help.text"
-msgid "Find"
-msgstr "Gjeje"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The current page style shows only odd (right) pages. Even pages are shown as blank pages.</defaultinline></switchinline>"
+msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3147436\n"
-"69\n"
+"05040200.xhp\n"
+"hd_id3157309\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_SEARCH\">Finds and selects the next occurrence of the text or format that you searching for in the document.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Only left</defaultinline></switchinline>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3153742\n"
-"70\n"
+"05040200.xhp\n"
+"par_id3147326\n"
+"26\n"
"help.text"
-msgid "Replace All"
-msgstr "Zevëndëso të gjitha"
+msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The current page style shows only even (left) pages. Odd pages are shown as blank pages.</defaultinline></switchinline>"
+msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3145660\n"
-"71\n"
+"05040200.xhp\n"
+"hd_id3155366\n"
+"53\n"
"help.text"
-msgid "<ahelp hid=\".\">Replaces all of the occurrences of the text or format that you want to replace.</ahelp><switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Repeat this command until all replacements on your slide have been made.</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Register-true</caseinline></switchinline>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3149065\n"
-"72\n"
+"05040200.xhp\n"
+"hd_id3083281\n"
+"27\n"
"help.text"
-msgid "Replace"
-msgstr "Zëvendëso"
+msgid "Format"
+msgstr "Formati"
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3151170\n"
-"73\n"
+"05040200.xhp\n"
+"par_id3153745\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_REPLACE\">Replaces the selected text or format that you searched for, and then searches for the next occurrence.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pageformatpage/comboLayoutFormat\">Select the page numbering format that you want to use for the current page style.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3147348\n"
-"192\n"
+"05040200.xhp\n"
+"par_id0522200809473965\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100200.xhp\" name=\"Attribute\">Attribute</link></caseinline></switchinline>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Resizes the drawing objects so that they fit on the paper format that you select. The arrangement of the drawing objects is preserved.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3155854\n"
-"193\n"
+"05040200.xhp\n"
+"hd_id3151318\n"
+"67\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02100300.xhp\" name=\"Format\">Format</link></caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"OFFICE\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><caseinline select=\"IMAGE\"></caseinline><defaultinline>AutoFit object to page format</defaultinline></switchinline>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id8641315\n"
+"05040200.xhp\n"
+"par_id3144746\n"
+"68\n"
"help.text"
-msgid "Finds specific text formatting features, such as font types, font effects, and text flow characteristics."
+msgid "<switchinline select=\"appl\"><caseinline select=\"OFFICE\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><caseinline select=\"IMAGE\"></caseinline><defaultinline><ahelp hid=\"cui/ui/pageformatpage/checkAdaptBox\">Resizes the drawing objects so that they fit on the paper format that you select. The arrangement of the drawing objects is preserved.</ahelp></defaultinline></switchinline>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3154188\n"
-"135\n"
+"05040200.xhp\n"
+"par_id3149123\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">No Format</caseinline></switchinline>"
+msgid "<link href=\"text/shared/00/00000001.xhp#metrik\" name=\"Changing measurement units\">Changing measurement units</link>"
msgstr ""
-#: 02100000.xhp
+#: 05040200.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3159155\n"
-"136\n"
+"05040200.xhp\n"
+"par_id3153730\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Click in the <emph>Search for </emph>or the <emph>Replace with </emph>box, and then click this button to remove the search criteria based on formats.</caseinline></switchinline>"
+msgid "<link href=\"text/swriter/guide/registertrue.xhp\" name=\"Writing Register-true\">Writing Register-true</link>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id1334269\n"
+"05040300.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click in the Search for or the Replace with box, and then click this button to remove the search criteria based on formats.</ahelp>"
-msgstr ""
+msgid "Header"
+msgstr "Kreu"
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3150337\n"
-"137\n"
+"05040300.xhp\n"
+"hd_id3155599\n"
+"1\n"
"help.text"
-msgid "The search criteria for formatting attributes are displayed under the <emph>Search for </emph>or the <emph>Replace with </emph>box."
+msgid "<link href=\"text/shared/01/05040300.xhp\" name=\"Header\">Header</link>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3150113\n"
-"139\n"
+"05040300.xhp\n"
+"par_id3156027\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Shows more or fewer search options. Click this button again to hide the extended search options.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/HFFormatPage\">Adds a header to the current page style. A header is an area in the top page margin, where you can add text or graphics.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3154944\n"
-"140\n"
+"05040300.xhp\n"
+"par_id3150693\n"
+"33\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Search in</caseinline></switchinline>"
+msgid "If you want, you can also add borders or a background fill to a header."
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3146925\n"
-"142\n"
+"05040300.xhp\n"
+"par_id3153821\n"
+"32\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Formulas</caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To add a header to the current page style, select <emph>Header on</emph>, and then click <emph>OK</emph>. </caseinline></switchinline>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id6719870\n"
+"05040300.xhp\n"
+"par_id3153827\n"
+"31\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for the characters that you specify in formulas and in fixed (not calculated) values. For example, you could look for formulas that contain 'SUM'.</ahelp>"
+msgid "If you want to extend a header into the page margins, insert a frame into the header."
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3149400\n"
-"144\n"
+"05040300.xhp\n"
+"par_id3154046\n"
+"29\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Values</caseinline></switchinline>"
+msgid "To quickly move the text cursor from the document text to the header or footer, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down. Press the same key again to move the text cursor back into the document text."
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3146969\n"
-"145\n"
+"05040300.xhp\n"
+"hd_id3152360\n"
+"4\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches for the characters that you specify in values and in the results of formulas.</caseinline></switchinline>"
+msgid "Header"
+msgstr "Kreu"
+
+#: 05040300.xhp
+msgctxt ""
+"05040300.xhp\n"
+"par_id3154924\n"
+"5\n"
+"help.text"
+msgid "Set the properties of the header."
+msgstr "Përsërite kreun"
+
+#: 05040300.xhp
+msgctxt ""
+"05040300.xhp\n"
+"hd_id3147304\n"
+"7\n"
+"help.text"
+msgid "Header on"
+msgstr "Mbështjell"
+
+#: 05040300.xhp
+msgctxt ""
+"05040300.xhp\n"
+"par_id3154388\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/checkFooterOn\">Adds a header to the current page style.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id6064943\n"
+"05040300.xhp\n"
+"hd_id3154936\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for the characters that you specify in values and in the results of formulas.</ahelp>"
+msgid "Same content left/right"
+msgstr "Madhësia e tejkalimit (majtas/djathtas)"
+
+#: 05040300.xhp
+msgctxt ""
+"05040300.xhp\n"
+"par_id3154938\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/checkSameLR\">Even and odd pages share the same content.<switchinline select=\"appl\"><caseinline select=\"CALC\"> To assign a different header to even and odd pages, clear this option, and then click <emph>Edit</emph>. </caseinline></switchinline></ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3145650\n"
-"146\n"
+"05040300.xhp\n"
+"hd_id3154937\n"
+"21\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments</caseinline></switchinline>"
+msgid "Same content on first page"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3153947\n"
-"147\n"
+"05040300.xhp\n"
+"par_id3154939\n"
+"22\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches for the characters that you specify in the comments that are attached to the cells.</caseinline></switchinline>"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/checkSameFP\">First and even/odd pages share the same content.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id9799798\n"
+"05040300.xhp\n"
+"hd_id3145202\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches for the characters that you specify in the comments that are attached to the cells.</ahelp>"
+msgid "Left margin"
+msgstr "Margjina e majtë"
+
+#: 05040300.xhp
+msgctxt ""
+"05040300.xhp\n"
+"par_id3150449\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/spinMargLeft\">Enter the amount of space to leave between the left edge of the page and the left edge of the header.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3153004\n"
-"148\n"
+"05040300.xhp\n"
+"hd_id3153351\n"
+"19\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Search direction</caseinline></switchinline>"
+msgid "Right margin"
+msgstr "Margjina e djathtë"
+
+#: 05040300.xhp
+msgctxt ""
+"05040300.xhp\n"
+"par_id3157322\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/spinMargRight\">Enter the amount of space to leave between the right edge of the page and the right edge of the header.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3156332\n"
-"207\n"
+"05040300.xhp\n"
+"hd_id3148672\n"
+"9\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Determines the order for searching the cells.</caseinline></switchinline>"
+msgid "Spacing"
+msgstr "Hapësira"
+
+#: 05040300.xhp
+msgctxt ""
+"05040300.xhp\n"
+"par_id3153970\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/spinSpacing\">Enter the amount of space that you want to maintain between the bottom edge of the header and the top edge of the document text.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3155064\n"
-"150\n"
+"05040300.xhp\n"
+"hd_id3154330\n"
+"35\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">By Rows</caseinline></switchinline>"
+msgid "Use dynamic spacing"
+msgstr "Përdor %WRITERCOMPATIBILITYVERSIONOOO11 hapësirën mes rreshtave"
+
+#: 05040300.xhp
+msgctxt ""
+"05040300.xhp\n"
+"par_id3148453\n"
+"36\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/checkDynSpacing\">Overrides the <emph>Spacing </emph>setting, and allows the header to expand into the area between the header and the document text.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id743430\n"
+"05040300.xhp\n"
+"hd_id3150290\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches from left to right across the rows.</ahelp>"
+msgid "Height"
+msgstr "Lartësia"
+
+#: 05040300.xhp
+msgctxt ""
+"05040300.xhp\n"
+"par_id3155429\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/spinHeight\">Enter the height that you want for the header.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3156277\n"
-"152\n"
+"05040300.xhp\n"
+"hd_id3156543\n"
+"15\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">By Columns</caseinline></switchinline>"
+msgid "AutoFit height"
+msgstr "Përshtate Automatikisht lartësinë"
+
+#: 05040300.xhp
+msgctxt ""
+"05040300.xhp\n"
+"par_id3153095\n"
+"16\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/checkAutofit\">Automatically adjusts the height of the header to fit the content that you enter.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3145207\n"
-"153\n"
+"05040300.xhp\n"
+"hd_id3145271\n"
+"24\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches from top to bottom through the columns.</caseinline></switchinline>"
+msgid "More"
+msgstr "Më shumë"
+
+#: 05040300.xhp
+msgctxt ""
+"05040300.xhp\n"
+"par_id3145367\n"
+"25\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/buttonMore\">Defines a border, a background color, or a background pattern for the header.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3470564\n"
+"05040300.xhp\n"
+"hd_id3155306\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches from top to bottom through the columns.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Edit </caseinline></switchinline>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3153764\n"
-"194\n"
+"05040300.xhp\n"
+"par_id0609200910261473\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Extras</caseinline></switchinline>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Add or edit header text.</ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"bm_id3152960\n"
+"05040300.xhp\n"
+"par_id3145749\n"
+"28\n"
"help.text"
-msgid "<bookmark_value>searching; all sheets</bookmark_value> <bookmark_value>finding; in all sheets</bookmark_value> <bookmark_value>sheets; searching all</bookmark_value>"
+msgid "<ahelp hid=\"svx/ui/headfootformatpage/buttonEdit\"><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02120000.xhp\" name=\"Add or edit\">Add or edit</link> header text. </caseinline></switchinline></ahelp>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"hd_id3152960\n"
-"196\n"
+"05040300.xhp\n"
+"par_id3163716\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Search in all sheets</caseinline></switchinline>"
+msgid "<link href=\"text/swriter/01/04220000.xhp\" name=\"Headers\">Headers</link>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3145619\n"
-"197\n"
+"05040300.xhp\n"
+"par_id3150032\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Searches through all of the sheets in the current spreadsheet file.</caseinline></switchinline>"
+msgid "<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Changing measurement units\">Changing measurement units</link>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id4089175\n"
+"05040300.xhp\n"
+"par_id3150873\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Searches through all of the sheets in the current spreadsheet file.</ahelp>"
+msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link>"
msgstr ""
-#: 02100000.xhp
+#: 05040300.xhp
msgctxt ""
-"02100000.xhp\n"
-"par_id3151101\n"
-"188\n"
+"05040300.xhp\n"
+"par_id3147326\n"
"help.text"
-msgid "After you close the <emph>Find & Replace</emph> dialog, you can still search using the last search criteria that you entered, by pressing Shift+<switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+F."
+msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Backgrounds\">Backgrounds</link>"
msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
+"05040400.xhp\n"
"tit\n"
"help.text"
-msgid "Textures"
-msgstr "Teksturat"
+msgid "Footer"
+msgstr "Mbarimi"
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3150014\n"
+"05040400.xhp\n"
+"hd_id3155620\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05350500.xhp\" name=\"Textures\">Textures</link>"
+msgid "<link href=\"text/shared/01/05040400.xhp\" name=\"Footer\">Footer</link>"
msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3147000\n"
+"05040400.xhp\n"
+"par_id3156553\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEXTURE\">Sets the properties of the surface texture for the selected 3D object. This feature is only available after you apply a surface textures to the selected object. To quickly apply a surface texture, open the <emph>Gallery</emph>, hold down Shift+Ctrl (Mac: Shift+Command), and then drag an image onto the selected 3D object.</ahelp>"
+msgid "<ahelp hid=\"HID_FORMAT_FOOTER\">Adds a footer to the current page style. A footer is an area in the bottom page margin, where you can add text or graphics.</ahelp>"
msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3145212\n"
-"4\n"
+"05040400.xhp\n"
+"par_id3145136\n"
+"32\n"
"help.text"
-msgid "Textures"
-msgstr "Teksturat"
+msgid "If you want, you can also add borders or a background fill to a footer."
+msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3159233\n"
-"5\n"
+"05040400.xhp\n"
+"par_id3155339\n"
+"31\n"
"help.text"
-msgid "Sets the texture properties."
-msgstr "Vetitë e 3D objekteve"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To insert a footer into the current document, select <emph>Footer on</emph>, and then click <emph>OK</emph>. </caseinline></switchinline>"
+msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3156410\n"
+"05040400.xhp\n"
+"par_id3147209\n"
+"30\n"
+"help.text"
+msgid "If you want to extend a footer into the page margins, insert a frame into the footer."
+msgstr ""
+
+#: 05040400.xhp
+msgctxt ""
+"05040400.xhp\n"
+"par_id3150976\n"
+"28\n"
+"help.text"
+msgid "To quickly move the text cursor from the document text to the header or footer, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Page Up or Page Down. Press the same key again to move the text cursor back into the document text."
+msgstr ""
+
+#: 05040400.xhp
+msgctxt ""
+"05040400.xhp\n"
+"hd_id3150504\n"
+"3\n"
+"help.text"
+msgid "Footer"
+msgstr "Mbarimi"
+
+#: 05040400.xhp
+msgctxt ""
+"05040400.xhp\n"
+"par_id3149235\n"
+"4\n"
+"help.text"
+msgid "Set the properties of the footer."
+msgstr "Faqja e mbarimit $(ARG1)"
+
+#: 05040400.xhp
+msgctxt ""
+"05040400.xhp\n"
+"hd_id3154380\n"
"6\n"
"help.text"
-msgid "Type"
-msgstr "Tipi"
+msgid "Footer on"
+msgstr "Mbështjell"
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3145345\n"
+"05040400.xhp\n"
+"par_id3153348\n"
"7\n"
"help.text"
-msgid "Set the color properties of the texture."
-msgstr "Teksturë, Hije dhe Ngjyra"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_TURNON\">Adds a footer to the current page style.</ahelp>"
+msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3150775\n"
-"8\n"
+"05040400.xhp\n"
+"hd_id3145087\n"
+"20\n"
"help.text"
-msgid "Black & White"
-msgstr "Bardh e Zi"
+msgid "Same content left/right"
+msgstr "Madhësia e tejkalimit (majtas/djathtas)"
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3147242\n"
-"9\n"
+"05040400.xhp\n"
+"par_id3149575\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_LUMINANCE\">Converts the texture to black and white.</ahelp>"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_SHARED\">Even and odd pages share the same content.<switchinline select=\"appl\"><caseinline select=\"CALC\"> To assign a different footer to even and odd pages, clear this option, and then click <emph>Edit</emph>. </caseinline></switchinline></ahelp>"
msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3146773\n"
+"05040400.xhp\n"
+"hd_id3154937\n"
+"21\n"
"help.text"
-msgid "<image id=\"img_id3150084\" src=\"svx/res/luminanc.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3150084\">Icon</alt></image>"
+msgid "Same content on first page"
msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3156156\n"
-"10\n"
+"05040400.xhp\n"
+"par_id3154939\n"
+"22\n"
"help.text"
-msgid "Black & White"
-msgstr "Bardh e Zi"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_SHARED_FIRST\">First and even/odd pages share the same content.</ahelp>"
+msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3150670\n"
-"11\n"
+"05040400.xhp\n"
+"hd_id3147264\n"
+"16\n"
"help.text"
-msgid "Color"
-msgstr "Ngjyra"
+msgid "Left margin"
+msgstr "Margjina e majtë"
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3145119\n"
-"12\n"
+"05040400.xhp\n"
+"par_id3156434\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_COLOR\">Converts the texture to color.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_LMARGIN\">Enter the amount of space to leave between the left edge of the page and the left edge of the footer.</ahelp>"
msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3153126\n"
+"05040400.xhp\n"
+"hd_id3154073\n"
+"18\n"
"help.text"
-msgid "<image id=\"img_id3155388\" src=\"svx/res/color.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3155388\">Icon</alt></image>"
+msgid "Right margin"
+msgstr "Margjina e djathtë"
+
+#: 05040400.xhp
+msgctxt ""
+"05040400.xhp\n"
+"par_id3154224\n"
+"19\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_RMARGIN\">Enter the amount of space to leave between the right edge of the page and the right edge of the footer.</ahelp>"
msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3145316\n"
+"05040400.xhp\n"
+"hd_id3154140\n"
+"8\n"
+"help.text"
+msgid "Spacing"
+msgstr "Hapësira"
+
+#: 05040400.xhp
+msgctxt ""
+"05040400.xhp\n"
+"par_id3154908\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_DIST\">Enter the amount of space that you want to maintain between the bottom edge of the document text and the top edge of the footer.</ahelp>"
+msgstr ""
+
+#: 05040400.xhp
+msgctxt ""
+"05040400.xhp\n"
+"hd_id3158409\n"
+"34\n"
+"help.text"
+msgid "Use dynamic spacing"
+msgstr "Përdor %WRITERCOMPATIBILITYVERSIONOOO11 hapësirën mes rreshtave"
+
+#: 05040400.xhp
+msgctxt ""
+"05040400.xhp\n"
+"par_id3144760\n"
+"35\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_FOOTER_CB_DYNSPACING\">Overrides the <emph>Spacing </emph>setting and allows the footer to expand into the area between the footer and document text.</ahelp>"
+msgstr ""
+
+#: 05040400.xhp
+msgctxt ""
+"05040400.xhp\n"
+"hd_id3154821\n"
+"12\n"
+"help.text"
+msgid "Height"
+msgstr "Lartësia"
+
+#: 05040400.xhp
+msgctxt ""
+"05040400.xhp\n"
+"par_id3125865\n"
"13\n"
"help.text"
-msgid "Color"
-msgstr "Ngjyra"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_FOOTER:ED_HEIGHT\">Enter the height you want for the footer.</ahelp>"
+msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3155342\n"
+"05040400.xhp\n"
+"hd_id3150742\n"
"14\n"
"help.text"
-msgid "Mode"
-msgstr "Modi"
+msgid "AutoFit height"
+msgstr "Përshtate Automatikisht lartësinë"
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3153827\n"
+"05040400.xhp\n"
+"par_id3145744\n"
"15\n"
"help.text"
-msgid "Show or hide shading."
-msgstr "Shfaq/Fsheh Shiritin e Hiperlinkut"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_FOOTER:CB_HEIGHT_DYN\">Automatically adjusts the height of the footer to fit the content you enter.</ahelp>"
+msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3149191\n"
-"16\n"
+"05040400.xhp\n"
+"hd_id3149807\n"
+"23\n"
"help.text"
-msgid "Only Texture"
-msgstr "Vetëm Tekstura"
+msgid "More"
+msgstr "Më shumë"
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3148564\n"
-"17\n"
+"05040400.xhp\n"
+"par_id3145421\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_REPLACE\">Applies the texture without shading.</ahelp>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_FOOTER:BTN_EXTRAS\">Defines a border, a background color, or a background pattern for the footer.</ahelp>"
msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3154280\n"
+"05040400.xhp\n"
+"hd_id3157892\n"
+"26\n"
"help.text"
-msgid "<image id=\"img_id3149045\" src=\"svx/res/replac3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3149045\">Icon</alt></image>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Edit </caseinline></switchinline>"
msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3156435\n"
-"18\n"
+"05040400.xhp\n"
+"par_id0609200910255518\n"
"help.text"
-msgid "Only Texture"
-msgstr "Vetëm Tekstura"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Add or edit footer text.</ahelp>"
+msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3150541\n"
-"19\n"
+"05040400.xhp\n"
+"par_id3150439\n"
+"27\n"
"help.text"
-msgid "Texture and Shading"
-msgstr "Tekstura dhe Hijezimi"
+msgid "<ahelp hid=\"HID_SC_FOOTER_EDIT\"><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/scalc/01/02120000.xhp\" name=\"Add or edit footer text.\">Add or edit footer text.</link></caseinline></switchinline></ahelp>"
+msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3154938\n"
-"20\n"
+"05040400.xhp\n"
+"par_id3151112\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_MODULATE\">Applies the texture with shading. To define the shading options for the texture, click the <emph>Shading</emph> button in this dialog.</ahelp>"
+msgid "<link href=\"text/swriter/01/04230000.xhp\" name=\"Footers\">Footers</link>"
msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3150742\n"
+"05040400.xhp\n"
+"par_id3155411\n"
"help.text"
-msgid "<image id=\"img_id3152803\" src=\"svx/res/modula3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3152803\">Icon</alt></image>"
+msgid "<link href=\"text/shared/00/00000003.xhp#metrik\" name=\"Changing measurement units\">Changing measurement units</link>"
msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3145419\n"
-"21\n"
+"05040400.xhp\n"
+"par_id3154189\n"
"help.text"
-msgid "Texture and Shading"
-msgstr "Tekstura dhe Hijezimi"
+msgid "<link href=\"text/shared/01/05030500.xhp\" name=\"Borders\">Borders</link>"
+msgstr ""
-#: 05350500.xhp
+#: 05040400.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3148672\n"
-"22\n"
+"05040400.xhp\n"
+"par_id3152791\n"
"help.text"
-msgid "Projection X"
-msgstr "Projekcioni X"
+msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Backgrounds\">Backgrounds</link>"
+msgstr ""
-#: 05350500.xhp
+#: 05050000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3148677\n"
-"23\n"
+"05050000.xhp\n"
+"tit\n"
"help.text"
-msgid "Set the options for displaying the texture."
+msgid "Change Case"
+msgstr "~Ndrysho shkronjat"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"hd_id3152952\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05050000.xhp\" name=\"Change Case\">Change Case</link>"
msgstr ""
-#: 05350500.xhp
+#: 05050000.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3148453\n"
-"24\n"
+"05050000.xhp\n"
+"par_id3151299\n"
+"2\n"
"help.text"
-msgid "Object-specific"
-msgstr "Objekt-Specifik"
+msgid "<ahelp hid=\".\">Changes the case of characters in the selection. If the cursor is within a word and no text is selected, then the word is the selection.</ahelp>"
+msgstr ""
-#: 05350500.xhp
+#: 05050000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3144432\n"
-"25\n"
+"05050000.xhp\n"
+"hd_id3147572\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_OBJECT_X\">Automatically adjusts the texture based on the shape and size of the object.</ahelp>"
+msgid "Sentence case"
msgstr ""
-#: 05350500.xhp
+#: 05050000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3155103\n"
+"05050000.xhp\n"
+"par_id3150694\n"
+"6\n"
"help.text"
-msgid "<image id=\"img_id3148920\" src=\"svx/res/objspc3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3148920\">Icon</alt></image>"
+msgid "<ahelp hid=\".\">Changes the first letter of the selected western characters to an uppercase character.</ahelp>"
msgstr ""
-#: 05350500.xhp
+#: 05050000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3155133\n"
-"26\n"
+"05050000.xhp\n"
+"hd_id3147571\n"
+"5\n"
"help.text"
-msgid "Object-specific"
-msgstr "Objekt-Specifik"
+msgid "lowercase"
+msgstr "Shkronjë e vogël"
-#: 05350500.xhp
+#: 05050000.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3147300\n"
-"27\n"
+"05050000.xhp\n"
+"par_id3150693\n"
+"6\n"
"help.text"
-msgid "Parallel"
-msgstr "Paralel"
+msgid "<ahelp hid=\".uno:ChangeCaseToLower\">Changes the selected western characters to lowercase characters.</ahelp>"
+msgstr ""
-#: 05350500.xhp
+#: 05050000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3153768\n"
-"28\n"
+"05050000.xhp\n"
+"hd_id3147143\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_PARALLEL_X\">Applies the texture parallel to the horizontal axis.</ahelp>"
+msgid "UPPERCASE"
msgstr ""
-#: 05350500.xhp
+#: 05050000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3148977\n"
+"05050000.xhp\n"
+"par_id3152372\n"
+"4\n"
"help.text"
-msgid "<image id=\"img_id3147478\" src=\"svx/res/parallel.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3147478\">Icon</alt></image>"
+msgid "<ahelp hid=\".uno:ChangeCaseToUpper\">Changes the selected western characters to uppercase characters.</ahelp>"
msgstr ""
-#: 05350500.xhp
+#: 05050000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3147579\n"
-"29\n"
+"05050000.xhp\n"
+"hd_id3147511\n"
+"5\n"
"help.text"
-msgid "Parallel"
-msgstr "Paralel"
+msgid "Capitalize Every Word"
+msgstr ""
-#: 05350500.xhp
+#: 05050000.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3148577\n"
-"30\n"
+"05050000.xhp\n"
+"par_id3150613\n"
+"6\n"
"help.text"
-msgid "Circular"
-msgstr "Rrethor"
+msgid "<ahelp hid=\".\">Changes the first character of every word of the selected western characters to an uppercase character.</ahelp>"
+msgstr ""
-#: 05350500.xhp
+#: 05050000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3152418\n"
-"31\n"
+"05050000.xhp\n"
+"hd_id3147521\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_CIRCLE_X\">Wraps the horizontal axis of the texture pattern around a sphere.</ahelp>"
+msgid "tOGGLE cASE"
msgstr ""
-#: 05350500.xhp
+#: 05050000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3154013\n"
+"05050000.xhp\n"
+"par_id3150623\n"
+"6\n"
"help.text"
-msgid "<image id=\"img_id3153943\" src=\"svx/res/parallel.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153943\">Icon</alt></image>"
+msgid "<ahelp hid=\".\">Toggles case of all selected western characters.</ahelp>"
msgstr ""
-#: 05350500.xhp
+#: 05050000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3156006\n"
-"32\n"
+"05050000.xhp\n"
+"hd_id3155392\n"
+"7\n"
"help.text"
-msgid "Circular"
-msgstr "Rrethor"
+msgid "Half-width"
+msgstr "Gjysmë-gjerësia"
-#: 05350500.xhp
+#: 05050000.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3154129\n"
-"33\n"
+"05050000.xhp\n"
+"par_id3147088\n"
+"8\n"
"help.text"
-msgid "Projection Y"
-msgstr "Projekcioni X"
+msgid "<ahelp hid=\".uno:ChangeCaseToHalfWidth\">Changes the selected Asian characters to half-width characters.</ahelp>"
+msgstr ""
-#: 05350500.xhp
+#: 05050000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3152878\n"
-"34\n"
+"05050000.xhp\n"
+"hd_id3156113\n"
+"9\n"
"help.text"
-msgid "Click the respective buttons to define the texture for the object Y axis."
+msgid "Full Width"
+msgstr "Gjerësia e plotë"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"par_id3154749\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ChangeCaseToFullWidth\">Changes the selected Asian characters to full width characters.</ahelp>"
msgstr ""
-#: 05350500.xhp
+#: 05050000.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3154693\n"
-"35\n"
+"05050000.xhp\n"
+"hd_id3152996\n"
+"11\n"
"help.text"
-msgid "Object-specific"
-msgstr "Objekt-Specifik"
+msgid "Hiragana"
+msgstr "Hiragana"
-#: 05350500.xhp
+#: 05050000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3153095\n"
-"36\n"
+"05050000.xhp\n"
+"par_id3156156\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_OBJECT_Y\">Automatically adjusts the texture based on the shape and size of the object.</ahelp>"
+msgid "<ahelp hid=\".uno:ChangeCaseToHiragana\">Changes the selected Asian characters to Hiragana characters.</ahelp>"
msgstr ""
-#: 05350500.xhp
+#: 05050000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3153210\n"
+"05050000.xhp\n"
+"hd_id3154173\n"
+"13\n"
"help.text"
-msgid "<image id=\"img_id3153188\" src=\"svx/res/objspc3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3153188\">Icon</alt></image>"
+msgid "Katakana"
+msgstr "Katakana"
+
+#: 05050000.xhp
+msgctxt ""
+"05050000.xhp\n"
+"par_id3146137\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\".uno:ChangeCaseToKatakana\">Changes the selected Asian characters to Katakana characters.</ahelp>"
msgstr ""
-#: 05350500.xhp
+#: 05060000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3147435\n"
-"37\n"
+"05060000.xhp\n"
+"tit\n"
"help.text"
-msgid "Object-specific"
-msgstr "Objekt-Specifik"
+msgid "Asian Phonetic Guide"
+msgstr "Dr~ejtues fonetik aziatik..."
-#: 05350500.xhp
+#: 05060000.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3148775\n"
-"38\n"
+"05060000.xhp\n"
+"bm_id9598376\n"
"help.text"
-msgid "Parallel"
-msgstr "Paralel"
+msgid "<bookmark_value>Asian Phonetic Guide</bookmark_value><bookmark_value>phonetic guide</bookmark_value>"
+msgstr ""
-#: 05350500.xhp
+#: 05060000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3145730\n"
-"39\n"
+"05060000.xhp\n"
+"hd_id3147527\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_PARALLEL_Y\">Applies the texture parallel to the vertical axis.</ahelp>"
+msgid "<link href=\"text/shared/01/05060000.xhp\" name=\"Ruby\">Asian Phonetic Guide</link>"
msgstr ""
-#: 05350500.xhp
+#: 05060000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3147485\n"
+"05060000.xhp\n"
+"par_id3083278\n"
+"2\n"
"help.text"
-msgid "<image id=\"img_id3151280\" src=\"svx/res/parallel.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3151280\">Icon</alt></image>"
+msgid "<ahelp hid=\".uno:RubyDialog\">Allows you to add comments above Asian characters to serve as a pronunciation guide.</ahelp>"
msgstr ""
-#: 05350500.xhp
+#: 05060000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3156737\n"
-"40\n"
+"05060000.xhp\n"
+"par_id3154044\n"
+"13\n"
"help.text"
-msgid "Parallel"
-msgstr "Paralel"
+msgid "Select one or more words in the document."
+msgstr ""
-#: 05350500.xhp
+#: 05060000.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3149377\n"
-"41\n"
+"05060000.xhp\n"
+"par_id3149987\n"
+"14\n"
"help.text"
-msgid "Circular"
-msgstr "Rrethor"
+msgid "Choose <emph>Format - Asian Phonetic Guide</emph>."
+msgstr ""
-#: 05350500.xhp
+#: 05060000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3159348\n"
-"42\n"
+"05060000.xhp\n"
+"par_id3154838\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_CIRCLE_Y\">Wraps the vertical axis of the texture pattern around a sphere.</ahelp>"
+msgid "Enter the text that you want to use as a pronunciation guide in the <emph>Ruby text</emph> box."
msgstr ""
-#: 05350500.xhp
+#: 05060000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3157876\n"
+"05060000.xhp\n"
+"hd_id3150793\n"
+"3\n"
"help.text"
-msgid "<image id=\"img_id3152807\" src=\"svx/res/parallel.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152807\">Icon</alt></image>"
+msgid "Base text"
+msgstr "Madhësia max. e tekstit bazë"
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3154155\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/Left4ED\">Displays the base text that you selected in the current file. If you want, you can modify the base text by entering new text here.</ahelp>"
msgstr ""
-#: 05350500.xhp
+#: 05060000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3151173\n"
-"43\n"
+"05060000.xhp\n"
+"hd_id3145154\n"
+"5\n"
"help.text"
-msgid "Circular"
-msgstr "Rrethor"
+msgid "Ruby text"
+msgstr "Madhësia max. e tekstit rubin"
-#: 05350500.xhp
+#: 05060000.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3149581\n"
-"44\n"
+"05060000.xhp\n"
+"par_id3145420\n"
+"6\n"
"help.text"
-msgid "Filter"
-msgstr "Filtër"
+msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/Right4ED\">Enter the text that you want to use as a pronunciation guide for the base text.</ahelp>"
+msgstr ""
-#: 05350500.xhp
+#: 05060000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3148456\n"
-"45\n"
+"05060000.xhp\n"
+"hd_id3148920\n"
+"7\n"
"help.text"
-msgid "Filters out some of the 'noise' that can occur when you apply a texture to a 3D object."
+msgid "Alignment"
+msgstr "Mbështetje"
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3156280\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/adjustlb\">Select the horizontal alignment for the Ruby text.</ahelp>"
msgstr ""
-#: 05350500.xhp
+#: 05060000.xhp
msgctxt ""
-"05350500.xhp\n"
-"hd_id3151319\n"
-"46\n"
+"05060000.xhp\n"
+"hd_id3148451\n"
+"16\n"
"help.text"
-msgid "Filtering On/Off"
-msgstr "Filtrimi Kyçyr/Ç'kyçur"
+msgid "Position"
+msgstr "Pozicion"
-#: 05350500.xhp
+#: 05060000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3151038\n"
-"47\n"
+"05060000.xhp\n"
+"par_id3153104\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_FILTER\">Blurs the texture slightly to remove unwanted speckles.</ahelp>"
+msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/positionlb\">Select where you want to place the ruby text.</ahelp>"
msgstr ""
-#: 05350500.xhp
+#: 05060000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3145651\n"
+"05060000.xhp\n"
+"hd_id3148672\n"
+"9\n"
"help.text"
-msgid "<image id=\"img_id3156355\" src=\"res/sx10715.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3156355\">Icon</alt></image>"
+msgid "Character Style for ruby text"
+msgstr "Stili i karakterit për hyrjet kryesore"
+
+#: 05060000.xhp
+msgctxt ""
+"05060000.xhp\n"
+"par_id3148676\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/stylelb\">Select a character style for the ruby text.</ahelp>"
msgstr ""
-#: 05350500.xhp
+#: 05060000.xhp
msgctxt ""
-"05350500.xhp\n"
-"par_id3146900\n"
-"48\n"
+"05060000.xhp\n"
+"hd_id3150449\n"
+"11\n"
"help.text"
-msgid "Filtering On/Off"
-msgstr "Filtrimi Kyçyr/Ç'kyçur"
+msgid "Styles and Formatting"
+msgstr "Struktura dhe formatimi"
-#: 01100400.xhp
+#: 05060000.xhp
msgctxt ""
-"01100400.xhp\n"
+"05060000.xhp\n"
+"par_id3149202\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"svx/ui/asianphoneticguidedialog/styles\">Opens the <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/swriter/01/05140000.xhp\" name=\"Styles\">Styles and Formatting window</link></caseinline><defaultinline>Styles and Formatting window</defaultinline></switchinline> where you can select a character style for the ruby text.</ahelp>"
+msgstr ""
+
+#: 05070000.xhp
+msgctxt ""
+"05070000.xhp\n"
"tit\n"
"help.text"
-msgid "Statistics"
-msgstr "Statistikat"
+msgid "Aligning (Objects)"
+msgstr "Titull, 4 Objekte"
-#: 01100400.xhp
+#: 05070000.xhp
msgctxt ""
-"01100400.xhp\n"
-"bm_id1472518\n"
+"05070000.xhp\n"
+"bm_id3149987\n"
"help.text"
-msgid "<bookmark_value>number of pages</bookmark_value><bookmark_value>documents;number of pages/tables/sheets</bookmark_value><bookmark_value>number of tables</bookmark_value><bookmark_value>number of sheets</bookmark_value><bookmark_value>cells;number of</bookmark_value><bookmark_value>pictures;number of</bookmark_value><bookmark_value>OLE objects;number of</bookmark_value>"
+msgid "<bookmark_value>aligning; objects</bookmark_value><bookmark_value>positioning; objects</bookmark_value><bookmark_value>ordering; objects</bookmark_value>"
msgstr ""
-#: 01100400.xhp
+#: 05070000.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3149962\n"
+"05070000.xhp\n"
+"hd_id3149987\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100400.xhp\" name=\"Statistics\">Statistics</link>"
+msgid "<link href=\"text/shared/01/05070000.xhp\" name=\"Aligning (Objects)\">Alignment (Objects)</link>"
msgstr ""
-#: 01100400.xhp
+#: 05070000.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3156045\n"
+"05070000.xhp\n"
+"par_id3150445\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"SC_TABPAGE_RID_SCPAGE_STAT\">Displays statistics for the current file.</ahelp>"
+msgid "<ahelp hid=\".\">Aligns selected objects with respect to one another.</ahelp>"
msgstr ""
-#: 01100400.xhp
+#: 05070000.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3156324\n"
-"36\n"
+"05070000.xhp\n"
+"par_id3150144\n"
+"4\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Some statistic values can be used as <link href=\"text/swriter/02/14020000.xhp\" name=\"variables in formulas\">variables in formulas</link>. </caseinline></switchinline>"
+msgid "If one of the selected objects is anchored as a character, some of the alignment options do not work."
msgstr ""
-#: 01100400.xhp
+#: 05070000.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3153255\n"
-"3\n"
+"05070000.xhp\n"
+"par_id8872646\n"
"help.text"
-msgid "Number of Pages:"
-msgstr "Numri i faqeve:"
+msgid "Not all types of objects can be selected together. Not all modules (Writer, Calc, Impress, Draw) support all types of alignment."
+msgstr ""
-#: 01100400.xhp
+#: 05070100.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3154230\n"
-"4\n"
+"05070100.xhp\n"
+"tit\n"
"help.text"
-msgid "Number of pages in the file."
-msgstr "Shkronjë e pavlefshme në numër"
+msgid "Align Left"
+msgstr "Rreshto majtas"
-#: 01100400.xhp
+#: 05070100.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3156027\n"
-"5\n"
+"05070100.xhp\n"
+"hd_id3147069\n"
+"1\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Tables: </caseinline><caseinline select=\"CALC\">Number of Sheets: </caseinline></switchinline>"
+msgid "<link href=\"text/shared/01/05070100.xhp\" name=\"Align Left\">Align Left</link>"
msgstr ""
-#: 01100400.xhp
+#: 05070100.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3153527\n"
-"6\n"
+"05070100.xhp\n"
+"par_id3160463\n"
+"2\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of tables in the file. </caseinline><caseinline select=\"CALC\">Number of sheets in the file. </caseinline></switchinline> This statistic does not include tables that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects."
+msgid "<ahelp hid=\".uno:AlignLeft\">Aligns the left edges of the selected objects. If only one object is selected in Draw or Impress, the left edge of the object is aligned to the left page margin.</ahelp>"
msgstr ""
-#: 01100400.xhp
+#: 05070100.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3153311\n"
-"30\n"
+"05070100.xhp\n"
+"par_id3150146\n"
+"4\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of Cells: </caseinline></switchinline>"
+msgid "Objects are aligned to the left edge of the leftmost object in the selection."
msgstr ""
-#: 01100400.xhp
+#: 05070100.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3156114\n"
-"31\n"
+"05070100.xhp\n"
+"par_id3150445\n"
+"3\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Number of cells with content in the file. </caseinline></switchinline>"
+msgid "<variable id=\"mehrfachselektion\">To align the individual objects in a group, <switchinline select=\"appl\"><caseinline select=\"CALC\">choose <emph>Format - Group - Edit Group</emph></caseinline><defaultinline>double-click</defaultinline></switchinline> to enter the group, select the objects, right-click, and then choose an alignment option. </variable>"
msgstr ""
-#: 01100400.xhp
+#: 05070200.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3147210\n"
-"7\n"
+"05070200.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Graphics: </caseinline></switchinline>"
+msgid "Center Horizontal"
+msgstr "Në qendër horizontalisht"
+
+#: 05070200.xhp
+msgctxt ""
+"05070200.xhp\n"
+"hd_id3150278\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05070200.xhp\" name=\"Center Horizontal\">Center Horizontal</link>"
msgstr ""
-#: 01100400.xhp
+#: 05070200.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3166411\n"
-"8\n"
+"05070200.xhp\n"
+"par_id3145138\n"
+"2\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of graphics in the file. This statistic does not include graphics that were inserted as <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects. </caseinline></switchinline>"
+msgid "<ahelp hid=\".uno:AlignHorizontalCenter\">Horizontally centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the horizontal center of the page.</ahelp>"
msgstr ""
-#: 01100400.xhp
+#: 05070200.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3147618\n"
-"9\n"
+"05070200.xhp\n"
+"par_id3144336\n"
+"3\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of OLE Objects: </caseinline></switchinline>"
+msgid "The vertical position of the selected objects is not affected by this command.<embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
msgstr ""
-#: 01100400.xhp
+#: 05070300.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3149820\n"
-"10\n"
+"05070300.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of <link href=\"text/shared/00/00000005.xhp#ole\" name=\"OLE\">OLE</link> objects in the file, including tables and graphics that were inserted as OLE objects. </caseinline></switchinline>"
+msgid "Align Right"
+msgstr "Rreshto djathtas"
+
+#: 05070300.xhp
+msgctxt ""
+"05070300.xhp\n"
+"hd_id3153383\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05070300.xhp\" name=\"Align Right\">Align Right</link>"
msgstr ""
-#: 01100400.xhp
+#: 05070300.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3153665\n"
-"11\n"
+"05070300.xhp\n"
+"par_id3151264\n"
+"2\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Paragraphs: </caseinline></switchinline>"
+msgid "<ahelp hid=\".uno:AlignRight\">Aligns the right edges of the selected objects. If only one object is selected in Impress or Draw, the right edge of the object is aligned to the right page margin.</ahelp>"
msgstr ""
-#: 01100400.xhp
+#: 05070300.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3156156\n"
-"12\n"
+"05070300.xhp\n"
+"par_id3144336\n"
+"3\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of paragraphs (including blank paragraphs) in the file. </caseinline></switchinline>"
+msgid "Objects are aligned to the right edge of the rightmost object in the selection."
msgstr ""
-#: 01100400.xhp
+#: 05070400.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3155261\n"
-"13\n"
+"05070400.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Words: </caseinline></switchinline>"
+msgid "Align Top"
+msgstr "Rreshto në Majë"
+
+#: 05070400.xhp
+msgctxt ""
+"05070400.xhp\n"
+"hd_id3160463\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05070400.xhp\" name=\"Align Top\">Align Top</link>"
msgstr ""
-#: 01100400.xhp
+#: 05070400.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3147402\n"
-"14\n"
+"05070400.xhp\n"
+"par_id3154613\n"
+"2\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of words (including words consisting of a single character) in the file. </caseinline></switchinline>"
+msgid "<ahelp hid=\".uno:AlignTop\">Vertically aligns the top edges of the selected objects. If only one object is selected in Draw or Impress, the top edge of the object is aligned to the upper page margin.</ahelp>"
msgstr ""
-#: 01100400.xhp
+#: 05070400.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3150466\n"
-"15\n"
+"05070400.xhp\n"
+"par_id3154230\n"
+"3\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Characters: </caseinline></switchinline>"
+msgid "Objects are aligned to the top edge of the topmost object in the selection. <embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
msgstr ""
-#: 01100400.xhp
+#: 05070500.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3149294\n"
-"16\n"
+"05070500.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of characters (including spaces) in the file. Non-printable characters are not included. </caseinline></switchinline>"
+msgid "Align Vertical Center"
+msgstr "Rreshto vertikalisht në qendër"
+
+#: 05070500.xhp
+msgctxt ""
+"05070500.xhp\n"
+"hd_id3152876\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05070500.xhp\" name=\"Align Vertical Center\">Align Vertical Center</link>"
msgstr ""
-#: 01100400.xhp
+#: 05070500.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3148947\n"
-"32\n"
+"05070500.xhp\n"
+"par_id3160463\n"
+"2\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of Lines: </caseinline></switchinline>"
+msgid "<ahelp hid=\".uno:AlignVerticalCenter\">Vertically centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the vertical center of the page.</ahelp>"
msgstr ""
-#: 01100400.xhp
+#: 05070600.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3149650\n"
-"33\n"
+"05070600.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Number of lines in the file. </caseinline></switchinline>"
+msgid "Align Bottom"
+msgstr "Rreshto poshtë"
+
+#: 05070600.xhp
+msgctxt ""
+"05070600.xhp\n"
+"hd_id3153383\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05070600.xhp\" name=\"Align Bottom\">Align Bottom</link>"
msgstr ""
-#: 01100400.xhp
+#: 05070600.xhp
msgctxt ""
-"01100400.xhp\n"
-"hd_id3153525\n"
-"34\n"
+"05070600.xhp\n"
+"par_id3154613\n"
+"2\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Update </caseinline></switchinline>"
+msgid "<ahelp hid=\".\">Vertically aligns the bottom edges of the selected objects. If only one object is selected in Draw or Impress, the bottom edge of the object is aligned to the lower page margin.</ahelp>"
msgstr ""
-#: 01100400.xhp
+#: 05070600.xhp
msgctxt ""
-"01100400.xhp\n"
-"par_id3148981\n"
-"35\n"
+"05070600.xhp\n"
+"par_id3151330\n"
+"4\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SW_PUSHBUTTON_TP_DOC_STAT_PB_PDATE\">Updates the statistics.</ahelp></caseinline></switchinline>"
+msgid "Objects are aligned to the bottom edge of the bottom most object in the selection. <embedvar href=\"text/shared/01/05070100.xhp#mehrfachselektion\"/>"
msgstr ""
-#: 05020400.xhp
+#: 05080000.xhp
msgctxt ""
-"05020400.xhp\n"
+"05080000.xhp\n"
"tit\n"
"help.text"
-msgid "Hyperlink"
-msgstr "Hiperlink"
+msgid "Alignment (Text Objects)"
+msgstr "Titulli, Tekst, 2 Objekte"
-#: 05020400.xhp
+#: 05080000.xhp
msgctxt ""
-"05020400.xhp\n"
-"bm_id3152895\n"
+"05080000.xhp\n"
+"bm_id3152942\n"
"help.text"
-msgid "<bookmark_value>formatting; hyperlinks</bookmark_value><bookmark_value>characters; hyperlinks</bookmark_value><bookmark_value>hyperlinks; character formats</bookmark_value><bookmark_value>text;hyperlinks</bookmark_value><bookmark_value>links; character formats</bookmark_value>"
+msgid "<bookmark_value>aligning; text objects</bookmark_value><bookmark_value>text objects; alignment</bookmark_value>"
msgstr ""
-#: 05020400.xhp
+#: 05080000.xhp
msgctxt ""
-"05020400.xhp\n"
-"hd_id3152895\n"
+"05080000.xhp\n"
+"hd_id3152942\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020400.xhp\" name=\"Hyperlink\">Hyperlink</link>"
+msgid "<link href=\"text/shared/01/05080000.xhp\" name=\"Alignment (Text Objects)\">Alignment (Text Objects)</link>"
msgstr ""
-#: 05020400.xhp
+#: 05080000.xhp
msgctxt ""
-"05020400.xhp\n"
-"par_id3149388\n"
+"05080000.xhp\n"
+"par_id3150278\n"
"2\n"
"help.text"
-msgid "<variable id=\"hyperlinktext\"><ahelp hid=\".uno:InsertHyperlinkDlg\">Assigns a new hyperlink or edits the selected hyperlink.</ahelp></variable> A hyperlink is a link to a file on the Internet or on your local system."
+msgid "Set the alignment options for the current selection."
msgstr ""
-#: 05020400.xhp
+#: 05080100.xhp
msgctxt ""
-"05020400.xhp\n"
-"par_id3145211\n"
-"38\n"
+"05080100.xhp\n"
+"tit\n"
"help.text"
-msgid "You can also assign or edit a named HTML anchor, or <link href=\"text/swriter/01/04040000.xhp\" name=\"Bookmark\">Bookmark</link>, that refers to a specific place in a document."
-msgstr ""
+msgid "Left"
+msgstr "Majtas"
-#: 05020400.xhp
+#: 05080100.xhp
msgctxt ""
-"05020400.xhp\n"
-"hd_id3147243\n"
-"12\n"
+"05080100.xhp\n"
+"hd_id3154349\n"
+"1\n"
"help.text"
-msgid "Hyperlink"
-msgstr "Hiperlink"
+msgid "<link href=\"text/shared/01/05080100.xhp\" name=\"Left\">Left</link>"
+msgstr ""
-#: 05020400.xhp
+#: 05080100.xhp
msgctxt ""
-"05020400.xhp\n"
-"par_id3156113\n"
-"13\n"
+"05080100.xhp\n"
+"par_id3150756\n"
+"2\n"
"help.text"
-msgid "Specify the properties for the hyperlink."
-msgstr "Shfrytëzo të dhënat për vetitë e dokumentit"
+msgid "<variable id=\"linkstext\"><ahelp hid=\".uno:LeftPara\" visibility=\"visible\">Aligns the selected paragraph(s) to the left page margin.</ahelp></variable>"
+msgstr ""
-#: 05020400.xhp
+#: 05080200.xhp
msgctxt ""
-"05020400.xhp\n"
-"hd_id3166410\n"
-"14\n"
+"05080200.xhp\n"
+"tit\n"
"help.text"
-msgid "URL"
-msgstr "URL"
+msgid "Right"
+msgstr "Djathtas"
-#: 05020400.xhp
+#: 05080200.xhp
msgctxt ""
-"05020400.xhp\n"
-"par_id3153332\n"
-"15\n"
+"05080200.xhp\n"
+"hd_id3160463\n"
+"1\n"
"help.text"
-msgid "<variable id=\"texturl\"><ahelp hid=\"modules/swriter/ui/charurlpage/urled\">Enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> for the file that you want to open when you click the hyperlink.</ahelp> If you do not specify a target frame, the file opens in the current document or frame.</variable>"
+msgid "<link href=\"text/shared/01/05080200.xhp\" name=\"Right\">Right</link>"
msgstr ""
-#: 05020400.xhp
+#: 05080200.xhp
msgctxt ""
-"05020400.xhp\n"
-"hd_id3153716\n"
-"16\n"
+"05080200.xhp\n"
+"par_id3144750\n"
+"2\n"
"help.text"
-msgid "Browse"
-msgstr "Shfleto..."
+msgid "<variable id=\"rechtstext\"><ahelp hid=\".uno:RightPara\" visibility=\"visible\">Aligns the selected paragraph(s) to the right page margin.</ahelp></variable>"
+msgstr ""
-#: 05020400.xhp
+#: 05080300.xhp
msgctxt ""
-"05020400.xhp\n"
-"par_id3157910\n"
-"17\n"
+"05080300.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/urlpb\">Locate the file that you want to link to, and then click <emph>Open</emph>.</ahelp>"
-msgstr ""
+msgid "Center"
+msgstr "Qendër"
-#: 05020400.xhp
+#: 05080300.xhp
msgctxt ""
-"05020400.xhp\n"
-"hd_id3156152\n"
-"18\n"
+"05080300.xhp\n"
+"hd_id3153514\n"
+"1\n"
"help.text"
-msgid "Reference"
-msgstr "Referencë"
+msgid "<link href=\"text/shared/01/05080300.xhp\" name=\"Center\">Center</link>"
+msgstr ""
-#: 05020400.xhp
+#: 05080300.xhp
msgctxt ""
-"05020400.xhp\n"
-"par_id3155450\n"
-"19\n"
+"05080300.xhp\n"
+"par_id3152876\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/texted\">Enter the text that you want to display for the hyperlink.</ahelp>"
+msgid "<variable id=\"zentrierttext\"><ahelp hid=\".uno:CenterPara\" visibility=\"visible\">Centers the selected paragraph(s) on the page.</ahelp></variable>"
msgstr ""
-#: 05020400.xhp
+#: 05080400.xhp
msgctxt ""
-"05020400.xhp\n"
-"hd_id3158430\n"
-"28\n"
+"05080400.xhp\n"
+"tit\n"
"help.text"
-msgid "Events"
-msgstr "Ngjarjet"
+msgid "Justify"
+msgstr "Rrafsho në të dy anët"
-#: 05020400.xhp
+#: 05080400.xhp
msgctxt ""
-"05020400.xhp\n"
-"par_id3153257\n"
-"29\n"
+"05080400.xhp\n"
+"hd_id3152937\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/eventpb\">Specify an event that triggers when you click the hyperlink.</ahelp>"
+msgid "<link href=\"text/shared/01/05080400.xhp\" name=\"Justify\">Justify</link>"
msgstr ""
-#: 05020400.xhp
+#: 05080400.xhp
msgctxt ""
-"05020400.xhp\n"
-"hd_id3153348\n"
-"30\n"
+"05080400.xhp\n"
+"par_id3146856\n"
+"2\n"
"help.text"
-msgid "Name"
-msgstr "Emri"
+msgid "<variable id=\"blocktext\"><ahelp hid=\".uno:JustifyPara\">Aligns the selected paragraph(s) to the left and the right page margins. If you want, you can also specify the alignment options for the last line of a paragraph by choosing <emph>Format - Paragraph - Alignment</emph>.</ahelp></variable>"
+msgstr ""
-#: 05020400.xhp
+#: 05090000.xhp
msgctxt ""
-"05020400.xhp\n"
-"par_id3156023\n"
-"31\n"
+"05090000.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/nameed\">Enter a name for the hyperlink.</ahelp> $[officename] inserts a NAME tag in the hyperlink:"
-msgstr ""
+msgid "Font"
+msgstr "Fonti"
-#: 05020400.xhp
+#: 05090000.xhp
msgctxt ""
-"05020400.xhp\n"
-"par_id3148943\n"
-"34\n"
+"05090000.xhp\n"
+"bm_id3155271\n"
"help.text"
-msgid "<A HREF=\"http://www.example.com/\" NAME=\"Nametext\" TARGET=\"_blank\">Note</A>"
+msgid "<bookmark_value>fonts; text objects</bookmark_value><bookmark_value>text objects; fonts</bookmark_value>"
msgstr ""
-#: 05020400.xhp
+#: 05090000.xhp
msgctxt ""
-"05020400.xhp\n"
-"hd_id3155923\n"
-"20\n"
+"05090000.xhp\n"
+"hd_id3155271\n"
+"1\n"
"help.text"
-msgid "Frame"
-msgstr "Kornizë"
+msgid "<link href=\"text/shared/01/05090000.xhp\" name=\"Font\">Font</link>"
+msgstr ""
-#: 05020400.xhp
+#: 05090000.xhp
msgctxt ""
-"05020400.xhp\n"
-"par_id3147559\n"
-"21\n"
+"05090000.xhp\n"
+"par_id3153383\n"
+"2\n"
"help.text"
-msgid "<variable id=\"textframe\"><ahelp hid=\"modules/swriter/ui/charurlpage/targetfrmlb\">Enter the name of the frame that you want the linked file to open in, or select a predefined frame from the list.</ahelp> If you leave this box blank, the linked file opens in the current browser window.</variable>"
+msgid "Set the font options for the selected text."
msgstr ""
-#: 05020400.xhp
+#: 05100000.xhp
msgctxt ""
-"05020400.xhp\n"
-"hd_id3149656\n"
-"22\n"
+"05100000.xhp\n"
+"tit\n"
"help.text"
-msgid "Character Styles"
-msgstr "Stilet e karakterit"
+msgid "Size"
+msgstr "Madhësia"
-#: 05020400.xhp
+#: 05100000.xhp
msgctxt ""
-"05020400.xhp\n"
-"par_id3148664\n"
-"23\n"
+"05100000.xhp\n"
+"bm_id3153391\n"
"help.text"
-msgid "Specify the formatting options for the hyperlink."
+msgid "<bookmark_value>text; font sizes</bookmark_value><bookmark_value>font sizes; text</bookmark_value>"
msgstr ""
-#: 05020400.xhp
+#: 05100000.xhp
msgctxt ""
-"05020400.xhp\n"
-"hd_id3151056\n"
-"24\n"
+"05100000.xhp\n"
+"hd_id3153391\n"
+"1\n"
"help.text"
-msgid "Visited links"
-msgstr "Lindhjet e vizituara"
+msgid "<link href=\"text/shared/01/05100000.xhp\" name=\"Size\">Size</link>"
+msgstr ""
-#: 05020400.xhp
+#: 05100000.xhp
msgctxt ""
-"05020400.xhp\n"
-"par_id3150359\n"
-"25\n"
+"05100000.xhp\n"
+"par_id3146856\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/visitedlb\">Select a formatting style to use for visited links from the list. To add or modify a style in this list, close this dialog, and click the <emph>Styles and Formatting</emph> icon on the <emph>Formatting</emph> toolbar.</ahelp>"
+msgid "Set the font size for the selected text."
msgstr ""
-#: 05020400.xhp
+#: 05100100.xhp
msgctxt ""
-"05020400.xhp\n"
-"hd_id3154365\n"
-"26\n"
+"05100100.xhp\n"
+"tit\n"
"help.text"
-msgid "Unvisited links"
-msgstr "Lidhje të pavizituara"
+msgid "Merge"
+msgstr "Bashko"
-#: 05020400.xhp
+#: 05100100.xhp
msgctxt ""
-"05020400.xhp\n"
-"par_id3154216\n"
-"27\n"
+"05100100.xhp\n"
+"hd_id3154765\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/charurlpage/unvisitedlb\">Select a formatting style to use for unvisited links from the list. To add or modify a style in this list, close this dialog, and click the <emph>Styles and Formatting</emph> icon on the <emph>Formatting</emph> toolbar.</ahelp>"
+msgid "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge\">Merge</link>"
msgstr ""
-#: 05020400.xhp
+#: 05100100.xhp
msgctxt ""
-"05020400.xhp\n"
-"par_id3143231\n"
+"05100100.xhp\n"
+"par_id3147406\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/02/09070000.xhp\" name=\"Hyperlink dialog\">Hyperlink dialog</link>"
+msgid "<variable id=\"verbindentext\"><ahelp hid=\".\">Combines the contents of the selected table cells into a single cell.</ahelp></variable>"
msgstr ""
-#: 05020400.xhp
+#: 05100100.xhp
msgctxt ""
-"05020400.xhp\n"
-"par_id3152933\n"
+"05100100.xhp\n"
+"par_id3154351\n"
+"79\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"Assign macro\">Assign macro</link>"
+msgid "Choose <emph>Table - Merge Cells</emph>"
msgstr ""
-#: 05020400.xhp
+#: 05100100.xhp
msgctxt ""
-"05020400.xhp\n"
-"par_id3154630\n"
+"05100100.xhp\n"
+"par_id3154370\n"
+"80\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100500.xhp\" name=\"Target frame\">Target frame</link>"
+msgid "On the <emph>Table</emph> Bar, click"
msgstr ""
-#: 06040400.xhp
+#: 05100100.xhp
msgctxt ""
-"06040400.xhp\n"
-"tit\n"
+"05100100.xhp\n"
+"par_id3153996\n"
"help.text"
-msgid "Localized Options"
+msgid "<image id=\"img_id3154002\" src=\"cmd/sc_mergecells.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3154002\">icon</alt></image>"
msgstr ""
-#: 06040400.xhp
+#: 05100100.xhp
msgctxt ""
-"06040400.xhp\n"
-"bm_id3153899\n"
+"05100100.xhp\n"
+"par_id3150662\n"
+"81\n"
"help.text"
-msgid "<bookmark_value>quotes; custom</bookmark_value><bookmark_value>custom quotes</bookmark_value><bookmark_value>AutoCorrect function; quotes</bookmark_value><bookmark_value>replacing;ordinal numbers</bookmark_value><bookmark_value>ordinal numbers;replacing</bookmark_value>"
-msgstr ""
+msgid "Merge Cells"
+msgstr "Bashko qelizat"
-#: 06040400.xhp
+#: 05100100.xhp
msgctxt ""
-"06040400.xhp\n"
-"hd_id3153899\n"
-"15\n"
+"05100100.xhp\n"
+"par_id3153718\n"
+"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040400.xhp\" name=\"Localized Options\">Localized Options</link>"
+msgid "Merging cells can lead to calculation errors in formulas in the table."
msgstr ""
-#: 06040400.xhp
+#: 05100200.xhp
msgctxt ""
-"06040400.xhp\n"
-"par_id3149748\n"
-"16\n"
+"05100200.xhp\n"
+"tit\n"
"help.text"
-msgid "Specify the AutoCorrect options for quotation marks and for options that are specific to the language of the text."
-msgstr ""
+msgid "Split Cells"
+msgstr "Ndaj qelizat"
-#: 06040400.xhp
+#: 05100200.xhp
msgctxt ""
-"06040400.xhp\n"
-"par_id31537173\n"
+"05100200.xhp\n"
+"hd_id3154654\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to apply the replacements while you type [T], or when you modify existing text [M].</ahelp>"
+msgid "<link href=\"text/shared/01/05100200.xhp\" name=\"Split Cells\">Split Cells</link>"
msgstr ""
-#: 06040400.xhp
+#: 05100200.xhp
msgctxt ""
-"06040400.xhp\n"
-"hd_id3159300\n"
-"25\n"
+"05100200.xhp\n"
+"par_id3083451\n"
+"2\n"
"help.text"
-msgid "Add non breaking space before specific punctuation marks in French text"
+msgid "<variable id=\"teilentext\"><ahelp hid=\".uno:SplitCell\">Splits the cell or group of cells horizontally or vertically into the number of cells that you enter.</ahelp></variable>"
msgstr ""
-#: 06040400.xhp
+#: 05100200.xhp
msgctxt ""
-"06040400.xhp\n"
-"par_id3153173\n"
-"27\n"
+"05100200.xhp\n"
+"par_id3154024\n"
+"82\n"
"help.text"
-msgid "Inserts a non breaking space before \";\", \"!\", \"?\" and \":\" when the character language is set to French (France, Belgium, Luxembourg, Monaco, or Switzerland) and before \":\" only when the character language is set to French (Canada)."
+msgid "Choose <emph>Table - Split Cells</emph>"
msgstr ""
-#: 06040400.xhp
+#: 05100200.xhp
msgctxt ""
-"06040400.xhp\n"
-"hd_id3159400\n"
-"25\n"
+"05100200.xhp\n"
+"par_id3154042\n"
+"83\n"
"help.text"
-msgid "Format ordinal number suffixes (1st ... 1<sup>st</sup>)"
+msgid "On the <emph>Table</emph> Bar, click"
msgstr ""
-#: 06040400.xhp
+#: 05100200.xhp
msgctxt ""
-"06040400.xhp\n"
-"par_id3154173\n"
-"27\n"
+"05100200.xhp\n"
+"par_id3147270\n"
"help.text"
-msgid "Formats the text characters of ordinals, such as 1st, 2nd, or 3rd, as superscripts. For example, in English text, 1st will be converted to 1<sup>st</sup>."
+msgid "<image id=\"img_id3147275\" src=\"cmd/sc_splitcell.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3147275\">Icon</alt></image>"
msgstr ""
-#: 06040400.xhp
+#: 05100200.xhp
msgctxt ""
-"06040400.xhp\n"
-"hd_id3154682\n"
-"17\n"
+"05100200.xhp\n"
+"par_id3150616\n"
+"84\n"
"help.text"
-msgid "Single quotes / Double quotes"
-msgstr "Shigjetë e dyfishtë majtas"
+msgid "Split Cells"
+msgstr "Ndaj qelizat"
-#: 06040400.xhp
+#: 05100200.xhp
msgctxt ""
-"06040400.xhp\n"
-"par_id3152363\n"
-"18\n"
+"05100200.xhp\n"
+"hd_id3154558\n"
+"3\n"
"help.text"
-msgid "Specify the replacement characters to use for single or double quotation marks."
+msgid "Split cell into"
+msgstr "Ndaj qelizën në"
+
+#: 05100200.xhp
+msgctxt ""
+"05100200.xhp\n"
+"par_id3150021\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/splitcellsdialog/countnf\">Enter the number of rows or columns that you want to split the selected cell(s) into.</ahelp>"
msgstr ""
-#: 06040400.xhp
+#: 05100200.xhp
msgctxt ""
-"06040400.xhp\n"
-"hd_id3156553\n"
-"22\n"
+"05100200.xhp\n"
+"hd_id3145249\n"
+"5\n"
"help.text"
-msgid "Replace"
-msgstr "Zëvendëso"
+msgid "Direction"
+msgstr "Drejtim"
-#: 06040400.xhp
+#: 05100200.xhp
msgctxt ""
-"06040400.xhp\n"
-"par_id3155616\n"
-"23\n"
+"05100200.xhp\n"
+"hd_id3150568\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_QUOTE:CB_TYPO\">Automatically replaces the default system symbol for single quotation marks with the special character that you specify.</ahelp>"
+msgid "Horizontally"
+msgstr "Horizontalisht"
+
+#: 05100200.xhp
+msgctxt ""
+"05100200.xhp\n"
+"par_id3153927\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/splitcellsdialog/hori\">Splits the selected cell(s) into the number of rows that you specify in the <emph>Split cell into </emph>box.</ahelp>"
msgstr ""
-#: 06040400.xhp
+#: 05100200.xhp
msgctxt ""
-"06040400.xhp\n"
-"hd_id3153750\n"
+"05100200.xhp\n"
+"hd_id3147566\n"
"11\n"
"help.text"
-msgid "Start quote"
-msgstr "Numërimi 1 Fillimi"
+msgid "Into equal proportions"
+msgstr "Në pjesë të barabarta"
-#: 06040400.xhp
+#: 05100200.xhp
msgctxt ""
-"06040400.xhp\n"
-"par_id3152425\n"
+"05100200.xhp\n"
+"par_id3154638\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STARTQUOTE\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current opening quotation mark in your document when you choose <emph>Format - AutoCorrect - Apply</emph>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/splitcellsdialog/prop\">Splits cells into rows of equal height.</ahelp>"
msgstr ""
-#: 06040400.xhp
+#: 05100200.xhp
msgctxt ""
-"06040400.xhp\n"
-"hd_id3159233\n"
-"13\n"
+"05100200.xhp\n"
+"hd_id3150765\n"
+"9\n"
"help.text"
-msgid "End quote"
-msgstr "Numrimi 1 Fundi"
+msgid "Vertically"
+msgstr "Vertikalisht"
-#: 06040400.xhp
+#: 05100200.xhp
msgctxt ""
-"06040400.xhp\n"
-"par_id3147008\n"
-"14\n"
+"05100200.xhp\n"
+"par_id3145410\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_ENDQUOTE\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current closing quotation mark in your document when you choose <emph>Format - AutoCorrect - Apply</emph>.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/splitcellsdialog/vert\">Splits the selected cell(s) into the number of columns that you specify in the <emph>Split cell into </emph>box.</ahelp>"
msgstr ""
-#: 06040400.xhp
+#: 05100500.xhp
msgctxt ""
-"06040400.xhp\n"
-"hd_id3147089\n"
-"19\n"
+"05100500.xhp\n"
+"tit\n"
"help.text"
-msgid "Default"
-msgstr "Standarde"
+msgid "Top"
+msgstr "Lartë"
-#: 06040400.xhp
+#: 05100500.xhp
msgctxt ""
-"06040400.xhp\n"
-"par_id3166460\n"
-"20\n"
+"05100500.xhp\n"
+"hd_id3154765\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STD\">Resets the quotation marks to the default symbols.</ahelp>"
+msgid "<link href=\"text/shared/01/05100500.xhp\" name=\"Top\">Top</link>"
msgstr ""
-#: mediaplayer.xhp
+#: 05100500.xhp
msgctxt ""
-"mediaplayer.xhp\n"
+"05100500.xhp\n"
+"par_id3151390\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\".uno:CellVertTop\">Aligns the contents of the cell to the top edge of the cell.</ahelp>"
+msgstr ""
+
+#: 05100500.xhp
+msgctxt ""
+"05100500.xhp\n"
+"par_id3145671\n"
+"120\n"
+"help.text"
+msgid "<variable id=\"zelleoben\">In the context menu of a cell, choose <emph>Cell - Top</emph></variable>"
+msgstr ""
+
+#: 05100600.xhp
+msgctxt ""
+"05100600.xhp\n"
"tit\n"
"help.text"
-msgid "Media Player"
-msgstr "Media objekt"
+msgid "Center (vertical)"
+msgstr "Rreshtat vertikal"
-#: mediaplayer.xhp
+#: 05100600.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"bm_id8659321\n"
+"05100600.xhp\n"
+"hd_id3149874\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>Media Player window</bookmark_value>"
+msgid "<link href=\"text/shared/01/05100600.xhp\" name=\"Center (vertical)\">Center (vertical)</link>"
msgstr ""
-#: mediaplayer.xhp
+#: 05100600.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN10550\n"
+"05100600.xhp\n"
+"par_id3149048\n"
+"2\n"
"help.text"
-msgid "<variable id=\"mediaplayertitle\"><link href=\"text/shared/01/mediaplayer.xhp\">Media Player</link></variable>"
+msgid "<ahelp hid=\".\">Centers the contents of the cell between top and bottom of the cell.</ahelp>"
msgstr ""
-#: mediaplayer.xhp
+#: 05100600.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN10560\n"
+"05100600.xhp\n"
+"par_id3149525\n"
+"121\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the Media Player window where you can preview movie and sound files as well as insert these files into the current document.</ahelp>"
+msgid "<variable id=\"zellemitte\">In the context menu of a cell, choose <emph>Cell - Center</emph></variable>"
msgstr ""
-#: mediaplayer.xhp
+#: 05100700.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN10577\n"
+"05100700.xhp\n"
+"tit\n"
"help.text"
-msgid "The Media Player supports many different media formats. You can also insert media files from the Media Player into your document."
+msgid "Bottom"
+msgstr "Poshtë"
+
+#: 05100700.xhp
+msgctxt ""
+"05100700.xhp\n"
+"hd_id3150249\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05100700.xhp\" name=\"Bottom\">Bottom</link>"
msgstr ""
-#: mediaplayer.xhp
+#: 05100700.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105EF\n"
+"05100700.xhp\n"
+"par_id3154764\n"
+"2\n"
"help.text"
-msgid "On Linux or Solaris systems, the Media Player requires the Java Media Framework API (JMF). Download and install the JMF files from http://java.sun.com/javase/technologies/desktop/media/jmf/index.jsp and add the path to the installed jmf.jar to the class path in the Options dialog box in %PRODUCTNAME - Java."
+msgid "<ahelp hid=\".uno:CellVertBottom\">Aligns the contents of the cell to the bottom edge of the cell.</ahelp>"
msgstr ""
-#: mediaplayer.xhp
+#: 05100700.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN1064F\n"
+"05100700.xhp\n"
+"par_id3149201\n"
+"122\n"
"help.text"
-msgid "On Windows systems, the Media Player uses DirectShow, which should be installed on your system by default."
+msgid "<variable id=\"zelleunten\">In the context menu of a cell, choose <emph>Cell - Bottom</emph></variable>"
msgstr ""
-#: mediaplayer.xhp
+#: 05110000.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN1057A\n"
+"05110000.xhp\n"
+"tit\n"
"help.text"
-msgid "Open"
-msgstr "Hape"
+msgid "Style"
+msgstr "Stili"
-#: mediaplayer.xhp
+#: 05110000.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN1057E\n"
+"05110000.xhp\n"
+"bm_id3147366\n"
"help.text"
-msgid "Opens a movie file or a sound file that you want to preview."
+msgid "<bookmark_value>text; font styles</bookmark_value><bookmark_value>fonts; styles</bookmark_value>"
msgstr ""
-#: mediaplayer.xhp
+#: 05110000.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN10581\n"
+"05110000.xhp\n"
+"hd_id3147366\n"
+"1\n"
"help.text"
-msgid "Apply"
-msgstr "Zbato"
+msgid "<link href=\"text/shared/01/05110000.xhp\" name=\"Style\">Style</link>"
+msgstr ""
-#: mediaplayer.xhp
+#: 05110000.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN10585\n"
+"05110000.xhp\n"
+"par_id3155620\n"
+"2\n"
"help.text"
-msgid "Inserts the current movie file or sound file as a media object into the current document."
+msgid "Use this command to quickly apply font styles to a text selection."
msgstr ""
-#: mediaplayer.xhp
+#: 05110000.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN10588\n"
+"05110000.xhp\n"
+"par_id3153255\n"
+"3\n"
"help.text"
-msgid "Play"
-msgstr "Luaje"
+msgid "If you place the cursor in a word and do not make a selection, the font style is applied to the entire word. If the cursor is not inside a word, and no text is selected, then the font style is applied to the text that you type."
+msgstr ""
-#: mediaplayer.xhp
+#: 05110100.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN1058C\n"
+"05110100.xhp\n"
+"tit\n"
"help.text"
-msgid "Plays the current file."
-msgstr "Format i panjohur i fajllit!"
+msgid "Bold"
+msgstr "Me të trasha"
-#: mediaplayer.xhp
+#: 05110100.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN1058F\n"
+"05110100.xhp\n"
+"bm_id3150278\n"
"help.text"
-msgid "Pause"
-msgstr "Pauzo..."
+msgid "<bookmark_value>text; bold</bookmark_value><bookmark_value>bold; text</bookmark_value><bookmark_value>characters; bold</bookmark_value>"
+msgstr ""
-#: mediaplayer.xhp
+#: 05110100.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN10593\n"
+"05110100.xhp\n"
+"hd_id3150278\n"
+"1\n"
"help.text"
-msgid "Pauses or resumes the playback of the current file."
+msgid "<link href=\"text/shared/01/05110100.xhp\" name=\"Bold\">Bold</link>"
msgstr ""
-#: mediaplayer.xhp
+#: 05110100.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN10596\n"
+"05110100.xhp\n"
+"par_id3153089\n"
+"2\n"
"help.text"
-msgid "Stop"
-msgstr "Ndal"
+msgid "<ahelp hid=\".uno:Bold\">Makes the selected text bold. If the cursor is in a word, the entire word is made bold. If the selection or word is already bold, the formatting is removed.</ahelp>"
+msgstr ""
-#: mediaplayer.xhp
+#: 05110100.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN1059A\n"
+"05110100.xhp\n"
+"par_id3153255\n"
+"3\n"
"help.text"
-msgid "Stops the playback of the current file."
+msgid "If the cursor is not inside a word, and no text is selected, then the font style is applied to the text that you type."
msgstr ""
-#: mediaplayer.xhp
+#: 05110200.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN1059D\n"
+"05110200.xhp\n"
+"tit\n"
"help.text"
-msgid "Repeat"
-msgstr "Përsërite"
+msgid "Italic"
+msgstr "Italike"
-#: mediaplayer.xhp
+#: 05110200.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105A1\n"
+"05110200.xhp\n"
+"bm_id3155182\n"
"help.text"
-msgid "Plays the file repeatedly."
-msgstr "Format i panjohur i fajllit!"
+msgid "<bookmark_value>text; italics</bookmark_value><bookmark_value>italic text</bookmark_value><bookmark_value>characters; italics</bookmark_value>"
+msgstr ""
-#: mediaplayer.xhp
+#: 05110200.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105A4\n"
+"05110200.xhp\n"
+"hd_id3155182\n"
+"1\n"
"help.text"
-msgid "Mute"
+msgid "<link href=\"text/shared/01/05110200.xhp\" name=\"Italic\">Italic</link>"
msgstr ""
-#: mediaplayer.xhp
+#: 05110200.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105A8\n"
+"05110200.xhp\n"
+"par_id3148882\n"
+"2\n"
"help.text"
-msgid "Turns sound off and on."
+msgid "<ahelp hid=\".uno:Italic\">Makes the selected text italic. If the cursor is in a word, the entire word is made italic. If the selection or word is already italic, the formatting is removed.</ahelp>"
msgstr ""
-#: mediaplayer.xhp
+#: 05110200.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105AB\n"
+"05110200.xhp\n"
+"par_id3156069\n"
+"3\n"
"help.text"
-msgid "Volume slider"
-msgstr "Grupi i Volumit:"
+msgid "If the cursor is not inside a word, and no text is selected, then the font style is applied to the text that you type."
+msgstr ""
-#: mediaplayer.xhp
+#: 05110300.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105AF\n"
+"05110300.xhp\n"
+"tit\n"
"help.text"
-msgid "Adjusts the volume."
-msgstr "Grupi i Volumit:"
+msgid "Underline"
+msgstr "Nënvizim"
-#: mediaplayer.xhp
+#: 05110300.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105B2\n"
+"05110300.xhp\n"
+"bm_id3150756\n"
"help.text"
-msgid "View"
-msgstr "Pamja"
+msgid "<bookmark_value>characters;underlining</bookmark_value><bookmark_value>underlining;characters</bookmark_value>"
+msgstr ""
-#: mediaplayer.xhp
+#: 05110300.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105B6\n"
+"05110300.xhp\n"
+"hd_id3150756\n"
+"1\n"
"help.text"
-msgid "Adjusts the size of the movie playback."
+msgid "<link href=\"text/shared/01/05110300.xhp\" name=\"Underline\">Underline</link>"
msgstr ""
-#: mediaplayer.xhp
+#: 05110300.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105B9\n"
+"05110300.xhp\n"
+"par_id3149031\n"
+"2\n"
"help.text"
-msgid "Position slider"
-msgstr "<Pozicion tjetër>"
+msgid "<ahelp hid=\".uno:Underline\" visibility=\"visible\">Underlines or removes underlining from the selected text.</ahelp>"
+msgstr ""
-#: mediaplayer.xhp
+#: 05110300.xhp
msgctxt ""
-"mediaplayer.xhp\n"
-"par_idN105BD\n"
+"05110300.xhp\n"
+"par_id3152821\n"
+"3\n"
"help.text"
-msgid "Moves to a different position in the file."
+msgid "If the cursor is not in a word, the new text that you enter is underlined."
msgstr ""
-#: 05190100.xhp
+#: 05110300.xhp
msgctxt ""
-"05190100.xhp\n"
+"05110300.xhp\n"
+"par_id3154894\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\".uno:UnderlineDouble\" visibility=\"hidden\">Underlines the selected text with two lines.</ahelp>"
+msgstr ""
+
+#: 05110400.xhp
+msgctxt ""
+"05110400.xhp\n"
"tit\n"
"help.text"
-msgid "Description"
-msgstr "Përshkrimi"
+msgid "Strikethrough"
+msgstr "Vizuar nëpërmes"
-#: 05190100.xhp
+#: 05110400.xhp
msgctxt ""
-"05190100.xhp\n"
-"bm_id3147366\n"
+"05110400.xhp\n"
+"bm_id3152942\n"
"help.text"
-msgid "<bookmark_value>objects;titles and descriptions</bookmark_value> <bookmark_value>descriptions for objects</bookmark_value> <bookmark_value>titles;objects</bookmark_value>"
+msgid "<bookmark_value>strikethrough;characters</bookmark_value>"
msgstr ""
-#: 05190100.xhp
+#: 05110400.xhp
msgctxt ""
-"05190100.xhp\n"
-"hd_id1115756\n"
+"05110400.xhp\n"
+"hd_id3152942\n"
+"1\n"
"help.text"
-msgid "Description"
-msgstr "Përshkrimi"
+msgid "<link href=\"text/shared/01/05110400.xhp\" name=\"Strikethrough\">Strikethrough</link>"
+msgstr ""
-#: 05190100.xhp
+#: 05110400.xhp
msgctxt ""
-"05190100.xhp\n"
-"par_id3140354\n"
+"05110400.xhp\n"
+"par_id3153391\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Assigns a title and a description to the selected object. These are accessible for accessibility tools and as alternative tags when you export the document.</ahelp>"
+msgid "<ahelp hid=\".uno:Strikeout\" visibility=\"visible\">Draws a line through the selected text, or if the cursor is in a word, the entire word.</ahelp>"
msgstr ""
-#: 05190100.xhp
+#: 05110500.xhp
msgctxt ""
-"05190100.xhp\n"
-"hd_id2576982\n"
+"05110500.xhp\n"
+"tit\n"
"help.text"
-msgid "Title"
-msgstr "Titulli"
+msgid "Shadows"
+msgstr "Hije"
-#: 05190100.xhp
+#: 05110500.xhp
msgctxt ""
-"05190100.xhp\n"
-"par_id1283608\n"
+"05110500.xhp\n"
+"bm_id3154545\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter a title text. This short name is visible as an alternative tag in HTML format. Accessibility tools can read this text.</ahelp>"
+msgid "<bookmark_value>text; shadowed</bookmark_value><bookmark_value>characters; shadowed</bookmark_value><bookmark_value>shadows;characters, using context menu</bookmark_value>"
msgstr ""
-#: 05190100.xhp
+#: 05110500.xhp
msgctxt ""
-"05190100.xhp\n"
-"hd_id8173467\n"
+"05110500.xhp\n"
+"hd_id3154545\n"
+"1\n"
"help.text"
-msgid "Description"
-msgstr "Përshkrimi"
+msgid "<link href=\"text/shared/01/05110500.xhp\" name=\"Shadows\">Shadows</link>"
+msgstr ""
-#: 05190100.xhp
+#: 05110500.xhp
msgctxt ""
-"05190100.xhp\n"
-"par_id693685\n"
+"05110500.xhp\n"
+"par_id3151299\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter a description text. The long description text can be entered to describe a complex object or group of objects to users with screen reader software. The description is visible as an alternative tag for accessibility tools.</ahelp>"
+msgid "<ahelp hid=\".uno:Shadowed\">Adds a shadow to the selected text, or if the cursor is in a word, to the entire word.</ahelp>"
msgstr ""
-#: 05260200.xhp
+#: 05110600m.xhp
msgctxt ""
-"05260200.xhp\n"
+"05110600m.xhp\n"
"tit\n"
"help.text"
-msgid "To Paragraph"
-msgstr "Tek paragrafi"
+msgid "Space Rows Equally"
+msgstr "Hapësira për rreshta e barabartë"
-#: 05260200.xhp
+#: 05110600m.xhp
msgctxt ""
-"05260200.xhp\n"
-"hd_id3151260\n"
+"05110600m.xhp\n"
+"hd_id3149871\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05260200.xhp\" name=\"To Paragraph\">To Paragraph</link>"
+msgid "<link href=\"text/shared/01/05110600m.xhp\" name=\"Space Equally\">Space Rows Equally</link>"
msgstr ""
-#: 05260200.xhp
+#: 05110600m.xhp
msgctxt ""
-"05260200.xhp\n"
-"par_id3155271\n"
+"05110600m.xhp\n"
+"par_id3154766\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:SetAnchorToPara\" visibility=\"visible\">Anchors the selected item to the current paragraph.</ahelp>"
+msgid "<variable id=\"verteilentext\"><ahelp hid=\".uno:DistributeRows\">Adjusts the height of the selected rows to match the height of the tallest row in the selection.</ahelp></variable>"
msgstr ""
-#: 05260200.xhp
+#: 05110600m.xhp
msgctxt ""
-"05260200.xhp\n"
-"par_id3154926\n"
-"3\n"
+"05110600m.xhp\n"
+"par_id3153569\n"
+"92\n"
"help.text"
-msgid "The anchor icon is displayed at the left page margin at the beginning of the paragraph."
+msgid "Choose <emph>Table - Autofit - Distribute Rows Equally</emph>"
msgstr ""
-#: 01070001.xhp
+#: 05110600m.xhp
msgctxt ""
-"01070001.xhp\n"
-"tit\n"
+"05110600m.xhp\n"
+"par_id3153755\n"
+"93\n"
"help.text"
-msgid "Export"
-msgstr "Eksporto"
+msgid "Open <emph>Optimize</emph> toolbar from <emph>Table</emph> Bar, click"
+msgstr ""
-#: 01070001.xhp
+#: 05110600m.xhp
msgctxt ""
-"01070001.xhp\n"
-"bm_id3153383\n"
+"05110600m.xhp\n"
+"par_id3145297\n"
"help.text"
-msgid "<bookmark_value>documents; exporting</bookmark_value><bookmark_value>converting; $[officename] documents</bookmark_value><bookmark_value>exporting;to foreign formats</bookmark_value>"
+msgid "<image id=\"img_id3155994\" src=\"cmd/sc_distributerows.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3155994\">Icon</alt></image>"
msgstr ""
-#: 01070001.xhp
+#: 05110600m.xhp
msgctxt ""
-"01070001.xhp\n"
-"hd_id3153383\n"
-"13\n"
+"05110600m.xhp\n"
+"par_id3153206\n"
+"94\n"
"help.text"
-msgid "<link href=\"text/shared/01/01070001.xhp\" name=\"Export\">Export</link>"
-msgstr ""
+msgid "Distribute Rows Equally"
+msgstr "Shprëndaj rreshtat barabartë"
-#: 01070001.xhp
+#: 05110700.xhp
msgctxt ""
-"01070001.xhp\n"
-"par_id3149355\n"
+"05110700.xhp\n"
+"tit\n"
+"help.text"
+msgid "Superscript"
+msgstr "Mbishkrim"
+
+#: 05110700.xhp
+msgctxt ""
+"05110700.xhp\n"
+"hd_id3083278\n"
"1\n"
"help.text"
-msgid "<variable id=\"exportieren\"><ahelp hid=\".uno:ExportTo\">Saves the current document with a different name and format to a location that you specify.</ahelp></variable>"
+msgid "<link href=\"text/shared/01/05110700.xhp\" name=\"Superscript\">Superscript</link>"
msgstr ""
-#: 01070001.xhp
+#: 05110700.xhp
msgctxt ""
-"01070001.xhp\n"
-"par_id3150710\n"
+"05110700.xhp\n"
+"par_id3152937\n"
"2\n"
"help.text"
-msgid "The following sections describe the <emph>$[officename] Export</emph> dialog box. To activate the <emph>$[officename] Open</emph> and <emph>Save</emph> dialog boxes, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"$[officename] - General\">$[officename] - General</link></emph>, and then select the <emph>Use $[officename] dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
+msgid "<ahelp hid=\".uno:SuperScript\">Reduces the font size of the selected text and raises the text above the baseline.</ahelp>"
msgstr ""
-#: 01070001.xhp
+#: 05110800.xhp
msgctxt ""
-"01070001.xhp\n"
-"hd_id3150693\n"
-"4\n"
+"05110800.xhp\n"
+"tit\n"
"help.text"
-msgid "Up One Level"
-msgstr "Një nivel më lartë"
+msgid "Subscript"
+msgstr "Nënshkrim"
-#: 01070001.xhp
+#: 05110800.xhp
msgctxt ""
-"01070001.xhp\n"
-"hd_id3153312\n"
-"5\n"
+"05110800.xhp\n"
+"hd_id3150278\n"
+"1\n"
"help.text"
-msgid "Create New Directory"
-msgstr "Krijo një Folder të ri"
+msgid "<link href=\"text/shared/01/05110800.xhp\" name=\"Subscript\">Subscript</link>"
+msgstr ""
-#: 01070001.xhp
+#: 05110800.xhp
msgctxt ""
-"01070001.xhp\n"
-"hd_id3155535\n"
-"6\n"
+"05110800.xhp\n"
+"par_id3152790\n"
+"2\n"
"help.text"
-msgid "Default Directory"
-msgstr "Folderi standard"
+msgid "<ahelp hid=\".uno:SubScript\">Reduces the font size of the selected text and lowers the text below the baseline.</ahelp>"
+msgstr ""
-#: 01070001.xhp
+#: 05120000.xhp
msgctxt ""
-"01070001.xhp\n"
-"hd_id3154317\n"
-"7\n"
+"05120000.xhp\n"
+"tit\n"
"help.text"
-msgid "Display area"
-msgstr "Zona e fundfaqes"
+msgid "Line Spacing"
+msgstr "Hapësira në mes linjave"
-#: 01070001.xhp
+#: 05120000.xhp
msgctxt ""
-"01070001.xhp\n"
-"hd_id3147209\n"
-"8\n"
+"05120000.xhp\n"
+"bm_id3152876\n"
"help.text"
-msgid "File Name"
-msgstr "Emri i Fajlit"
+msgid "<bookmark_value>line spacing; context menu in paragraphs</bookmark_value><bookmark_value>text; line spacing</bookmark_value>"
+msgstr ""
-#: 01070001.xhp
+#: 05120000.xhp
msgctxt ""
-"01070001.xhp\n"
-"hd_id3152996\n"
-"9\n"
+"05120000.xhp\n"
+"hd_id3152876\n"
+"1\n"
"help.text"
-msgid "File Type"
-msgstr "Lloji i fajllit"
+msgid "<link href=\"text/shared/01/05120000.xhp\" name=\"Line Spacing\">Line Spacing</link>"
+msgstr ""
-#: 01070001.xhp
+#: 05120000.xhp
msgctxt ""
-"01070001.xhp\n"
-"hd_id3148539\n"
-"10\n"
+"05120000.xhp\n"
+"par_id3153514\n"
+"2\n"
"help.text"
-msgid "Export"
-msgstr "Eksporto"
+msgid "Specify the amount of space to leave between lines of text in a paragraph."
+msgstr ""
-#: 06040600.xhp
+#: 05120000.xhp
msgctxt ""
-"06040600.xhp\n"
+"05120000.xhp\n"
+"par_id3155364\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Indents and Spacing\">Indents and Spacing</link>"
+msgstr ""
+
+#: 05120100.xhp
+msgctxt ""
+"05120100.xhp\n"
"tit\n"
"help.text"
-msgid "Word Completion"
-msgstr "Zgjedh fjalën"
+msgid "Single Line"
+msgstr "Hapësirë me vetëm një rresht"
-#: 06040600.xhp
+#: 05120100.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3148882\n"
-"92\n"
+"05120100.xhp\n"
+"hd_id3154545\n"
+"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040600.xhp\" name=\"Word Completion\">Word Completion</link>"
+msgid "<link href=\"text/shared/01/05120100.xhp\" name=\"Single Line\">Single Line</link>"
msgstr ""
-#: 06040600.xhp
+#: 05120100.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3153624\n"
-"93\n"
+"05120100.xhp\n"
+"par_id3154794\n"
+"2\n"
"help.text"
-msgid "Set the options for completing frequently occurring words while you type."
+msgid "<ahelp hid=\".uno:SpacePara1\" visibility=\"visible\">Applies single line spacing to the current paragraph. This is the default setting.</ahelp>"
msgstr ""
-#: 06040600.xhp
+#: 05120200.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3154514\n"
-"94\n"
+"05120200.xhp\n"
+"tit\n"
"help.text"
-msgid "Enable word completion"
-msgstr "Tek fjala djathtas"
+msgid "1.5 Lines"
+msgstr "1.5 Rreshta"
-#: 06040600.xhp
+#: 05120200.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3156153\n"
-"95\n"
+"05120200.xhp\n"
+"hd_id3152459\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_ACTIV\">Stores frequently used words, and automatically completes a word after you type three letters that match the first three letters of a stored word.</ahelp>"
+msgid "<link href=\"text/shared/01/05120200.xhp\" name=\"1.5 Lines\">1.5 Lines</link>"
msgstr ""
-#: 06040600.xhp
+#: 05120200.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3150978\n"
-"100\n"
+"05120200.xhp\n"
+"par_id3146807\n"
+"2\n"
"help.text"
-msgid "Append space"
-msgstr "Hapësirë e barabartë"
+msgid "<ahelp hid=\".uno:SpacePara15\">Sets the line spacing of the current paragraph to one and half lines.</ahelp>"
+msgstr ""
-#: 06040600.xhp
+#: 05120300.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3153700\n"
-"101\n"
+"05120300.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR_CHECKBOX_RID_OFAPAGE_AUTOCOMPLETE_OPTIONS_CB_APPEND_SPACE\">If you do not add punctuation after the word, $[officename] adds a space.</ahelp> The space is added as soon as you begin typing the next word."
-msgstr ""
+msgid "Double (Line)"
+msgstr "Stili i linjës"
-#: 06040600.xhp
+#: 05120300.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3150771\n"
-"102\n"
+"05120300.xhp\n"
+"hd_id3083278\n"
+"1\n"
"help.text"
-msgid "Show as tip"
-msgstr "Eksporto si PDF..."
+msgid "<link href=\"text/shared/01/05120300.xhp\" name=\"Double (Line)\">Double (Line)</link>"
+msgstr ""
-#: 06040600.xhp
+#: 05120300.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3149819\n"
-"103\n"
+"05120300.xhp\n"
+"par_id3149783\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_AS_TIP\">Displays the completed word as a Help Tip.</ahelp>"
+msgid "<ahelp hid=\".uno:SpacePara2\">Sets the line spacing of the current paragraph to two lines.</ahelp>"
msgstr ""
-#: 06040600.xhp
+#: 05120600.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3154046\n"
-"96\n"
+"05120600.xhp\n"
+"tit\n"
"help.text"
-msgid "Collect words"
-msgstr "Numri i Fjalëve:"
+msgid "Space Columns Equally"
+msgstr "Hapësira për kolona e barabartë"
-#: 06040600.xhp
+#: 05120600.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3155449\n"
-"97\n"
+"05120600.xhp\n"
+"hd_id3153811\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_COLLECT\">Adds the frequently used words to a list. To remove a word from the Word Completion list, select the word, and then click<emph> Delete Entry</emph>.</ahelp>"
+msgid "<link href=\"text/shared/01/05120600.xhp\" name=\"Space Equally\">Space Columns Equally</link>"
msgstr ""
-#: 06040600.xhp
+#: 05120600.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3156193\n"
-"98\n"
+"05120600.xhp\n"
+"par_id3151389\n"
+"2\n"
"help.text"
-msgid "When closing a document, remove the words collected from it from the list"
+msgid "<variable id=\"verteilentext\"><ahelp hid=\".uno:DistributeColumns\">Adjusts the width of the selected columns to match the width of the widest column in the selection.</ahelp> The total width of the table cannot exceed the width of the page.</variable>"
msgstr ""
-#: 06040600.xhp
+#: 05120600.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3158430\n"
-"99\n"
+"05120600.xhp\n"
+"par_id3159219\n"
+"107\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR_CHECKBOX_RID_OFAPAGE_AUTOCOMPLETE_OPTIONS_CB_KEEP_LIST\">When enabled, the list gets cleared when closing the current document. When disabled, makes the current Word Completion list available to other documents after you close the current document. The list remains available until you exit %PRODUCTNAME.</ahelp>"
+msgid "Choose <emph>Table - Autofit - Distribute Columns Equally</emph>"
msgstr ""
-#: 06040600.xhp
+#: 05120600.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3149580\n"
-"104\n"
+"05120600.xhp\n"
+"par_id3156426\n"
+"108\n"
"help.text"
-msgid "Accept with"
-msgstr "Me vizim"
+msgid "Open <emph>Optimize</emph> toolbar from <emph>Table</emph> Bar, click"
+msgstr ""
-#: 06040600.xhp
+#: 05120600.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3153061\n"
-"105\n"
+"05120600.xhp\n"
+"par_id3145179\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:LISTBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:DCB_EXPAND_KEY\">Select the key that you want to use to accept the automatic word completion.</ahelp>"
+msgid "<image id=\"img_id3145186\" src=\"cmd/sc_distributecolumns.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3145186\">Icon</alt></image>"
msgstr ""
-#: 06040600.xhp
+#: 05120600.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_idN106F8\n"
+"05120600.xhp\n"
+"par_id3151364\n"
+"109\n"
"help.text"
-msgid "Press Esc to decline the word completion."
-msgstr ""
+msgid "Space Columns Equally"
+msgstr "Hapësira për kolona e barabartë"
-#: 06040600.xhp
+#: 05140100.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3151245\n"
-"84\n"
+"05140100.xhp\n"
+"tit\n"
"help.text"
-msgid "Min. word length"
-msgstr "Gjatësia minimale e fjalës"
+msgid "Create Style"
+msgstr "Krijo Stilin"
-#: 06040600.xhp
+#: 05140100.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3145609\n"
-"85\n"
+"05140100.xhp\n"
+"hd_id3152823\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:NUMERICFIELD:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:NF_MIN_WORDLEN\">Enter the minimum word length for a word to become eligible for the word completion feature.</ahelp>"
-msgstr ""
+msgid "Create Style"
+msgstr "Krijo Stilin"
-#: 06040600.xhp
+#: 05140100.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3154758\n"
-"86\n"
+"05140100.xhp\n"
+"hd_id3152790\n"
+"4\n"
"help.text"
-msgid "Max. entries"
-msgstr "AutoCapitalize hyrjet"
+msgid "Style name"
+msgstr "Emri i stilit"
-#: 06040600.xhp
+#: 05140100.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3159414\n"
-"87\n"
+"05140100.xhp\n"
+"par_id3155599\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:NUMERICFIELD:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:NF_MAX_ENTRIES\">Enter the maximum number of words that you want to store in the Word Completion list.</ahelp>"
+msgid "<ahelp hid=\"SFX2:COMBOBOX:DLG_NEW_STYLE_BY_EXAMPLE:LB_COL\" visibility=\"visible\">Enter a name for the new Style.</ahelp>"
msgstr ""
-#: 06040600.xhp
+#: 05140100.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3147265\n"
-"106\n"
+"05140100.xhp\n"
+"hd_id3154682\n"
+"6\n"
"help.text"
-msgid "Word Completion list"
-msgstr "Zgjedhni listën e adresave"
+msgid "List of Custom Styles"
+msgstr "Zëvendëso stilet e zakonshme"
-#: 06040600.xhp
+#: 05140100.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3152773\n"
-"107\n"
+"05140100.xhp\n"
+"par_id3154894\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:MULTILISTBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:LB_ENTRIES\">Lists the collected words. The list is valid until you close the current document. To make the list available to other documents in the current session, disable \"When closing a document, remove the words collected from it from the list\".</ahelp>"
+msgid "Lists the user-defined styles that are attached to the current document."
msgstr ""
-#: 06040600.xhp
+#: 05150101.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3156423\n"
-"112\n"
+"05150101.xhp\n"
+"tit\n"
"help.text"
-msgid "If the automatic spellcheck option is enabled, only the words that are recognized by the spellcheck are collected."
-msgstr ""
+msgid "Add AutoFormat"
+msgstr "Shto Autoformat"
-#: 06040600.xhp
+#: 05150101.xhp
msgctxt ""
-"06040600.xhp\n"
-"hd_id3144434\n"
-"110\n"
+"05150101.xhp\n"
+"hd_id3154841\n"
+"1\n"
"help.text"
-msgid "Delete Entry"
-msgstr "Fshij hyrjen e indeksit"
+msgid "Add AutoFormat"
+msgstr "Shto Autoformat"
-#: 06040600.xhp
+#: 05150101.xhp
msgctxt ""
-"06040600.xhp\n"
-"par_id3153351\n"
-"111\n"
+"05150101.xhp\n"
+"hd_id3154812\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:PB_ENTRIES\">Removes the selected word or words from the Word Completion list.</ahelp>"
+msgid "Name"
+msgstr "Emri"
+
+#: 05150101.xhp
+msgctxt ""
+"05150101.xhp\n"
+"par_id3153391\n"
+"3\n"
+"help.text"
+msgid "<ahelp visibility=\"visible\" hid=\"modules/swriter/ui/stringinput/edit\">Enter a name for the new AutoFormat, and then click<emph> OK</emph>.</ahelp>"
msgstr ""
-#: 01070000.xhp
+#: 05190000.xhp
msgctxt ""
-"01070000.xhp\n"
+"05190000.xhp\n"
"tit\n"
"help.text"
-msgid "Save As"
-msgstr "Ruaje si"
+msgid "Name"
+msgstr "Emri"
-#: 01070000.xhp
+#: 05190000.xhp
msgctxt ""
-"01070000.xhp\n"
-"bm_id3151260\n"
+"05190000.xhp\n"
+"bm_id3147366\n"
"help.text"
-msgid "<bookmark_value>saving as command; precautions</bookmark_value>"
+msgid "<bookmark_value>objects; naming</bookmark_value><bookmark_value>groups;naming</bookmark_value><bookmark_value>names;objects</bookmark_value>"
msgstr ""
-#: 01070000.xhp
+#: 05190000.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3151260\n"
+"05190000.xhp\n"
+"hd_id3147366\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link>"
-msgstr ""
+msgid "Name"
+msgstr "Emri"
-#: 01070000.xhp
+#: 05190000.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3146856\n"
+"05190000.xhp\n"
+"par_id3147588\n"
"2\n"
"help.text"
-msgid "<variable id=\"speichernuntertext\"><ahelp hid=\"HID_FILESAVE_DIALOG\">Saves the current document in a different location, or with a different file name or file type.</ahelp></variable>"
+msgid "<variable id=\"name\"><ahelp hid=\".uno:RenameObject\">Assigns a name to the selected object, so that you can quickly find the object in the Navigator.</ahelp></variable>"
msgstr ""
-#: 01070000.xhp
+#: 05190000.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3155934\n"
-"64\n"
+"05190000.xhp\n"
+"par_id3155364\n"
+"7\n"
"help.text"
-msgid "The following sections describe the <emph><item type=\"productname\">%PRODUCTNAME</item>Save as</emph> dialog. To activate the <emph><item type=\"productname\">%PRODUCTNAME</item>Open</emph> and <emph>Save</emph> dialog boxes, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\">%PRODUCTNAME- General</link></emph>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>The name is also displayed in the Status Bar when you select the object.</defaultinline></switchinline>"
msgstr ""
-#: 01070000.xhp
+#: 05190000.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3147654\n"
-"59\n"
+"05190000.xhp\n"
+"hd_id3156027\n"
+"3\n"
+"help.text"
+msgid "Name"
+msgstr "Emri"
+
+#: 05190000.xhp
+msgctxt ""
+"05190000.xhp\n"
+"par_id3152924\n"
+"4\n"
"help.text"
-msgid "To save a document as a template, use the command <emph>File - Templates - Save</emph>."
+msgid "<ahelp hid=\"HID_SD_NAMEDIALOG_OBJECT\">Enter a name for the selected object. The name will be visible in the Navigator.</ahelp>"
msgstr ""
-#: 01070000.xhp
+#: 05190100.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3146775\n"
-"19\n"
+"05190100.xhp\n"
+"tit\n"
"help.text"
-msgid "Up One Level"
-msgstr "Një nivel më lartë"
+msgid "Description"
+msgstr "Përshkrimi"
-#: 01070000.xhp
+#: 05190100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3153821\n"
-"20\n"
+"05190100.xhp\n"
+"bm_id3147366\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_LEVELUP\">Move up one directory in the directory hierarchy. Long-click to see the higher level directories.</ahelp>"
+msgid "<bookmark_value>objects;titles and descriptions</bookmark_value> <bookmark_value>descriptions for objects</bookmark_value> <bookmark_value>titles;objects</bookmark_value>"
msgstr ""
-#: 01070000.xhp
+#: 05190100.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3159157\n"
-"21\n"
+"05190100.xhp\n"
+"hd_id1115756\n"
"help.text"
-msgid "Create New Directory"
-msgstr "Krijo një Folder të ri"
+msgid "Description"
+msgstr "Përshkrimi"
-#: 01070000.xhp
+#: 05190100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3155583\n"
-"22\n"
+"05190100.xhp\n"
+"par_id3140354\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_CREATEDIRECTORY\">Creates a new directory.</ahelp>"
+msgid "<ahelp hid=\".\">Assigns a title and a description to the selected object. These are accessible for accessibility tools and as alternative tags when you export the document.</ahelp>"
msgstr ""
-#: 01070000.xhp
+#: 05190100.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3149578\n"
-"52\n"
+"05190100.xhp\n"
+"hd_id2576982\n"
"help.text"
-msgid "Default Directory"
-msgstr "Folderi standard"
+msgid "Title"
+msgstr "Titulli"
-#: 01070000.xhp
+#: 05190100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3149275\n"
-"53\n"
+"05190100.xhp\n"
+"par_id1283608\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_DEFAULTDIRECTORY\">Displays the files in the default user directory.</ahelp>"
+msgid "<ahelp hid=\".\">Enter a title text. This short name is visible as an alternative tag in HTML format. Accessibility tools can read this text.</ahelp>"
msgstr ""
-#: 01070000.xhp
+#: 05190100.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3155628\n"
-"29\n"
+"05190100.xhp\n"
+"hd_id8173467\n"
"help.text"
-msgid "Display area"
-msgstr "Zona e fundfaqes"
+msgid "Description"
+msgstr "Përshkrimi"
-#: 01070000.xhp
+#: 05190100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3149902\n"
-"30\n"
+"05190100.xhp\n"
+"par_id693685\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_FILEVIEW\">Displays the files and directories in the directory that you are in.</ahelp>"
+msgid "<ahelp hid=\".\">Enter a description text. The long description text can be entered to describe a complex object or group of objects to users with screen reader software. The description is visible as an alternative tag for accessibility tools.</ahelp>"
msgstr ""
-#: 01070000.xhp
+#: 05200000.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3154810\n"
-"37\n"
+"05200000.xhp\n"
+"tit\n"
"help.text"
-msgid "File name"
-msgstr "Emri i fajllit"
+msgid "Line"
+msgstr "Rreshti"
-#: 01070000.xhp
+#: 05200000.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3153626\n"
-"38\n"
+"05200000.xhp\n"
+"hd_id3154350\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_FILEURL\">Enter a file name or a path for the file. You can also enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link></ahelp>"
+msgid "<link href=\"text/shared/01/05200000.xhp\" name=\"Line\">Line</link>"
msgstr ""
-#: 01070000.xhp
+#: 05200000.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3149669\n"
-"39\n"
+"05200000.xhp\n"
+"par_id3147588\n"
+"2\n"
"help.text"
-msgid "File type"
-msgstr "Tipi i fajllit"
+msgid "<variable id=\"linietext\"><ahelp hid=\".uno:FormatLine\">Sets the formatting options for the selected line.</ahelp></variable>"
+msgstr ""
-#: 01070000.xhp
+#: 05200100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3156343\n"
-"40\n"
+"05200100.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_FILETYPE\">Select the file format for the document that you are saving.</ahelp> In the display area, only the documents with this file type are displayed. File types are described in <link href=\"text/shared/00/00000020.xhp\" name=\"Information on Import and Export Filters\">Information on Import and Export Filters</link>."
+msgid "Line"
+msgstr "Rreshti"
+
+#: 05200100.xhp
+msgctxt ""
+"05200100.xhp\n"
+"hd_id3148882\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05200100.xhp\" name=\"Line\">Line</link>"
msgstr ""
-#: 01070000.xhp
+#: 05200100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3145116\n"
-"41\n"
+"05200100.xhp\n"
+"par_id3153272\n"
+"2\n"
"help.text"
-msgid "Always save your document in a <item type=\"productname\">%PRODUCTNAME</item> file type before saving it to an external file type. When you export to an external file type, some formatting features may be lost."
+msgid "<ahelp hid=\"HID_LINE_LINE\">Set the formatting options for the selected line or the line that you want to draw. You can also add arrowheads to a line, or change chart symbols.</ahelp>"
msgstr ""
-#: 01070000.xhp
+#: 05200100.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3147228\n"
-"42\n"
+"05200100.xhp\n"
+"hd_id3147000\n"
+"3\n"
"help.text"
-msgid "Save"
-msgstr "Ruaje"
+msgid "Line properties"
+msgstr "Vetitë e kornizës"
-#: 01070000.xhp
+#: 05200100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3154068\n"
-"43\n"
+"05200100.xhp\n"
+"hd_id3148983\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_DOSAVE\">Saves the file.</ahelp>"
+msgid "Styles"
+msgstr "Stilet"
+
+#: 05200100.xhp
+msgctxt ""
+"05200100.xhp\n"
+"par_id3147143\n"
+"6\n"
+"help.text"
+msgid "<variable id=\"stiltext\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_LINE_STYLE\">Select the line style that you want to use.</ahelp></variable>"
msgstr ""
-#: 01070000.xhp
+#: 05200100.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3145744\n"
-"44\n"
+"05200100.xhp\n"
+"hd_id3150789\n"
+"7\n"
"help.text"
-msgid "Save with password"
-msgstr "Ruaje me fjalëkalim"
+msgid "Colors"
+msgstr "Ngjyrat"
-#: 01070000.xhp
+#: 05200100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3145152\n"
-"45\n"
+"05200100.xhp\n"
+"par_id3147226\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_SAVEWITHPASSWORD\">Protects the file with a <link href=\"text/shared/01/password_dlg.xhp\" name=\"password\">password</link> that must be entered before a user can open the file.</ahelp>"
+msgid "<variable id=\"farbetext\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_COLOR\">Select a color for the line.</ahelp></variable>"
msgstr ""
-#: 01070000.xhp
+#: 05200100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3152920\n"
-"65\n"
+"05200100.xhp\n"
+"hd_id3159234\n"
+"9\n"
"help.text"
-msgid "Only documents using the <item type=\"productname\">%PRODUCTNAME</item> XML-based format can be saved with a password."
+msgid "Widths"
+msgstr "Gjerësia"
+
+#: 05200100.xhp
+msgctxt ""
+"05200100.xhp\n"
+"par_id3150774\n"
+"10\n"
+"help.text"
+msgid "<variable id=\"breitetext\"><ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MTR_FLD_LINE_WIDTH\">Select the width for the line. You can append a measurement unit. A zero line width results in a hairline with a width of one pixel of the output medium.</ahelp></variable>"
msgstr ""
-#: 01070000.xhp
+#: 05200100.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3147502\n"
-"66\n"
+"05200100.xhp\n"
+"hd_id3153681\n"
+"11\n"
"help.text"
-msgid "Edit filter settings"
-msgstr "Rregullo përshtatshmërinë e filtrave"
+msgid "Transparency"
+msgstr "Transparencë"
-#: 01070000.xhp
+#: 05200100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3152883\n"
-"67\n"
+"05200100.xhp\n"
+"par_id3156346\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_CUSTOMIZEFILTER\">Allows you to set the spreadsheet saving options for some types of data files.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MTR_LINE_TRANSPARENT\">Enter the transparency of the line, where 100% corresponds to completely transparent and 0% to completely opaque. </ahelp>"
msgstr ""
-#: 01070000.xhp
+#: 05200100.xhp
msgctxt ""
-"01070000.xhp\n"
-"hd_id3154988\n"
-"47\n"
+"05200100.xhp\n"
+"par_id3152996\n"
+"33\n"
"help.text"
-msgid "Selection"
-msgstr "Selektimet"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The <emph>Line</emph> tab of the <emph>Data Series</emph> dialog is only available if you select an XY <emph>Chart type</emph>.</defaultinline></switchinline>"
+msgstr ""
-#: 01070000.xhp
+#: 05200100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3159125\n"
-"48\n"
+"05200100.xhp\n"
+"hd_id3153331\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_SELECTION\">Exports only the selected graphic objects in <item type=\"productname\">%PRODUCTNAME</item> Draw and Impress to another format. If this box is not checked, the entire document is exported.</ahelp>"
-msgstr ""
+msgid "Icon"
+msgstr "Ikonë"
-#: 01070000.xhp
+#: 05200100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3148577\n"
-"70\n"
+"05200100.xhp\n"
+"par_id3149955\n"
+"24\n"
"help.text"
-msgid "If you are exporting to any document file type, the entire document is exported."
+msgid "Set the options for the data point symbols in your chart."
msgstr ""
-#: 01070000.xhp
+#: 05200100.xhp
msgctxt ""
-"01070000.xhp\n"
-"par_id3146986\n"
+"05200100.xhp\n"
+"hd_id3158430\n"
+"25\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000207.xhp\" name=\"Export of Text Files\">Export of Text Files</link>"
+msgid "Select"
+msgstr "Zgjedh"
+
+#: 05200100.xhp
+msgctxt ""
+"05200100.xhp\n"
+"par_id3152944\n"
+"26\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:MENUBUTTON:RID_SVXPAGE_LINE:MB_SYMBOL_BITMAP\">Select the symbol style that you want to use in your chart.</ahelp> If you select <emph>Automatic</emph>, $[officename] uses the default symbols for the selected chart type."
msgstr ""
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"tit\n"
+"05200100.xhp\n"
+"hd_id3154381\n"
+"27\n"
"help.text"
-msgid "Material"
-msgstr "Material"
+msgid "Width"
+msgstr "Gjerësia"
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3154349\n"
-"1\n"
+"05200100.xhp\n"
+"par_id3150976\n"
+"28\n"
"help.text"
-msgid "<link href=\"text/shared/01/05350600.xhp\" name=\"Material\">Material</link>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MF_SYMBOL_WIDTH\">Enter a width for the symbol.</ahelp>"
msgstr ""
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"par_id3160463\n"
-"2\n"
+"05200100.xhp\n"
+"hd_id3149166\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\"SVX_IMAGEBUTTON_RID_SVXFLOAT_3D_BTN_MATERIAL\">Changes the coloring of the selected 3D object.</ahelp>"
+msgid "Height"
+msgstr "Lartësia"
+
+#: 05200100.xhp
+msgctxt ""
+"05200100.xhp\n"
+"par_id3155179\n"
+"30\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MF_SYMBOL_HEIGHT\">Enter a height for the symbol.</ahelp>"
msgstr ""
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3154682\n"
-"4\n"
+"05200100.xhp\n"
+"hd_id3147620\n"
+"31\n"
"help.text"
-msgid "Material"
-msgstr "Material"
+msgid "Keep ratio"
+msgstr "Mbaje përpjestimin"
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"par_id3152363\n"
-"29\n"
+"05200100.xhp\n"
+"par_id3156326\n"
+"32\n"
"help.text"
-msgid "Assigns a predefined color scheme or lets you create your own color scheme."
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_LINE:CB_SYMBOL_RATIO\">Maintains the proportions of the symbol when you enter a new height or width value.</ahelp>"
msgstr ""
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3154497\n"
-"9\n"
+"05200100.xhp\n"
+"hd_id3154579\n"
+"13\n"
"help.text"
-msgid "Favorites"
-msgstr "E preferuar"
+msgid "Arrow styles"
+msgstr "Stilet e grafikave"
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"par_id3153303\n"
-"10\n"
+"05200100.xhp\n"
+"par_id3161459\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_FAVORITES\">Select a predefined color scheme, or select <emph>User-defined</emph> to define a custom color scheme.</ahelp>"
+msgid "You can add arrowheads to one end, or both ends of the selected line. To add a custom arrow style to the list, select the arrow in your document, and then click on the <link href=\"text/shared/01/05200300.xhp\" name=\"Arrow Styles\"><emph>Arrow Styles</emph></link> tab of this dialog."
msgstr ""
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3093440\n"
+"05200100.xhp\n"
+"hd_id3147530\n"
+"15\n"
+"help.text"
+msgid "Style"
+msgstr "Stili"
+
+#: 05200100.xhp
+msgctxt ""
+"05200100.xhp\n"
+"par_id3146794\n"
"16\n"
"help.text"
-msgid "Object color"
-msgstr "Ngjyra e Objektit"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_END_STYLE\">Select the arrowhead that you want to apply to the selected line.</ahelp>"
+msgstr ""
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"par_id3157896\n"
+"05200100.xhp\n"
+"hd_id3149656\n"
"17\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_COLOR\">Select the color that you want to apply to the object.</ahelp>"
-msgstr ""
+msgid "Width"
+msgstr "Gjerësia"
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3147373\n"
+"05200100.xhp\n"
+"par_id3148755\n"
"18\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color Through the Color Dialog\">Select Color Through the Color Dialog</link>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_LINE:MTR_FLD_END_WIDTH\">Enter a width for the arrowhead.</ahelp>"
msgstr ""
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3147571\n"
+"05200100.xhp\n"
+"hd_id3154935\n"
"19\n"
"help.text"
-msgid "Illumination color"
-msgstr "Ngjyra e ndriçimit"
+msgid "Center"
+msgstr "Qendër"
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"par_id3159234\n"
+"05200100.xhp\n"
+"par_id3153526\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_EMISSION\">Select the color to illuminate the object.</ahelp>"
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_LINE:TSB_CENTER_END\">Places the center of the arrowhead(s) on the endpoint(s) of the selected line.</ahelp>"
msgstr ""
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3153748\n"
+"05200100.xhp\n"
+"hd_id3154072\n"
"21\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color Through the Color Dialog\">Select Color Through the Color Dialog</link>"
-msgstr ""
+msgid "Synchronize ends"
+msgstr "Rreshti përfundon"
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3154983\n"
+"05200100.xhp\n"
+"par_id3154365\n"
"22\n"
"help.text"
-msgid "Specular"
-msgstr "Përfytyrim"
-
-#: 05350600.xhp
-msgctxt ""
-"05350600.xhp\n"
-"par_id3147008\n"
-"23\n"
-"help.text"
-msgid "Sets the light reflection properties for the selected object."
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_LINE:CBX_SYNCHRONIZE\">Automatically updates both arrowhead settings when you enter a different width, select a different arrowhead style,or center an arrowhead.</ahelp>"
msgstr ""
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3150355\n"
-"24\n"
+"05200100.xhp\n"
+"hd_id3154580\n"
"help.text"
-msgid "Color"
-msgstr "Ngjyra"
+msgid "Corner and cap styles"
+msgstr ""
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"par_id3151111\n"
-"25\n"
+"05200100.xhp\n"
+"hd_id3154582\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_SPECULAR\">Select the color that you want the object to reflect.</ahelp>"
+msgid "Corner style"
msgstr ""
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3152996\n"
-"26\n"
+"05200100.xhp\n"
+"par_id3154583\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color Through the Color Dialog\">Select Color Through the Color Dialog</link>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_EDGE_STYLE\">Select the shape to be used at the corners of the line. In case of a small angle between lines, a mitered shape is replaced with a beveled shape.</ahelp>"
msgstr ""
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"hd_id3152909\n"
-"27\n"
+"05200100.xhp\n"
+"hd_id3154585\n"
"help.text"
-msgid "Intensity"
-msgstr "Fuqia"
+msgid "Cap style"
+msgstr ""
-#: 05350600.xhp
+#: 05200100.xhp
msgctxt ""
-"05350600.xhp\n"
-"par_id3159256\n"
-"28\n"
+"05200100.xhp\n"
+"par_id3154586\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXFLOAT_3D_MTR_MAT_SPECULAR_INTENSITY\">Enter the intensity of the specular effect.</ahelp>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINE:LB_CAP_STYLE\">Select the style of the line end caps. The caps are added to inner dashes as well.</ahelp>"
msgstr ""
-#: 05120100.xhp
+#: 05200200.xhp
msgctxt ""
-"05120100.xhp\n"
+"05200200.xhp\n"
"tit\n"
"help.text"
-msgid "Single Line"
-msgstr "Hapësirë me vetëm një rresht"
+msgid "Line Styles"
+msgstr "Stilet e grafikave"
-#: 05120100.xhp
+#: 05200200.xhp
msgctxt ""
-"05120100.xhp\n"
-"hd_id3154545\n"
+"05200200.xhp\n"
+"hd_id3148919\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05120100.xhp\" name=\"Single Line\">Single Line</link>"
+msgid "<link href=\"text/shared/01/05200200.xhp\" name=\"Line Styles\">Line Styles</link>"
msgstr ""
-#: 05120100.xhp
+#: 05200200.xhp
msgctxt ""
-"05120100.xhp\n"
-"par_id3154794\n"
+"05200200.xhp\n"
+"par_id3150146\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:SpacePara1\" visibility=\"visible\">Applies single line spacing to the current paragraph. This is the default setting.</ahelp>"
+msgid "<ahelp hid=\"HID_LINE_DEF\">Edit or create dashed or dotted line styles.</ahelp>"
msgstr ""
-#: gallery_files.xhp
+#: 05200200.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"tit\n"
+"05200200.xhp\n"
+"hd_id3147617\n"
+"3\n"
"help.text"
-msgid "Files"
-msgstr "Fajllat"
+msgid "Properties"
+msgstr "Vetitë"
-#: gallery_files.xhp
+#: 05200200.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"hd_id3150756\n"
-"1\n"
+"05200200.xhp\n"
+"hd_id3146873\n"
+"15\n"
"help.text"
-msgid "Files"
-msgstr "Fajllat"
+msgid "Line style"
+msgstr "Stili i linjës"
-#: gallery_files.xhp
+#: 05200200.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"par_id3153882\n"
-"2\n"
+"05200200.xhp\n"
+"par_id3146807\n"
+"16\n"
"help.text"
-msgid "<variable id=\"stargallerymanager\">Adds new files to the selected theme. </variable>"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_LINE_DEF_LB_LINESTYLES\">Select the style of line that you want to create.</ahelp>"
msgstr ""
-#: gallery_files.xhp
+#: 05200200.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"hd_id3153089\n"
+"05200200.xhp\n"
+"hd_id3149948\n"
"5\n"
"help.text"
-msgid "File Type"
-msgstr "Lloji i fajllit"
+msgid "Type"
+msgstr "Tipi"
-#: gallery_files.xhp
+#: 05200200.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"par_id3154497\n"
+"05200200.xhp\n"
+"par_id3149031\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SVX:COMBOBOX:RID_SVXTABPAGE_GALLERYTHEME_FILES:CBB_FILETYPE\">Select the type of file that you want to add.</ahelp>"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_LINE_DEF_LB_TYPE_2\">Select the combination of dashes and dots that you want.</ahelp>"
msgstr ""
-#: gallery_files.xhp
+#: 05200200.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"hd_id3153935\n"
+"05200200.xhp\n"
+"hd_id3148731\n"
"7\n"
"help.text"
-msgid "Files found"
-msgstr "' nuk u gjet."
+msgid "Number"
+msgstr "Numri"
-#: gallery_files.xhp
+#: 05200200.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"par_id3145829\n"
+"05200200.xhp\n"
+"par_id3155351\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX:MULTILISTBOX:RID_SVXTABPAGE_GALLERYTHEME_FILES:LBX_FOUND\">Lists the available files. Select the file(s) that you want to add, and then click <emph>Add</emph>. To add all of the files in the list, click <emph>Add All</emph>.</ahelp>"
+msgid "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXPAGE_LINE_DEF_NUM_FLD_2\">Enter the number of times that you want a dot or a dash to appear in a sequence.</ahelp>"
msgstr ""
-#: gallery_files.xhp
+#: 05200200.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"hd_id3154751\n"
+"05200200.xhp\n"
+"hd_id3154422\n"
"9\n"
"help.text"
-msgid "Find files"
-msgstr "Gjej Fajllat..."
+msgid "Length"
+msgstr "Gjatësi"
-#: gallery_files.xhp
+#: 05200200.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"par_id3147557\n"
+"05200200.xhp\n"
+"par_id3149640\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_SEARCH\">Locate the directory containing the files that you want to add, and then click <emph>OK</emph>.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_LINE_DEF_MTR_FLD_LENGTH_2\">Enter the length of the dash.</ahelp>"
msgstr ""
-#: gallery_files.xhp
+#: 05200200.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"hd_id3154317\n"
-"13\n"
+"05200200.xhp\n"
+"hd_id3093440\n"
+"11\n"
"help.text"
-msgid "Add"
-msgstr "Shto"
+msgid "Spacing"
+msgstr "Hapësira"
-#: gallery_files.xhp
+#: 05200200.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"par_id3150774\n"
-"14\n"
+"05200200.xhp\n"
+"par_id3147834\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_TAKE\">Adds the selected file(s) to the current theme.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_LINE_DEF_MTR_FLD_DISTANCE\">Enter the amount of space that you want to leave between dots or dashes.</ahelp>"
msgstr ""
-#: gallery_files.xhp
+#: 05200200.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"hd_id3149751\n"
-"15\n"
+"05200200.xhp\n"
+"hd_id3155805\n"
+"13\n"
"help.text"
-msgid "Add all"
-msgstr "Prano të gjitha"
+msgid "Fit to line width"
+msgstr "Fshij deri Fillim të Rreshtit"
-#: gallery_files.xhp
+#: 05200200.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"par_id3156426\n"
-"16\n"
+"05200200.xhp\n"
+"par_id3147291\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_TAKEALL\">Adds all of the files in the list to the current theme.</ahelp>"
+msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_LINE_DEF_CBX_SYNCHRONIZE\">Automatically adjusts the entries relative to the length of the line.</ahelp>"
msgstr ""
-#: gallery_files.xhp
+#: 05200200.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"hd_id3147088\n"
+"05200200.xhp\n"
+"hd_id3155355\n"
"17\n"
"help.text"
-msgid "Preview"
-msgstr "Shikim paraprak"
+msgid "Add"
+msgstr "Shto"
-#: gallery_files.xhp
+#: 05200200.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"par_id3151111\n"
+"05200200.xhp\n"
+"par_id3149827\n"
"18\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXTABPAGE_GALLERYTHEME_FILES:CBX_PREVIEW\">Displays or hides a preview of the selected file.</ahelp>"
+msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXPAGE_LINE_DEF_BTN_ADD\">Creates a new line style using the current settings.</ahelp>"
msgstr ""
-#: gallery_files.xhp
+#: 05200200.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"hd_id3147275\n"
+"05200200.xhp\n"
+"hd_id3155338\n"
"19\n"
"help.text"
-msgid "Preview box"
-msgstr "Kutia për kontrollim"
+msgid "Name"
+msgstr "Emri"
-#: gallery_files.xhp
+#: 05200200.xhp
msgctxt ""
-"gallery_files.xhp\n"
-"par_id3153662\n"
+"05200200.xhp\n"
+"par_id3153681\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"HID_GALLERY_PREVIEW\">Displays a preview of the selected file.</ahelp>"
+msgid "<ahelp hid=\"\">Enter a name.</ahelp>"
msgstr ""
-#: 06030000.xhp
-#, fuzzy
+#: 05200200.xhp
msgctxt ""
-"06030000.xhp\n"
-"tit\n"
+"05200200.xhp\n"
+"hd_id3155893\n"
+"21\n"
"help.text"
-msgid "Color Replacer"
-msgstr "Shiriti i Ngjyrave"
+msgid "Modify"
+msgstr "Modifiko"
-#: 06030000.xhp
+#: 05200200.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3156324\n"
-"1\n"
+"05200200.xhp\n"
+"par_id3157863\n"
+"22\n"
"help.text"
-msgid "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Color Replacer</link>"
+msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXPAGE_LINE_DEF_BTN_MODIFY\">Updates the selected line style using the current settings. To change the name of the selected line style, enter a new name when prompted.</ahelp>"
msgstr ""
-#: 06030000.xhp
+#: 05200200.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3145138\n"
-"2\n"
+"05200200.xhp\n"
+"hd_id3147275\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\".uno:BmpMask\">Opens the Color Replacer dialog, where you can replace colors in bitmap and meta file graphics.</ahelp>"
+msgid "Load line style table"
msgstr ""
-#: 06030000.xhp
+#: 05200200.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3151262\n"
+"05200200.xhp\n"
+"par_id3154749\n"
"24\n"
"help.text"
-msgid "You can replace up to four different colors at one time."
+msgid "<ahelp hid=\"SVX_IMAGEBUTTON_RID_SVXPAGE_LINE_DEF_BTN_LOAD\">Imports a list of line styles.</ahelp>"
msgstr ""
-#: 06030000.xhp
+#: 05200200.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3153894\n"
+"05200200.xhp\n"
+"hd_id3148642\n"
+"25\n"
"help.text"
-msgid "<image id=\"img_id3155616\" src=\"sd/res/pipette.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155616\">Icon</alt></image>"
+msgid "Save line style table"
msgstr ""
-#: 06030000.xhp
-#, fuzzy
+#: 05200200.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3145669\n"
-"3\n"
+"05200200.xhp\n"
+"par_id3155449\n"
+"26\n"
"help.text"
-msgid "Color Replacer"
-msgstr "Shiriti i Ngjyrave"
+msgid "<ahelp hid=\"SVX_IMAGEBUTTON_RID_SVXPAGE_LINE_DEF_BTN_SAVE\">Saves the current list of line styles, so that you can load it again later.</ahelp>"
+msgstr ""
-#: 06030000.xhp
+#: 05200300.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3153683\n"
-"4\n"
+"05200300.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select one of the four source color boxes. Move the mouse pointer over the selected image, and then click the color that you want to replace.</ahelp>"
+msgid "Arrow Styles"
+msgstr "Stilet e grafikave"
+
+#: 05200300.xhp
+msgctxt ""
+"05200300.xhp\n"
+"hd_id3156045\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05200300.xhp\" name=\"Arrow Styles\">Arrow Styles</link>"
msgstr ""
-#: 06030000.xhp
-#, fuzzy
+#: 05200300.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3149827\n"
+"05200300.xhp\n"
+"par_id3149031\n"
+"2\n"
+"help.text"
+msgid "<ahelp hid=\"HID_LINE_ENDDEF\">Edit or create arrow styles.</ahelp>"
+msgstr ""
+
+#: 05200300.xhp
+msgctxt ""
+"05200300.xhp\n"
+"hd_id3153551\n"
"5\n"
"help.text"
-msgid "Color Replacer color"
-msgstr "Zgjedhja e databazës"
+msgid "Organize arrow styles"
+msgstr "Stilet e zbatuara të paragrafeve"
-#: 06030000.xhp
+#: 05200300.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3146957\n"
+"05200300.xhp\n"
+"par_id3154398\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the color in the selected image that directly underlies the current mouse pointer position. This features only works if the Color Replacer tool is selected.</ahelp>"
+msgid "Lets you organize the current list of arrow styles."
msgstr ""
-#: 06030000.xhp
+#: 05200300.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3154823\n"
+"05200300.xhp\n"
+"hd_id3155552\n"
"7\n"
"help.text"
-msgid "Replace"
-msgstr "Zëvendëso"
+msgid "Title"
+msgstr "Titulli"
-#: 06030000.xhp
+#: 05200300.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3154983\n"
+"05200300.xhp\n"
+"par_id3147399\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_BMPMASK:BTN_EXEC\">Replaces the selected source colors in the current image with the colors that you specify in the <emph>Replace with </emph>boxes.</ahelp>"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_LINEEND_DEF:EDT_NAME\">Displays the name of the selected arrow style.</ahelp>"
msgstr ""
-#: 06030000.xhp
+#: 05200300.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3147275\n"
+"05200300.xhp\n"
+"hd_id3155892\n"
"9\n"
"help.text"
-msgid "Colors"
-msgstr "Ngjyrat"
+msgid "Arrow style"
+msgstr "Stili i shigjetës"
-#: 06030000.xhp
+#: 05200300.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3153031\n"
+"05200300.xhp\n"
+"par_id3149827\n"
"10\n"
"help.text"
-msgid "Lists the source colors and the replacement colors."
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINEEND_DEF:LB_LINEENDS\">Choose a predefined arrow style symbol from the list box.</ahelp>"
msgstr ""
-#: 06030000.xhp
+#: 05200300.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3149416\n"
+"05200300.xhp\n"
+"hd_id3145313\n"
"11\n"
"help.text"
-msgid "Source color checkbox"
-msgstr "Ngjyra e 3D materialit"
+msgid "Add"
+msgstr "Shto"
-#: 06030000.xhp
+#: 05200300.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3149819\n"
+"05200300.xhp\n"
+"par_id3154288\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_BMPMASK:CBX_4\">Select this checkbox to replace the current <emph>Source color</emph> with the color that you specify in the <emph>Replace with </emph>box.</ahelp>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_ADD\">To define a custom arrow style, select a drawing object in the document, and then click here.</ahelp>"
msgstr ""
-#: 06030000.xhp
+#: 05200300.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3159116\n"
+"05200300.xhp\n"
+"hd_id3156346\n"
"13\n"
"help.text"
-msgid "Source color"
-msgstr "Ngjyra e Fontit"
+msgid "Modify"
+msgstr "Modifiko"
-#: 06030000.xhp
+#: 05200300.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3149903\n"
+"05200300.xhp\n"
+"par_id3154897\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the color in the selected image that you want to replace. To set the source color, click here, click the Color Replacer, and then click a color in the selected image.</ahelp>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_MODIFY\">Changes the name of the selected arrow style.</ahelp>"
msgstr ""
-#: 06030000.xhp
+#: 05200300.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3150085\n"
+"05200300.xhp\n"
+"hd_id3153332\n"
"15\n"
"help.text"
-msgid "Tolerance"
-msgstr ""
+msgid "Load Arrow Styles"
+msgstr "Stilet e zbatuara të paragrafeve"
-#: 06030000.xhp
+#: 05200300.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3144438\n"
+"05200300.xhp\n"
+"par_id3146137\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_BMPMASK:SP_4\">Set the tolerance for replacing a source color in the source image. To replace colors that are similar to the color that you selected, enter a low value. To replace a wider range of colors, enter a higher value.</ahelp>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_LOAD\">Imports a list of arrow styles.</ahelp>"
msgstr ""
-#: 06030000.xhp
+#: 05200300.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3156156\n"
+"05200300.xhp\n"
+"hd_id3158432\n"
"17\n"
"help.text"
-msgid "Replace with"
-msgstr "Zëvendëso me"
+msgid "Save Arrow Styles"
+msgstr "Stilet e zbatuara të paragrafeve"
-#: 06030000.xhp
+#: 05200300.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3154173\n"
+"05200300.xhp\n"
+"par_id3152944\n"
"18\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_BMPMASK:LB_4\">Lists the available replacement colors. To modify the current list of colors, deselect the image, choose <emph>Format - Area</emph>, and then click the <emph>Colors</emph> tab.</ahelp>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_SAVE\">Saves the current list of arrow styles, so that you can load it later.</ahelp>"
msgstr ""
-#: 06030000.xhp
+#: 05210000.xhp
msgctxt ""
-"06030000.xhp\n"
-"hd_id3156152\n"
-"19\n"
+"05210000.xhp\n"
+"tit\n"
"help.text"
-msgid "Transparency"
-msgstr "Transparencë"
+msgid "Area"
+msgstr "Hapësira"
-#: 06030000.xhp
+#: 05210000.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3154905\n"
-"20\n"
+"05210000.xhp\n"
+"hd_id3085157\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_BMPMASK:CBX_TRANS\">Replaces transparent areas in the current image with the color that you select.</ahelp>"
+msgid "<link href=\"text/shared/01/05210000.xhp\" name=\"Area\">Area</link>"
msgstr ""
-#: 06030000.xhp
-msgctxt ""
-"06030000.xhp\n"
-"hd_id3145087\n"
-"21\n"
-"help.text"
-msgid "Transparency"
-msgstr "Transparencë"
-
-#: 06030000.xhp
+#: 05210000.xhp
msgctxt ""
-"06030000.xhp\n"
-"par_id3148946\n"
-"22\n"
+"05210000.xhp\n"
+"par_id3144436\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_BMPMASK:LB_TRANS\">Select the color to replace the transparent areas in the current image.</ahelp>"
+msgid "<variable id=\"flaechetext\"><ahelp hid=\".uno:FormatArea\">Sets the fill properties of the selected drawing object.</ahelp></variable>"
msgstr ""
-#: 05240000.xhp
+#: 05210100.xhp
msgctxt ""
-"05240000.xhp\n"
+"05210100.xhp\n"
"tit\n"
"help.text"
-msgid "Flip"
-msgstr "Rrotullo"
+msgid "Area"
+msgstr "Hapësira"
-#: 05240000.xhp
+#: 05210100.xhp
msgctxt ""
-"05240000.xhp\n"
-"bm_id3151264\n"
+"05210100.xhp\n"
+"bm_id3149999\n"
"help.text"
-msgid "<bookmark_value>draw objects; flipping</bookmark_value><bookmark_value>flipping draw objects</bookmark_value>"
+msgid "<bookmark_value>areas; styles</bookmark_value><bookmark_value>fill patterns for areas</bookmark_value><bookmark_value>fill colors for areas</bookmark_value><bookmark_value>invisible areas</bookmark_value>"
msgstr ""
-#: 05240000.xhp
+#: 05210100.xhp
msgctxt ""
-"05240000.xhp\n"
-"hd_id3151264\n"
+"05210100.xhp\n"
+"hd_id3145759\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05240000.xhp\" name=\"Flip\">Flip</link>"
+msgid "<link href=\"text/shared/01/05210100.xhp\" name=\"Area\">Area</link>"
msgstr ""
-#: 05240000.xhp
+#: 05210100.xhp
msgctxt ""
-"05240000.xhp\n"
-"par_id3145759\n"
+"05210100.xhp\n"
+"par_id3149748\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Flips the selected object horizontally, or vertically.</ahelp>"
+msgid "<ahelp hid=\"HID_AREA_AREA\">Set the fill options for the selected drawing object.</ahelp>"
msgstr ""
-#: 02060000.xhp
+#: 05210100.xhp
msgctxt ""
-"02060000.xhp\n"
-"tit\n"
+"05210100.xhp\n"
+"par_id3154863\n"
+"65\n"
"help.text"
-msgid "Paste"
-msgstr "Lësho"
+msgid "You can save collections of colors, gradients, hatchings, and bitmap patterns as lists that you can later load and use."
+msgstr ""
-#: 02060000.xhp
+#: 05210100.xhp
msgctxt ""
-"02060000.xhp\n"
-"bm_id3149031\n"
+"05210100.xhp\n"
+"hd_id3149999\n"
+"3\n"
"help.text"
-msgid "<bookmark_value>pasting;cell ranges</bookmark_value><bookmark_value>clipboard; pasting</bookmark_value><bookmark_value>cells;pasting</bookmark_value>"
-msgstr ""
+msgid "Fill"
+msgstr "Mbush"
-#: 02060000.xhp
+#: 05210100.xhp
msgctxt ""
-"02060000.xhp\n"
-"hd_id3149031\n"
-"1\n"
+"05210100.xhp\n"
+"par_id3154673\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/shared/01/02060000.xhp\" name=\"Paste\">Paste</link>"
+msgid "<variable id=\"sytext\"><ahelp hid=\".uno:FillStyle\">Select the type of fill that you want to apply to the selected drawing object.</ahelp></variable>"
msgstr ""
-#: 02060000.xhp
+#: 05210100.xhp
msgctxt ""
-"02060000.xhp\n"
-"par_id3149511\n"
-"2\n"
+"05210100.xhp\n"
+"par_id3148548\n"
+"55\n"
"help.text"
-msgid "<ahelp hid=\".uno:Paste\">Inserts the contents of the clipboard at the location of the cursor, and replaces any selected text or objects.</ahelp>"
+msgid "List boxes on the <emph>Drawing Object Properties</emph> toolbar:"
msgstr ""
-#: 02060000.xhp
+#: 05210100.xhp
msgctxt ""
-"02060000.xhp\n"
-"par_id3147834\n"
+"05210100.xhp\n"
+"hd_id3147373\n"
"5\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">In a spreadsheet, when you paste a range of cells from the clipboard, the result depends on the current selection: If only one cell is selected, the cell range will be pasted started from that cell. If you mark a cell range wider than the cell range in the clipboard, the cell range will be pasted repeatedly to fill the selected cell range. </caseinline></switchinline>"
+msgid "None"
+msgstr "Asnjë"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3147088\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_AREA_RBT_FILL_OFF\">Does not apply a fill to the selected object. If the object contains a fill, the fill is removed.</ahelp>"
msgstr ""
-#: 02230300.xhp
+#: 05210100.xhp
msgctxt ""
-"02230300.xhp\n"
-"tit\n"
+"05210100.xhp\n"
+"hd_id3153345\n"
+"8\n"
"help.text"
-msgid "Comment"
-msgstr "Koment"
+msgid "Color"
+msgstr "Ngjyra"
-#: 02230300.xhp
+#: 05210100.xhp
msgctxt ""
-"02230300.xhp\n"
-"hd_id3083278\n"
-"1\n"
+"05210100.xhp\n"
+"par_id3149750\n"
+"9\n"
"help.text"
-msgid "Comment"
-msgstr "Koment"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_COLOR\">Fills the selected object with the color that you click in the list.</ahelp>"
+msgstr ""
-#: 02230300.xhp
+#: 05210100.xhp
msgctxt ""
-"02230300.xhp\n"
-"par_id3148983\n"
-"2\n"
+"05210100.xhp\n"
+"par_id3153147\n"
+"57\n"
"help.text"
-msgid "<variable id=\"kommentartext\"><ahelp hid=\"HID_REDLINING_EDIT\">Enter a comment for the recorded change.</ahelp></variable>"
+msgid "To add a color to the list, choose <link href=\"text/shared/optionen/01010500.xhp\" name=\"Format - Area\"><emph>Format - Area</emph></link>, click the<emph> Colors</emph> tab, and then click <emph>Edit</emph>."
msgstr ""
-#: 02230300.xhp
+#: 05210100.xhp
msgctxt ""
-"02230300.xhp\n"
-"par_id3155391\n"
-"3\n"
+"05210100.xhp\n"
+"par_id9695730\n"
"help.text"
-msgid "You can attach a comment when <switchinline select=\"appl\"><caseinline select=\"WRITER\">the cursor is in a changed text passage </caseinline><caseinline select=\"CALC\">the changed cell is selected</caseinline></switchinline>, or in the <emph>Accept or Reject Changes</emph> dialog."
+msgid "To add a color to the list, choose <link href=\"text/shared/optionen/01010500.xhp\" name=\"Format - Area\"><emph>Format - Area</emph></link>, click the <emph>Colors</emph> tab, and then click <emph>Edit</emph>."
msgstr ""
-#: 02230300.xhp
+#: 05210100.xhp
msgctxt ""
-"02230300.xhp\n"
-"par_id3156426\n"
-"5\n"
+"05210100.xhp\n"
+"hd_id3144438\n"
+"10\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Comments are displayed as callouts in the sheet when you rest your mouse pointer over a cell with a recorded change. You can also view comments that are attached to a changed cell in the changes list in the <link href=\"text/shared/01/02230400.xhp\" name=\"Accept or Reject Changes\"><emph>Accept or Reject Changes</emph></link> dialog. </caseinline></switchinline>"
+msgid "Gradient"
+msgstr "Shkallëzim"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3153716\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_GRADIENT\">Fills the selected object with the gradient that you click in the list.</ahelp>"
msgstr ""
-#: 03060000.xhp
+#: 05210100.xhp
msgctxt ""
-"03060000.xhp\n"
-"tit\n"
+"05210100.xhp\n"
+"hd_id3154047\n"
+"12\n"
"help.text"
-msgid "Status Bar"
-msgstr "Shiriti i gjendjes"
+msgid "Hatching"
+msgstr "Vijëzim"
-#: 03060000.xhp
+#: 05210100.xhp
msgctxt ""
-"03060000.xhp\n"
-"bm_id3152823\n"
+"05210100.xhp\n"
+"par_id3153698\n"
+"13\n"
"help.text"
-msgid "<bookmark_value>status bar on/off</bookmark_value>"
+msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_AREA_RBT_HATCH\">Fills the selected object with the hatching pattern that you click in the list. To apply a background color to the hatching pattern, select the <emph>Background color</emph> box, and then click a color in the list.</ahelp>"
msgstr ""
-#: 03060000.xhp
+#: 05210100.xhp
msgctxt ""
-"03060000.xhp\n"
-"hd_id3152823\n"
-"1\n"
+"05210100.xhp\n"
+"hd_id3150771\n"
+"14\n"
"help.text"
-msgid "<link href=\"text/shared/01/03060000.xhp\" name=\"Status Bar\">Status Bar</link>"
+msgid "Bitmap"
+msgstr "Bitmap"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3149762\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_BITMAP\">Fills the selected object with the bitmap pattern that you click in the list. To add a bitmap to the list, open this dialog in %PRODUCTNAME Draw, click the <emph>Bitmaps </emph>tab, and then click <emph>Import</emph>.</ahelp>"
msgstr ""
-#: 03060000.xhp
+#: 05210100.xhp
msgctxt ""
-"03060000.xhp\n"
-"par_id3147000\n"
-"2\n"
+"05210100.xhp\n"
+"hd_id3150504\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\".uno:StatusBarVisible\">Shows or hides the <emph>Status Bar</emph> at the bottom edge of the window.</ahelp>"
+msgid "Area Fill"
+msgstr "Hijezo mbushjen"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3153626\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_AREA:LB_BITMAP\">Click the fill that you want to apply to the selected object.</ahelp>"
msgstr ""
-#: 05230000.xhp
+#: 05210100.xhp
msgctxt ""
-"05230000.xhp\n"
-"tit\n"
+"05210100.xhp\n"
+"hd_id3154346\n"
+"20\n"
"help.text"
-msgid "Position and Size"
-msgstr "Pozita dhe Madhësia"
+msgid "Increments (Gradients)"
+msgstr "Zvogëlo shkallëzimin"
-#: 05230000.xhp
+#: 05210100.xhp
msgctxt ""
-"05230000.xhp\n"
-"hd_id3152790\n"
-"1\n"
+"05210100.xhp\n"
+"par_id3144423\n"
+"21\n"
"help.text"
-msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
+msgid "Set the number of steps for blending the two end colors of a gradient."
msgstr ""
-#: 05230000.xhp
+#: 05210100.xhp
msgctxt ""
-"05230000.xhp\n"
-"par_id3157552\n"
-"2\n"
+"05210100.xhp\n"
+"hd_id3147264\n"
+"22\n"
"help.text"
-msgid "<variable id=\"groessetext\"><ahelp hid=\".uno:TransformDialog\">Resizes, moves, rotates, or slants the selected object.</ahelp></variable>"
+msgid "Automatic"
+msgstr "Automatike"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3149457\n"
+"23\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_STEPCOUNT\">Automatically determines the number of steps for blending the two end colors of the gradient.</ahelp>"
msgstr ""
-#: 01110101.xhp
+#: 05210100.xhp
msgctxt ""
-"01110101.xhp\n"
-"tit\n"
+"05210100.xhp\n"
+"hd_id3154388\n"
+"24\n"
"help.text"
-msgid "Templates: Address Book Assignment"
-msgstr "Shabllonet: Caktimi i Adresarit"
+msgid "Increment"
+msgstr "Rritje linje"
-#: 01110101.xhp
+#: 05210100.xhp
msgctxt ""
-"01110101.xhp\n"
-"hd_id3156411\n"
-"1\n"
+"05210100.xhp\n"
+"par_id3150360\n"
+"25\n"
"help.text"
-msgid "Templates: Address Book Assignment"
-msgstr "Shabllonet: Caktimi i Adresarit"
+msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_AREA:NUM_FLD_STEPCOUNT\">Enter the number of steps for blending the two end colors of the gradient.</ahelp>"
+msgstr ""
-#: 01110101.xhp
+#: 05210100.xhp
msgctxt ""
-"01110101.xhp\n"
-"par_id3147576\n"
-"2\n"
+"05210100.xhp\n"
+"hd_id3153381\n"
+"31\n"
"help.text"
-msgid "<ahelp hid=\".uno:AddressBookSource\">Edit the field assignments and the data source for your address book.</ahelp>"
+msgid "Size (Bitmaps)"
+msgstr "Bitampe të lidhura"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3148798\n"
+"32\n"
+"help.text"
+msgid "Specify the dimensions of the bitmap."
+msgstr "Këmbe në bitmapë"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"hd_id3154068\n"
+"33\n"
+"help.text"
+msgid "Relative"
+msgstr "Madhësitë relative"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3125865\n"
+"34\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_SCALE\">Rescales the bitmap relative to the size of the selected object by the percentage values that you enter in the <emph>Width</emph> and <emph>Height</emph> boxes . Clear this checkbox to resize the selected object with the measurements that you enter in the <emph>Width</emph> and <emph>Height</emph> boxes.</ahelp>"
msgstr ""
-#: 01110101.xhp
+#: 05210100.xhp
msgctxt ""
-"01110101.xhp\n"
-"hd_id3149399\n"
-"3\n"
+"05210100.xhp\n"
+"hd_id3149202\n"
+"35\n"
"help.text"
-msgid "Address Book Source"
-msgstr "Burimi i adresarit"
+msgid "Original"
+msgstr "Origjinal"
-#: 01110101.xhp
+#: 05210100.xhp
msgctxt ""
-"01110101.xhp\n"
-"par_id3152996\n"
-"4\n"
+"05210100.xhp\n"
+"par_id3153970\n"
+"36\n"
"help.text"
-msgid "Set the data source and data table for your address book."
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_ORIGINAL\">Retains the original size of the bitmap when filling the selected object. To resize the bitmap, clear this checkbox, and then click <emph>Relative</emph>.</ahelp>"
msgstr ""
-#: 01110101.xhp
+#: 05210100.xhp
msgctxt ""
-"01110101.xhp\n"
-"hd_id3147654\n"
-"5\n"
+"05210100.xhp\n"
+"hd_id3155994\n"
+"37\n"
"help.text"
-msgid "Data Source"
-msgstr "Burim i të Dhënave"
+msgid "Width"
+msgstr "Gjerësia"
-#: 01110101.xhp
+#: 05210100.xhp
msgctxt ""
-"01110101.xhp\n"
-"par_id3154306\n"
-"6\n"
+"05210100.xhp\n"
+"par_id3149810\n"
+"38\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_COMBOBOX_DLG_ADDRESSBOOKSOURCE_CB_DATASOURCE\">Select the data source for your address book.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_X_SIZE\">Enter a width for the bitmap.</ahelp>"
msgstr ""
-#: 01110101.xhp
+#: 05210100.xhp
msgctxt ""
-"01110101.xhp\n"
-"hd_id3145315\n"
-"7\n"
+"05210100.xhp\n"
+"hd_id3156281\n"
+"39\n"
"help.text"
-msgid "Table"
-msgstr "Tabelë"
+msgid "Height"
+msgstr "Lartësia"
-#: 01110101.xhp
+#: 05210100.xhp
msgctxt ""
-"01110101.xhp\n"
-"par_id3149164\n"
-"8\n"
+"05210100.xhp\n"
+"par_id3150868\n"
+"40\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_COMBOBOX_DLG_ADDRESSBOOKSOURCE_CB_TABLE\">Select the data table for your address book.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_Y_SIZE\">Enter a height for the bitmap.</ahelp>"
msgstr ""
-#: 01110101.xhp
+#: 05210100.xhp
msgctxt ""
-"01110101.xhp\n"
-"hd_id3145119\n"
-"9\n"
+"05210100.xhp\n"
+"hd_id3148673\n"
+"41\n"
"help.text"
-msgid "Configure"
-msgstr "Konfiguro"
+msgid "Position (Bitmaps)"
+msgstr "Bitampe të lidhura"
-#: 01110101.xhp
+#: 05210100.xhp
msgctxt ""
-"01110101.xhp\n"
-"par_id3150771\n"
-"10\n"
+"05210100.xhp\n"
+"par_id3154821\n"
+"42\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_ADDRESSBOOKSOURCE_PB_ADMINISTATE_DATASOURCES\">Add a new data source to the <emph>Address Book Source </emph>list.</ahelp>"
+msgid "Click in the position grid to specify the offset for tiling the bitmap."
msgstr ""
-#: 01110101.xhp
+#: 05210100.xhp
msgctxt ""
-"01110101.xhp\n"
-"hd_id3155629\n"
-"11\n"
+"05210100.xhp\n"
+"hd_id3153056\n"
+"43\n"
"help.text"
-msgid "Field assignment"
-msgstr "Caktim i fushës"
+msgid "X Offset"
+msgstr ""
-#: 01110101.xhp
+#: 05210100.xhp
msgctxt ""
-"01110101.xhp\n"
-"par_id3153320\n"
-"12\n"
+"05210100.xhp\n"
+"par_id3147299\n"
+"44\n"
"help.text"
-msgid "Define the field assignments for your address book."
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_X_OFFSET\">Enter the horizontal offset for tiling the bitmap.</ahelp>"
msgstr ""
-#: 01110101.xhp
+#: 05210100.xhp
msgctxt ""
-"01110101.xhp\n"
-"hd_id3155830\n"
-"13\n"
+"05210100.xhp\n"
+"hd_id3149985\n"
+"45\n"
"help.text"
-msgid "(Field name)"
-msgstr "Emri i fushës"
+msgid "Y Offset"
+msgstr ""
-#: 01110101.xhp
+#: 05210100.xhp
msgctxt ""
-"01110101.xhp\n"
-"par_id3154143\n"
-"14\n"
+"05210100.xhp\n"
+"par_id3148559\n"
+"46\n"
"help.text"
-msgid "<ahelp hid=\"HID_ADDRTEMPL_FIELD_ASSIGNMENT\">Select the field in the data table that corresponds to the address book entry.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_Y_OFFSET\">Enter the vertical offset for tiling the bitmap.</ahelp>"
msgstr ""
-#: 06150110.xhp
+#: 05210100.xhp
msgctxt ""
-"06150110.xhp\n"
-"tit\n"
+"05210100.xhp\n"
+"hd_id3156060\n"
+"27\n"
"help.text"
-msgid "General"
-msgstr "Të përgjithshme"
+msgid "Tile"
+msgstr "Pllakë"
-#: 06150110.xhp
+#: 05210100.xhp
msgctxt ""
-"06150110.xhp\n"
-"hd_id3158442\n"
-"1\n"
+"05210100.xhp\n"
+"par_id3152576\n"
+"28\n"
"help.text"
-msgid "<variable id=\"general\"><link href=\"text/shared/01/06150110.xhp\" name=\"General\">General</link></variable>"
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_TILE\">Tiles the bitmap to fill the selected object.</ahelp>"
msgstr ""
-#: 06150110.xhp
+#: 05210100.xhp
msgctxt ""
-"06150110.xhp\n"
-"par_id3149038\n"
-"12\n"
+"05210100.xhp\n"
+"hd_id3150334\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\"\">Enter or edit general information for an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
+msgid "AutoFit"
+msgstr "Përshtate Automatikisht lartësinë"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3149481\n"
+"30\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_AREA:TSB_STRETCH\">Stretches the bitmap to fill the selected object. To use this feature, clear the <emph>Tile </emph>box.</ahelp>"
msgstr ""
-#: 06150110.xhp
+#: 05210100.xhp
msgctxt ""
-"06150110.xhp\n"
-"hd_id3151097\n"
-"2\n"
+"05210100.xhp\n"
+"hd_id3148555\n"
+"47\n"
"help.text"
-msgid "Filter name"
-msgstr "Emri i grupit"
+msgid "Offset"
+msgstr ""
-#: 06150110.xhp
+#: 05210100.xhp
msgctxt ""
-"06150110.xhp\n"
-"par_id3150838\n"
-"3\n"
+"05210100.xhp\n"
+"par_id3155412\n"
+"48\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_NAME\">Enter the name that you want to display in the list box of the <emph>XML Filter Settings</emph> dialog.</ahelp> You must enter a unique name."
+msgid "Specify the offset for tiling the bitmap in terms of rows and columns."
msgstr ""
-#: 06150110.xhp
+#: 05210100.xhp
msgctxt ""
-"06150110.xhp\n"
-"hd_id3149119\n"
-"4\n"
+"05210100.xhp\n"
+"hd_id3151115\n"
+"49\n"
"help.text"
-msgid "Application"
-msgstr "Aplikacioni"
+msgid "Row"
+msgstr "Rresht"
-#: 06150110.xhp
+#: 05210100.xhp
msgctxt ""
-"06150110.xhp\n"
-"par_id3149793\n"
-"5\n"
+"05210100.xhp\n"
+"par_id3155369\n"
+"50\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_APPLICATION\">Select the application that you want to use with the filter.</ahelp>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_ROW\">Horizontally offsets the original bitmap relative to the bitmap tiles by the amount that you enter.</ahelp>"
msgstr ""
-#: 06150110.xhp
+#: 05210100.xhp
msgctxt ""
-"06150110.xhp\n"
-"hd_id3149999\n"
-"6\n"
+"05210100.xhp\n"
+"hd_id3144442\n"
+"51\n"
"help.text"
-msgid "Name of file type"
-msgstr "{&MSSansBold8}Lloji i fajllit"
+msgid "Column"
+msgstr "Kolonë"
-#: 06150110.xhp
+#: 05210100.xhp
msgctxt ""
-"06150110.xhp\n"
-"par_id3149549\n"
-"7\n"
+"05210100.xhp\n"
+"par_id3146974\n"
+"52\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_INTERFACE_NAME\">Enter the name that you want to display in the <emph>File type</emph> box in file dialogs.</ahelp> You must enter a unique name. For import filters, the name appears in the <emph>File type</emph> box of <emph>Open</emph> dialogs. For export filters, the name appears in the <emph>File format</emph> box of <emph>Export</emph> dialogs."
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_AREA:RBT_COLUMN\">Vertically offsets the original bitmap relative to the bitmap tiles by the amount that you enter.</ahelp>"
msgstr ""
-#: 06150110.xhp
+#: 05210100.xhp
msgctxt ""
-"06150110.xhp\n"
-"hd_id3147834\n"
-"8\n"
+"05210100.xhp\n"
+"hd_id3150684\n"
+"53\n"
"help.text"
-msgid "File extension"
-msgstr "Emri i fajllit pa zgjerim"
+msgid "Percent"
+msgstr "Përqindja"
-#: 06150110.xhp
+#: 05210100.xhp
msgctxt ""
-"06150110.xhp\n"
-"par_id3147291\n"
-"9\n"
+"05210100.xhp\n"
+"par_id3155314\n"
+"54\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_EXTENSION\">Enter the file extension to use when you open a file without specifying a filter. $[officename] uses the file extension to determine which filter to use.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_AREA:MTR_FLD_OFFSET\">Enter the percentage to offset the rows or columns.</ahelp>"
msgstr ""
-#: 06150110.xhp
+#: 05210100.xhp
msgctxt ""
-"06150110.xhp\n"
-"hd_id3157863\n"
-"10\n"
+"05210100.xhp\n"
+"hd_id3152887\n"
+"59\n"
"help.text"
-msgid "Comments"
-msgstr "Komentet"
+msgid "Background Color (Hatching)"
+msgstr "Ngjyra e 3D materialit"
-#: 06150110.xhp
+#: 05210100.xhp
msgctxt ""
-"06150110.xhp\n"
-"par_id3146957\n"
-"11\n"
+"05210100.xhp\n"
+"hd_id3153364\n"
+"61\n"
"help.text"
-msgid "<ahelp hid=\"HID_XML_FILTER_DESCRIPTION\">Enter a comment (optional).</ahelp>"
+msgid "Background color"
+msgstr "Ngjyra e sfondit"
+
+#: 05210100.xhp
+msgctxt ""
+"05210100.xhp\n"
+"par_id3152940\n"
+"62\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_AREA:CB_HATCHBCKGRD\">Applies a background color to the hatching pattern. Select this checkbox, and then click a color in the list.</ahelp>"
msgstr ""
-#: xformsdataadd.xhp
+#: 05210100.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"tit\n"
+"05210100.xhp\n"
+"hd_id3152460\n"
+"63\n"
"help.text"
-msgid "Add / Edit"
-msgstr "Edito Ndryshimet"
+msgid "List of colors"
+msgstr "Ngjyrat sipas dëshirës"
-#: xformsdataadd.xhp
+#: 05210100.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"bm_id7194738\n"
+"05210100.xhp\n"
+"par_id3157309\n"
+"64\n"
"help.text"
-msgid "<bookmark_value>read-only items in Data Navigator</bookmark_value><bookmark_value>Data Navigator;adding/editing items</bookmark_value>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_AREA:LB_HATCHBCKGRDCOLOR\">Click the color that you want to use as a background for the selected hatching pattern.</ahelp>"
msgstr ""
-#: xformsdataadd.xhp
+#: 05210200.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10547\n"
+"05210200.xhp\n"
+"tit\n"
"help.text"
-msgid "Add / Edit"
-msgstr "Edito Ndryshimet"
+msgid "Colors"
+msgstr "Ngjyrat"
-#: xformsdataadd.xhp
+#: 05210200.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN1054B\n"
+"05210200.xhp\n"
+"hd_id3152895\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Adds a new item or edits the selected item in the XForms Data Navigator.</ahelp> Items can be elements, attributes, submissions, or bindings."
+msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
msgstr ""
-#: xformsdataadd.xhp
+#: 05210200.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10560\n"
+"05210200.xhp\n"
+"par_id3149119\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">%PRODUCTNAME inserts a new item directly after the currently selected item in the Data Navigator. A new attribute is added to the currently selected element.</ahelp>"
+msgid "Select a color to apply, save the current color list, or load a different color list."
msgstr ""
-#: xformsdataadd.xhp
+#: 05210200.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10563\n"
+"05210200.xhp\n"
+"par_id3154288\n"
"help.text"
-msgid "Name"
-msgstr "Emri"
+msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010500.xhp\" name=\"$[officename] - Colors\">$[officename] - Colors</link>"
+msgstr ""
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10567\n"
+"05210300.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the name of the item.</ahelp>"
+msgid "Gradients"
+msgstr "Zvogëlo shkallëzimin"
+
+#: 05210300.xhp
+msgctxt ""
+"05210300.xhp\n"
+"hd_id3145356\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05210300.xhp\" name=\"Gradients\">Gradients</link>"
msgstr ""
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN1056A\n"
+"05210300.xhp\n"
+"par_id3154812\n"
+"2\n"
"help.text"
-msgid "The attribute names must be unique within the same group."
+msgid "<ahelp hid=\"HID_AREA_GRADIENT\">Set the properties of a gradient, or save and load gradient lists.</ahelp>"
msgstr ""
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN1056D\n"
+"05210300.xhp\n"
+"hd_id3148983\n"
+"3\n"
"help.text"
msgid "Type"
msgstr "Tipi"
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10571\n"
+"05210300.xhp\n"
+"par_id3148440\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the type of a new item. You cannot change the type of an edited item.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/gradientpage/gradienttypelb\">Select the gradient that you want to apply.</ahelp>"
msgstr ""
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10574\n"
+"05210300.xhp\n"
+"hd_id3149511\n"
+"5\n"
"help.text"
-msgid "Default value"
-msgstr "Mosparaqitje vlerash"
+msgid "Center X"
+msgstr "Qendër"
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10578\n"
+"05210300.xhp\n"
+"par_id3153114\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter a default value for the selected item.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/gradientpage/centerxmtr\">Enter the horizontal offset for the gradient, where 0% corresponds to the current horizontal location of the endpoint color in the gradient. The endpoint color is the color that is selected in the <emph>To</emph> box.</ahelp>"
msgstr ""
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN1057B\n"
+"05210300.xhp\n"
+"hd_id3157896\n"
+"7\n"
"help.text"
-msgid "Settings"
-msgstr "Parametrat"
+msgid "Center Y"
+msgstr "Qendër"
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN1057F\n"
+"05210300.xhp\n"
+"par_id3154751\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the properties of the selected item.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/gradientpage/centerymtr\">Enter the vertical offset for the gradient, where 0% corresponds to the current vertical location of the endpoint color in the gradient. The endpoint color is the color that is selected in the <emph>To</emph> box.</ahelp>"
msgstr ""
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10582\n"
+"05210300.xhp\n"
+"hd_id3151226\n"
+"9\n"
"help.text"
-msgid "Data type"
-msgstr "Tipi i të dhënave"
+msgid "Angle"
+msgstr "Këndi"
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10586\n"
+"05210300.xhp\n"
+"par_id3149177\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the data type for the selected item.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/gradientpage/anglemtr\">Enter a rotation angle for the selected gradient.</ahelp>"
msgstr ""
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10589\n"
+"05210300.xhp\n"
+"hd_id3149827\n"
+"11\n"
"help.text"
-msgid "Required"
-msgstr "Kërkohet"
+msgid "Border"
+msgstr "Kufiri"
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN1058D\n"
+"05210300.xhp\n"
+"par_id3155941\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies if the item must be included on the XForm.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/gradientpage/bordermtr\">Enter the amount by which you want to adjust the area of the endpoint color on the gradient. The endpoint color is the color that is selected in the <emph>To</emph> box.</ahelp>"
msgstr ""
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10590\n"
+"05210300.xhp\n"
+"hd_id3152551\n"
+"35\n"
"help.text"
-msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can enter used namespaces and full XPath expressions."
-msgstr ""
+msgid "From"
+msgstr "Nga"
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN105AA\n"
+"05210300.xhp\n"
+"par_id3153527\n"
+"23\n"
"help.text"
-msgid "Relevant"
-msgstr "Përsërite"
+msgid "<ahelp hid=\"cui/ui/gradientpage/colorfromlb\">Select a color for the beginning point of the gradient.</ahelp>"
+msgstr ""
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN105AE\n"
+"05210300.xhp\n"
+"par_id3149398\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\".\">Declares the item as relevant.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/colorfrommtr\">Enter the intensity for the color in the <emph>From </emph>box, where 0% corresponds to black, and 100 % to the selected color.</ahelp>"
msgstr ""
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN105B1\n"
+"05210300.xhp\n"
+"hd_id3149903\n"
+"36\n"
"help.text"
-msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can enter used namespaces and full XPath expressions."
-msgstr ""
+msgid "To"
+msgstr "Në 3D"
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN105CB\n"
+"05210300.xhp\n"
+"par_id3159269\n"
+"27\n"
"help.text"
-msgid "Constraint"
-msgstr "Kufizimet"
+msgid "<ahelp hid=\"cui/ui/gradientpage/colortolb\">Select a color for the endpoint of the gradient.</ahelp>"
+msgstr ""
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN105CF\n"
+"05210300.xhp\n"
+"par_id3154142\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\".\">Declares the item as a constraint.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/gradientpage/colortomtr\">Enter the intensity for the color in the <emph>To </emph>box, where 0% corresponds to black, and 100 % to the selected color.</ahelp>"
msgstr ""
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN106C7\n"
+"05210300.xhp\n"
+"hd_id3155830\n"
+"15\n"
"help.text"
-msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can specify the constraint condition."
+msgid "Gradients"
+msgstr "Zvogëlo shkallëzimin"
+
+#: 05210300.xhp
+msgctxt ""
+"05210300.xhp\n"
+"par_id3157909\n"
+"16\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/gradientpage/gradientslb\">Select the type of gradient that you want to apply or create.</ahelp>"
msgstr ""
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN105E4\n"
+"05210300.xhp\n"
+"hd_id3150669\n"
+"17\n"
"help.text"
-msgid "Read-only"
-msgstr "Vetëm -lexim"
+msgid "Add"
+msgstr "Shto"
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN105E8\n"
+"05210300.xhp\n"
+"par_id3145416\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\".\">Declares the item as read-only.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/gradientpage/add\">Adds a custom gradient to the current list. Specify the properties of your gradient, and then click this button</ahelp>"
msgstr ""
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN105EB\n"
+"05210300.xhp\n"
+"hd_id3150772\n"
+"19\n"
"help.text"
-msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can enter used namespaces and full XPath expressions."
+msgid "Modify"
+msgstr "Modifiko"
+
+#: 05210300.xhp
+msgctxt ""
+"05210300.xhp\n"
+"par_id3147573\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/gradientpage/modify\">Applies the current gradient properties to the selected gradient. If you want, you can save the gradient under a different name.</ahelp>"
msgstr ""
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10605\n"
+"05210300.xhp\n"
+"hd_id3155341\n"
+"31\n"
"help.text"
-msgid "Calculate / Calculation"
-msgstr "Kalkulo tabelën"
+msgid "Load Gradients List"
+msgstr "Zgjedhni listën e adresave"
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN10609\n"
+"05210300.xhp\n"
+"par_id3145085\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\".\">Declares that the item is calculated.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/gradientpage/load\">Load a different list of gradients.</ahelp>"
msgstr ""
-#: xformsdataadd.xhp
+#: 05210300.xhp
msgctxt ""
-"xformsdataadd.xhp\n"
-"par_idN1076B\n"
+"05210300.xhp\n"
+"hd_id3148943\n"
+"33\n"
"help.text"
-msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can enter the calculation."
+msgid "Save Gradients List"
+msgstr "Zgjedhni listën e adresave"
+
+#: 05210300.xhp
+msgctxt ""
+"05210300.xhp\n"
+"par_id3161459\n"
+"34\n"
+"help.text"
+msgid "<ahelp hid=\"cui/ui/gradientpage/save\">Saves the current list of gradients, so that you can load it later.</ahelp>"
msgstr ""
-#: 05290300.xhp
+#: 05210400.xhp
msgctxt ""
-"05290300.xhp\n"
+"05210400.xhp\n"
"tit\n"
"help.text"
-msgid "Enter Group"
-msgstr "Fut grupin"
+msgid "Hatching"
+msgstr "Vijëzim"
-#: 05290300.xhp
+#: 05210400.xhp
msgctxt ""
-"05290300.xhp\n"
-"hd_id3083278\n"
+"05210400.xhp\n"
+"bm_id3149962\n"
+"help.text"
+msgid "<bookmark_value>hatching</bookmark_value><bookmark_value>areas; hatched/dotted</bookmark_value><bookmark_value>dotted areas</bookmark_value>"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"hd_id3149962\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Enter Group</link>"
+msgid "<link href=\"text/shared/01/05210400.xhp\" name=\"Hatching\">Hatching</link>"
msgstr ""
-#: 05290300.xhp
+#: 05210400.xhp
msgctxt ""
-"05290300.xhp\n"
-"par_id3146856\n"
+"05210400.xhp\n"
+"par_id3144436\n"
"2\n"
"help.text"
-msgid "<variable id=\"betretentext\"><ahelp hid=\".uno:EnterGroup\" visibility=\"visible\">Opens the selected group, so that you can edit the individual objects. If the selected group contains nested group, you can repeat this command on the subgroups.</ahelp></variable> This command does not permanently ungroup the objects."
+msgid "<ahelp hid=\"HID_AREA_HATCH\">Set the properties of a hatching pattern, or save and load hatching lists.</ahelp>"
msgstr ""
-#: 05290300.xhp
+#: 05210400.xhp
msgctxt ""
-"05290300.xhp\n"
-"par_id3157991\n"
+"05210400.xhp\n"
+"hd_id3156042\n"
"3\n"
"help.text"
-msgid "To select an individual object in a group, hold down <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline>, and then click the object."
+msgid "Properties"
+msgstr "Vetitë"
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3147291\n"
+"4\n"
+"help.text"
+msgid "Define or modify a hatching pattern."
msgstr ""
-#: 05290300.xhp
+#: 05210400.xhp
msgctxt ""
-"05290300.xhp\n"
-"par_id3153049\n"
+"05210400.xhp\n"
+"hd_id3147834\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290000.xhp\" name=\"Groups\">Groups</link>"
+msgid "Spacing"
+msgstr "Hapësira"
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3147010\n"
+"6\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HATCH:MTR_FLD_DISTANCE\">Enter the amount of space that you want to have between the hatch lines.</ahelp>"
msgstr ""
-#: 05290300.xhp
+#: 05210400.xhp
msgctxt ""
-"05290300.xhp\n"
-"par_id3148548\n"
+"05210400.xhp\n"
+"hd_id3155355\n"
+"7\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
+msgid "Angle"
+msgstr "Këndi"
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3156410\n"
+"8\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_HATCH:MTR_FLD_ANGLE\">Enter the rotation angle for the hatch lines, or click a position in the angle grid.</ahelp>"
msgstr ""
-#: 03050000.xhp
+#: 05210400.xhp
msgctxt ""
-"03050000.xhp\n"
-"tit\n"
+"05210400.xhp\n"
+"hd_id3156113\n"
+"9\n"
"help.text"
-msgid "Tools Bar"
-msgstr "Shiriti i kontrollit"
+msgid "Angle grid"
+msgstr "Rrjeta e dukshme"
-#: 03050000.xhp
+#: 05210400.xhp
msgctxt ""
-"03050000.xhp\n"
-"bm_id3145356\n"
+"05210400.xhp\n"
+"par_id3147242\n"
+"10\n"
"help.text"
-msgid "<bookmark_value>tools bar</bookmark_value>"
+msgid "<ahelp hid=\"HID_TPHATCH_CTRL\">Click a position in the grid to define the rotation angle for the hatch lines.</ahelp>"
msgstr ""
-#: 03050000.xhp
+#: 05210400.xhp
msgctxt ""
-"03050000.xhp\n"
-"hd_id3145356\n"
-"1\n"
+"05210400.xhp\n"
+"hd_id3155449\n"
+"21\n"
"help.text"
-msgid "<link href=\"text/shared/01/03050000.xhp\" name=\"Tools Bar\">Tools Bar</link>"
+msgid "Line type"
+msgstr "Lloji i vijës"
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3152909\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_LINE_TYPE\">Select the type of hatch lines that you want to use.</ahelp>"
msgstr ""
-#: 03050000.xhp
+#: 05210400.xhp
msgctxt ""
-"03050000.xhp\n"
-"par_id3150603\n"
-"2\n"
+"05210400.xhp\n"
+"hd_id3150503\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\".uno:ToolBarVisible\">Shows or hides the <emph>Tools bar</emph>.</ahelp>"
+msgid "Line color"
+msgstr "Ngjyra e vijës"
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3149578\n"
+"24\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_LINE_COLOR\">Select the color of the hatch lines.</ahelp>"
msgstr ""
-#: 05080200.xhp
+#: 05210400.xhp
msgctxt ""
-"05080200.xhp\n"
-"tit\n"
+"05210400.xhp\n"
+"hd_id3159147\n"
+"11\n"
"help.text"
-msgid "Right"
-msgstr "Djathtas"
+msgid "Hatches List"
+msgstr "Kryerresht i listës"
-#: 05080200.xhp
+#: 05210400.xhp
msgctxt ""
-"05080200.xhp\n"
-"hd_id3160463\n"
-"1\n"
+"05210400.xhp\n"
+"par_id3149955\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/shared/01/05080200.xhp\" name=\"Right\">Right</link>"
+msgid "Lists the available hatching patterns. You can also modify or create your own hatching pattern. To save the list, click the <emph>Save Hatches List</emph> button. To display a different list, click the <emph>Load Hatches List</emph> button."
msgstr ""
-#: 05080200.xhp
+#: 05210400.xhp
msgctxt ""
-"05080200.xhp\n"
-"par_id3144750\n"
-"2\n"
+"05210400.xhp\n"
+"hd_id3150670\n"
+"13\n"
"help.text"
-msgid "<variable id=\"rechtstext\"><ahelp hid=\".uno:RightPara\" visibility=\"visible\">Aligns the selected paragraph(s) to the right page margin.</ahelp></variable>"
+msgid "Hatches list"
+msgstr "Kryerresht i listës"
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3144438\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_HATCH:LB_HATCHINGS\">Lists the available hatching patterns. Click the hatching pattern that you want to apply, and then click <emph>OK</emph>.</ahelp>"
msgstr ""
-#: 05020700.xhp
+#: 05210400.xhp
msgctxt ""
-"05020700.xhp\n"
+"05210400.xhp\n"
+"hd_id3153823\n"
+"15\n"
+"help.text"
+msgid "Add"
+msgstr "Shto"
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3148924\n"
+"16\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_HATCH:BTN_ADD\">Adds a custom hatching pattern to the current list. Specify the properties of your hatching pattern, and then click this button.</ahelp>"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"hd_id3147620\n"
+"17\n"
+"help.text"
+msgid "Modify"
+msgstr "Modifiko"
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3156023\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_HATCH:BTN_MODIFY\">Applies the current hatching properties to the selected hatching pattern. If you want, you can save the pattern under a different name.</ahelp>"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"hd_id3147304\n"
+"25\n"
+"help.text"
+msgid "Load Hatches List"
+msgstr "Zgjedhni listën e adresave"
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3156343\n"
+"26\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_HATCH:BTN_LOAD\">Loads a different list of hatching patterns.</ahelp>"
+msgstr ""
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"hd_id3154347\n"
+"27\n"
+"help.text"
+msgid "Save Hatches List"
+msgstr "Zgjedhni listën e adresave"
+
+#: 05210400.xhp
+msgctxt ""
+"05210400.xhp\n"
+"par_id3152811\n"
+"28\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_HATCH:BTN_SAVE\">Saves the current list of hatching patterns, so that you can load it later.</ahelp>"
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
"tit\n"
"help.text"
-msgid "Asian Typography"
-msgstr "Tipografi Aziatike"
+msgid "Bitmap"
+msgstr "Bitmap"
-#: 05020700.xhp
+#: 05210500.xhp
msgctxt ""
-"05020700.xhp\n"
-"bm_id3155620\n"
+"05210500.xhp\n"
+"bm_id3155619\n"
"help.text"
-msgid "<bookmark_value>Asian typography</bookmark_value><bookmark_value>formatting; Asian typography</bookmark_value><bookmark_value>paragraphs; Asian typography</bookmark_value><bookmark_value>typography; Asian</bookmark_value>"
+msgid "<bookmark_value>bitmaps; patterns</bookmark_value><bookmark_value>areas; bitmap patterns</bookmark_value><bookmark_value>pixel patterns</bookmark_value><bookmark_value>pixel editor</bookmark_value><bookmark_value>pattern editor</bookmark_value>"
msgstr ""
-#: 05020700.xhp
+#: 05210500.xhp
msgctxt ""
-"05020700.xhp\n"
-"hd_id3155620\n"
+"05210500.xhp\n"
+"hd_id3155619\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020700.xhp\" name=\"Asian Typography\">Asian Typography</link>"
+msgid "<link href=\"text/shared/01/05210500.xhp\" name=\"Bitmap\">Bitmap</link>"
msgstr ""
-#: 05020700.xhp
+#: 05210500.xhp
msgctxt ""
-"05020700.xhp\n"
-"par_id3153124\n"
+"05210500.xhp\n"
+"par_id3149495\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Set the typographic options for cells or paragraphs in Asian language files. To enable Asian language support, choose <emph>Language Settings - Languages</emph> in the Options dialog box, and then select the <emph>Enabled</emph> box in the <emph>Asian language support</emph> area.</ahelp> The Asian typography options are ignored in HTML documents."
+msgid "<ahelp hid=\"HID_AREA_BITMAP\">Select a bitmap that you want to use as a fill pattern, or create your own pixel pattern. You can also import bitmaps, and save or load bitmap lists.</ahelp>"
msgstr ""
-#: 05020700.xhp
+#: 05210500.xhp
msgctxt ""
-"05020700.xhp\n"
-"hd_id3147571\n"
+"05210500.xhp\n"
+"hd_id3148585\n"
"3\n"
"help.text"
-msgid "Line change"
-msgstr "Change Line Color"
+msgid "Pattern Editor"
+msgstr "Edituesi i ImageMapës"
-#: 05020700.xhp
+#: 05210500.xhp
msgctxt ""
-"05020700.xhp\n"
-"par_id3147834\n"
+"05210500.xhp\n"
+"par_id3147226\n"
"4\n"
"help.text"
-msgid "Set the options for line breaks in Asian language documents."
+msgid "Use this editor to create a simple, two-color, 8x8 pixel bitmap pattern."
msgstr ""
-#: 05020700.xhp
+#: 05210500.xhp
msgctxt ""
-"05020700.xhp\n"
+"05210500.xhp\n"
+"hd_id3145669\n"
+"5\n"
+"help.text"
+msgid "Grid"
+msgstr "Rrjet"
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3150774\n"
+"6\n"
+"help.text"
+msgid "To enable this editor, select the <emph>Blank</emph> bitmap in the bitmap list."
+msgstr ""
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
"hd_id3145072\n"
-"9\n"
+"17\n"
"help.text"
-msgid "Apply list of forbidden characters to the beginning and end of line"
-msgstr "Zbato listën e karaktereve të ndaluara në fillim dhe në fund të rreshtit"
+msgid "Foreground color"
+msgstr "Ngjyra e Fontit"
-#: 05020700.xhp
+#: 05210500.xhp
msgctxt ""
-"05020700.xhp\n"
-"par_id3153683\n"
-"10\n"
+"05210500.xhp\n"
+"par_id3155535\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_PARA_ASIAN_CB_AS_FORBIDDEN\">Prevents the characters in the list from starting or ending a line. The characters are relocated to either the previous or the next line.</ahelp> To edit the list of restricted characters, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Language Settings - <link href=\"text/shared/optionen/01150100.xhp\" name=\"Asian Layout\">Asian Layout</link></emph>."
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BITMAP:LB_COLOR\">Select a foreground color, and then click in the grid to add a pixel to the pattern.</ahelp>"
msgstr ""
-#: 05020700.xhp
+#: 05210500.xhp
msgctxt ""
-"05020700.xhp\n"
-"hd_id3149751\n"
-"5\n"
+"05210500.xhp\n"
+"hd_id3149398\n"
+"19\n"
"help.text"
-msgid "Allow hanging punctuation"
-msgstr "Pikëzim i varur në fund të rreshtit"
+msgid "Background color"
+msgstr "Ngjyra e sfondit"
-#: 05020700.xhp
+#: 05210500.xhp
msgctxt ""
-"05020700.xhp\n"
-"par_id3149096\n"
-"6\n"
+"05210500.xhp\n"
+"par_id3148538\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_PARA_ASIAN_CB_AS_HANG_PUNC\">Prevents commas and periods from breaking the line. Instead, these characters are added to the end of the line, even in the page margin.</ahelp>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BITMAP:LB_BACKGROUND_COLOR\">Select a background color for your bitmap pattern.</ahelp>"
msgstr ""
-#: 05020700.xhp
+#: 05210500.xhp
msgctxt ""
-"05020700.xhp\n"
-"par_id3147275\n"
+"05210500.xhp\n"
+"hd_id3147275\n"
"7\n"
"help.text"
-msgid "<emph>Apply spacing between Asian, Latin and Complex text</emph>"
-msgstr ""
+msgid "Bitmap Pattern"
+msgstr "Pa strukturë"
-#: 05020700.xhp
+#: 05210500.xhp
msgctxt ""
-"05020700.xhp\n"
-"par_id3148539\n"
+"05210500.xhp\n"
+"par_id3146847\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_PARA_ASIAN_CB_AS_SCRIPT_SPACE\">Inserts a space between Asian, Latin and complex characters.</ahelp>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BITMAP:LB_BITMAPS\">Select a bitmap in the list, and then click <emph>OK</emph> to apply the pattern to the selected object.</ahelp>"
msgstr ""
-#: 05020700.xhp
+#: 05210500.xhp
msgctxt ""
-"05020700.xhp\n"
-"par_id3153665\n"
+"05210500.xhp\n"
+"hd_id3150275\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01140000.xhp\" name=\"Enabling Asian language support\">Enabling Asian language support</link>"
+msgid "Add"
+msgstr "Shto"
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3154306\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BITMAP:BTN_ADD\">Adds a bitmap that you created in the <emph>Pattern Editor </emph>to the current list.</ahelp>"
msgstr ""
-#: securitywarning.xhp
+#: 05210500.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"tit\n"
+"05210500.xhp\n"
+"hd_id3158432\n"
+"11\n"
"help.text"
-msgid "Security Warning"
-msgstr "Paralajmërim i sigurisë"
+msgid "Modify"
+msgstr "Modifiko"
-#: securitywarning.xhp
+#: 05210500.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"bm_id6499832\n"
+"05210500.xhp\n"
+"par_id3153827\n"
+"12\n"
"help.text"
-msgid "<bookmark_value>security;warning dialogs with macros</bookmark_value><bookmark_value>macros;security warning dialog</bookmark_value>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BITMAP:BTN_MODIFY\">Replaces a bitmap that you created in the <emph>Pattern Editor</emph> with the current bitmap pattern. If you want, you can save the pattern under a different name.</ahelp>"
msgstr ""
-#: securitywarning.xhp
+#: 05210500.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN1054D\n"
+"05210500.xhp\n"
+"hd_id3149516\n"
+"13\n"
"help.text"
-msgid "<variable id=\"securitywarning\"><link href=\"text/shared/01/securitywarning.xhp\">Security Warning</link></variable>"
+msgid "Import"
+msgstr "Importo"
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3148473\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BITMAP:BTN_IMPORT\">Locate the bitmap that you want to import, and then click <emph>Open</emph>. The bitmap is added to the end of the list of available bitmaps.</ahelp>"
msgstr ""
-#: securitywarning.xhp
+#: 05210500.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN1056B\n"
+"05210500.xhp\n"
+"hd_id3159166\n"
+"21\n"
"help.text"
-msgid "When you open a document that contains an unsigned macro, or a signed macro from an unknown source, the <emph>Security Warning</emph> dialog opens."
+msgid "Load Bitmap List"
+msgstr "Zgjedhni listën e adresave"
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3155341\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_BITMAP:BTN_LOAD\">Loads a different list of bitmaps.</ahelp>"
msgstr ""
-#: securitywarning.xhp
+#: 05210500.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN105FC\n"
+"05210500.xhp\n"
+"hd_id3151246\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\".\">Enable or disable the macros. Choose <emph>%PRODUCTNAME - Security</emph> in the Options dialog box to set the options.</ahelp>"
+msgid "Save Bitmap List"
+msgstr "Zgjedhni listën e adresave"
+
+#: 05210500.xhp
+msgctxt ""
+"05210500.xhp\n"
+"par_id3151385\n"
+"24\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_BITMAP:BTN_SAVE\">Saves the current list of bitmaps, so that you can load it later.</ahelp>"
msgstr ""
-#: securitywarning.xhp
+#: 05210600.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN1056E\n"
+"05210600.xhp\n"
+"tit\n"
"help.text"
-msgid "View Signature"
-msgstr "Nënshkrimi digjital"
+msgid "Shadow"
+msgstr "Hije"
-#: securitywarning.xhp
+#: 05210600.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN10572\n"
+"05210600.xhp\n"
+"bm_id3150014\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog where you can view the signature.</ahelp>"
+msgid "<bookmark_value>areas; shadows</bookmark_value><bookmark_value>shadows; areas</bookmark_value>"
msgstr ""
-#: securitywarning.xhp
+#: 05210600.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN10587\n"
+"05210600.xhp\n"
+"hd_id3150014\n"
+"1\n"
"help.text"
-msgid "Always trust macros from this source"
-msgstr "Gjithnjë i besoni makrove nga ky burim"
+msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
+msgstr ""
-#: securitywarning.xhp
+#: 05210600.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN1058B\n"
+"05210600.xhp\n"
+"par_id3155069\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Adds the current macro source to the list of <link href=\"text/shared/optionen/macrosecurity_ts.xhp\">trusted sources</link>.</ahelp>"
+msgid "<ahelp hid=\"HID_AREA_SHADOW\">Add a shadow to the selected drawing object, and define the properties of the shadow.</ahelp>"
msgstr ""
-#: securitywarning.xhp
+#: 05210600.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN1059C\n"
+"05210600.xhp\n"
+"hd_id3153748\n"
+"3\n"
"help.text"
-msgid "Enable Macros"
-msgstr "Aktivizo Makrot"
+msgid "Properties"
+msgstr "Vetitë"
-#: securitywarning.xhp
+#: 05210600.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN105A0\n"
+"05210600.xhp\n"
+"par_id3153345\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Allows macros in the document to run.</ahelp>"
+msgid "Set the properties of the shadow that you want to apply."
msgstr ""
-#: securitywarning.xhp
+#: 05210600.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN105A3\n"
+"05210600.xhp\n"
+"hd_id3150774\n"
+"5\n"
"help.text"
-msgid "Disable Macros"
-msgstr "Deaktivizo Makrot"
+msgid "Use shadow"
+msgstr "Ngjyrë e hijes"
-#: securitywarning.xhp
+#: 05210600.xhp
msgctxt ""
-"securitywarning.xhp\n"
-"par_idN105A7\n"
+"05210600.xhp\n"
+"par_id3154749\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\">Does not allow macros in the document to run.</ahelp>"
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_SHADOW:TSB_SHOW_SHADOW\">Adds a shadow to the selected drawing object.</ahelp>"
msgstr ""
-#: 05100700.xhp
+#: 05210600.xhp
msgctxt ""
-"05100700.xhp\n"
-"tit\n"
+"05210600.xhp\n"
+"hd_id3166460\n"
+"7\n"
"help.text"
-msgid "Bottom"
-msgstr "Poshtë"
+msgid "Position"
+msgstr "Pozicion"
-#: 05100700.xhp
+#: 05210600.xhp
msgctxt ""
-"05100700.xhp\n"
-"hd_id3150249\n"
-"1\n"
+"05210600.xhp\n"
+"par_id3146138\n"
+"8\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100700.xhp\" name=\"Bottom\">Bottom</link>"
+msgid "<ahelp hid=\"HID_TPSHADOW_CTRL\">Click where you want to cast the shadow.</ahelp>"
msgstr ""
-#: 05100700.xhp
+#: 05210600.xhp
msgctxt ""
-"05100700.xhp\n"
-"par_id3154764\n"
-"2\n"
+"05210600.xhp\n"
+"hd_id3154897\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\".uno:CellVertBottom\">Aligns the contents of the cell to the bottom edge of the cell.</ahelp>"
+msgid "Distance"
+msgstr "Distancë"
+
+#: 05210600.xhp
+msgctxt ""
+"05210600.xhp\n"
+"par_id3146847\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SHADOW:MTR_FLD_DISTANCE\">Enter the distance that you want the shadow to be offset from the selected object.</ahelp>"
msgstr ""
-#: 05100700.xhp
+#: 05210600.xhp
msgctxt ""
-"05100700.xhp\n"
-"par_id3149201\n"
-"122\n"
+"05210600.xhp\n"
+"hd_id3150276\n"
+"11\n"
"help.text"
-msgid "<variable id=\"zelleunten\">In the context menu of a cell, choose <emph>Cell - Bottom</emph></variable>"
+msgid "Color"
+msgstr "Ngjyra"
+
+#: 05210600.xhp
+msgctxt ""
+"05210600.xhp\n"
+"par_id3155829\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_SHADOW:LB_SHADOW_COLOR\">Select a color for the shadow.</ahelp>"
msgstr ""
-#: 06130200.xhp
+#: 05210600.xhp
msgctxt ""
-"06130200.xhp\n"
-"tit\n"
+"05210600.xhp\n"
+"hd_id3148992\n"
+"13\n"
"help.text"
-msgid "Organize Macros"
-msgstr "~Organizo Makrot"
+msgid "Transparency"
+msgstr "Transparencë"
-#: 06130200.xhp
+#: 05210600.xhp
msgctxt ""
-"06130200.xhp\n"
-"bm_id3237403\n"
+"05210600.xhp\n"
+"par_id3148642\n"
+"14\n"
"help.text"
-msgid "<bookmark_value>macros;organizing</bookmark_value><bookmark_value>organizing;macros and scripts</bookmark_value><bookmark_value>script organization</bookmark_value>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SHADOW:MTR_SHADOW_TRANSPARENT\">Enter a percentage from 0% (opaque) to 100% (transparent) to specify the transparency of the shadow.</ahelp>"
msgstr ""
-#: 06130200.xhp
+#: 05210600.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN1054B\n"
+"05210600.xhp\n"
+"hd_id3154810\n"
+"17\n"
"help.text"
-msgid "<variable id=\"organize_macros\"><link href=\"text/shared/01/06130200.xhp\">Organize Macros</link></variable>"
+msgid "Shadow"
+msgstr "Hije"
+
+#: 05210600.xhp
+msgctxt ""
+"05210600.xhp\n"
+"par_id3148924\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\".uno:FillShadow\">Adds a shadow to the selected object. If the object already has a shadow, the shadow is removed. If you click this icon when no object is selected, the shadow is added to the next object that you draw.</ahelp>"
msgstr ""
-#: 06130200.xhp
+#: 05210600.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN105B7\n"
+"05210600.xhp\n"
+"par_id3145068\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a submenu with links to dialogs where you can organize macros and scripts.</ahelp>"
+msgid "<image id=\"img_id3149045\" src=\"cmd/sc_fillshadow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149045\">Icon</alt></image>"
msgstr ""
-#: 06130200.xhp
+#: 05210600.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN1057F\n"
+"05210600.xhp\n"
+"par_id3154935\n"
+"16\n"
"help.text"
-msgid "<link href=\"text/shared/01/06130000.xhp\">%PRODUCTNAME Basic</link>"
+msgid "Shadow"
+msgstr "Hije"
+
+#: 05210700.xhp
+msgctxt ""
+"05210700.xhp\n"
+"tit\n"
+"help.text"
+msgid "Transparency"
+msgstr "Transparencë"
+
+#: 05210700.xhp
+msgctxt ""
+"05210700.xhp\n"
+"bm_id3146807\n"
+"help.text"
+msgid "<bookmark_value>transparency;areas</bookmark_value><bookmark_value>areas; transparency</bookmark_value>"
msgstr ""
-#: 06130200.xhp
+#: 05210700.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN105C3\n"
+"05210700.xhp\n"
+"hd_id3146807\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog where you can organize %PRODUCTNAME Basic macros.</ahelp>"
+msgid "<link href=\"text/shared/01/05210700.xhp\" name=\"Transparency\">Transparency</link>"
msgstr ""
-#: 06130200.xhp
+#: 05210700.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN105AA\n"
+"05210700.xhp\n"
+"par_id3149748\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/01/06130000.xhp#script\">JavaScript</link>"
+msgid "<ahelp hid=\".\">Set the transparency options for the fill that you apply to the selected object.</ahelp>"
msgstr ""
-#: 06130200.xhp
+#: 05210700.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN105BA\n"
+"05210700.xhp\n"
+"hd_id3152363\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog where you can organize scripts.</ahelp>"
+msgid "Transparency mode"
+msgstr "Modi piksel"
+
+#: 05210700.xhp
+msgctxt ""
+"05210700.xhp\n"
+"par_id3149283\n"
+"3\n"
+"help.text"
+msgid "Specify the type of transparency that you want to apply."
msgstr ""
-#: 06130200.xhp
+#: 05210700.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN10622\n"
+"05210700.xhp\n"
+"hd_id3148585\n"
+"4\n"
"help.text"
-msgid "<embedvar href=\"text/shared/guide/scripting.xhp#scripting\"/>"
+msgid "No transparency"
+msgstr "Pa transparencë"
+
+#: 05210700.xhp
+msgctxt ""
+"05210700.xhp\n"
+"par_id3147226\n"
+"5\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_OFF\">Turns off color transparency.</ahelp> This is the default setting."
msgstr ""
-#: 06130200.xhp
+#: 05210700.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN10597\n"
+"05210700.xhp\n"
+"hd_id3152425\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/shared/01/06130000.xhp#script\">BeanShell</link>"
+msgid "Transparency"
+msgstr "Transparencë"
+
+#: 05210700.xhp
+msgctxt ""
+"05210700.xhp\n"
+"par_id3150693\n"
+"7\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_LINEAR\">Turns on color transparency. Select this option, and then enter a number in the box, where 0% is fully opaque and 100% is fully transparent.</ahelp>"
msgstr ""
-#: 06130200.xhp
+#: 05210700.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN105A7\n"
+"05210700.xhp\n"
+"hd_id3155941\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog where you can organize scripts.</ahelp>"
+msgid "Transparency spin button"
+msgstr "Zëvendëso me butonin rrotullues"
+
+#: 05210700.xhp
+msgctxt ""
+"05210700.xhp\n"
+"par_id3155892\n"
+"15\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRANSPARENT\">Adjusts the transparency of the current fill color. Enter a number between 0% (opaque) and 100% (transparent).</ahelp>"
msgstr ""
-#: 06130200.xhp
+#: 05210700.xhp
msgctxt ""
-"06130200.xhp\n"
-"par_idN105FB\n"
+"05210700.xhp\n"
+"hd_id3149827\n"
+"11\n"
"help.text"
-msgid "<embedvar href=\"text/shared/guide/scripting.xhp#scripting\"/>"
+msgid "Gradient"
+msgstr "Shkallëzim"
+
+#: 05210700.xhp
+msgctxt ""
+"05210700.xhp\n"
+"par_id3155338\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_GRADIENT\">Applies a transparency gradient to the current fill color. Select this option, and then set the gradient properties.</ahelp>"
msgstr ""
-#: 05020300.xhp
+#: 05210700.xhp
msgctxt ""
-"05020300.xhp\n"
-"tit\n"
+"05210700.xhp\n"
+"hd_id3150443\n"
+"17\n"
"help.text"
-msgid "Numbers / Format"
-msgstr "Format tjetër"
+msgid "Type"
+msgstr "Tipi"
-#: 05020300.xhp
+#: 05210700.xhp
msgctxt ""
-"05020300.xhp\n"
-"bm_id3152942\n"
+"05210700.xhp\n"
+"par_id3149398\n"
+"18\n"
"help.text"
-msgid "<bookmark_value>formats; number and currency formats</bookmark_value><bookmark_value>number formats; formats</bookmark_value><bookmark_value>currencies;format codes</bookmark_value><bookmark_value>defaults; number formats</bookmark_value>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_TRANSPARENCE:LB_TRGR_GRADIENT_TYPES\">Select the type of transparency gradient that you want to apply.</ahelp>"
msgstr ""
-#: 05020300.xhp
+#: 05210700.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3152942\n"
-"1\n"
+"05210700.xhp\n"
+"hd_id3145317\n"
+"19\n"
"help.text"
-msgid "Numbers / Format"
-msgstr "Format tjetër"
+msgid "Center X"
+msgstr "Qendër"
-#: 05020300.xhp
+#: 05210700.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3145071\n"
-"2\n"
+"05210700.xhp\n"
+"par_id3155583\n"
+"20\n"
"help.text"
-msgid "<variable id=\"zahlen\"><ahelp hid=\".uno:TableNumberFormatDialog\">Specify the formatting options for the selected cell(s).</ahelp> </variable>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_X\">Enter the horizontal offset for the gradient.</ahelp>"
msgstr ""
-#: 05020300.xhp
+#: 05210700.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3155392\n"
-"3\n"
+"05210700.xhp\n"
+"hd_id3154897\n"
+"21\n"
"help.text"
-msgid "Category"
-msgstr "Kategori"
+msgid "Center Y"
+msgstr "Qendër"
-#: 05020300.xhp
+#: 05210700.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3150774\n"
-"4\n"
+"05210700.xhp\n"
+"par_id3159399\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUMBERFORMAT:LB_CATEGORY\">Select a category from the list, and then select a formatting style in the <emph>Format </emph>box.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_Y\">Enter the vertical offset for the gradient.</ahelp>"
msgstr ""
-#: 05020300.xhp
+#: 05210700.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3145416\n"
-"101\n"
+"05210700.xhp\n"
+"hd_id3158430\n"
+"23\n"
"help.text"
-msgid "The default currency format for a cell is determined by the regional settings of your operating system."
+msgid "Angle"
+msgstr "Këndi"
+
+#: 05210700.xhp
+msgctxt ""
+"05210700.xhp\n"
+"par_id3155829\n"
+"24\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_ANGLE\">Enter a rotation angle for the gradient.</ahelp>"
msgstr ""
-#: 05020300.xhp
+#: 05210700.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3155342\n"
-"5\n"
+"05210700.xhp\n"
+"hd_id3153320\n"
+"25\n"
"help.text"
-msgid "Format"
-msgstr "Formati"
+msgid "Border"
+msgstr "Kufiri"
-#: 05020300.xhp
+#: 05210700.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3148491\n"
-"6\n"
+"05210700.xhp\n"
+"par_id3149784\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\"HID_NUMBERFORMAT_LB_FORMAT\">Select how you want the contents of the selected cell(s) to be displayed.</ahelp> The code for the selected option is displayed in the <emph>Format Code</emph> box."
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_BORDER\">Enter the amount by which you want to adjust the transparent area of the gradient. The default value is 0%.</ahelp>"
msgstr ""
-#: 05020300.xhp
+#: 05210700.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3154811\n"
-"97\n"
+"05210700.xhp\n"
+"hd_id3144439\n"
+"26\n"
"help.text"
-msgid "Currency category list boxes"
+msgid "Start value"
+msgstr "~Vlera fillestare"
+
+#: 05210700.xhp
+msgctxt ""
+"05210700.xhp\n"
+"par_id3150117\n"
+"27\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_START_VALUE\">Enter a transparency value for the beginning point of the gradient, where 0% is fully opaque and 100% is fully transparent.</ahelp>"
msgstr ""
-#: 05020300.xhp
+#: 05210700.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3148563\n"
-"98\n"
+"05210700.xhp\n"
+"hd_id3152350\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUMBERFORMAT:LB_CURRENCY\">Select a currency, and then scroll to the top of the <emph>Format</emph> list to view the formatting options for the currency.</ahelp>"
+msgid "End value"
+msgstr "Vlerë ~përfundimtare"
+
+#: 05210700.xhp
+msgctxt ""
+"05210700.xhp\n"
+"par_id3148924\n"
+"29\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_END_VALUE\">Enter a transparency value for the endpoint of the gradient, where 0% is fully opaque and 100% is fully transparent.</ahelp>"
msgstr ""
-#: 05020300.xhp
+#: 05210700.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3150866\n"
-"99\n"
+"05210700.xhp\n"
+"hd_id3149575\n"
+"9\n"
"help.text"
-msgid "The format code for currencies uses the form [$xxx-nnn], where xxx is the currency symbol, and nnn the country code. Special banking symbols, such as EUR (for Euro), do not require the country code. The currency format is not dependent on the language that you select in the<emph> Language</emph> box."
+msgid "Preview"
+msgstr "Shikim paraprak"
+
+#: 05210700.xhp
+msgctxt ""
+"05210700.xhp\n"
+"par_id3149798\n"
+"10\n"
+"help.text"
+msgid "Use the preview to view your changes before you apply the transparency effect to the color fill of the selected object."
msgstr ""
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3154071\n"
-"23\n"
+"05220000.xhp\n"
+"tit\n"
"help.text"
-msgid "Language"
-msgstr "Gjuhë"
+msgid "Text"
+msgstr "Tekst"
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3154138\n"
-"24\n"
+"05220000.xhp\n"
+"bm_id3146856\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUMBERFORMAT:LB_LANGUAGE\">Specifies the language setting for the selected <switchinline select=\"appl\"><caseinline select=\"CALC\">cells </caseinline><defaultinline>fields</defaultinline></switchinline>. With the language set to <emph>Automatic</emph>, $[officename] automatically applies the number formats associated with the system default language. Select any language to fix the settings for the selected <switchinline select=\"appl\"><caseinline select=\"CALC\">cells </caseinline><defaultinline>fields</defaultinline></switchinline>.</ahelp>"
+msgid "<bookmark_value>text; text/draw objects</bookmark_value> <bookmark_value>draw objects; text in</bookmark_value> <bookmark_value>frames; text fitting to frames</bookmark_value>"
msgstr ""
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3157320\n"
-"102\n"
+"05220000.xhp\n"
+"hd_id3146856\n"
+"1\n"
"help.text"
-msgid "The language setting ensures that date and currency formats are preserved even when the document is opened in an operating system that uses a different default language setting."
+msgid "<link href=\"text/shared/01/05220000.xhp\" name=\"Text\">Text</link>"
msgstr ""
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3155995\n"
-"104\n"
+"05220000.xhp\n"
+"par_id3150279\n"
+"2\n"
"help.text"
-msgid "Source format"
-msgstr "Format tjetër"
+msgid "<ahelp hid=\"HID_PAGE_TEXTATTR\">Sets the layout and anchoring properties for text in the selected drawing or text object.</ahelp>"
+msgstr ""
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3144432\n"
-"105\n"
+"05220000.xhp\n"
+"par_id3154794\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_NUMBERFORMAT_CB_SOURCEFORMAT\">Uses the same number format as the cells containing the data for the chart.</ahelp>"
+msgid "The text is positioned relative to the edges of the drawing or text object."
msgstr ""
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3148451\n"
+"05220000.xhp\n"
+"hd_id3149031\n"
+"5\n"
+"help.text"
+msgid "Text"
+msgstr "Tekst"
+
+#: 05220000.xhp
+msgctxt ""
+"05220000.xhp\n"
+"hd_id3150445\n"
"7\n"
"help.text"
-msgid "Options"
-msgstr "Opcionet"
+msgid "Fit width to text"
+msgstr "Përshtate tekstin sipas kornizës"
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3148922\n"
+"05220000.xhp\n"
+"par_id3145629\n"
"8\n"
"help.text"
-msgid "Specify the options for the selected format."
+msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_AUTOGROW_WIDTH\">Expands the width of the object to the width of the text, if the object is smaller than the text.</ahelp>"
msgstr ""
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3153970\n"
+"05220000.xhp\n"
+"hd_id3149511\n"
"9\n"
"help.text"
-msgid "Decimal places"
-msgstr "Vendet decimale"
+msgid "Fit height to text"
+msgstr "Përshtate tekstin sipas kornizës"
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3154684\n"
+"05220000.xhp\n"
+"par_id3149640\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_NUMBERFORMAT:ED_DECIMALS\">Enter the number of decimal places that you want to display.</ahelp>"
+msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_AUTOGROW_HEIGHT\">Expands the height of the object to the height of the text, if the object is smaller than the text.</ahelp>"
msgstr ""
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3154819\n"
+"05220000.xhp\n"
+"hd_id3152867\n"
"11\n"
"help.text"
-msgid "Leading zeroes"
-msgstr ""
+msgid "Fit to frame"
+msgstr "Përshtate me Kornizë"
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3147352\n"
+"05220000.xhp\n"
+"par_id3147834\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_NUMBERFORMAT:ED_LEADZEROES\">Enter the maximum number of zeroes to display in front of the decimal point.</ahelp>"
+msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_FIT_TO_SIZE\">Resizes the text to fit the entire area of the drawing or text object.</ahelp>"
msgstr ""
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3155131\n"
-"13\n"
+"05220000.xhp\n"
+"hd_id3155892\n"
+"29\n"
"help.text"
-msgid "Negative numbers in red"
+msgid "Adjust to contour"
+msgstr "Shndërro në konturë"
+
+#: 05220000.xhp
+msgctxt ""
+"05220000.xhp\n"
+"par_id3153577\n"
+"30\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_TEXTATTR_TSB_CONTOUR\">Adapts the text flow so that it matches the contours of the selected drawing object.</ahelp>"
msgstr ""
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3159252\n"
+"05220000.xhp\n"
+"par_idN10705\n"
+"help.text"
+msgid "Word wrap text in shape"
+msgstr "Përshtat tekstin për formë"
+
+#: 05220000.xhp
+msgctxt ""
+"05220000.xhp\n"
+"par_idN10709\n"
+"help.text"
+msgid "<ahelp hid=\".\">Wraps the text that you add after double-clicking a custom shape to fit inside the shape.</ahelp>"
+msgstr ""
+
+#: 05220000.xhp
+msgctxt ""
+"05220000.xhp\n"
+"par_idN10720\n"
+"help.text"
+msgid "Resize shape to fit text"
+msgstr "Rritje automatike e formës për ta nxënë tekstin"
+
+#: 05220000.xhp
+msgctxt ""
+"05220000.xhp\n"
+"par_idN10724\n"
+"help.text"
+msgid "<ahelp hid=\".\">Resizes a custom shape to fit the text that you enter after double-clicking the shape.</ahelp>"
+msgstr ""
+
+#: 05220000.xhp
+msgctxt ""
+"05220000.xhp\n"
+"hd_id3154288\n"
+"13\n"
+"help.text"
+msgid "Spacing to borders"
+msgstr "Hapësira me përmbajtje"
+
+#: 05220000.xhp
+msgctxt ""
+"05220000.xhp\n"
+"par_id3151265\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_NUMBERFORMAT:BTN_NEGRED\">Changes the font color of negative numbers to red.</ahelp>"
+msgid "Specify the amount of space to leave between the edges of the drawing or text object and the borders of the text."
msgstr ""
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3147434\n"
+"05220000.xhp\n"
+"hd_id3150443\n"
"15\n"
"help.text"
-msgid "Use thousands separator"
-msgstr "Pa ndarës të mijësheve."
+msgid "Left"
+msgstr "Majtas"
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3146148\n"
+"05220000.xhp\n"
+"par_id3156113\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_NUMBERFORMAT:BTN_THOUSAND\">Inserts a separator between thousands. The type of separator that is used depends on your language settings.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_LEFT\">Enter the amount of space to leave between the left edge of the drawing or text object and the left border of the text.</ahelp>"
msgstr ""
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3150103\n"
+"05220000.xhp\n"
+"hd_id3155419\n"
"17\n"
"help.text"
-msgid "Format code"
-msgstr "Kodi i karakterit"
+msgid "Right"
+msgstr "Djathtas"
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3159156\n"
+"05220000.xhp\n"
+"par_id3155388\n"
"18\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_NUMBERFORMAT:ED_FORMAT\">Displays the number format code for the selected format. You can also enter a custom format.</ahelp> The following options are only available for user-defined number formats."
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_RIGHT\">Enter the amount of space to leave between the right edge of the drawing or text object and the right border of the text.</ahelp>"
msgstr ""
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3155311\n"
+"05220000.xhp\n"
+"hd_id3148926\n"
"19\n"
"help.text"
-msgid "Add"
-msgstr "Shto"
+msgid "Top"
+msgstr "Lartë"
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3147219\n"
+"05220000.xhp\n"
+"par_id3157808\n"
"20\n"
"help.text"
-msgid "<ahelp hid=\"HID_NUMBERFORMAT_TBI_ADD\">Adds the number format code that you entered to the user-defined category.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_TOP\">Enter the amount of space to leave between the top edge of the drawing or text object and the upper border of the text.</ahelp>"
msgstr ""
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3149263\n"
+"05220000.xhp\n"
+"hd_id3149237\n"
"21\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "Bottom"
+msgstr "Poshtë"
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3154150\n"
+"05220000.xhp\n"
+"par_id3159342\n"
"22\n"
"help.text"
-msgid "<ahelp hid=\"HID_NUMBERFORMAT_TBI_REMOVE\">Deletes the selected number format.</ahelp> The changes are effective after you restart $[officename]."
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_TEXTATTR_MTR_FLD_BOTTOM\">Enter the amount of space to leave between the bottom edge of the drawing or text object and the lower border of the text.</ahelp>"
msgstr ""
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3153573\n"
-"26\n"
+"05220000.xhp\n"
+"hd_id3149192\n"
+"23\n"
"help.text"
-msgid "Edit Comment"
-msgstr "Edito komentin..."
+msgid "Text anchor"
+msgstr "Spirancar<->Tekst"
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3083444\n"
-"27\n"
+"05220000.xhp\n"
+"par_id3155179\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\"HID_NUMBERFORMAT_TBI_INFO\">Adds a comment to the selected number format.</ahelp>"
-msgstr ""
+msgid "Set the anchor type and the anchor position."
+msgstr "Cakto pozitën dhe madhësinë për %O"
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"hd_id3150332\n"
-"95\n"
+"05220000.xhp\n"
+"hd_id3154381\n"
+"25\n"
"help.text"
-msgid "Name line"
-msgstr "Stili i linjës"
+msgid "Graphic field"
+msgstr "Emri i fushës"
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3156060\n"
-"96\n"
+"05220000.xhp\n"
+"par_id3155504\n"
+"26\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_NUMBERFORMAT:ED_COMMENT\">Enter a comment for the selected number format, and then click outside this box.</ahelp>"
+msgid "<ahelp hid=\"HID_TEXTATTR_CTL_POSITION\">Click where you want to place the anchor for the text.</ahelp>"
msgstr ""
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3145364\n"
+"05220000.xhp\n"
+"hd_id3155323\n"
+"27\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"Number format codes\">Number format codes</link>"
-msgstr ""
+msgid "Full width"
+msgstr "Gjerësia e plotë"
-#: 05020300.xhp
+#: 05220000.xhp
msgctxt ""
-"05020300.xhp\n"
-"par_id3153095\n"
+"05220000.xhp\n"
+"par_id3150244\n"
+"28\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020301.xhp\" name=\"Custom format codes\">Custom format codes</link>"
+msgid "<ahelp hid=\".\">Anchors the text to the full width of the drawing object or text object.</ahelp>"
msgstr ""
-#: 05260000.xhp
+#: 05230000.xhp
msgctxt ""
-"05260000.xhp\n"
+"05230000.xhp\n"
"tit\n"
"help.text"
-msgid "Anchor"
-msgstr "Spiranca"
+msgid "Position and Size"
+msgstr "Pozita dhe Madhësia"
-#: 05260000.xhp
+#: 05230000.xhp
msgctxt ""
-"05260000.xhp\n"
-"hd_id3155913\n"
+"05230000.xhp\n"
+"hd_id3152790\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05260000.xhp\" name=\"Anchoring\">Anchor</link>"
+msgid "<link href=\"text/shared/01/05230000.xhp\" name=\"Position and Size\">Position and Size</link>"
msgstr ""
-#: 05260000.xhp
+#: 05230000.xhp
msgctxt ""
-"05260000.xhp\n"
-"par_id3145356\n"
+"05230000.xhp\n"
+"par_id3157552\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Sets the anchoring options for the selected object.</ahelp>"
+msgid "<variable id=\"groessetext\"><ahelp hid=\".uno:TransformDialog\">Resizes, moves, rotates, or slants the selected object.</ahelp></variable>"
msgstr ""
-#: 05260000.xhp
+#: 05230100.xhp
msgctxt ""
-"05260000.xhp\n"
-"par_id3150789\n"
-"3\n"
+"05230100.xhp\n"
+"tit\n"
"help.text"
-msgid "If the selected object is in a frame, you can also anchor the object to the frame."
-msgstr ""
+msgid "Position and Size"
+msgstr "Pozita dhe Madhësia"
-#: 02230150.xhp
+#: 05230100.xhp
msgctxt ""
-"02230150.xhp\n"
-"tit\n"
+"05230100.xhp\n"
+"bm_id3154350\n"
"help.text"
-msgid "Protect Records"
-msgstr "Regjistrat e Mbrojtur"
+msgid "<bookmark_value>positioning;draw objects and controls</bookmark_value><bookmark_value>draw objects;positioning and resizing</bookmark_value><bookmark_value>controls; positions and sizes</bookmark_value><bookmark_value>sizes;draw objects</bookmark_value><bookmark_value>anchors;types/positions for draw objects</bookmark_value><bookmark_value>draw objects; anchoring</bookmark_value>"
+msgstr ""
-#: 02230150.xhp
+#: 05230100.xhp
msgctxt ""
-"02230150.xhp\n"
-"hd_id3154349\n"
+"05230100.xhp\n"
+"hd_id3154350\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230150.xhp\" name=\"Protect Records\">Protect Records</link>"
+msgid "<link href=\"text/shared/01/05230100.xhp\" name=\"Position and Size\">Position and Size</link>"
msgstr ""
-#: 02230150.xhp
+#: 05230100.xhp
msgctxt ""
-"02230150.xhp\n"
-"par_id3150794\n"
+"05230100.xhp\n"
+"par_id3153255\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:ProtectTraceChangeMode\">Prevents a user from deactivating the record changes feature, or from accepting or rejecting changes unless the user enters a password.</ahelp>"
+msgid "<ahelp hid=\".\">Resizes or moves the selected object.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"tit\n"
+"05230100.xhp\n"
+"hd_id3158405\n"
+"3\n"
"help.text"
-msgid "Font Effects"
-msgstr "Efektet e fontit"
+msgid "Position"
+msgstr "Pozicion"
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"bm_id3153514\n"
+"05230100.xhp\n"
+"par_id3159201\n"
+"4\n"
"help.text"
-msgid "<bookmark_value>fonts;effects</bookmark_value> <bookmark_value>formatting; font effects</bookmark_value> <bookmark_value>characters; font effects</bookmark_value> <bookmark_value>text; font effects</bookmark_value> <bookmark_value>effects; fonts</bookmark_value> <bookmark_value>underlining; text</bookmark_value> <bookmark_value>capital letters; font effects</bookmark_value> <bookmark_value>lowercase letters; font effects</bookmark_value> <bookmark_value>titles; font effects</bookmark_value> <bookmark_value>small capitals</bookmark_value> <bookmark_value>strikethrough; font effects</bookmark_value> <bookmark_value>fonts; strikethrough</bookmark_value> <bookmark_value>outlines; font effects</bookmark_value> <bookmark_value>fonts; outlines</bookmark_value> <bookmark_value>shadows; characters</bookmark_value> <bookmark_value>fonts; shadows</bookmark_value> <bookmark_value>fonts;color ignored</bookmark_value> <bookmark_value>ignored font colors</bookmark_value> <bookmark_value>colors;ignored text color</bookmark_value>"
+msgid "Specify the location of the selected object on the page."
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3153514\n"
-"1\n"
+"05230100.xhp\n"
+"hd_id3157896\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020200.xhp\" name=\"Font Effects\">Font Effects</link>"
-msgstr ""
+msgid "Position X"
+msgstr "Pozicion"
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3149205\n"
-"2\n"
+"05230100.xhp\n"
+"par_id3155616\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/EffectsPage\">Specify the font effects that you want to use.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_POS_X\">Enter the horizontal distance that you want to move the object relative to the base point selected in the grid.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3149482\n"
-"81\n"
+"05230100.xhp\n"
+"hd_id3151226\n"
+"7\n"
"help.text"
-msgid "Font Color"
-msgstr "Ngjyra e Fontit"
+msgid "Position Y"
+msgstr "Pozicion"
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3146924\n"
-"82\n"
+"05230100.xhp\n"
+"par_id3147373\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/fontcolorlb\">Sets the color for the selected text. If you select<emph> Automatic</emph>, the text color is set to black for light backgrounds and to white for dark backgrounds.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_POS_Y\">Enter the vertical distance that you want to move the object relative to the base point selected in the grid.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_idN10CC2\n"
+"05230100.xhp\n"
+"hd_id3147834\n"
+"9\n"
"help.text"
-msgid "To change the color of a text selection, select the text that you want to change, and click the <emph>Font Color</emph> icon. To apply a different color, click the arrow next to the <emph>Font Color</emph> icon, and then select the color that you want to use."
-msgstr ""
+msgid "Base point"
+msgstr "Shëni pikën"
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_idN10CC9\n"
+"05230100.xhp\n"
+"par_id3147008\n"
+"10\n"
"help.text"
-msgid "If you click the <emph>Font Color</emph> icon before you select text, the paint can cursor appears. To change the color of text, select the text with the paint can cursor. To change the color of a single word, double-click in a word. To apply a different color, click the arrow next to the <emph>Font Color</emph> icon, and then select the color that you want to use."
+msgid "<ahelp hid=\"HID_TPPOSITION_CTRL\">Click a base point in the grid, and then enter the amount that you want to shift the object relative to the base point that you selected in the <emph>Position Y</emph> and <emph>Position X</emph> boxes. The base points correspond to the selection handles on an object.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_idN10CD6\n"
+"05230100.xhp\n"
+"hd_id3155942\n"
+"19\n"
"help.text"
-msgid "To undo the last change, right-click."
+msgid "Size"
+msgstr "Madhësia"
+
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"par_id3150774\n"
+"20\n"
+"help.text"
+msgid "Specify the amount by which you want to resize the selected object with respect to the selected base point ."
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_idN10CDA\n"
+"05230100.xhp\n"
+"hd_id3143267\n"
+"21\n"
"help.text"
-msgid "To exit the paint can mode, click once, or press the Escape key."
+msgid "Width"
+msgstr "Gjerësia"
+
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"par_id3149811\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_WIDTH\">Enter a width for the selected object.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3150037\n"
-"85\n"
+"05230100.xhp\n"
+"hd_id3150443\n"
+"23\n"
"help.text"
-msgid "The text color is ignored when printing, if the <emph>Print black</emph> check box is selected in <link href=\"text/shared/optionen/01040400.xhp\" name=\"Writer - Print\"><emph>%PRODUCTNAME Writer - Print</emph></link> in the Options dialog box."
+msgid "Height"
+msgstr "Lartësia"
+
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"par_id3147209\n"
+"24\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_POSITION_SIZE_MTR_FLD_HEIGHT\">Enter a height for the selected object.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id7613757\n"
+"05230100.xhp\n"
+"hd_id3149796\n"
+"25\n"
"help.text"
-msgid "The text color is ignored on screen, if the <emph>Use automatic font color for screen display</emph> check box is selected in <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - </emph><link href=\"text/shared/optionen/01013000.xhp\"><emph>%PRODUCTNAME - Accessibility</emph></link>."
+msgid "Keep ratio"
+msgstr "Mbaje përpjestimin"
+
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"par_id3155341\n"
+"26\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_POSITION_SIZE_CBX_SCALE\">Maintains proportions when you resize the selected object.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3144766\n"
-"84\n"
+"05230100.xhp\n"
+"hd_id3148686\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\".uno:FontColor\" visibility=\"hidden\"><variable id=\"textfarbe\">Click to apply the current font color to the selected characters. You can also click here, and then drag a selection to change the text color. Click the arrow next to the icon to open the Font color toolbar.</variable></ahelp>"
+msgid "Base point"
+msgstr "Shëni pikën"
+
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"par_id3154897\n"
+"30\n"
+"help.text"
+msgid "<ahelp hid=\"HID_TPSIZE_CTRL\">Click a base point in the grid, and then enter the new size dimensions for the selected object in the <emph>Width</emph> and <emph>Height</emph> boxes.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3146137\n"
-"3\n"
+"05230100.xhp\n"
+"hd_id3148990\n"
+"17\n"
"help.text"
-msgid "Effects"
-msgstr "Efektet"
+msgid "Protect"
+msgstr "Mbroj"
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3150084\n"
-"64\n"
+"05230100.xhp\n"
+"hd_id3153698\n"
+"37\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/effectslb\">Select the font effects that you want to apply.</ahelp>"
+msgid "Position"
+msgstr "Pozicion"
+
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"par_id3149784\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_POSPROTECT\">Prevents changes to the position or the size of the selected object.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3149575\n"
-"65\n"
+"05230100.xhp\n"
+"hd_id3153254\n"
+"27\n"
"help.text"
-msgid "Effects"
-msgstr "Efektet"
+msgid "Size"
+msgstr "Madhësia"
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3148944\n"
-"66\n"
+"05230100.xhp\n"
+"par_id3152349\n"
+"28\n"
"help.text"
-msgid "The following capitalization effects are available:"
+msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_SIZEPROTECT\">Prevents you from resizing the object.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3155922\n"
-"67\n"
+"05230100.xhp\n"
+"hd_id3149275\n"
+"11\n"
"help.text"
-msgid "Without - no effect is applied"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Anchoring </caseinline></switchinline>"
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3154280\n"
-"68\n"
+"05230100.xhp\n"
+"par_id3147531\n"
+"12\n"
"help.text"
-msgid "Capitals - changes the selected lowercase characters to uppercase characters"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Set the anchoring options for the selected object. </caseinline></switchinline>"
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3148947\n"
-"69\n"
+"05230100.xhp\n"
+"hd_id3151246\n"
+"13\n"
"help.text"
-msgid "Lowercase - changes the selected uppercase characters to lower characters"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Anchor </caseinline></switchinline>"
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3149456\n"
-"71\n"
+"05230100.xhp\n"
+"par_id3154758\n"
+"14\n"
"help.text"
-msgid "Title font - changes the first character of each selected word to an uppercase character"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_POSITION_SIZE_LB_ANCHOR\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Select the type of anchor for the selected object. </caseinline></switchinline></ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3154937\n"
-"70\n"
+"05230100.xhp\n"
+"hd_id3149295\n"
+"15\n"
"help.text"
-msgid "Small capitals - changes the selected lowercase characters to uppercase characters, and then reduces their size"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Position </caseinline></switchinline>"
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3154129\n"
-"76\n"
+"05230100.xhp\n"
+"par_id3154935\n"
+"16\n"
"help.text"
-msgid "Relief"
-msgstr "Relief"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_POSITION_SIZE_LB_ORIENT\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Specifies the position of the anchor in relation to the character height. </caseinline></switchinline></ahelp>"
+msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3146974\n"
-"77\n"
+"05230100.xhp\n"
+"hd_id3153525\n"
+"31\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/relieflb\">Select a relief effect to apply to the selected text. The embossed relief makes the characters appear as if they are raised above the page. The engraved relief makes the characters appear as if they are pressed into the page.</ahelp>"
+msgid "Adapt"
+msgstr "Adapto objektet..."
+
+#: 05230100.xhp
+msgctxt ""
+"05230100.xhp\n"
+"par_id31512110\n"
+"help.text"
+msgid "Specifies, if the size of a drawing object should be adjusted to fit the size of entered text."
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3147287\n"
-"72\n"
+"05230100.xhp\n"
+"hd_id3151042\n"
+"33\n"
"help.text"
-msgid "Outline"
-msgstr "Konturë"
+msgid "Fit width to text"
+msgstr "Përshtate tekstin sipas kornizës"
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3159126\n"
-"73\n"
+"05230100.xhp\n"
+"par_id31591510\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/outlinecb\">Displays the outline of the selected characters. This effect does not work with every font.</ahelp>"
+msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_AUTOGROW_WIDTH\">Expands the width of the object to the width of the text, if the object is smaller than the text.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3163714\n"
-"74\n"
+"05230100.xhp\n"
+"hd_id3145746\n"
+"35\n"
"help.text"
-msgid "Shadow"
-msgstr "Hije"
+msgid "Fit height to text"
+msgstr "Përshtate tekstin sipas kornizës"
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3150962\n"
-"75\n"
+"05230100.xhp\n"
+"par_id31540680\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/shadowcb\">Adds a shadow that casts below and to the right of the selected characters.</ahelp>"
+msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_POSITION_SIZE_TSB_AUTOGROW_HEIGHT\">Expands the height of the object to the height of the text, if the object is smaller than the text.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230100.xhp
msgctxt ""
-"05020200.xhp\n"
-"bm_id410168\n"
+"05230100.xhp\n"
+"par_id3145606\n"
"help.text"
-msgid "<bookmark_value>blinking fonts</bookmark_value> <bookmark_value>flashing fonts</bookmark_value>"
+msgid "<link href=\"text/shared/01/05260000.xhp\" name=\"Anchor types\">Anchor types</link>"
msgstr ""
-#: 05020200.xhp
+#: 05230300.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3152941\n"
-"15\n"
+"05230300.xhp\n"
+"tit\n"
"help.text"
-msgid "Blinking"
-msgstr "Duke Pulsuar"
+msgid "Rotation"
+msgstr "Rrotullim"
-#: 05020200.xhp
+#: 05230300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3145662\n"
-"16\n"
+"05230300.xhp\n"
+"hd_id3149741\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/blinkingcb\">Makes the selected characters blink. You cannot change the blink frequency.</ahelp>"
+msgid "<link href=\"text/shared/01/05230300.xhp\" name=\"Rotation\">Rotation</link>"
msgstr ""
-#: 05020200.xhp
+#: 05230300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_idN10B81\n"
+"05230300.xhp\n"
+"par_id3146873\n"
+"2\n"
"help.text"
-msgid "Hidden"
-msgstr "i fshehtë"
+msgid "<ahelp hid=\"HID_TRANS_ANGLE\">Rotates the selected object.</ahelp>"
+msgstr ""
-#: 05020200.xhp
+#: 05230300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_idN10B85\n"
+"05230300.xhp\n"
+"hd_id3148983\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/hiddencb\">Hides the selected characters.</ahelp> To display the hidden text, ensure that <emph>Non-printing Characters</emph> is selected in the <emph>View</emph> menu. You can also choose <switchinline select=\"sys\"><caseinline select=\"MAC\"><emph>%PRODUCTNAME - Preferences</emph></caseinline><defaultinline><emph>Tools - Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - Formatting Aids</emph> and select <emph>Hidden text</emph>."
+msgid "Pivot point"
+msgstr "Shëni pikën"
+
+#: 05230300.xhp
+msgctxt ""
+"05230300.xhp\n"
+"par_id3150902\n"
+"4\n"
+"help.text"
+msgid "The selected object is rotated around a pivot point that you specify. The default pivot point is at the center of the object."
msgstr ""
-#: 05020200.xhp
+#: 05230300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id0123200902291084\n"
+"05230300.xhp\n"
+"par_id3153528\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\"><emph>Overlines or removes overlining from the selected text. If the cursor is not in a word, the new text that you enter is overlined.</emph></ahelp>"
+msgid "If you set a pivot point too far outside of the object boundaries, the object could be rotated off of the page."
msgstr ""
-#: 05020200.xhp
+#: 05230300.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id0123200902243376\n"
+"05230300.xhp\n"
+"hd_id3145382\n"
+"5\n"
"help.text"
-msgid "Overlining"
-msgstr "Kernimi"
+msgid "X Position"
+msgstr "Pozita X"
-#: 05020200.xhp
+#: 05230300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id0123200902243343\n"
+"05230300.xhp\n"
+"par_id3166410\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/overlinelb\">Select the overlining style that you want to apply. To apply the overlining to words only, select the <emph>Individual Words</emph> box.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ANGLE:MTR_FLD_POS_X\">Enter the horizontal distance from the left edge of the page to the pivot point.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230300.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id0123200902243470\n"
+"05230300.xhp\n"
+"hd_id3155323\n"
+"7\n"
"help.text"
-msgid "Overline color"
-msgstr "Ngjyra e vijës"
+msgid "Y Position"
+msgstr "Pozita Y"
-#: 05020200.xhp
+#: 05230300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id0123200902243466\n"
+"05230300.xhp\n"
+"par_id3150669\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/overlinecolorlb\">Select the color for the overlining.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ANGLE:MTR_FLD_POS_Y\">Enter the vertical distance from the top edge of the page to the pivot point.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230300.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3150400\n"
-"43\n"
+"05230300.xhp\n"
+"hd_id3153332\n"
+"9\n"
"help.text"
-msgid "Strikethrough"
-msgstr "Vizuar nëpërmes"
+msgid "Defaults"
+msgstr "Standarde"
-#: 05020200.xhp
+#: 05230300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3145203\n"
-"44\n"
+"05230300.xhp\n"
+"par_id3143270\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/strikeoutlb\">Select a strikethrough style for the selected text.</ahelp>"
+msgid "<ahelp hid=\"HID_TPROTATION_CTRL1\">Click where you want to place the pivot point.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3150496\n"
-"48\n"
+"05230300.xhp\n"
+"hd_id3146847\n"
+"11\n"
"help.text"
-msgid "If you save your document in MS Word format, all of the strikethrough styles are converted to the single line style."
+msgid "Rotation angle"
+msgstr "Këndi i rrotullimit"
+
+#: 05230300.xhp
+msgctxt ""
+"05230300.xhp\n"
+"par_id3156155\n"
+"12\n"
+"help.text"
+msgid "Specify the number of degrees that you want to rotate the selected object, or click in the rotation grid."
msgstr ""
-#: 05020200.xhp
+#: 05230300.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3151226\n"
-"41\n"
+"05230300.xhp\n"
+"hd_id3154173\n"
+"13\n"
"help.text"
-msgid "Underlining"
+msgid "Angle"
+msgstr "Këndi"
+
+#: 05230300.xhp
+msgctxt ""
+"05230300.xhp\n"
+"par_id3147573\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ANGLE:MTR_FLD_ANGLE\">Enter the number of degrees that you want to rotate the selected object.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230300.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3147576\n"
-"42\n"
+"05230300.xhp\n"
+"hd_id3148474\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/underlinelb\">Select the underlining style that you want to apply. To apply the underlining to words only, select the <emph>Individual Words</emph> box.</ahelp>"
+msgid "Defaults"
+msgstr "Standarde"
+
+#: 05230300.xhp
+msgctxt ""
+"05230300.xhp\n"
+"par_id3154811\n"
+"16\n"
+"help.text"
+msgid "<ahelp hid=\"HID_TPROTATION_CTRL2\">Click to specify the rotation angle in multiples of 45 degrees.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3153147\n"
-"58\n"
+"05230400.xhp\n"
+"tit\n"
"help.text"
-msgid "If you apply underlining to a superscript text, the underlining is raised to the level of the superscript. If the superscript is contained in a word with normal text, the underlining is not raised."
+msgid "Slant & Corner Radius"
+msgstr "Ndrysho rrezen me %O"
+
+#: 05230400.xhp
+msgctxt ""
+"05230400.xhp\n"
+"bm_id3149988\n"
+"help.text"
+msgid "<bookmark_value>slanting draw objects</bookmark_value><bookmark_value>draw objects; slanting</bookmark_value><bookmark_value>areas; slanting</bookmark_value>"
msgstr ""
-#: 05020200.xhp
+#: 05230400.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3148642\n"
-"78\n"
+"05230400.xhp\n"
+"hd_id3149988\n"
+"1\n"
"help.text"
-msgid "Underline color"
-msgstr "Nënvizim"
+msgid "<link href=\"text/shared/01/05230400.xhp\" name=\"Slant & Corner Radius\">Slant & Corner Radius</link>"
+msgstr ""
-#: 05020200.xhp
+#: 05230400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3150254\n"
-"79\n"
+"05230400.xhp\n"
+"par_id3154788\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/underlinecolorlb\">Select the color for the underlining.</ahelp>"
+msgid "<ahelp hid=\"HID_TRANS_SLANT\">Slants the selected object, or rounds the corners of a rectangular object.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230400.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3153104\n"
-"45\n"
+"05230400.xhp\n"
+"hd_id3154497\n"
+"3\n"
"help.text"
-msgid "Individual words"
-msgstr "Falët e veçanta"
+msgid "Corner Radius"
+msgstr "Rrezja e këndit"
-#: 05020200.xhp
+#: 05230400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3152935\n"
-"46\n"
+"05230400.xhp\n"
+"par_id3156027\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/individualwordscb\">Applies the selected effect only to words and ignores spaces.</ahelp>"
+msgid "You can only round the corners of a rectangular object."
msgstr ""
-#: 05020200.xhp
+#: 05230400.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3150332\n"
-"60\n"
+"05230400.xhp\n"
+"hd_id3153935\n"
+"5\n"
"help.text"
-msgid "Emphasis mark"
-msgstr "Shenjë theksimi"
+msgid "Radius"
+msgstr "Radius"
-#: 05020200.xhp
+#: 05230400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3152576\n"
-"61\n"
+"05230400.xhp\n"
+"par_id3147373\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/emphasislb\">Select a character to display over or below the entire length of the selected text.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SLANT:MTR_FLD_RADIUS\">Enter the radius of the circle that you want to use to round the corners.</ahelp>"
msgstr ""
-#: 05020200.xhp
+#: 05230400.xhp
msgctxt ""
-"05020200.xhp\n"
-"hd_id3152460\n"
-"62\n"
+"05230400.xhp\n"
+"hd_id3145090\n"
+"7\n"
"help.text"
-msgid "Position"
-msgstr "Pozicion"
+msgid "Slant"
+msgstr "Shtrembëro %O (pjerrtësi)"
-#: 05020200.xhp
+#: 05230400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3147436\n"
-"63\n"
+"05230400.xhp\n"
+"par_id3153345\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/effectspage/positionlb\">Specify where to display the emphasis marks.</ahelp>"
+msgid "Slants the selected object along an axis that you specify."
msgstr ""
-#: 05020200.xhp
+#: 05230400.xhp
msgctxt ""
-"05020200.xhp\n"
-"par_id3151053\n"
+"05230400.xhp\n"
+"hd_id3154983\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/shared/optionen/01010500.xhp\" name=\"$[officename] color tables\">$[officename] color tables</link>"
+msgid "Angle"
+msgstr "Këndi"
+
+#: 05230400.xhp
+msgctxt ""
+"05230400.xhp\n"
+"par_id3153683\n"
+"10\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SLANT:MTR_FLD_ANGLE\">Enter the angle of the slant axis.</ahelp>"
msgstr ""
-#: 01140000.xhp
+#: 05230500.xhp
msgctxt ""
-"01140000.xhp\n"
+"05230500.xhp\n"
"tit\n"
"help.text"
-msgid "Printer Setup"
-msgstr "Regullimi i shtypësit"
+msgid "Callout"
+msgstr "Thirrje"
-#: 01140000.xhp
+#: 05230500.xhp
msgctxt ""
-"01140000.xhp\n"
-"bm_id3147294\n"
+"05230500.xhp\n"
+"bm_id3149038\n"
"help.text"
-msgid "<bookmark_value>printers; properties</bookmark_value><bookmark_value>settings; printers</bookmark_value><bookmark_value>properties; printers</bookmark_value><bookmark_value>default printer; setting up</bookmark_value><bookmark_value>printers; default printer</bookmark_value><bookmark_value>page formats; restriction</bookmark_value>"
+msgid "<bookmark_value>legends; draw objects</bookmark_value><bookmark_value>draw objects; legends</bookmark_value><bookmark_value>labels;for draw objects</bookmark_value><bookmark_value>labels, see also names/callouts</bookmark_value><bookmark_value>captions, see also labels/callouts</bookmark_value><bookmark_value>names, see also labels/callouts</bookmark_value>"
msgstr ""
-#: 01140000.xhp
+#: 05230500.xhp
msgctxt ""
-"01140000.xhp\n"
-"hd_id3147294\n"
+"05230500.xhp\n"
+"hd_id3149038\n"
"1\n"
"help.text"
-msgid "Printer Setup"
-msgstr "Regullimi i shtypësit"
+msgid "<link href=\"text/shared/01/05230500.xhp\" name=\"Callout\">Callout</link>"
+msgstr ""
-#: 01140000.xhp
+#: 05230500.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3154422\n"
+"05230500.xhp\n"
+"par_id3155069\n"
"2\n"
"help.text"
-msgid "<variable id=\"druckereinstellungtext\"><ahelp hid=\"SVTOOLS:MODALDIALOG:DLG_SVT_PRNDLG_PRNSETUPDLG\">Select the default printer for the current document.</ahelp></variable>"
+msgid "Specify the properties of the selected callout."
msgstr ""
-#: 01140000.xhp
+#: 05230500.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3148620\n"
-"20\n"
+"05230500.xhp\n"
+"par_id368358\n"
"help.text"
-msgid "You might experience a slight delay when you change the default printer for a document that contains embedded $[officename] OLE objects."
+msgid "These callouts are a legacy of the first versions of %PRODUCTNAME. You must customize a toolbar or menu to insert these callouts. The newer custom shape callouts offer more features, for example a Callouts toolbar <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Icon</alt></image> where you can select the shape."
msgstr ""
-#: 01140000.xhp
+#: 05230500.xhp
msgctxt ""
-"01140000.xhp\n"
-"hd_id3145345\n"
-"4\n"
+"05230500.xhp\n"
+"hd_id3151330\n"
+"3\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Printer </caseinline></switchinline>"
-msgstr ""
+msgid "Callout Styles"
+msgstr "Stilet e grafikave"
-#: 01140000.xhp
+#: 05230500.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3145211\n"
-"5\n"
+"05230500.xhp\n"
+"par_id3149760\n"
+"4\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Lists the information that applies to the selected printer. </caseinline></switchinline>"
+msgid "<ahelp hid=\"HID_CAPTION_CTL_TYPE\">Click the <emph>Callout</emph> style that you want to apply to the selected callout.</ahelp>"
msgstr ""
-#: 01140000.xhp
+#: 05230500.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3148538\n"
-"19\n"
+"05230500.xhp\n"
+"hd_id3149798\n"
+"5\n"
"help.text"
-msgid "If the list is empty, you need to install a default printer for your operating system. Refer to the online help for your operating system for instructions on how to install and setup a default printer."
-msgstr ""
+msgid "Spacing"
+msgstr "Hapësira"
-#: 01140000.xhp
+#: 05230500.xhp
msgctxt ""
-"01140000.xhp\n"
-"hd_id3154381\n"
+"05230500.xhp\n"
+"par_id3147399\n"
"6\n"
"help.text"
-msgid "Name"
-msgstr "Emri"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_CAPTION:MF_ABSTAND\">Enter the amount of space that you want to leave between the end of the callout line, and the callout box.</ahelp>"
+msgstr ""
-#: 01140000.xhp
+#: 05230500.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3156155\n"
+"05230500.xhp\n"
+"hd_id3151226\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS:LISTBOX:DLG_SVT_PRNDLG_PRNSETUPDLG:LB_NAMES\">Lists the installed printers on your operating system. To change the default printer, select a printer name from the list.</ahelp>"
-msgstr ""
+msgid "Extension"
+msgstr "Ekstenzioni:"
-#: 01140000.xhp
+#: 05230500.xhp
msgctxt ""
-"01140000.xhp\n"
-"hd_id3156153\n"
+"05230500.xhp\n"
+"par_id3148620\n"
"8\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Status </caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_CAPTION:LB_ANSATZ_REL\">Select where you want to extend the callout line from, in relation to the callout box.</ahelp>"
msgstr ""
-#: 01140000.xhp
+#: 05230500.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3150465\n"
+"05230500.xhp\n"
+"hd_id3153311\n"
"9\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Describes the current status of the selected printer. </caseinline></switchinline>"
-msgstr ""
+msgid "Length"
+msgstr "Gjatësi"
-#: 01140000.xhp
+#: 05230500.xhp
msgctxt ""
-"01140000.xhp\n"
-"hd_id3154898\n"
+"05230500.xhp\n"
+"par_id3145313\n"
"10\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Type </caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_CAPTION:MF_LAENGE\">Enter the length of the callout line segment that extends from the callout box to the inflection point of the line.</ahelp>"
msgstr ""
-#: 01140000.xhp
+#: 05230500.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3156326\n"
+"05230500.xhp\n"
+"par_id3159269\n"
"11\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Displays the type of printer that you selected. </caseinline></switchinline>"
+msgid "The <emph>Length </emph>box is only available if you select the <emph>Angled connector line</emph> callout style, and leave the <emph>Optimal </emph>checkbox cleared."
msgstr ""
-#: 01140000.xhp
+#: 05230500.xhp
msgctxt ""
-"01140000.xhp\n"
-"hd_id3149416\n"
+"05230500.xhp\n"
+"hd_id3149820\n"
"12\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Location </caseinline></switchinline>"
-msgstr ""
+msgid "Optimal"
+msgstr "Optimale"
-#: 01140000.xhp
+#: 05230500.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3149955\n"
+"05230500.xhp\n"
+"par_id3147210\n"
"13\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Displays the port for the selected printer. </caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_CAPTION:CB_LAENGE\">Click here to display a single-angled line in an optimal way.</ahelp>"
msgstr ""
-#: 01140000.xhp
+#: 05240000.xhp
msgctxt ""
-"01140000.xhp\n"
-"hd_id3145316\n"
-"14\n"
+"05240000.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Comments </caseinline></switchinline>"
-msgstr ""
+msgid "Flip"
+msgstr "Rrotullo"
-#: 01140000.xhp
+#: 05240000.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3155923\n"
-"15\n"
+"05240000.xhp\n"
+"bm_id3151264\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">Displays additional information for the printer. </caseinline></switchinline>"
+msgid "<bookmark_value>draw objects; flipping</bookmark_value><bookmark_value>flipping draw objects</bookmark_value>"
msgstr ""
-#: 01140000.xhp
-msgctxt ""
-"01140000.xhp\n"
-"hd_id3149669\n"
-"16\n"
-"help.text"
-msgid "Properties"
-msgstr "Vetitë"
-
-#: 01140000.xhp
+#: 05240000.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3149045\n"
-"17\n"
+"05240000.xhp\n"
+"hd_id3151264\n"
+"1\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\"><ahelp hid=\"SVTOOLS:PUSHBUTTON:DLG_SVT_PRNDLG_PRNSETUPDLG:BTN_PROPERTIES\">Changes the printer settings of your operating system for the current document.</ahelp></caseinline></switchinline>"
+msgid "<link href=\"text/shared/01/05240000.xhp\" name=\"Flip\">Flip</link>"
msgstr ""
-#: 01140000.xhp
+#: 05240000.xhp
msgctxt ""
-"01140000.xhp\n"
-"par_id3157322\n"
-"18\n"
+"05240000.xhp\n"
+"par_id3145759\n"
+"2\n"
"help.text"
-msgid "Ensure that the Landscape or Portrait layout option set in the printer properties dialog matches the page format that you set by choosing <emph>Format - Page</emph>."
+msgid "<ahelp hid=\".\">Flips the selected object horizontally, or vertically.</ahelp>"
msgstr ""
-#: 05120600.xhp
+#: 05240100.xhp
msgctxt ""
-"05120600.xhp\n"
+"05240100.xhp\n"
"tit\n"
"help.text"
-msgid "Space Columns Equally"
-msgstr "Hapësira për kolona e barabartë"
+msgid "Vertically"
+msgstr "Vertikalisht"
-#: 05120600.xhp
+#: 05240100.xhp
msgctxt ""
-"05120600.xhp\n"
-"hd_id3153811\n"
+"05240100.xhp\n"
+"hd_id3146959\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05120600.xhp\" name=\"Space Equally\">Space Columns Equally</link>"
+msgid "<link href=\"text/shared/01/05240100.xhp\" name=\"Vertically\">Vertically</link>"
msgstr ""
-#: 05120600.xhp
+#: 05240100.xhp
msgctxt ""
-"05120600.xhp\n"
-"par_id3151389\n"
+"05240100.xhp\n"
+"par_id3149741\n"
"2\n"
"help.text"
-msgid "<variable id=\"verteilentext\"><ahelp hid=\".uno:DistributeColumns\">Adjusts the width of the selected columns to match the width of the widest column in the selection.</ahelp> The total width of the table cannot exceed the width of the page.</variable>"
+msgid "<ahelp hid=\".uno:MirrorVert\">Flips the selected object(s) vertically from top to bottom.</ahelp>"
msgstr ""
-#: 05120600.xhp
+#: 05240200.xhp
msgctxt ""
-"05120600.xhp\n"
-"par_id3159219\n"
-"107\n"
+"05240200.xhp\n"
+"tit\n"
"help.text"
-msgid "Choose <emph>Table - Autofit - Distribute Columns Equally</emph>"
-msgstr ""
+msgid "Horizontally"
+msgstr "Horizontalisht"
-#: 05120600.xhp
+#: 05240200.xhp
msgctxt ""
-"05120600.xhp\n"
-"par_id3156426\n"
-"108\n"
+"05240200.xhp\n"
+"hd_id3147543\n"
+"1\n"
"help.text"
-msgid "Open <emph>Optimize</emph> toolbar from <emph>Table</emph> Bar, click"
+msgid "<link href=\"text/shared/01/05240200.xhp\" name=\"Horizontally\">Horizontally</link>"
msgstr ""
-#: 05120600.xhp
+#: 05240200.xhp
msgctxt ""
-"05120600.xhp\n"
-"par_id3145179\n"
+"05240200.xhp\n"
+"par_id3146936\n"
+"2\n"
"help.text"
-msgid "<image id=\"img_id3145186\" src=\"cmd/sc_distributecolumns.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3145186\">Icon</alt></image>"
+msgid "<ahelp hid=\".uno:ObjectMirrorHorizontal\">Flips the selected object(s) horizontally from left to right.</ahelp>"
msgstr ""
-#: 05120600.xhp
-msgctxt ""
-"05120600.xhp\n"
-"par_id3151364\n"
-"109\n"
-"help.text"
-msgid "Space Columns Equally"
-msgstr "Hapësira për kolona e barabartë"
-
-#: xformsdata.xhp
+#: 05250000.xhp
msgctxt ""
-"xformsdata.xhp\n"
+"05250000.xhp\n"
"tit\n"
"help.text"
-msgid "Data Navigator"
-msgstr "Orientuesi i të dhënave..."
+msgid "Arrange"
+msgstr "Rregullo"
-#: xformsdata.xhp
+#: 05250000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"bm_id6823023\n"
+"05250000.xhp\n"
+"bm_id3152427\n"
"help.text"
-msgid "<bookmark_value>data structure of XForms</bookmark_value> <bookmark_value>deleting;models/instances</bookmark_value> <bookmark_value>models in XForms</bookmark_value> <bookmark_value>Data Navigator;display options</bookmark_value>"
+msgid "<bookmark_value>objects; arranging within stacks</bookmark_value><bookmark_value>arranging; objects</bookmark_value><bookmark_value>borders; arranging</bookmark_value><bookmark_value>pictures; arranging within stacks</bookmark_value><bookmark_value>draw objects; arranging within stacks</bookmark_value><bookmark_value>controls; arranging within stacks</bookmark_value><bookmark_value>OLE objects; arranging within stacks</bookmark_value><bookmark_value>charts; arranging within stacks</bookmark_value><bookmark_value>layer arrangement</bookmark_value><bookmark_value>levels; depth stagger</bookmark_value><bookmark_value>depth stagger</bookmark_value>"
msgstr ""
-#: xformsdata.xhp
+#: 05250000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1054E\n"
+"05250000.xhp\n"
+"hd_id3152427\n"
+"1\n"
"help.text"
-msgid "<variable id=\"xformsdata\"><link href=\"text/shared/01/xformsdata.xhp\">Data Navigator</link></variable>"
+msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Arranging Objects\">Arrange</link>"
msgstr ""
-#: xformsdata.xhp
+#: 05250000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1056C\n"
+"05250000.xhp\n"
+"par_id3154230\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the data structure of the current XForms document.</ahelp>"
+msgid "<ahelp hid=\".uno:ObjectPosition\">Changes the stacking order of the selected object(s).</ahelp>"
msgstr ""
-#: xformsdata.xhp
+#: 05250000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1056F\n"
+"05250000.xhp\n"
+"hd_id3153894\n"
+"9\n"
"help.text"
-msgid "Model name"
-msgstr "Emri i grupit"
+msgid "Layer for text and graphics"
+msgstr ""
-#: xformsdata.xhp
+#: 05250000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10573\n"
+"05250000.xhp\n"
+"par_id3154186\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Selects the XForms model that you want to use.</ahelp>"
+msgid "Each object that you place in your document is successively stacked on the preceding object. Use the arrange commands to change the stacking order of objects in your document. You cannot change the stacking order of text."
msgstr ""
-#: xformsdata.xhp
+#: 05250100.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10576\n"
+"05250100.xhp\n"
+"tit\n"
"help.text"
-msgid "Models"
-msgstr "Modelet"
+msgid "Bring to Front"
+msgstr "Sjelle përpara"
-#: xformsdata.xhp
+#: 05250100.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1057A\n"
+"05250100.xhp\n"
+"hd_id3154044\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Adds, renames, and removes XForms models.</ahelp>"
+msgid "<link href=\"text/shared/01/05250100.xhp\" name=\"Bring to Front\">Bring to Front</link>"
msgstr ""
-#: xformsdata.xhp
+#: 05250100.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10604\n"
+"05250100.xhp\n"
+"par_id3149991\n"
+"2\n"
"help.text"
-msgid "Add"
-msgstr "Shto"
+msgid "<ahelp hid=\".uno:BringToFront\" visibility=\"visible\">Moves the selected object to the top of the stacking order, so that it is in front of other objects.</ahelp>"
+msgstr ""
-#: xformsdata.xhp
+#: 05250100.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10608\n"
+"05250100.xhp\n"
+"par_id3147588\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens the Add Model dialog where you can add an XForm model.</ahelp>"
+msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
msgstr ""
-#: xformsdata.xhp
+#: 05250200.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_id0130200901590878\n"
+"05250200.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the name.</ahelp>"
+msgid "Bring Forward"
+msgstr "Sjelle përpara"
+
+#: 05250200.xhp
+msgctxt ""
+"05250200.xhp\n"
+"hd_id3152790\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05250200.xhp\" name=\"Bring Forward \">Bring Forward </link>"
msgstr ""
-#: xformsdata.xhp
+#: 05250200.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"hd_id0910200811173295\n"
+"05250200.xhp\n"
+"par_id3151264\n"
+"2\n"
"help.text"
-msgid "Model data updates change document's modification status"
+msgid "<ahelp hid=\".\">Moves the selected object up one level, so that it is closer to top of the stacking order.</ahelp>"
msgstr ""
-#: xformsdata.xhp
+#: 05250200.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_id0910200811173255\n"
+"05250200.xhp\n"
+"par_id3149495\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">When enabled, the document status will be set to \"modified\" when you change any form control that is bound to any data in the model. When not enabled, such a change does not set the document status to \"modified\".</ahelp>"
+msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
msgstr ""
-#: xformsdata.xhp
+#: 05250300.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10612\n"
+"05250300.xhp\n"
+"tit\n"
"help.text"
-msgid "Remove"
-msgstr "Largo"
+msgid "Send Backward"
+msgstr "Dërgo prapa"
-#: xformsdata.xhp
+#: 05250300.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10616\n"
+"05250300.xhp\n"
+"hd_id3150146\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected XForm model. You cannot delete the last model.</ahelp>"
+msgid "<link href=\"text/shared/01/05250300.xhp\" name=\"Send Backward\">Send Backward</link>"
msgstr ""
-#: xformsdata.xhp
+#: 05250300.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10743\n"
+"05250300.xhp\n"
+"par_id3150794\n"
+"2\n"
"help.text"
-msgid "Rename"
-msgstr "Riemëro"
+msgid "<ahelp hid=\".\">Moves the selected object down one level, so that it is closer to the bottom of the stacking order.</ahelp>"
+msgstr ""
-#: xformsdata.xhp
+#: 05250300.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10749\n"
+"05250300.xhp\n"
+"par_id3150445\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">Renames the selected Xform model.</ahelp>"
+msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
msgstr ""
-#: xformsdata.xhp
+#: 05250400.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10619\n"
+"05250400.xhp\n"
+"tit\n"
"help.text"
-msgid "Show Details"
-msgstr "Trego hollësitë"
+msgid "Send to Back"
+msgstr "Dërgo Prapa"
-#: xformsdata.xhp
+#: 05250400.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1061D\n"
+"05250400.xhp\n"
+"hd_id3155620\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Switches the display to show or hide details.</ahelp>"
+msgid "<link href=\"text/shared/01/05250400.xhp\" name=\"Send to Back\">Send to Back</link>"
msgstr ""
-#: xformsdata.xhp
+#: 05250400.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1057D\n"
+"05250400.xhp\n"
+"par_id3156116\n"
+"2\n"
"help.text"
-msgid "Instance"
-msgstr "Instancat"
+msgid "<ahelp hid=\".uno:SendToBack\" visibility=\"visible\">Moves the selected object to the bottom of the stacking order, so that it is behind the other objects.</ahelp>"
+msgstr ""
-#: xformsdata.xhp
+#: 05250400.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10682\n"
+"05250400.xhp\n"
+"par_id3152895\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">Lists the items that belong to the current instance.</ahelp>"
+msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
msgstr ""
-#: xformsdata.xhp
+#: 05250500.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1058B\n"
+"05250500.xhp\n"
+"tit\n"
"help.text"
-msgid "Submissions"
-msgstr "Pranimet"
+msgid "To Foreground"
+msgstr "Nga Plani i Parë"
-#: xformsdata.xhp
+#: 05250500.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1058F\n"
+"05250500.xhp\n"
+"hd_id3150278\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Lists the submissions.</ahelp>"
+msgid "<variable id=\"foreground\"><link href=\"text/shared/01/05250500.xhp\" name=\"To Foreground\">To Foreground</link></variable>"
msgstr ""
-#: xformsdata.xhp
+#: 05250500.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10592\n"
+"05250500.xhp\n"
+"par_id3151387\n"
+"2\n"
"help.text"
-msgid "Bindings"
-msgstr "Ndërlidhjet"
+msgid "<ahelp hid=\".uno:SetObjectToForeground\">Moves the selected object in front of text.</ahelp>"
+msgstr ""
-#: xformsdata.xhp
+#: 05250500.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10596\n"
+"05250500.xhp\n"
+"par_id3147000\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\">Lists the bindings for the XForm.</ahelp>"
+msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
msgstr ""
-#: xformsdata.xhp
+#: 05250600.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10599\n"
+"05250600.xhp\n"
+"tit\n"
"help.text"
-msgid "Instances"
-msgstr "Instancat"
+msgid "To Background"
+msgstr "Nga Sfondi"
-#: xformsdata.xhp
+#: 05250600.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1059D\n"
+"05250600.xhp\n"
+"hd_id3146959\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">This button has submenus to add, edit or remove instances.</ahelp>"
+msgid "<variable id=\"background\"><link href=\"text/shared/01/05250600.xhp\" name=\"To Background\">To Background</link></variable>"
msgstr ""
-#: xformsdata.xhp
+#: 05250600.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10649\n"
+"05250600.xhp\n"
+"par_id3146902\n"
+"2\n"
"help.text"
-msgid "Add"
-msgstr "Shto"
+msgid "<ahelp hid=\".uno:SetObjectToBackground\">Moves the selected object behind text.</ahelp>"
+msgstr ""
-#: xformsdata.xhp
+#: 05250600.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1064D\n"
+"05250600.xhp\n"
+"par_id3148731\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog where you can add a new instance.</ahelp>"
+msgid "<link href=\"text/shared/01/05250000.xhp\" name=\"Layer\">Layer</link>"
msgstr ""
-#: xformsdata.xhp
+#: 05260000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10650\n"
+"05260000.xhp\n"
+"tit\n"
"help.text"
-msgid "Edit"
-msgstr "Edito"
+msgid "Anchor"
+msgstr "Spiranca"
-#: xformsdata.xhp
+#: 05260000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10654\n"
+"05260000.xhp\n"
+"hd_id3155913\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog where you can modify the current instance.</ahelp>"
+msgid "<link href=\"text/shared/01/05260000.xhp\" name=\"Anchoring\">Anchor</link>"
msgstr ""
-#: xformsdata.xhp
+#: 05260000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10657\n"
+"05260000.xhp\n"
+"par_id3145356\n"
+"2\n"
"help.text"
-msgid "Remove"
-msgstr "Largo"
+msgid "<ahelp hid=\".\">Sets the anchoring options for the selected object.</ahelp>"
+msgstr ""
-#: xformsdata.xhp
+#: 05260000.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1065B\n"
+"05260000.xhp\n"
+"par_id3150789\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the current instance. You cannot delete the last instance.</ahelp>"
+msgid "If the selected object is in a frame, you can also anchor the object to the frame."
msgstr ""
-#: xformsdata.xhp
+#: 05260100.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1065E\n"
+"05260100.xhp\n"
+"tit\n"
"help.text"
-msgid "Show data types"
-msgstr "Trego ~elementet pa të dhëna"
+msgid "To Page"
+msgstr "Tek faqja"
-#: xformsdata.xhp
+#: 05260100.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10662\n"
+"05260100.xhp\n"
+"hd_id3150278\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Switches the display to show more or less details.</ahelp>"
+msgid "<link href=\"text/shared/01/05260100.xhp\" name=\"To Page\">To Page</link>"
msgstr ""
-#: xformsdata.xhp
+#: 05260100.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10584\n"
+"05260100.xhp\n"
+"par_id3150756\n"
+"2\n"
"help.text"
-msgid "Add"
-msgstr "Shto"
+msgid "<ahelp hid=\".uno:SetAnchorToPage\">Anchors the selected item to the current page.</ahelp>"
+msgstr ""
-#: xformsdata.xhp
+#: 05260100.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10588\n"
+"05260100.xhp\n"
+"par_id3149987\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog to add a new item (element, attribute, submission, or binding) as a sub-item of the current item.</ahelp>"
+msgid "The anchored item remains on the current page even if you insert or delete text."
msgstr ""
-#: xformsdata.xhp
+#: 05260100.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10624\n"
+"05260100.xhp\n"
+"par_id3152821\n"
+"3\n"
"help.text"
-msgid "Edit"
-msgstr "Edito"
+msgid "The anchor icon is displayed at the top left corner of the page."
+msgstr ""
-#: xformsdata.xhp
+#: 05260200.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN10628\n"
+"05260200.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Opens a dialog to edit the selected item (element, attribute, submission, or binding).</ahelp>"
+msgid "To Paragraph"
+msgstr "Tek paragrafi"
+
+#: 05260200.xhp
+msgctxt ""
+"05260200.xhp\n"
+"hd_id3151260\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05260200.xhp\" name=\"To Paragraph\">To Paragraph</link>"
msgstr ""
-#: xformsdata.xhp
+#: 05260200.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1062B\n"
+"05260200.xhp\n"
+"par_id3155271\n"
+"2\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "<ahelp hid=\".uno:SetAnchorToPara\" visibility=\"visible\">Anchors the selected item to the current paragraph.</ahelp>"
+msgstr ""
-#: xformsdata.xhp
+#: 05260200.xhp
msgctxt ""
-"xformsdata.xhp\n"
-"par_idN1062F\n"
+"05260200.xhp\n"
+"par_id3154926\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected item (element, attribute, submission, or binding).</ahelp>"
+msgid "The anchor icon is displayed at the left page margin at the beginning of the paragraph."
msgstr ""
-#: 06140500.xhp
+#: 05260300.xhp
msgctxt ""
-"06140500.xhp\n"
+"05260300.xhp\n"
"tit\n"
"help.text"
-msgid "Events"
-msgstr "Ngjarjet"
+msgid "To Character"
+msgstr "Tek karakteri"
-#: 06140500.xhp
+#: 05260300.xhp
msgctxt ""
-"06140500.xhp\n"
-"bm_id3152427\n"
+"05260300.xhp\n"
+"hd_id3154044\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>customizing; events</bookmark_value><bookmark_value>events; customizing</bookmark_value>"
+msgid "<link href=\"text/shared/01/05260300.xhp\" name=\"To Character\">To Character</link>"
msgstr ""
-#: 06140500.xhp
+#: 05260300.xhp
msgctxt ""
-"06140500.xhp\n"
-"hd_id3152427\n"
-"1\n"
+"05260300.xhp\n"
+"par_id3147069\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Events</link>"
+msgid "<ahelp hid=\".\">Anchors the selected item to a character.</ahelp> This command is only available for graphic objects."
msgstr ""
-#: 06140500.xhp
+#: 05260300.xhp
msgctxt ""
-"06140500.xhp\n"
-"par_id3152937\n"
-"2\n"
+"05260300.xhp\n"
+"par_id3146067\n"
+"3\n"
"help.text"
-msgid "<variable id=\"assignaction\"><ahelp hid=\".\">Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs.</ahelp></variable>"
+msgid "The anchor is displayed in front of the character."
msgstr ""
-#: 06140500.xhp
+#: 05260300.xhp
msgctxt ""
-"06140500.xhp\n"
-"par_id317748820\n"
+"05260300.xhp\n"
+"par_id3152924\n"
+"4\n"
"help.text"
-msgid "The dialog box has reduced functionality when called from the Edit-Sheet menu of a spreadsheet."
+msgid "To align a graphic relative to the character that it is anchored to, right-click the graphic, and then choose <emph>Graphics</emph>. Click the <emph>Type </emph>tab, and in the <emph>Position </emph>area, select <emph>Character</emph> in the <emph>to</emph> boxes."
msgstr ""
-#: 06140500.xhp
+#: 05260400.xhp
msgctxt ""
-"06140500.xhp\n"
-"par_idN1060A\n"
+"05260400.xhp\n"
+"tit\n"
"help.text"
-msgid "Save In"
-msgstr "Ruaje macron nw"
+msgid "To Cell"
+msgstr "Nga ~Qelia"
-#: 06140500.xhp
+#: 05260400.xhp
msgctxt ""
-"06140500.xhp\n"
-"par_idN1060E\n"
+"05260400.xhp\n"
+"hd_id3147212\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"705547787\">Select first where to save the event binding, in the current document or in %PRODUCTNAME.</ahelp>"
+msgid "<link href=\"text/shared/01/05260400.xhp\" name=\"To Cell\">To Cell</link>"
msgstr ""
-#: 06140500.xhp
+#: 05260400.xhp
msgctxt ""
-"06140500.xhp\n"
-"par_id3153662\n"
-"36\n"
+"05260400.xhp\n"
+"par_id3150794\n"
+"2\n"
"help.text"
-msgid "A macro that is saved with a document can only be run when that document is opened."
+msgid "<ahelp hid=\".uno:SetAnchorToCell\" visibility=\"visible\">Anchors the selected item to a cell.</ahelp> The anchor icon is displayed in the upper left corner of the cell."
msgstr ""
-#: 06140500.xhp
+#: 05260500.xhp
msgctxt ""
-"06140500.xhp\n"
-"par_idN1061A\n"
+"05260500.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"40000\">The big list box lists the events and the assigned macros. After you selected the location in the <emph>Save In</emph> list box, select an event in the big list box. Then click <emph>Assign Macro</emph>.</ahelp>"
-msgstr ""
+msgid "To Frame"
+msgstr "Në kornizë"
-#: 06140500.xhp
+#: 05260500.xhp
msgctxt ""
-"06140500.xhp\n"
-"hd_id3159258\n"
-"22\n"
+"05260500.xhp\n"
+"hd_id3149991\n"
+"1\n"
"help.text"
-msgid "Assign Macro"
-msgstr "Cakto Makron"
+msgid "<link href=\"text/shared/01/05260500.xhp\" name=\"To Frame\">To Frame</link>"
+msgstr ""
-#: 06140500.xhp
+#: 05260500.xhp
msgctxt ""
-"06140500.xhp\n"
-"par_id3156152\n"
-"23\n"
+"05260500.xhp\n"
+"par_id3159242\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_EVENT:PB_ASSIGN\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
+msgid "<ahelp hid=\".uno:SetAnchorToFrame\" visibility=\"visible\">Anchors the selected item to the surrounding frame.</ahelp>"
msgstr ""
-#: 06140500.xhp
+#: 05260600.xhp
msgctxt ""
-"06140500.xhp\n"
-"hd_id3154046\n"
-"24\n"
+"05260600.xhp\n"
+"tit\n"
"help.text"
-msgid "Remove Macro"
-msgstr "Ekzekuto makron"
+msgid "As Character"
+msgstr "Si karakter"
-#: 06140500.xhp
+#: 05260600.xhp
msgctxt ""
-"06140500.xhp\n"
-"par_id3152349\n"
-"35\n"
+"05260600.xhp\n"
+"hd_id3154621\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_EVENT:PB_DELETE\">Deletes the macro assignment for the selected event.</ahelp>"
+msgid "<link href=\"text/shared/01/05260600.xhp\" name=\"As Character\">As Character</link>"
msgstr ""
-#: 06140500.xhp
+#: 05260600.xhp
msgctxt ""
-"06140500.xhp\n"
-"par_id3159147\n"
-"38\n"
+"05260600.xhp\n"
+"par_id3146946\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"List of events\">List of events</link>"
+msgid "<ahelp hid=\".\">Anchors the selected item as a character in the current text. If the height of the selected item is greater than the current font size, the height of the line containing the item is increased.</ahelp>"
msgstr ""
-#: 05100500.xhp
+#: 05270000.xhp
msgctxt ""
-"05100500.xhp\n"
+"05270000.xhp\n"
"tit\n"
"help.text"
-msgid "Top"
-msgstr "Lartë"
+msgid "Edit Points"
+msgstr "Edito pikat"
-#: 05100500.xhp
+#: 05270000.xhp
msgctxt ""
-"05100500.xhp\n"
-"hd_id3154765\n"
+"05270000.xhp\n"
+"hd_id3155271\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100500.xhp\" name=\"Top\">Top</link>"
+msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Edit Points\">Edit Points</link>"
msgstr ""
-#: 05100500.xhp
+#: 05270000.xhp
msgctxt ""
-"05100500.xhp\n"
-"par_id3151390\n"
+"05270000.xhp\n"
+"par_id3153391\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:CellVertTop\">Aligns the contents of the cell to the top edge of the cell.</ahelp>"
+msgid "<ahelp hid=\".uno:ToggleObjectBezierMode\">Lets you change the shape of the selected drawing object.</ahelp>"
msgstr ""
-#: 05100500.xhp
+#: 05270000.xhp
msgctxt ""
-"05100500.xhp\n"
-"par_id3145671\n"
-"120\n"
+"05270000.xhp\n"
+"par_id3148668\n"
+"7\n"
"help.text"
-msgid "<variable id=\"zelleoben\">In the context menu of a cell, choose <emph>Cell - Top</emph></variable>"
+msgid "To edit the shape of a selected drawing object, click the <emph>Points</emph> icon on the <emph>Drawing</emph> Bar, and then drag one of the points on the object."
msgstr ""
-#: 05200300.xhp
+#: 05270000.xhp
msgctxt ""
-"05200300.xhp\n"
+"05270000.xhp\n"
+"par_id3093440\n"
+"help.text"
+msgid "<link href=\"text/shared/main0227.xhp\" name=\"Edit Points Bar\">Edit Points Bar</link>"
+msgstr ""
+
+#: 05280000.xhp
+msgctxt ""
+"05280000.xhp\n"
"tit\n"
"help.text"
-msgid "Arrow Styles"
-msgstr "Stilet e grafikave"
+msgid "Fontwork"
+msgstr "Puna me fonte"
-#: 05200300.xhp
+#: 05280000.xhp
msgctxt ""
-"05200300.xhp\n"
-"hd_id3156045\n"
-"1\n"
+"05280000.xhp\n"
+"hd_id3146959\n"
+"51\n"
"help.text"
-msgid "<link href=\"text/shared/01/05200300.xhp\" name=\"Arrow Styles\">Arrow Styles</link>"
+msgid "<variable id=\"fntwrk\"><link href=\"text/shared/01/05280000.xhp\" name=\"FontWork\">Fontwork Dialog (Previous Version)</link></variable>"
msgstr ""
-#: 05200300.xhp
+#: 05280000.xhp
msgctxt ""
-"05200300.xhp\n"
-"par_id3149031\n"
-"2\n"
+"05280000.xhp\n"
+"par_id3151097\n"
+"52\n"
"help.text"
-msgid "<ahelp hid=\"HID_LINE_ENDDEF\">Edit or create arrow styles.</ahelp>"
+msgid "<ahelp hid=\".uno:FontWork\">Edits Fontwork effects of the selected object that has been created with the previous Fontwork dialog.</ahelp>"
msgstr ""
-#: 05200300.xhp
+#: 05280000.xhp
msgctxt ""
-"05200300.xhp\n"
-"hd_id3153551\n"
-"5\n"
+"05280000.xhp\n"
+"par_id3155934\n"
+"53\n"
"help.text"
-msgid "Organize arrow styles"
-msgstr "Stilet e zbatuara të paragrafeve"
+msgid "This <emph>Fontwork</emph> dialog is only available for Fontwork in old Writer text documents that were created prior to OpenOffice.org 2.0. You must first call <emph>Tools - Customize</emph> to add a menu command or an icon to open this dialog."
+msgstr ""
-#: 05200300.xhp
+#: 05280000.xhp
msgctxt ""
-"05200300.xhp\n"
-"par_id3154398\n"
-"6\n"
+"05280000.xhp\n"
+"par_id3154497\n"
+"74\n"
"help.text"
-msgid "Lets you organize the current list of arrow styles."
+msgid "You can change the shape of the text baseline to match semicircles, arcs, circles, and freeform lines."
msgstr ""
-#: 05200300.xhp
+#: 05280000.xhp
msgctxt ""
-"05200300.xhp\n"
-"hd_id3155552\n"
-"7\n"
+"05280000.xhp\n"
+"hd_id3152372\n"
+"54\n"
"help.text"
-msgid "Title"
-msgstr "Titulli"
+msgid "Alignment icons"
+msgstr "Mbështetje vertikale"
-#: 05200300.xhp
+#: 05280000.xhp
msgctxt ""
-"05200300.xhp\n"
-"par_id3147399\n"
-"8\n"
+"05280000.xhp\n"
+"par_id3149760\n"
+"55\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_LINEEND_DEF:EDT_NAME\">Displays the name of the selected arrow style.</ahelp>"
+msgid "<ahelp hid=\"HID_FONTWORK_CTL_FORMS\" visibility=\"hidden\">Click the shape of the baseline that you want to use for the text.</ahelp>"
msgstr ""
-#: 05200300.xhp
+#: 05280000.xhp
msgctxt ""
-"05200300.xhp\n"
-"hd_id3155892\n"
-"9\n"
+"05280000.xhp\n"
+"par_id3152542\n"
+"56\n"
"help.text"
-msgid "Arrow style"
-msgstr "Stili i shigjetës"
+msgid "The top row contains the following baseline shapes: <emph>Upper Semicircle</emph>, <emph>Lower Semicircle</emph>, <emph>Left Semicircle</emph> and <emph>Right Semicircle</emph>."
+msgstr ""
-#: 05200300.xhp
+#: 05280000.xhp
msgctxt ""
-"05200300.xhp\n"
-"par_id3149827\n"
-"10\n"
+"05280000.xhp\n"
+"par_id3150774\n"
+"58\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_LINEEND_DEF:LB_LINEENDS\">Choose a predefined arrow style symbol from the list box.</ahelp>"
+msgid "The middle row contains the following baseline shapes: <emph>Upper Arc</emph>, <emph>Lower Arc, Left Arc</emph> and <emph>Right Arc</emph>."
msgstr ""
-#: 05200300.xhp
+#: 05280000.xhp
msgctxt ""
-"05200300.xhp\n"
-"hd_id3145313\n"
-"11\n"
+"05280000.xhp\n"
+"par_id3159158\n"
+"60\n"
"help.text"
-msgid "Add"
-msgstr "Shto"
+msgid "The bottom row contains the following baseline shapes: <emph>Open Circle, Closed Circle, Closed Circle II</emph>, and <emph>Open Circle Vertical</emph>. For the best results, the drawing object must contain more than two lines of text."
+msgstr ""
-#: 05200300.xhp
+#: 05280000.xhp
msgctxt ""
-"05200300.xhp\n"
-"par_id3154288\n"
-"12\n"
+"05280000.xhp\n"
+"par_id3149237\n"
+"62\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_ADD\">To define a custom arrow style, select a drawing object in the document, and then click here.</ahelp>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_OFF\">Removes baseline formatting.</ahelp>"
msgstr ""
-#: 05200300.xhp
+#: 05280000.xhp
msgctxt ""
-"05200300.xhp\n"
-"hd_id3156346\n"
-"13\n"
+"05280000.xhp\n"
+"par_id3149244\n"
"help.text"
-msgid "Modify"
-msgstr "Modifiko"
+msgid "<image id=\"img_id3161458\" src=\"cmd/sc_fontwork.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3161458\">Icon</alt></image>"
+msgstr ""
-#: 05200300.xhp
+#: 05280000.xhp
msgctxt ""
-"05200300.xhp\n"
-"par_id3154897\n"
-"14\n"
+"05280000.xhp\n"
+"par_id3149046\n"
+"63\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_MODIFY\">Changes the name of the selected arrow style.</ahelp>"
-msgstr ""
+msgid "Off"
+msgstr "Ç'kyçur"
-#: 05200300.xhp
+#: 05280000.xhp
msgctxt ""
-"05200300.xhp\n"
-"hd_id3153332\n"
-"15\n"
+"05280000.xhp\n"
+"par_id3156344\n"
+"64\n"
"help.text"
-msgid "Load Arrow Styles"
-msgstr "Stilet e zbatuara të paragrafeve"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_ROTATE\">Uses the top or the bottom edge of the selected object as the text baseline.</ahelp>"
+msgstr ""
-#: 05200300.xhp
+#: 05280000.xhp
msgctxt ""
-"05200300.xhp\n"
-"par_id3146137\n"
-"16\n"
+"05280000.xhp\n"
+"par_id3150791\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_LOAD\">Imports a list of arrow styles.</ahelp>"
+msgid "<image id=\"img_id3153379\" src=\"svx/res/fw02.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3153379\">Icon</alt></image>"
msgstr ""
-#: 05200300.xhp
+#: 05280000.xhp
msgctxt ""
-"05200300.xhp\n"
-"hd_id3158432\n"
-"17\n"
+"05280000.xhp\n"
+"par_id3153339\n"
+"65\n"
"help.text"
-msgid "Save Arrow Styles"
-msgstr "Stilet e zbatuara të paragrafeve"
+msgid "Rotate"
+msgstr "Rrotullo"
-#: 05200300.xhp
+#: 05280000.xhp
msgctxt ""
-"05200300.xhp\n"
-"par_id3152944\n"
-"18\n"
+"05280000.xhp\n"
+"par_id3155742\n"
+"66\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_LINEEND_DEF:BTN_SAVE\">Saves the current list of arrow styles, so that you can load it later.</ahelp>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_UPRIGHT\">Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters.</ahelp>"
msgstr ""
-#: grid.xhp
+#: 05280000.xhp
msgctxt ""
-"grid.xhp\n"
-"tit\n"
+"05280000.xhp\n"
+"par_id3154069\n"
"help.text"
-msgid "Grid"
-msgstr "Rrjet"
+msgid "<image id=\"img_id3152933\" src=\"svx/res/fw03.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3152933\">Icon</alt></image>"
+msgstr ""
-#: grid.xhp
+#: 05280000.xhp
msgctxt ""
-"grid.xhp\n"
-"bm_id4263435\n"
+"05280000.xhp\n"
+"par_id3154153\n"
+"67\n"
"help.text"
-msgid "<bookmark_value>grids;display options (Impress/Draw)</bookmark_value>"
+msgid "Upright"
msgstr ""
-#: grid.xhp
+#: 05280000.xhp
msgctxt ""
-"grid.xhp\n"
-"par_idN10565\n"
+"05280000.xhp\n"
+"par_id3149202\n"
+"68\n"
"help.text"
-msgid "<link href=\"text/shared/01/grid.xhp\">Grid</link>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_SLANTX\">Horizontally slants the characters in the text object.</ahelp>"
msgstr ""
-#: grid.xhp
+#: 05280000.xhp
msgctxt ""
-"grid.xhp\n"
-"par_id3147340\n"
-"5\n"
+"05280000.xhp\n"
+"par_id3153180\n"
"help.text"
-msgid "<ahelp hid=\".\">Sets the display properties of a grid.</ahelp>"
+msgid "<image id=\"img_id3151041\" src=\"svx/res/fw04.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3151041\">Icon</alt></image>"
msgstr ""
-#: grid.xhp
+#: 05280000.xhp
msgctxt ""
-"grid.xhp\n"
-"par_idN1057E\n"
+"05280000.xhp\n"
+"par_id3149983\n"
+"69\n"
"help.text"
-msgid "Display Grid"
-msgstr "Paraqit Rrjetën"
+msgid "Slant Horizontal"
+msgstr "Rreshtat horizontal"
-#: grid.xhp
+#: 05280000.xhp
msgctxt ""
-"grid.xhp\n"
-"par_idN10582\n"
+"05280000.xhp\n"
+"par_id3154297\n"
+"70\n"
"help.text"
-msgid "Displays or hides grid lines that you can use to align objects such as graphics on a page."
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_SLANTY\">Vertically slants the characters in the text object.</ahelp>"
msgstr ""
-#: grid.xhp
+#: 05280000.xhp
msgctxt ""
-"grid.xhp\n"
-"par_idN10585\n"
+"05280000.xhp\n"
+"par_id3147348\n"
"help.text"
-msgid "Snap to Grid"
-msgstr "Mbërthe për rrjetë"
+msgid "<image id=\"img_id3154690\" src=\"svx/res/fw05.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3154690\">Icon</alt></image>"
+msgstr ""
-#: grid.xhp
+#: 05280000.xhp
msgctxt ""
-"grid.xhp\n"
-"par_idN10589\n"
+"05280000.xhp\n"
+"par_id3150962\n"
+"71\n"
"help.text"
-msgid "Automatically aligns objects to vertical and horizontal grid lines. To override this feature, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key</defaultinline></switchinline> when you drag an object."
+msgid "Slant Vertical"
+msgstr "Rreshtat vertikal"
+
+#: 05280000.xhp
+msgctxt ""
+"05280000.xhp\n"
+"par_id3154985\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_MIRROR\">Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text.</ahelp>"
msgstr ""
-#: grid.xhp
+#: 05280000.xhp
msgctxt ""
-"grid.xhp\n"
-"par_idN105C9\n"
+"05280000.xhp\n"
+"par_id3155854\n"
"help.text"
-msgid "Grid to Front"
-msgstr "Rrjeta përpara"
+msgid "<image id=\"img_id3153142\" src=\"svx/res/fw06.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3153142\">Icon</alt></image>"
+msgstr ""
-#: grid.xhp
+#: 05280000.xhp
msgctxt ""
-"grid.xhp\n"
-"par_idN105CD\n"
+"05280000.xhp\n"
+"par_id3149934\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the grid lines in front of the objects on the slide or page.</ahelp>"
+msgid "Orientation"
+msgstr "Orientim"
+
+#: 05280000.xhp
+msgctxt ""
+"05280000.xhp\n"
+"par_id3154640\n"
+"24\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_LEFT\">Aligns the text to the left end of the text baseline.</ahelp>"
msgstr ""
-#: grid.xhp
+#: 05280000.xhp
msgctxt ""
-"grid.xhp\n"
-"par_id4372692\n"
+"05280000.xhp\n"
+"par_id3156006\n"
"help.text"
-msgid "Set the grid color on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/01012000.xhp\">Appearance</link>."
+msgid "<image id=\"img_id3153573\" src=\"cmd/sc_alignleft.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153573\">Icon</alt></image>"
msgstr ""
-#: 05110000.xhp
+#: 05280000.xhp
msgctxt ""
-"05110000.xhp\n"
-"tit\n"
+"05280000.xhp\n"
+"par_id3152416\n"
+"23\n"
"help.text"
-msgid "Style"
-msgstr "Stili"
+msgid "Align Left"
+msgstr "Rreshto majtas"
-#: 05110000.xhp
+#: 05280000.xhp
msgctxt ""
-"05110000.xhp\n"
-"bm_id3147366\n"
+"05280000.xhp\n"
+"par_id3147578\n"
+"26\n"
"help.text"
-msgid "<bookmark_value>text; font styles</bookmark_value><bookmark_value>fonts; styles</bookmark_value>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_CENTER\">Centers the text on the text baseline.</ahelp>"
msgstr ""
-#: 05110000.xhp
+#: 05280000.xhp
msgctxt ""
-"05110000.xhp\n"
-"hd_id3147366\n"
-"1\n"
+"05280000.xhp\n"
+"par_id3155748\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110000.xhp\" name=\"Style\">Style</link>"
+msgid "<image id=\"img_id3147217\" src=\"cmd/sc_centerpara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147217\">Icon</alt></image>"
msgstr ""
-#: 05110000.xhp
+#: 05280000.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3155620\n"
-"2\n"
+"05280000.xhp\n"
+"par_id3159346\n"
+"25\n"
"help.text"
-msgid "Use this command to quickly apply font styles to a text selection."
+msgid "Center"
+msgstr "Qendër"
+
+#: 05280000.xhp
+msgctxt ""
+"05280000.xhp\n"
+"par_id3149583\n"
+"28\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_RIGHT\">Aligns the text to the right end of the text baseline.</ahelp>"
msgstr ""
-#: 05110000.xhp
+#: 05280000.xhp
msgctxt ""
-"05110000.xhp\n"
-"par_id3153255\n"
-"3\n"
+"05280000.xhp\n"
+"par_id3149939\n"
"help.text"
-msgid "If you place the cursor in a word and do not make a selection, the font style is applied to the entire word. If the cursor is not inside a word, and no text is selected, then the font style is applied to the text that you type."
+msgid "<image id=\"img_id3148498\" src=\"cmd/sc_alignright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148498\">Icon</alt></image>"
msgstr ""
-#: 05260500.xhp
+#: 05280000.xhp
msgctxt ""
-"05260500.xhp\n"
-"tit\n"
+"05280000.xhp\n"
+"par_id3150418\n"
+"27\n"
"help.text"
-msgid "To Frame"
-msgstr "Në kornizë"
+msgid "Align Right"
+msgstr "Rreshto djathtas"
-#: 05260500.xhp
+#: 05280000.xhp
msgctxt ""
-"05260500.xhp\n"
-"hd_id3149991\n"
-"1\n"
+"05280000.xhp\n"
+"par_id3147124\n"
+"30\n"
"help.text"
-msgid "<link href=\"text/shared/01/05260500.xhp\" name=\"To Frame\">To Frame</link>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_AUTOSIZE\">Resizes the text to fit the length of the text baseline.</ahelp>"
msgstr ""
-#: 05260500.xhp
+#: 05280000.xhp
msgctxt ""
-"05260500.xhp\n"
-"par_id3159242\n"
-"2\n"
+"05280000.xhp\n"
+"par_id3159129\n"
"help.text"
-msgid "<ahelp hid=\".uno:SetAnchorToFrame\" visibility=\"visible\">Anchors the selected item to the surrounding frame.</ahelp>"
+msgid "<image id=\"img_id3153334\" src=\"svx/res/fw010.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3153334\">Icon</alt></image>"
msgstr ""
-#: 04160500.xhp
+#: 05280000.xhp
msgctxt ""
-"04160500.xhp\n"
-"tit\n"
+"05280000.xhp\n"
+"par_id3148747\n"
+"29\n"
"help.text"
-msgid "Insert Floating Frame"
-msgstr "Vendose kornizën lëvizëse"
+msgid "AutoSize Text"
+msgstr "Vizato tekstin"
-#: 04160500.xhp
+#: 05280000.xhp
msgctxt ""
-"04160500.xhp\n"
-"bm_id3149783\n"
+"05280000.xhp\n"
+"par_id3157844\n"
+"32\n"
"help.text"
-msgid "<bookmark_value>floating frames in HTML documents</bookmark_value><bookmark_value>inserting; floating frames</bookmark_value>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_DISTANCE\">Enter the amount of space that you want to leave between the text baseline and the base of the individual characters.</ahelp>"
msgstr ""
-#: 04160500.xhp
+#: 05280000.xhp
msgctxt ""
-"04160500.xhp\n"
-"hd_id3149783\n"
-"1\n"
+"05280000.xhp\n"
+"par_id3153957\n"
"help.text"
-msgid "Insert Floating Frame"
-msgstr "Vendose kornizën lëvizëse"
+msgid "<image id=\"img_id3151019\" src=\"svx/res/fw020.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3151019\">Icon</alt></image>"
+msgstr ""
-#: 04160500.xhp
+#: 05280000.xhp
msgctxt ""
-"04160500.xhp\n"
-"par_id3148410\n"
-"2\n"
+"05280000.xhp\n"
+"par_id3146971\n"
+"31\n"
"help.text"
-msgid "<variable id=\"frameeinfuegentext\"><ahelp hid=\".\">Inserts a floating frame into the current document. Floating frames are used in HTML documents to display the contents of another file.</ahelp></variable>"
-msgstr ""
+msgid "Distance"
+msgstr "Distancë"
-#: 04160500.xhp
+#: 05280000.xhp
msgctxt ""
-"04160500.xhp\n"
-"par_id3151100\n"
-"6\n"
+"05280000.xhp\n"
+"par_id3153530\n"
+"34\n"
"help.text"
-msgid "If you want to create HTML pages that use floating frames, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML compatibility</emph>, and then select the \"MS Internet Explorer\" option. The floating frame is bounded by <IFRAME> and </IFRAME> tags."
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_TEXTSTART\">Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text.</ahelp>"
msgstr ""
-#: 04160500.xhp
+#: 05280000.xhp
msgctxt ""
-"04160500.xhp\n"
-"par_id3151330\n"
+"05280000.xhp\n"
+"par_id3156332\n"
"help.text"
-msgid "<link href=\"text/shared/01/02210101.xhp\" name=\"Floating frame properties\">Floating frame properties</link>"
+msgid "<image id=\"img_id3153836\" src=\"svx/res/fw021.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3153836\">Icon</alt></image>"
msgstr ""
-#: 02200100.xhp
+#: 05280000.xhp
msgctxt ""
-"02200100.xhp\n"
-"tit\n"
+"05280000.xhp\n"
+"par_id3153710\n"
+"33\n"
"help.text"
-msgid "Edit"
-msgstr "Edito"
+msgid "Indent"
+msgstr "Kryerresht"
-#: 02200100.xhp
+#: 05280000.xhp
msgctxt ""
-"02200100.xhp\n"
-"bm_id3145138\n"
+"05280000.xhp\n"
+"par_id3154636\n"
+"36\n"
"help.text"
-msgid "<bookmark_value>objects; editing</bookmark_value><bookmark_value>editing; objects</bookmark_value>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_SHOWFORM\">Shows or hides the text baseline, or the edges of the selected object.</ahelp>"
msgstr ""
-#: 02200100.xhp
+#: 05280000.xhp
msgctxt ""
-"02200100.xhp\n"
-"hd_id3145138\n"
-"1\n"
+"05280000.xhp\n"
+"par_id3155515\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200100.xhp\" name=\"Edit\">Edit</link>"
+msgid "<image id=\"img_id3159186\" src=\"svx/res/fw011.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3159186\">Icon</alt></image>"
msgstr ""
-#: 02200100.xhp
+#: 05280000.xhp
msgctxt ""
-"02200100.xhp\n"
-"par_id3150008\n"
-"2\n"
+"05280000.xhp\n"
+"par_id3148996\n"
+"35\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"\">Lets you edit a selected object in your file that you inserted with the <emph>Insert – Object </emph>command.</ahelp>"
-msgstr ""
+msgid "Contour"
+msgstr "Konturë"
-#: 04180100.xhp
+#: 05280000.xhp
msgctxt ""
-"04180100.xhp\n"
-"tit\n"
+"05280000.xhp\n"
+"par_id3155764\n"
+"38\n"
"help.text"
-msgid "Data Sources"
-msgstr "Burimet e të dhënave"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_OUTLINE\">Shows or hides the borders of the individual characters in the text.</ahelp>"
+msgstr ""
-#: 04180100.xhp
+#: 05280000.xhp
msgctxt ""
-"04180100.xhp\n"
-"hd_id3156053\n"
-"1\n"
+"05280000.xhp\n"
+"par_id3150323\n"
"help.text"
-msgid "<link href=\"text/shared/01/04180100.xhp\" name=\"Data Sources\">Data Sources</link>"
+msgid "<image id=\"img_id3147100\" src=\"svx/res/fw012.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Icon</alt></image>"
msgstr ""
-#: 04180100.xhp
+#: 05280000.xhp
msgctxt ""
-"04180100.xhp\n"
-"par_id3149495\n"
-"2\n"
+"05280000.xhp\n"
+"par_id3147339\n"
+"37\n"
"help.text"
-msgid "<ahelp hid=\".uno:ViewDataSourceBrowser\">Lists the databases that are registered in <item type=\"productname\">%PRODUCTNAME</item> and lets you manage the contents of the databases.</ahelp>"
-msgstr ""
+msgid "Text Contour"
+msgstr "Kontrolla e Konturës"
-#: 04180100.xhp
+#: 05280000.xhp
msgctxt ""
-"04180100.xhp\n"
-"par_id3156136\n"
-"30\n"
+"05280000.xhp\n"
+"par_id3148927\n"
+"40\n"
"help.text"
-msgid "The <emph>Data sources</emph> command is only available when a text document or a spreadsheet is open."
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_SHADOW_OFF\">Removes the shadow effects that you applied to the text.</ahelp>"
msgstr ""
-#: 04180100.xhp
+#: 05280000.xhp
msgctxt ""
-"04180100.xhp\n"
-"par_id3154823\n"
-"31\n"
+"05280000.xhp\n"
+"par_id3150241\n"
"help.text"
-msgid "You can insert fields from a database into your file or you can create forms to access the database."
+msgid "<image id=\"img_id3156375\" src=\"svx/res/fw013.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3156375\">Icon</alt></image>"
msgstr ""
-#: 04180100.xhp
+#: 05280000.xhp
msgctxt ""
-"04180100.xhp\n"
-"par_id3156427\n"
+"05280000.xhp\n"
+"par_id3151248\n"
+"39\n"
"help.text"
-msgid "<link href=\"text/shared/main0212.xhp\" name=\"Table Data bar\">Table Data bar</link>"
+msgid "No Shadow"
+msgstr "pa Hije"
+
+#: 05280000.xhp
+msgctxt ""
+"05280000.xhp\n"
+"par_id3147321\n"
+"42\n"
+"help.text"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_SHADOW_NORMAL\">Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the <emph>Distance X</emph> and the <emph>Distance Y</emph> boxes.</ahelp>"
msgstr ""
-#: 04180100.xhp
+#: 05280000.xhp
msgctxt ""
-"04180100.xhp\n"
-"par_id3153311\n"
+"05280000.xhp\n"
+"par_id3145231\n"
"help.text"
-msgid "<link href=\"text/shared/02/01170000.xhp\" name=\"Forms\">Forms</link>"
+msgid "<image id=\"img_id3149908\" src=\"svx/res/fw014.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3149908\">Icon</alt></image>"
msgstr ""
-#: 05020500.xhp
+#: 05280000.xhp
msgctxt ""
-"05020500.xhp\n"
-"tit\n"
+"05280000.xhp\n"
+"par_id3152484\n"
+"41\n"
"help.text"
-msgid "Font Position"
-msgstr "Pozicioni i Fontit"
+msgid "Vertical"
+msgstr "Vertikal"
-#: 05020500.xhp
+#: 05280000.xhp
msgctxt ""
-"05020500.xhp\n"
-"bm_id3154841\n"
+"05280000.xhp\n"
+"par_id3148478\n"
+"44\n"
"help.text"
-msgid "<bookmark_value>positioning; fonts</bookmark_value><bookmark_value>formats; positions</bookmark_value><bookmark_value>effects;font positions</bookmark_value><bookmark_value>fonts; positions in text</bookmark_value><bookmark_value>spacing; font effects</bookmark_value><bookmark_value>characters; spacing</bookmark_value><bookmark_value>pair kerning</bookmark_value><bookmark_value>kerning; in characters</bookmark_value><bookmark_value>text; kerning</bookmark_value>"
+msgid "<ahelp hid=\"HID_FONTWORK_TBI_SHADOW_SLANT\">Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the <emph>Distance X</emph> and the <emph>Distance Y</emph> boxes.</ahelp>"
msgstr ""
-#: 05020500.xhp
+#: 05280000.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3154841\n"
-"1\n"
+"05280000.xhp\n"
+"par_id3150664\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/01/05020500.xhp\" name=\"Font Position\">Font Position</link></caseinline><defaultinline><link href=\"text/shared/01/05020500.xhp\" name=\"Position\">Position</link></defaultinline></switchinline>"
+msgid "<image id=\"img_id3166423\" src=\"svx/res/fw015.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3166423\">Icon</alt></image>"
msgstr ""
-#: 05020500.xhp
+#: 05280000.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3148585\n"
-"2\n"
+"05280000.xhp\n"
+"par_id3147129\n"
+"43\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/PositionPage\">Specify the position, scaling, rotation, and spacing for characters.</ahelp>"
-msgstr ""
+msgid "Slant"
+msgstr "Shtrembëro %O (pjerrtësi)"
-#: 05020500.xhp
+#: 05280000.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3147089\n"
-"3\n"
+"05280000.xhp\n"
+"hd_id3156537\n"
+"45\n"
"help.text"
-msgid "Position"
-msgstr "Pozicion"
+msgid "Horizontal Distance"
+msgstr "Rreshtat horizontal"
-#: 05020500.xhp
+#: 05280000.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3153748\n"
-"4\n"
+"05280000.xhp\n"
+"par_id3151049\n"
+"46\n"
"help.text"
-msgid "Set the subscript or superscript options for a character."
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_SHADOW_X\">Enter the horizontal distance between the text characters and the edge of the shadow.</ahelp>"
msgstr ""
-#: 05020500.xhp
+#: 05280000.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3153311\n"
-"5\n"
+"05280000.xhp\n"
+"par_id3159103\n"
"help.text"
-msgid "Superscript"
-msgstr "Mbishkrim"
+msgid "<image id=\"img_id3149242\" src=\"svx/res/fw016.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3149242\">Icon</alt></image>"
+msgstr ""
-#: 05020500.xhp
+#: 05280000.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3154750\n"
-"6\n"
+"05280000.xhp\n"
+"par_id3147093\n"
+"72\n"
"help.text"
-msgid "<variable id=\"hochtext\"><ahelp hid=\"cui/ui/positionpage/superscript\">Reduces the font size of the selected text and raises the text above the baseline.</ahelp></variable>"
-msgstr ""
+msgid "X Distance"
+msgstr "Distancë"
-#: 05020500.xhp
+#: 05280000.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3147275\n"
-"7\n"
+"05280000.xhp\n"
+"hd_id3149450\n"
+"47\n"
"help.text"
-msgid "Normal"
-msgstr "Normal"
+msgid "Vertical Distance"
+msgstr "Rreshtat vertikal"
-#: 05020500.xhp
+#: 05280000.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3155503\n"
-"8\n"
+"05280000.xhp\n"
+"par_id3153704\n"
+"48\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/normal\">Removes superscript or subscript formatting.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_SHADOW_Y\">Enter the vertical distance between the text characters and the edge of the shadow.</ahelp>"
msgstr ""
-#: 05020500.xhp
+#: 05280000.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3150465\n"
-"9\n"
+"05280000.xhp\n"
+"par_id3154275\n"
"help.text"
-msgid "Subscript"
-msgstr "Nënshkrim"
+msgid "<image id=\"img_id3154118\" src=\"svx/res/fw017.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3154118\">Icon</alt></image>"
+msgstr ""
-#: 05020500.xhp
+#: 05280000.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3155420\n"
-"10\n"
+"05280000.xhp\n"
+"par_id3150783\n"
+"73\n"
"help.text"
-msgid "<variable id=\"tieftext\"><ahelp hid=\"cui/ui/positionpage/subscript\">Reduces the font size of the selected text and lowers the text below the baseline.</ahelp></variable>"
-msgstr ""
+msgid "Y Distance"
+msgstr "Distancë"
-#: 05020500.xhp
+#: 05280000.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3148992\n"
-"11\n"
+"05280000.xhp\n"
+"hd_id3149209\n"
+"49\n"
"help.text"
-msgid "Raise/lower by"
-msgstr "**Pjesëtim me zero**"
+msgid "Shadow Color"
+msgstr "Ngjyrë e hijes"
-#: 05020500.xhp
+#: 05280000.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3150275\n"
-"12\n"
+"05280000.xhp\n"
+"par_id3148681\n"
+"50\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/raiselowersb\">Enter the amount by which you want to raise or to lower the selected text in relation to the baseline. One hundred percent is equal to the height of the font.</ahelp>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_FONTWORK:CLB_SHADOW_COLOR\">Select a color for the text shadow.</ahelp>"
msgstr ""
-#: 05020500.xhp
+#: 05290000.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3150670\n"
-"13\n"
+"05290000.xhp\n"
+"tit\n"
"help.text"
-msgid "Relative font size"
-msgstr "Madhësia Rel. e Fontit"
+msgid "Group"
+msgstr "Grupi"
-#: 05020500.xhp
+#: 05290000.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3153126\n"
-"14\n"
+"05290000.xhp\n"
+"hd_id3150603\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/fontsizesb\">Enter the amount by which you want to reduce the font size of the selected text.</ahelp>"
+msgid "<link href=\"text/shared/01/05290000.xhp\" name=\"Group\">Group</link>"
msgstr ""
-#: 05020500.xhp
+#: 05290000.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3153349\n"
-"15\n"
+"05290000.xhp\n"
+"par_id3153323\n"
+"2\n"
"help.text"
-msgid "Automatic"
-msgstr "Automatike"
+msgid "<ahelp hid=\".\">Groups keep together selected objects, so that they can be moved or formatted as a single object.</ahelp>"
+msgstr ""
-#: 05020500.xhp
+#: 05290000.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3153061\n"
-"16\n"
+"05290000.xhp\n"
+"hd_id3150943\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/automatic\">Automatically sets the amount by which the selected text is raised or lowered in relation to the baseline.</ahelp>"
+msgid "Working with groups"
+msgstr "Dalje të Gjitha Grupeve"
+
+#: 05290000.xhp
+msgctxt ""
+"05290000.xhp\n"
+"par_id3152909\n"
+"8\n"
+"help.text"
+msgid "To edit the individual objects of a group, select the group, right-click, and then choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Enter Group</emph></caseinline><defaultinline><emph>Group - Enter Group</emph></defaultinline></switchinline>"
msgstr ""
-#: 05020500.xhp
+#: 05290000.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3154905\n"
-"30\n"
+"05290000.xhp\n"
+"par_id3159158\n"
+"9\n"
"help.text"
-msgid "Rotation / scaling"
-msgstr "Rritje e bitmap-it"
+msgid "When you are editing a group, the objects that are not part of the group are faded."
+msgstr ""
-#: 05020500.xhp
+#: 05290000.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3154923\n"
-"36\n"
+"05290000.xhp\n"
+"par_id3153541\n"
+"10\n"
"help.text"
-msgid "Set the rotation and the scaling options for the selected text."
+msgid "Use Tab and Shift+Tab to move forwards and backwards through the objects in a group."
msgstr ""
-#: 05020500.xhp
+#: 05290000.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3154280\n"
-"31\n"
+"05290000.xhp\n"
+"par_id3154810\n"
+"11\n"
"help.text"
-msgid "0 degrees"
-msgstr "0 shkallë"
+msgid "To exit a group, right-click, and then choose <switchinline select=\"appl\"><caseinline select=\"DRAW\"><emph>Exit Group</emph></caseinline><defaultinline><emph>Group - Exit Group</emph></defaultinline></switchinline>"
+msgstr ""
-#: 05020500.xhp
+#: 05290000.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3149045\n"
-"37\n"
+"05290000.xhp\n"
+"hd_id3145120\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/0deg\">Does not rotate the selected text.</ahelp>"
+msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Grouping\">Group</link>"
msgstr ""
-#: 05020500.xhp
+#: 05290000.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3156434\n"
-"32\n"
+"05290000.xhp\n"
+"hd_id3152474\n"
+"4\n"
"help.text"
-msgid "90 degrees"
-msgstr "90 shkallë"
+msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Remove\">Ungroup</link>"
+msgstr ""
-#: 05020500.xhp
+#: 05290000.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3148739\n"
-"38\n"
+"05290000.xhp\n"
+"hd_id3145609\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/90deg\">Rotates the selected text to the left by 90 degrees.</ahelp>"
+msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Edit group\">Enter Group</link>"
msgstr ""
-#: 05020500.xhp
+#: 05290000.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3150398\n"
-"33\n"
+"05290000.xhp\n"
+"hd_id3145068\n"
+"6\n"
"help.text"
-msgid "270 degrees"
-msgstr "270 shkallë"
+msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit\">Exit group</link>"
+msgstr ""
-#: 05020500.xhp
+#: 05290100.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3153778\n"
-"39\n"
+"05290100.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/270deg\">Rotates the selected text to the right by 90 degrees.</ahelp>"
+msgid "Group"
+msgstr "Grupi"
+
+#: 05290100.xhp
+msgctxt ""
+"05290100.xhp\n"
+"hd_id3152823\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05290100.xhp\" name=\"Group\">Group</link>"
msgstr ""
-#: 05020500.xhp
+#: 05290100.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3147228\n"
-"34\n"
+"05290100.xhp\n"
+"par_id3154689\n"
+"2\n"
"help.text"
-msgid "Fit to line"
-msgstr "Përkuzifo në rresht"
+msgid "<variable id=\"gruppierentext\"><ahelp hid=\".uno:FormatGroup\" visibility=\"visible\">Groups the selected objects, so that they can be moved as a single object.</ahelp></variable>"
+msgstr ""
-#: 05020500.xhp
+#: 05290100.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3150288\n"
-"40\n"
+"05290100.xhp\n"
+"par_id3150008\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/fittoline\">Stretches or compresses the selected text so that it fits between the line that is above the text and the line that is below the text.</ahelp>"
+msgid "The properties of individual objects are maintained even after you group the objects. You can nest groups, that is, you can have a group within a group."
msgstr ""
-#: 05020500.xhp
+#: 05290200.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3155994\n"
-"35\n"
+"05290200.xhp\n"
+"tit\n"
"help.text"
-msgid "Scale width"
-msgstr "Gjerësia e plotë"
+msgid "Ungroup"
+msgstr "Zhgrupo"
-#: 05020500.xhp
+#: 05290200.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3145171\n"
-"41\n"
+"05290200.xhp\n"
+"hd_id3159217\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/scalewidthsb\">Enter the percentage of the font width by which to horizontally stretch or compress the selected text.</ahelp>"
+msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
msgstr ""
-#: 05020500.xhp
+#: 05290200.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3149807\n"
-"17\n"
+"05290200.xhp\n"
+"par_id3156116\n"
+"2\n"
"help.text"
-msgid "Spacing"
-msgstr "Hapësira"
+msgid "<variable id=\"aufhebentext\"><ahelp hid=\".uno:FormatUngroup\" visibility=\"visible\">Breaks apart the selected group into individual objects.</ahelp></variable>"
+msgstr ""
-#: 05020500.xhp
+#: 05290200.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3156212\n"
-"18\n"
+"05290200.xhp\n"
+"par_id3146067\n"
+"3\n"
"help.text"
-msgid "Specify the spacing between individual characters."
+msgid "To break apart the nested groups within a group, you must repeat this command on each subgroup."
msgstr ""
-#: 05020500.xhp
+#: 05290300.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3125865\n"
-"19\n"
+"05290300.xhp\n"
+"tit\n"
"help.text"
-msgid "Spacing"
-msgstr "Hapësira"
+msgid "Enter Group"
+msgstr "Fut grupin"
-#: 05020500.xhp
+#: 05290300.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3153178\n"
-"20\n"
+"05290300.xhp\n"
+"hd_id3083278\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/kerninglb\">Specifies the spacing between the characters of the selected text. For expanded or condensed spacing, enter the amount that you want to expand or condense the text in the <emph>by </emph>box.</ahelp>"
+msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Enter Group\">Enter Group</link>"
msgstr ""
-#: 05020500.xhp
+#: 05290300.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3154908\n"
-"21\n"
+"05290300.xhp\n"
+"par_id3146856\n"
+"2\n"
"help.text"
-msgid "<emph>Default</emph> - uses the character spacing specified in the font type"
+msgid "<variable id=\"betretentext\"><ahelp hid=\".uno:EnterGroup\" visibility=\"visible\">Opens the selected group, so that you can edit the individual objects. If the selected group contains nested group, you can repeat this command on the subgroups.</ahelp></variable> This command does not permanently ungroup the objects."
msgstr ""
-#: 05020500.xhp
+#: 05290300.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3156543\n"
-"22\n"
+"05290300.xhp\n"
+"par_id3157991\n"
+"3\n"
"help.text"
-msgid "<emph>Expanded</emph> - increases the character spacing"
+msgid "To select an individual object in a group, hold down <switchinline select=\"sys\"> <caseinline select=\"MAC\">Command</caseinline> <defaultinline>Ctrl</defaultinline> </switchinline>, and then click the object."
msgstr ""
-#: 05020500.xhp
+#: 05290300.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3154297\n"
-"23\n"
+"05290300.xhp\n"
+"par_id3153049\n"
"help.text"
-msgid "<emph>Condensed</emph> - decreases the character spacing"
+msgid "<link href=\"text/shared/01/05290000.xhp\" name=\"Groups\">Groups</link>"
msgstr ""
-#: 05020500.xhp
+#: 05290300.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3157870\n"
-"25\n"
+"05290300.xhp\n"
+"par_id3148548\n"
"help.text"
-msgid "by"
-msgstr "nga"
+msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
+msgstr ""
-#: 05020500.xhp
+#: 05290400.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3146974\n"
-"26\n"
+"05290400.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/kerninged\">Enter the amount by which you want to expand or condense the character spacing for the selected text.</ahelp>"
+msgid "Exit Group"
+msgstr "Grupi Dalës"
+
+#: 05290400.xhp
+msgctxt ""
+"05290400.xhp\n"
+"hd_id3157552\n"
+"1\n"
+"help.text"
+msgid "<link href=\"text/shared/01/05290400.xhp\" name=\"Exit Group\">Exit Group</link>"
msgstr ""
-#: 05020500.xhp
+#: 05290400.xhp
msgctxt ""
-"05020500.xhp\n"
-"hd_id3154127\n"
-"27\n"
+"05290400.xhp\n"
+"par_id3147294\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000005.xhp#kerning\" name=\"Pair kerning\">Pair kerning</link>"
+msgid "<variable id=\"verlassentext\"><ahelp hid=\".uno:LeaveGroup\" visibility=\"visible\">Exits the group, so that you can no longer edit the individual objects in the group.</ahelp></variable> If you are in a nested group, only the nested group is closed."
msgstr ""
-#: 05020500.xhp
+#: 05290400.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3148616\n"
-"28\n"
+"05290400.xhp\n"
+"par_id3153124\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/positionpage/pairkerning\">Automatically adjust the character spacing for specific letter combinations.</ahelp>"
+msgid "<link href=\"text/shared/01/05290000.xhp\" name=\"Groups\">Groups</link>"
msgstr ""
-#: 05020500.xhp
+#: 05290400.xhp
msgctxt ""
-"05020500.xhp\n"
-"par_id3150010\n"
-"29\n"
+"05290400.xhp\n"
+"par_id3148520\n"
"help.text"
-msgid "Kerning is only available for certain font types and requires that your printer support this option."
+msgid "<link href=\"text/shared/01/05290300.xhp\" name=\"Edit Group\">Edit Group</link>"
msgstr ""
#: 05320000.xhp
@@ -28266,5546 +29959,5375 @@ msgctxt ""
msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TEXTANIMATION:MTR_FLD_DELAY\">Enter the amount of time to wait before repeating the effect.</ahelp>"
msgstr ""
-#: 06050100.xhp
+#: 05340100.xhp
msgctxt ""
-"06050100.xhp\n"
+"05340100.xhp\n"
"tit\n"
"help.text"
-msgid "Bullets"
-msgstr "Pikat"
-
-#: 06050100.xhp
-msgctxt ""
-"06050100.xhp\n"
-"bm_id3150502\n"
-"help.text"
-msgid "<bookmark_value>bullets;paragraphs</bookmark_value> <bookmark_value>paragraphs; inserting bullets</bookmark_value> <bookmark_value>inserting; paragraph bullets</bookmark_value>"
-msgstr ""
+msgid "Row Height"
+msgstr "Lartësia e rreshtit"
-#: 06050100.xhp
+#: 05340100.xhp
msgctxt ""
-"06050100.xhp\n"
-"hd_id3150502\n"
+"05340100.xhp\n"
+"hd_id3154400\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050100.xhp\" name=\"Bullets\">Bullets</link>"
-msgstr ""
+msgid "Row Height"
+msgstr "Lartësia e rreshtit"
-#: 06050100.xhp
+#: 05340100.xhp
msgctxt ""
-"06050100.xhp\n"
-"par_id3155069\n"
+"05340100.xhp\n"
+"par_id3154044\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the different bullet styles that you can apply.</ahelp>"
+msgid "<variable id=\"zeilenhoehetext\"><ahelp hid=\"HID_BROWSER_ROWHEIGHT\">Changes the height of the current row, or the selected rows.</ahelp></variable>"
msgstr ""
-#: 06050100.xhp
+#: 05340100.xhp
msgctxt ""
-"06050100.xhp\n"
-"par_id0202200910514673\n"
+"05340100.xhp\n"
+"par_id3150756\n"
+"7\n"
"help.text"
-msgid "Bullets and Numbering of paragraphs is supported only in Writer, Impress and Draw."
+msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">You can also change the height of a row by dragging the divider below the row header. To fit the row height to the cell contents, double-click the divider. </caseinline></switchinline>"
msgstr ""
-#: 06050100.xhp
+#: 05340100.xhp
msgctxt ""
-"06050100.xhp\n"
-"hd_id3153255\n"
+"05340100.xhp\n"
+"hd_id3149962\n"
"3\n"
"help.text"
-msgid "Selection"
-msgstr "Selektimet"
+msgid "Height"
+msgstr "Lartësia"
-#: 06050100.xhp
+#: 05340100.xhp
msgctxt ""
-"06050100.xhp\n"
-"par_id3155364\n"
+"05340100.xhp\n"
+"par_id3144750\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_VALUESET_BULLET\">Click the bullet style that you want to use.</ahelp>"
+msgid "<ahelp hid=\"DBACCESS_METRICFIELD_DLG_ROWHEIGHT_MF_VALUE\">Enter the row height that you want to use.</ahelp>"
msgstr ""
-#: 06050100.xhp
+#: 05340100.xhp
msgctxt ""
-"06050100.xhp\n"
-"par_id3149549\n"
+"05340100.xhp\n"
+"hd_id3154926\n"
+"5\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position tab (Numbering/Bullets dialog)\">Position tab (Bullets and Numbering dialog)</link>"
-msgstr ""
+msgid "Default value"
+msgstr "Mosparaqitje vlerash"
-#: 06050100.xhp
+#: 05340100.xhp
msgctxt ""
-"06050100.xhp\n"
-"par_id3154317\n"
+"05340100.xhp\n"
+"par_id3154894\n"
+"6\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Options tab (Bullets and Numbering dialog)</link>"
+msgid "<ahelp hid=\"DBACCESS_CHECKBOX_DLG_ROWHEIGHT_CB_STANDARD\">Adjusts the row height to the size based on the default template. Existing contents may be shown vertically cropped. The height no longer increases automatically when you enter larger contents.</ahelp>"
msgstr ""
-#: 06040100.xhp
+#: 05340200.xhp
msgctxt ""
-"06040100.xhp\n"
+"05340200.xhp\n"
"tit\n"
"help.text"
-msgid "Options"
-msgstr "Opcionet"
-
-#: 06040100.xhp
-msgctxt ""
-"06040100.xhp\n"
-"bm_id3155620\n"
-"help.text"
-msgid "<bookmark_value>AutoCorrect function; options</bookmark_value> <bookmark_value>replacement options</bookmark_value> <bookmark_value>words; automatically replacing</bookmark_value> <bookmark_value>abbreviation replacement</bookmark_value> <bookmark_value>capital letters; AutoCorrect function</bookmark_value> <bookmark_value>bold; AutoFormat function</bookmark_value> <bookmark_value>underlining; AutoFormat function</bookmark_value> <bookmark_value>spaces; ignoring double</bookmark_value> <bookmark_value>numbering; using automatically</bookmark_value> <bookmark_value>paragraphs; numbering automatically</bookmark_value> <bookmark_value>tables in text; creating automatically</bookmark_value> <bookmark_value>titles; formatting automatically</bookmark_value> <bookmark_value>empty paragraph removal</bookmark_value> <bookmark_value>paragraphs; removing blank ones</bookmark_value> <bookmark_value>styles; replacing automatically</bookmark_value> <bookmark_value>user-defined styles; automatically replacing</bookmark_value> <bookmark_value>bullets; replacing</bookmark_value> <bookmark_value>paragraphs; joining</bookmark_value> <bookmark_value>joining; paragraphs</bookmark_value>"
-msgstr ""
+msgid "Column width"
+msgstr "Gjerësia e kolonës"
-#: 06040100.xhp
+#: 05340200.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3155620\n"
+"05340200.xhp\n"
+"hd_id3158397\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040100.xhp\" name=\"Options\">Options</link>"
-msgstr ""
+msgid "Column width"
+msgstr "Gjerësia e kolonës"
-#: 06040100.xhp
+#: 05340200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3146946\n"
+"05340200.xhp\n"
+"par_id3153272\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_OFAPAGE_AUTOFORMAT_CLB\">Select the options for automatically correcting errors as you type, and then click <emph>OK</emph>.</ahelp>"
-msgstr ""
-
-#: 06040100.xhp
-msgctxt ""
-"06040100.xhp\n"
-"par_id3153124\n"
-"32\n"
-"help.text"
-msgid "In text documents, you can choose to apply the AutoCorrect corrections while you type [T], or only when you modify existing text [M] with <emph>Format - AutoCorrect - Apply</emph>."
+msgid "<variable id=\"spaltetext\"><ahelp hid=\"HID_BROWSER_COLUMNWIDTH\" visibility=\"visible\">Changes the width of the current column, or the selected columns.</ahelp></variable>"
msgstr ""
-#: 06040100.xhp
+#: 05340200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id7547227\n"
+"05340200.xhp\n"
+"par_id3152821\n"
+"7\n"
"help.text"
-msgid "When you choose to modify existing text with all options deselected, still all \"Default\" paragraph styles will be converted to \"Text body\" styles."
+msgid "You can also change the width of a column by dragging the divider beside the column header.<switchinline select=\"appl\"> <caseinline select=\"CALC\"> To fit the column width to the cell contents, double-click the divider.</caseinline> </switchinline>"
msgstr ""
-#: 06040100.xhp
+#: 05340200.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3154398\n"
+"05340200.xhp\n"
+"hd_id3149346\n"
"3\n"
"help.text"
-msgid "Use replacement table"
-msgstr "Përdor tabelën zëvendësuese"
+msgid "Width"
+msgstr "Gjerësia"
-#: 06040100.xhp
+#: 05340200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3151234\n"
+"05340200.xhp\n"
+"par_id3147576\n"
"4\n"
"help.text"
-msgid "If you type a letter combination that matches a shortcut in the <link href=\"text/shared/01/06040200.xhp\" name=\"replacement table\">replacement table</link>, the letter combination is replaced with the replacement text."
+msgid "<ahelp hid=\"DBACCESS_METRICFIELD_DLG_COLWIDTH_MF_VALUE\" visibility=\"visible\">Enter the column width that you want to use.</ahelp>"
msgstr ""
-#: 06040100.xhp
+#: 05340200.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3150144\n"
+"05340200.xhp\n"
+"hd_id3148621\n"
"5\n"
"help.text"
-msgid "Correct TWo INitial CApitals"
-msgstr "Korrigjo DY SHKronjat e PAra të mëdha"
+msgid "<switchinline select=\"appl\"> <caseinline select=\"CALC\">Default value</caseinline> <defaultinline>Automatic</defaultinline> </switchinline>"
+msgstr ""
-#: 06040100.xhp
+#: 05340200.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3149177\n"
+"05340200.xhp\n"
+"par_id3147008\n"
"6\n"
"help.text"
-msgid "If you type two uppercase letters at the beginning of a \"WOrd\", the second uppercase letter is automatically replaced with a lowercase letter."
+msgid "<ahelp hid=\"DBACCESS_CHECKBOX_DLG_COLWIDTH_CB_STANDARD\" visibility=\"visible\">Automatically adjusts the column width based on the current font.</ahelp>"
msgstr ""
-#: 06040100.xhp
-msgctxt ""
-"06040100.xhp\n"
-"hd_id3156426\n"
-"7\n"
-"help.text"
-msgid "Capitalize first letter of every sentence."
-msgstr "Bën shkronjë të madhe shkronjën e parë në çdo fjalë."
-
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3155339\n"
-"8\n"
+"05340300.xhp\n"
+"tit\n"
"help.text"
-msgid "Capitalizes the first letter of every sentence."
-msgstr "Bën shkronjë të madhe shkronjën e parë në çdo fjalë."
+msgid "Alignment"
+msgstr "Mbështetje"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id5240028\n"
+"05340300.xhp\n"
+"bm_id3154545\n"
"help.text"
-msgid "The first letter in a Calc cell will never be capitalized automatically."
+msgid "<bookmark_value>aligning; cells</bookmark_value><bookmark_value>cells; aligning</bookmark_value>"
msgstr ""
-#: 06040100.xhp
-msgctxt ""
-"06040100.xhp\n"
-"hd_id3145072\n"
-"24\n"
-"help.text"
-msgid "Automatic *bold* and _underline_"
-msgstr "Nënvizo (vijë e gjatë lidhëse, e theksuar)"
-
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3153577\n"
-"26\n"
+"05340300.xhp\n"
+"hd_id3154545\n"
+"1\n"
"help.text"
-msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
+msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Alignment\">Alignment</link>"
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3153127\n"
-"105\n"
+"05340300.xhp\n"
+"par_id3155577\n"
+"52\n"
"help.text"
-msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
+msgid "<ahelp hid=\"HID_ALIGNMENT\">Sets the alignment options for the contents of the current cell, or the selected cells.</ahelp>"
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3150275\n"
-"17\n"
+"05340300.xhp\n"
+"hd_id3153124\n"
+"54\n"
"help.text"
-msgid "URL Recognition"
-msgstr "URL njohje"
+msgid "Horizontal"
+msgstr "Horizontal"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3158430\n"
-"18\n"
+"05340300.xhp\n"
+"par_id3144436\n"
+"55\n"
"help.text"
-msgid "Automatically creates a hyperlink when you type a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>."
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGNMENT_LB_HORALIGN\">Select the horizontal alignment option that you want to apply to the cell contents.</ahelp>"
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3148473\n"
-"19\n"
+"05340300.xhp\n"
+"hd_id3146109\n"
+"56\n"
"help.text"
-msgid "Replace Dashes"
-msgstr "Zëvendëso vijat lidhëse"
+msgid "Default"
+msgstr "Standarde"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3144439\n"
-"20\n"
+"05340300.xhp\n"
+"par_id3166445\n"
+"57\n"
"help.text"
-msgid "Replaces one or two hyphens with a long dash (see the following table)."
+msgid "Aligns numbers to the right, and text to the left."
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id87282\n"
+"05340300.xhp\n"
+"par_id3147010\n"
+"10\n"
"help.text"
-msgid "Text will be replaced after you type a trailing white space (space, tab, or return). In the following table, the A and B represent text consisting of letters A to z or digits 0 to 9."
+msgid "If the <emph>Default</emph> option is selected, numbers will be aligned to the right and text will be left-justified."
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3408612\n"
+"05340300.xhp\n"
+"hd_id3153577\n"
+"58\n"
"help.text"
-msgid "Text that you type:"
-msgstr "Teksti që përshkruan formatin."
+msgid "Left"
+msgstr "Majtas"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id4362010\n"
+"05340300.xhp\n"
+"par_id3150506\n"
+"59\n"
"help.text"
-msgid "Result that you get:"
+msgid "<variable id=\"linkstext\"><ahelp hid=\".uno:AlignLeft\">Aligns the contents of the cell to the left.</ahelp></variable>"
msgstr ""
-#: 06040100.xhp
-msgctxt ""
-"06040100.xhp\n"
-"par_id1432844\n"
-"help.text"
-msgid "A - B (A, space, minus, space, B)"
-msgstr "Hapësirë e barabartë"
-
-#: 06040100.xhp
-msgctxt ""
-"06040100.xhp\n"
-"par_id7553941\n"
-"help.text"
-msgid "A – B (A, space, en-dash, space, B)"
-msgstr "Linjë vizë/pikë"
-
-#: 06040100.xhp
-msgctxt ""
-"06040100.xhp\n"
-"par_id1421246\n"
-"help.text"
-msgid "A -- B (A, space, minus, minus, space, B)"
-msgstr "Hapësirë e barabartë"
-
-#: 06040100.xhp
-msgctxt ""
-"06040100.xhp\n"
-"par_id2305673\n"
-"help.text"
-msgid "A – B (A, space, en-dash, space, B)"
-msgstr "Linjë vizë/pikë"
-
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id8703573\n"
+"05340300.xhp\n"
+"hd_id3156347\n"
+"60\n"
"help.text"
-msgid "A--B (A, minus, minus, B)"
-msgstr "Hapësirë e barabartë"
+msgid "Right"
+msgstr "Djathtas"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id6049684\n"
+"05340300.xhp\n"
+"par_id3148538\n"
+"61\n"
"help.text"
-msgid "A—B (A, em-dash, B)<br/>(see note below the table)"
+msgid "<variable id=\"rechtstext\"><ahelp hid=\".uno:AlignRight\">Aligns the contents of the cell to the right.</ahelp></variable>"
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id2219916\n"
+"05340300.xhp\n"
+"hd_id3153541\n"
+"62\n"
"help.text"
-msgid "A-B (A, minus, B)"
-msgstr ""
+msgid "Center"
+msgstr "Qendër"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id1868037\n"
+"05340300.xhp\n"
+"par_id3154380\n"
+"63\n"
"help.text"
-msgid "A-B (unchanged)"
+msgid "<variable id=\"zentrierttext\"><ahelp hid=\".\">Horizontally centers the contents of the cell.</ahelp></variable>"
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id714438\n"
+"05340300.xhp\n"
+"hd_id3159166\n"
+"64\n"
"help.text"
-msgid "A -B (A, space, minus, B)"
-msgstr "Hapësirë e barabartë"
+msgid "Justified"
+msgstr "Rrafshuar në të dy anët"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3924985\n"
+"05340300.xhp\n"
+"par_id3153665\n"
+"65\n"
"help.text"
-msgid "A -B (unchanged)"
+msgid "<variable id=\"blocktext\"><ahelp hid=\".uno:AlignBlock\">Aligns the contents of the cell to the left and to the right cell borders.</ahelp></variable>"
msgstr ""
-#: 06040100.xhp
-msgctxt ""
-"06040100.xhp\n"
-"par_id1486861\n"
-"help.text"
-msgid "A --B (A, space, minus, minus, B)"
-msgstr "Hapësirë e barabartë"
-
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id844141\n"
+"05340300.xhp\n"
+"par_idN1079C\n"
"help.text"
-msgid "A –B (A, space, en-dash, B)"
-msgstr "Linjë vizë/pikë"
+msgid "Filled"
+msgstr "Hark, i mbushur"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id1416974\n"
+"05340300.xhp\n"
+"par_idN107A0\n"
"help.text"
-msgid "If the text has the Hungarian or Finnish language attribute, then two hyphens in the sequence A--B are replaced by an en-dash instead of an em-dash."
+msgid "Repeats the cell contents (number and text) until the visible area of the cell is filled. This feature does not work on text that contains line breaks."
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3152472\n"
-"99\n"
+"05340300.xhp\n"
+"par_idN1079D\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Delete spaces and tabs at beginning and end of paragraph</caseinline></switchinline>"
-msgstr ""
+msgid "Distributed"
+msgstr "Shpërndarje"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3156024\n"
-"100\n"
+"05340300.xhp\n"
+"par_idN107A1\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Removes spaces and tabs at the beginning of a paragraph. To use this option, the <emph>Apply Styles</emph> option must also be selected.</caseinline></switchinline>"
+msgid "Aligns contents evenly across the whole cell. Unlike <emph>Justified</emph>, it justifies the very last line of text, too."
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3147303\n"
-"101\n"
+"05340300.xhp\n"
+"hd_id3158432\n"
+"41\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Delete blanks and tabs at end and start of lines</caseinline></switchinline>"
-msgstr ""
+msgid "Indent"
+msgstr "Kryerresht"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3150866\n"
-"102\n"
+"05340300.xhp\n"
+"par_id3153716\n"
+"42\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Removes spaces and tabs at the beginning of each line. To use this option, the <emph>Apply Styles</emph> option must also be selected.</caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ALIGNMENT:ED_INDENT\">Indents from the left edge of the cell by the amount that you enter.</ahelp>"
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3150400\n"
-"28\n"
+"05340300.xhp\n"
+"hd_id3149903\n"
+"66\n"
"help.text"
-msgid "Ignore double spaces"
-msgstr "Tabet dhe hapësirat"
+msgid "Vertical"
+msgstr "Vertikal"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3154938\n"
-"29\n"
+"05340300.xhp\n"
+"par_id3148924\n"
+"67\n"
"help.text"
-msgid "Replaces two or more consecutive spaces with a single space."
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGNMENT_LB_VERALIGN\">Select the vertical alignment option that you want to apply to the cell contents.</ahelp>"
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3145116\n"
-"33\n"
+"05340300.xhp\n"
+"hd_id3146848\n"
+"68\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Apply numbering - symbol</caseinline></switchinline>"
-msgstr ""
+msgid "Default"
+msgstr "Standarde"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3150870\n"
-"34\n"
+"05340300.xhp\n"
+"par_id3150822\n"
+"69\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Automatically creates a numbered list when you press Enter at the end of a line that starts with a number followed by a period, a space, and text. If a line starts with a hyphen (-), a plus sign (+), or an asterisk (*), followed by a space, and text, a bulleted list is created when you press Enter.</caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGNMENT_LB_VERALIGN\">Aligns the cell contents to the bottom of the cell.</ahelp>"
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3146874\n"
-"92\n"
+"05340300.xhp\n"
+"hd_id3147531\n"
+"70\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To cancel automatic numbering when you press Enter at the end of a line that starts with a numbering symbol, press Enter again.</caseinline></switchinline>"
-msgstr ""
+msgid "Top"
+msgstr "Lartë"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3145606\n"
-"77\n"
+"05340300.xhp\n"
+"par_id3145085\n"
+"71\n"
"help.text"
-msgid "The automatic numbering option is only applied to paragraphs that are formatted with the \"Default\", \"Text body\", or \"Text body indent\" paragraph style."
+msgid "<variable id=\"obentext\"><ahelp hid=\".uno:AlignTop\">Aligns the contents of the cell to the upper edge of the cell.</ahelp></variable>"
msgstr ""
-#: 06040100.xhp
-msgctxt ""
-"06040100.xhp\n"
-"hd_id3157962\n"
-"35\n"
-"help.text"
-msgid "Apply border"
-msgstr "Zbato kufinjtë dhe hijezimin"
-
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3144445\n"
-"36\n"
+"05340300.xhp\n"
+"hd_id3156343\n"
+"72\n"
"help.text"
-msgid "Automatically applies a border at the base of the preceding paragraph when you type three or more specific characters, and then press Enter. To create a single line, type three or more hyphens (-), or underscores ( _ ), and then press Enter. To create a double line, type three or more equal signs (=), asterisks (*), tildes (~), or hash marks (#), and then press Enter."
-msgstr ""
+msgid "Bottom"
+msgstr "Poshtë"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_idN10C2E\n"
+"05340300.xhp\n"
+"par_id3152813\n"
+"26\n"
"help.text"
-msgid "To delete the created line, click the paragraph above the line, choose <emph>Format - Paragraph - Borders</emph>, delete the bottom border."
+msgid "<variable id=\"untentext\"><ahelp hid=\".\">Aligns the contents of the cell to the lower edge of the cell.</ahelp></variable>"
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_idN10C35\n"
+"05340300.xhp\n"
+"hd_id3151106\n"
+"73\n"
"help.text"
-msgid "The following table summarizes the line thickness for the different characters:"
-msgstr ""
+msgid "Middle"
+msgstr "Lart - në mes"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3148576\n"
-"37\n"
+"05340300.xhp\n"
+"par_id3151210\n"
+"74\n"
"help.text"
-msgid "---"
+msgid "<variable id=\"mittetext\"><ahelp hid=\".uno:AlignVCenter\">Vertically centers the contents of the cell.</ahelp></variable>"
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3154690\n"
-"38\n"
+"05340300.xhp\n"
+"hd_id3151107\n"
"help.text"
-msgid "0.5pt single underline"
-msgstr "Nënvizo (vija të gjata lidhëse)"
+msgid "Justified"
+msgstr "Rrafshuar në të dy anët"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3154472\n"
-"39\n"
+"05340300.xhp\n"
+"par_id3151211\n"
"help.text"
-msgid "___"
+msgid "Aligns the contents of the cell to the top and to the bottom cell borders."
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3149266\n"
-"40\n"
+"05340300.xhp\n"
+"hd_id3151108\n"
"help.text"
-msgid "1.0pt single underline"
-msgstr "Nënvizo (vija të gjata lidhëse)"
+msgid "Distributed"
+msgstr "Shpërndarje"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3147580\n"
-"41\n"
+"05340300.xhp\n"
+"par_id3151212\n"
"help.text"
-msgid "==="
+msgid "Same as <emph>Justified</emph>, unless the text orientation is vertical. Then it behaves similarly, than horizontal <emph>Distributed</emph> setting, i.e. the very last line is justified, too."
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3145364\n"
-"42\n"
+"05340300.xhp\n"
+"hd_id3154154\n"
+"51\n"
"help.text"
-msgid "1.1pt double underline"
-msgstr "Nënvizo (valëzuar dyfisht)"
+msgid "Text orientation"
+msgstr "Orientimi i zarfit"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3148647\n"
-"43\n"
+"05340300.xhp\n"
+"par_id3151380\n"
+"30\n"
"help.text"
-msgid "***"
+msgid "<ahelp hid=\".uno:AlignVCenter\">Sets the text orientation of the cell contents.</ahelp>"
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3152791\n"
-"44\n"
+"05340300.xhp\n"
+"par_id3147085\n"
+"49\n"
"help.text"
-msgid "4.5pt double underline"
-msgstr "Nënvizo (valëzuar dyfisht)"
+msgid "<ahelp hid=\"HID_ALIGNMENT_CTR_DIAL\">Click in the dial to set the text orientation.</ahelp>"
+msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3146975\n"
+"05340300.xhp\n"
+"hd_id3150449\n"
"45\n"
"help.text"
-msgid "~~~"
-msgstr ""
+msgid "Degrees"
+msgstr "0 shkallë"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3152885\n"
+"05340300.xhp\n"
+"par_id3153194\n"
"46\n"
"help.text"
-msgid "6.0pt double underline"
-msgstr "Nënvizo (valëzuar dyfisht)"
-
-#: 06040100.xhp
-msgctxt ""
-"06040100.xhp\n"
-"par_id3145591\n"
-"47\n"
-"help.text"
-msgid "###"
+msgid "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXPAGE_ALIGNMENT_NF_DEGREES\">Enter the rotation angle for the text in the selected cell(s). A positive number rotates the text to the left and a negative number rotates the text to the right.</ahelp>"
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3153188\n"
-"48\n"
+"05340300.xhp\n"
+"hd_id3150497\n"
+"75\n"
"help.text"
-msgid "9.0pt double underline"
-msgstr "Nënvizo (valëzuar dyfisht)"
+msgid "Reference edge"
+msgstr "Mprehtësi referimi"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3149064\n"
-"49\n"
+"05340300.xhp\n"
+"par_id3154069\n"
+"76\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create table</caseinline></switchinline>"
+msgid "<ahelp hid=\"HID_ALIGNMENT_CTR_BORDER_LOCK\">Specify the cell edge from which to write the rotated text.</ahelp>"
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3146119\n"
-"50\n"
+"05340300.xhp\n"
+"par_id3147299\n"
+"78\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Creates a table when you press Enter after typing a series of hyphens (-) or tabs separated by plus signs, that is, +------+---+. Plus signs indicate column dividers, while hyphens and tabs indicate the width of a column.</caseinline></switchinline>"
+msgid "<emph>Text Extension From Lower Cell Border:</emph> Writes the rotated text from the bottom cell edge outwards."
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3147219\n"
-"53\n"
+"05340300.xhp\n"
+"par_id3149561\n"
+"79\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">+-----------------+---------------+------+</caseinline></switchinline>"
+msgid "<emph>Text Extension From Upper Cell Border:</emph> Writes the rotated text from the top cell edge outwards."
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3153334\n"
-"55\n"
+"05340300.xhp\n"
+"par_id3163712\n"
+"80\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Apply Styles</caseinline></switchinline>"
+msgid "<emph>Text Extension Inside Cells:</emph> Writes the rotated text only within the cell."
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3147396\n"
-"56\n"
+"05340300.xhp\n"
+"par_idN109F4\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Automatically replaces the \"Default\" paragraph style with the Heading 1 to Heading 8 paragraph styles. To apply the Heading 1 paragraph style, type the text that you want to use as a heading (without a period), and then press Enter twice. To apply a sub-heading, press Tab one or more times, type the text (without a period), and then press Enter.</caseinline></switchinline>"
-msgstr ""
+msgid "Vertically stacked"
+msgstr "Cilinndër, grumbulluar"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3151075\n"
-"58\n"
+"05340300.xhp\n"
+"par_idN109F8\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Remove blank paragraphs</caseinline></switchinline>"
+msgid "<ahelp hid=\".\">Aligns text vertically.</ahelp>"
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3145728\n"
-"59\n"
+"05340300.xhp\n"
+"hd_id3152576\n"
+"84\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Removes empty paragraphs from the current document when you choose <emph>Format - AutoCorrect - Apply</emph>.</caseinline></switchinline>"
-msgstr ""
+msgid "Asian layout mode"
+msgstr "Modi i shikimit paraprak"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3152375\n"
-"60\n"
+"05340300.xhp\n"
+"par_id3150010\n"
+"85\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Replace Custom Styles</caseinline></switchinline>"
+msgid "This checkbox is only available if Asian language support is enabled and the text direction is set to vertical. <ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_ALIGNMENT_BTN_ASIAN_VERTICAL\">Aligns Asian characters one below the other in the selected cell(s). If the cell contains more than one line of text, the lines are converted to text columns that are arranged from right to left. Western characters in the converted text are rotated 90 degrees to the right. Asian characters are not rotated.</ahelp>"
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3156299\n"
-"61\n"
+"05340300.xhp\n"
+"hd_id3150032\n"
+"43\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Replaces the custom paragraph styles in the current document with the \"Default\", the \"Text Body\", or the \"Text Body Indent\" paragraph style.</caseinline></switchinline>"
-msgstr ""
+msgid "Properties"
+msgstr "Vetitë"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3147045\n"
-"62\n"
+"05340300.xhp\n"
+"par_id3146120\n"
+"44\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Replace bullets with</caseinline></switchinline>"
+msgid "Determine the text flow in a cell."
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3150420\n"
-"63\n"
+"05340300.xhp\n"
+"hd_id3145590\n"
+"3\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Converts paragraphs that start with a hyphen (-), a plus sign (+), or an asterisk (*) directly followed by a space or a tab, to bulleted lists. This option only works on paragraphs that are formatted with the \"Default\", \"Text Body\", or \"Text Body Indent\" paragraph styles. To change the bullet style that is used, select this option, and then click <emph>Edit</emph>.</caseinline></switchinline>"
-msgstr ""
+msgid "Wrap text automatically"
+msgstr "Përshtat tekstin për formë"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3151019\n"
-"66\n"
+"05340300.xhp\n"
+"par_id3148555\n"
+"4\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Combine single line paragraphs if length greater than ...</caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_ALIGNMENT:BTN_WRAP\">Wraps text onto another line at the cell border. The number of lines depends on the width of the cell.</ahelp> To enter a manual line break, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter in the cell."
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3154162\n"
-"67\n"
+"05340300.xhp\n"
+"hd_id3147380\n"
+"81\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Combines consecutive single-line paragraphs into a single paragraph. This option only works on paragraphs that use the \"Default\" paragraph style. If a paragraph is longer than the specified length value, the paragraph is combined with the next paragraph. To enter a different length value, select the option, and then click <link href=\"text/swriter/01/05150104.xhp\"><emph>Edit</emph></link>.</caseinline></switchinline>"
-msgstr ""
+msgid "Hyphenation active"
+msgstr "Lidhje aktive"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id1218200910244459\n"
+"05340300.xhp\n"
+"par_id3148458\n"
+"82\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Modifies the selected AutoCorrect option.</ahelp>"
+msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_ALIGNMENT_BTN_HYPH\">Enables word hyphenation for text wrapping to the next line.</ahelp>"
msgstr ""
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"hd_id3144749\n"
-"75\n"
+"05340300.xhp\n"
+"par_idN10AD3\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Edit</caseinline></switchinline>"
-msgstr ""
+msgid "Shrink to fit cell size"
+msgstr "Përshtate sipas madhësisë tekst objektin"
-#: 06040100.xhp
+#: 05340300.xhp
msgctxt ""
-"06040100.xhp\n"
-"par_id3153841\n"
-"76\n"
+"05340300.xhp\n"
+"par_idN10AD7\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOFMT_APPLY:PB_EDIT\">Modifies the selected AutoCorrect option.</ahelp></caseinline></switchinline>"
+msgid "<ahelp hid=\".\">Reduces the apparent size of the font so that the contents of the cell fit into the current cell width. You cannot apply this command to a cell that contains line breaks.</ahelp>"
msgstr ""
-#: 05020600.xhp
+#: 05340400.xhp
msgctxt ""
-"05020600.xhp\n"
+"05340400.xhp\n"
"tit\n"
"help.text"
-msgid "Asian Layout"
-msgstr "Formëdhënja Aziatike"
+msgid "Data Sources"
+msgstr "Burimet e të dhënave"
-#: 05020600.xhp
+#: 05340400.xhp
msgctxt ""
-"05020600.xhp\n"
-"bm_id3156053\n"
+"05340400.xhp\n"
+"bm_id3153116\n"
"help.text"
-msgid "<bookmark_value>double-line writing in Asian layout</bookmark_value><bookmark_value>formats; Asian layout</bookmark_value><bookmark_value>characters; Asian layout</bookmark_value><bookmark_value>text; Asian layout</bookmark_value>"
+msgid "<bookmark_value>data source browser</bookmark_value><bookmark_value>tables in databases;browsing and editing</bookmark_value><bookmark_value>databases; editing tables</bookmark_value><bookmark_value>editing; database tables and queries</bookmark_value><bookmark_value>queries; editing in data source view</bookmark_value>"
msgstr ""
-#: 05020600.xhp
+#: 05340400.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3156053\n"
-"1\n"
+"05340400.xhp\n"
+"hd_id3153323\n"
+"68\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020600.xhp\" name=\"Asian Layout\">Asian Layout</link>"
+msgid "<link href=\"text/shared/01/05340400.xhp\" name=\"Data Sources\">Data Sources</link>"
msgstr ""
-#: 05020600.xhp
+#: 05340400.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3155351\n"
+"05340400.xhp\n"
+"par_id3149511\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"\">Sets the options for double-line writing for Asian languages. Select the characters in your text, and then choose this command.</ahelp>"
+msgid "This section contains information on browsing and editing database tables."
msgstr ""
-#: 05020600.xhp
-msgctxt ""
-"05020600.xhp\n"
-"hd_id3152552\n"
-"3\n"
-"help.text"
-msgid "Double-lined"
-msgstr "Linja të dyfishta"
-
-#: 05020600.xhp
+#: 05340400.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3155338\n"
-"4\n"
+"05340400.xhp\n"
+"par_id3149150\n"
+"51\n"
"help.text"
-msgid "Set the double-line options for the selected text."
+msgid "You cannot use the data source browser on a database table that is open in Design view."
msgstr ""
-#: 05020600.xhp
+#: 05340400.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3147089\n"
-"5\n"
+"05340400.xhp\n"
+"hd_id3149235\n"
+"8\n"
"help.text"
-msgid "Write in double lines"
-msgstr "Rreshtat në kornizë të tekstit"
+msgid "Data source browser"
+msgstr "Lidhja me burimin e të dhënave"
-#: 05020600.xhp
+#: 05340400.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3150693\n"
-"6\n"
+"05340400.xhp\n"
+"par_id3154897\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/twolinespage/twolines\">Allows you to write in double lines in the area that you selected in the current document.</ahelp>"
+msgid "<ahelp hid=\".\">The commands for the data source browser are found on the <link href=\"text/shared/01/05340400.xhp\" name=\"Database Bar\">Table Data bar</link> and in <link href=\"text/shared/01/05340400.xhp\" name=\"context menus\">context menus</link>.</ahelp>"
msgstr ""
-#: 05020600.xhp
+#: 05340400.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3157959\n"
-"7\n"
+"05340400.xhp\n"
+"hd_id3154514\n"
+"12\n"
"help.text"
-msgid "Enclosing characters"
-msgstr "Karakteret e fusnotave"
+msgid "Selecting records"
+msgstr "Regjistrimet e zgjedhur"
-#: 05020600.xhp
+#: 05340400.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3154749\n"
-"8\n"
+"05340400.xhp\n"
+"par_id3149514\n"
+"34\n"
"help.text"
-msgid "Specify the characters to enclose the double-lined area."
+msgid "To select a record in a database table, click the row header, or click a row header, and then use the Up or Down arrow keys."
msgstr ""
-#: 05020600.xhp
+#: 05340400.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3148539\n"
-"9\n"
+"05340400.xhp\n"
+"par_id7812433001\n"
"help.text"
-msgid "Initial character"
-msgstr "Kodi i karakterit"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select database records. Drag-and-drop rows or cells to the document to insert contents. Drag-and-drop column headers to insert fields.</ahelp>"
+msgstr ""
-#: 05020600.xhp
+#: 05340400.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3150504\n"
-"10\n"
+"05340400.xhp\n"
+"par_id3149578\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/twolinespage/startbracket\">Select the character to define the start of the double-lined area. If you want to choose a custom character, select <emph>Other Characters</emph>.</ahelp>"
+msgid "The following table describes how to select individual elements in the data source browser:"
msgstr ""
-#: 05020600.xhp
+#: 05340400.xhp
msgctxt ""
-"05020600.xhp\n"
-"hd_id3159115\n"
-"11\n"
+"05340400.xhp\n"
+"par_id3158432\n"
+"66\n"
"help.text"
-msgid "Final character"
-msgstr "Kodi i karakterit"
+msgid "Selection"
+msgstr "Selektimet"
-#: 05020600.xhp
+#: 05340400.xhp
msgctxt ""
-"05020600.xhp\n"
-"par_id3149191\n"
-"12\n"
+"05340400.xhp\n"
+"par_id3150670\n"
+"67\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/twolinespage/endbracket\">Select the character to define the end of the double-lined area. If you want to choose a custom character, select <emph>Other Characters</emph>.</ahelp>"
-msgstr ""
+msgid "Action"
+msgstr "Veprim"
-#: 05020000.xhp
+#: 05340400.xhp
msgctxt ""
-"05020000.xhp\n"
-"tit\n"
+"05340400.xhp\n"
+"par_id3153332\n"
+"14\n"
"help.text"
-msgid "Character"
-msgstr "Karakter"
+msgid "Record"
+msgstr "Shënim"
-#: 05020000.xhp
+#: 05340400.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3150347\n"
-"1\n"
+"05340400.xhp\n"
+"par_id3153700\n"
+"15\n"
"help.text"
-msgid "Character"
-msgstr "Karakter"
+msgid "Click the row header"
+msgstr "Përsërite kreun"
-#: 05020000.xhp
+#: 05340400.xhp
msgctxt ""
-"05020000.xhp\n"
-"par_id3153272\n"
-"2\n"
+"05340400.xhp\n"
+"par_id3149575\n"
+"16\n"
"help.text"
-msgid "<variable id=\"zeichentext\"><ahelp hid=\".uno:FontDialog\">Changes the font and the font formatting for the selected characters.</ahelp></variable>"
+msgid "Several records or removing a selection"
msgstr ""
-#: 05020000.xhp
+#: 05340400.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3149988\n"
-"4\n"
+"05340400.xhp\n"
+"par_id3149295\n"
+"17\n"
"help.text"
-msgid "<link href=\"text/shared/01/05020100.xhp\" name=\"Font\">Font</link>"
+msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and click the row header"
msgstr ""
-#: 05020000.xhp
+#: 05340400.xhp
msgctxt ""
-"05020000.xhp\n"
-"hd_id3147588\n"
-"3\n"
+"05340400.xhp\n"
+"par_id3152360\n"
+"18\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/05020400.xhp\" name=\"Hyperlink\">Hyperlink</link></caseinline></switchinline>"
-msgstr ""
+msgid "Column"
+msgstr "Kolonë"
-#: online_update_dialog.xhp
-#, fuzzy
+#: 05340400.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"tit\n"
+"05340400.xhp\n"
+"par_id3153960\n"
+"19\n"
"help.text"
-msgid "Check for Updates"
-msgstr "E gatshme për përdorim"
+msgid "Click the column header"
+msgstr "Përsërite kreun"
-#: online_update_dialog.xhp
+#: 05340400.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"hd_id4959257\n"
+"05340400.xhp\n"
+"par_id3150541\n"
+"20\n"
"help.text"
-msgid "<link href=\"text/shared/01/online_update_dialog.xhp\">Check for Updates</link>"
-msgstr ""
+msgid "Data field"
+msgstr "Fusha e të dhënave"
-#: online_update_dialog.xhp
+#: 05340400.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id1906491\n"
+"05340400.xhp\n"
+"par_id3150358\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".\">Checks for available updates to your version of %PRODUCTNAME. If a newer version is available, you can choose to download the update. After downloading, if you have write permissions for the installation directory, you can install the update.</ahelp>"
-msgstr ""
+msgid "Click in the data field"
+msgstr "Të dhëna të Adresës - Fusha e Caktuar"
-#: online_update_dialog.xhp
+#: 05340400.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id4799340\n"
+"05340400.xhp\n"
+"par_id3154366\n"
+"22\n"
"help.text"
-msgid "Once the download starts, you see a progress bar and three buttons on the dialog. You can pause and resume the download by clicking the Pause and Resume buttons. Click Cancel to abort the download and delete the partly downloaded file."
-msgstr ""
+msgid "Entire table"
+msgstr "Ndryshimet ndikojnë në tërë tabelën"
-#: online_update_dialog.xhp
+#: 05340400.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id1502121\n"
+"05340400.xhp\n"
+"par_id3156422\n"
+"23\n"
"help.text"
-msgid "By default, downloads will be stored to your desktop. You can change the folder where the downloaded file will be stored in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Online Update."
+msgid "Click the row header of the column headings"
msgstr ""
-#: online_update_dialog.xhp
+#: 05340400.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id8266853\n"
+"05340400.xhp\n"
+"hd_id3154822\n"
+"49\n"
"help.text"
-msgid "After the download is complete, you can click Install to start the installation of the update. You see a confirmation dialog, where you can choose to close %PRODUCTNAME."
-msgstr ""
+msgid "Table Data toolbar (editing table data)"
+msgstr "Burimi i të Dhënave si Tabelë"
-#: online_update_dialog.xhp
+#: 05340400.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id2871181\n"
+"05340400.xhp\n"
+"par_id3151041\n"
"help.text"
-msgid "Under some operation systems, it may be required to manually go to the download folder, unzip the download file, and start the setup script."
+msgid "<image id=\"img_id3150740\" src=\"cmd/sc_editdoc.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150740\">Icon</alt></image>"
msgstr ""
-#: online_update_dialog.xhp
+#: 05340400.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id2733542\n"
+"05340400.xhp\n"
+"par_id3158410\n"
+"7\n"
"help.text"
-msgid "After installation of the update you can delete the download file to save space."
+msgid "Allows you to edit, add, or delete records from the database table."
msgstr ""
-#: online_update_dialog.xhp
+#: 05340400.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id4238715\n"
+"05340400.xhp\n"
+"hd_id3152463\n"
+"53\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Downloads and saves the update files to the desktop or a folder of your choice. Select the folder in %PRODUCTNAME - Online Update in the Options dialog box.</ahelp>"
+msgid "Cutting, copying and pasting data"
msgstr ""
-#: online_update_dialog.xhp
+#: 05340400.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id8277230\n"
+"05340400.xhp\n"
+"par_id3149287\n"
+"54\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Installs the downloaded update.</ahelp>"
+msgid "You can cut, copy, and paste records in <emph>Data Source</emph> view. The Data Source browser also supports the dragging and dropping of records, or text and numbers from other $[officename] files."
msgstr ""
-#: online_update_dialog.xhp
+#: 05340400.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id4086428\n"
+"05340400.xhp\n"
+"par_id3146921\n"
+"64\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Pauses the download. Later click Resume to continue downloading.</ahelp>"
+msgid "You cannot drag and drop to Yes/No, binary, image, or counting table fields."
msgstr ""
-#: online_update_dialog.xhp
+#: 05340400.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id9024628\n"
+"05340400.xhp\n"
+"par_id3149064\n"
+"63\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Continues a paused download.</ahelp>"
+msgid "Drag and drop only works in <emph>Edit</emph> mode."
msgstr ""
-#: online_update_dialog.xhp
+#: 05340400.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id3067110\n"
+"05340400.xhp\n"
+"hd_id3147295\n"
+"24\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Aborts the download and deletes the partly downloaded file.</ahelp>"
-msgstr ""
+msgid "Navigating in the Data Source Browser"
+msgstr "~Burimi i të dhënave i regjistruar në %PRODUCTNAME"
-#: online_update_dialog.xhp
+#: 05340400.xhp
msgctxt ""
-"online_update_dialog.xhp\n"
-"par_id8841822\n"
+"05340400.xhp\n"
+"par_id3152598\n"
+"25\n"
"help.text"
-msgid "<link href=\"text/shared/01/online_update.xhp\">Starting online updates</link>"
+msgid "Use the Form Navigation bar at the bottom of the Data Source view to navigate between different records."
msgstr ""
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"tit\n"
+"05340400.xhp\n"
+"hd_id3145263\n"
+"35\n"
"help.text"
-msgid "Crop"
-msgstr "Preje"
+msgid "First record"
+msgstr "Shënimi i parë"
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"bm_id3148585\n"
+"05340400.xhp\n"
+"par_id3149266\n"
"help.text"
-msgid "<bookmark_value>cropping pictures</bookmark_value><bookmark_value>pictures; cropping and zooming</bookmark_value><bookmark_value>zooming; pictures</bookmark_value><bookmark_value>scaling;pictures</bookmark_value><bookmark_value>sizes; pictures</bookmark_value><bookmark_value>original size;restoring after cropping</bookmark_value>"
+msgid "<image id=\"img_id3156060\" src=\"cmd/sc_firstrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156060\">Icon</alt></image>"
msgstr ""
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3154044\n"
-"1\n"
+"05340400.xhp\n"
+"par_id3151173\n"
+"36\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030800.xhp\" name=\"Crop\">Crop</link>"
+msgid "<ahelp hid=\".\">Go to the first record in the table.</ahelp>"
msgstr ""
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3150603\n"
-"2\n"
+"05340400.xhp\n"
+"hd_id3149417\n"
+"37\n"
"help.text"
-msgid "<ahelp hid=\".\">Trims or scales the selected graphic. You can also restore the graphic to its original size.</ahelp>"
-msgstr ""
+msgid "Previous record"
+msgstr "Shënimi i kaluar"
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3148585\n"
-"3\n"
+"05340400.xhp\n"
+"par_id3147484\n"
"help.text"
-msgid "Crop"
-msgstr "Preje"
+msgid "<image id=\"img_id3156736\" src=\"cmd/sc_prevrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156736\">Icon</alt></image>"
+msgstr ""
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3152372\n"
-"4\n"
+"05340400.xhp\n"
+"par_id3153280\n"
+"38\n"
"help.text"
-msgid "Use this area to trim or scale the selected graphic, or to add white space around the graphic."
+msgid "<ahelp hid=\".\">Go to the previous record in the table.</ahelp>"
msgstr ""
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3145669\n"
-"15\n"
+"05340400.xhp\n"
+"hd_id3153053\n"
+"39\n"
"help.text"
-msgid "Keep scale"
-msgstr "Përshtat Shkallën"
+msgid "Record number"
+msgstr "Numri i regjistrimit"
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3149346\n"
-"16\n"
+"05340400.xhp\n"
+"par_id3155851\n"
+"40\n"
"help.text"
-msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_GRFCROP_RB_ZOOMCONST\">Maintains the original scale of the graphic when you crop, so that only the size of the graphic changes.</ahelp>"
+msgid "<ahelp hid=\".\">Type the number of the record that you want to display, and then press Enter.</ahelp>"
msgstr ""
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3156426\n"
-"13\n"
+"05340400.xhp\n"
+"hd_id3157876\n"
+"41\n"
"help.text"
-msgid "Keep image size"
-msgstr "Përshtate me madhësinë"
+msgid "Next record"
+msgstr "Regjistrim tjetër"
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3155892\n"
-"14\n"
+"05340400.xhp\n"
+"par_id3151075\n"
"help.text"
-msgid "<ahelp hid=\"SVX_RADIOBUTTON_RID_SVXPAGE_GRFCROP_RB_SIZECONST\">Maintains the original size of the graphic when you crop, so that only the scale of the graphic changes. To reduce the scale of the graphic, select this option and enter negative values in the cropping boxes. To increase the scale of the graphic, enter positive values in the cropping boxes.</ahelp>"
+msgid "<image id=\"img_id3153214\" src=\"cmd/sc_nextrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153214\">Icon</alt></image>"
msgstr ""
-#: 05030800.xhp
-msgctxt ""
-"05030800.xhp\n"
-"hd_id3153683\n"
-"5\n"
-"help.text"
-msgid "Left"
-msgstr "Majtas"
-
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3145313\n"
-"6\n"
+"05340400.xhp\n"
+"par_id3166414\n"
+"42\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_LEFT\">If the <emph>Keep Scale</emph> option is selected, enter a positive amount to trim the left edge of the graphic, or a negative amount to add white space to the left of the graphic. If the <emph>Keep image size</emph> option is selected, enter a positive amount to increase the horizontal scale of the graphic, or a negative amount to decrease the horizontal scale of the graphic.</ahelp>"
+msgid "<ahelp hid=\".\">Go to the next record in the table.</ahelp>"
msgstr ""
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3163803\n"
-"7\n"
+"05340400.xhp\n"
+"hd_id3154015\n"
+"43\n"
"help.text"
-msgid "Right"
-msgstr "Djathtas"
+msgid "Last record"
+msgstr "Shënimi i fundit"
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3145382\n"
-"8\n"
+"05340400.xhp\n"
+"par_id3153838\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_RIGHT\">If the <emph>Keep Scale</emph> option is selected, enter a positive amount to trim the right edge of the graphic, or a negative amount to add white space to the right of the graphic. If the <emph>Keep image size</emph> option is selected, enter a positive amount to increase the horizontal scale of the graphic, or a negative amount to decrease the horizontal scale of the graphic.</ahelp>"
+msgid "<image id=\"img_id3156320\" src=\"cmd/sc_lastrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156320\">Icon</alt></image>"
msgstr ""
-#: 05030800.xhp
-msgctxt ""
-"05030800.xhp\n"
-"hd_id3156153\n"
-"9\n"
-"help.text"
-msgid "Top"
-msgstr "Lartë"
-
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3154514\n"
-"10\n"
+"05340400.xhp\n"
+"par_id3147175\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_TOP\">If the <emph>Keep Scale</emph> option is selected, enter a positive amount to trim the top of the graphic, or a negative amount to add white space above the graphic. If the <emph>Keep image size</emph> option is selected, enter a positive amount to increase the vertical scale of the graphic, or a negative amount to decrease the vertical scale of the graphic.</ahelp>"
+msgid "<ahelp hid=\".\">Go to the last record in the table.</ahelp>"
msgstr ""
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3149956\n"
-"11\n"
+"05340400.xhp\n"
+"hd_id3145162\n"
+"45\n"
"help.text"
-msgid "Bottom"
-msgstr "Poshtë"
+msgid "New record"
+msgstr "Shënim i ri"
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3150084\n"
-"12\n"
+"05340400.xhp\n"
+"par_id3151019\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_BOTTOM\">If the <emph>Keep Scale</emph> option is selected, enter a positive amount to trim the bottom of the graphic, or a negative amount to add white space below the graphic. If the <emph>Keep image size</emph> option is selected, enter a positive amount to increase the vertical scale of the graphic, or a negative amount to decrease the vertical scale of the graphic.</ahelp>"
+msgid "<image id=\"img_id3154636\" src=\"svtools/res/ed03.png\" width=\"0.1528inch\" height=\"0.1528inch\"><alt id=\"alt_id3154636\">Icon</alt></image>"
msgstr ""
-#: 05030800.xhp
-msgctxt ""
-"05030800.xhp\n"
-"hd_id3158432\n"
-"23\n"
-"help.text"
-msgid "Scale"
-msgstr "Shkallë"
-
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3153257\n"
-"24\n"
+"05340400.xhp\n"
+"par_id3146913\n"
+"46\n"
"help.text"
-msgid "Changes the scale of the selected graphic."
-msgstr "Ndryshimet ndikojnë në madhësinë e tabelës"
+msgid "<ahelp hid=\".\">Inserts a new record into the current table.</ahelp> To create a record, click the asterisk (*) button at the bottom of the table view. An empty row is added at the end of the table."
+msgstr ""
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3155504\n"
-"25\n"
+"05340400.xhp\n"
+"hd_id3150656\n"
+"47\n"
"help.text"
-msgid "Width"
-msgstr "Gjerësia"
+msgid "Number of records"
+msgstr "Numri total i shënimeve"
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3148943\n"
-"26\n"
+"05340400.xhp\n"
+"par_id3148483\n"
+"48\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_WIDTHZOOM\">Enter the width for the selected graphic as a percentage.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the number of records. For example, \"Record 7 of 9(2)\" indicates that two records (2) are selected in a table containing 9 records, and that the cursor is in record number 7.</ahelp>"
msgstr ""
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3145609\n"
-"27\n"
+"05340400.xhp\n"
+"hd_id3151357\n"
+"26\n"
"help.text"
-msgid "Height"
-msgstr "Lartësia"
+msgid "Organizing tables"
+msgstr "Indeksi i tabelave"
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3154348\n"
+"05340400.xhp\n"
+"par_id3153357\n"
"28\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_HEIGHTZOOM\">Enter the height of the selected graphic as a percentage.</ahelp>"
+msgid "To access the commands for formatting the table, right-click a column header, or a row header."
msgstr ""
-#: 05030800.xhp
-msgctxt ""
-"05030800.xhp\n"
-"hd_id3154924\n"
-"17\n"
-"help.text"
-msgid "Image size"
-msgstr "Madhësia Origjinale"
-
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3148755\n"
-"18\n"
+"05340400.xhp\n"
+"hd_id3148405\n"
+"3\n"
"help.text"
-msgid "Changes the size of the selected graphic."
-msgstr "Ndryshimet ndikojnë në madhësinë e tabelës"
+msgid "<link href=\"text/shared/01/05340402.xhp\" name=\"Table Format\">Table Format</link>"
+msgstr ""
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3161656\n"
-"19\n"
+"05340400.xhp\n"
+"hd_id3083283\n"
+"4\n"
"help.text"
-msgid "Width"
-msgstr "Gjerësia"
+msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Row Height\">Row Height</link>"
+msgstr ""
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3150543\n"
-"20\n"
+"05340400.xhp\n"
+"hd_id3150321\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_WIDTH\">Enter a width for the selected graphic.</ahelp>"
+msgid "<link href=\"text/shared/01/05340405.xhp\" name=\"Column Format\">Column Format</link>"
msgstr ""
-#: 05030800.xhp
+#: 05340400.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3150398\n"
-"21\n"
+"05340400.xhp\n"
+"hd_id3147341\n"
+"6\n"
"help.text"
-msgid "Height"
-msgstr "Lartësia"
+msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Column Width\">Column Width</link>"
+msgstr ""
-#: 05030800.xhp
+#: 05340402.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3154686\n"
-"22\n"
+"05340402.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_GRFCROP_MF_HEIGHT\">Enter a height for the selected graphic.</ahelp>"
-msgstr ""
+msgid "Table format"
+msgstr "Formati i tabelës"
-#: 05030800.xhp
+#: 05340402.xhp
msgctxt ""
-"05030800.xhp\n"
-"hd_id3148676\n"
-"31\n"
+"05340402.xhp\n"
+"hd_id3153514\n"
+"1\n"
"help.text"
-msgid "Original Size"
-msgstr "Madhësia Origjinale"
+msgid "Table format"
+msgstr "Formati i tabelës"
-#: 05030800.xhp
+#: 05340402.xhp
msgctxt ""
-"05030800.xhp\n"
-"par_id3154068\n"
-"32\n"
+"05340402.xhp\n"
+"par_id3154350\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXPAGE_GRFCROP_PB_ORGSIZE\">Returns the selected graphic to its original size.</ahelp>"
+msgid "<variable id=\"tabformtext\"><ahelp hid=\"HID_BROWSER_TABLEFORMAT\" visibility=\"visible\">Formats the selected row(s).</ahelp></variable>"
msgstr ""
-#: 06050600.xhp
+#: 05340404.xhp
msgctxt ""
-"06050600.xhp\n"
+"05340404.xhp\n"
"tit\n"
"help.text"
-msgid "Position"
-msgstr "Pozicion"
+msgid "Delete Rows"
+msgstr "Fshij Rreshtat"
-#: 06050600.xhp
+#: 05340404.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id3150467\n"
+"05340404.xhp\n"
+"hd_id3147617\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position\">Position</link>"
+msgid "<link href=\"text/shared/01/05340404.xhp\" name=\"Delete Rows\">Delete Rows</link>"
msgstr ""
-#: 06050600.xhp
+#: 05340404.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id3158397\n"
+"05340404.xhp\n"
+"par_id3147000\n"
"2\n"
"help.text"
-msgid "Sets the indent, spacing, and alignment options for the numbered or bulleted list."
-msgstr ""
-
-#: 06050600.xhp
-msgctxt ""
-"06050600.xhp\n"
-"par_id5004119\n"
-"help.text"
-msgid "The Position tab page looks different for documents using the new position and spacing attributes introduced with OpenOffice.org 3.0 (and used in all versions of LibreOffice), or documents using the old attributes from versions before 3.0. The new version of this tab page shows the controls \"Numbering followed by\", \"Numbering alignment\", \"Aligned at\", and \"Indent at\". The old version of this tab page that can be seen in an old numbered or bulleted list shows the controls \"Indent\", \"Width of numbering\", \"Minimum space numbering <-> text\", and \"Numbering alignment\"."
+msgid "<ahelp hid=\".\">Deletes the selected row(s).</ahelp>"
msgstr ""
-#: 06050600.xhp
+#: 05340404.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id3149031\n"
+"05340404.xhp\n"
+"par_id3145129\n"
"3\n"
"help.text"
-msgid "Level"
-msgstr "Nivel"
-
-#: 06050600.xhp
-msgctxt ""
-"06050600.xhp\n"
-"par_id3155755\n"
-"13\n"
-"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/levellb\">Select the level(s) that you want to modify.</ahelp>"
+msgid "This command can be activated only when you select the <link href=\"text/shared/02/07070000.xhp\" name=\"Edit\">Edit</link> icon on the Table Data bar or Standard bar."
msgstr ""
-#: 06050600.xhp
+#: 05340405.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id6561784\n"
+"05340405.xhp\n"
+"tit\n"
"help.text"
-msgid "Numbering followed by"
-msgstr "Numërimi sipas kapitullit"
+msgid "Column format"
+msgstr "Format tjetër"
-#: 06050600.xhp
+#: 05340405.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id423291\n"
+"05340405.xhp\n"
+"hd_id3152876\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the element that will follow the numbering: a tab stop, a space, or nothing.</ahelp>"
-msgstr ""
+msgid "Column format"
+msgstr "Format tjetër"
-#: 06050600.xhp
+#: 05340405.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id7809686\n"
+"05340405.xhp\n"
+"par_id3147543\n"
+"2\n"
"help.text"
-msgid "at"
-msgstr "Në majë"
+msgid "<variable id=\"spaltformtext\"><ahelp hid=\"HID_BROWSER_COLUMNFORMAT\" visibility=\"visible\">Formats the selected column(s).</ahelp></variable>"
+msgstr ""
-#: 06050600.xhp
+#: 05340405.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id8177434\n"
+"05340405.xhp\n"
+"hd_id3150620\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">If you select a tab stop to follow the numbering, you can enter a non-negative value as the tab stop position.</ahelp>"
+msgid "<link href=\"text/shared/01/05020300.xhp\" name=\"Format\">Format</link>"
msgstr ""
-#: 06050600.xhp
+#: 05340500.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id3155583\n"
-"5\n"
+"05340500.xhp\n"
+"tit\n"
"help.text"
-msgid "Numbering alignment"
-msgstr "Rreshtim i numërimit"
+msgid "Hide Columns"
+msgstr "Fshehi Kolonat"
-#: 06050600.xhp
+#: 05340500.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id3153063\n"
-"15\n"
+"05340500.xhp\n"
+"hd_id3148882\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/numalignlb\">Set the alignment of the numbering symbols. Select \"Left\" to align the numbering symbol to start directly at the \"Aligned at\" position. Select \"Right\" to align the symbol to end directly before the \"Aligned at\" position. Select \"Centered\" to center the symbol around the \"Aligned at\" position.</ahelp>"
+msgid "<link href=\"text/shared/01/05340500.xhp\" name=\"Hide Columns\">Hide Columns</link>"
msgstr ""
-#: 06050600.xhp
+#: 05340500.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id3147422\n"
-"22\n"
+"05340500.xhp\n"
+"par_id3155620\n"
+"2\n"
"help.text"
-msgid "The <emph>Numbering alignment</emph> option does not set the alignment of the paragraph."
+msgid "<ahelp hid=\".\">Hides the selected column(s). To display hidden columns, right-click any column header, and then choose <emph>Show Columns</emph>.</ahelp>"
msgstr ""
-#: 06050600.xhp
+#: 05340600.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id1619617\n"
+"05340600.xhp\n"
+"tit\n"
"help.text"
-msgid "Aligned at"
-msgstr "Në majë"
+msgid "Show Columns"
+msgstr "Paraqit Kolonat"
-#: 06050600.xhp
+#: 05340600.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id1015655\n"
+"05340600.xhp\n"
+"hd_id3152876\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the distance from the left page margin at which the numbering symbol will be aligned.</ahelp>"
+msgid "<link href=\"text/shared/01/05340600.xhp\" name=\"Show Columns\">Show Columns</link>"
msgstr ""
-#: 06050600.xhp
-msgctxt ""
-"06050600.xhp\n"
-"hd_id2336191\n"
-"help.text"
-msgid "Indent at"
-msgstr "Në majë"
-
-#: 06050600.xhp
+#: 05340600.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id6081728\n"
+"05340600.xhp\n"
+"par_id3147212\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the distance from the left page margin to the start of all lines in the numbered paragraph that follow the first line.</ahelp>"
+msgid "<ahelp hid=\".\">Displays hidden columns. Choose the column that you want to display from the list, or click <emph>All </emph>to display all of the hidden columns.</ahelp>"
msgstr ""
-#: 06050600.xhp
+#: 05350000.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id3154422\n"
-"9\n"
+"05350000.xhp\n"
+"tit\n"
"help.text"
-msgid "Indent"
-msgstr "Kryerresht"
+msgid "3D Effects"
+msgstr "3D Efektet"
-#: 06050600.xhp
+#: 05350000.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id3144438\n"
-"19\n"
+"05350000.xhp\n"
+"hd_id3153136\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/numdistmf\">Enter the amount of space to leave between the left page margin (or the left edge of the text object) and the left edge of the numbering symbol. If the current paragraph style uses an indent, the amount you enter here is added to the indent.</ahelp>"
+msgid "<link href=\"text/shared/01/05350000.xhp\" name=\"3D Effects\">3D Effects</link>"
msgstr ""
-#: 06050600.xhp
-msgctxt ""
-"06050600.xhp\n"
-"hd_id3155179\n"
-"7\n"
-"help.text"
-msgid "Relative"
-msgstr "Madhësitë relative"
-
-#: 06050600.xhp
+#: 05350000.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id3146137\n"
-"17\n"
+"05350000.xhp\n"
+"par_id3156324\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/relative\">Indents the current level relative to the previous level in the list hierarchy.</ahelp>"
+msgid "<ahelp hid=\".uno:Window3D\">Specifies the properties of 3D object(s) in the current document.</ahelp>"
msgstr ""
-#: 06050600.xhp
-msgctxt ""
-"06050600.xhp\n"
-"hd_id3150245\n"
-"28\n"
-"help.text"
-msgid "Width of numbering"
-msgstr "Pa numërim"
-
-#: 06050600.xhp
+#: 05350200.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id3150129\n"
-"29\n"
+"05350200.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/indentatmf\">Enter the amount of space to leave between the left edge of the numbering symbol and the left edge of the text.</ahelp>"
-msgstr ""
+msgid "Geometry"
+msgstr "Gjeometri"
-#: 06050600.xhp
+#: 05350200.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id3156194\n"
-"8\n"
+"05350200.xhp\n"
+"hd_id3149551\n"
+"1\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Minimum space numbering <-> text</caseinline></switchinline>"
+msgid "<link href=\"text/shared/01/05350200.xhp\" name=\"Geometry\">Geometry</link>"
msgstr ""
-#: 06050600.xhp
+#: 05350200.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id3147574\n"
-"18\n"
+"05350200.xhp\n"
+"par_id3150008\n"
+"2\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"modules/swriter/ui/outlinepositionpage/numdistmf\">Enter the minimum amount of space to leave between the right edge of the numbering symbol and the left edge of the text.</ahelp></caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_GEO\">Adjusts the shape of the selected 3D object. You can only modify the shape of a 3D object that was created by converting a 2D object. To convert a 2D object to 3D, select the object, right-click, and then choose <emph>Convert - To 3D</emph>, or <emph>Convert - To 3D Rotation Object</emph>.</ahelp>"
msgstr ""
-#: 06050600.xhp
+#: 05350200.xhp
msgctxt ""
-"06050600.xhp\n"
-"hd_id3154367\n"
-"10\n"
+"05350200.xhp\n"
+"hd_id3148538\n"
+"4\n"
"help.text"
-msgid "Default"
-msgstr "Standarde"
+msgid "Geometry"
+msgstr "Gjeometri"
-#: 06050600.xhp
+#: 05350200.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id3156082\n"
-"20\n"
+"05350200.xhp\n"
+"par_id3153662\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/standard\">Resets the indent and the spacing values to the default values.</ahelp>"
+msgid "Define the shape properties for the selected 3D object."
msgstr ""
-#: 06050600.xhp
+#: 05350200.xhp
msgctxt ""
-"06050600.xhp\n"
-"par_id3147228\n"
+"05350200.xhp\n"
+"hd_id3149812\n"
+"12\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Paragraph alignment\">Paragraph alignment</link>"
-msgstr ""
+msgid "Rounded edges"
+msgstr "Zgjati skajet"
-#: 01010304.xhp
+#: 05350200.xhp
msgctxt ""
-"01010304.xhp\n"
-"tit\n"
+"05350200.xhp\n"
+"par_id3154142\n"
+"13\n"
"help.text"
-msgid "Business"
-msgstr "Biznes"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_PERCENT_DIAGONAL\">Enter the amount by which you want to round the corners of the selected 3D object.</ahelp>"
+msgstr ""
-#: 01010304.xhp
+#: 05350200.xhp
msgctxt ""
-"01010304.xhp\n"
-"hd_id3152942\n"
-"1\n"
+"05350200.xhp\n"
+"hd_id3155585\n"
+"14\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010304.xhp\" name=\"Business\">Business</link>"
-msgstr ""
+msgid "Scaled depth"
+msgstr "Thellësi e shkallëzuar"
-#: 01010304.xhp
+#: 05350200.xhp
msgctxt ""
-"01010304.xhp\n"
-"par_id3151097\n"
-"2\n"
+"05350200.xhp\n"
+"par_id3146137\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"\">Contains contact information for business cards that use a layout from a 'Business Card, Work' category. Business card layouts are selected on the <emph>Business Cards</emph> tab.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_BACKSCALE\">Enter the amount by which to increase or decrease the area of the front side of the selected 3D object.</ahelp>"
msgstr ""
-#: 01010304.xhp
+#: 05350200.xhp
msgctxt ""
-"01010304.xhp\n"
-"hd_id3149549\n"
-"3\n"
+"05350200.xhp\n"
+"hd_id3150466\n"
+"16\n"
"help.text"
-msgid "Business data"
-msgstr "Të dhënat e biznesit"
+msgid "Rotation angle"
+msgstr "Këndi i rrotullimit"
-#: 01010304.xhp
+#: 05350200.xhp
msgctxt ""
-"01010304.xhp\n"
-"par_id3156027\n"
-"4\n"
+"05350200.xhp\n"
+"par_id3153320\n"
+"17\n"
"help.text"
-msgid "Enter the contact information that you want to include on your business card."
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_END_ANGLE\">Enter the angle in degrees to rotate the selected 3D rotation object.</ahelp>"
msgstr ""
-#: 01010304.xhp
+#: 05350200.xhp
msgctxt ""
-"01010304.xhp\n"
-"par_id3155892\n"
-"17\n"
+"05350200.xhp\n"
+"hd_id3149276\n"
+"18\n"
"help.text"
-msgid "If you want to include your name on a business card, enter your name on the <emph>Private </emph>tab. Then choose a layout on the <emph>Business Cards </emph>tab that includes a name placeholder."
-msgstr ""
+msgid "Depth"
+msgstr "Thellësi"
-#: 01010304.xhp
+#: 05350200.xhp
msgctxt ""
-"01010304.xhp\n"
-"hd_id3150355\n"
-"5\n"
+"05350200.xhp\n"
+"par_id3153252\n"
+"19\n"
"help.text"
-msgid "Company 2nd line"
-msgstr "Kompania reshti i 2të"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_DEPTH\">Enter the extrusion depth for the selected 3D object. This option is not valid for 3D rotation objects.</ahelp>"
+msgstr ""
-#: 01010304.xhp
+#: 05350200.xhp
msgctxt ""
-"01010304.xhp\n"
-"par_id3153031\n"
+"05350200.xhp\n"
+"hd_id3159343\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_COMP_EXT\">Enter additional company details.</ahelp>"
-msgstr ""
+msgid "Segments"
+msgstr "Segmentet"
-#: 01010304.xhp
+#: 05350200.xhp
msgctxt ""
-"01010304.xhp\n"
-"hd_id3150771\n"
+"05350200.xhp\n"
+"par_id3155388\n"
"7\n"
"help.text"
-msgid "Slogan"
-msgstr "Parulla"
+msgid "You can change the number of segments that are used to draw a 3D rotation object."
+msgstr ""
-#: 01010304.xhp
+#: 05350200.xhp
msgctxt ""
-"01010304.xhp\n"
-"par_id3156327\n"
+"05350200.xhp\n"
+"hd_id3152909\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_SLOGAN\">Enter the slogan of your company.</ahelp>"
-msgstr ""
+msgid "Horizontal"
+msgstr "Horizontal"
-#: 01010304.xhp
+#: 05350200.xhp
msgctxt ""
-"01010304.xhp\n"
-"hd_id3153146\n"
+"05350200.xhp\n"
+"par_id3150943\n"
"9\n"
"help.text"
-msgid "Country"
-msgstr "Vendi"
+msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXFLOAT_3D:NUM_HORIZONTAL\">Enter the number of horizontal segments to use in the selected 3D rotation object.</ahelp>"
+msgstr ""
-#: 01010304.xhp
+#: 05350200.xhp
msgctxt ""
-"01010304.xhp\n"
-"par_id3155449\n"
+"05350200.xhp\n"
+"hd_id3149416\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_STATE\">Enter the name of the country where your business is located.</ahelp>"
-msgstr ""
+msgid "Vertical"
+msgstr "Vertikal"
-#: 01010304.xhp
+#: 05350200.xhp
msgctxt ""
-"01010304.xhp\n"
-"hd_id3154380\n"
+"05350200.xhp\n"
+"par_id3151245\n"
"11\n"
"help.text"
-msgid "Phone"
-msgstr "Telefoni/Celulari"
+msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXFLOAT_3D:NUM_VERTICAL\">Enter the number of vertical segments to use in the selected 3D rotation object</ahelp>"
+msgstr ""
-#: 01010304.xhp
+#: 05350200.xhp
msgctxt ""
-"01010304.xhp\n"
-"par_id3154046\n"
-"12\n"
+"05350200.xhp\n"
+"hd_id3153626\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_PHONE\">Enter your business telephone number.</ahelp>"
-msgstr ""
+msgid "Normals"
+msgstr "Normalet"
-#: 01010304.xhp
+#: 05350200.xhp
msgctxt ""
-"01010304.xhp\n"
-"hd_id3158430\n"
-"13\n"
+"05350200.xhp\n"
+"par_id3150822\n"
+"21\n"
"help.text"
-msgid "Mobile"
-msgstr "Celulari"
+msgid "Allows you to modify the rendering style of the 3D surface."
+msgstr ""
-#: 01010304.xhp
+#: 05350200.xhp
msgctxt ""
-"01010304.xhp\n"
-"par_id3156329\n"
-"14\n"
+"05350200.xhp\n"
+"hd_id3149046\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_MOBILE\">Enter your mobile telephone number.</ahelp>"
-msgstr ""
+msgid "Object-Specific"
+msgstr "Objekt-Specifik"
-#: 01010304.xhp
+#: 05350200.xhp
msgctxt ""
-"01010304.xhp\n"
-"hd_id3154306\n"
-"15\n"
+"05350200.xhp\n"
+"par_id3149670\n"
+"23\n"
"help.text"
-msgid "Homepage"
-msgstr "Faqja fillestare"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_OBJ\">Renders the 3D surface according to the shape of the object. For example, a circular shape is rendered with a spherical surface.</ahelp>"
+msgstr ""
-#: 01010304.xhp
+#: 05350200.xhp
msgctxt ""
-"01010304.xhp\n"
-"par_id3148563\n"
-"16\n"
+"05350200.xhp\n"
+"par_id3152811\n"
"help.text"
-msgid "<ahelp hid=\"SW:EDIT:TP_BUSINESS_DATA:ED_WWW\">Enter the address of your company's internet homepage.</ahelp>"
+msgid "<image id=\"img_id3150865\" src=\"svx/res/normobjs.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3150865\">Icon</alt></image>"
msgstr ""
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"tit\n"
+"05350200.xhp\n"
+"par_id3151211\n"
+"24\n"
"help.text"
-msgid "Template Management"
-msgstr "Menaxhimi i shablloneve"
+msgid "Object-Specific"
+msgstr "Objekt-Specifik"
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"bm_id3148668\n"
+"05350200.xhp\n"
+"hd_id3153797\n"
+"25\n"
"help.text"
-msgid "<bookmark_value>documents; organizing</bookmark_value><bookmark_value>organizing; templates</bookmark_value><bookmark_value>templates; organizing</bookmark_value><bookmark_value>styles;printing styles used in a document</bookmark_value><bookmark_value>styles; copying between documents</bookmark_value><bookmark_value>default templates; organizing</bookmark_value><bookmark_value>deleting; templates</bookmark_value><bookmark_value>templates; deleting</bookmark_value><bookmark_value>templates; importing and exporting</bookmark_value><bookmark_value>importing; templates</bookmark_value><bookmark_value>exporting; templates</bookmark_value>"
-msgstr ""
+msgid "Flat"
+msgstr "Rrafsh"
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3148585\n"
-"40\n"
+"05350200.xhp\n"
+"par_id3146874\n"
+"26\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110100.xhp\" name=\"Template Management\">Template Management</link>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_FLAT\">Renders the 3D surface as polygons.</ahelp>"
msgstr ""
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3152924\n"
-"2\n"
+"05350200.xhp\n"
+"par_id3157962\n"
"help.text"
-msgid "<ahelp hid=\".uno:Organizer\">Opens the <emph>Template Management</emph> dialog where you can organize templates and define default templates.</ahelp>"
+msgid "<image id=\"img_id3154068\" src=\"svx/res/normflat.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3154068\">Icon</alt></image>"
msgstr ""
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3152801\n"
-"3\n"
+"05350200.xhp\n"
+"par_id3145202\n"
+"27\n"
"help.text"
-msgid "Left and Right Selection List (Templates / Documents)"
-msgstr ""
+msgid "Flat"
+msgstr "Rrafsh"
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3149177\n"
+"05350200.xhp\n"
+"hd_id3147228\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"HID_CTL_ORGANIZER_RIGHT\">Displays the available template categories or opened $[officename] files. To change the contents of the list, select <emph>Templates</emph> or <emph>Documents</emph> in the box below.</ahelp>"
-msgstr ""
+msgid "Spherical"
+msgstr "Sferike"
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3166410\n"
-"34\n"
+"05350200.xhp\n"
+"par_id3150288\n"
+"29\n"
"help.text"
-msgid "To change the default template path, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010300.xhp\" name=\"$[officename] - Paths\">$[officename] - Paths</link></emph>."
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_SPHERE\">Renders a smooth 3D surface.</ahelp>"
msgstr ""
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3154810\n"
-"6\n"
+"05350200.xhp\n"
+"par_id3148923\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:LISTBOX:DLG_ORGANIZE:LB_RIGHT_TYP\">Select <emph>Templates</emph> or <emph>Documents</emph> to change the contents that are displayed in the list above.</ahelp>"
+msgid "<image id=\"img_id3149807\" src=\"svx/res/normsphe.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3149807\">Icon</alt></image>"
msgstr ""
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3149191\n"
-"36\n"
+"05350200.xhp\n"
+"par_id3149983\n"
+"30\n"
"help.text"
-msgid "Template categories are represented by folder icons. To view the template files for a category, double-click a folder."
-msgstr ""
+msgid "Spherical"
+msgstr "Sferike"
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3159166\n"
+"05350200.xhp\n"
+"hd_id3153056\n"
+"31\n"
"help.text"
-msgid "To view the styles that are used in a file, double-click the file name, and then double-click the <emph>Styles</emph> icon."
-msgstr ""
+msgid "Invert Normals"
+msgstr "Përmbys Normalet"
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3155504\n"
-"35\n"
+"05350200.xhp\n"
+"par_id3145785\n"
+"32\n"
"help.text"
-msgid "To copy a style, hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and drag the style from one file to another file. To move a style, drag the style from one file to another file."
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_NORMALS_INVERT\">Inverts the light source.</ahelp>"
msgstr ""
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3149578\n"
-"8\n"
+"05350200.xhp\n"
+"par_id3152940\n"
"help.text"
-msgid "Commands"
-msgstr "Komandat"
+msgid "<image id=\"img_id3151116\" src=\"svx/res/invert3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3151116\">Icon</alt></image>"
+msgstr ""
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3149514\n"
-"9\n"
+"05350200.xhp\n"
+"par_id3156061\n"
+"33\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:MENUBUTTON:DLG_ORGANIZE:BTN_EDIT\">Contains commands for managing and editing your templates and documents.</ahelp>"
-msgstr ""
+msgid "Invert Normals"
+msgstr "Përmbys Normalet"
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3149575\n"
-"37\n"
+"05350200.xhp\n"
+"hd_id3152417\n"
+"34\n"
"help.text"
-msgid "Depending on the type of file you select in the list, the following commands are available:"
-msgstr ""
+msgid "Double-sided Illumination"
+msgstr "Ndriçim i dyanshëm"
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3153062\n"
-"10\n"
+"05350200.xhp\n"
+"par_id3163820\n"
+"35\n"
"help.text"
-msgid "New"
-msgstr "E re"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TWO_SIDED_LIGHTING\">Lights the object from the outside and the inside. To use an ambient light source, click this button, and then click the <emph>Invert Normals</emph> button.</ahelp>"
+msgstr ""
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3151384\n"
-"11\n"
+"05350200.xhp\n"
+"par_id3157309\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_NEW\">Creates a new template category.</ahelp>"
+msgid "<image id=\"img_id3155746\" src=\"svx/res/lght2sid.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3155746\">Icon</alt></image>"
msgstr ""
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3146794\n"
-"12\n"
+"05350200.xhp\n"
+"par_id3154986\n"
+"36\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "Double-sided illumination"
+msgstr "Ndriçim i dyanshëm"
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3154758\n"
-"13\n"
+"05350200.xhp\n"
+"hd_id3153190\n"
+"37\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_DELETE\">Deletes the current selection.</ahelp>"
-msgstr ""
+msgid "Double-Sided"
+msgstr "I dyanshëm"
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3154388\n"
-"14\n"
+"05350200.xhp\n"
+"par_id3154692\n"
+"38\n"
"help.text"
-msgid "Edit"
-msgstr "Edito"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_DOUBLE_SIDED\">Closes the shape of a 3D object that was created by extruding a freeform line (<emph>Convert - To 3D</emph>).</ahelp>"
+msgstr ""
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3156435\n"
-"15\n"
+"05350200.xhp\n"
+"par_id3150686\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_EDIT\">Opens the selected template for editing.</ahelp>"
+msgid "<image id=\"img_id3152460\" src=\"svx/res/doublesi.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3152460\">Icon</alt></image>"
msgstr ""
-#: 01110100.xhp
+#: 05350200.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3151106\n"
-"16\n"
+"05350200.xhp\n"
+"par_id3155307\n"
+"39\n"
"help.text"
-msgid "Import Templates"
-msgstr "Shabllonet e mia"
+msgid "Double-Sided"
+msgstr "I dyanshëm"
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3148798\n"
-"17\n"
+"05350300.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_COPY_FROM\">Imports an additional template. To import a template, select a template folder in the list, click the <emph>Command</emph> button, and then select <emph>Import template</emph>.</ahelp>"
-msgstr ""
+msgid "Shading"
+msgstr "Hijezimi"
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3154821\n"
-"19\n"
+"05350300.xhp\n"
+"hd_id3148919\n"
+"1\n"
"help.text"
-msgid "Export Template"
-msgstr "Eksporto shabllonin..."
+msgid "<link href=\"text/shared/01/05350300.xhp\" name=\"Shading\">Shading</link>"
+msgstr ""
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3153104\n"
-"20\n"
+"05350300.xhp\n"
+"par_id3150008\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_COPY_TO\">Exports the selected template.</ahelp>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_REPRESENTATION\">Sets the shading and shadow options for the selected 3D object.</ahelp>"
msgstr ""
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3150651\n"
-"26\n"
+"05350300.xhp\n"
+"hd_id3109847\n"
+"4\n"
"help.text"
-msgid "Print"
-msgstr "Shtyp"
+msgid "Shading"
+msgstr "Hijezimi"
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3154946\n"
-"27\n"
+"05350300.xhp\n"
+"par_id3148538\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_PRINT\">Prints the name and properties of the styles that are used in the file.</ahelp>"
+msgid "Specify the type of shading to apply to the selected 3D object."
msgstr ""
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3150767\n"
-"28\n"
+"05350300.xhp\n"
+"hd_id3147276\n"
+"6\n"
"help.text"
-msgid "Printer Setup"
-msgstr "Regullimi i shtypësit"
+msgid "Mode"
+msgstr "Modi"
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3147086\n"
-"29\n"
+"05350300.xhp\n"
+"par_id3155583\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_PRINTER_SETUP\">Changes the printer and its settings for the selected document.</ahelp>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXFLOAT_3D:LB_SHADEMODE\">Select the shading method that you want to use. Flat shading assigns a single color to a single polygon on the surface of the object. Gouraud shading blends colors across the polygons. Phong shading averages the color of each pixel based on the pixels that surround it, and requires the most processing power.</ahelp>"
msgstr ""
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3143231\n"
-"30\n"
+"05350300.xhp\n"
+"hd_id3150466\n"
+"8\n"
"help.text"
-msgid "Update"
-msgstr "Azhuro"
+msgid "Shadow"
+msgstr "Hije"
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3147228\n"
-"31\n"
+"05350300.xhp\n"
+"par_id3154046\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_RESCAN\">Updates the contents of the lists.</ahelp>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_SHADOW_3D\">Adds or removes a shadow from the selected 3D object.</ahelp>"
msgstr ""
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3145607\n"
-"41\n"
+"05350300.xhp\n"
+"par_id3150254\n"
"help.text"
-msgid "Set As Default Template"
-msgstr "Vendose si shabllon standard"
+msgid "<image id=\"img_id3159342\" src=\"svx/res/shadow3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3159342\">Icon</alt></image>"
+msgstr ""
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3147353\n"
-"42\n"
+"05350300.xhp\n"
+"par_id3149796\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_STDTEMPLATE_ADD\">Uses the selected template as the default template when you create a new $[officename] document of the same type.</ahelp>"
-msgstr ""
+msgid "3D Shadowing On/Off"
+msgstr "Hijezimi 3D Kyqyr/Ç'kyqur"
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3153768\n"
-"43\n"
+"05350300.xhp\n"
+"hd_id3156153\n"
+"11\n"
"help.text"
-msgid "Reset Default Template"
-msgstr "Rivendose shablonin standard"
+msgid "Surface angle"
+msgstr "Kontrolli i këndit"
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3155432\n"
-"44\n"
+"05350300.xhp\n"
+"par_id3150976\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"HID_ORGANIZE_STDTEMPLATE_DEL\">Select a $[officename] document type to reset the default template to the original template.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_SLANT\">Enter an angle from 0 to 90 degrees for casting the shadow.</ahelp>"
msgstr ""
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3159196\n"
-"38\n"
+"05350300.xhp\n"
+"hd_id3154905\n"
+"13\n"
"help.text"
-msgid "Address Book"
-msgstr "Regjistri i Adresave..."
+msgid "Camera"
+msgstr "Kamera"
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3154472\n"
-"39\n"
+"05350300.xhp\n"
+"par_id3161459\n"
+"14\n"
"help.text"
-msgid "Edit the field assignments and the data source for the address book."
+msgid "Set the camera options for the selected 3D object."
msgstr ""
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"hd_id3154151\n"
-"32\n"
+"05350300.xhp\n"
+"hd_id3148943\n"
+"15\n"
"help.text"
-msgid "File"
-msgstr "Fajlli"
+msgid "Distance"
+msgstr "Distancë"
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3156005\n"
-"33\n"
+"05350300.xhp\n"
+"par_id3149047\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_ORGANIZE:BTN_FILES\">Locate a file that you want to add to the document list, and then click<emph> Open</emph>.</ahelp>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_DISTANCE\">Enter the distance to leave between the camera and the center of the selected object.</ahelp>"
msgstr ""
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3153095\n"
+"05350300.xhp\n"
+"hd_id3154346\n"
+"17\n"
"help.text"
-msgid "<link href=\"text/shared/01/01140000.xhp\" name=\"Printer setup\">Printer setup</link>"
-msgstr ""
+msgid "Focal length"
+msgstr "Gjatësia fokale"
-#: 01110100.xhp
+#: 05350300.xhp
msgctxt ""
-"01110100.xhp\n"
-"par_id3150012\n"
+"05350300.xhp\n"
+"par_id3156344\n"
+"18\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110101.xhp\" name=\"Templates: Address Book Assignment\">Templates: Address Book Assignment</link>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_FOCAL_LENGTH\">Enter the focal length of the camera, where a small value corresponds to a \"fisheye\" lens, and a large value to a telephoto lens.</ahelp>"
msgstr ""
-#: 05070500.xhp
+#: 05350400.xhp
msgctxt ""
-"05070500.xhp\n"
+"05350400.xhp\n"
"tit\n"
"help.text"
-msgid "Align Vertical Center"
-msgstr "Rreshto vertikalisht në qendër"
+msgid "Illumination"
+msgstr "Ndriçimi"
-#: 05070500.xhp
+#: 05350400.xhp
msgctxt ""
-"05070500.xhp\n"
-"hd_id3152876\n"
+"05350400.xhp\n"
+"hd_id3151260\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070500.xhp\" name=\"Align Vertical Center\">Align Vertical Center</link>"
+msgid "<link href=\"text/shared/01/05350400.xhp\" name=\"Illumination\">Illumination</link>"
msgstr ""
-#: 05070500.xhp
+#: 05350400.xhp
msgctxt ""
-"05070500.xhp\n"
-"par_id3160463\n"
+"05350400.xhp\n"
+"par_id3149741\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:AlignVerticalCenter\">Vertically centers the selected objects. If only one object is selected in Draw or Impress, the center of the object is aligned to the vertical center of the page.</ahelp>"
-msgstr ""
-
-#: 06040300.xhp
-msgctxt ""
-"06040300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Exceptions"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT\">Define the light source for the selected 3D object.</ahelp>"
msgstr ""
-#: 06040300.xhp
+#: 05350400.xhp
msgctxt ""
-"06040300.xhp\n"
-"hd_id3150278\n"
-"1\n"
+"05350400.xhp\n"
+"hd_id3154984\n"
+"4\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040300.xhp\" name=\"Exceptions\">Exceptions</link>"
-msgstr ""
+msgid "Illumination"
+msgstr "Ndriçimi"
-#: 06040300.xhp
+#: 05350400.xhp
msgctxt ""
-"06040300.xhp\n"
-"par_id3152876\n"
-"2\n"
+"05350400.xhp\n"
+"par_id3155391\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"HID_OFAPAGE_AUTOCORR_EXCEPT\">Specify the abbreviations or letter combinations that you do not want $[officename] to correct automatically.</ahelp>"
+msgid "Specify the light source for the object, as well as the color of the light source and of the ambient light. You can define up to eight different light sources."
msgstr ""
-#: 06040300.xhp
+#: 05350400.xhp
msgctxt ""
-"06040300.xhp\n"
-"par_id3154926\n"
-"17\n"
+"05350400.xhp\n"
+"hd_id3153748\n"
+"6\n"
"help.text"
-msgid "The exceptions that you define depend on the current language setting. If you want, you can change the language setting by selecting a different language in the <emph>Replacements and exceptions for language</emph> box."
-msgstr ""
+msgid "Light source"
+msgstr "Burimi i Dritës 1"
-#: 06040300.xhp
+#: 05350400.xhp
msgctxt ""
-"06040300.xhp\n"
-"hd_id3149205\n"
-"15\n"
+"05350400.xhp\n"
+"par_id3149149\n"
+"7\n"
"help.text"
-msgid "Replacements and exceptions for language:"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_LIGHT_8\">Click twice to turn the light source on, and then select a color for the light from the list. If you want, you can also set the color of the surrounding light, by selecting a color from the <emph>Ambient light</emph> box.</ahelp> You can also press the Spacebar to turn the light source on or off."
msgstr ""
-#: 06040300.xhp
+#: 05350400.xhp
msgctxt ""
-"06040300.xhp\n"
-"par_id3156027\n"
-"16\n"
+"05350400.xhp\n"
+"par_id3159269\n"
"help.text"
-msgid "<ahelp hid=\"HID_AUTOCORR_LANGUAGE\">Select the language for which you want to create or edit the replacement rules.</ahelp> $[officename] first searches for exceptions that are defined for the language at the current cursor position in the document, and then searches the remaining languages."
+msgid "<image id=\"img_id3156155\" src=\"svx/res/lighton.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3156155\">Icon</alt></image>"
msgstr ""
-#: 06040300.xhp
+#: 05350400.xhp
msgctxt ""
-"06040300.xhp\n"
-"hd_id3153681\n"
-"3\n"
+"05350400.xhp\n"
+"par_id3154143\n"
+"8\n"
"help.text"
-msgid "Abbreviations (no subsequent capital)"
-msgstr ""
+msgid "Light is on"
+msgstr "Është duke u shtypur në"
-#: 06040300.xhp
+#: 05350400.xhp
msgctxt ""
-"06040300.xhp\n"
-"par_id3156410\n"
-"4\n"
+"05350400.xhp\n"
+"par_id3155449\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_ABBREV\">Type an abbreviation followed by a period, and then click <emph>New</emph>. This prevents $[officename] from automatically capitalizing the first letter of the word that comes after the period at the end of the abbreviation.</ahelp>"
+msgid "<image id=\"img_id3147573\" src=\"svx/res/light.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3147573\">Icon</alt></image>"
msgstr ""
-#: 06040300.xhp
+#: 05350400.xhp
msgctxt ""
-"06040300.xhp\n"
-"par_id3149751\n"
-"13\n"
+"05350400.xhp\n"
+"par_id3155829\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:LISTBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_ABBREV\">Lists the abbreviations that are not automatically corrected.</ahelp> To remove an item from the list, select the item, and then click <emph>Delete</emph>."
-msgstr ""
+msgid "Light is off"
+msgstr "Numërimi Kyqur/Ç'kyqur"
-#: 06040300.xhp
+#: 05350400.xhp
msgctxt ""
-"06040300.xhp\n"
-"hd_id3151110\n"
-"6\n"
+"05350400.xhp\n"
+"hd_id3159166\n"
+"10\n"
"help.text"
-msgid "Words with TWo INitial CApitals"
-msgstr "Korrigjo DY SHKronjat e PAra të mëdha"
+msgid "Color Selection"
+msgstr "Zgjedhja e databazës"
-#: 06040300.xhp
+#: 05350400.xhp
msgctxt ""
-"06040300.xhp\n"
-"par_id3154749\n"
-"7\n"
+"05350400.xhp\n"
+"par_id3155421\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_EXCEPT:ED_DOUBLE_CAPS\">Type the word or abbreviation that starts with two capital letters that you do not want $[officename] to change to one initial capital. For example, enter PC to prevent $[officename] from changing PC to Pc.</ahelp>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXFLOAT_3D:LB_LIGHT_1\">Select a color for the current light source.</ahelp>"
msgstr ""
-#: 06040300.xhp
+#: 05350400.xhp
msgctxt ""
-"06040300.xhp\n"
-"par_id3143271\n"
-"14\n"
+"05350400.xhp\n"
+"hd_id3149955\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:LISTBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:LB_DOUBLE_CAPS\">Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field.</ahelp> To remove an item from the list, select the item, and then click <emph>Delete</emph>."
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color in the color dialog\">Select Color in the color dialog</link>"
msgstr ""
-#: 06040300.xhp
+#: 05350400.xhp
msgctxt ""
-"06040300.xhp\n"
-"hd_id3155503\n"
-"8\n"
+"05350400.xhp\n"
+"hd_id3153061\n"
+"13\n"
"help.text"
-msgid "New"
-msgstr "E re"
+msgid "Ambient light"
+msgstr "Drita e ambientit"
-#: 06040300.xhp
+#: 05350400.xhp
msgctxt ""
-"06040300.xhp\n"
-"par_id3147573\n"
-"9\n"
+"05350400.xhp\n"
+"hd_id3144511\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_EXCEPT:PB_NEWDOUBLECAPS\">Adds the current entry to the list of exceptions.</ahelp>"
-msgstr ""
+msgid "Color Selection"
+msgstr "Zgjedhja e databazës"
-#: 06040300.xhp
+#: 05350400.xhp
msgctxt ""
-"06040300.xhp\n"
-"hd_id3149762\n"
-"10\n"
+"05350400.xhp\n"
+"par_id3153896\n"
+"16\n"
"help.text"
-msgid "AutoInclude"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXFLOAT_3D:LB_AMBIENTLIGHT\">Select a color for the ambient light.</ahelp>"
msgstr ""
-#: 06040300.xhp
+#: 05350400.xhp
msgctxt ""
-"06040300.xhp\n"
-"par_id3155829\n"
-"11\n"
+"05350400.xhp\n"
+"hd_id3149670\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_EXCEPT:CB_AUTOCAPS\">Automatically adds abbreviations or words that start with two capital letters to the corresponding list of exceptions. This feature only works if the <emph>Correct TWo INitial CApitals</emph> option or the Capitalize<emph> first letter of every sentence</emph> option are selected in the <emph>[T]</emph> column on<link href=\"text/shared/01/06040100.xhp\" name=\"Options\"><emph>Options</emph></link> tab of this dialog. </ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color Through the Color Dialog\">Select Color Through the Color Dialog</link>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350400.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"tit\n"
+"05350400.xhp\n"
+"hd_id3153961\n"
+"18\n"
"help.text"
-msgid "Export as PDF"
-msgstr "Eksporto si dokument PDF"
+msgid "Preview"
+msgstr "Shikim paraprak"
-#: ref_pdf_export.xhp
+#: 05350400.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"bm_id3149532\n"
+"05350400.xhp\n"
+"par_id3151056\n"
+"19\n"
"help.text"
-msgid "<bookmark_value>PDF;export</bookmark_value> <bookmark_value>portable document format</bookmark_value> <bookmark_value>exporting;to PDF</bookmark_value>"
+msgid "Displays a preview of the light source changes."
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3149532\n"
-"52\n"
+"05350500.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"export_as_pdf\"><variable id=\"ref_pdf_export\"><link href=\"text/shared/01/ref_pdf_export.xhp\" name=\"Export as PDF\">Export as PDF</link></variable></variable>"
-msgstr ""
+msgid "Textures"
+msgstr "Teksturat"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3154044\n"
+"05350500.xhp\n"
+"hd_id3150014\n"
"1\n"
"help.text"
-msgid "<variable id=\"export\"><ahelp hid=\"FILTER_EDIT_RID_PDF_EXPORT_DLG_ED_PAGES\">Saves the current file to Portable Document Format (PDF) version 1.4.</ahelp> A PDF file can be viewed and printed on any platform with the original formatting intact, provided that supporting software is installed.</variable>"
-msgstr ""
-
-#: ref_pdf_export.xhp
-msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id746482\n"
-"help.text"
-msgid "General tab"
+msgid "<link href=\"text/shared/01/05350500.xhp\" name=\"Textures\">Textures</link>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3148520\n"
+"05350500.xhp\n"
+"par_id3147000\n"
"2\n"
"help.text"
-msgid "Range"
-msgstr "Brez"
-
-#: ref_pdf_export.xhp
-msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3154230\n"
-"3\n"
-"help.text"
-msgid "Sets the export options for the pages included in the PDF file."
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEXTURE\">Sets the properties of the surface texture for the selected 3D object. This feature is only available after you apply a surface textures to the selected object. To quickly apply a surface texture, open the <emph>Gallery</emph>, hold down Shift+Ctrl (Mac: Shift+Command), and then drag an image onto the selected 3D object.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3166445\n"
+"05350500.xhp\n"
+"hd_id3145212\n"
"4\n"
"help.text"
-msgid "All"
-msgstr "Të gjitha"
+msgid "Textures"
+msgstr "Teksturat"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3149893\n"
+"05350500.xhp\n"
+"par_id3159233\n"
"5\n"
"help.text"
-msgid "<ahelp hid=\"FILTER_RADIOBUTTON_RID_PDF_EXPORT_DLG_RB_ALL\">Exports all defined print ranges. If no print range is defined, exports the entire document.</ahelp>"
-msgstr ""
+msgid "Sets the texture properties."
+msgstr "Vetitë e 3D objekteve"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3154673\n"
+"05350500.xhp\n"
+"hd_id3156410\n"
"6\n"
"help.text"
-msgid "Pages"
-msgstr "Faqet"
+msgid "Type"
+msgstr "Tipi"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3147571\n"
+"05350500.xhp\n"
+"par_id3145345\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"FILTER_EDIT_RID_PDF_EXPORT_DLG_ED_PAGES\">Exports the pages you type in the box.</ahelp>"
-msgstr ""
-
-#: ref_pdf_export.xhp
-msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3145136\n"
-"53\n"
-"help.text"
-msgid "To export a range of pages, use the format 3-6. To export single pages, use the format 7;9;11. If you want, you can export a combination of page ranges and single pages, by using a format like 3-6;8;10;12."
-msgstr ""
+msgid "Set the color properties of the texture."
+msgstr "Teksturë, Hije dhe Ngjyra"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3147043\n"
+"05350500.xhp\n"
+"hd_id3150775\n"
"8\n"
"help.text"
-msgid "Selection"
-msgstr "Selektimet"
+msgid "Black & White"
+msgstr "Bardh e Zi"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3150774\n"
+"05350500.xhp\n"
+"par_id3147242\n"
"9\n"
"help.text"
-msgid "<ahelp hid=\"FILTER_RADIOBUTTON_RID_PDF_EXPORT_DLG_RB_SELECTION\">Exports the current selection.</ahelp>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_LUMINANCE\">Converts the texture to black and white.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10706\n"
+"05350500.xhp\n"
+"par_id3146773\n"
"help.text"
-msgid "Images"
+msgid "<image id=\"img_id3150084\" src=\"svx/res/luminanc.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3150084\">Icon</alt></image>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN1070A\n"
+"05350500.xhp\n"
+"par_id3156156\n"
+"10\n"
"help.text"
-msgid "Sets the PDF export options for images inside your document."
-msgstr ""
+msgid "Black & White"
+msgstr "Bardh e Zi"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN1071B\n"
+"05350500.xhp\n"
+"hd_id3150670\n"
+"11\n"
"help.text"
-msgid "EPS images with embedded previews are exported only as previews. EPS images without embedded previews are exported as empty placeholders."
-msgstr ""
+msgid "Color"
+msgstr "Ngjyra"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10715\n"
+"05350500.xhp\n"
+"par_id3145119\n"
+"12\n"
"help.text"
-msgid "Lossless compression"
-msgstr "Pa kompresim"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_COLOR\">Converts the texture to color.</ahelp>"
+msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10719\n"
+"05350500.xhp\n"
+"par_id3153126\n"
"help.text"
-msgid "<ahelp hid=\".\">Selects a lossless compression of images. All pixels are preserved.</ahelp>"
+msgid "<image id=\"img_id3155388\" src=\"svx/res/color.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3155388\">Icon</alt></image>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10730\n"
+"05350500.xhp\n"
+"par_id3145316\n"
+"13\n"
"help.text"
-msgid "JPEG compression"
-msgstr "Pa kompresim"
+msgid "Color"
+msgstr "Ngjyra"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10734\n"
+"05350500.xhp\n"
+"hd_id3155342\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\".\">Selects a JPEG compression of images. With a high quality level, almost all pixels are preserved. With a low quality level, some pixels get lost and artefacts are introduced, but file sizes are reduced.</ahelp>"
-msgstr ""
+msgid "Mode"
+msgstr "Modi"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN1074C\n"
+"05350500.xhp\n"
+"par_id3153827\n"
+"15\n"
"help.text"
-msgid "Quality"
-msgstr "Kualitet"
+msgid "Show or hide shading."
+msgstr "Shfaq/Fsheh Shiritin e Hiperlinkut"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10750\n"
+"05350500.xhp\n"
+"hd_id3149191\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the quality level for JPEG compression.</ahelp>"
-msgstr ""
+msgid "Only Texture"
+msgstr "Vetëm Tekstura"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10767\n"
+"05350500.xhp\n"
+"par_id3148564\n"
+"17\n"
"help.text"
-msgid "Reduce image resolution"
-msgstr "Nga editori i fotografisë..."
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_REPLACE\">Applies the texture without shading.</ahelp>"
+msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN1076B\n"
+"05350500.xhp\n"
+"par_id3154280\n"
"help.text"
-msgid "<ahelp hid=\".\">Selects to resample or down-size the images to a lower number of pixels per inch.</ahelp>"
+msgid "<image id=\"img_id3149045\" src=\"svx/res/replac3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3149045\">Icon</alt></image>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10782\n"
+"05350500.xhp\n"
+"par_id3156435\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the target resolution for the images.</ahelp>"
-msgstr ""
+msgid "Only Texture"
+msgstr "Vetëm Tekstura"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10791\n"
+"05350500.xhp\n"
+"hd_id3150541\n"
+"19\n"
"help.text"
-msgid "General"
-msgstr "Të përgjithshme"
+msgid "Texture and Shading"
+msgstr "Tekstura dhe Hijezimi"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10795\n"
+"05350500.xhp\n"
+"par_id3154938\n"
+"20\n"
"help.text"
-msgid "Sets general PDF export options."
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_MODULATE\">Applies the texture with shading. To define the shading options for the texture, click the <emph>Shading</emph> button in this dialog.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id080420080355360\n"
+"05350500.xhp\n"
+"par_id3150742\n"
"help.text"
-msgid "Embed OpenDocument file"
+msgid "<image id=\"img_id3152803\" src=\"svx/res/modula3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3152803\">Icon</alt></image>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id0804200803553767\n"
+"05350500.xhp\n"
+"par_id3145419\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".\">This setting enables you to export the document as a .pdf file containing two file formats: PDF and ODF.</ahelp> In PDF viewers it behaves like a normal .pdf file and it remains fully editable in %PRODUCTNAME."
-msgstr ""
+msgid "Texture and Shading"
+msgstr "Tekstura dhe Hijezimi"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id2796411\n"
+"05350500.xhp\n"
+"hd_id3148672\n"
+"22\n"
"help.text"
-msgid "PDF/A-1a"
-msgstr "PDF fajll"
+msgid "Projection X"
+msgstr "Projekcioni X"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id5016327\n"
+"05350500.xhp\n"
+"par_id3148677\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\".\">Converts to the PDF/A-1a format. This is defined as an electronic document file format for long term preservation. All fonts that were used in the source document will be embedded into the generated PDF file. PDF tags will be written.</ahelp>"
+msgid "Set the options for displaying the texture."
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN107A0\n"
+"05350500.xhp\n"
+"hd_id3148453\n"
+"24\n"
"help.text"
-msgid "Tagged PDF"
-msgstr "PDF fajll"
+msgid "Object-specific"
+msgstr "Objekt-Specifik"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN107A4\n"
+"05350500.xhp\n"
+"par_id3144432\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\".\">Selects to write PDF tags. This can increase file size by huge amounts.</ahelp>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_OBJECT_X\">Automatically adjusts the texture based on the shape and size of the object.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN107B3\n"
+"05350500.xhp\n"
+"par_id3155103\n"
"help.text"
-msgid "Tagged PDF contains information about the structure of the document contents. This can help to display the document on devices with different screens, and when using screen reader software."
+msgid "<image id=\"img_id3148920\" src=\"svx/res/objspc3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3148920\">Icon</alt></image>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id8257087\n"
+"05350500.xhp\n"
+"par_id3155133\n"
+"26\n"
"help.text"
-msgid "Export bookmarks"
-msgstr "Shënjimet e folderëve"
+msgid "Object-specific"
+msgstr "Objekt-Specifik"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3479415\n"
+"05350500.xhp\n"
+"hd_id3147300\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\".\">Selects to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
-msgstr ""
+msgid "Parallel"
+msgstr "Paralel"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN107BE\n"
+"05350500.xhp\n"
+"par_id3153768\n"
+"28\n"
"help.text"
-msgid "Export comments"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_PARALLEL_X\">Applies the texture parallel to the horizontal axis.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN107C2\n"
+"05350500.xhp\n"
+"par_id3148977\n"
"help.text"
-msgid "<ahelp hid=\".\">Selects to export comments of Writer and Calc documents as PDF notes.</ahelp>"
+msgid "<image id=\"img_id3147478\" src=\"svx/res/parallel.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3147478\">Icon</alt></image>"
msgstr ""
-#: ref_pdf_export.xhp
-msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN107F4\n"
-"help.text"
-msgid "Create PDF form"
-msgstr "XML Dokument i formularit"
-
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id4909817\n"
+"05350500.xhp\n"
+"par_id3147579\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\".\">Choose to create a PDF form. This can be filled out and printed by the user of the PDF document.</ahelp>"
-msgstr ""
+msgid "Parallel"
+msgstr "Paralel"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id6585283\n"
+"05350500.xhp\n"
+"hd_id3148577\n"
+"30\n"
"help.text"
-msgid "Submit format"
-msgstr "Format tjetër"
+msgid "Circular"
+msgstr "Rrethor"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN107F8\n"
+"05350500.xhp\n"
+"par_id3152418\n"
+"31\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the format of submitting forms from within the PDF file.</ahelp>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_CIRCLE_X\">Wraps the horizontal axis of the texture pattern around a sphere.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id0901200811454970\n"
+"05350500.xhp\n"
+"par_id3154013\n"
"help.text"
-msgid "Select the format of the data that you will receive from the submitter: FDF (Forms Data Format), PDF, HTML, or XML."
+msgid "<image id=\"img_id3153943\" src=\"svx/res/parallel.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153943\">Icon</alt></image>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN10807\n"
+"05350500.xhp\n"
+"par_id3156006\n"
+"32\n"
"help.text"
-msgid "This setting overrides the control's URL property that you set in the document."
-msgstr ""
+msgid "Circular"
+msgstr "Rrethor"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id1026200909535841\n"
+"05350500.xhp\n"
+"hd_id3154129\n"
+"33\n"
"help.text"
-msgid "Allow duplicate field names"
-msgstr ""
+msgid "Projection Y"
+msgstr "Projekcioni X"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id102620090953596\n"
+"05350500.xhp\n"
+"par_id3152878\n"
+"34\n"
"help.text"
-msgid "<ahelp hid=\".\">Allows to use the same field name for multiple fields in the generated PDF file. If disabled, field names will be exported using generated unique names.</ahelp>"
+msgid "Click the respective buttons to define the texture for the object Y axis."
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3946958\n"
+"05350500.xhp\n"
+"hd_id3154693\n"
+"35\n"
"help.text"
-msgid "Export automatically inserted blank pages"
-msgstr ""
+msgid "Object-specific"
+msgstr "Objekt-Specifik"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id8551896\n"
+"05350500.xhp\n"
+"par_id3153095\n"
+"36\n"
"help.text"
-msgid "<ahelp hid=\".\">If switched on, automatically inserted blank pages are being exported to pdf file. This is best if you are printing the pdf file double-sided. Example: In a book a chapter paragraph style is set to always start with an odd numbered page. The previous chapter ends on an odd page. %PRODUCTNAME inserts an even numbered blank page. This option controls whether to export that even numbered page or not.</ahelp>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_OBJECT_Y\">Automatically adjusts the texture based on the shape and size of the object.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
-#, fuzzy
-msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3954548\n"
-"help.text"
-msgid "Embed standard fonts"
-msgstr "Formati numerik: standard"
-
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id853434896\n"
+"05350500.xhp\n"
+"par_id3153210\n"
"help.text"
-msgid "<ahelp hid=\".\">Normally the 14 standard Postscript fonts are not embedded in a PDF file, because every PDF reader software already contains these fonts. Enable this option to embed the standard fonts that are installed on your system and that are used in the document.</ahelp> Use this option if you expect to have a better looking or more useful standard font than the font that is available in the recipients' PDF reader software."
+msgid "<image id=\"img_id3153188\" src=\"svx/res/objspc3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3153188\">Icon</alt></image>"
msgstr ""
-#: ref_pdf_export.xhp
-#, fuzzy
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id9796441\n"
+"05350500.xhp\n"
+"par_id3147435\n"
+"37\n"
"help.text"
-msgid "Initial View tab"
-msgstr "Pamja e shënimeve"
+msgid "Object-specific"
+msgstr "Objekt-Specifik"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id1218604\n"
+"05350500.xhp\n"
+"hd_id3148775\n"
+"38\n"
"help.text"
-msgid "Panes"
-msgstr "Faqet"
+msgid "Parallel"
+msgstr "Paralel"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id7071443\n"
+"05350500.xhp\n"
+"par_id3145730\n"
+"39\n"
"help.text"
-msgid "Page only"
-msgstr "Vetëm titull"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_PARALLEL_Y\">Applies the texture parallel to the vertical axis.</ahelp>"
+msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id1851557\n"
+"05350500.xhp\n"
+"par_id3147485\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows only the page contents.</ahelp>"
+msgid "<image id=\"img_id3151280\" src=\"svx/res/parallel.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3151280\">Icon</alt></image>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id7464217\n"
+"05350500.xhp\n"
+"par_id3156737\n"
+"40\n"
"help.text"
-msgid "Bookmarks and page"
-msgstr "Thyerjet e faqes dhe kolonës"
+msgid "Parallel"
+msgstr "Paralel"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id4490188\n"
+"05350500.xhp\n"
+"hd_id3149377\n"
+"41\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows a bookmarks palette and the page contents.</ahelp>"
-msgstr ""
+msgid "Circular"
+msgstr "Rrethor"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3581041\n"
+"05350500.xhp\n"
+"par_id3159348\n"
+"42\n"
"help.text"
-msgid "Thumbnails and page"
-msgstr "Thyerjet e faqes dhe kolonës"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_CIRCLE_Y\">Wraps the vertical axis of the texture pattern around a sphere.</ahelp>"
+msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id956755\n"
+"05350500.xhp\n"
+"par_id3157876\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows a thumbnails palette and the page contents.</ahelp>"
+msgid "<image id=\"img_id3152807\" src=\"svx/res/parallel.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3152807\">Icon</alt></image>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id1905575\n"
+"05350500.xhp\n"
+"par_id3151173\n"
+"43\n"
"help.text"
-msgid "Open on page"
-msgstr "$(ARG1) në faqen $(ARG2)"
+msgid "Circular"
+msgstr "Rrethor"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id9776909\n"
+"05350500.xhp\n"
+"hd_id3149581\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to show the given page when the reader opens the PDF file.</ahelp>"
-msgstr ""
+msgid "Filter"
+msgstr "Filtër"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id7509994\n"
+"05350500.xhp\n"
+"par_id3148456\n"
+"45\n"
"help.text"
-msgid "Magnification"
+msgid "Filters out some of the 'noise' that can occur when you apply a texture to a 3D object."
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id5900143\n"
+"05350500.xhp\n"
+"hd_id3151319\n"
+"46\n"
"help.text"
-msgid "Default"
-msgstr "Standarde"
+msgid "Filtering On/Off"
+msgstr "Filtrimi Kyçyr/Ç'kyçur"
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id822168\n"
+"05350500.xhp\n"
+"par_id3151038\n"
+"47\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the page contents without zooming. If the reader software is configured to use a zoom factor by default, the page shows with that zoom factor.</ahelp>"
+msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_TEX_FILTER\">Blurs the texture slightly to remove unwanted speckles.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
-msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id1092257\n"
-"help.text"
-msgid "Fit in window"
-msgstr "Përshtate me faqe"
-
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3092135\n"
+"05350500.xhp\n"
+"par_id3145651\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the page zoomed to fit entirely into the reader's window.</ahelp>"
+msgid "<image id=\"img_id3156355\" src=\"res/sx10715.png\" width=\"0.1665inch\" height=\"0.1665inch\"><alt id=\"alt_id3156355\">Icon</alt></image>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350500.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id654622\n"
+"05350500.xhp\n"
+"par_id3146900\n"
+"48\n"
"help.text"
-msgid "Fit width"
-msgstr "Gjerësia e plotë"
+msgid "Filtering On/Off"
+msgstr "Filtrimi Kyçyr/Ç'kyçur"
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id814539\n"
+"05350600.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the page zoomed to fit the width of the reader's window.</ahelp>"
-msgstr ""
+msgid "Material"
+msgstr "Material"
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id9883114\n"
+"05350600.xhp\n"
+"hd_id3154349\n"
+"1\n"
"help.text"
-msgid "Fit visible"
-msgstr "Rrjeta e dukshme"
+msgid "<link href=\"text/shared/01/05350600.xhp\" name=\"Material\">Material</link>"
+msgstr ""
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id2362437\n"
+"05350600.xhp\n"
+"par_id3160463\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window.</ahelp>"
+msgid "<ahelp hid=\"SVX_IMAGEBUTTON_RID_SVXFLOAT_3D_BTN_MATERIAL\">Changes the coloring of the selected 3D object.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id7296975\n"
+"05350600.xhp\n"
+"hd_id3154682\n"
+"4\n"
"help.text"
-msgid "Zoom factor"
-msgstr "Zvogëlo"
+msgid "Material"
+msgstr "Material"
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id371715\n"
+"05350600.xhp\n"
+"par_id3152363\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\".\">Select a given zoom factor when the reader opens the PDF file.</ahelp>"
+msgid "Assigns a predefined color scheme or lets you create your own color scheme."
msgstr ""
-#: ref_pdf_export.xhp
-msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id329905\n"
-"help.text"
-msgid "Page layout"
-msgstr "Ndrysho formëdhënien..."
-
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id5632496\n"
+"05350600.xhp\n"
+"hd_id3154497\n"
+"9\n"
"help.text"
-msgid "Default"
-msgstr "Standarde"
+msgid "Favorites"
+msgstr "E preferuar"
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id1694082\n"
+"05350600.xhp\n"
+"par_id3153303\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the pages according to the layout setting of the reader software.</ahelp>"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_FAVORITES\">Select a predefined color scheme, or select <emph>User-defined</emph> to define a custom color scheme.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id8454237\n"
+"05350600.xhp\n"
+"hd_id3093440\n"
+"16\n"
"help.text"
-msgid "Single page"
-msgstr "Numri i faqes"
+msgid "Object color"
+msgstr "Ngjyra e Objektit"
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id672322\n"
+"05350600.xhp\n"
+"par_id3157896\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows one page at a time.</ahelp>"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_COLOR\">Select the color that you want to apply to the object.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
-msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id7387310\n"
-"help.text"
-msgid "Continuous"
-msgstr "I vazhdueshëm"
-
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id8764305\n"
+"05350600.xhp\n"
+"hd_id3147373\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows pages in a continuous vertical column.</ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color Through the Color Dialog\">Select Color Through the Color Dialog</link>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id6223639\n"
+"05350600.xhp\n"
+"hd_id3147571\n"
+"19\n"
"help.text"
-msgid "Continuous facing"
-msgstr ""
+msgid "Illumination color"
+msgstr "Ngjyra e ndriçimit"
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id5318765\n"
+"05350600.xhp\n"
+"par_id3159234\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows pages side by side in a continuous column. For more than two pages, the first page is displayed on the right.</ahelp>"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_EMISSION\">Select the color to illuminate the object.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id1416364\n"
+"05350600.xhp\n"
+"hd_id3153748\n"
+"21\n"
"help.text"
-msgid "First page is left"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color Through the Color Dialog\">Select Color Through the Color Dialog</link>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id9596850\n"
+"05350600.xhp\n"
+"hd_id3154983\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that shows pages side by side in a continuous column. For more than two pages, the first page is displayed on the left. You must enable support for complex text layout on Language settings - Languages in the Options dialog box.</ahelp>"
-msgstr ""
+msgid "Specular"
+msgstr "Përfytyrim"
-#: ref_pdf_export.xhp
-#, fuzzy
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id18005\n"
+"05350600.xhp\n"
+"par_id3147008\n"
+"23\n"
"help.text"
-msgid "User Interface tab"
-msgstr "Elementet e intefejsit të shfrytëzuasit"
+msgid "Sets the light reflection properties for the selected object."
+msgstr ""
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id6676839\n"
+"05350600.xhp\n"
+"hd_id3150355\n"
+"24\n"
"help.text"
-msgid "Window options"
-msgstr "Shiriti i opcioneve"
+msgid "Color"
+msgstr "Ngjyra"
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3809015\n"
+"05350600.xhp\n"
+"par_id3151111\n"
+"25\n"
"help.text"
-msgid "Resize window to initial page"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXFLOAT_3D_LB_MAT_SPECULAR\">Select the color that you want the object to reflect.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id1321146\n"
+"05350600.xhp\n"
+"hd_id3152996\n"
+"26\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that is shown in a window displaying the whole initial page.</ahelp>"
+msgid "<link href=\"text/shared/optionen/01010501.xhp\" name=\"Select Color Through the Color Dialog\">Select Color Through the Color Dialog</link>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id6994842\n"
+"05350600.xhp\n"
+"hd_id3152909\n"
+"27\n"
"help.text"
-msgid "Center window on screen"
-msgstr "Ekrani i plotë kyçur/çkyçur"
+msgid "Intensity"
+msgstr "Fuqia"
-#: ref_pdf_export.xhp
+#: 05350600.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id9601428\n"
+"05350600.xhp\n"
+"par_id3159256\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that is shown in a reader window centered on screen.</ahelp>"
+msgid "<ahelp hid=\"SVX_METRICFIELD_RID_SVXFLOAT_3D_MTR_MAT_SPECULAR_INTENSITY\">Enter the intensity of the specular effect.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id6369212\n"
+"05360000.xhp\n"
+"tit\n"
"help.text"
-msgid "Open in full screen mode"
-msgstr "Hape këtë dokument në modin vetëm-lexo"
+msgid "Distribution"
+msgstr "Shpërndarje"
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id1111789\n"
+"05360000.xhp\n"
+"hd_id3154812\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that is shown in a full screen reader window in front of all other windows.</ahelp>"
+msgid "<link href=\"text/shared/01/05360000.xhp\" name=\"Distribution\">Distribution</link>"
msgstr ""
-#: ref_pdf_export.xhp
-msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id2041993\n"
-"help.text"
-msgid "Display document title"
-msgstr "Shto Titullin e Dokumentit"
-
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id4576555\n"
+"05360000.xhp\n"
+"par_id3149119\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to generate a PDF file that is shown with the document title in the reader's title bar.</ahelp>"
+msgid "<variable id=\"verteilungtext\"><ahelp hid=\".uno:DistributeSelection\">Distributes three or more selected objects evenly along the horizontal axis or the vertical axis. You can also evenly distribute the spacing between objects.</ahelp></variable>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id4632099\n"
+"05360000.xhp\n"
+"par_id3145383\n"
+"3\n"
"help.text"
-msgid "User interface options"
-msgstr "Elementet e intefejsit të shfrytëzuasit"
+msgid "Objects are distributed with respect to the outermost objects in the selection."
+msgstr ""
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3154087\n"
+"05360000.xhp\n"
+"hd_id3149811\n"
+"4\n"
"help.text"
-msgid "Hide menu bar"
-msgstr "Shfaq/Fsheh Shiritin e Hiperlinkut"
+msgid "Horizontally"
+msgstr "Horizontalisht"
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id6582537\n"
+"05360000.xhp\n"
+"par_id3150355\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to hide the reader's menu bar when the document is active.</ahelp>"
+msgid "Specify the horizontal distribution for the selected objects."
msgstr ""
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id729697\n"
+"05360000.xhp\n"
+"hd_id3149276\n"
+"6\n"
"help.text"
-msgid "Hide toolbar"
-msgstr "Shiriti i kryesor i veglave"
+msgid "None"
+msgstr "Asnjë"
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id769066\n"
+"05360000.xhp\n"
+"par_id3147618\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to hide the reader's toolbar when the document is active.</ahelp>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_NONE\">Does not distribute the objects horizontally.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id376293\n"
+"05360000.xhp\n"
+"hd_id3148990\n"
+"8\n"
"help.text"
-msgid "Hide window controls"
-msgstr "XML Form Controllat"
+msgid "Left"
+msgstr "Majtas"
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id43641\n"
+"05360000.xhp\n"
+"par_id3159269\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to hide the reader's controls when the document is active.</ahelp>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_LEFT\">Distributes the selected objects, so that the left edges of the objects are evenly spaced from one another.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id1886654\n"
+"05360000.xhp\n"
+"hd_id3150130\n"
+"10\n"
"help.text"
-msgid "Transitions"
-msgstr ""
+msgid "Center"
+msgstr "Qendër"
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN107D9\n"
+"05360000.xhp\n"
+"par_id3153146\n"
+"11\n"
"help.text"
-msgid "Use transition effects"
-msgstr "E gatshme për përdorim"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_CENTER\">Distributes the selected objects, so that the horizontal centers of the objects are evenly spaced from one another.</ahelp>"
+msgstr ""
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_idN107DD\n"
+"05360000.xhp\n"
+"hd_id3147574\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".\">Selects to export Impress slide transition effects to respective PDF effects.</ahelp>"
-msgstr ""
+msgid "Spacing"
+msgstr "Hapësira"
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id9053926\n"
+"05360000.xhp\n"
+"par_id3148924\n"
+"13\n"
"help.text"
-msgid "Bookmarks"
-msgstr "Shënjimet"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_DISTANCE\">Distributes the selected objects horizontally, so that the objects are evenly spaced from one another.</ahelp>"
+msgstr ""
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id1941892\n"
+"05360000.xhp\n"
+"hd_id3155390\n"
+"14\n"
"help.text"
-msgid "All bookmark levels"
-msgstr "Janë paraqitur nivelet e kryefaqes"
+msgid "Right"
+msgstr "Djathtas"
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id341807\n"
+"05360000.xhp\n"
+"par_id3153252\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to show all bookmark levels when the reader opens the PDF file.</ahelp>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_HOR_RIGHT\">Distributes the selected objects, so that the right edges of the objects are evenly spaced from one another.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id486770\n"
+"05360000.xhp\n"
+"hd_id3150245\n"
+"16\n"
"help.text"
-msgid "Visible bookmark levels"
-msgstr "Janë paraqitur nivelet e kryefaqes"
+msgid "Vertically"
+msgstr "Vertikalisht"
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id4850001\n"
+"05360000.xhp\n"
+"par_id3155321\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to show bookmark levels down to the selected level when the reader opens the PDF file.</ahelp>"
+msgid "Specify the vertical distribution for the selected objects."
msgstr ""
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id9464094\n"
+"05360000.xhp\n"
+"hd_id3148563\n"
+"18\n"
"help.text"
-msgid "Links tab"
-msgstr ""
+msgid "None"
+msgstr "Asnjë"
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id9302346\n"
+"05360000.xhp\n"
+"par_id3155922\n"
+"19\n"
"help.text"
-msgid "Specify how to export bookmarks and hyperlinks in your document."
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_NONE\">Does not distribute the objects vertically.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id8296151\n"
+"05360000.xhp\n"
+"hd_id3153626\n"
+"20\n"
"help.text"
-msgid "Export bookmarks as named destinations"
-msgstr ""
+msgid "Top"
+msgstr "Lartë"
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id4809411\n"
+"05360000.xhp\n"
+"par_id3152361\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".\">The bookmarks (targets of references) in PDF files can be defined as rectangular areas. Additionally, bookmarks to named objects can be defined by their names. Enable the checkbox to export the names of objects in your document as valid bookmark targets. This allows to link to those objects by name from other documents.</ahelp>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_TOP\">Distributes the selected objects, so that the top edges of the objects are evenly spaced from one another.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id6454969\n"
+"05360000.xhp\n"
+"hd_id3147264\n"
+"22\n"
"help.text"
-msgid "Convert document references to PDF targets"
-msgstr ""
+msgid "Center"
+msgstr "Qendër"
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id7928708\n"
+"05360000.xhp\n"
+"par_id3161656\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\".\">Enable this checkbox to convert the URLs referencing other ODF files to PDF files with the same name. In the referencing URLs the extensions .odt, .odp, .ods, .odg, and .odm are converted to the extension .pdf.</ahelp>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_CENTER\">Distributes the selected objects, so that the vertical centers of the objects are evenly spaced from one another.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3864253\n"
+"05360000.xhp\n"
+"hd_id3150865\n"
+"24\n"
"help.text"
-msgid "Export URLs relative to file system"
-msgstr ""
+msgid "Spacing"
+msgstr "Hapësira"
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3144016\n"
+"05360000.xhp\n"
+"par_id3153360\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\".\">Enable this checkbox to export URLs to other documents as relative URLs in the file system. See <link href=\"text/shared/guide/hyperlink_rel_abs.xhp\">\"relative hyperlinks\"</link> in the Help.</ahelp>"
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_DISTANCE\">Distributes the selected objects vertically, so that the objects are evenly spaced from one another.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id9937131\n"
+"05360000.xhp\n"
+"hd_id3154071\n"
+"26\n"
"help.text"
-msgid "Cross-document links"
-msgstr "Azhuro të gjitha lidhjet"
+msgid "Bottom"
+msgstr "Poshtë"
-#: ref_pdf_export.xhp
+#: 05360000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id5616626\n"
+"05360000.xhp\n"
+"par_id3152771\n"
+"27\n"
"help.text"
-msgid "Specify how to handle hyperlinks from your PDF file to other files."
+msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_DISTRIBUTE:BTN_VER_BOTTOM\">Distributes the selected objects, so that the bottom edges of the objects are evenly spaced from one another.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05990000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id1972106\n"
+"05990000.xhp\n"
+"tit\n"
"help.text"
-msgid "Default mode"
-msgstr "Modi piksel"
+msgid "Text"
+msgstr "Tekst"
-#: ref_pdf_export.xhp
+#: 05990000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id79042\n"
+"05990000.xhp\n"
+"hd_id3155757\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Links from your PDF document to other documents will be handled as it is specified in your operating system.</ahelp>"
+msgid "<link href=\"text/shared/01/05990000.xhp\" name=\"Text\">Text</link>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05990000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id4076357\n"
+"05990000.xhp\n"
+"par_id3150467\n"
+"2\n"
"help.text"
-msgid "Open with PDF reader application"
+msgid "<variable id=\"texttext\"><ahelp hid=\".uno:TextAttributes\">Sets the layout and anchoring properties for text in the selected drawing or text object.</ahelp></variable>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 05990000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id8231757\n"
+"05990000.xhp\n"
+"par_id3150620\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\">Cross-document links are opened with the PDF reader application that currently shows the document. The PDF reader application must be able to handle the specified file type inside the hyperlink.</ahelp>"
+msgid "This command is only available for drawing objects that can contain text, for example for rectangles, but not for lines."
msgstr ""
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3168736\n"
+"06010000.xhp\n"
+"tit\n"
"help.text"
-msgid "Open with Internet browser"
-msgstr ""
+msgid "Spelling and Grammar"
+msgstr "Bardh e zi"
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id1909848\n"
+"06010000.xhp\n"
+"bm_id3149047\n"
"help.text"
-msgid "<ahelp hid=\".\">Cross-document links are opened with the Internet browser. The Internet browser must be able to handle the specified file type inside the hyperlink.</ahelp>"
+msgid "<bookmark_value>dictionaries; spellcheck</bookmark_value> <bookmark_value>spellcheck; dialog</bookmark_value> <bookmark_value>languages; spellcheck</bookmark_value>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3068636\n"
+"06010000.xhp\n"
+"hd_id3153882\n"
+"1\n"
"help.text"
-msgid "Security tab"
+msgid "<link href=\"text/shared/01/06010000.xhp\" name=\"Spellcheck\">Spelling and Grammar</link>"
msgstr ""
-#: ref_pdf_export.xhp
-#, fuzzy
-msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id2927335\n"
-"help.text"
-msgid "Set passwords"
-msgstr "Ruaje fjalëkalimin"
-
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id2107303\n"
+"06010000.xhp\n"
+"par_id3154682\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Click to open a dialog where you enter the passwords.</ahelp>"
+msgid "<variable id=\"recht\"><ahelp hid=\".uno:Spelling\">Checks the document or the current selection for spelling errors. If a grammar checking extension is installed, the dialog also checks for grammar errors.</ahelp></variable>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id41123951\n"
+"06010000.xhp\n"
+"par_idN1064B\n"
"help.text"
-msgid "You can enter a password to open the file. You can enter an optional password that allows to edit the document."
+msgid "The spellcheck starts at the current cursor position and advances to the end of the document or selection. You can then choose to continue the spellcheck from the beginning of the document."
msgstr ""
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id7985168\n"
+"06010000.xhp\n"
+"par_id3166445\n"
+"3\n"
"help.text"
-msgid "Printing"
-msgstr "Duke shtypur"
+msgid "Spellcheck looks for misspelled words and gives you the option of adding an unknown word to a user dictionary. When the first misspelled word is found, the <emph>Spellcheck</emph> dialog opens."
+msgstr ""
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id876186\n"
+"06010000.xhp\n"
+"par_id1022200801300654\n"
"help.text"
-msgid "Not permitted"
-msgstr "Përdorimi i zeros nuk lejohet"
+msgid "If a grammar checking extension is installed, this dialog is called <emph>Spelling and Grammar</emph>. Spelling errors are underlined in red, grammar errors in blue. First the dialog presents all spelling errors, then all grammar errors."
+msgstr ""
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3939634\n"
+"06010000.xhp\n"
+"par_id1022200801354366\n"
"help.text"
-msgid "<ahelp hid=\".\">Printing the document is not permitted.</ahelp>"
+msgid "<ahelp hid=\".\">Enable <emph>Check grammar</emph> to work first on all spellcheck errors, then on all grammar errors.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id599688\n"
+"06010000.xhp\n"
+"hd_id3149511\n"
+"6\n"
"help.text"
-msgid "Low resolution (150 dpi)"
-msgstr ""
+msgid "Not in dictionary"
+msgstr "Nuk është brenda"
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id1371501\n"
+"06010000.xhp\n"
+"par_id3149798\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\">The document can only be printed in low resolution (150 dpi). Not all PDF readers honor this setting.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the sentence with the misspelled word highlighted. Edit the word or the sentence, or click one of the suggestions in the text box below.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id4661702\n"
+"06010000.xhp\n"
+"hd_id3149885\n"
+"10\n"
"help.text"
-msgid "High resolution"
-msgstr "Rezolucioni i ngjyrave"
+msgid "Suggestions"
+msgstr "Vlerë maks."
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id7868892\n"
+"06010000.xhp\n"
+"par_id3155628\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\".\">The document can be printed in high resolution.</ahelp>"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_SPELLCHECK_LB_NEWWORD\">Lists suggested words to replace the misspelled word. Select the word that you want to use, and then click <emph>Change</emph> or <emph>Change All</emph>.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
-msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id2188787\n"
-"help.text"
-msgid "Changes"
-msgstr "$1 ndryshimet"
-
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id5833307\n"
+"06010000.xhp\n"
+"hd_id3145087\n"
+"12\n"
"help.text"
-msgid "Not permitted"
-msgstr "Përdorimi i zeros nuk lejohet"
+msgid "Text Language"
+msgstr "Gjuha e skriptimit"
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id7726676\n"
+"06010000.xhp\n"
+"par_id3144422\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\".\">No changes of the content are permitted.</ahelp>"
+msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_SPELLCHECK_LB_LANGUAGE\">Specifies the language to use to check the spelling.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3729361\n"
+"06010000.xhp\n"
+"hd_id3154071\n"
+"52\n"
"help.text"
-msgid "Inserting, deleting, and rotating pages"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">AutoCorrect</caseinline></switchinline>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id9573961\n"
+"06010000.xhp\n"
+"par_id3153798\n"
+"53\n"
"help.text"
-msgid "<ahelp hid=\".\">Only inserting, deleting, and rotating pages is permitted.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SPELLCHECK_BTN_AUTOCORR\">Adds the current combination of the incorrect word and the replacement word to the AutoCorrect replacements table.</ahelp></caseinline></switchinline>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id7700430\n"
+"06010000.xhp\n"
+"hd_id3151382\n"
+"56\n"
"help.text"
-msgid "Filling in form fields"
-msgstr ""
+msgid "Options"
+msgstr "Opcionet"
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id1180455\n"
+"06010000.xhp\n"
+"par_id3154123\n"
+"57\n"
"help.text"
-msgid "<ahelp hid=\".\">Only filling in form fields is permitted.</ahelp>"
+msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SPELLCHECK_BTN_OPTIONS\">Opens a dialog, where you can select the user-defined dictionaries, and set the rules for the spellchecking.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3405560\n"
+"06010000.xhp\n"
+"hd_id3153353\n"
+"24\n"
"help.text"
-msgid "Commenting, filling in form fields"
-msgstr ""
+msgid "Add"
+msgstr "Shto"
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3409527\n"
+"06010000.xhp\n"
+"par_id3144432\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\".\">Only commenting and filling in form fields is permitted.</ahelp>"
+msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SPELLCHECK_BTN_ADD\">Adds the unknown word to a user-defined dictionary.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id7112338\n"
+"06010000.xhp\n"
+"hd_id3155994\n"
+"22\n"
"help.text"
-msgid "Any except extracting pages"
-msgstr ""
+msgid "Ignore Once"
+msgstr "Flash Once"
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id2855616\n"
+"06010000.xhp\n"
+"par_id3148920\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\".\">All changes are permitted, except extracting pages.</ahelp>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_IGNORE\">Skips the unknown word and continues with the spellcheck.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id2091433\n"
+"06010000.xhp\n"
+"par_idN107CB\n"
"help.text"
-msgid "Enable copying of content"
-msgstr "Nga përmbajta e dokumentit"
+msgid "This label of this button changes to <emph>Resume</emph> if you leave the Spellcheck dialog open when you return to your document. To continue the spellcheck from the current position of the cursor, click <emph>Resume</emph>."
+msgstr ""
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id5092318\n"
+"06010000.xhp\n"
+"par_id1024200804091149\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to enable copying of content to the clipboard.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">While performing a grammar check, click Ignore Rule to ignore the rule that is currently flagged as a grammar error.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id9312417\n"
+"06010000.xhp\n"
+"hd_id3150740\n"
+"20\n"
"help.text"
-msgid "Enable text access for accessibility tools"
-msgstr ""
+msgid "Ignore All"
+msgstr "Injoro të gjitha"
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id9089022\n"
+"06010000.xhp\n"
+"par_id3145318\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\".\">Select to enable text access for accessibility tools.</ahelp>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_IGNOREALL\">Skips all occurrences of the unknown word until the end of the current %PRODUCTNAME session and continues with the spellcheck.</ahelp>"
msgstr ""
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"hd_id3150507\n"
-"50\n"
+"06010000.xhp\n"
+"hd_id3153056\n"
+"18\n"
"help.text"
-msgid "Export button"
-msgstr ""
+msgid "Change"
+msgstr "Ndrysho %O"
-#: ref_pdf_export.xhp
+#: 06010000.xhp
msgctxt ""
-"ref_pdf_export.xhp\n"
-"par_id3146975\n"
-"51\n"
+"06010000.xhp\n"
+"par_id3148559\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\".\">Exports the current file in PDF format.</ahelp>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_CHANGE\">Replaces the unknown word with the current suggestion. If you changed more than just the misspelled word, the entire sentence is replaced.</ahelp>"
msgstr ""
-#: 07010000.xhp
+#: 06010000.xhp
msgctxt ""
-"07010000.xhp\n"
-"tit\n"
+"06010000.xhp\n"
+"hd_id3145787\n"
+"16\n"
"help.text"
-msgid "New Window"
-msgstr "Dritarja e re"
+msgid "Change All"
+msgstr "Prano të gjitha"
-#: 07010000.xhp
+#: 06010000.xhp
msgctxt ""
-"07010000.xhp\n"
-"bm_id6323129\n"
+"06010000.xhp\n"
+"par_id3144446\n"
+"17\n"
"help.text"
-msgid "<bookmark_value>new windows</bookmark_value><bookmark_value>windows;new</bookmark_value>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_CHANGEALL\">Replaces all occurrences of the unknown word with the current suggestion.</ahelp>"
msgstr ""
-#: 07010000.xhp
+#: 06010000.xhp
msgctxt ""
-"07010000.xhp\n"
-"hd_id3148882\n"
-"1\n"
+"06010000.xhp\n"
+"par_idN10850\n"
"help.text"
-msgid "<link href=\"text/shared/01/07010000.xhp\" name=\"New Window\">New Window</link>"
-msgstr ""
+msgid "Undo"
+msgstr "Zhbëj%O"
-#: 07010000.xhp
+#: 06010000.xhp
msgctxt ""
-"07010000.xhp\n"
-"par_id3158442\n"
-"2\n"
+"06010000.xhp\n"
+"par_idN10854\n"
"help.text"
-msgid "<ahelp hid=\".uno:NewWindow\">Opens a new window that displays the contents of the current window.</ahelp> You can now view different parts of the same document at the same time."
+msgid "<ahelp hid=\".\">Click to undo the last change in the current sentence. Click again to undo the previous change in the same sentence.</ahelp>"
msgstr ""
-#: 07010000.xhp
+#: 06010000.xhp
msgctxt ""
-"07010000.xhp\n"
-"par_id3147588\n"
-"3\n"
+"06010000.xhp\n"
+"par_id3147426\n"
"help.text"
-msgid "Changes made to a document in one window are automatically applied to all of the windows that are open for that document."
+msgid "<link href=\"text/shared/01/06020000.xhp\" name=\"Thesaurus\">Thesaurus</link>"
msgstr ""
-#: 06150100.xhp
+#: 06010101.xhp
msgctxt ""
-"06150100.xhp\n"
+"06010101.xhp\n"
"tit\n"
"help.text"
-msgid "XML Filter"
-msgstr "Parametrat e XLM Filtrit"
+msgid "Writing aids"
+msgstr "Duke shkruar ndihmën"
-#: 06150100.xhp
+#: 06010101.xhp
msgctxt ""
-"06150100.xhp\n"
-"hd_id3153882\n"
+"06010101.xhp\n"
+"hd_id3145138\n"
"1\n"
"help.text"
-msgid "<variable id=\"xml_filter\"><link href=\"text/shared/01/06150100.xhp\" name=\"XML Filter\">XML Filter</link></variable>"
-msgstr ""
+msgid "Writing aids"
+msgstr "Duke shkruar ndihmën"
-#: 06150100.xhp
+#: 06010101.xhp
msgctxt ""
-"06150100.xhp\n"
-"par_id3153070\n"
+"06010101.xhp\n"
+"par_id3148882\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">View and edit the settings of an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
+msgid "Select the user-defined dictionaries and set the rules for the spellchecking."
msgstr ""
-#: 05210500.xhp
+#: 06010500.xhp
msgctxt ""
-"05210500.xhp\n"
+"06010500.xhp\n"
"tit\n"
"help.text"
-msgid "Bitmap"
-msgstr "Bitmap"
-
-#: 05210500.xhp
-msgctxt ""
-"05210500.xhp\n"
-"bm_id3155619\n"
-"help.text"
-msgid "<bookmark_value>bitmaps; patterns</bookmark_value><bookmark_value>areas; bitmap patterns</bookmark_value><bookmark_value>pixel patterns</bookmark_value><bookmark_value>pixel editor</bookmark_value><bookmark_value>pattern editor</bookmark_value>"
-msgstr ""
+msgid "Language"
+msgstr "Gjuhë"
-#: 05210500.xhp
+#: 06010500.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3155619\n"
-"1\n"
+"06010500.xhp\n"
+"par_idN1055C\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210500.xhp\" name=\"Bitmap\">Bitmap</link>"
+msgid "<link href=\"text/shared/01/06010500.xhp\">Language</link>"
msgstr ""
-#: 05210500.xhp
+#: 06010500.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3149495\n"
-"2\n"
+"06010500.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "<ahelp hid=\"HID_AREA_BITMAP\">Select a bitmap that you want to use as a fill pattern, or create your own pixel pattern. You can also import bitmaps, and save or load bitmap lists.</ahelp>"
+msgid "<ahelp hid=\".\">Opens a submenu where you can choose language specific commands.</ahelp>"
msgstr ""
-#: 05210500.xhp
+#: 06010500.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3148585\n"
-"3\n"
+"06010500.xhp\n"
+"hd_id5787224\n"
"help.text"
-msgid "Pattern Editor"
-msgstr "Edituesi i ImageMapës"
+msgid "For Selection"
+msgstr "Zgjedhja e databazës"
-#: 05210500.xhp
+#: 06010500.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3147226\n"
-"4\n"
+"06010500.xhp\n"
+"par_id1507309\n"
"help.text"
-msgid "Use this editor to create a simple, two-color, 8x8 pixel bitmap pattern."
+msgid "<ahelp hid=\".\">Opens a submenu. Choose a language for the selected text. <br/>Choose None to exclude the selected text from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>"
msgstr ""
-#: 05210500.xhp
+#: 06010500.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3145669\n"
-"5\n"
+"06010500.xhp\n"
+"hd_id7693411\n"
"help.text"
-msgid "Grid"
-msgstr "Rrjet"
+msgid "For Paragraph"
+msgstr "Paragrafi: $(ARG)"
-#: 05210500.xhp
+#: 06010500.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3150774\n"
-"6\n"
+"06010500.xhp\n"
+"par_id3928952\n"
"help.text"
-msgid "To enable this editor, select the <emph>Blank</emph> bitmap in the bitmap list."
+msgid "<ahelp hid=\".\">Opens a submenu. Choose a language for the current paragraph. <br/>Choose None to exclude the current paragraph from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>"
msgstr ""
-#: 05210500.xhp
+#: 06010500.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3145072\n"
-"17\n"
+"06010500.xhp\n"
+"hd_id5206762\n"
"help.text"
-msgid "Foreground color"
-msgstr "Ngjyra e Fontit"
+msgid "For all Text"
+msgstr "Teksti për vargëzim."
-#: 05210500.xhp
+#: 06010500.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3155535\n"
-"18\n"
+"06010500.xhp\n"
+"par_id5735953\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BITMAP:LB_COLOR\">Select a foreground color, and then click in the grid to add a pixel to the pattern.</ahelp>"
+msgid "<ahelp hid=\".\">Opens a submenu. Choose a language for all text. <br/>Choose None to exclude all text from spellchecking and hyphenation.<br/>Choose More to open a dialog with more options.</ahelp>"
msgstr ""
-#: 05210500.xhp
+#: 06010500.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3149398\n"
-"19\n"
+"06010500.xhp\n"
+"par_idN105AF\n"
"help.text"
-msgid "Background color"
-msgstr "Ngjyra e sfondit"
+msgid "Hyphenation"
+msgstr "Hifenacion"
-#: 05210500.xhp
+#: 06010500.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3148538\n"
-"20\n"
+"06010500.xhp\n"
+"par_idN105B3\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BITMAP:LB_BACKGROUND_COLOR\">Select a background color for your bitmap pattern.</ahelp>"
+msgid "Opens the <link href=\"text/shared/01/05340300.xhp\">Format - Cells - Alignment</link> tab page."
msgstr ""
-#: 05210500.xhp
+#: 06010500.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3147275\n"
-"7\n"
+"06010500.xhp\n"
+"par_idN105D0\n"
"help.text"
-msgid "Bitmap Pattern"
-msgstr "Pa strukturë"
+msgid "Hyphenation"
+msgstr "Hifenacion"
-#: 05210500.xhp
+#: 06010500.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3146847\n"
-"8\n"
+"06010500.xhp\n"
+"par_idN105D4\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BITMAP:LB_BITMAPS\">Select a bitmap in the list, and then click <emph>OK</emph> to apply the pattern to the selected object.</ahelp>"
+msgid "Turns hyphenation on and off."
msgstr ""
-#: 05210500.xhp
+#: 06010500.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3150275\n"
-"9\n"
+"06010500.xhp\n"
+"par_idN105E7\n"
"help.text"
-msgid "Add"
-msgstr "Shto"
+msgid "Hyphenation"
+msgstr "Hifenacion"
-#: 05210500.xhp
+#: 06010500.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3154306\n"
-"10\n"
+"06010500.xhp\n"
+"par_idN105EB\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BITMAP:BTN_ADD\">Adds a bitmap that you created in the <emph>Pattern Editor </emph>to the current list.</ahelp>"
+msgid "Turns hyphenation on and off."
msgstr ""
-#: 05210500.xhp
+#: 06010500.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3158432\n"
-"11\n"
+"06010500.xhp\n"
+"hd_id0805200811534540\n"
"help.text"
-msgid "Modify"
-msgstr "Modifiko"
+msgid "More Dictionaries Online"
+msgstr "Fjalorët e definuar nga shfrytëzuesi"
-#: 05210500.xhp
+#: 06010500.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3153827\n"
-"12\n"
+"06010500.xhp\n"
+"par_id0805200811534630\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BITMAP:BTN_MODIFY\">Replaces a bitmap that you created in the <emph>Pattern Editor</emph> with the current bitmap pattern. If you want, you can save the pattern under a different name.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the default browser on the dictionaries extension page.</ahelp>"
msgstr ""
-#: 05210500.xhp
+#: 06010600.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3149516\n"
-"13\n"
+"06010600.xhp\n"
+"tit\n"
"help.text"
-msgid "Import"
-msgstr "Importo"
+msgid "Chinese Conversion"
+msgstr ""
-#: 05210500.xhp
+#: 06010600.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3148473\n"
-"14\n"
+"06010600.xhp\n"
+"bm_id49745\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BITMAP:BTN_IMPORT\">Locate the bitmap that you want to import, and then click <emph>Open</emph>. The bitmap is added to the end of the list of available bitmaps.</ahelp>"
+msgid "<bookmark_value>Chinese writing systems</bookmark_value><bookmark_value>simplified Chinese;conversion to traditional Chinese</bookmark_value><bookmark_value>traditional Chinese;conversion to simplified Chinese</bookmark_value>"
msgstr ""
-#: 05210500.xhp
+#: 06010600.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3159166\n"
-"21\n"
+"06010600.xhp\n"
+"par_idN10547\n"
"help.text"
-msgid "Load Bitmap List"
-msgstr "Zgjedhni listën e adresave"
+msgid "<link href=\"text/shared/01/06010600.xhp\">Chinese Conversion</link>"
+msgstr ""
-#: 05210500.xhp
+#: 06010600.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3155341\n"
-"22\n"
+"06010600.xhp\n"
+"par_idN10557\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_BITMAP:BTN_LOAD\">Loads a different list of bitmaps.</ahelp>"
+msgid "<ahelp hid=\".\">Converts the selected Chinese text from one Chinese writing system to the other. If no text is selected, the entire document is converted.</ahelp> You can only use this command if you enable Asian language support in <emph>Tools - Options - Language Settings - Languages</emph>."
msgstr ""
-#: 05210500.xhp
+#: 06010600.xhp
msgctxt ""
-"05210500.xhp\n"
-"hd_id3151246\n"
-"23\n"
+"06010600.xhp\n"
+"par_idN10572\n"
"help.text"
-msgid "Save Bitmap List"
-msgstr "Zgjedhni listën e adresave"
+msgid "Conversion direction"
+msgstr ""
-#: 05210500.xhp
+#: 06010600.xhp
msgctxt ""
-"05210500.xhp\n"
-"par_id3151385\n"
-"24\n"
+"06010600.xhp\n"
+"par_idN10576\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXPAGE_BITMAP:BTN_SAVE\">Saves the current list of bitmaps, so that you can load it later.</ahelp>"
+msgid "<ahelp hid=\".\">Select the conversion direction.</ahelp>"
msgstr ""
-#: guides.xhp
+#: 06010600.xhp
msgctxt ""
-"guides.xhp\n"
-"tit\n"
+"06010600.xhp\n"
+"par_idN10579\n"
"help.text"
-msgid "Snap Lines"
+msgid "Traditional Chinese to Simplified Chinese"
msgstr ""
-#: guides.xhp
+#: 06010600.xhp
msgctxt ""
-"guides.xhp\n"
-"bm_id1441999\n"
+"06010600.xhp\n"
+"par_idN1057D\n"
"help.text"
-msgid "<bookmark_value>guides;display options (Impress/Draw)</bookmark_value>"
+msgid "<ahelp hid=\".\">Converts traditional Chinese text characters to simplified Chinese text characters. Click <emph>OK</emph> to convert the selected text. If no text is selected, the whole document is converted.</ahelp>"
msgstr ""
-#: guides.xhp
+#: 06010600.xhp
msgctxt ""
-"guides.xhp\n"
-"par_idN10562\n"
+"06010600.xhp\n"
+"par_idN10580\n"
"help.text"
-msgid "<link href=\"text/shared/01/guides.xhp\">Snap Lines</link>"
+msgid "Simplified Chinese to Traditional Chinese"
msgstr ""
-#: guides.xhp
+#: 06010600.xhp
msgctxt ""
-"guides.xhp\n"
-"par_id3146313\n"
-"7\n"
+"06010600.xhp\n"
+"par_idN10584\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the display options for snap lines.</ahelp>"
+msgid "<ahelp hid=\".\">Converts simplified Chinese text characters to traditional Chinese text characters. Click <emph>OK</emph> to convert the selected text. If no text is selected, the whole document is converted.</ahelp>"
msgstr ""
-#: guides.xhp
+#: 06010600.xhp
msgctxt ""
-"guides.xhp\n"
-"par_idN1057B\n"
+"06010600.xhp\n"
+"par_idN1058E\n"
"help.text"
-msgid "Display Snap Lines"
-msgstr ""
+msgid "Common terms"
+msgstr "Termat e përbashkët"
-#: guides.xhp
+#: 06010600.xhp
msgctxt ""
-"guides.xhp\n"
-"par_idN1057F\n"
+"06010600.xhp\n"
+"par_idN10592\n"
"help.text"
-msgid "Displays or hides snap lines that you can use to align objects on a page."
+msgid "<ahelp hid=\".\">Common terms are words that have the same meaning in traditional and simplified Chinese but are written with different characters.</ahelp>"
msgstr ""
-#: guides.xhp
+#: 06010600.xhp
msgctxt ""
-"guides.xhp\n"
-"par_idN10582\n"
+"06010600.xhp\n"
+"par_idN10595\n"
"help.text"
-msgid "Snap to Snap Lines"
+msgid "Convert Common Terms"
msgstr ""
-#: guides.xhp
+#: 06010600.xhp
msgctxt ""
-"guides.xhp\n"
-"par_idN10586\n"
+"06010600.xhp\n"
+"par_idN10599\n"
"help.text"
-msgid "Automatically aligns objects to vertical and horizontal snap lines. To override this feature, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key </defaultinline></switchinline>when you drag an object."
+msgid "<ahelp hid=\".\">Converts words with two or more characters that are in the list of common terms. After the list is scanned, the remaining text is converted character by character.</ahelp>"
msgstr ""
-#: guides.xhp
+#: 06010600.xhp
msgctxt ""
-"guides.xhp\n"
-"par_idN105C6\n"
+"06010600.xhp\n"
+"par_idN1059C\n"
"help.text"
-msgid "Snap Lines to Front"
-msgstr ""
+msgid "Edit terms"
+msgstr "Edito termat"
-#: guides.xhp
+#: 06010600.xhp
msgctxt ""
-"guides.xhp\n"
-"par_idN105CA\n"
+"06010600.xhp\n"
+"par_idN105A0\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the snap lines in front of the objects on the slide or page.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/06010601.xhp\">Edit Dictionary</link> dialog where you can edit the list of conversion terms.</ahelp>"
msgstr ""
-#: 05110700.xhp
+#: 06010601.xhp
msgctxt ""
-"05110700.xhp\n"
+"06010601.xhp\n"
"tit\n"
"help.text"
-msgid "Superscript"
-msgstr "Mbishkrim"
+msgid "Edit Dictionary"
+msgstr "Edito Fjalorin"
-#: 05110700.xhp
+#: 06010601.xhp
msgctxt ""
-"05110700.xhp\n"
-"hd_id3083278\n"
-"1\n"
+"06010601.xhp\n"
+"bm_id905789\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110700.xhp\" name=\"Superscript\">Superscript</link>"
+msgid "<bookmark_value>common terms;Chinese dictionary</bookmark_value><bookmark_value>dictionaries;common terms in simplified and traditional chinese</bookmark_value>"
msgstr ""
-#: 05110700.xhp
+#: 06010601.xhp
msgctxt ""
-"05110700.xhp\n"
-"par_id3152937\n"
-"2\n"
+"06010601.xhp\n"
+"par_idN1053D\n"
"help.text"
-msgid "<ahelp hid=\".uno:SuperScript\">Reduces the font size of the selected text and raises the text above the baseline.</ahelp>"
-msgstr ""
+msgid "Edit Dictionary"
+msgstr "Edito Fjalorin"
-#: 04150000.xhp
+#: 06010601.xhp
msgctxt ""
-"04150000.xhp\n"
-"tit\n"
+"06010601.xhp\n"
+"par_idN10541\n"
"help.text"
-msgid "Drawing Object"
-msgstr "Vizatim"
+msgid "<ahelp hid=\".\">Edit the <link href=\"text/shared/01/06010600.xhp\">Chinese conversion</link> terms.</ahelp>"
+msgstr ""
-#: 04150000.xhp
+#: 06010601.xhp
msgctxt ""
-"04150000.xhp\n"
-"hd_id3146873\n"
-"1\n"
+"06010601.xhp\n"
+"par_idN10566\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Drawing Object\">Drawing Object</link>"
+msgid "You can use this dialog to edit, to add, or to delete entries from the conversion dictionary. The file path name for the conversion dictionary is user/wordbook/commonterms.ctd. You cannot delete the default entries in this file."
msgstr ""
-#: 04150000.xhp
+#: 06010601.xhp
msgctxt ""
-"04150000.xhp\n"
-"par_id3159079\n"
-"2\n"
+"06010601.xhp\n"
+"par_idN10569\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts an object into your document. For movies and sounds, use <emph>Insert - Movie and Sound</emph> instead.</ahelp>"
+msgid "Traditional Chinese to Simplified Chinese"
msgstr ""
-#: 04150000.xhp
+#: 06010601.xhp
msgctxt ""
-"04150000.xhp\n"
-"hd_id3154894\n"
-"8\n"
+"06010601.xhp\n"
+"par_idN1056D\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150100.xhp\" name=\"OLE Object\">OLE Object</link>"
+msgid "<ahelp hid=\".\">Converts traditional Chinese to simplified Chinese.</ahelp>"
msgstr ""
-#: 04150000.xhp
+#: 06010601.xhp
msgctxt ""
-"04150000.xhp\n"
-"hd_id3159201\n"
-"6\n"
+"06010601.xhp\n"
+"par_idN10570\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150400.xhp\" name=\"Sound\">Sound</link>"
+msgid "Simplified Chinese to Traditional Chinese"
msgstr ""
-#: 04150000.xhp
+#: 06010601.xhp
msgctxt ""
-"04150000.xhp\n"
-"hd_id3157896\n"
-"7\n"
+"06010601.xhp\n"
+"par_idN10574\n"
"help.text"
-msgid "<link href=\"text/shared/01/04150500.xhp\" name=\"Video\">Video</link>"
+msgid "<ahelp hid=\".\">Converts simplified Chinese to traditional Chinese.</ahelp>"
msgstr ""
-#: 04150000.xhp
+#: 06010601.xhp
msgctxt ""
-"04150000.xhp\n"
-"hd_id3153577\n"
-"4\n"
+"06010601.xhp\n"
+"par_idN10577\n"
"help.text"
-msgid "<link href=\"text/shared/01/04160300.xhp\" name=\"Formula\">Formula</link>"
-msgstr ""
+msgid "Reverse Mapping"
+msgstr "Hartim i kundërt."
-#: 04150000.xhp
+#: 06010601.xhp
msgctxt ""
-"04150000.xhp\n"
-"hd_id3152552\n"
-"10\n"
+"06010601.xhp\n"
+"par_idN1057B\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/schart/01/wiz_chart_type.xhp\" name=\"Chart\">Chart</link></caseinline></switchinline>"
+msgid "<ahelp hid=\".\">Automatically adds the reverse mapping direction to the list for each modification that you enter.</ahelp>"
msgstr ""
-#: 04150000.xhp
+#: 06010601.xhp
msgctxt ""
-"04150000.xhp\n"
-"par_id0302200903593543\n"
+"06010601.xhp\n"
+"par_idN1057E\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Inserts a chart.</caseinline></switchinline>"
-msgstr ""
+msgid "Term"
+msgstr "Term"
-#: 05070100.xhp
+#: 06010601.xhp
msgctxt ""
-"05070100.xhp\n"
-"tit\n"
+"06010601.xhp\n"
+"par_idN10582\n"
"help.text"
-msgid "Align Left"
-msgstr "Rreshto majtas"
+msgid "<ahelp hid=\".\">Enter the text that you want to replace with the Mapping term.</ahelp>"
+msgstr ""
-#: 05070100.xhp
+#: 06010601.xhp
msgctxt ""
-"05070100.xhp\n"
-"hd_id3147069\n"
-"1\n"
+"06010601.xhp\n"
+"par_idN10585\n"
"help.text"
-msgid "<link href=\"text/shared/01/05070100.xhp\" name=\"Align Left\">Align Left</link>"
-msgstr ""
+msgid "Mapping"
+msgstr "Duke hartuar"
-#: 05070100.xhp
+#: 06010601.xhp
msgctxt ""
-"05070100.xhp\n"
-"par_id3160463\n"
-"2\n"
+"06010601.xhp\n"
+"par_idN10589\n"
"help.text"
-msgid "<ahelp hid=\".uno:AlignLeft\">Aligns the left edges of the selected objects. If only one object is selected in Draw or Impress, the left edge of the object is aligned to the left page margin.</ahelp>"
+msgid "<ahelp hid=\".\">Enter the text that you want to replace the Term with.</ahelp>"
msgstr ""
-#: 05070100.xhp
+#: 06010601.xhp
msgctxt ""
-"05070100.xhp\n"
-"par_id3150146\n"
-"4\n"
+"06010601.xhp\n"
+"par_idN1058C\n"
"help.text"
-msgid "Objects are aligned to the left edge of the leftmost object in the selection."
-msgstr ""
+msgid "Property"
+msgstr "Veti"
-#: 05070100.xhp
+#: 06010601.xhp
msgctxt ""
-"05070100.xhp\n"
-"par_id3150445\n"
-"3\n"
+"06010601.xhp\n"
+"par_idN10590\n"
"help.text"
-msgid "<variable id=\"mehrfachselektion\">To align the individual objects in a group, <switchinline select=\"appl\"><caseinline select=\"CALC\">choose <emph>Format - Group - Edit Group</emph></caseinline><defaultinline>double-click</defaultinline></switchinline> to enter the group, select the objects, right-click, and then choose an alignment option. </variable>"
+msgid "<ahelp hid=\".\">Defines the class of the selected term.</ahelp>"
msgstr ""
-#: 06050000.xhp
+#: 06010601.xhp
msgctxt ""
-"06050000.xhp\n"
-"tit\n"
+"06010601.xhp\n"
+"par_idN10593\n"
"help.text"
-msgid "Bullets and Numbering"
-msgstr "Pikat dhe numërimi"
+msgid "Add"
+msgstr "Shto"
-#: 06050000.xhp
+#: 06010601.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3149551\n"
-"1\n"
+"06010601.xhp\n"
+"par_idN10597\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
+msgid "<ahelp hid=\".\">Adds the term to the conversion dictionary. If the term is already in the dictionary, the new term receives precedence.</ahelp>"
msgstr ""
-#: 06050000.xhp
+#: 06010601.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3150146\n"
-"2\n"
+"06010601.xhp\n"
+"par_idN1059A\n"
"help.text"
-msgid "<variable id=\"numauftext\"><ahelp hid=\".uno:BulletsAndNumberingDial\">Adds numbering or bullets to the current paragraph, and lets you edit format of the numbering or bullets.</ahelp></variable>"
-msgstr ""
+msgid "Modify"
+msgstr "Modifiko"
-#: 06050000.xhp
+#: 06010601.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3145211\n"
-"3\n"
+"06010601.xhp\n"
+"par_idN1059E\n"
"help.text"
-msgid "The <emph>Bullets and Numbering</emph> dialog has the following tabs:"
+msgid "<ahelp hid=\".\">Saves the modified entry to the database file.</ahelp>"
msgstr ""
-#: 06050000.xhp
+#: 06010601.xhp
msgctxt ""
-"06050000.xhp\n"
-"hd_id3154984\n"
-"27\n"
+"06010601.xhp\n"
+"par_idN105A1\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Remove </caseinline></switchinline>"
-msgstr ""
+msgid "Delete"
+msgstr "Fshije"
-#: 06050000.xhp
+#: 06010601.xhp
msgctxt ""
-"06050000.xhp\n"
-"par_id3153031\n"
-"28\n"
+"06010601.xhp\n"
+"par_idN105A5\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"HID_NUM_RESET\">Removes the numbering or bullets from the current paragraph or from the selected paragraphs.</ahelp></caseinline></switchinline>"
+msgid "<ahelp hid=\".\">Removes the selected user-defined entry from the dictionary.</ahelp>"
msgstr ""
-#: 01010000.xhp
+#: 06020000.xhp
msgctxt ""
-"01010000.xhp\n"
+"06020000.xhp\n"
"tit\n"
"help.text"
-msgid "New"
-msgstr "E re"
+msgid "Thesaurus"
+msgstr "Thesari i fjalëve"
-#: 01010000.xhp
+#: 06020000.xhp
msgctxt ""
-"01010000.xhp\n"
-"hd_id3154788\n"
+"06020000.xhp\n"
+"hd_id3146946\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010000.xhp\" name=\"New\">New</link>"
-msgstr ""
+msgid "Thesaurus"
+msgstr "Thesari i fjalëve"
-#: 01010000.xhp
+#: 06020000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3145669\n"
+"06020000.xhp\n"
+"par_id3147366\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:AddDirect\">Creates a new $[officename] document.</ahelp>"
+msgid "<variable id=\"thesaurustxt\"><ahelp hid=\".uno:Thesaurus\">Opens a dialog box to replace the current word with a synonym, or a related term.</ahelp></variable>"
msgstr ""
-#: 01010000.xhp
+#: 06020000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3149182\n"
-"115\n"
+"06020000.xhp\n"
+"par_id3154184\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"HID_TBXCONTROL_FILENEW\" visibility=\"hidden\">Creates a new $[officename] document. Click the arrow to select the document type.</ahelp>"
+msgid "Thesaurus support is not available for all languages."
msgstr ""
-#: 01010000.xhp
+#: 06020000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3153528\n"
-"81\n"
+"06020000.xhp\n"
+"hd_id3147571\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\".\">If you want to create a document from a template, choose <emph>New - Templates and Documents.</emph></ahelp>"
+msgid "Current word"
msgstr ""
-#: 01010000.xhp
+#: 06020000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3147009\n"
-"82\n"
+"06020000.xhp\n"
+"par_id3159233\n"
+"6\n"
"help.text"
-msgid "A template is a file that contains the design elements for a document, including formatting styles, backgrounds, frames, graphics, fields, page layout, and text."
+msgid "<ahelp hid=\".\">Displays the current word, or the related term that you selected by double-clicking a line in the Alternatives list. You can also type text directly in this box to look up your text.</ahelp>"
msgstr ""
-#: 01010000.xhp
-msgctxt ""
-"01010000.xhp\n"
-"par_id3147242\n"
-"112\n"
-"help.text"
-msgid "<emph>Icon</emph>"
-msgstr "Fshije ikonën"
-
-#: 01010000.xhp
+#: 06020000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3149580\n"
-"113\n"
+"06020000.xhp\n"
+"hd_id3647571\n"
+"5\n"
"help.text"
-msgid "<emph>Name</emph>"
-msgstr "Emri i grupit"
+msgid "Arrow left"
+msgstr "Shigjeta e majtë"
-#: 01010000.xhp
+#: 06020000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3153258\n"
-"114\n"
+"06020000.xhp\n"
+"par_id369233\n"
+"6\n"
"help.text"
-msgid "<emph>Function</emph>"
-msgstr "Funksion eksponencial"
+msgid "<ahelp hid=\".\">Recalls the previous contents of the \"Current word\" text box.</ahelp>"
+msgstr ""
-#: 01010000.xhp
+#: 06020000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3145317\n"
+"06020000.xhp\n"
+"hd_id3154983\n"
+"7\n"
"help.text"
-msgid "<image id=\"img_id3153821\" src=\"res/sx03251.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153821\">Icon</alt></image>"
+msgid "Alternatives"
msgstr ""
-#: 01010000.xhp
+#: 06020000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3153349\n"
-"61\n"
+"06020000.xhp\n"
+"par_id3149182\n"
+"8\n"
"help.text"
-msgid "Text Document"
-msgstr "Tekst dokument"
+msgid "<ahelp hid=\".\">Click an entry in the Alternatives list to copy the related term to the \"Replace with\" text box. Double-click an entry to copy the related term to the \"Current word\" text box and to look up that term.</ahelp>"
+msgstr ""
-#: 01010000.xhp
+#: 06020000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3156153\n"
-"62\n"
+"06020000.xhp\n"
+"hd_id3155892\n"
+"9\n"
"help.text"
-msgid "Creates a new text document ($[officename] Writer)."
-msgstr ""
+msgid "Replace with"
+msgstr "Zëvendëso me"
-#: 01010000.xhp
+#: 06020000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3145121\n"
+"06020000.xhp\n"
+"par_id3150693\n"
+"10\n"
"help.text"
-msgid "<image id=\"img_id3150503\" src=\"res/sx03250.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150503\">Icon</alt></image>"
+msgid "<ahelp hid=\".\">The word or words in the \"Replace with\" text box will replace the original word in the document when you click the Replace button. You can also type text directly in this box.</ahelp>"
msgstr ""
-#: 01010000.xhp
+#: 06020000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3148552\n"
-"63\n"
+"06020000.xhp\n"
+"hd_id3146775\n"
+"15\n"
"help.text"
-msgid "Spreadsheet"
-msgstr "Tabelë kalkuluese"
+msgid "Language"
+msgstr "Gjuhë"
-#: 01010000.xhp
+#: 06020000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3154280\n"
-"64\n"
+"06020000.xhp\n"
+"par_id3159157\n"
+"16\n"
"help.text"
-msgid "Creates a new spreadsheet document ($[officename] Calc)."
+msgid "<ahelp hid=\".\">Select a language for the thesaurus.</ahelp> You can install languages with a thesaurus library from the <link href=\"http://extensions.libreoffice.org/\">Extensions</link> web page."
msgstr ""
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3149456\n"
+"06030000.xhp\n"
+"tit\n"
"help.text"
-msgid "<image id=\"img_id3148663\" src=\"res/sx03249.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148663\">Icon</alt></image>"
-msgstr ""
+msgid "Color Replacer"
+msgstr "Shiriti i Ngjyrave"
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3153798\n"
-"65\n"
+"06030000.xhp\n"
+"hd_id3156324\n"
+"1\n"
"help.text"
-msgid "Presentation"
-msgstr "Prezantim"
+msgid "<link href=\"text/shared/01/06030000.xhp\" name=\"Color Replacer\">Color Replacer</link>"
+msgstr ""
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3154946\n"
-"66\n"
+"06030000.xhp\n"
+"par_id3145138\n"
+"2\n"
"help.text"
-msgid "Creates a new presentation document ($[officename] Impress). The <link href=\"text/shared/autopi/01050000.xhp\" name=\"Presentation Wizard\">Presentation Wizard</link> dialog appears."
+msgid "<ahelp hid=\".uno:BmpMask\">Opens the Color Replacer dialog, where you can replace colors in bitmap and meta file graphics.</ahelp>"
msgstr ""
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3150495\n"
+"06030000.xhp\n"
+"par_id3151262\n"
+"24\n"
"help.text"
-msgid "<image id=\"img_id3154329\" src=\"res/sx03246.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154329\">Icon</alt></image>"
+msgid "You can replace up to four different colors at one time."
msgstr ""
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3154217\n"
-"99\n"
+"06030000.xhp\n"
+"par_id3153894\n"
"help.text"
-msgid "Drawing"
-msgstr "Vizatim"
+msgid "<image id=\"img_id3155616\" src=\"sd/res/pipette.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155616\">Icon</alt></image>"
+msgstr ""
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3149167\n"
-"100\n"
+"06030000.xhp\n"
+"par_id3145669\n"
+"3\n"
"help.text"
-msgid "Creates a new drawing document ($[officename] Draw)."
-msgstr ""
+msgid "Color Replacer"
+msgstr "Shiriti i Ngjyrave"
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN1089C\n"
+"06030000.xhp\n"
+"par_id3153683\n"
+"4\n"
"help.text"
-msgid "<image id=\"Graphic3\" src=\"res/sx03245.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select one of the four source color boxes. Move the mouse pointer over the selected image, and then click the color that you want to replace.</ahelp>"
msgstr ""
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN108CB\n"
+"06030000.xhp\n"
+"hd_id3149827\n"
+"5\n"
"help.text"
-msgid "Database"
-msgstr "Databaza"
+msgid "Color Replacer color"
+msgstr "Zgjedhja e databazës"
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN108D0\n"
+"06030000.xhp\n"
+"par_id3146957\n"
+"6\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/explorer/database/dabawiz00.xhp\">Database Wizard</link> to create a <link href=\"text/shared/explorer/database/dabadoc.xhp\">database file</link>."
+msgid "<ahelp hid=\".\">Displays the color in the selected image that directly underlies the current mouse pointer position. This features only works if the Color Replacer tool is selected.</ahelp>"
msgstr ""
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3159149\n"
+"06030000.xhp\n"
+"hd_id3154823\n"
+"7\n"
"help.text"
-msgid "<image id=\"img_id3150868\" src=\"res/sx03139.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150868\">Icon</alt></image>"
-msgstr ""
+msgid "Replace"
+msgstr "Zëvendëso"
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3154298\n"
-"79\n"
+"06030000.xhp\n"
+"par_id3154983\n"
+"8\n"
"help.text"
-msgid "HTML Document"
-msgstr "HTML Dokument"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_BMPMASK:BTN_EXEC\">Replaces the selected source colors in the current image with the colors that you specify in the <emph>Replace with </emph>boxes.</ahelp>"
+msgstr ""
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3152460\n"
-"80\n"
+"06030000.xhp\n"
+"hd_id3147275\n"
+"9\n"
"help.text"
-msgid "Creates a new HTML document."
-msgstr "%PRODUCTNAME %PRODUCTVERSION HTML Dokument"
+msgid "Colors"
+msgstr "Ngjyrat"
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN107BF\n"
+"06030000.xhp\n"
+"par_id3153031\n"
+"10\n"
"help.text"
-msgid "<image id=\"Graphic2\" src=\"res/sx03251.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_\">Icon</alt></image>"
+msgid "Lists the source colors and the replacement colors."
msgstr ""
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN107F0\n"
+"06030000.xhp\n"
+"hd_id3149416\n"
+"11\n"
"help.text"
-msgid "XML Form Document"
-msgstr "XML Dokument i formularit"
+msgid "Source color checkbox"
+msgstr "Ngjyra e 3D materialit"
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN107F5\n"
+"06030000.xhp\n"
+"par_id3149819\n"
+"12\n"
"help.text"
-msgid "Creates a new <link href=\"text/shared/guide/xforms.xhp\">XForms</link> document."
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_BMPMASK:CBX_4\">Select this checkbox to replace the current <emph>Source color</emph> with the color that you specify in the <emph>Replace with </emph>box.</ahelp>"
msgstr ""
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3147426\n"
+"06030000.xhp\n"
+"hd_id3159116\n"
+"13\n"
"help.text"
-msgid "<image id=\"img_id3163710\" src=\"res/sx03248.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3163710\">Icon</alt></image>"
-msgstr ""
+msgid "Source color"
+msgstr "Ngjyra e Fontit"
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3152938\n"
-"89\n"
+"06030000.xhp\n"
+"par_id3149903\n"
+"14\n"
"help.text"
-msgid "Master Document"
-msgstr "Dokument kryesor"
+msgid "<ahelp hid=\".\">Displays the color in the selected image that you want to replace. To set the source color, click here, click the Color Replacer, and then click a color in the selected image.</ahelp>"
+msgstr ""
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3150961\n"
-"90\n"
+"06030000.xhp\n"
+"hd_id3150085\n"
+"15\n"
"help.text"
-msgid "Creates a new <link href=\"text/shared/01/01010001.xhp\" name=\"master document\">master document</link>."
+msgid "Tolerance"
msgstr ""
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3155854\n"
+"06030000.xhp\n"
+"par_id3144438\n"
+"16\n"
"help.text"
-msgid "<image id=\"img_id3147317\" src=\"res/sx03247.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147317\">Icon</alt></image>"
+msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_BMPMASK:SP_4\">Set the tolerance for replacing a source color in the source image. To replace colors that are similar to the color that you selected, enter a low value. To replace a wider range of colors, enter a higher value.</ahelp>"
msgstr ""
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3155511\n"
-"77\n"
+"06030000.xhp\n"
+"hd_id3156156\n"
+"17\n"
"help.text"
-msgid "Formula"
-msgstr "Formula"
+msgid "Replace with"
+msgstr "Zëvendëso me"
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3150872\n"
-"78\n"
+"06030000.xhp\n"
+"par_id3154173\n"
+"18\n"
"help.text"
-msgid "Creates a new formula document ($[officename] Math)."
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_BMPMASK:LB_4\">Lists the available replacement colors. To modify the current list of colors, deselect the image, choose <emph>Format - Area</emph>, and then click the <emph>Colors</emph> tab.</ahelp>"
msgstr ""
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3154145\n"
+"06030000.xhp\n"
+"hd_id3156152\n"
+"19\n"
"help.text"
-msgid "<image id=\"img_id3083443\" src=\"res/sx03255.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3083443\">Icon</alt></image>"
-msgstr ""
+msgid "Transparency"
+msgstr "Transparencë"
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3149417\n"
-"105\n"
+"06030000.xhp\n"
+"par_id3154905\n"
+"20\n"
"help.text"
-msgid "Labels"
-msgstr "Etiketat"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXDLG_BMPMASK:CBX_TRANS\">Replaces transparent areas in the current image with the color that you select.</ahelp>"
+msgstr ""
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3148388\n"
-"106\n"
+"06030000.xhp\n"
+"hd_id3145087\n"
+"21\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/01/01010200.xhp\" name=\"Labels\">Labels</link> dialog where you can set the options for your labels, and then creates a new text document for the labels ($[officename] Writer)."
-msgstr ""
+msgid "Transparency"
+msgstr "Transparencë"
-#: 01010000.xhp
+#: 06030000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3155415\n"
+"06030000.xhp\n"
+"par_id3148946\n"
+"22\n"
"help.text"
-msgid "<image id=\"img_id3156283\" src=\"res/sx03255.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156283\">Icon</alt></image>"
+msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_BMPMASK:LB_TRANS\">Select the color to replace the transparent areas in the current image.</ahelp>"
msgstr ""
-#: 01010000.xhp
+#: 06040000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3150592\n"
-"107\n"
+"06040000.xhp\n"
+"tit\n"
"help.text"
-msgid "Business Cards"
-msgstr "Vizitkartat"
+msgid "AutoCorrect"
+msgstr "AutoCorrect"
-#: 01010000.xhp
+#: 06040000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3150968\n"
-"108\n"
+"06040000.xhp\n"
+"bm_id3153391\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/01/01010300.xhp\" name=\"Business Cards\">Business Cards</link> dialog where you can set the options for your business cards, and then creates a new text document ($[officename] Writer)."
-msgstr ""
+msgid "<bookmark_value>AutoCorrect function;switching on and off</bookmark_value><bookmark_value>AutoComplete, see also AutoCorrect/AutoInput</bookmark_value>"
+msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-#: 01010000.xhp
+#: 06040000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3154729\n"
+"06040000.xhp\n"
+"hd_id3153391\n"
"help.text"
-msgid "<image id=\"img_id3150422\" src=\"res/sx03242.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150422\">Icon</alt></image>"
-msgstr ""
+msgid "AutoCorrect"
+msgstr "AutoCorrect"
-#: 01010000.xhp
+#: 06040000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3154510\n"
-"69\n"
+"06040000.xhp\n"
+"par_id3150838\n"
"help.text"
-msgid "Templates and Documents"
-msgstr "Shabllone dhe Dokumente"
+msgid "<variable id=\"autoko\"><ahelp hid=\".uno:AutoCorrectDlg\">Sets the options for automatically replacing text as you type.</ahelp></variable>"
+msgstr ""
-#: 01010000.xhp
+#: 06040000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_id3155603\n"
-"70\n"
+"06040000.xhp\n"
+"par_id3147261\n"
"help.text"
-msgid "Creates a new document using an existing <link href=\"text/shared/01/01010100.xhp\" name=\"template\">template</link> or opens a sample document."
+msgid "The AutoCorrect settings are applied when you press the Spacebar after you enter a word."
msgstr ""
-#: 01010000.xhp
+#: 06040000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN1096F\n"
+"06040000.xhp\n"
+"par_id3153394\n"
"help.text"
-msgid "<link href=\"text/shared/guide/doc_open.xhp\">Opening documents</link>"
+msgid "To turn on or to turn off the AutoCorrect feature, in $[officename] Calc choose <emph>Tools - Cell Contents - AutoInput</emph>, and in $[officename] Writer choose <emph>Format - AutoCorrect - While Typing</emph>. To apply the AutoCorrect settings to an entire text document, choose <emph>Format - AutoCorrect - Apply</emph>."
msgstr ""
-#: 01010000.xhp
+#: 06040000.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN109E7\n"
+"06040000.xhp\n"
+"par_id3146137\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new text document ($[officename] Writer).</ahelp>"
+msgid "<link href=\"text/swriter/01/05150200.xhp\" name=\"AutoFormat\">AutoCorrect</link>"
msgstr ""
-#: 01010000.xhp
+#: 06040100.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN109FE\n"
+"06040100.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new spreadsheet document ($[officename] Calc).</ahelp>"
-msgstr ""
+msgid "Options"
+msgstr "Opcionet"
-#: 01010000.xhp
+#: 06040100.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10A15\n"
+"06040100.xhp\n"
+"bm_id3155620\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new presentation document ($[officename] Impress). The Presentation Wizard dialog appears.</ahelp>"
+msgid "<bookmark_value>AutoCorrect function; options</bookmark_value> <bookmark_value>replacement options</bookmark_value> <bookmark_value>words; automatically replacing</bookmark_value> <bookmark_value>abbreviation replacement</bookmark_value> <bookmark_value>capital letters; AutoCorrect function</bookmark_value> <bookmark_value>bold; AutoFormat function</bookmark_value> <bookmark_value>underlining; AutoFormat function</bookmark_value> <bookmark_value>spaces; ignoring double</bookmark_value> <bookmark_value>numbering; using automatically</bookmark_value> <bookmark_value>paragraphs; numbering automatically</bookmark_value> <bookmark_value>tables in text; creating automatically</bookmark_value> <bookmark_value>titles; formatting automatically</bookmark_value> <bookmark_value>empty paragraph removal</bookmark_value> <bookmark_value>paragraphs; removing blank ones</bookmark_value> <bookmark_value>styles; replacing automatically</bookmark_value> <bookmark_value>user-defined styles; automatically replacing</bookmark_value> <bookmark_value>bullets; replacing</bookmark_value> <bookmark_value>paragraphs; joining</bookmark_value> <bookmark_value>joining; paragraphs</bookmark_value>"
msgstr ""
-#: 01010000.xhp
+#: 06040100.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10A2C\n"
+"06040100.xhp\n"
+"hd_id3155620\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new drawing document ($[officename] Draw).</ahelp>"
+msgid "<link href=\"text/shared/01/06040100.xhp\" name=\"Options\">Options</link>"
msgstr ""
-#: 01010000.xhp
+#: 06040100.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10A43\n"
+"06040100.xhp\n"
+"par_id3146946\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Database Wizard to create a database file.</ahelp>"
+msgid "<ahelp hid=\"HID_OFAPAGE_AUTOFORMAT_CLB\">Select the options for automatically correcting errors as you type, and then click <emph>OK</emph>.</ahelp>"
msgstr ""
-#: 01010000.xhp
+#: 06040100.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10A5A\n"
+"06040100.xhp\n"
+"par_id3153124\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new HTML document.</ahelp>"
+msgid "In text documents, you can choose to apply the AutoCorrect corrections while you type [T], or only when you modify existing text [M] with <emph>Format - AutoCorrect - Apply</emph>."
msgstr ""
-#: 01010000.xhp
+#: 06040100.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10A71\n"
+"06040100.xhp\n"
+"par_id7547227\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new XForms document.</ahelp>"
+msgid "When you choose to modify existing text with all options deselected, still all \"Default\" paragraph styles will be converted to \"Text body\" styles."
msgstr ""
-#: 01010000.xhp
+#: 06040100.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10A88\n"
+"06040100.xhp\n"
+"hd_id3154398\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new master document.</ahelp>"
-msgstr ""
+msgid "Use replacement table"
+msgstr "Përdor tabelën zëvendësuese"
-#: 01010000.xhp
+#: 06040100.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10A9F\n"
+"06040100.xhp\n"
+"par_id3151234\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new formula document ($[officename] Math).</ahelp>"
+msgid "If you type a letter combination that matches a shortcut in the <link href=\"text/shared/01/06040200.xhp\" name=\"replacement table\">replacement table</link>, the letter combination is replaced with the replacement text."
msgstr ""
-#: 01010000.xhp
+#: 06040100.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10AB6\n"
+"06040100.xhp\n"
+"hd_id3150144\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Labels dialog where you can set the options for your labels, and then creates a new text document for the labels ($[officename] Writer).</ahelp>"
-msgstr ""
+msgid "Correct TWo INitial CApitals"
+msgstr "Korrigjo DY SHKronjat e PAra të mëdha"
-#: 01010000.xhp
+#: 06040100.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10ACD\n"
+"06040100.xhp\n"
+"par_id3149177\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Business Cards dialog where you can set the options for your business cards, and then creates a new text document ($[officename] Writer).</ahelp>"
+msgid "If you type two uppercase letters at the beginning of a \"WOrd\", the second uppercase letter is automatically replaced with a lowercase letter."
msgstr ""
-#: 01010000.xhp
+#: 06040100.xhp
msgctxt ""
-"01010000.xhp\n"
-"par_idN10AE4\n"
+"06040100.xhp\n"
+"hd_id3156426\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Creates a new document using an existing template or opens a sample document.</ahelp>"
-msgstr ""
+msgid "Capitalize first letter of every sentence."
+msgstr "Bën shkronjë të madhe shkronjën e parë në çdo fjalë."
-#: 01100000.xhp
+#: 06040100.xhp
msgctxt ""
-"01100000.xhp\n"
-"tit\n"
+"06040100.xhp\n"
+"par_id3155339\n"
+"8\n"
"help.text"
-msgid "Properties of"
-msgstr "Vetitë..."
+msgid "Capitalizes the first letter of every sentence."
+msgstr "Bën shkronjë të madhe shkronjën e parë në çdo fjalë."
-#: 01100000.xhp
+#: 06040100.xhp
msgctxt ""
-"01100000.xhp\n"
-"hd_id3152876\n"
-"1\n"
+"06040100.xhp\n"
+"par_id5240028\n"
"help.text"
-msgid "<variable id=\"eigen_von\"><link href=\"text/shared/01/01100000.xhp\" name=\"Properties of\">Properties of</link></variable>"
+msgid "The first letter in a Calc cell will never be capitalized automatically."
msgstr ""
-#: 01100000.xhp
+#: 06040100.xhp
msgctxt ""
-"01100000.xhp\n"
-"par_id3153255\n"
-"2\n"
+"06040100.xhp\n"
+"hd_id3145072\n"
+"24\n"
"help.text"
-msgid "<variable id=\"dokumentinfotext\"><ahelp hid=\".uno:SetDocumentProperties\">Displays the properties for the current file, including statistics such as word count and the date the file was created.</ahelp></variable>"
-msgstr ""
+msgid "Automatic *bold* and _underline_"
+msgstr "Nënvizo (vijë e gjatë lidhëse, e theksuar)"
-#: 01100000.xhp
+#: 06040100.xhp
msgctxt ""
-"01100000.xhp\n"
-"par_id3153748\n"
-"4\n"
+"06040100.xhp\n"
+"par_id3153577\n"
+"26\n"
"help.text"
-msgid "The <emph>Properties</emph> dialog contains the following tab pages:"
+msgid "Automatically applies bold formatting to text enclosed by asterisks (*), and underline to text enclosed by underscores ( _ ), for example, *bold*. The asterisks and underscores are not displayed after the formatting is applied."
msgstr ""
-#: 01100000.xhp
+#: 06040100.xhp
msgctxt ""
-"01100000.xhp\n"
-"par_id3148643\n"
-"5\n"
+"06040100.xhp\n"
+"par_id3153127\n"
+"105\n"
"help.text"
-msgid "Depending on your access rights to the file, you might not see all of the tabs in the <emph>Properties</emph> dialog."
+msgid "This feature does not work if the formatting characters * or _ are entered with an <link href=\"text/shared/00/00000005.xhp#IME\" name=\"Input Method Editor\">Input Method Editor</link>."
msgstr ""
-#: 01990000.xhp
+#: 06040100.xhp
msgctxt ""
-"01990000.xhp\n"
-"tit\n"
+"06040100.xhp\n"
+"hd_id3150275\n"
+"17\n"
"help.text"
-msgid "Recent Documents"
-msgstr "Duke i krijuar dokumentet..."
+msgid "URL Recognition"
+msgstr "URL njohje"
-#: 01990000.xhp
+#: 06040100.xhp
msgctxt ""
-"01990000.xhp\n"
-"hd_id3150279\n"
-"6\n"
+"06040100.xhp\n"
+"par_id3158430\n"
+"18\n"
"help.text"
-msgid "<variable id=\"picktitle\"><link href=\"text/shared/01/01990000.xhp\" name=\"Recent Documents\">Recent Documents</link></variable>"
+msgid "Automatically creates a hyperlink when you type a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link>."
msgstr ""
-#: 01990000.xhp
+#: 06040100.xhp
msgctxt ""
-"01990000.xhp\n"
-"par_id3154794\n"
-"5\n"
+"06040100.xhp\n"
+"hd_id3148473\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\".\">Lists the most recently opened files. To open a file in the list, click its name.</ahelp>"
-msgstr ""
+msgid "Replace Dashes"
+msgstr "Zëvendëso vijat lidhëse"
-#: 01990000.xhp
+#: 06040100.xhp
msgctxt ""
-"01990000.xhp\n"
-"par_id3159079\n"
-"4\n"
+"06040100.xhp\n"
+"par_id3144439\n"
+"20\n"
"help.text"
-msgid "The file is opened by the <item type=\"productname\">%PRODUCTNAME</item> module that saved it."
+msgid "Replaces one or two hyphens with a long dash (see the following table)."
msgstr ""
-#: 06040700.xhp
-msgctxt ""
-"06040700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Smart Tags"
-msgstr "Fillo në"
-
-#: 06040700.xhp
+#: 06040100.xhp
msgctxt ""
-"06040700.xhp\n"
-"bm_id9057588\n"
+"06040100.xhp\n"
+"par_id87282\n"
"help.text"
-msgid "<bookmark_value>smart tag configuration</bookmark_value>"
+msgid "Text will be replaced after you type a trailing white space (space, tab, or return). In the following table, the A and B represent text consisting of letters A to z or digits 0 to 9."
msgstr ""
-#: 06040700.xhp
+#: 06040100.xhp
msgctxt ""
-"06040700.xhp\n"
-"hd_id3563951\n"
+"06040100.xhp\n"
+"par_id3408612\n"
"help.text"
-msgid "Smart Tags"
-msgstr "Fillo në"
+msgid "Text that you type:"
+msgstr "Teksti që përshkruan formatin."
-#: 06040700.xhp
+#: 06040100.xhp
msgctxt ""
-"06040700.xhp\n"
-"par_id1827448\n"
+"06040100.xhp\n"
+"par_id4362010\n"
"help.text"
-msgid "<ahelp hid=\".\">When you have installed at least one Smart Tag extension, you see the Smart Tags page.</ahelp>"
+msgid "Result that you get:"
msgstr ""
-#: 06040700.xhp
+#: 06040100.xhp
msgctxt ""
-"06040700.xhp\n"
-"hd_id686666\n"
+"06040100.xhp\n"
+"par_id1432844\n"
"help.text"
-msgid "Label text with smart tags"
-msgstr ""
+msgid "A - B (A, space, minus, space, B)"
+msgstr "Hapësirë e barabartë"
-#: 06040700.xhp
+#: 06040100.xhp
msgctxt ""
-"06040700.xhp\n"
-"par_id3259376\n"
+"06040100.xhp\n"
+"par_id7553941\n"
"help.text"
-msgid "<ahelp hid=\".\">Enables Smart Tags to be evaluated and shown in your text document.</ahelp>"
-msgstr ""
+msgid "A – B (A, space, en-dash, space, B)"
+msgstr "Linjë vizë/pikë"
-#: 06040700.xhp
+#: 06040100.xhp
msgctxt ""
-"06040700.xhp\n"
-"hd_id4024170\n"
+"06040100.xhp\n"
+"par_id1421246\n"
"help.text"
-msgid "Currently installed smart tags"
-msgstr ""
+msgid "A -- B (A, space, minus, minus, space, B)"
+msgstr "Hapësirë e barabartë"
-#: 06040700.xhp
+#: 06040100.xhp
msgctxt ""
-"06040700.xhp\n"
-"par_id2847071\n"
+"06040100.xhp\n"
+"par_id2305673\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays all installed Smart Tags. To configure a Smart Tag, select the name of the Smart Tag, then click Properties. Not all Smart Tags can be configured.</ahelp>"
-msgstr ""
+msgid "A – B (A, space, en-dash, space, B)"
+msgstr "Linjë vizë/pikë"
-#: 06040700.xhp
+#: 06040100.xhp
msgctxt ""
-"06040700.xhp\n"
-"hd_id8424329\n"
+"06040100.xhp\n"
+"par_id8703573\n"
"help.text"
-msgid "Properties"
-msgstr "Vetitë"
+msgid "A--B (A, minus, minus, B)"
+msgstr "Hapësirë e barabartë"
-#: 06040700.xhp
+#: 06040100.xhp
msgctxt ""
-"06040700.xhp\n"
-"par_id3912167\n"
+"06040100.xhp\n"
+"par_id6049684\n"
"help.text"
-msgid "<ahelp hid=\".\">To configure a Smart Tag, select the name of the Smart Tag, then click Properties. Not all Smart Tags can be configured.</ahelp>"
+msgid "A—B (A, em-dash, B)<br/>(see note below the table)"
msgstr ""
-#: ref_pdf_send_as.xhp
-msgctxt ""
-"ref_pdf_send_as.xhp\n"
-"tit\n"
-"help.text"
-msgid "E-mail as PDF"
-msgstr "Eksporto si PDF..."
-
-#: ref_pdf_send_as.xhp
+#: 06040100.xhp
msgctxt ""
-"ref_pdf_send_as.xhp\n"
-"hd_id3146902\n"
-"2\n"
+"06040100.xhp\n"
+"par_id2219916\n"
"help.text"
-msgid "<variable id=\"ref_pdf_send_as\"><link href=\"text/shared/01/ref_pdf_send_as.xhp\" name=\"E-mail as PDF\">E-mail as PDF</link></variable>"
+msgid "A-B (A, minus, B)"
msgstr ""
-#: ref_pdf_send_as.xhp
+#: 06040100.xhp
msgctxt ""
-"ref_pdf_send_as.xhp\n"
-"par_id3150756\n"
-"1\n"
+"06040100.xhp\n"
+"par_id1868037\n"
"help.text"
-msgid "<variable id=\"ref_pdf_send_as_text\"><ahelp hid=\".uno:SendMailDocAsPDF\">Shows the Export as PDF dialog, exports the current document to Portable Document Format (PDF), and then opens an e-mail sending window with the PDF as an attachment.</ahelp></variable>"
+msgid "A-B (unchanged)"
msgstr ""
-#: 05260600.xhp
+#: 06040100.xhp
msgctxt ""
-"05260600.xhp\n"
-"tit\n"
+"06040100.xhp\n"
+"par_id714438\n"
"help.text"
-msgid "As Character"
-msgstr "Si karakter"
+msgid "A -B (A, space, minus, B)"
+msgstr "Hapësirë e barabartë"
-#: 05260600.xhp
+#: 06040100.xhp
msgctxt ""
-"05260600.xhp\n"
-"hd_id3154621\n"
-"1\n"
+"06040100.xhp\n"
+"par_id3924985\n"
"help.text"
-msgid "<link href=\"text/shared/01/05260600.xhp\" name=\"As Character\">As Character</link>"
+msgid "A -B (unchanged)"
msgstr ""
-#: 05260600.xhp
+#: 06040100.xhp
msgctxt ""
-"05260600.xhp\n"
-"par_id3146946\n"
-"2\n"
+"06040100.xhp\n"
+"par_id1486861\n"
"help.text"
-msgid "<ahelp hid=\".\">Anchors the selected item as a character in the current text. If the height of the selected item is greater than the current font size, the height of the line containing the item is increased.</ahelp>"
-msgstr ""
+msgid "A --B (A, space, minus, minus, B)"
+msgstr "Hapësirë e barabartë"
-#: 05290200.xhp
+#: 06040100.xhp
msgctxt ""
-"05290200.xhp\n"
-"tit\n"
+"06040100.xhp\n"
+"par_id844141\n"
"help.text"
-msgid "Ungroup"
-msgstr "Zhgrupo"
+msgid "A –B (A, space, en-dash, B)"
+msgstr "Linjë vizë/pikë"
-#: 05290200.xhp
+#: 06040100.xhp
msgctxt ""
-"05290200.xhp\n"
-"hd_id3159217\n"
-"1\n"
+"06040100.xhp\n"
+"par_id1416974\n"
"help.text"
-msgid "<link href=\"text/shared/01/05290200.xhp\" name=\"Ungroup\">Ungroup</link>"
+msgid "If the text has the Hungarian or Finnish language attribute, then two hyphens in the sequence A--B are replaced by an en-dash instead of an em-dash."
msgstr ""
-#: 05290200.xhp
+#: 06040100.xhp
msgctxt ""
-"05290200.xhp\n"
-"par_id3156116\n"
-"2\n"
+"06040100.xhp\n"
+"hd_id3152472\n"
+"99\n"
"help.text"
-msgid "<variable id=\"aufhebentext\"><ahelp hid=\".uno:FormatUngroup\" visibility=\"visible\">Breaks apart the selected group into individual objects.</ahelp></variable>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Delete spaces and tabs at beginning and end of paragraph</caseinline></switchinline>"
msgstr ""
-#: 05290200.xhp
+#: 06040100.xhp
msgctxt ""
-"05290200.xhp\n"
-"par_id3146067\n"
-"3\n"
+"06040100.xhp\n"
+"par_id3156024\n"
+"100\n"
"help.text"
-msgid "To break apart the nested groups within a group, you must repeat this command on each subgroup."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Removes spaces and tabs at the beginning of a paragraph. To use this option, the <emph>Apply Styles</emph> option must also be selected.</caseinline></switchinline>"
msgstr ""
-#: 05010000.xhp
-#, fuzzy
-msgctxt ""
-"05010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Clear Direct Formatting"
-msgstr "Formatimi i faqes"
-
-#: 05010000.xhp
+#: 06040100.xhp
msgctxt ""
-"05010000.xhp\n"
-"bm_id3157959\n"
+"06040100.xhp\n"
+"hd_id3147303\n"
+"101\n"
"help.text"
-msgid "<bookmark_value>formatting; undoing when writing</bookmark_value><bookmark_value>hyperlinks; deleting</bookmark_value><bookmark_value>deleting; hyperlinks</bookmark_value><bookmark_value>cells;resetting formats</bookmark_value>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Delete blanks and tabs at end and start of lines</caseinline></switchinline>"
msgstr ""
-#: 05010000.xhp
+#: 06040100.xhp
msgctxt ""
-"05010000.xhp\n"
-"hd_id3153391\n"
-"1\n"
+"06040100.xhp\n"
+"par_id3150866\n"
+"102\n"
"help.text"
-msgid "<link href=\"text/shared/01/05010000.xhp\" name=\"Clear Direct Formatting\">Clear Direct Formatting</link>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Removes spaces and tabs at the beginning of each line. To use this option, the <emph>Apply Styles</emph> option must also be selected.</caseinline></switchinline>"
msgstr ""
-#: 05010000.xhp
+#: 06040100.xhp
msgctxt ""
-"05010000.xhp\n"
-"par_id3145829\n"
-"2\n"
+"06040100.xhp\n"
+"hd_id3150400\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\".uno:StandardTextAttributes\">Removes direct formatting and formatting by character styles from the selection.</ahelp>"
-msgstr ""
+msgid "Ignore double spaces"
+msgstr "Tabet dhe hapësirat"
-#: 05010000.xhp
+#: 06040100.xhp
msgctxt ""
-"05010000.xhp\n"
-"par_id3147261\n"
-"5\n"
+"06040100.xhp\n"
+"par_id3154938\n"
+"29\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CHART\"></caseinline><defaultinline>Direct formatting is formatting that you applied without using styles, such as setting bold typeface by clicking the <emph>Bold</emph> icon.</defaultinline></switchinline>"
+msgid "Replaces two or more consecutive spaces with a single space."
msgstr ""
-#: 05010000.xhp
+#: 06040100.xhp
msgctxt ""
-"05010000.xhp\n"
-"par_id3157959\n"
-"3\n"
+"06040100.xhp\n"
+"hd_id3145116\n"
+"33\n"
"help.text"
-msgid "To stop applying a direct format, such as underlining, while you type new text at the end of a line, press Shift+Ctrl+X."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Apply numbering - symbol</caseinline></switchinline>"
msgstr ""
-#: 02040000.xhp
+#: 06040100.xhp
msgctxt ""
-"02040000.xhp\n"
-"tit\n"
+"06040100.xhp\n"
+"par_id3150870\n"
+"34\n"
"help.text"
-msgid "Cut"
-msgstr "Preje"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Automatically creates a numbered list when you press Enter at the end of a line that starts with a number followed by a period, a space, and text. If a line starts with a hyphen (-), a plus sign (+), or an asterisk (*), followed by a space, and text, a bulleted list is created when you press Enter.</caseinline></switchinline>"
+msgstr ""
-#: 02040000.xhp
+#: 06040100.xhp
msgctxt ""
-"02040000.xhp\n"
-"bm_id3146936\n"
+"06040100.xhp\n"
+"par_id3146874\n"
+"92\n"
"help.text"
-msgid "<bookmark_value>cutting</bookmark_value><bookmark_value>clipboard; cutting</bookmark_value>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To cancel automatic numbering when you press Enter at the end of a line that starts with a numbering symbol, press Enter again.</caseinline></switchinline>"
msgstr ""
-#: 02040000.xhp
+#: 06040100.xhp
msgctxt ""
-"02040000.xhp\n"
-"hd_id3146936\n"
-"1\n"
+"06040100.xhp\n"
+"par_id3145606\n"
+"77\n"
"help.text"
-msgid "<link href=\"text/shared/01/02040000.xhp\" name=\"Cut\">Cut</link>"
+msgid "The automatic numbering option is only applied to paragraphs that are formatted with the \"Default\", \"Text body\", or \"Text body indent\" paragraph style."
msgstr ""
-#: 02040000.xhp
+#: 06040100.xhp
msgctxt ""
-"02040000.xhp\n"
-"par_id3153255\n"
-"2\n"
+"06040100.xhp\n"
+"hd_id3157962\n"
+"35\n"
"help.text"
-msgid "<ahelp hid=\".uno:Cut\">Removes and copies the selection to the clipboard.</ahelp>"
-msgstr ""
+msgid "Apply border"
+msgstr "Zbato kufinjtë dhe hijezimin"
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"tit\n"
+"06040100.xhp\n"
+"par_id3144445\n"
+"36\n"
"help.text"
-msgid "Data (for XML Form Documents)"
+msgid "Automatically applies a border at the base of the preceding paragraph when you type three or more specific characters, and then press Enter. To create a single line, type three or more hyphens (-), or underscores ( _ ), and then press Enter. To create a double line, type three or more equal signs (=), asterisks (*), tildes (~), or hash marks (#), and then press Enter."
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id5766472\n"
+"06040100.xhp\n"
+"par_idN10C2E\n"
"help.text"
-msgid "<link href=\"text/shared/01/xformsdatatab.xhp\">Data (for XML Form Documents)</link>"
+msgid "To delete the created line, click the paragraph above the line, choose <emph>Format - Paragraph - Borders</emph>, delete the bottom border."
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id1161534\n"
+"06040100.xhp\n"
+"par_idN10C35\n"
"help.text"
-msgid "The Data tab page of the Properties dialog for an XML Form document offers some XML forms settings."
+msgid "The following table summarizes the line thickness for the different characters:"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id3994567\n"
+"06040100.xhp\n"
+"par_id3148576\n"
+"37\n"
"help.text"
-msgid "The possible settings of the <emph>Data</emph> tab page of a control depend on the respective control. You will only see the options that are available for the current control and context. The following fields are available:"
+msgid "---"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id9461653\n"
+"06040100.xhp\n"
+"par_id3154690\n"
+"38\n"
"help.text"
-msgid "XML data model"
-msgstr "Shto të dhënat si:"
+msgid "0.5pt single underline"
+msgstr "Nënvizo (vija të gjata lidhëse)"
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id9239173\n"
+"06040100.xhp\n"
+"par_id3154472\n"
+"39\n"
"help.text"
-msgid "<ahelp hid=\".\">Select a model from the list of all models in the current document.</ahelp>"
+msgid "___"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id2656941\n"
+"06040100.xhp\n"
+"par_id3149266\n"
+"40\n"
"help.text"
-msgid "Binding"
-msgstr "Ndërlidhjet"
+msgid "1.0pt single underline"
+msgstr "Nënvizo (vija të gjata lidhëse)"
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id1481063\n"
+"06040100.xhp\n"
+"par_id3147580\n"
+"41\n"
"help.text"
-msgid "<ahelp hid=\".\">Select or enter the name of a binding. Selecting the name of an existing binding associates the binding with the form control. Entering a new name creates a new binding and associates it with the form control.</ahelp>"
+msgid "==="
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id7921079\n"
+"06040100.xhp\n"
+"par_id3145364\n"
+"42\n"
"help.text"
-msgid "Binding expression"
-msgstr "Duke ndërlidhur shprehjen"
+msgid "1.1pt double underline"
+msgstr "Nënvizo (valëzuar dyfisht)"
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id636921\n"
+"06040100.xhp\n"
+"par_id3148647\n"
+"43\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter the DOM node to bind the control model to. Click the ... button for a dialog to enter the XPath expression.</ahelp>"
+msgid "***"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id2799157\n"
+"06040100.xhp\n"
+"par_id3152791\n"
+"44\n"
"help.text"
-msgid "Required"
-msgstr "Kërkohet"
+msgid "4.5pt double underline"
+msgstr "Nënvizo (valëzuar dyfisht)"
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id3004547\n"
+"06040100.xhp\n"
+"par_id3146975\n"
+"45\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies if the item must be included on the XForm.</ahelp>"
+msgid "~~~"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id6401867\n"
+"06040100.xhp\n"
+"par_id3152885\n"
+"46\n"
"help.text"
-msgid "Relevant"
-msgstr "Përsërite"
+msgid "6.0pt double underline"
+msgstr "Nënvizo (valëzuar dyfisht)"
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id18616\n"
+"06040100.xhp\n"
+"par_id3145591\n"
+"47\n"
"help.text"
-msgid "<ahelp hid=\".\">Declares the item as relevant.</ahelp>"
+msgid "###"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id6138492\n"
+"06040100.xhp\n"
+"par_id3153188\n"
+"48\n"
"help.text"
-msgid "Read-only"
-msgstr "Vetëm -lexim"
+msgid "9.0pt double underline"
+msgstr "Nënvizo (valëzuar dyfisht)"
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id4569231\n"
+"06040100.xhp\n"
+"hd_id3149064\n"
+"49\n"
"help.text"
-msgid "<ahelp hid=\".\">Declares the item as read-only.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Create table</caseinline></switchinline>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id291451\n"
+"06040100.xhp\n"
+"par_id3146119\n"
+"50\n"
"help.text"
-msgid "Constraint"
-msgstr "Kufizimet"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Creates a table when you press Enter after typing a series of hyphens (-) or tabs separated by plus signs, that is, +------+---+. Plus signs indicate column dividers, while hyphens and tabs indicate the width of a column.</caseinline></switchinline>"
+msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id3341776\n"
+"06040100.xhp\n"
+"par_id3147219\n"
+"53\n"
"help.text"
-msgid "<ahelp hid=\".\">Declares the item as a constraint.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">+-----------------+---------------+------+</caseinline></switchinline>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id5947141\n"
+"06040100.xhp\n"
+"hd_id3153334\n"
+"55\n"
"help.text"
-msgid "Calculation"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Apply Styles</caseinline></switchinline>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id1911679\n"
+"06040100.xhp\n"
+"par_id3147396\n"
+"56\n"
"help.text"
-msgid "<ahelp hid=\".\">Declares that the item is calculated.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Automatically replaces the \"Default\" paragraph style with the Heading 1 to Heading 8 paragraph styles. To apply the Heading 1 paragraph style, type the text that you want to use as a heading (without a period), and then press Enter twice. To apply a sub-heading, press Tab one or more times, type the text (without a period), and then press Enter.</caseinline></switchinline>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id9364909\n"
+"06040100.xhp\n"
+"hd_id3151075\n"
+"58\n"
"help.text"
-msgid "Data type"
-msgstr "Tipi i të dhënave"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Remove blank paragraphs</caseinline></switchinline>"
+msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id4473403\n"
+"06040100.xhp\n"
+"par_id3145728\n"
+"59\n"
"help.text"
-msgid "<ahelp hid=\".\">Select a data type which the control should be validated against.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Removes empty paragraphs from the current document when you choose <emph>Format - AutoCorrect - Apply</emph>.</caseinline></switchinline>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id2480849\n"
+"06040100.xhp\n"
+"hd_id3152375\n"
+"60\n"
"help.text"
-msgid "x"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Replace Custom Styles</caseinline></switchinline>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id4181951\n"
+"06040100.xhp\n"
+"par_id3156299\n"
+"61\n"
"help.text"
-msgid "<ahelp hid=\".\">Select a user-defined data type and click the button to delete the user-defined data type.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Replaces the custom paragraph styles in the current document with the \"Default\", the \"Text Body\", or the \"Text Body Indent\" paragraph style.</caseinline></switchinline>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id2927335\n"
+"06040100.xhp\n"
+"hd_id3147045\n"
+"62\n"
"help.text"
-msgid "+"
-msgstr "+"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Replace bullets with</caseinline></switchinline>"
+msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id2107303\n"
+"06040100.xhp\n"
+"par_id3150420\n"
+"63\n"
"help.text"
-msgid "<ahelp hid=\".\">Click the button to open a dialog where you can enter the name of a new user-defined data type. The new data type inherits all facets from the currently selected data type.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Converts paragraphs that start with a hyphen (-), a plus sign (+), or an asterisk (*) directly followed by a space or a tab, to bulleted lists. This option only works on paragraphs that are formatted with the \"Default\", \"Text Body\", or \"Text Body Indent\" paragraph styles. To change the bullet style that is used, select this option, and then click <emph>Edit</emph>.</caseinline></switchinline>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id4071779\n"
+"06040100.xhp\n"
+"hd_id3151019\n"
+"66\n"
"help.text"
-msgid "The following lists all facets that are valid for data types. Some facets are only available for some data types."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Combine single line paragraphs if length greater than ...</caseinline></switchinline>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id4313791\n"
+"06040100.xhp\n"
+"par_id3154162\n"
+"67\n"
"help.text"
-msgid "Whitespaces"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Combines consecutive single-line paragraphs into a single paragraph. This option only works on paragraphs that use the \"Default\" paragraph style. If a paragraph is longer than the specified length value, the paragraph is combined with the next paragraph. To enter a different length value, select the option, and then click <link href=\"text/swriter/01/05150104.xhp\"><emph>Edit</emph></link>.</caseinline></switchinline>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id4331797\n"
+"06040100.xhp\n"
+"par_id1218200910244459\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies how whitespaces are to be handled when a string of the current data type is being processed. Possible values are Preserve, Replace, and Collapse. The semantics follow the definition at http://www.w3.org/TR/xmlschema-2/#rf-whiteSpace.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Modifies the selected AutoCorrect option.</ahelp>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id4191717\n"
+"06040100.xhp\n"
+"hd_id3144749\n"
+"75\n"
"help.text"
-msgid "Pattern"
-msgstr "Model"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Edit</caseinline></switchinline>"
+msgstr ""
-#: xformsdatatab.xhp
+#: 06040100.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id2318796\n"
+"06040100.xhp\n"
+"par_id3153841\n"
+"76\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies a regular expression pattern. Strings validated against the data type must conform to this pattern to be valid. The XSD data type syntax for regular expressions is different from the regular expression syntax used elseswhere in %PRODUCTNAME, for example in the Find & Replace dialog.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOFMT_APPLY:PB_EDIT\">Modifies the selected AutoCorrect option.</ahelp></caseinline></switchinline>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id399182\n"
+"06040200.xhp\n"
+"tit\n"
"help.text"
-msgid "Digits (total)"
-msgstr "Gjerësi Totale"
+msgid "Replace"
+msgstr "Zëvendëso"
-#: xformsdatatab.xhp
+#: 06040200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id5298318\n"
+"06040200.xhp\n"
+"bm_id3152876\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the maximum total number of digits that values of the decimal data type can have.</ahelp>"
+msgid "<bookmark_value>AutoCorrect function; replacement table</bookmark_value><bookmark_value>replacement table</bookmark_value><bookmark_value>replacing; AutoCorrect function</bookmark_value><bookmark_value>text; replacing with format</bookmark_value><bookmark_value>frames; AutoCorrect function</bookmark_value><bookmark_value>pictures; inserting automatically</bookmark_value><bookmark_value>AutoCorrect function; pictures and frames</bookmark_value>"
msgstr ""
-#: xformsdatatab.xhp
-msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id7588732\n"
-"help.text"
-msgid "Digits (fraction)"
-msgstr "Shiriti i thyesës"
-
-#: xformsdatatab.xhp
+#: 06040200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id95828\n"
+"06040200.xhp\n"
+"hd_id3152876\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the maximum total number of fractional digits that values of the decimal data type can have.</ahelp>"
+msgid "<link href=\"text/shared/01/06040200.xhp\" name=\"Replace\">Replace</link>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id3496200\n"
+"06040200.xhp\n"
+"par_id3151262\n"
+"2\n"
"help.text"
-msgid "Max. (inclusive)"
-msgstr "Vlerë maks."
+msgid "<ahelp hid=\"cui/ui/acorreplacepage/AcorReplacePage\">Edits the replacement table for automatically correcting or replacing words or abbreviations in your document.</ahelp>"
+msgstr ""
-#: xformsdatatab.xhp
+#: 06040200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id7599108\n"
+"06040200.xhp\n"
+"par_id3149999\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies an inclusive upper bound for values.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To enable the replacement table, choose <emph>Tools - AutoCorrect Options</emph>, click the<emph> Options</emph> tab, and then select<emph> Use replacement table</emph>. To use the replacement table while you type, choose <emph>Format - AutoCorrect - While Typing</emph>. </caseinline></switchinline>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id888698\n"
+"06040200.xhp\n"
+"hd_id3155321\n"
+"3\n"
"help.text"
-msgid "Max. (exclusive)"
-msgstr "Vlerë maks."
+msgid "Replacement table"
+msgstr "Përdor tabelën zëvendësuese"
-#: xformsdatatab.xhp
+#: 06040200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id3394573\n"
+"06040200.xhp\n"
+"par_id3152945\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies an exclusive upper bound for values.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/acorreplacepage/tabview\">Lists the entries for automatically replacing words or abbreviations while you type. To add an entry, enter text in the <emph>Replace </emph>and <emph>With </emph>boxes, and then click <emph>New</emph>. To edit an entry, select it, change the text in the <emph>With</emph> box, and then click <emph>Replace</emph>. To delete an entry, select it, and then click <emph>Delete</emph>.</ahelp>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id7594225\n"
+"06040200.xhp\n"
+"par_id3153349\n"
+"14\n"
"help.text"
-msgid "Min. (inclusive)"
-msgstr "Lartësia min.:"
+msgid "You can use the AutoCorrect feature to apply a specific character format to a word or abbreviation. Select the formatted text in your document, open this dialog, clear the <emph>Text only</emph> box, and then enter the text that you want to replace in the<emph> Replace</emph> box."
+msgstr ""
-#: xformsdatatab.xhp
+#: 06040200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id8147221\n"
+"06040200.xhp\n"
+"par_id3154173\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies an inclusive lower bound for values.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">You can also include frames, graphics, and OLE objects in an AutoCorrect entry, so long as they are anchored <emph>as characters</emph> in the text. Select the frame, graphic or OLE object and at least one text character in front of and behind the object. Open this dialog, type a name for this AutoCorrect entry in the <emph>Replace </emph>box, and then click <emph>New</emph>. </caseinline></switchinline>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id5081637\n"
+"06040200.xhp\n"
+"hd_id3148943\n"
+"5\n"
"help.text"
-msgid "Min. (exclusive)"
-msgstr "Lartësia min.:"
+msgid "Replace"
+msgstr "Zëvendëso"
-#: xformsdatatab.xhp
+#: 06040200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id9759514\n"
+"06040200.xhp\n"
+"par_id3147560\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies an exclusive lower bound for values.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/acorreplacepage/origtext\">Enter the word or abbreviation that you want to replace while you type.</ahelp>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id1614429\n"
+"06040200.xhp\n"
+"hd_id3148947\n"
+"7\n"
"help.text"
-msgid "Length"
-msgstr "Gjatësi"
+msgid "With:"
+msgstr "me"
-#: xformsdatatab.xhp
+#: 06040200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id1589098\n"
+"06040200.xhp\n"
+"par_id3149456\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the number of characters for a string.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/acorreplacepage/newtext\">Enter the replacement text, graphic, frame, or OLE object that you want to replace the text in the<emph> Replace</emph> box. If you have selected text, a graphic, a frame, or an OLE object in your document, the relevant information is already entered here.</ahelp>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id1278420\n"
+"06040200.xhp\n"
+"hd_id3150400\n"
+"9\n"
"help.text"
-msgid "Length (at least)"
-msgstr "Gjerësia (më së paku)"
+msgid "Text only"
+msgstr "I ri (vetëm tekst)"
-#: xformsdatatab.xhp
+#: 06040200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id8746910\n"
+"06040200.xhp\n"
+"par_id3153379\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the minimum number of characters for a string.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/acorreplacepage/textonly\">Saves the entry in the <emph>With</emph> box without formatting. When the replacement is made, the text uses the same format as the document text.</ahelp>"
msgstr ""
-#: xformsdatatab.xhp
+#: 06040200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"hd_id9636524\n"
+"06040200.xhp\n"
+"hd_id3153797\n"
+"11\n"
"help.text"
-msgid "Length (at most)"
-msgstr "Pikat në fund"
+msgid "New"
+msgstr "E re"
-#: xformsdatatab.xhp
+#: 06040200.xhp
msgctxt ""
-"xformsdatatab.xhp\n"
-"par_id5675527\n"
+"06040200.xhp\n"
+"par_id3153968\n"
+"12\n"
"help.text"
-msgid "<ahelp hid=\".\">Specifies the maximum number of characters for a string.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/acorreplacepage/new\">Adds or replaces an entry in the replacement table.</ahelp>"
msgstr ""
-#: xformsdataname.xhp
+#: 06040300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
+"06040300.xhp\n"
"tit\n"
"help.text"
-msgid "Form Namespaces"
-msgstr "Edito hapësirat e emrave"
+msgid "Exceptions"
+msgstr ""
-#: xformsdataname.xhp
+#: 06040300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"bm_id8286080\n"
+"06040300.xhp\n"
+"hd_id3150278\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>deleting;namespaces in XForms</bookmark_value><bookmark_value>organizing;namespaces in XForms</bookmark_value><bookmark_value>namespace organization in XForms</bookmark_value><bookmark_value>XForms;adding/editing/deleting/organizing namespaces</bookmark_value>"
+msgid "<link href=\"text/shared/01/06040300.xhp\" name=\"Exceptions\">Exceptions</link>"
msgstr ""
-#: xformsdataname.xhp
+#: 06040300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN1053E\n"
+"06040300.xhp\n"
+"par_id3152876\n"
+"2\n"
"help.text"
-msgid "Form Namespaces"
-msgstr "Edito hapësirat e emrave"
+msgid "<ahelp hid=\"cui/ui/acorexceptpage/AcorExceptPage\">Specify the abbreviations or letter combinations that you do not want $[officename] to correct automatically.</ahelp>"
+msgstr ""
-#: xformsdataname.xhp
+#: 06040300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN10542\n"
+"06040300.xhp\n"
+"par_id3154926\n"
+"17\n"
"help.text"
-msgid "<ahelp hid=\".\">Use this dialog to organize namespaces. You can access this dialog through the Add Condition dialog of the Data Navigator.</ahelp>"
+msgid "The exceptions that you define depend on the current language setting. If you want, you can change the language setting by selecting a different language in the <emph>Replacements and exceptions for language</emph> box."
msgstr ""
-#: xformsdataname.xhp
+#: 06040300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN10561\n"
+"06040300.xhp\n"
+"hd_id3149205\n"
+"15\n"
"help.text"
-msgid "Namespaces"
-msgstr "Hapësirat e emrit"
+msgid "Replacements and exceptions for language:"
+msgstr ""
-#: xformsdataname.xhp
+#: 06040300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN10565\n"
+"06040300.xhp\n"
+"par_id3156027\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\".\">Lists the currently defined namespaces for the form.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/autocorrectdialog/lang\">Select the language for which you want to create or edit the replacement rules.</ahelp> $[officename] first searches for exceptions that are defined for the language at the current cursor position in the document, and then searches the remaining languages."
msgstr ""
-#: xformsdataname.xhp
+#: 06040300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN10568\n"
+"06040300.xhp\n"
+"hd_id3153681\n"
+"3\n"
"help.text"
-msgid "Add"
-msgstr "Shto"
+msgid "Abbreviations (no subsequent capital)"
+msgstr ""
-#: xformsdataname.xhp
+#: 06040300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN1056C\n"
+"06040300.xhp\n"
+"par_id3156410\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Adds a new namespace to the list.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/acorexceptpage/abbrev\">Type an abbreviation followed by a period, and then click <emph>New</emph>. This prevents $[officename] from automatically capitalizing the first letter of the word that comes after the period at the end of the abbreviation.</ahelp>"
msgstr ""
-#: xformsdataname.xhp
+#: 06040300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN1056F\n"
+"06040300.xhp\n"
+"par_id3149751\n"
+"13\n"
"help.text"
-msgid "Use the <emph>Add Namespace</emph> dialog to enter the Prefix and URL."
+msgid "<ahelp hid=\"cui/ui/acorexceptpage/abbrevlist\">Lists the abbreviations that are not automatically corrected.</ahelp> To remove an item from the list, select the item, and then click <emph>Delete</emph>."
msgstr ""
-#: xformsdataname.xhp
+#: 06040300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN10576\n"
+"06040300.xhp\n"
+"hd_id3151110\n"
+"6\n"
"help.text"
-msgid "Edit"
-msgstr "Edito"
+msgid "Words with TWo INitial CApitals"
+msgstr "Korrigjo DY SHKronjat e PAra të mëdha"
-#: xformsdataname.xhp
+#: 06040300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN1057A\n"
+"06040300.xhp\n"
+"par_id3154749\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\".\">Edits the selected namespace.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/acorexceptpage/double\">Type the word or abbreviation that starts with two capital letters that you do not want $[officename] to change to one initial capital. For example, enter PC to prevent $[officename] from changing PC to Pc.</ahelp>"
msgstr ""
-#: xformsdataname.xhp
+#: 06040300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN1057D\n"
+"06040300.xhp\n"
+"par_id3143271\n"
+"14\n"
"help.text"
-msgid "Use the <emph>Edit Namespace</emph> dialog to edit the Prefix and URL."
+msgid "<ahelp hid=\"cui/ui/acorexceptpage/doublelist\">Lists the words or abbreviations that start with two initial capitals that are not automatically corrected. All words which start with two capital letters are listed in the field.</ahelp> To remove an item from the list, select the item, and then click <emph>Delete</emph>."
msgstr ""
-#: xformsdataname.xhp
+#: 06040300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN10584\n"
+"06040300.xhp\n"
+"hd_id3155503\n"
+"8\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "New"
+msgstr "E re"
-#: xformsdataname.xhp
+#: 06040300.xhp
msgctxt ""
-"xformsdataname.xhp\n"
-"par_idN10588\n"
+"06040300.xhp\n"
+"par_id3147573\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\".\">Deletes the selected namespace.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/acorexceptpage/newdouble\">Adds the current entry to the list of exceptions.</ahelp>"
msgstr ""
-#: 02230400.xhp
-msgctxt ""
-"02230400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Accept or reject changes"
-msgstr "Prano ose Refuzo ndryshimet"
-
-#: 02230400.xhp
+#: 06040300.xhp
msgctxt ""
-"02230400.xhp\n"
-"hd_id3145138\n"
-"1\n"
+"06040300.xhp\n"
+"hd_id3149762\n"
+"10\n"
"help.text"
-msgid "Accept or reject changes"
-msgstr "Prano ose Refuzo ndryshimet"
+msgid "AutoInclude"
+msgstr ""
-#: 02230400.xhp
+#: 06040300.xhp
msgctxt ""
-"02230400.xhp\n"
-"par_id3147240\n"
-"2\n"
+"06040300.xhp\n"
+"par_id3155829\n"
+"11\n"
"help.text"
-msgid "<variable id=\"redlining\"><ahelp hid=\".uno:AcceptChanges\" visibility=\"visible\">Accept or reject recorded changes.</ahelp></variable>"
+msgid "<ahelp hid=\"cui/ui/acorexceptpage/autodouble\">Automatically adds abbreviations or words that start with two capital letters to the corresponding list of exceptions. This feature only works if the <emph>Correct TWo INitial CApitals</emph> option or the Capitalize<emph> first letter of every sentence</emph> option are selected in the <emph>[T]</emph> column on<link href=\"text/shared/01/06040100.xhp\" name=\"Options\"><emph>Options</emph></link> tab of this dialog. </ahelp>"
msgstr ""
-#: 05230500.xhp
+#: 06040400.xhp
msgctxt ""
-"05230500.xhp\n"
+"06040400.xhp\n"
"tit\n"
"help.text"
-msgid "Callout"
-msgstr "Thirrje"
+msgid "Localized Options"
+msgstr ""
-#: 05230500.xhp
+#: 06040400.xhp
msgctxt ""
-"05230500.xhp\n"
-"bm_id3149038\n"
+"06040400.xhp\n"
+"bm_id3153899\n"
"help.text"
-msgid "<bookmark_value>legends; draw objects</bookmark_value><bookmark_value>draw objects; legends</bookmark_value><bookmark_value>labels;for draw objects</bookmark_value><bookmark_value>labels, see also names/callouts</bookmark_value><bookmark_value>captions, see also labels/callouts</bookmark_value><bookmark_value>names, see also labels/callouts</bookmark_value>"
+msgid "<bookmark_value>quotes; custom</bookmark_value><bookmark_value>custom quotes</bookmark_value><bookmark_value>AutoCorrect function; quotes</bookmark_value><bookmark_value>replacing;ordinal numbers</bookmark_value><bookmark_value>ordinal numbers;replacing</bookmark_value>"
msgstr ""
-#: 05230500.xhp
+#: 06040400.xhp
msgctxt ""
-"05230500.xhp\n"
-"hd_id3149038\n"
-"1\n"
+"06040400.xhp\n"
+"hd_id3153899\n"
+"15\n"
"help.text"
-msgid "<link href=\"text/shared/01/05230500.xhp\" name=\"Callout\">Callout</link>"
+msgid "<link href=\"text/shared/01/06040400.xhp\" name=\"Localized Options\">Localized Options</link>"
msgstr ""
-#: 05230500.xhp
+#: 06040400.xhp
msgctxt ""
-"05230500.xhp\n"
-"par_id3155069\n"
-"2\n"
+"06040400.xhp\n"
+"par_id3149748\n"
+"16\n"
"help.text"
-msgid "Specify the properties of the selected callout."
+msgid "Specify the AutoCorrect options for quotation marks and for options that are specific to the language of the text."
msgstr ""
-#: 05230500.xhp
+#: 06040400.xhp
msgctxt ""
-"05230500.xhp\n"
-"par_id368358\n"
+"06040400.xhp\n"
+"par_id31537173\n"
"help.text"
-msgid "These callouts are a legacy of the first versions of %PRODUCTNAME. You must customize a toolbar or menu to insert these callouts. The newer custom shape callouts offer more features, for example a Callouts toolbar <image id=\"img_id3154508\" src=\"cmd/sc_calloutshapes.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Icon</alt></image> where you can select the shape."
+msgid "<ahelp hid=\".\">Select to apply the replacements while you type [T], or when you modify existing text [M].</ahelp>"
msgstr ""
-#: 05230500.xhp
+#: 06040400.xhp
msgctxt ""
-"05230500.xhp\n"
-"hd_id3151330\n"
-"3\n"
+"06040400.xhp\n"
+"hd_id3159300\n"
+"25\n"
"help.text"
-msgid "Callout Styles"
-msgstr "Stilet e grafikave"
+msgid "Add non breaking space before specific punctuation marks in French text"
+msgstr ""
-#: 05230500.xhp
+#: 06040400.xhp
msgctxt ""
-"05230500.xhp\n"
-"par_id3149760\n"
-"4\n"
+"06040400.xhp\n"
+"par_id3153173\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"HID_CAPTION_CTL_TYPE\">Click the <emph>Callout</emph> style that you want to apply to the selected callout.</ahelp>"
+msgid "Inserts a non breaking space before \";\", \"!\", \"?\" and \":\" when the character language is set to French (France, Belgium, Luxembourg, Monaco, or Switzerland) and before \":\" only when the character language is set to French (Canada)."
msgstr ""
-#: 05230500.xhp
+#: 06040400.xhp
msgctxt ""
-"05230500.xhp\n"
-"hd_id3149798\n"
-"5\n"
+"06040400.xhp\n"
+"hd_id3159400\n"
+"25\n"
"help.text"
-msgid "Spacing"
-msgstr "Hapësira"
+msgid "Format ordinal number suffixes (1st ... 1<sup>st</sup>)"
+msgstr ""
-#: 05230500.xhp
+#: 06040400.xhp
msgctxt ""
-"05230500.xhp\n"
-"par_id3147399\n"
-"6\n"
+"06040400.xhp\n"
+"par_id3154173\n"
+"27\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_CAPTION:MF_ABSTAND\">Enter the amount of space that you want to leave between the end of the callout line, and the callout box.</ahelp>"
+msgid "Formats the text characters of ordinals, such as 1st, 2nd, or 3rd, as superscripts. For example, in English text, 1st will be converted to 1<sup>st</sup>."
msgstr ""
-#: 05230500.xhp
+#: 06040400.xhp
msgctxt ""
-"05230500.xhp\n"
-"hd_id3151226\n"
-"7\n"
+"06040400.xhp\n"
+"hd_id3154682\n"
+"17\n"
"help.text"
-msgid "Extension"
-msgstr "Ekstenzioni:"
+msgid "Single quotes / Double quotes"
+msgstr "Shigjetë e dyfishtë majtas"
-#: 05230500.xhp
+#: 06040400.xhp
msgctxt ""
-"05230500.xhp\n"
-"par_id3148620\n"
-"8\n"
+"06040400.xhp\n"
+"par_id3152363\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_CAPTION:LB_ANSATZ_REL\">Select where you want to extend the callout line from, in relation to the callout box.</ahelp>"
+msgid "Specify the replacement characters to use for single or double quotation marks."
msgstr ""
-#: 05230500.xhp
+#: 06040400.xhp
msgctxt ""
-"05230500.xhp\n"
-"hd_id3153311\n"
-"9\n"
+"06040400.xhp\n"
+"hd_id3156553\n"
+"22\n"
"help.text"
-msgid "Length"
-msgstr "Gjatësi"
+msgid "Replace"
+msgstr "Zëvendëso"
-#: 05230500.xhp
+#: 06040400.xhp
msgctxt ""
-"05230500.xhp\n"
-"par_id3145313\n"
-"10\n"
+"06040400.xhp\n"
+"par_id3155616\n"
+"23\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_CAPTION:MF_LAENGE\">Enter the length of the callout line segment that extends from the callout box to the inflection point of the line.</ahelp>"
+msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_QUOTE:CB_TYPO\">Automatically replaces the default system symbol for single quotation marks with the special character that you specify.</ahelp>"
msgstr ""
-#: 05230500.xhp
+#: 06040400.xhp
msgctxt ""
-"05230500.xhp\n"
-"par_id3159269\n"
+"06040400.xhp\n"
+"hd_id3153750\n"
"11\n"
"help.text"
-msgid "The <emph>Length </emph>box is only available if you select the <emph>Angled connector line</emph> callout style, and leave the <emph>Optimal </emph>checkbox cleared."
-msgstr ""
+msgid "Start quote"
+msgstr "Numërimi 1 Fillimi"
-#: 05230500.xhp
+#: 06040400.xhp
msgctxt ""
-"05230500.xhp\n"
-"hd_id3149820\n"
+"06040400.xhp\n"
+"par_id3152425\n"
"12\n"
"help.text"
-msgid "Optimal"
-msgstr "Optimale"
+msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STARTQUOTE\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current opening quotation mark in your document when you choose <emph>Format - AutoCorrect - Apply</emph>.</ahelp>"
+msgstr ""
-#: 05230500.xhp
+#: 06040400.xhp
msgctxt ""
-"05230500.xhp\n"
-"par_id3147210\n"
+"06040400.xhp\n"
+"hd_id3159233\n"
"13\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_CAPTION:CB_LAENGE\">Click here to display a single-angled line in an optimal way.</ahelp>"
+msgid "End quote"
+msgstr "Numrimi 1 Fundi"
+
+#: 06040400.xhp
+msgctxt ""
+"06040400.xhp\n"
+"par_id3147008\n"
+"14\n"
+"help.text"
+msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_ENDQUOTE\">Select the <link href=\"text/shared/01/04100000.xhp\" name=\"special character\">special character</link> that will automatically replace the current closing quotation mark in your document when you choose <emph>Format - AutoCorrect - Apply</emph>.</ahelp>"
+msgstr ""
+
+#: 06040400.xhp
+msgctxt ""
+"06040400.xhp\n"
+"hd_id3147089\n"
+"19\n"
+"help.text"
+msgid "Default"
+msgstr "Standarde"
+
+#: 06040400.xhp
+msgctxt ""
+"06040400.xhp\n"
+"par_id3166460\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_QUOTE:PB_SGL_STD\">Resets the quotation marks to the default symbols.</ahelp>"
msgstr ""
#: 06040500.xhp
@@ -33968,1954 +35490,1470 @@ msgctxt ""
msgid "<ahelp hid=\"HID_LINGU_PARA_LANGUAGE\">Changes the language setting for the paragraph that contains the highlighted word, if the word is found in another dictionary.</ahelp>"
msgstr ""
-#: 05240100.xhp
+#: 06040600.xhp
msgctxt ""
-"05240100.xhp\n"
+"06040600.xhp\n"
"tit\n"
"help.text"
-msgid "Vertically"
-msgstr "Vertikalisht"
+msgid "Word Completion"
+msgstr "Zgjedh fjalën"
-#: 05240100.xhp
+#: 06040600.xhp
msgctxt ""
-"05240100.xhp\n"
-"hd_id3146959\n"
-"1\n"
+"06040600.xhp\n"
+"hd_id3148882\n"
+"92\n"
"help.text"
-msgid "<link href=\"text/shared/01/05240100.xhp\" name=\"Vertically\">Vertically</link>"
+msgid "<link href=\"text/shared/01/06040600.xhp\" name=\"Word Completion\">Word Completion</link>"
msgstr ""
-#: 05240100.xhp
+#: 06040600.xhp
msgctxt ""
-"05240100.xhp\n"
-"par_id3149741\n"
-"2\n"
+"06040600.xhp\n"
+"par_id3153624\n"
+"93\n"
"help.text"
-msgid "<ahelp hid=\".uno:MirrorVert\">Flips the selected object(s) vertically from top to bottom.</ahelp>"
+msgid "Set the options for completing frequently occurring words while you type."
msgstr ""
-#: 05340400.xhp
-msgctxt ""
-"05340400.xhp\n"
-"tit\n"
-"help.text"
-msgid "Data Sources"
-msgstr "Burimet e të dhënave"
-
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"bm_id3153116\n"
+"06040600.xhp\n"
+"hd_id3154514\n"
+"94\n"
"help.text"
-msgid "<bookmark_value>data source browser</bookmark_value><bookmark_value>tables in databases;browsing and editing</bookmark_value><bookmark_value>databases; editing tables</bookmark_value><bookmark_value>editing; database tables and queries</bookmark_value><bookmark_value>queries; editing in data source view</bookmark_value>"
-msgstr ""
+msgid "Enable word completion"
+msgstr "Tek fjala djathtas"
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"hd_id3153323\n"
-"68\n"
+"06040600.xhp\n"
+"par_id3156153\n"
+"95\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340400.xhp\" name=\"Data Sources\">Data Sources</link>"
+msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_ACTIV\">Stores frequently used words, and automatically completes a word after you type three letters that match the first three letters of a stored word.</ahelp>"
msgstr ""
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3149511\n"
-"2\n"
+"06040600.xhp\n"
+"hd_id3150978\n"
+"100\n"
"help.text"
-msgid "This section contains information on browsing and editing database tables."
-msgstr ""
+msgid "Append space"
+msgstr "Hapësirë e barabartë"
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3149150\n"
-"51\n"
+"06040600.xhp\n"
+"par_id3153700\n"
+"101\n"
"help.text"
-msgid "You cannot use the data source browser on a database table that is open in Design view."
+msgid "<ahelp hid=\"OFFMGR_CHECKBOX_RID_OFAPAGE_AUTOCOMPLETE_OPTIONS_CB_APPEND_SPACE\">If you do not add punctuation after the word, $[officename] adds a space.</ahelp> The space is added as soon as you begin typing the next word."
msgstr ""
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"hd_id3149235\n"
-"8\n"
+"06040600.xhp\n"
+"hd_id3150771\n"
+"102\n"
"help.text"
-msgid "Data source browser"
-msgstr "Lidhja me burimin e të dhënave"
+msgid "Show as tip"
+msgstr "Eksporto si PDF..."
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3154897\n"
-"9\n"
+"06040600.xhp\n"
+"par_id3149819\n"
+"103\n"
"help.text"
-msgid "<ahelp hid=\".\">The commands for the data source browser are found on the <link href=\"text/shared/01/05340400.xhp\" name=\"Database Bar\">Table Data bar</link> and in <link href=\"text/shared/01/05340400.xhp\" name=\"context menus\">context menus</link>.</ahelp>"
+msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_AS_TIP\">Displays the completed word as a Help Tip.</ahelp>"
msgstr ""
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"hd_id3154514\n"
-"12\n"
+"06040600.xhp\n"
+"hd_id3154046\n"
+"96\n"
"help.text"
-msgid "Selecting records"
-msgstr "Regjistrimet e zgjedhur"
+msgid "Collect words"
+msgstr "Numri i Fjalëve:"
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3149514\n"
-"34\n"
+"06040600.xhp\n"
+"par_id3155449\n"
+"97\n"
"help.text"
-msgid "To select a record in a database table, click the row header, or click a row header, and then use the Up or Down arrow keys."
+msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:CB_COLLECT\">Adds the frequently used words to a list. To remove a word from the Word Completion list, select the word, and then click<emph> Delete Entry</emph>.</ahelp>"
msgstr ""
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id7812433001\n"
+"06040600.xhp\n"
+"hd_id3156193\n"
+"98\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select database records. Drag-and-drop rows or cells to the document to insert contents. Drag-and-drop column headers to insert fields.</ahelp>"
+msgid "When closing a document, remove the words collected from it from the list"
msgstr ""
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3149578\n"
-"13\n"
+"06040600.xhp\n"
+"par_id3158430\n"
+"99\n"
"help.text"
-msgid "The following table describes how to select individual elements in the data source browser:"
+msgid "<ahelp hid=\"OFFMGR_CHECKBOX_RID_OFAPAGE_AUTOCOMPLETE_OPTIONS_CB_KEEP_LIST\">When enabled, the list gets cleared when closing the current document. When disabled, makes the current Word Completion list available to other documents after you close the current document. The list remains available until you exit %PRODUCTNAME.</ahelp>"
msgstr ""
-#: 05340400.xhp
-msgctxt ""
-"05340400.xhp\n"
-"par_id3158432\n"
-"66\n"
-"help.text"
-msgid "Selection"
-msgstr "Selektimet"
-
-#: 05340400.xhp
-msgctxt ""
-"05340400.xhp\n"
-"par_id3150670\n"
-"67\n"
-"help.text"
-msgid "Action"
-msgstr "Veprim"
-
-#: 05340400.xhp
-msgctxt ""
-"05340400.xhp\n"
-"par_id3153332\n"
-"14\n"
-"help.text"
-msgid "Record"
-msgstr "Shënim"
-
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3153700\n"
-"15\n"
+"06040600.xhp\n"
+"hd_id3149580\n"
+"104\n"
"help.text"
-msgid "Click the row header"
-msgstr "Përsërite kreun"
+msgid "Accept with"
+msgstr "Me vizim"
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3149575\n"
-"16\n"
+"06040600.xhp\n"
+"par_id3153061\n"
+"105\n"
"help.text"
-msgid "Several records or removing a selection"
+msgid "<ahelp hid=\"OFFMGR:LISTBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:DCB_EXPAND_KEY\">Select the key that you want to use to accept the automatic word completion.</ahelp>"
msgstr ""
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3149295\n"
-"17\n"
+"06040600.xhp\n"
+"par_idN106F8\n"
"help.text"
-msgid "Hold down <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> and click the row header"
+msgid "Press Esc to decline the word completion."
msgstr ""
-#: 05340400.xhp
-msgctxt ""
-"05340400.xhp\n"
-"par_id3152360\n"
-"18\n"
-"help.text"
-msgid "Column"
-msgstr "Kolonë"
-
-#: 05340400.xhp
-msgctxt ""
-"05340400.xhp\n"
-"par_id3153960\n"
-"19\n"
-"help.text"
-msgid "Click the column header"
-msgstr "Përsërite kreun"
-
-#: 05340400.xhp
-msgctxt ""
-"05340400.xhp\n"
-"par_id3150541\n"
-"20\n"
-"help.text"
-msgid "Data field"
-msgstr "Fusha e të dhënave"
-
-#: 05340400.xhp
-msgctxt ""
-"05340400.xhp\n"
-"par_id3150358\n"
-"21\n"
-"help.text"
-msgid "Click in the data field"
-msgstr "Të dhëna të Adresës - Fusha e Caktuar"
-
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3154366\n"
-"22\n"
+"06040600.xhp\n"
+"hd_id3151245\n"
+"84\n"
"help.text"
-msgid "Entire table"
-msgstr "Ndryshimet ndikojnë në tërë tabelën"
+msgid "Min. word length"
+msgstr "Gjatësia minimale e fjalës"
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3156422\n"
-"23\n"
+"06040600.xhp\n"
+"par_id3145609\n"
+"85\n"
"help.text"
-msgid "Click the row header of the column headings"
+msgid "<ahelp hid=\"OFFMGR:NUMERICFIELD:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:NF_MIN_WORDLEN\">Enter the minimum word length for a word to become eligible for the word completion feature.</ahelp>"
msgstr ""
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"hd_id3154822\n"
-"49\n"
+"06040600.xhp\n"
+"hd_id3154758\n"
+"86\n"
"help.text"
-msgid "Table Data toolbar (editing table data)"
-msgstr "Burimi i të Dhënave si Tabelë"
+msgid "Max. entries"
+msgstr "AutoCapitalize hyrjet"
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3151041\n"
+"06040600.xhp\n"
+"par_id3159414\n"
+"87\n"
"help.text"
-msgid "<image id=\"img_id3150740\" src=\"cmd/sc_editdoc.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150740\">Icon</alt></image>"
+msgid "<ahelp hid=\"OFFMGR:NUMERICFIELD:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:NF_MAX_ENTRIES\">Enter the maximum number of words that you want to store in the Word Completion list.</ahelp>"
msgstr ""
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3158410\n"
-"7\n"
+"06040600.xhp\n"
+"hd_id3147265\n"
+"106\n"
"help.text"
-msgid "Allows you to edit, add, or delete records from the database table."
-msgstr ""
+msgid "Word Completion list"
+msgstr "Zgjedhni listën e adresave"
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"hd_id3152463\n"
-"53\n"
+"06040600.xhp\n"
+"par_id3152773\n"
+"107\n"
"help.text"
-msgid "Cutting, copying and pasting data"
+msgid "<ahelp hid=\"OFFMGR:MULTILISTBOX:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:LB_ENTRIES\">Lists the collected words. The list is valid until you close the current document. To make the list available to other documents in the current session, disable \"When closing a document, remove the words collected from it from the list\".</ahelp>"
msgstr ""
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3149287\n"
-"54\n"
+"06040600.xhp\n"
+"par_id3156423\n"
+"112\n"
"help.text"
-msgid "You can cut, copy, and paste records in <emph>Data Source</emph> view. The Data Source browser also supports the dragging and dropping of records, or text and numbers from other $[officename] files."
+msgid "If the automatic spellcheck option is enabled, only the words that are recognized by the spellcheck are collected."
msgstr ""
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3146921\n"
-"64\n"
+"06040600.xhp\n"
+"hd_id3144434\n"
+"110\n"
"help.text"
-msgid "You cannot drag and drop to Yes/No, binary, image, or counting table fields."
-msgstr ""
+msgid "Delete Entry"
+msgstr "Fshij hyrjen e indeksit"
-#: 05340400.xhp
+#: 06040600.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3149064\n"
-"63\n"
+"06040600.xhp\n"
+"par_id3153351\n"
+"111\n"
"help.text"
-msgid "Drag and drop only works in <emph>Edit</emph> mode."
+msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCOMPLETE_OPTIONS:PB_ENTRIES\">Removes the selected word or words from the Word Completion list.</ahelp>"
msgstr ""
-#: 05340400.xhp
+#: 06040700.xhp
msgctxt ""
-"05340400.xhp\n"
-"hd_id3147295\n"
-"24\n"
+"06040700.xhp\n"
+"tit\n"
"help.text"
-msgid "Navigating in the Data Source Browser"
-msgstr "~Burimi i të dhënave i regjistruar në %PRODUCTNAME"
+msgid "Smart Tags"
+msgstr "Fillo në"
-#: 05340400.xhp
+#: 06040700.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3152598\n"
-"25\n"
+"06040700.xhp\n"
+"bm_id9057588\n"
"help.text"
-msgid "Use the Form Navigation bar at the bottom of the Data Source view to navigate between different records."
+msgid "<bookmark_value>smart tag configuration</bookmark_value>"
msgstr ""
-#: 05340400.xhp
+#: 06040700.xhp
msgctxt ""
-"05340400.xhp\n"
-"hd_id3145263\n"
-"35\n"
+"06040700.xhp\n"
+"hd_id3563951\n"
"help.text"
-msgid "First record"
-msgstr "Shënimi i parë"
+msgid "Smart Tags"
+msgstr "Fillo në"
-#: 05340400.xhp
+#: 06040700.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3149266\n"
+"06040700.xhp\n"
+"par_id1827448\n"
"help.text"
-msgid "<image id=\"img_id3156060\" src=\"cmd/sc_firstrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156060\">Icon</alt></image>"
+msgid "<ahelp hid=\".\">When you have installed at least one Smart Tag extension, you see the Smart Tags page.</ahelp>"
msgstr ""
-#: 05340400.xhp
+#: 06040700.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3151173\n"
-"36\n"
+"06040700.xhp\n"
+"hd_id686666\n"
"help.text"
-msgid "<ahelp hid=\".\">Go to the first record in the table.</ahelp>"
+msgid "Label text with smart tags"
msgstr ""
-#: 05340400.xhp
+#: 06040700.xhp
msgctxt ""
-"05340400.xhp\n"
-"hd_id3149417\n"
-"37\n"
+"06040700.xhp\n"
+"par_id3259376\n"
"help.text"
-msgid "Previous record"
-msgstr "Shënimi i kaluar"
+msgid "<ahelp hid=\".\">Enables Smart Tags to be evaluated and shown in your text document.</ahelp>"
+msgstr ""
-#: 05340400.xhp
+#: 06040700.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3147484\n"
+"06040700.xhp\n"
+"hd_id4024170\n"
"help.text"
-msgid "<image id=\"img_id3156736\" src=\"cmd/sc_prevrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156736\">Icon</alt></image>"
+msgid "Currently installed smart tags"
msgstr ""
-#: 05340400.xhp
+#: 06040700.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3153280\n"
-"38\n"
+"06040700.xhp\n"
+"par_id2847071\n"
"help.text"
-msgid "<ahelp hid=\".\">Go to the previous record in the table.</ahelp>"
+msgid "<ahelp hid=\".\">Displays all installed Smart Tags. To configure a Smart Tag, select the name of the Smart Tag, then click Properties. Not all Smart Tags can be configured.</ahelp>"
msgstr ""
-#: 05340400.xhp
+#: 06040700.xhp
msgctxt ""
-"05340400.xhp\n"
-"hd_id3153053\n"
-"39\n"
+"06040700.xhp\n"
+"hd_id8424329\n"
"help.text"
-msgid "Record number"
-msgstr "Numri i regjistrimit"
+msgid "Properties"
+msgstr "Vetitë"
-#: 05340400.xhp
+#: 06040700.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3155851\n"
-"40\n"
+"06040700.xhp\n"
+"par_id3912167\n"
"help.text"
-msgid "<ahelp hid=\".\">Type the number of the record that you want to display, and then press Enter.</ahelp>"
+msgid "<ahelp hid=\".\">To configure a Smart Tag, select the name of the Smart Tag, then click Properties. Not all Smart Tags can be configured.</ahelp>"
msgstr ""
-#: 05340400.xhp
+#: 06050000.xhp
msgctxt ""
-"05340400.xhp\n"
-"hd_id3157876\n"
-"41\n"
+"06050000.xhp\n"
+"tit\n"
"help.text"
-msgid "Next record"
-msgstr "Regjistrim tjetër"
+msgid "Bullets and Numbering"
+msgstr "Pikat dhe numërimi"
-#: 05340400.xhp
+#: 06050000.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3151075\n"
+"06050000.xhp\n"
+"hd_id3149551\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3153214\" src=\"cmd/sc_nextrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153214\">Icon</alt></image>"
+msgid "<link href=\"text/shared/01/06050000.xhp\" name=\"Numbering/Bullets\">Bullets and Numbering</link>"
msgstr ""
-#: 05340400.xhp
+#: 06050000.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3166414\n"
-"42\n"
+"06050000.xhp\n"
+"par_id3150146\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Go to the next record in the table.</ahelp>"
+msgid "<variable id=\"numauftext\"><ahelp hid=\".uno:BulletsAndNumberingDial\">Adds numbering or bullets to the current paragraph, and lets you edit format of the numbering or bullets.</ahelp></variable>"
msgstr ""
-#: 05340400.xhp
+#: 06050000.xhp
msgctxt ""
-"05340400.xhp\n"
-"hd_id3154015\n"
-"43\n"
+"06050000.xhp\n"
+"par_id3145211\n"
+"3\n"
"help.text"
-msgid "Last record"
-msgstr "Shënimi i fundit"
+msgid "The <emph>Bullets and Numbering</emph> dialog has the following tabs:"
+msgstr ""
-#: 05340400.xhp
+#: 06050000.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3153838\n"
+"06050000.xhp\n"
+"hd_id3154984\n"
+"27\n"
"help.text"
-msgid "<image id=\"img_id3156320\" src=\"cmd/sc_lastrecord.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156320\">Icon</alt></image>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Remove </caseinline></switchinline>"
msgstr ""
-#: 05340400.xhp
+#: 06050000.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3147175\n"
-"44\n"
+"06050000.xhp\n"
+"par_id3153031\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\".\">Go to the last record in the table.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"HID_NUM_RESET\">Removes the numbering or bullets from the current paragraph or from the selected paragraphs.</ahelp></caseinline></switchinline>"
msgstr ""
-#: 05340400.xhp
+#: 06050100.xhp
msgctxt ""
-"05340400.xhp\n"
-"hd_id3145162\n"
-"45\n"
+"06050100.xhp\n"
+"tit\n"
"help.text"
-msgid "New record"
-msgstr "Shënim i ri"
+msgid "Bullets"
+msgstr "Pikat"
-#: 05340400.xhp
+#: 06050100.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3151019\n"
+"06050100.xhp\n"
+"bm_id3150502\n"
"help.text"
-msgid "<image id=\"img_id3154636\" src=\"svtools/res/ed03.png\" width=\"0.1528inch\" height=\"0.1528inch\"><alt id=\"alt_id3154636\">Icon</alt></image>"
+msgid "<bookmark_value>bullets;paragraphs</bookmark_value> <bookmark_value>paragraphs; inserting bullets</bookmark_value> <bookmark_value>inserting; paragraph bullets</bookmark_value>"
msgstr ""
-#: 05340400.xhp
+#: 06050100.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3146913\n"
-"46\n"
+"06050100.xhp\n"
+"hd_id3150502\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">Inserts a new record into the current table.</ahelp> To create a record, click the asterisk (*) button at the bottom of the table view. An empty row is added at the end of the table."
+msgid "<link href=\"text/shared/01/06050100.xhp\" name=\"Bullets\">Bullets</link>"
msgstr ""
-#: 05340400.xhp
-msgctxt ""
-"05340400.xhp\n"
-"hd_id3150656\n"
-"47\n"
-"help.text"
-msgid "Number of records"
-msgstr "Numri total i shënimeve"
-
-#: 05340400.xhp
+#: 06050100.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3148483\n"
-"48\n"
+"06050100.xhp\n"
+"par_id3155069\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the number of records. For example, \"Record 7 of 9(2)\" indicates that two records (2) are selected in a table containing 9 records, and that the cursor is in record number 7.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the different bullet styles that you can apply.</ahelp>"
msgstr ""
-#: 05340400.xhp
-msgctxt ""
-"05340400.xhp\n"
-"hd_id3151357\n"
-"26\n"
-"help.text"
-msgid "Organizing tables"
-msgstr "Indeksi i tabelave"
-
-#: 05340400.xhp
+#: 06050100.xhp
msgctxt ""
-"05340400.xhp\n"
-"par_id3153357\n"
-"28\n"
+"06050100.xhp\n"
+"par_id0202200910514673\n"
"help.text"
-msgid "To access the commands for formatting the table, right-click a column header, or a row header."
+msgid "Bullets and Numbering of paragraphs is supported only in Writer, Impress and Draw."
msgstr ""
-#: 05340400.xhp
+#: 06050100.xhp
msgctxt ""
-"05340400.xhp\n"
-"hd_id3148405\n"
+"06050100.xhp\n"
+"hd_id3153255\n"
"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340402.xhp\" name=\"Table Format\">Table Format</link>"
-msgstr ""
+msgid "Selection"
+msgstr "Selektimet"
-#: 05340400.xhp
+#: 06050100.xhp
msgctxt ""
-"05340400.xhp\n"
-"hd_id3083283\n"
+"06050100.xhp\n"
+"par_id3155364\n"
"4\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340100.xhp\" name=\"Row Height\">Row Height</link>"
+msgid "<ahelp hid=\"hid/cui/ui/pickbulletpage/valueset\">Click the bullet style that you want to use.</ahelp>"
msgstr ""
-#: 05340400.xhp
+#: 06050100.xhp
msgctxt ""
-"05340400.xhp\n"
-"hd_id3150321\n"
-"5\n"
+"06050100.xhp\n"
+"par_id3149549\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340405.xhp\" name=\"Column Format\">Column Format</link>"
+msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position tab (Numbering/Bullets dialog)\">Position tab (Bullets and Numbering dialog)</link>"
msgstr ""
-#: 05340400.xhp
+#: 06050100.xhp
msgctxt ""
-"05340400.xhp\n"
-"hd_id3147341\n"
-"6\n"
+"06050100.xhp\n"
+"par_id3154317\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340200.xhp\" name=\"Column Width\">Column Width</link>"
+msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Options tab (Bullets and Numbering dialog)</link>"
msgstr ""
-#: 05350300.xhp
+#: 06050200.xhp
msgctxt ""
-"05350300.xhp\n"
+"06050200.xhp\n"
"tit\n"
"help.text"
-msgid "Shading"
-msgstr "Hijezimi"
+msgid "Numbering Style"
+msgstr "Stili i numërimit"
-#: 05350300.xhp
+#: 06050200.xhp
msgctxt ""
-"05350300.xhp\n"
-"hd_id3148919\n"
+"06050200.xhp\n"
+"hd_id3146807\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05350300.xhp\" name=\"Shading\">Shading</link>"
+msgid "<link href=\"text/shared/01/06050200.xhp\" name=\"Numbering Style\">Numbering</link>"
msgstr ""
-#: 05350300.xhp
+#: 06050200.xhp
msgctxt ""
-"05350300.xhp\n"
-"par_id3150008\n"
+"06050200.xhp\n"
+"par_id3148765\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_REPRESENTATION\">Sets the shading and shadow options for the selected 3D object.</ahelp>"
-msgstr ""
-
-#: 05350300.xhp
-msgctxt ""
-"05350300.xhp\n"
-"hd_id3109847\n"
-"4\n"
-"help.text"
-msgid "Shading"
-msgstr "Hijezimi"
-
-#: 05350300.xhp
-msgctxt ""
-"05350300.xhp\n"
-"par_id3148538\n"
-"5\n"
-"help.text"
-msgid "Specify the type of shading to apply to the selected 3D object."
+msgid "<ahelp hid=\".\">Displays the different numbering styles that you can apply.</ahelp>"
msgstr ""
-#: 05350300.xhp
+#: 06050200.xhp
msgctxt ""
-"05350300.xhp\n"
-"hd_id3147276\n"
-"6\n"
+"06050200.xhp\n"
+"hd_id3147000\n"
+"3\n"
"help.text"
-msgid "Mode"
-msgstr "Modi"
+msgid "Selection"
+msgstr "Selektimet"
-#: 05350300.xhp
+#: 06050200.xhp
msgctxt ""
-"05350300.xhp\n"
-"par_id3155583\n"
-"7\n"
+"06050200.xhp\n"
+"par_id3151100\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXFLOAT_3D:LB_SHADEMODE\">Select the shading method that you want to use. Flat shading assigns a single color to a single polygon on the surface of the object. Gouraud shading blends colors across the polygons. Phong shading averages the color of each pixel based on the pixels that surround it, and requires the most processing power.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/picknumberingpage/valueset\">Click the numbering style that you want to use.</ahelp>"
msgstr ""
-#: 05350300.xhp
-msgctxt ""
-"05350300.xhp\n"
-"hd_id3150466\n"
-"8\n"
-"help.text"
-msgid "Shadow"
-msgstr "Hije"
-
-#: 05350300.xhp
+#: 06050200.xhp
msgctxt ""
-"05350300.xhp\n"
-"par_id3154046\n"
-"9\n"
+"06050200.xhp\n"
+"par_id3149355\n"
"help.text"
-msgid "<ahelp hid=\"SVX:IMAGEBUTTON:RID_SVXFLOAT_3D:BTN_SHADOW_3D\">Adds or removes a shadow from the selected 3D object.</ahelp>"
+msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position tab (Numbering/Bullets dialog)\">Position tab (Bullets and Numbering dialog)</link>"
msgstr ""
-#: 05350300.xhp
+#: 06050200.xhp
msgctxt ""
-"05350300.xhp\n"
-"par_id3150254\n"
+"06050200.xhp\n"
+"par_id3152918\n"
"help.text"
-msgid "<image id=\"img_id3159342\" src=\"svx/res/shadow3d.png\" width=\"0.1661inch\" height=\"0.1661inch\"><alt id=\"alt_id3159342\">Icon</alt></image>"
+msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Options tab (Bullets and Numbering dialog)</link>"
msgstr ""
-#: 05350300.xhp
-msgctxt ""
-"05350300.xhp\n"
-"par_id3149796\n"
-"10\n"
-"help.text"
-msgid "3D Shadowing On/Off"
-msgstr "Hijezimi 3D Kyqyr/Ç'kyqur"
-
-#: 05350300.xhp
+#: 06050300.xhp
msgctxt ""
-"05350300.xhp\n"
-"hd_id3156153\n"
-"11\n"
+"06050300.xhp\n"
+"tit\n"
"help.text"
-msgid "Surface angle"
-msgstr "Kontrolli i këndit"
+msgid "Outline"
+msgstr "Konturë"
-#: 05350300.xhp
+#: 06050300.xhp
msgctxt ""
-"05350300.xhp\n"
-"par_id3150976\n"
-"12\n"
+"06050300.xhp\n"
+"hd_id3147543\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_SLANT\">Enter an angle from 0 to 90 degrees for casting the shadow.</ahelp>"
+msgid "<link href=\"text/shared/01/06050300.xhp\" name=\"Outline\">Outline</link>"
msgstr ""
-#: 05350300.xhp
-msgctxt ""
-"05350300.xhp\n"
-"hd_id3154905\n"
-"13\n"
-"help.text"
-msgid "Camera"
-msgstr "Kamera"
-
-#: 05350300.xhp
+#: 06050300.xhp
msgctxt ""
-"05350300.xhp\n"
-"par_id3161459\n"
-"14\n"
+"06050300.xhp\n"
+"par_id3146936\n"
+"2\n"
"help.text"
-msgid "Set the camera options for the selected 3D object."
+msgid "<ahelp hid=\".\">Displays the different styles that you can apply to a hierarchical list. $[officename] supports up to nine outline levels in a list hierarchy.</ahelp>"
msgstr ""
-#: 05350300.xhp
+#: 06050300.xhp
msgctxt ""
-"05350300.xhp\n"
-"hd_id3148943\n"
-"15\n"
+"06050300.xhp\n"
+"hd_id3147000\n"
+"3\n"
"help.text"
-msgid "Distance"
-msgstr "Distancë"
+msgid "Selection"
+msgstr "Selektimet"
-#: 05350300.xhp
+#: 06050300.xhp
msgctxt ""
-"05350300.xhp\n"
-"par_id3149047\n"
-"16\n"
+"06050300.xhp\n"
+"par_id3155934\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_DISTANCE\">Enter the distance to leave between the camera and the center of the selected object.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/pickoutlinepage/valueset\">Click the outline style that you want to use.</ahelp>"
msgstr ""
-#: 05350300.xhp
+#: 06050300.xhp
msgctxt ""
-"05350300.xhp\n"
-"hd_id3154346\n"
-"17\n"
+"06050300.xhp\n"
+"par_id3144436\n"
"help.text"
-msgid "Focal length"
-msgstr "Gjatësia fokale"
+msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position tab (Numbering/Bullets dialog)\">Position tab (Bullets and Numbering dialog)</link>"
+msgstr ""
-#: 05350300.xhp
+#: 06050300.xhp
msgctxt ""
-"05350300.xhp\n"
-"par_id3156344\n"
-"18\n"
+"06050300.xhp\n"
+"par_id3153935\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXFLOAT_3D:MTR_FOCAL_LENGTH\">Enter the focal length of the camera, where a small value corresponds to a \"fisheye\" lens, and a large value to a telephoto lens.</ahelp>"
+msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Options tab (Bullets and Numbering dialog)</link>"
msgstr ""
-#: 06140100.xhp
+#: 06050400.xhp
msgctxt ""
-"06140100.xhp\n"
+"06050400.xhp\n"
"tit\n"
"help.text"
-msgid "Menu"
-msgstr "Meny"
+msgid "Graphics"
+msgstr "Grafikat"
-#: 06140100.xhp
+#: 06050400.xhp
msgctxt ""
-"06140100.xhp\n"
-"bm_id900601\n"
+"06050400.xhp\n"
+"hd_id0611200904373284\n"
"help.text"
-msgid "<bookmark_value>editing;menus</bookmark_value><bookmark_value>customizing;menus</bookmark_value><bookmark_value>menus;customizing</bookmark_value>"
+msgid "<link href=\"text/shared/01/06050400.xhp\" name=\"Graphics\">Graphics</link>"
msgstr ""
-#: 06140100.xhp
+#: 06050400.xhp
msgctxt ""
-"06140100.xhp\n"
-"hd_id3153008\n"
-"1\n"
+"06050400.xhp\n"
+"par_id0611200904373226\n"
"help.text"
-msgid "<link href=\"text/shared/01/06140100.xhp\" name=\"Menu\">Menu</link>"
+msgid "<ahelp hid=\".\">Displays the different graphics that you can use as bullets in a bulleted list.</ahelp>"
msgstr ""
-#: 06140100.xhp
+#: 06050400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_id3152952\n"
-"2\n"
+"06050400.xhp\n"
+"hd_id0611200904361573\n"
"help.text"
-msgid "<ahelp hid=\"HID_CONFIG_MENU\">Customizes and saves current menu layouts as well as creates new menus. You cannot customize context menus.</ahelp>"
-msgstr ""
+msgid "Selection"
+msgstr "Selektimet"
-#: 06140100.xhp
+#: 06050400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_id3146873\n"
-"72\n"
+"06050400.xhp\n"
+"par_id061120090436150\n"
"help.text"
-msgid "You can add new commands, modify existing commands, or rearrange the menu items."
+msgid "<ahelp hid=\".\">Click the graphics that you want to use as bullets.</ahelp>"
msgstr ""
-#: 06140100.xhp
+#: 06050400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN1069B\n"
+"06050400.xhp\n"
+"hd_id061120090436157\n"
"help.text"
-msgid "Menu"
-msgstr "Meny"
+msgid "Link graphics"
+msgstr "Grafikat e lidhura"
-#: 06140100.xhp
+#: 06050400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN1069F\n"
+"06050400.xhp\n"
+"par_id0611200904361575\n"
"help.text"
-msgid "<ahelp hid=\"705498935\">Select the menu and submenu that you want to edit.</ahelp>"
+msgid "<ahelp hid=\".\">If enabled, the graphics are inserted as links. If not enabled, the graphics are embedded into the document.</ahelp>"
msgstr ""
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN106B0\n"
-"help.text"
-msgid "New"
-msgstr "E re"
-
-#: 06140100.xhp
+#: 06050400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106B4\n"
+"06050400.xhp\n"
+"par_id061120090437338\n"
"help.text"
-msgid "<ahelp hid=\"705499960\">Opens the <link href=\"text/shared/01/06140101.xhp\">New Menu</link> dialog where you can enter the name of a new menu as well as select the location for the menu.</ahelp>"
+msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position tab (Numbering/Bullets dialog)\">Position tab (Bullets and Numbering dialog)</link>"
msgstr ""
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN106B7\n"
-"help.text"
-msgid "Menu"
-msgstr "Meny"
-
-#: 06140100.xhp
+#: 06050400.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106BB\n"
+"06050400.xhp\n"
+"par_id0611200904373391\n"
"help.text"
-msgid "<ahelp hid=\"705507642\">Opens a submenu with additional commands.</ahelp>"
+msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options tab (Numbering/Bullets dialog)\">Options tab (Bullets and Numbering dialog)</link>"
msgstr ""
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106BE\n"
+"06050500.xhp\n"
+"tit\n"
"help.text"
-msgid "Move"
-msgstr "Lëvize"
+msgid "Options"
+msgstr "Opcionet"
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106C2\n"
+"06050500.xhp\n"
+"bm_id4096499\n"
"help.text"
-msgid "Opens the <link href=\"text/shared/01/06140102.xhp\">Move Menu</link> dialog where you can specify the location of the selected menu."
+msgid "<bookmark_value>numbering;options</bookmark_value> <bookmark_value>bullet lists; formatting options</bookmark_value> <bookmark_value>font sizes;bullets</bookmark_value>"
msgstr ""
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN106C5\n"
-"help.text"
-msgid "Rename"
-msgstr "Riemëro"
-
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106C9\n"
+"06050500.xhp\n"
+"hd_id3147240\n"
+"1\n"
"help.text"
-msgid "Opens a dialog where you can change the name of the selected menu."
+msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options\">Options</link>"
msgstr ""
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN1071C\n"
-"help.text"
-msgid "New name"
-msgstr "Emri i ri"
-
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN1071F\n"
-"help.text"
-msgid "Enter the new name for the selected menu."
-msgstr "Ju lutem jepe një emër për shkallëzimin e ri:"
-
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106CC\n"
+"06050500.xhp\n"
+"par_id3147212\n"
+"2\n"
"help.text"
-msgid "To specify the keyboard accelerator for a menu"
+msgid "Sets the formatting options for numbered or bulleted lists. If you want, you can apply formatting to individual levels in the list hierarchy."
msgstr ""
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN108C6\n"
+"06050500.xhp\n"
+"hd_id3155069\n"
+"6\n"
"help.text"
-msgid "A keyboard accelerator allows you to select a menu command when you press Alt+ an underlined letter in a menu command. For example, to select the <emph>Save All</emph> command by pressing Alt+V, enter Sa~ve All."
-msgstr ""
+msgid "Format"
+msgstr "Formati"
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106D0\n"
+"06050500.xhp\n"
+"par_id3153255\n"
+"61\n"
"help.text"
-msgid "Select a menu or menu entry."
-msgstr "Zgjedh një komandë apo kliko për të zgjedhur temën."
+msgid "Select the level(s) that you want to modify, and then specify the formatting that you want to use."
+msgstr ""
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN108DC\n"
+"06050500.xhp\n"
+"hd_id3153089\n"
+"4\n"
"help.text"
-msgid "Click the <emph>Menu</emph> button and select <emph>Rename</emph>."
-msgstr ""
+msgid "Level"
+msgstr "Nivel"
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN108E8\n"
+"06050500.xhp\n"
+"par_id3153935\n"
+"5\n"
"help.text"
-msgid "Add a tilde (~) in front of the letter that you want to use as an accelerator."
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/levell\">Select the level(s) that you want to define the formatting options for.</ahelp> The selected level is highlighted in the preview."
msgstr ""
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106F9\n"
+"06050500.xhp\n"
+"hd_id3159201\n"
+"9\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "Numbering"
+msgstr "Numërimi"
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN106FD\n"
+"06050500.xhp\n"
+"par_id3147261\n"
+"10\n"
"help.text"
-msgid "Deletes the selected menu or menu entry."
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/numfmtlb\">Select a numbering style for the selected levels.</ahelp>"
msgstr ""
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN10910\n"
+"06050500.xhp\n"
+"par_id3148548\n"
+"62\n"
"help.text"
-msgid "You can only delete custom menus and custom menu entries."
-msgstr ""
+msgid "Selection"
+msgstr "Selektimet"
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"hd_id3154408\n"
-"5\n"
+"06050500.xhp\n"
+"par_id3155391\n"
+"63\n"
"help.text"
-msgid "Entries"
-msgstr "Hyrjet"
+msgid "Description"
+msgstr "Përshkrimi"
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_id3150999\n"
-"6\n"
+"06050500.xhp\n"
+"par_id3156426\n"
+"72\n"
"help.text"
-msgid "<ahelp hid=\"HID_MENUCONFIG_LISTBOX\">Displays a list of the available menu commands for the selected menu in the current application or document.</ahelp>"
-msgstr ""
+msgid "1, 2, 3, ..."
+msgstr "1, 2, 3, ..."
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_id3150838\n"
-"39\n"
+"06050500.xhp\n"
+"par_id3156410\n"
+"73\n"
"help.text"
-msgid "To rearrange the order of menu entries, select an entry, and then click the up or down arrow button."
+msgid "Arabic numerals"
msgstr ""
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"hd_id3147620\n"
-"63\n"
-"help.text"
-msgid "Arrow Up"
-msgstr "Shigjeta lartë"
-
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_id3153585\n"
+"06050500.xhp\n"
+"par_id3150693\n"
"64\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_IMAGEBUTTON_TP_CONFIG_MENU_BTN_MN_UP\">Moves the selected item up one position.</ahelp>"
-msgstr ""
-
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_id3150119\n"
-"help.text"
-msgid "<image id=\"img_id3156192\" src=\"dbaccess/res/sortup.png\" width=\"0.2083inch\" height=\"0.222inch\"><alt id=\"alt_id3156192\">Icon</alt></image>"
-msgstr ""
+msgid "A, B, C, ..."
+msgstr "A, B, C, ..."
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_id3153331\n"
+"06050500.xhp\n"
+"par_id3156347\n"
"65\n"
"help.text"
-msgid "Arrow Up"
-msgstr "Shigjeta lartë"
+msgid "Capital letters"
+msgstr "Fjalë me shkronja të mëdha"
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"hd_id3155388\n"
+"06050500.xhp\n"
+"par_id3154749\n"
"66\n"
"help.text"
-msgid "Arrow Down"
-msgstr "Shigjeta poshtë"
+msgid "a, b, c, ..."
+msgstr "a, b, c, ..."
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_id3147335\n"
+"06050500.xhp\n"
+"par_id3156327\n"
"67\n"
"help.text"
-msgid "<ahelp hid=\"SFX2_IMAGEBUTTON_TP_CONFIG_MENU_BTN_MN_DOWN\">Moves the selected item down one position.</ahelp>"
-msgstr ""
-
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_id3148943\n"
-"help.text"
-msgid "<image id=\"img_id3145609\" src=\"dbaccess/res/sortdown.png\" width=\"0.1563inch\" height=\"0.1665inch\"><alt id=\"alt_id3145609\">Icon</alt></image>"
-msgstr ""
+msgid "Lowercase letters"
+msgstr "shkronjë e madhe/vogël"
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_id3149295\n"
+"06050500.xhp\n"
+"par_id3143271\n"
"68\n"
"help.text"
-msgid "Arrow Down"
-msgstr "Shigjeta poshtë"
-
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN107EA\n"
-"help.text"
-msgid "Add Commands"
-msgstr "Shto elementin"
-
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN107EE\n"
-"help.text"
-msgid "<ahelp hid=\".\">Opens the Add Commands dialog. Select any command, then click <emph>Add</emph> or drag-and-drop the command into the <emph>Customize</emph> dialog box.</ahelp>"
-msgstr ""
-
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN40723\n"
-"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select any command, then click <emph>Add</emph> or drag-and-drop the command into the <emph>Customize</emph> dialog box.</ahelp>"
-msgstr ""
-
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN107F9\n"
-"help.text"
-msgid "Command"
-msgstr "Komanda"
-
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN107FD\n"
-"help.text"
-msgid "<ahelp hid=\"705507646\">Opens a menu that contains additional commands.</ahelp>"
-msgstr ""
-
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN10800\n"
-"help.text"
-msgid "Add Submenu"
-msgstr "Shto elementin"
-
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN10804\n"
-"help.text"
-msgid "Opens the Add Submenu dialog, where you enter the name of a submenu."
-msgstr ""
-
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN10807\n"
-"help.text"
-msgid "Begin Group"
-msgstr "Emri i grupit"
-
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN1080B\n"
-"help.text"
-msgid "Inserts a separator line under the current menu entry."
-msgstr ""
-
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN1080E\n"
-"help.text"
-msgid "Rename"
-msgstr "Riemëro"
-
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN10812\n"
-"help.text"
-msgid "Opens the <emph>Rename</emph> dialog, where you enter a new name for the selected command."
-msgstr "Ju lutem jepe një emër për shkallëzimin e ri:"
-
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN108CA\n"
-"help.text"
-msgid "New name"
-msgstr "Emri i ri"
-
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN108CD\n"
-"help.text"
-msgid "Enter the new name for the selected command."
-msgstr "Ju lutem jepe një emër për shkallëzimin e ri:"
-
-#: 06140100.xhp
-msgctxt ""
-"06140100.xhp\n"
-"par_idN10824\n"
-"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "I, II, III, ..."
+msgstr "I, II, III, ..."
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN10828\n"
+"06050500.xhp\n"
+"par_id3154143\n"
+"69\n"
"help.text"
-msgid "Deletes the selected command."
-msgstr "Zgjidh njw linjw tw komandws"
+msgid "Roman numerals (uppercase)"
+msgstr "Kontrollo fjalët me shkronja të mëdha"
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN10918\n"
+"06050500.xhp\n"
+"par_id3148474\n"
+"70\n"
"help.text"
-msgid "Save In"
-msgstr "Ruaje macron nw"
+msgid "i, ii, iii, ..."
+msgstr "i, ii, iii, ..."
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN1091C\n"
+"06050500.xhp\n"
+"par_id3159344\n"
+"71\n"
"help.text"
-msgid "<ahelp hid=\"705498948\">Select the application or open document where you want to add the menu.</ahelp> A separate menu configuration is saved for the item that you select."
-msgstr ""
+msgid "Roman numerals (lowercase)"
+msgstr "Romak (I II III)"
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN10AFB\n"
+"06050500.xhp\n"
+"par_id3149580\n"
+"100\n"
"help.text"
-msgid "To edit a menu configuration that is associated with an item in the list, select the item, make the changes that you want, and then click the <emph>OK</emph> button."
-msgstr ""
+msgid "A,... AA,... AAA,..."
+msgstr "A, .., AA, .., AAA, ..."
-#: 06140100.xhp
+#: 06050500.xhp
msgctxt ""
-"06140100.xhp\n"
-"par_idN10922\n"
+"06050500.xhp\n"
+"par_id3154579\n"
+"101\n"
"help.text"
-msgid "You cannot load a menu configuration from one location and save the configuration to another location."
+msgid "Alphabetical numbering with uppercase letters"
msgstr ""
-#: 05050000.xhp
+#: 06050500.xhp
msgctxt ""
-"05050000.xhp\n"
-"tit\n"
+"06050500.xhp\n"
+"par_id3147620\n"
+"102\n"
"help.text"
-msgid "Change Case"
-msgstr "~Ndrysho shkronjat"
+msgid "a,... aa,... aaa,..."
+msgstr "A, .., AA, .., AAA, ..."
-#: 05050000.xhp
+#: 06050500.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3152952\n"
-"1\n"
+"06050500.xhp\n"
+"par_id3159167\n"
+"103\n"
"help.text"
-msgid "<link href=\"text/shared/01/05050000.xhp\" name=\"Change Case\">Change Case</link>"
+msgid "Alphabetical numbering with lowercase letters"
msgstr ""
-#: 05050000.xhp
+#: 06050500.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3151299\n"
-"2\n"
+"06050500.xhp\n"
+"par_id3153062\n"
+"76\n"
"help.text"
-msgid "<ahelp hid=\".\">Changes the case of characters in the selection. If the cursor is within a word and no text is selected, then the word is the selection.</ahelp>"
-msgstr ""
+msgid "Bullet"
+msgstr "Pikë"
-#: 05050000.xhp
+#: 06050500.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3147572\n"
-"5\n"
+"06050500.xhp\n"
+"par_id3145085\n"
+"77\n"
"help.text"
-msgid "Sentence case"
+msgid "Adds a bullet to the beginning of a line. Select this option, and then click the <emph>Character</emph> button to choose a bullet style."
msgstr ""
-#: 05050000.xhp
+#: 06050500.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3150694\n"
-"6\n"
+"06050500.xhp\n"
+"par_id3154758\n"
+"94\n"
"help.text"
-msgid "<ahelp hid=\".\">Changes the first letter of the selected western characters to an uppercase character.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Bullets are resized to fit the current line height. If you want, you can define a Character Style that uses a different font size for bullets. </caseinline></switchinline>"
msgstr ""
-#: 05050000.xhp
-msgctxt ""
-"05050000.xhp\n"
-"hd_id3147571\n"
-"5\n"
-"help.text"
-msgid "lowercase"
-msgstr "Shkronjë e vogël"
-
-#: 05050000.xhp
+#: 06050500.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3150693\n"
-"6\n"
+"06050500.xhp\n"
+"par_id3152811\n"
+"79\n"
"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToLower\">Changes the selected western characters to lowercase characters.</ahelp>"
-msgstr ""
+msgid "Graphics"
+msgstr "Grafikat"
-#: 05050000.xhp
+#: 06050500.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3147143\n"
-"3\n"
+"06050500.xhp\n"
+"par_id3157817\n"
+"80\n"
"help.text"
-msgid "UPPERCASE"
+msgid "Displays an image for the bullet. Select this option, and then click <emph>Select</emph> to locate the image file that you want to use. The image gets embedded into the document."
msgstr ""
-#: 05050000.xhp
+#: 06050500.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3152372\n"
-"4\n"
+"06050500.xhp\n"
+"par_id3149649\n"
+"110\n"
"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToUpper\">Changes the selected western characters to uppercase characters.</ahelp>"
-msgstr ""
+msgid "Linked graphics"
+msgstr "Grafikat e lidhura"
-#: 05050000.xhp
+#: 06050500.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3147511\n"
-"5\n"
+"06050500.xhp\n"
+"par_id3151210\n"
+"111\n"
"help.text"
-msgid "Capitalize Every Word"
+msgid "Displays an image for the bullet. Select this option, and then click <emph>Select</emph> to locate the image file that you want to use. The image gets inserted as a link to the image file."
msgstr ""
-#: 05050000.xhp
+#: 06050500.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3150613\n"
-"6\n"
+"06050500.xhp\n"
+"par_id3148452\n"
+"74\n"
"help.text"
-msgid "<ahelp hid=\".\">Changes the first character of every word of the selected western characters to an uppercase character.</ahelp>"
-msgstr ""
+msgid "None"
+msgstr "Asnjë"
-#: 05050000.xhp
+#: 06050500.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3147521\n"
-"5\n"
+"06050500.xhp\n"
+"par_id3149167\n"
+"75\n"
"help.text"
-msgid "tOGGLE cASE"
-msgstr ""
+msgid "Does not apply a numbering style."
+msgstr "Ky Stil nuk ekziston."
-#: 05050000.xhp
+#: 06050500.xhp
msgctxt ""
-"05050000.xhp\n"
-"par_id3150623\n"
-"6\n"
+"06050500.xhp\n"
+"par_id3145746\n"
+"95\n"
"help.text"
-msgid "<ahelp hid=\".\">Toggles case of all selected western characters.</ahelp>"
+msgid "The availability of the following fields depends on the style that you select in the <emph>Numbering </emph>box."
msgstr ""
-#: 05050000.xhp
+#: 06050500.xhp
msgctxt ""
-"05050000.xhp\n"
-"hd_id3155392\n"
+"06050500.xhp\n"
+"hd_id3156293\n"
"7\n"
"help.text"
-msgid "Half-width"
-msgstr "Gjysmë-gjerësia"
-
-#: 05050000.xhp
-msgctxt ""
-"05050000.xhp\n"
-"par_id3147088\n"
-"8\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToHalfWidth\">Changes the selected Asian characters to half-width characters.</ahelp>"
-msgstr ""
-
-#: 05050000.xhp
-msgctxt ""
-"05050000.xhp\n"
-"hd_id3156113\n"
-"9\n"
-"help.text"
-msgid "Full Width"
-msgstr "Gjerësia e plotë"
-
-#: 05050000.xhp
-msgctxt ""
-"05050000.xhp\n"
-"par_id3154749\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToFullWidth\">Changes the selected Asian characters to full width characters.</ahelp>"
-msgstr ""
-
-#: 05050000.xhp
-msgctxt ""
-"05050000.xhp\n"
-"hd_id3152996\n"
-"11\n"
-"help.text"
-msgid "Hiragana"
-msgstr "Hiragana"
-
-#: 05050000.xhp
-msgctxt ""
-"05050000.xhp\n"
-"par_id3156156\n"
-"12\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToHiragana\">Changes the selected Asian characters to Hiragana characters.</ahelp>"
-msgstr ""
-
-#: 05050000.xhp
-msgctxt ""
-"05050000.xhp\n"
-"hd_id3154173\n"
-"13\n"
-"help.text"
-msgid "Katakana"
-msgstr "Katakana"
-
-#: 05050000.xhp
-msgctxt ""
-"05050000.xhp\n"
-"par_id3146137\n"
-"14\n"
-"help.text"
-msgid "<ahelp hid=\".uno:ChangeCaseToKatakana\">Changes the selected Asian characters to Katakana characters.</ahelp>"
-msgstr ""
-
-#: 05030300.xhp
-msgctxt ""
-"05030300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Tabs"
-msgstr "Tabet"
-
-#: 05030300.xhp
-msgctxt ""
-"05030300.xhp\n"
-"bm_id3156027\n"
-"help.text"
-msgid "<bookmark_value>formats; tabulators</bookmark_value><bookmark_value>fill characters with tabulators</bookmark_value><bookmark_value>tab stops;settings</bookmark_value>"
-msgstr ""
+msgid "Before"
+msgstr "Përpara"
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3156027\n"
-"1\n"
+"06050500.xhp\n"
+"par_id3150393\n"
+"28\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030300.xhp\" name=\"Tabs\">Tabs</link>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/prefix\">Enter a character or the text to display in front of the number in the list.</ahelp>"
msgstr ""
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3153577\n"
-"2\n"
+"06050500.xhp\n"
+"hd_id3153968\n"
+"78\n"
"help.text"
-msgid "<ahelp hid=\"HID_TABULATOR\">Set the position of a tab stop in a paragraph.</ahelp>"
-msgstr ""
+msgid "After"
+msgstr "Pas"
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3147653\n"
-"40\n"
+"06050500.xhp\n"
+"par_id3150288\n"
+"8\n"
"help.text"
-msgid "If you want, you can also use the ruler to set the tab positions."
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/suffix\">Enter a character or the text to display behind the number in the list. If you want to create a numbered list that uses the style \"1.)\", enter \".)\" in this box.</ahelp>"
msgstr ""
-#: 05030300.xhp
-msgctxt ""
-"05030300.xhp\n"
-"hd_id3154897\n"
-"3\n"
-"help.text"
-msgid "Position"
-msgstr "Pozicion"
-
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3153331\n"
-"4\n"
+"06050500.xhp\n"
+"hd_id3156423\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICBOX:RID_SVXPAGE_TABULATOR:ED_TABPOS\">Select a tab stop type, enter a new measurement, and then click <emph>New</emph>. If you want, you can also specify the measurement units to use for the tab (cm for centimeter, or \" for inches). Existing tabs to the left of the first tab that you set are removed.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Character Styles </caseinline></switchinline>"
msgstr ""
-#: 05030300.xhp
-msgctxt ""
-"05030300.xhp\n"
-"hd_id3155180\n"
-"9\n"
-"help.text"
-msgid "Type"
-msgstr "Tipi"
-
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3149514\n"
-"10\n"
+"06050500.xhp\n"
+"par_id3150495\n"
+"30\n"
"help.text"
-msgid "Select the type of tab stop that you want to modify."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/charstyle\">Select the Character Style that you want to use in the numbered list.</ahelp> To create or edit a <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Character Style</link>, open the <emph>Styles and Formatting</emph> window, click the Character Styles icon, right-click a style, and then choose <emph>New</emph>. </caseinline></switchinline>"
msgstr ""
-#: 05030300.xhp
-msgctxt ""
-"05030300.xhp\n"
-"hd_id3157910\n"
-"11\n"
-"help.text"
-msgid "Left"
-msgstr "Majtas"
-
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3146847\n"
-"41\n"
+"06050500.xhp\n"
+"hd_id3147299\n"
+"31\n"
"help.text"
-msgid "The name of this tab stop is <emph>Left/Top</emph> if Asian language support is enabled."
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Show sublevels </caseinline></switchinline>"
msgstr ""
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3153698\n"
-"12\n"
+"06050500.xhp\n"
+"par_id3152881\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_LEFT\">Aligns the left edge of the text to the tab stop and extends the text to the right.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/sublevels\">Enter the number of previous levels to include in the numbering style. For example, if you enter \"2\" and the previous level uses the \"A, B, C...\" numbering style, the numbering scheme for the current level becomes: \"A.1\".</ahelp></caseinline></switchinline>"
msgstr ""
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3149763\n"
-"13\n"
+"06050500.xhp\n"
+"hd_id3155429\n"
+"33\n"
"help.text"
-msgid "Right"
-msgstr "Djathtas"
+msgid "Start at"
+msgstr "Fillo në"
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3148491\n"
-"42\n"
+"06050500.xhp\n"
+"par_id3146903\n"
+"34\n"
"help.text"
-msgid "This name of this tab stop is <emph>Right/Bottom</emph> if Asian language support is enabled."
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/startat\">Enter a new starting number for the current level.</ahelp>"
msgstr ""
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3151384\n"
-"14\n"
+"06050500.xhp\n"
+"hd_id3145114\n"
+"104\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_RIGHT\">Aligns the right edge of the text to the tab stop and extends the text to the left of the tab stop.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Color </caseinline><caseinline select=\"DRAW\">Color </caseinline></switchinline>"
msgstr ""
-#: 05030300.xhp
-msgctxt ""
-"05030300.xhp\n"
-"hd_id3153628\n"
-"15\n"
-"help.text"
-msgid "Center"
-msgstr "Qendër"
-
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3154347\n"
-"16\n"
+"06050500.xhp\n"
+"par_id3156060\n"
+"105\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_CENTER\">Aligns the center of the text to the tab stop.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"cui/ui/numberingoptionspage/color\">Select a color for the current numbering style.</ahelp></defaultinline></switchinline>"
msgstr ""
-#: 05030300.xhp
-msgctxt ""
-"05030300.xhp\n"
-"hd_id3148552\n"
-"17\n"
-"help.text"
-msgid "Decimal"
-msgstr "Decimale"
-
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3144422\n"
-"18\n"
+"06050500.xhp\n"
+"hd_id3159180\n"
+"107\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_TABTYPE_DECIMAL\">Aligns the decimal point of a number to the center of the tab stop and text to the left of the tab.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Relative size </caseinline><caseinline select=\"DRAW\">Relative size </caseinline></switchinline>"
msgstr ""
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3154388\n"
-"19\n"
+"06050500.xhp\n"
+"par_id3145364\n"
+"108\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"WIN\">The character that is used as a decimal separator depends on the regional setting of your operating system. </caseinline></switchinline>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"cui/ui/numberingoptionspage/relsize\">Enter the amount by which you want to resize the bullet character with respect to the font height of the current paragraph.</ahelp></defaultinline></switchinline>"
msgstr ""
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3153380\n"
-"20\n"
+"06050500.xhp\n"
+"hd_id3147444\n"
+"81\n"
"help.text"
msgid "Character"
msgstr "Karakter"
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3153778\n"
-"21\n"
+"06050500.xhp\n"
+"par_id3153144\n"
+"82\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_TABULATOR:ED_TABTYPE_DECCHAR\">Enter a character that you want the decimal tab to use as a decimal separator.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/bullet\">Opens the <link href=\"text/shared/01/04100000.xhp\" name=\"Special Characters\">Special Characters</link> dialog, where you can select a bullet symbol.</ahelp>"
msgstr ""
-#: 05030300.xhp
-msgctxt ""
-"05030300.xhp\n"
-"hd_id3159151\n"
-"22\n"
-"help.text"
-msgid "Fill Character"
-msgstr "Mbush karakterin"
-
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3154153\n"
-"23\n"
+"06050500.xhp\n"
+"hd_id3147327\n"
+"83\n"
"help.text"
-msgid "Specify the characters to use as leader to the left of the tab stop."
-msgstr ""
+msgid "Options for graphics:"
+msgstr "Shiriti i opcioneve /Grafikat"
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3144760\n"
-"24\n"
+"06050500.xhp\n"
+"hd_id3149934\n"
+"84\n"
"help.text"
-msgid "None"
-msgstr "Asnjë"
+msgid "Select..."
+msgstr "Zgjedh"
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3143231\n"
-"25\n"
+"06050500.xhp\n"
+"par_id3152417\n"
+"85\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_NO\">Inserts no fill characters, or removes existing fill characters to the left of the tab stop.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/bitmap\">Select the graphic, or locate the graphic file that you want to use as a bullet.</ahelp>"
msgstr ""
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3152933\n"
-"26\n"
+"06050500.xhp\n"
+"hd_id3155746\n"
+"86\n"
"help.text"
-msgid "......."
-msgstr ""
+msgid "Width"
+msgstr "Gjerësia"
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3153192\n"
-"27\n"
+"06050500.xhp\n"
+"par_id3146974\n"
+"87\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_POINTS\">Fills the empty space to the left of the tab stop with dots.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/widthmf\">Enter a width for the graphic.</ahelp>"
msgstr ""
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3156280\n"
-"28\n"
+"06050500.xhp\n"
+"hd_id3150487\n"
+"88\n"
"help.text"
-msgid "------"
-msgstr ""
+msgid "Height"
+msgstr "Lartësia"
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3156212\n"
-"29\n"
+"06050500.xhp\n"
+"par_id3154640\n"
+"89\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_DASHLINE\">Fills the empty space to the left of the tab stop with dashes.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/heightmf\">Enter a height for the graphic.</ahelp>"
msgstr ""
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3157960\n"
-"30\n"
+"06050500.xhp\n"
+"hd_id3153740\n"
+"92\n"
"help.text"
-msgid "______"
-msgstr ""
+msgid "Keep ratio"
+msgstr "Mbaje përpjestimin"
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3151043\n"
-"31\n"
+"06050500.xhp\n"
+"par_id3153097\n"
+"93\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_UNDERSCORE\">Draws a line to fill the empty space to the left of the tab stop.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/keepratio\">Maintains the size proportions of the graphic.</ahelp>"
msgstr ""
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3153770\n"
-"32\n"
+"06050500.xhp\n"
+"hd_id3147382\n"
+"90\n"
"help.text"
-msgid "Character"
-msgstr "Karakter"
+msgid "Alignment"
+msgstr "Mbështetje"
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3150441\n"
-"33\n"
+"06050500.xhp\n"
+"par_id3147127\n"
+"91\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TABULATOR:BTN_FILLCHAR_OTHER\">Allows you to specify a character to fill the empty space to the left of the tab stop.</ahelp>"
+msgid "<ahelp hid=\"cui/ui/numberingoptionspage/orientlb\">Select the alignment option for the graphic.</ahelp>"
msgstr ""
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3152596\n"
-"36\n"
+"06050500.xhp\n"
+"hd_id3145596\n"
+"96\n"
"help.text"
-msgid "New"
-msgstr "E re"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">All levels </caseinline></switchinline>"
+msgstr ""
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3163717\n"
-"37\n"
+"06050500.xhp\n"
+"par_id3148455\n"
+"97\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_TABULATOR:BTN_NEW\">Adds the tab stop that you defined to the current paragraph.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Set the numbering options for all of the levels. </caseinline></switchinline>"
msgstr ""
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"hd_id3153945\n"
-"38\n"
+"06050500.xhp\n"
+"hd_id3155852\n"
+"98\n"
"help.text"
-msgid "Clear All"
-msgstr "Prano të gjitha"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Consecutive numbering </caseinline></switchinline>"
+msgstr ""
-#: 05030300.xhp
+#: 06050500.xhp
msgctxt ""
-"05030300.xhp\n"
-"par_id3145660\n"
-"39\n"
+"06050500.xhp\n"
+"par_id3148880\n"
+"99\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_TABULATOR:BTN_DELALL\">Removes all of the tab stops that you defined under <emph>Position</emph>. Sets <emph>Left</emph> tab stops at regular intervals as the default tab stops.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"cui/ui/numberingoptionspage/allsame\">Increases the numbering by one as you go down each level in the list hierarchy.</ahelp></caseinline></switchinline>"
msgstr ""
-#: 02200000.xhp
+#: 06050600.xhp
msgctxt ""
-"02200000.xhp\n"
+"06050600.xhp\n"
"tit\n"
"help.text"
-msgid "Object"
-msgstr "Objekt"
+msgid "Position"
+msgstr "Pozicion"
-#: 02200000.xhp
+#: 06050600.xhp
msgctxt ""
-"02200000.xhp\n"
-"hd_id3146959\n"
+"06050600.xhp\n"
+"hd_id3150467\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200000.xhp\" name=\"Object\">Object</link>"
+msgid "<link href=\"text/shared/01/06050600.xhp\" name=\"Position\">Position</link>"
msgstr ""
-#: 02200000.xhp
+#: 06050600.xhp
msgctxt ""
-"02200000.xhp\n"
-"par_id3154840\n"
+"06050600.xhp\n"
+"par_id3158397\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:ObjectMenue\">Lets you edit a selected object in your file that you inserted with the <emph>Insert - Object </emph>command.</ahelp>"
-msgstr ""
-
-#: 02200000.xhp
-msgctxt ""
-"02200000.xhp\n"
-"par_id3153551\n"
-"help.text"
-msgid "<link href=\"text/shared/01/04150000.xhp\" name=\"Insert - Object\">Insert - Object</link>"
+msgid "Sets the indent, spacing, and alignment options for the numbered or bulleted list."
msgstr ""
-#: 02200000.xhp
+#: 06050600.xhp
msgctxt ""
-"02200000.xhp\n"
-"par_id1717886\n"
+"06050600.xhp\n"
+"par_id5004119\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Resizes the object to the original size.</ahelp>"
+msgid "The Position tab page looks different for documents using the new position and spacing attributes introduced with OpenOffice.org 3.0 (and used in all versions of LibreOffice), or documents using the old attributes from versions before 3.0. The new version of this tab page shows the controls \"Numbering followed by\", \"Numbering alignment\", \"Aligned at\", and \"Indent at\". The old version of this tab page that can be seen in an old numbered or bulleted list shows the controls \"Indent\", \"Width of numbering\", \"Minimum space numbering <-> text\", and \"Numbering alignment\"."
msgstr ""
-#: xformsdatachange.xhp
+#: 06050600.xhp
msgctxt ""
-"xformsdatachange.xhp\n"
-"tit\n"
+"06050600.xhp\n"
+"hd_id3149031\n"
+"3\n"
"help.text"
-msgid "Change Data Binding"
-msgstr "Ndrysho Intervalin e të Dhënave Burimore"
+msgid "Level"
+msgstr "Nivel"
-#: xformsdatachange.xhp
+#: 06050600.xhp
msgctxt ""
-"xformsdatachange.xhp\n"
-"bm_id433973\n"
+"06050600.xhp\n"
+"par_id3155755\n"
+"13\n"
"help.text"
-msgid "<bookmark_value>editing;data binding of XForms</bookmark_value><bookmark_value>data binding change in XForms</bookmark_value>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/levellb\">Select the level(s) that you want to modify.</ahelp>"
msgstr ""
-#: xformsdatachange.xhp
+#: 06050600.xhp
msgctxt ""
-"xformsdatachange.xhp\n"
-"par_idN10547\n"
+"06050600.xhp\n"
+"hd_id6561784\n"
"help.text"
-msgid "Change Data Binding"
-msgstr "Ndrysho Intervalin e të Dhënave Burimore"
+msgid "Numbering followed by"
+msgstr "Numërimi sipas kapitullit"
-#: xformsdatachange.xhp
+#: 06050600.xhp
msgctxt ""
-"xformsdatachange.xhp\n"
-"par_idN1054B\n"
+"06050600.xhp\n"
+"par_id423291\n"
"help.text"
-msgid "<ahelp hid=\".\">Edit the data binding in the XForms Data Navigator.</ahelp>"
+msgid "<ahelp hid=\".\">Select the element that will follow the numbering: a tab stop, a space, or nothing.</ahelp>"
msgstr ""
-#: xformsdatachange.xhp
+#: 06050600.xhp
msgctxt ""
-"xformsdatachange.xhp\n"
-"par_idN1056E\n"
+"06050600.xhp\n"
+"hd_id7809686\n"
"help.text"
-msgid "Model"
-msgstr "Modeli"
+msgid "at"
+msgstr "Në majë"
-#: xformsdatachange.xhp
+#: 06050600.xhp
msgctxt ""
-"xformsdatachange.xhp\n"
-"par_idN10572\n"
+"06050600.xhp\n"
+"par_id8177434\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the name of the XForms model.</ahelp>"
+msgid "<ahelp hid=\".\">If you select a tab stop to follow the numbering, you can enter a non-negative value as the tab stop position.</ahelp>"
msgstr ""
-#: xformsdatachange.xhp
+#: 06050600.xhp
msgctxt ""
-"xformsdatachange.xhp\n"
-"par_idN10587\n"
+"06050600.xhp\n"
+"hd_id3155583\n"
+"5\n"
"help.text"
-msgid "Item list"
-msgstr "Kryerresht i listës"
+msgid "Numbering alignment"
+msgstr "Rreshtim i numërimit"
-#: xformsdatachange.xhp
+#: 06050600.xhp
msgctxt ""
-"xformsdatachange.xhp\n"
-"par_idN1058B\n"
+"06050600.xhp\n"
+"par_id3153063\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the data binding for the selected form control. To change the data binding, select another item in the list click <emph>OK</emph>. To access the <emph>Add</emph> and <emph>Properties</emph> commands for an item, right-click the item.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/numalignlb\">Set the alignment of the numbering symbols. Select \"Left\" to align the numbering symbol to start directly at the \"Aligned at\" position. Select \"Right\" to align the symbol to end directly before the \"Aligned at\" position. Select \"Centered\" to center the symbol around the \"Aligned at\" position.</ahelp>"
msgstr ""
-#: 05190000.xhp
-msgctxt ""
-"05190000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Name"
-msgstr "Emri"
-
-#: 05190000.xhp
+#: 06050600.xhp
msgctxt ""
-"05190000.xhp\n"
-"bm_id3147366\n"
+"06050600.xhp\n"
+"par_id3147422\n"
+"22\n"
"help.text"
-msgid "<bookmark_value>objects; naming</bookmark_value><bookmark_value>groups;naming</bookmark_value><bookmark_value>names;objects</bookmark_value>"
+msgid "The <emph>Numbering alignment</emph> option does not set the alignment of the paragraph."
msgstr ""
-#: 05190000.xhp
-msgctxt ""
-"05190000.xhp\n"
-"hd_id3147366\n"
-"1\n"
-"help.text"
-msgid "Name"
-msgstr "Emri"
-
-#: 05190000.xhp
+#: 06050600.xhp
msgctxt ""
-"05190000.xhp\n"
-"par_id3147588\n"
-"2\n"
+"06050600.xhp\n"
+"hd_id1619617\n"
"help.text"
-msgid "<variable id=\"name\"><ahelp hid=\".uno:RenameObject\">Assigns a name to the selected object, so that you can quickly find the object in the Navigator.</ahelp></variable>"
-msgstr ""
+msgid "Aligned at"
+msgstr "Në majë"
-#: 05190000.xhp
+#: 06050600.xhp
msgctxt ""
-"05190000.xhp\n"
-"par_id3155364\n"
-"7\n"
+"06050600.xhp\n"
+"par_id1015655\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><defaultinline>The name is also displayed in the Status Bar when you select the object.</defaultinline></switchinline>"
+msgid "<ahelp hid=\".\">Enter the distance from the left page margin at which the numbering symbol will be aligned.</ahelp>"
msgstr ""
-#: 05190000.xhp
+#: 06050600.xhp
msgctxt ""
-"05190000.xhp\n"
-"hd_id3156027\n"
-"3\n"
+"06050600.xhp\n"
+"hd_id2336191\n"
"help.text"
-msgid "Name"
-msgstr "Emri"
+msgid "Indent at"
+msgstr "Në majë"
-#: 05190000.xhp
+#: 06050600.xhp
msgctxt ""
-"05190000.xhp\n"
-"par_id3152924\n"
-"4\n"
+"06050600.xhp\n"
+"par_id6081728\n"
"help.text"
-msgid "<ahelp hid=\"HID_SD_NAMEDIALOG_OBJECT\">Enter a name for the selected object. The name will be visible in the Navigator.</ahelp>"
+msgid "<ahelp hid=\".\">Enter the distance from the left page margin to the start of all lines in the numbered paragraph that follow the first line.</ahelp>"
msgstr ""
-#: password_dlg.xhp
-msgctxt ""
-"password_dlg.xhp\n"
-"tit\n"
-"help.text"
-msgid "Password"
-msgstr "Fjalëkalimi"
-
-#: password_dlg.xhp
+#: 06050600.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"hd_id3146902\n"
-"63\n"
+"06050600.xhp\n"
+"hd_id3154422\n"
+"9\n"
"help.text"
-msgid "<link href=\"text/shared/01/password_dlg.xhp\" name=\"Password\">Password</link>"
-msgstr ""
+msgid "Indent"
+msgstr "Kryerresht"
-#: password_dlg.xhp
+#: 06050600.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"par_id3154350\n"
-"64\n"
+"06050600.xhp\n"
+"par_id3144438\n"
+"19\n"
"help.text"
-msgid "Assigns a password to prevent users from making unauthorized changes."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/numdistmf\">Enter the amount of space to leave between the left page margin (or the left edge of the text object) and the left edge of the numbering symbol. If the current paragraph style uses an indent, the amount you enter here is added to the indent.</ahelp>"
msgstr ""
-#: password_dlg.xhp
+#: 06050600.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"par_id31222\n"
+"06050600.xhp\n"
+"hd_id3155179\n"
+"7\n"
"help.text"
-msgid "The open password must be entered to open the file."
-msgstr ""
+msgid "Relative"
+msgstr "Madhësitë relative"
-#: password_dlg.xhp
+#: 06050600.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"par_id313339\n"
+"06050600.xhp\n"
+"par_id3146137\n"
+"17\n"
"help.text"
-msgid "The permission password must be entered to edit the document."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/relative\">Indents the current level relative to the previous level in the list hierarchy.</ahelp>"
msgstr ""
-#: password_dlg.xhp
+#: 06050600.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"hd_id3146857\n"
-"65\n"
+"06050600.xhp\n"
+"hd_id3150245\n"
+"28\n"
"help.text"
-msgid "Password"
-msgstr "Fjalëkalimi"
+msgid "Width of numbering"
+msgstr "Pa numërim"
-#: password_dlg.xhp
+#: 06050600.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"par_id3150502\n"
-"62\n"
+"06050600.xhp\n"
+"par_id3150129\n"
+"29\n"
"help.text"
-msgid "<ahelp hid=\"HID_PASSWD_TABLE\">Type a password. A password is case sensitive.</ahelp>"
+msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/indentatmf\">Enter the amount of space to leave between the left edge of the numbering symbol and the left edge of the text.</ahelp>"
msgstr ""
-#: password_dlg.xhp
+#: 06050600.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"hd_id3153029\n"
-"66\n"
+"06050600.xhp\n"
+"hd_id3156194\n"
+"8\n"
"help.text"
-msgid "Confirm"
-msgstr "Konfirmo"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Minimum space numbering <-> text</caseinline></switchinline>"
+msgstr ""
-#: password_dlg.xhp
+#: 06050600.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"par_id3151100\n"
-"67\n"
+"06050600.xhp\n"
+"par_id3147574\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\".\">Re-enter the password.</ahelp>"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"modules/swriter/ui/outlinepositionpage/numdistmf\">Enter the minimum amount of space to leave between the right edge of the numbering symbol and the left edge of the text.</ahelp></caseinline></switchinline>"
msgstr ""
-#: password_dlg.xhp
+#: 06050600.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"hd_id3155351\n"
-"68\n"
+"06050600.xhp\n"
+"hd_id3154367\n"
+"10\n"
"help.text"
-msgid "Undoing password protection"
-msgstr "Ndrysho mbrojtjen e fjalëkalimit"
+msgid "Default"
+msgstr "Standarde"
-#: password_dlg.xhp
+#: 06050600.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"par_id3146109\n"
-"69\n"
+"06050600.xhp\n"
+"par_id3156082\n"
+"20\n"
"help.text"
-msgid "To remove a password, open the document, then save without password."
+msgid "<ahelp hid=\"modules/swriter/ui/outlinepositionpage/standard\">Resets the indent and the spacing values to the default values.</ahelp>"
msgstr ""
-#: password_dlg.xhp
+#: 06050600.xhp
msgctxt ""
-"password_dlg.xhp\n"
-"par_id31323250502\n"
+"06050600.xhp\n"
+"par_id3147228\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to show or hide the file sharing password options.</ahelp>"
+msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Paragraph alignment\">Paragraph alignment</link>"
msgstr ""
#: 06130000.xhp
@@ -36551,2229 +37589,2721 @@ msgctxt ""
msgid "<link href=\"text/shared/main0600.xhp\" name=\"Macro programming in $[officename]\">Macro programming in $[officename]</link>"
msgstr ""
-#: 06020000.xhp
+#: 06130001.xhp
msgctxt ""
-"06020000.xhp\n"
+"06130001.xhp\n"
"tit\n"
"help.text"
-msgid "Thesaurus"
-msgstr "Thesari i fjalëve"
+msgid "Macros"
+msgstr "Makrot"
-#: 06020000.xhp
+#: 06130001.xhp
msgctxt ""
-"06020000.xhp\n"
-"hd_id3146946\n"
+"06130001.xhp\n"
+"hd_id3152414\n"
"1\n"
"help.text"
-msgid "Thesaurus"
-msgstr "Thesari i fjalëve"
+msgid "<link href=\"text/shared/01/06130001.xhp\" name=\"Macros\">Macros</link>"
+msgstr ""
-#: 06020000.xhp
+#: 06130001.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3147366\n"
-"2\n"
+"06130001.xhp\n"
+"par_id3150008\n"
+"3\n"
"help.text"
-msgid "<variable id=\"thesaurustxt\"><ahelp hid=\".uno:Thesaurus\">Opens a dialog box to replace the current word with a synonym, or a related term.</ahelp></variable>"
+msgid "Lets you record or organize and edit macros."
msgstr ""
-#: 06020000.xhp
+#: 06130001.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3154184\n"
-"19\n"
+"06130001.xhp\n"
+"par_idN105B1\n"
"help.text"
-msgid "Thesaurus support is not available for all languages."
+msgid "<link href=\"text/shared/01/06130000.xhp\">Run Macro</link>"
msgstr ""
-#: 06020000.xhp
+#: 06130001.xhp
msgctxt ""
-"06020000.xhp\n"
-"hd_id3147571\n"
-"5\n"
+"06130001.xhp\n"
+"par_idN105EB\n"
"help.text"
-msgid "Current word"
+msgid "<ahelp hid=\".\">Opens a dialog where you can start a macro.</ahelp>"
msgstr ""
-#: 06020000.xhp
+#: 06130001.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3159233\n"
-"6\n"
+"06130001.xhp\n"
+"par_idN10608\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the current word, or the related term that you selected by double-clicking a line in the Alternatives list. You can also type text directly in this box to look up your text.</ahelp>"
+msgid "<link href=\"text/shared/01/digitalsignatures.xhp\">Digital Signature</link>"
msgstr ""
-#: 06020000.xhp
+#: 06130001.xhp
msgctxt ""
-"06020000.xhp\n"
-"hd_id3647571\n"
-"5\n"
+"06130001.xhp\n"
+"par_idN10618\n"
"help.text"
-msgid "Arrow left"
-msgstr "Shigjeta e majtë"
+msgid "<ahelp hid=\".\">Adds and removes digital signatures to and from your macros. You can also use the dialog to view certificates.</ahelp>"
+msgstr ""
-#: 06020000.xhp
+#: 06130001.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id369233\n"
-"6\n"
+"06130001.xhp\n"
+"par_idN105D3\n"
"help.text"
-msgid "<ahelp hid=\".\">Recalls the previous contents of the \"Current word\" text box.</ahelp>"
+msgid "<link href=\"text/shared/01/06130000.xhp\">Organize Dialogs</link>"
msgstr ""
-#: 06020000.xhp
+#: 06130001.xhp
msgctxt ""
-"06020000.xhp\n"
-"hd_id3154983\n"
-"7\n"
+"06130001.xhp\n"
+"par_idN105E3\n"
"help.text"
-msgid "Alternatives"
+msgid "<ahelp hid=\".\">Opens the Dialogs tab page of the Macro Organizer.</ahelp>"
msgstr ""
-#: 06020000.xhp
+#: 06130010.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3149182\n"
-"8\n"
+"06130010.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\".\">Click an entry in the Alternatives list to copy the related term to the \"Replace with\" text box. Double-click an entry to copy the related term to the \"Current word\" text box and to look up that term.</ahelp>"
-msgstr ""
+msgid "Record Macro"
+msgstr "Regjistro Makron..."
-#: 06020000.xhp
+#: 06130010.xhp
msgctxt ""
-"06020000.xhp\n"
-"hd_id3155892\n"
-"9\n"
+"06130010.xhp\n"
+"hd_id3153383\n"
+"5\n"
"help.text"
-msgid "Replace with"
-msgstr "Zëvendëso me"
+msgid "<link href=\"text/shared/01/06130010.xhp\" name=\"Record Macro\">Record Macro</link>"
+msgstr ""
-#: 06020000.xhp
+#: 06130010.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3150693\n"
-"10\n"
+"06130010.xhp\n"
+"par_id3152952\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\".\">The word or words in the \"Replace with\" text box will replace the original word in the document when you click the Replace button. You can also type text directly in this box.</ahelp>"
+msgid "<ahelp hid=\".uno:MacroRecorder\">Records a new macro.</ahelp> Only available, if macro recording feature is enabled in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Advanced</emph>."
msgstr ""
-#: 06020000.xhp
+#: 06130010.xhp
msgctxt ""
-"06020000.xhp\n"
-"hd_id3146775\n"
-"15\n"
+"06130010.xhp\n"
+"hd_id3154788\n"
+"2\n"
"help.text"
-msgid "Language"
-msgstr "Gjuhë"
+msgid "Stop Recording"
+msgstr "Ndal Regjistrimin"
-#: 06020000.xhp
+#: 06130010.xhp
msgctxt ""
-"06020000.xhp\n"
-"par_id3159157\n"
-"16\n"
+"06130010.xhp\n"
+"par_id3146067\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\".\">Select a language for the thesaurus.</ahelp> You can install languages with a thesaurus library from the <link href=\"http://extensions.libreoffice.org/\">Extensions</link> web page."
+msgid "<ahelp hid=\".uno:StopRecording\">Stops recording a macro.</ahelp>"
msgstr ""
-#: 02230100.xhp
+#: 06130100.xhp
msgctxt ""
-"02230100.xhp\n"
+"06130100.xhp\n"
"tit\n"
"help.text"
-msgid "Record"
-msgstr "Shënim"
+msgid "Change Password"
+msgstr "Ndrysho mbrojtjen e fjalëkalimit"
-#: 02230100.xhp
+#: 06130100.xhp
msgctxt ""
-"02230100.xhp\n"
-"hd_id3150758\n"
+"06130100.xhp\n"
+"hd_id3153514\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230100.xhp\" name=\"Record\">Record</link>"
-msgstr ""
+msgid "Change Password"
+msgstr "Ndrysho mbrojtjen e fjalëkalimit"
-#: 02230100.xhp
+#: 06130100.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3155599\n"
+"06130100.xhp\n"
+"par_id3154545\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:TraceChangeMode\">Tracks each change that is made in the current document by author and date. </ahelp>"
+msgid "<ahelp hid=\"HID_PASSWORD\">Protects the selected library with a password.</ahelp> You can enter a new password, or change the current password."
msgstr ""
-#: 02230100.xhp
+#: 06130100.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3155934\n"
-"26\n"
+"06130100.xhp\n"
+"hd_id3145759\n"
+"3\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">If you choose <emph>Record - Show</emph>, the lines containing changed text passages are indicated by a vertical line in the left page margin. You can set the properties of the vertical line and the other markup elements by choosing <emph><link href=\"text/shared/optionen/01040700.xhp\" name=\"Writer - Changes\">%PRODUCTNAME Writer - Changes</link></emph> in the Options dialog box.</caseinline></switchinline>"
-msgstr ""
+msgid "Old password"
+msgstr "Fjalëkalim i pavlefshëm"
-#: 02230100.xhp
+#: 06130100.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3147261\n"
-"27\n"
+"06130100.xhp\n"
+"hd_id3150603\n"
+"4\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">You can set the properties of the markup elements by choosing <link href=\"text/shared/optionen/01060600.xhp\" name=\"Calc - Changes\"><emph>%PRODUCTNAME Calc - Changes</emph></link> in the Options dialog box.</caseinline></switchinline>"
+msgid "Password"
+msgstr "Fjalëkalimi"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"par_id3144415\n"
+"5\n"
+"help.text"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_OLD_PASSWD\">Enter the current password for the selected library.</ahelp>"
msgstr ""
-#: 02230100.xhp
+#: 06130100.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3145669\n"
+"06130100.xhp\n"
+"hd_id3145160\n"
+"6\n"
+"help.text"
+msgid "New password"
+msgstr "Fjalëkalim i pavlefshëm"
+
+#: 06130100.xhp
+msgctxt ""
+"06130100.xhp\n"
+"hd_id3149525\n"
"7\n"
"help.text"
-msgid "The following changes are tracked when the record changes command is active:"
-msgstr ""
+msgid "Password"
+msgstr "Fjalëkalimi"
-#: 02230100.xhp
+#: 06130100.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3149388\n"
+"06130100.xhp\n"
+"par_id3159194\n"
"8\n"
"help.text"
-msgid "Paste and delete text"
-msgstr "Teksti Perëndimor dhe pikëzimi Aziatik"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_NEW_PASSWD\">Enter a new password for the selected library.</ahelp>"
+msgstr ""
-#: 02230100.xhp
+#: 06130100.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3150693\n"
+"06130100.xhp\n"
+"hd_id3166445\n"
"9\n"
"help.text"
-msgid "Move paragraphs"
-msgstr "Lëviz paragrafet"
+msgid "Confirm"
+msgstr "Konfirmo"
-#: 02230100.xhp
+#: 06130100.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3147088\n"
+"06130100.xhp\n"
+"par_id3153114\n"
"10\n"
"help.text"
-msgid "Sort text"
-msgstr "Rendit tekstin"
+msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_PASSWORD:ED_REPEAT_PASSWD\">Reenter the new password for the selected library.</ahelp>"
+msgstr ""
-#: 02230100.xhp
+#: 06130200.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3148620\n"
-"11\n"
+"06130200.xhp\n"
+"tit\n"
"help.text"
-msgid "Find and replace text"
-msgstr "Zëvendëso me Kutinë e Tekstit"
+msgid "Organize Macros"
+msgstr "~Organizo Makrot"
-#: 02230100.xhp
+#: 06130200.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3145382\n"
-"12\n"
+"06130200.xhp\n"
+"bm_id3237403\n"
"help.text"
-msgid "Insert attributes that are one character wide, for example, fields and footnotes."
+msgid "<bookmark_value>macros;organizing</bookmark_value><bookmark_value>organizing;macros and scripts</bookmark_value><bookmark_value>script organization</bookmark_value>"
msgstr ""
-#: 02230100.xhp
+#: 06130200.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3146797\n"
-"13\n"
+"06130200.xhp\n"
+"par_idN1054B\n"
"help.text"
-msgid "Insert sheets, ranges"
-msgstr "Futi Intervalet e Emërtimit"
+msgid "<variable id=\"organize_macros\"><link href=\"text/shared/01/06130200.xhp\">Organize Macros</link></variable>"
+msgstr ""
-#: 02230100.xhp
+#: 06130200.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3154749\n"
-"14\n"
+"06130200.xhp\n"
+"par_idN105B7\n"
"help.text"
-msgid "Insert document"
-msgstr "Shto dokumentin"
+msgid "<ahelp hid=\".\">Opens a submenu with links to dialogs where you can organize macros and scripts.</ahelp>"
+msgstr ""
-#: 02230100.xhp
+#: 06130200.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3153252\n"
-"15\n"
+"06130200.xhp\n"
+"par_idN1057F\n"
"help.text"
-msgid "Insert AutoText"
-msgstr "Shto AutoText"
+msgid "<link href=\"text/shared/01/06130000.xhp\">%PRODUCTNAME Basic</link>"
+msgstr ""
-#: 02230100.xhp
+#: 06130200.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3155449\n"
-"16\n"
+"06130200.xhp\n"
+"par_idN105C3\n"
"help.text"
-msgid "Insert from clipboard"
-msgstr "Gabim duke lexuar nga clipboardi."
+msgid "<ahelp hid=\".\">Opens a dialog where you can organize %PRODUCTNAME Basic macros.</ahelp>"
+msgstr ""
-#: 02230100.xhp
+#: 06130200.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3153821\n"
-"20\n"
+"06130200.xhp\n"
+"par_idN105AA\n"
"help.text"
-msgid "Change cell contents by insertions and deletions"
+msgid "<link href=\"text/shared/01/06130000.xhp#script\">JavaScript</link>"
msgstr ""
-#: 02230100.xhp
+#: 06130200.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3150771\n"
-"21\n"
+"06130200.xhp\n"
+"par_idN105BA\n"
"help.text"
-msgid "Insert or delete columns and rows"
+msgid "<ahelp hid=\".\">Opens a dialog where you can organize scripts.</ahelp>"
msgstr ""
-#: 02230100.xhp
+#: 06130200.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3150085\n"
-"22\n"
+"06130200.xhp\n"
+"par_idN10622\n"
"help.text"
-msgid "Insert sheets"
-msgstr "Selekto Fletët"
+msgid "<embedvar href=\"text/shared/guide/scripting.xhp#scripting\"/>"
+msgstr ""
-#: 02230100.xhp
+#: 06130200.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3154381\n"
-"23\n"
+"06130200.xhp\n"
+"par_idN10597\n"
"help.text"
-msgid "Cut, copy and paste through the clipboard"
+msgid "<link href=\"text/shared/01/06130000.xhp#script\">BeanShell</link>"
msgstr ""
-#: 02230100.xhp
+#: 06130200.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3145119\n"
-"24\n"
+"06130200.xhp\n"
+"par_idN105A7\n"
"help.text"
-msgid "Move by dragging and dropping"
+msgid "<ahelp hid=\".\">Opens a dialog where you can organize scripts.</ahelp>"
msgstr ""
-#: 02230100.xhp
+#: 06130200.xhp
msgctxt ""
-"02230100.xhp\n"
-"par_id3154347\n"
-"19\n"
+"06130200.xhp\n"
+"par_idN105FB\n"
"help.text"
-msgid "When the record changes command is active, you cannot delete, move, merge, split, or copy cells or delete sheets."
+msgid "<embedvar href=\"text/shared/guide/scripting.xhp#scripting\"/>"
msgstr ""
-#: 02190000.xhp
+#: 06130500.xhp
msgctxt ""
-"02190000.xhp\n"
+"06130500.xhp\n"
"tit\n"
"help.text"
-msgid "Plug-in"
-msgstr "Lësho në..."
+msgid "Append libraries"
+msgstr "Bashkangjitni biblotekat"
-#: 02190000.xhp
+#: 06130500.xhp
msgctxt ""
-"02190000.xhp\n"
-"bm_id3146946\n"
+"06130500.xhp\n"
+"hd_id3158442\n"
+"1\n"
"help.text"
-msgid "<bookmark_value>plug-ins; activating and deactivating</bookmark_value><bookmark_value>activating;plug-ins</bookmark_value><bookmark_value>deactivating; plug-ins</bookmark_value>"
-msgstr ""
+msgid "Append libraries"
+msgstr "Bashkangjitni biblotekat"
-#: 02190000.xhp
+#: 06130500.xhp
msgctxt ""
-"02190000.xhp\n"
-"hd_id3146946\n"
-"1\n"
+"06130500.xhp\n"
+"par_id3155271\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/01/02190000.xhp\" name=\"Plug-in\">Plug-in</link>"
+msgid "<ahelp hid=\"\">Locate the <item type=\"productname\">%PRODUCTNAME</item> Basic library that you want to add to the current list, and then click Open.</ahelp>"
msgstr ""
-#: 02190000.xhp
+#: 06130500.xhp
msgctxt ""
-"02190000.xhp\n"
-"par_id3154863\n"
-"2\n"
+"06130500.xhp\n"
+"hd_id3152952\n"
+"3\n"
"help.text"
-msgid "<ahelp hid=\".uno:PlugInsActive\">Allows you to edit <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-ins\">plug-ins</link> in your file. Choose this command to enable or disable this feature. When enabled, a check mark appears beside this command, and you find commands to edit the plug-in in its context menu. When disabled, you find commands to control the plug-in in its context menu.</ahelp>"
+msgid "File name:"
+msgstr "Emri i skedarit:"
+
+#: 06130500.xhp
+msgctxt ""
+"06130500.xhp\n"
+"par_id3152876\n"
+"4\n"
+"help.text"
+msgid "<ahelp hid=\"HID_BASICIDE_LIBSDLG_TREE\">Enter a name or the path to the library that you want to append. You can also select a library from the list.</ahelp>"
msgstr ""
-#: 01020101.xhp
+#: 06130500.xhp
msgctxt ""
-"01020101.xhp\n"
-"tit\n"
+"06130500.xhp\n"
+"hd_id3147294\n"
+"5\n"
"help.text"
-msgid "Select Path"
-msgstr "Selekto shtegun"
+msgid "Options"
+msgstr "Opcionet"
-#: 01020101.xhp
+#: 06130500.xhp
msgctxt ""
-"01020101.xhp\n"
-"hd_id3150620\n"
-"1\n"
+"06130500.xhp\n"
+"hd_id3143272\n"
+"7\n"
"help.text"
-msgid "Select Path"
-msgstr "Selekto shtegun"
+msgid "Insert as reference (read-only)"
+msgstr "Fute si adresim (vetwm e lexueshme)"
-#: 01020101.xhp
+#: 06130500.xhp
msgctxt ""
-"01020101.xhp\n"
-"par_id3149962\n"
-"2\n"
+"06130500.xhp\n"
+"par_id3154350\n"
+"8\n"
"help.text"
-msgid "Sets file paths."
-msgstr "Format i panjohur i fajllit!"
+msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REF\">Adds the selected library as a read-only file. The library is reloaded each time you start <item type=\"productname\">%PRODUCTNAME</item>.</ahelp>"
+msgstr ""
-#: 01020101.xhp
+#: 06130500.xhp
msgctxt ""
-"01020101.xhp\n"
-"hd_id3152821\n"
-"4\n"
+"06130500.xhp\n"
+"hd_id3154788\n"
+"9\n"
"help.text"
-msgid "Select"
-msgstr "Zgjedh"
+msgid "Replace existing libraries"
+msgstr "Zwvwndwso biblotekat ekzistuese"
-#: 01020101.xhp
+#: 06130500.xhp
msgctxt ""
-"01020101.xhp\n"
-"par_id3150902\n"
-"5\n"
+"06130500.xhp\n"
+"par_id3154894\n"
+"10\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEDLG_PATH_BTN\" visibility=\"visible\">Selects the indicated path.</ahelp>"
+msgid "<ahelp hid=\"BASCTL_CHECKBOX_RID_DLG_LIBS_RID_CB_REPL\">Replaces a library that has the same name with the current library.</ahelp>"
msgstr ""
-#: 01020101.xhp
+#: 06140000.xhp
msgctxt ""
-"01020101.xhp\n"
-"hd_id3148585\n"
-"6\n"
+"06140000.xhp\n"
+"tit\n"
"help.text"
-msgid "Path:"
-msgstr "Shtegu"
+msgid "Customize"
+msgstr "Përshtat..."
-#: 01020101.xhp
+#: 06140000.xhp
msgctxt ""
-"01020101.xhp\n"
-"par_id3149346\n"
+"06140000.xhp\n"
+"hd_id3146946\n"
+"1\n"
+"help.text"
+msgid "Customize"
+msgstr "Përshtat..."
+
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id3155069\n"
+"2\n"
+"help.text"
+msgid "<variable id=\"anpassen\"><ahelp hid=\".uno:LoadToolBox\">Customizes $[officename] menus, shortcut keys, toolbars, and macro assignments to events.</ahelp></variable>"
+msgstr ""
+
+#: 06140000.xhp
+msgctxt ""
+"06140000.xhp\n"
+"par_id3152821\n"
"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEDLG_PATH_FILENAME\" visibility=\"visible\">Enter or select the path from the list.</ahelp>"
+msgid "You can customize shortcut keys and macro assignments for the current application, or for all $[officename] applications."
msgstr ""
-#: 01020101.xhp
+#: 06140000.xhp
msgctxt ""
-"01020101.xhp\n"
-"par_id3149750\n"
+"06140000.xhp\n"
+"par_id3153303\n"
+"4\n"
"help.text"
-msgid "<link name=\"Open Dialog\" href=\"text/shared/01/01020000.xhp\"><emph>Open</emph> Dialog</link>"
+msgid "You can also save and load individual menu, shortcut key, and toolbar custom settings."
msgstr ""
-#: 01060000.xhp
+#: 06140100.xhp
msgctxt ""
-"01060000.xhp\n"
+"06140100.xhp\n"
"tit\n"
"help.text"
-msgid "Save"
-msgstr "Ruaje"
+msgid "Menu"
+msgstr "Meny"
-#: 01060000.xhp
+#: 06140100.xhp
msgctxt ""
-"01060000.xhp\n"
-"hd_id3147000\n"
-"5\n"
+"06140100.xhp\n"
+"bm_id900601\n"
"help.text"
-msgid "<link href=\"text/shared/01/01060000.xhp\" name=\"Save\">Save</link>"
+msgid "<bookmark_value>editing;menus</bookmark_value><bookmark_value>customizing;menus</bookmark_value><bookmark_value>menus;customizing</bookmark_value>"
msgstr ""
-#: 01060000.xhp
+#: 06140100.xhp
msgctxt ""
-"01060000.xhp\n"
-"par_id3153255\n"
+"06140100.xhp\n"
+"hd_id3153008\n"
"1\n"
"help.text"
-msgid "<ahelp hid=\".uno:Save\">Saves the current document.</ahelp>"
+msgid "<link href=\"text/shared/01/06140100.xhp\" name=\"Menu\">Menu</link>"
msgstr ""
-#: 01060000.xhp
+#: 06140100.xhp
msgctxt ""
-"01060000.xhp\n"
-"par_id3152551\n"
-"4\n"
+"06140100.xhp\n"
+"par_id3152952\n"
+"2\n"
"help.text"
-msgid "When you edit an AutoText entry, this command changes to <emph>Save AutoText</emph>."
+msgid "<ahelp hid=\"HID_CONFIG_MENU\">Customizes and saves current menu layouts as well as creates new menus. You cannot customize context menus.</ahelp>"
msgstr ""
-#: 04150500.xhp
+#: 06140100.xhp
msgctxt ""
-"04150500.xhp\n"
-"tit\n"
+"06140100.xhp\n"
+"par_id3146873\n"
+"72\n"
"help.text"
-msgid "Insert video"
-msgstr "Shto Plug-in të Videos"
+msgid "You can add new commands, modify existing commands, or rearrange the menu items."
+msgstr ""
-#: 04150500.xhp
+#: 06140100.xhp
msgctxt ""
-"04150500.xhp\n"
-"hd_id3150999\n"
-"1\n"
+"06140100.xhp\n"
+"par_idN1069B\n"
"help.text"
-msgid "Insert video"
-msgstr "Shto Plug-in të Videos"
+msgid "Menu"
+msgstr "Meny"
-#: 04150500.xhp
+#: 06140100.xhp
msgctxt ""
-"04150500.xhp\n"
-"par_id3152895\n"
-"2\n"
+"06140100.xhp\n"
+"par_idN1069F\n"
"help.text"
-msgid "<variable id=\"video\"><ahelp hid=\".uno:InsertVideo\">Inserts a video file into the current document.</ahelp></variable>"
+msgid "<ahelp hid=\"705498935\">Select the menu and submenu that you want to edit.</ahelp>"
msgstr ""
-#: webhtml.xhp
+#: 06140100.xhp
msgctxt ""
-"webhtml.xhp\n"
-"tit\n"
+"06140100.xhp\n"
+"par_idN106B0\n"
"help.text"
-msgid "Preview in Web Browser"
-msgstr "Përdor ~shfletuesin e rrjetit aranzhime të autorizuara"
+msgid "New"
+msgstr "E re"
-#: webhtml.xhp
+#: 06140100.xhp
msgctxt ""
-"webhtml.xhp\n"
-"hd_id3901181\n"
+"06140100.xhp\n"
+"par_idN106B4\n"
"help.text"
-msgid "<link href=\"text/shared/01/webhtml.xhp\">Preview in Web Browser</link>"
+msgid "<ahelp hid=\"705499960\">Opens the <link href=\"text/shared/01/06140101.xhp\">New Menu</link> dialog where you can enter the name of a new menu as well as select the location for the menu.</ahelp>"
msgstr ""
-#: webhtml.xhp
+#: 06140100.xhp
msgctxt ""
-"webhtml.xhp\n"
-"par_id8309274\n"
+"06140100.xhp\n"
+"par_idN106B7\n"
"help.text"
-msgid "<ahelp hid=\".\">Creates a temporary copy of the current document in HTML format, opens the system default Web browser, and displays the HTML file in the Web browser.</ahelp>"
+msgid "Menu"
+msgstr "Meny"
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN106BB\n"
+"help.text"
+msgid "<ahelp hid=\"705507642\">Opens a submenu with additional commands.</ahelp>"
msgstr ""
-#: webhtml.xhp
+#: 06140100.xhp
msgctxt ""
-"webhtml.xhp\n"
-"par_id9186681\n"
+"06140100.xhp\n"
+"par_idN106BE\n"
"help.text"
-msgid "The HTML formatted copy is written to the temporary files folder that you can select in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Paths</item>. When you quit %PRODUCTNAME, the HTML file will be deleted."
+msgid "Move"
+msgstr "Lëvize"
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN106C2\n"
+"help.text"
+msgid "Opens the <link href=\"text/shared/01/06140102.xhp\">Move Menu</link> dialog where you can specify the location of the selected menu."
msgstr ""
-#: webhtml.xhp
+#: 06140100.xhp
msgctxt ""
-"webhtml.xhp\n"
-"par_id5871150\n"
+"06140100.xhp\n"
+"par_idN106C5\n"
"help.text"
-msgid "You can set the HTML export filter options by choosing <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</item>."
+msgid "Rename"
+msgstr "Riemëro"
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN106C9\n"
+"help.text"
+msgid "Opens a dialog where you can change the name of the selected menu."
msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"tit\n"
+"06140100.xhp\n"
+"par_idN1071C\n"
"help.text"
-msgid "Attributes"
-msgstr "Atributet"
+msgid "New name"
+msgstr "Emri i ri"
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3154422\n"
-"1\n"
+"06140100.xhp\n"
+"par_idN1071F\n"
"help.text"
-msgid "Attributes"
-msgstr "Atributet"
+msgid "Enter the new name for the selected menu."
+msgstr "Ju lutem jepe një emër për shkallëzimin e ri:"
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3153331\n"
-"2\n"
+"06140100.xhp\n"
+"par_idN106CC\n"
"help.text"
-msgid "<variable id=\"attributetext\"><ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SEARCH:BTN_ATTRIBUTE\">Choose the text attributes that you want to search for. For example, if you search for the <emph>Font</emph> attribute, all instances of text that do not use the default font are found. All text that has a directly coded font attribute, and all text where a style switches the font attribute, are found. </ahelp></variable>"
+msgid "To specify the keyboard accelerator for a menu"
msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3150944\n"
-"6\n"
+"06140100.xhp\n"
+"par_idN108C6\n"
"help.text"
-msgid "Options"
-msgstr "Opcionet"
+msgid "A keyboard accelerator allows you to select a menu command when you press Alt+ an underlined letter in a menu command. For example, to select the <emph>Save All</emph> command by pressing Alt+V, enter Sa~ve All."
+msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3151384\n"
-"7\n"
+"06140100.xhp\n"
+"par_idN106D0\n"
"help.text"
-msgid "<ahelp hid=\"HID_SEARCHATTR_CTL_ATTR\">Select the attributes that you want to search for.</ahelp>"
-msgstr ""
+msgid "Select a menu or menu entry."
+msgstr "Zgjedh një komandë apo kliko për të zgjedhur temën."
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3149245\n"
-"56\n"
+"06140100.xhp\n"
+"par_idN108DC\n"
"help.text"
-msgid "Keep with Next Paragraph"
-msgstr "Mbaje me paragrafin tjetër"
+msgid "Click the <emph>Menu</emph> button and select <emph>Rename</emph>."
+msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3154760\n"
-"57\n"
+"06140100.xhp\n"
+"par_idN108E8\n"
"help.text"
-msgid "Finds the <emph>Keep With Next Paragraph</emph> attribute."
+msgid "Add a tilde (~) in front of the letter that you want to use as an accelerator."
msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3145068\n"
-"40\n"
+"06140100.xhp\n"
+"par_idN106F9\n"
"help.text"
-msgid "Split Paragraph"
-msgstr "Ndaj paragrafet"
+msgid "Delete"
+msgstr "Fshije"
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3147560\n"
-"41\n"
+"06140100.xhp\n"
+"par_idN106FD\n"
"help.text"
-msgid "Finds the <emph>Do not split paragraph</emph> attribute."
+msgid "Deletes the selected menu or menu entry."
msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3156435\n"
-"52\n"
+"06140100.xhp\n"
+"par_idN10910\n"
"help.text"
-msgid "Spacing"
-msgstr "Hapësira"
+msgid "You can only delete custom menus and custom menu entries."
+msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3150866\n"
-"53\n"
+"06140100.xhp\n"
+"hd_id3154408\n"
+"5\n"
"help.text"
-msgid "Finds the <emph>Spacing</emph> (top, bottom) attribute."
-msgstr ""
+msgid "Entries"
+msgstr "Hyrjet"
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3154071\n"
-"38\n"
+"06140100.xhp\n"
+"par_id3150999\n"
+"6\n"
"help.text"
-msgid "Alignment"
-msgstr "Mbështetje"
+msgid "<ahelp hid=\"HID_MENUCONFIG_LISTBOX\">Displays a list of the available menu commands for the selected menu in the current application or document.</ahelp>"
+msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3154365\n"
+"06140100.xhp\n"
+"par_id3150838\n"
"39\n"
"help.text"
-msgid "Finds the <emph>Alignment</emph> (left, right, centered, justified) attribute."
+msgid "To rearrange the order of menu entries, select an entry, and then click the up or down arrow button."
msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3145171\n"
-"8\n"
+"06140100.xhp\n"
+"hd_id3147620\n"
+"63\n"
"help.text"
-msgid "Effects"
-msgstr "Efektet"
+msgid "Arrow Up"
+msgstr "Shigjeta lartë"
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3149203\n"
-"9\n"
+"06140100.xhp\n"
+"par_id3153585\n"
+"64\n"
"help.text"
-msgid "Finds characters that use the <emph>Capital, Lowercase, Small capitals, </emph>and <emph>Title </emph>character attributes."
+msgid "<ahelp hid=\"SFX2_IMAGEBUTTON_TP_CONFIG_MENU_BTN_MN_UP\">Moves the selected item up one position.</ahelp>"
msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3148676\n"
-"60\n"
+"06140100.xhp\n"
+"par_id3150119\n"
"help.text"
-msgid "Blinking"
-msgstr "Duke Pulsuar"
+msgid "<image id=\"img_id3156192\" src=\"dbaccess/res/sortup.png\" width=\"0.2083inch\" height=\"0.222inch\"><alt id=\"alt_id3156192\">Icon</alt></image>"
+msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3153193\n"
-"61\n"
+"06140100.xhp\n"
+"par_id3153331\n"
+"65\n"
"help.text"
-msgid "Finds characters use the <emph>Blinking</emph> attribute."
-msgstr ""
+msgid "Arrow Up"
+msgstr "Shigjeta lartë"
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3153968\n"
-"14\n"
+"06140100.xhp\n"
+"hd_id3155388\n"
+"66\n"
"help.text"
-msgid "Strikethrough"
-msgstr "Vizuar nëpërmes"
+msgid "Arrow Down"
+msgstr "Shigjeta poshtë"
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3145746\n"
-"15\n"
+"06140100.xhp\n"
+"par_id3147335\n"
+"67\n"
"help.text"
-msgid "Finds characters that use the <emph>Strikethrough</emph> (single or double) attribute."
+msgid "<ahelp hid=\"SFX2_IMAGEBUTTON_TP_CONFIG_MENU_BTN_MN_DOWN\">Moves the selected item down one position.</ahelp>"
msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3156422\n"
-"50\n"
+"06140100.xhp\n"
+"par_id3148943\n"
"help.text"
-msgid "Indent"
-msgstr "Kryerresht"
+msgid "<image id=\"img_id3145609\" src=\"dbaccess/res/sortdown.png\" width=\"0.1563inch\" height=\"0.1665inch\"><alt id=\"alt_id3145609\">Icon</alt></image>"
+msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3150449\n"
-"51\n"
+"06140100.xhp\n"
+"par_id3149295\n"
+"68\n"
"help.text"
-msgid "Finds the <emph>Indent</emph> (from left, from right, first line) attribute."
-msgstr ""
+msgid "Arrow Down"
+msgstr "Shigjeta poshtë"
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3145203\n"
-"44\n"
+"06140100.xhp\n"
+"par_idN107EA\n"
"help.text"
-msgid "Widows"
-msgstr "Të mbetura"
+msgid "Add Commands"
+msgstr "Shto elementin"
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3153105\n"
-"45\n"
+"06140100.xhp\n"
+"par_idN107EE\n"
"help.text"
-msgid "Finds the <emph>Widow Control</emph> attribute."
+msgid "<ahelp hid=\".\">Opens the Add Commands dialog. Select any command, then click <emph>Add</emph> or drag-and-drop the command into the <emph>Customize</emph> dialog box.</ahelp>"
msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3149560\n"
-"22\n"
+"06140100.xhp\n"
+"par_idN40723\n"
"help.text"
-msgid "Kerning"
-msgstr "Kernimi"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select any command, then click <emph>Add</emph> or drag-and-drop the command into the <emph>Customize</emph> dialog box.</ahelp>"
+msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3155132\n"
-"23\n"
+"06140100.xhp\n"
+"par_idN107F9\n"
"help.text"
-msgid "Finds <emph>Spacing</emph> (standard, expanded, condensed) attributes and Pair Kerning."
+msgid "Command"
+msgstr "Komanda"
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN107FD\n"
+"help.text"
+msgid "<ahelp hid=\"705507646\">Opens a menu that contains additional commands.</ahelp>"
msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3145261\n"
-"12\n"
+"06140100.xhp\n"
+"par_idN10800\n"
"help.text"
-msgid "Outline"
-msgstr "Konturë"
+msgid "Add Submenu"
+msgstr "Shto elementin"
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3153143\n"
-"13\n"
+"06140100.xhp\n"
+"par_idN10804\n"
"help.text"
-msgid "Finds the <emph>Outline</emph> attribute."
+msgid "Opens the Add Submenu dialog, where you enter the name of a submenu."
msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3148575\n"
-"16\n"
+"06140100.xhp\n"
+"par_idN10807\n"
"help.text"
-msgid "Position"
-msgstr "Pozicion"
+msgid "Begin Group"
+msgstr "Emri i grupit"
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3146922\n"
-"17\n"
+"06140100.xhp\n"
+"par_idN1080B\n"
"help.text"
-msgid "Finds characters using the <emph>Normal, Superscript</emph> or <emph>Subscript </emph>attributes."
+msgid "Inserts a separator line under the current menu entry."
msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3156062\n"
-"62\n"
+"06140100.xhp\n"
+"par_idN1080E\n"
"help.text"
-msgid "Register-true"
-msgstr "Regjistrimi-i saktë"
+msgid "Rename"
+msgstr "Riemëro"
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3152886\n"
-"63\n"
+"06140100.xhp\n"
+"par_idN10812\n"
"help.text"
-msgid "Finds the <emph>Register-true</emph> attribute."
-msgstr ""
+msgid "Opens the <emph>Rename</emph> dialog, where you enter a new name for the selected command."
+msgstr "Ju lutem jepe një emër për shkallëzimin e ri:"
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3159196\n"
-"64\n"
+"06140100.xhp\n"
+"par_idN108CA\n"
"help.text"
-msgid "Relief"
-msgstr "Relief"
+msgid "New name"
+msgstr "Emri i ri"
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3146120\n"
-"65\n"
+"06140100.xhp\n"
+"par_idN108CD\n"
"help.text"
-msgid "Finds the <emph>Relief </emph>attribute."
+msgid "Enter the new name for the selected command."
+msgstr "Ju lutem jepe një emër për shkallëzimin e ri:"
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN10824\n"
+"help.text"
+msgid "Delete"
+msgstr "Fshije"
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN10828\n"
+"help.text"
+msgid "Deletes the selected command."
+msgstr "Zgjidh njw linjw tw komandws"
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN10918\n"
+"help.text"
+msgid "Save In"
+msgstr "Ruaje macron nw"
+
+#: 06140100.xhp
+msgctxt ""
+"06140100.xhp\n"
+"par_idN1091C\n"
+"help.text"
+msgid "<ahelp hid=\"705498948\">Select the application or open document where you want to add the menu.</ahelp> A separate menu configuration is saved for the item that you select."
msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3154014\n"
-"66\n"
+"06140100.xhp\n"
+"par_idN10AFB\n"
"help.text"
-msgid "Rotation"
-msgstr "Rrotullim"
+msgid "To edit a menu configuration that is associated with an item in the list, select the item, make the changes that you want, and then click the <emph>OK</emph> button."
+msgstr ""
-#: 02100200.xhp
+#: 06140100.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3150873\n"
-"67\n"
+"06140100.xhp\n"
+"par_idN10922\n"
"help.text"
-msgid "Finds the <emph>Rotation</emph> attribute."
+msgid "You cannot load a menu configuration from one location and save the configuration to another location."
msgstr ""
-#: 02100200.xhp
+#: 06140101.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3152576\n"
-"28\n"
+"06140101.xhp\n"
+"tit\n"
"help.text"
-msgid "Shadowed"
-msgstr "E hijezuar"
+msgid "New Menu"
+msgstr "AutoPilot Meny"
-#: 02100200.xhp
+#: 06140101.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3150104\n"
-"29\n"
+"06140101.xhp\n"
+"par_idN10540\n"
"help.text"
-msgid "Finds the <emph>Shadowed</emph> attribute."
+msgid "New Menu"
+msgstr "AutoPilot Meny"
+
+#: 06140101.xhp
+msgctxt ""
+"06140101.xhp\n"
+"par_idN10558\n"
+"help.text"
+msgid "Menu name"
+msgstr "Emri i grupit"
+
+#: 06140101.xhp
+msgctxt ""
+"06140101.xhp\n"
+"par_idN1055C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Enter a name for the menu. To specify a letter in the name as an accelerator key, enter a tilde (~) before the letter.</ahelp>"
msgstr ""
-#: 02100200.xhp
+#: 06140101.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3159156\n"
-"18\n"
+"06140101.xhp\n"
+"par_idN1055F\n"
"help.text"
-msgid "Font"
-msgstr "Fonti"
+msgid "Menu position"
+msgstr "<Pozicion tjetër>"
-#: 02100200.xhp
+#: 06140101.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3154320\n"
-"19\n"
+"06140101.xhp\n"
+"par_idN10563\n"
"help.text"
-msgid "Finds any instance where the default font was changed."
+msgid "Moves the selected menu entry up one position or down one position in the menu when you click the arrow buttons."
msgstr ""
-#: 02100200.xhp
+#: 06140102.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3151113\n"
-"10\n"
+"06140102.xhp\n"
+"tit\n"
"help.text"
-msgid "Font Color"
-msgstr "Ngjyra e Fontit"
+msgid "Move Menu"
+msgstr "AutoPilot Meny"
-#: 02100200.xhp
+#: 06140102.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3149664\n"
-"11\n"
+"06140102.xhp\n"
+"par_idN10540\n"
"help.text"
-msgid "Finds any instance where the default font color was changed."
+msgid "Move Menu"
+msgstr "AutoPilot Meny"
+
+#: 06140102.xhp
+msgctxt ""
+"06140102.xhp\n"
+"par_idN10558\n"
+"help.text"
+msgid "Menu position"
+msgstr "<Pozicion tjetër>"
+
+#: 06140102.xhp
+msgctxt ""
+"06140102.xhp\n"
+"par_idN1055C\n"
+"help.text"
+msgid "<ahelp hid=\".\">Moves the selected menu entry up one position or down one position in the menu when you click an arrow button.</ahelp>"
msgstr ""
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3152794\n"
-"20\n"
+"06140200.xhp\n"
+"tit\n"
"help.text"
-msgid "Font Size"
-msgstr "Madhësia e Fontit"
+msgid "Keyboard"
+msgstr "Tastiera"
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3150962\n"
-"21\n"
+"06140200.xhp\n"
+"bm_id2322763\n"
"help.text"
-msgid "Finds the <emph>Font size/Font height</emph> attribute."
+msgid "<bookmark_value>keyboard;assigning/editing shortcut keys</bookmark_value><bookmark_value>customizing;keyboard</bookmark_value><bookmark_value>editing;shortcut keys</bookmark_value><bookmark_value>styles;keyboard shortcuts</bookmark_value>"
msgstr ""
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3163717\n"
-"32\n"
+"06140200.xhp\n"
+"hd_id3148882\n"
+"1\n"
"help.text"
-msgid "Font Weight"
-msgstr "Trashësia e fontit"
+msgid "<link href=\"text/shared/01/06140200.xhp\" name=\"Keyboard\">Keyboard</link>"
+msgstr ""
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3150593\n"
-"33\n"
+"06140200.xhp\n"
+"par_id3159411\n"
+"2\n"
"help.text"
-msgid "Finds the <emph>Bold</emph> or the <emph>Bold and Italic</emph> attribute."
+msgid "<ahelp hid=\"HID_CONFIG_ACCEL\">Assigns or edits the shortcut keys for $[officename] commands, or $[officename] Basic macros.</ahelp>"
msgstr ""
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3146928\n"
-"26\n"
+"06140200.xhp\n"
+"par_id3154682\n"
+"21\n"
"help.text"
-msgid "Font Posture"
-msgstr "Vendosja e fontit"
+msgid "You can assign or edit shortcut keys for the current application or for all $[officename] applications."
+msgstr ""
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3154097\n"
-"27\n"
+"06140200.xhp\n"
+"par_id3150144\n"
+"29\n"
"help.text"
-msgid "Finds the <emph>Italic</emph> or the <emph>Bold and Italic</emph> attribute."
+msgid "Avoid assigning shortcut keys that are currently used by your operating system."
msgstr ""
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3148388\n"
-"42\n"
+"06140200.xhp\n"
+"hd_id3147250\n"
+"27\n"
"help.text"
-msgid "Orphans"
-msgstr "Jetimët"
+msgid "$[officename]"
+msgstr "IDE Bazike"
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3156737\n"
-"43\n"
+"06140200.xhp\n"
+"par_id3152425\n"
+"26\n"
"help.text"
-msgid "Finds the <link href=\"text/shared/00/00000005.xhp#schuster\">Orphan Control</link> attribute."
+msgid "<ahelp hid=\"SFX2_RADIOBUTTON_TP_CONFIG_ACCEL_RB_OFFICE\">Displays shortcut keys that are common to all $[officename] applications.</ahelp>"
msgstr ""
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3153159\n"
-"54\n"
+"06140200.xhp\n"
+"hd_id3149095\n"
+"25\n"
"help.text"
-msgid "Page Style"
-msgstr "Stili i faqes"
+msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Writer</caseinline><caseinline select=\"CALC\">Calc</caseinline><caseinline select=\"IMPRESS\">Impress</caseinline><caseinline select=\"DRAW\">Draw</caseinline><caseinline select=\"MATH\">Math</caseinline></switchinline>"
+msgstr ""
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3147045\n"
-"55\n"
+"06140200.xhp\n"
+"par_id3155892\n"
+"24\n"
"help.text"
-msgid "Finds the <emph>Break With Page Style</emph> attribute."
+msgid "<ahelp hid=\"SFX2_RADIOBUTTON_TP_CONFIG_ACCEL_RB_MODULE\">Displays shortcut keys for the current $[officename] application.</ahelp>"
msgstr ""
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3147124\n"
-"48\n"
+"06140200.xhp\n"
+"hd_id3149398\n"
+"3\n"
"help.text"
-msgid "Hyphenation"
-msgstr "Hifenacion"
+msgid "Shortcut keys"
+msgstr "Tastet përshpejtuese"
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3153877\n"
-"49\n"
+"06140200.xhp\n"
+"par_id3149811\n"
+"4\n"
"help.text"
-msgid "Finds the <emph>Hyphenation</emph> attribute."
+msgid "<ahelp hid=\"HID_ACCELCONFIG_LISTBOX\">Lists the shortcut keys and the associated commands. To assign or modify the shortcut key for the command selected in the <emph>Function</emph> list, click a shortcut in this list, and then click <emph>Modify</emph>.</ahelp>"
msgstr ""
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3148773\n"
-"68\n"
+"06140200.xhp\n"
+"hd_id3157909\n"
+"5\n"
"help.text"
-msgid "Scale"
-msgstr "Shkallë"
+msgid "Functions"
+msgstr "Funksionet"
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3147396\n"
-"69\n"
+"06140200.xhp\n"
+"par_id3155388\n"
+"6\n"
"help.text"
-msgid "Finds the <emph>Scale </emph>attribute."
+msgid "Lists the function categories and the $[officename] functions that you can assign shortcut keys to."
msgstr ""
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3148455\n"
-"24\n"
+"06140200.xhp\n"
+"hd_id3155321\n"
+"7\n"
"help.text"
-msgid "Language"
-msgstr "Gjuhë"
+msgid "Category"
+msgstr "Kategori"
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3150716\n"
-"25\n"
+"06140200.xhp\n"
+"par_id3149166\n"
+"8\n"
"help.text"
-msgid "Finds the <emph>Language</emph> attribute (for spelling)."
+msgid "<ahelp hid=\"HID_CONFIGGROUP_ACC_LISTBOX\">Lists the available function categories. To assign shortcuts to Styles, open the \"Styles\" category.</ahelp>"
msgstr ""
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3154511\n"
-"46\n"
+"06140200.xhp\n"
+"hd_id3154380\n"
+"9\n"
"help.text"
-msgid "Tab Stops"
-msgstr "Ndalimet e tabit"
+msgid "Function"
+msgstr "Funksioni"
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3151037\n"
-"47\n"
+"06140200.xhp\n"
+"par_id3159148\n"
+"10\n"
"help.text"
-msgid "Finds paragraphs that use an additional tab set."
+msgid "<ahelp hid=\"HID_CONFIGFUNCTION_ACC_LISTBOX\">Select a function that you want to assign a shortcut key to, click a key combination in the <emph>Shortcut keys</emph> list, and then click <emph>Modify</emph>. If the selected function already has a shortcut key, it is displayed in the <emph>Keys </emph>list.</ahelp>"
msgstr ""
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3154164\n"
-"30\n"
+"06140200.xhp\n"
+"hd_id3153332\n"
+"11\n"
"help.text"
-msgid "Underline"
-msgstr "Nënvizim"
+msgid "Keys"
+msgstr "Tastet"
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3148566\n"
-"31\n"
+"06140200.xhp\n"
+"par_id3150084\n"
+"12\n"
"help.text"
-msgid "Finds characters that use the <emph>Underlined</emph> attribute (single, double, or dotted)."
+msgid "<ahelp hid=\"SFX2:LISTBOX:TP_CONFIG_ACCEL:BOX_ACC_KEY\">Displays the shortcut keys that are assigned to the selected function.</ahelp>"
msgstr ""
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3153099\n"
-"70\n"
+"06140200.xhp\n"
+"hd_id3150772\n"
+"15\n"
"help.text"
-msgid "Vertical text alignment"
-msgstr "Rreshtim vertikal i tekstit"
+msgid "Modify"
+msgstr "Modifiko"
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3145650\n"
-"71\n"
+"06140200.xhp\n"
+"par_id3152909\n"
+"16\n"
"help.text"
-msgid "Finds the <emph>Vertical text alignment </emph>attribute."
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_ACCEL:BTN_ACC_CHANGE\">Assigns the key combination selected in the <emph>Shortcut keys</emph> list to the command selected in the <emph>Function </emph>list.</ahelp>"
msgstr ""
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3147259\n"
-"34\n"
+"06140200.xhp\n"
+"par_id7730033\n"
"help.text"
-msgid "Individual Words"
-msgstr "Falët e veçanta"
+msgid "<ahelp hid=\".\">Deletes the selected element or elements without requiring confirmation.</ahelp>"
+msgstr ""
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3156438\n"
-"35\n"
+"06140200.xhp\n"
+"hd_id3154307\n"
+"17\n"
"help.text"
-msgid "Finds individual words that use the underlined or the strikethrough attribute."
+msgid "Load"
+msgstr "Ngarko"
+
+#: 06140200.xhp
+msgctxt ""
+"06140200.xhp\n"
+"par_id3145609\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_ACCEL:BTN_LOAD\">Replaces the shortcut key configuration with one that was previously saved.</ahelp>"
msgstr ""
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3153948\n"
-"58\n"
+"06140200.xhp\n"
+"hd_id3150823\n"
+"19\n"
"help.text"
-msgid "Character background"
-msgstr "Prapavija e shkronjës"
+msgid "Save"
+msgstr "Ruaje"
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3145300\n"
-"59\n"
+"06140200.xhp\n"
+"par_id3149655\n"
+"20\n"
"help.text"
-msgid "Finds characters that use the <emph>Background</emph> attribute."
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_ACCEL:BTN_SAVE\">Saves the current shortcut key configuration, so that you can load it later.</ahelp>"
msgstr ""
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"hd_id3146791\n"
-"36\n"
+"06140200.xhp\n"
+"hd_id3150824\n"
+"19\n"
"help.text"
-msgid "Line Spacing"
-msgstr "Hapësira në mes linjave"
+msgid "Reset"
+msgstr "Rifillo"
-#: 02100200.xhp
+#: 06140200.xhp
msgctxt ""
-"02100200.xhp\n"
-"par_id3146912\n"
-"37\n"
+"06140200.xhp\n"
+"par_id756248\n"
"help.text"
-msgid "Finds the <emph>Line spacing</emph> (single line, 1.5 lines, double, proportional, at least, lead) attribute."
+msgid "<ahelp hid=\".\">Resets modified values back to the default values.</ahelp>"
msgstr ""
-#: 01010301.xhp
+#: 06140400.xhp
msgctxt ""
-"01010301.xhp\n"
+"06140400.xhp\n"
"tit\n"
"help.text"
-msgid "Medium"
-msgstr "Medium"
+msgid "Toolbars"
+msgstr "Shiriti i veglave"
-#: 01010301.xhp
+#: 06140400.xhp
msgctxt ""
-"01010301.xhp\n"
-"hd_id3148765\n"
+"06140400.xhp\n"
+"hd_id3154100\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010301.xhp\" name=\"Medium\">Medium</link>"
+msgid "<link href=\"text/shared/01/06140400.xhp\" name=\"Toolbars\">Toolbars</link>"
msgstr ""
-#: 01010301.xhp
+#: 06140400.xhp
msgctxt ""
-"01010301.xhp\n"
-"par_id3150278\n"
+"06140400.xhp\n"
+"par_id3150279\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the size of your business card from a number of pre-defined size formats, or a size format that you specify on the <emph>Format </emph>tab.</ahelp>"
+msgid "Lets you customize $[officename] toolbars."
msgstr ""
-#: 01010301.xhp
+#: 06140400.xhp
msgctxt ""
-"01010301.xhp\n"
-"hd_id3149991\n"
-"3\n"
+"06140400.xhp\n"
+"par_idN10601\n"
"help.text"
-msgid "Format"
-msgstr "Formati"
+msgid "Toolbar"
+msgstr "Shiriti i kryesor i veglave"
-#: 01010301.xhp
+#: 06140400.xhp
msgctxt ""
-"01010301.xhp\n"
-"par_id3147543\n"
-"4\n"
+"06140400.xhp\n"
+"par_idN10604\n"
"help.text"
-msgid "Select a size format for your business card."
-msgstr ""
+msgid "Select the toolbar you want to edit."
+msgstr "A dëshironi të redaktoni rregullimin e kolonës?"
-#: 01010301.xhp
+#: 06140400.xhp
msgctxt ""
-"01010301.xhp\n"
-"hd_id3160463\n"
-"5\n"
+"06140400.xhp\n"
+"par_idN10607\n"
"help.text"
-msgid "Continuous"
-msgstr "I vazhdueshëm"
+msgid "New"
+msgstr "E re"
-#: 01010301.xhp
+#: 06140400.xhp
msgctxt ""
-"01010301.xhp\n"
-"par_id3150279\n"
-"6\n"
+"06140400.xhp\n"
+"par_idN1060A\n"
"help.text"
-msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_CONT\">Prints business cards on continuous paper.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Opens the Name dialog, where you enter the name of a new toolbar and select the location of the new toolbar.</ahelp> Opens the Name dialog, where you enter the name of a new toolbar and select the location of the new toolbar."
msgstr ""
-#: 01010301.xhp
+#: 06140400.xhp
msgctxt ""
-"01010301.xhp\n"
-"hd_id3154840\n"
-"7\n"
+"06140400.xhp\n"
+"par_idN106011\n"
"help.text"
-msgid "Sheet"
-msgstr "Fleta"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the name of a new toolbar.</ahelp>"
+msgstr ""
-#: 01010301.xhp
+#: 06140400.xhp
msgctxt ""
-"01010301.xhp\n"
-"par_id3148731\n"
-"8\n"
+"06140400.xhp\n"
+"par_idN106012\n"
"help.text"
-msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_SHEET\">Prints business cards on individual sheets.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the location of the new toolbar.</ahelp>"
msgstr ""
-#: 01010301.xhp
+#: 06140400.xhp
msgctxt ""
-"01010301.xhp\n"
-"hd_id3154894\n"
-"9\n"
+"06140400.xhp\n"
+"par_idN1061B\n"
"help.text"
-msgid "Brand"
-msgstr "Firma"
+msgid "Toolbar"
+msgstr "Shiriti i kryesor i veglave"
-#: 01010301.xhp
+#: 06140400.xhp
msgctxt ""
-"01010301.xhp\n"
-"par_id3155351\n"
-"10\n"
+"06140400.xhp\n"
+"par_idN1061E\n"
"help.text"
-msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_BRAND\">Select the brand of paper that you want to use.</ahelp> Each brand has its own size formats."
+msgid "<ahelp hid=\".\">The Toolbar button opens a submenu</ahelp> with the following commands:"
msgstr ""
-#: 01010301.xhp
+#: 06140400.xhp
msgctxt ""
-"01010301.xhp\n"
-"hd_id3153935\n"
-"11\n"
+"06140400.xhp\n"
+"par_idN10621\n"
"help.text"
-msgid "Type"
-msgstr "Tipi"
+msgid "Rename"
+msgstr "Riemëro"
-#: 01010301.xhp
+#: 06140400.xhp
msgctxt ""
-"01010301.xhp\n"
-"par_id3159201\n"
-"12\n"
+"06140400.xhp\n"
+"par_idN10624\n"
"help.text"
-msgid "<ahelp hid=\"HID_BUSINESS_FMT_PAGE_TYPE\">Select the size format that you want to use. The available formats depend on what you selected in the <emph>Brand</emph> list. If you want to use a custom size format, select <emph>[User]</emph>, and then click the <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> tab to define the format.</ahelp>"
-msgstr ""
+msgid "Opens the <emph>Name</emph> dialog, where you enter a new name for the selected toolbar."
+msgstr "Ju lutem jepe një emër për shkallëzimin e ri:"
-#: 01010301.xhp
+#: 06140400.xhp
msgctxt ""
-"01010301.xhp\n"
-"hd_id3147226\n"
-"13\n"
+"06140400.xhp\n"
+"par_idN1062B\n"
"help.text"
-msgid "Info"
-msgstr "Informacione"
+msgid "New name"
+msgstr "Emri i ri"
-#: 01010301.xhp
+#: 06140400.xhp
msgctxt ""
-"01010301.xhp\n"
-"par_id3153394\n"
-"14\n"
+"06140400.xhp\n"
+"par_idN1062E\n"
"help.text"
-msgid "The paper type and the dimensions of the business card are displayed at the bottom of the <emph>Format</emph> area."
-msgstr ""
+msgid "Enter the new name for the selected toolbar."
+msgstr "Ju lutem jepe një emër për shkallëzimin e ri:"
-#: 05260100.xhp
+#: 06140400.xhp
msgctxt ""
-"05260100.xhp\n"
-"tit\n"
+"06140400.xhp\n"
+"par_idN10631\n"
"help.text"
-msgid "To Page"
-msgstr "Tek faqja"
+msgid "Delete"
+msgstr "Fshije"
-#: 05260100.xhp
+#: 06140400.xhp
msgctxt ""
-"05260100.xhp\n"
-"hd_id3150278\n"
-"1\n"
+"06140400.xhp\n"
+"par_idN10634\n"
"help.text"
-msgid "<link href=\"text/shared/01/05260100.xhp\" name=\"To Page\">To Page</link>"
+msgid "Deletes the selected toolbar after you agree to the question. You can only delete custom toolbars, not the built-in toolbars."
msgstr ""
-#: 05260100.xhp
+#: 06140400.xhp
msgctxt ""
-"05260100.xhp\n"
-"par_id3150756\n"
-"2\n"
+"06140400.xhp\n"
+"par_idN10637\n"
"help.text"
-msgid "<ahelp hid=\".uno:SetAnchorToPage\">Anchors the selected item to the current page.</ahelp>"
-msgstr ""
+msgid "Restore Default Settings"
+msgstr "Parametrat e shfaqjes së sllajdeve..."
-#: 05260100.xhp
+#: 06140400.xhp
msgctxt ""
-"05260100.xhp\n"
-"par_id3149987\n"
-"4\n"
+"06140400.xhp\n"
+"par_idN1063A\n"
"help.text"
-msgid "The anchored item remains on the current page even if you insert or delete text."
+msgid "Restores the default settings."
+msgstr "Parametrat e shfaqjes së sllajdeve..."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1064F\n"
+"help.text"
+msgid "Icons only"
+msgstr "Vetëm titull"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10652\n"
+"help.text"
+msgid "Shows icons only."
+msgstr "Krijo vetëm rresht"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10655\n"
+"help.text"
+msgid "Text only"
+msgstr "I ri (vetëm tekst)"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10658\n"
+"help.text"
+msgid "Shows text only."
+msgstr "I ri (vetëm tekst)"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1065B\n"
+"help.text"
+msgid "Icons & Text"
+msgstr "Vizato tekstin"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1065E\n"
+"help.text"
+msgid "Shows icons and text."
+msgstr "Teksti Perëndimor dhe pikëzimi Aziatik"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1069AAA\n"
+"help.text"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves the selected item up in the list.</ahelp>"
msgstr ""
-#: 05260100.xhp
+#: 06140400.xhp
msgctxt ""
-"05260100.xhp\n"
-"par_id3152821\n"
-"3\n"
+"06140400.xhp\n"
+"par_idN1068AAA\n"
"help.text"
-msgid "The anchor icon is displayed at the top left corner of the page."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Moves the selected item down in the list.</ahelp>"
msgstr ""
-#: 01180000.xhp
+#: 06140400.xhp
msgctxt ""
-"01180000.xhp\n"
-"tit\n"
+"06140400.xhp\n"
+"par_idN10661\n"
"help.text"
-msgid "Save All"
-msgstr "Ruaj të gjitha"
+msgid "Commands"
+msgstr "Komandat"
-#: 01180000.xhp
+#: 06140400.xhp
msgctxt ""
-"01180000.xhp\n"
-"hd_id3150347\n"
-"4\n"
+"06140400.xhp\n"
+"par_idN10664\n"
"help.text"
-msgid "<link href=\"text/shared/01/01180000.xhp\" name=\"Save All\">Save All</link>"
+msgid "Displays a list of commands for the selected toolbar of the current application or document."
msgstr ""
-#: 01180000.xhp
+#: 06140400.xhp
msgctxt ""
-"01180000.xhp\n"
-"par_id3151299\n"
-"1\n"
+"06140400.xhp\n"
+"par_idN10667\n"
"help.text"
-msgid "<ahelp hid=\".uno:SaveAll\">Saves all modified $[officename] documents.</ahelp>"
-msgstr ""
+msgid "Add"
+msgstr "Shto"
-#: 01180000.xhp
+#: 06140400.xhp
msgctxt ""
-"01180000.xhp\n"
-"par_id3148440\n"
-"3\n"
+"06140400.xhp\n"
+"par_idN1066A\n"
"help.text"
-msgid "If you are saving a new file or a copy of a read-only file, the <link href=\"text/shared/01/01070000.xhp\" name=\"Save As\">Save As</link> dialog appears."
+msgid "<ahelp hid=\".\">Opens the Add Commands dialog. Select any command, then click <emph>Add</emph> or drag-and-drop the command into the <emph>Customize</emph> dialog.</ahelp>"
msgstr ""
-#: 05100200.xhp
+#: 06140400.xhp
msgctxt ""
-"05100200.xhp\n"
-"tit\n"
+"06140400.xhp\n"
+"par_idN10675\n"
"help.text"
-msgid "Split Cells"
-msgstr "Ndaj qelizat"
+msgid "Modify"
+msgstr "Modifiko"
-#: 05100200.xhp
+#: 06140400.xhp
msgctxt ""
-"05100200.xhp\n"
-"hd_id3154654\n"
-"1\n"
+"06140400.xhp\n"
+"par_idN10678\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100200.xhp\" name=\"Split Cells\">Split Cells</link>"
+msgid "<ahelp hid=\".\">The Modify button opens a submenu</ahelp> with the following commands:"
msgstr ""
-#: 05100200.xhp
+#: 06140400.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3083451\n"
-"2\n"
+"06140400.xhp\n"
+"par_idN1067B\n"
"help.text"
-msgid "<variable id=\"teilentext\"><ahelp hid=\".uno:SplitCell\">Splits the cell or group of cells horizontally or vertically into the number of cells that you enter.</ahelp></variable>"
+msgid "Rename"
+msgstr "Riemëro"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1067E\n"
+"help.text"
+msgid "Opens the <emph>Rename</emph> dialog, where you enter a new name for the selected command."
+msgstr "Ju lutem jepe një emër për shkallëzimin e ri:"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10685\n"
+"help.text"
+msgid "New name"
+msgstr "Emri i ri"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10688\n"
+"help.text"
+msgid "Enter the new name for the selected command."
+msgstr "Ju lutem jepe një emër për shkallëzimin e ri:"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1068B\n"
+"help.text"
+msgid "Delete"
+msgstr "Fshije"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN1068E\n"
+"help.text"
+msgid "Deletes the selected command after you agree to the question."
msgstr ""
-#: 05100200.xhp
+#: 06140400.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3154024\n"
-"82\n"
+"06140400.xhp\n"
+"par_idN10691\n"
"help.text"
-msgid "Choose <emph>Table - Split Cells</emph>"
+msgid "Restore Default Settings"
+msgstr "Parametrat e shfaqjes së sllajdeve..."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN10694\n"
+"help.text"
+msgid "Restores the default settings."
+msgstr "Parametrat e shfaqjes së sllajdeve..."
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN106A9\n"
+"help.text"
+msgid "Begin a Group"
+msgstr "Emri i grupit"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN106AC\n"
+"help.text"
+msgid "Inserts a separator line under the current toolbar entry."
msgstr ""
-#: 05100200.xhp
+#: 06140400.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3154042\n"
-"83\n"
+"06140400.xhp\n"
+"par_idN106AF\n"
"help.text"
-msgid "On the <emph>Table</emph> Bar, click"
+msgid "Change Icon"
+msgstr "Fshije ikonën"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN106B2\n"
+"help.text"
+msgid "Opens the Change Icon dialog, where you can assign a different icon to the current command."
msgstr ""
-#: 05100200.xhp
+#: 06140400.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3147270\n"
+"06140400.xhp\n"
+"par_idN106B5\n"
"help.text"
-msgid "<image id=\"img_id3147275\" src=\"cmd/sc_splitcell.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3147275\">Icon</alt></image>"
+msgid "Reset Icon"
+msgstr "Fshije ikonën"
+
+#: 06140400.xhp
+msgctxt ""
+"06140400.xhp\n"
+"par_idN106B8\n"
+"help.text"
+msgid "Resets the icon to the default icon."
msgstr ""
-#: 05100200.xhp
+#: 06140400.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3150616\n"
-"84\n"
+"06140400.xhp\n"
+"par_idN106BB\n"
"help.text"
-msgid "Split Cells"
-msgstr "Ndaj qelizat"
+msgid "Save In"
+msgstr "Ruaje macron nw"
-#: 05100200.xhp
+#: 06140400.xhp
msgctxt ""
-"05100200.xhp\n"
-"hd_id3154558\n"
-"3\n"
+"06140400.xhp\n"
+"par_idN106D2\n"
"help.text"
-msgid "Split cell into"
-msgstr "Ndaj qelizën në"
+msgid "<ahelp hid=\".\">Select the location where to load the configuration and where to save it.</ahelp>"
+msgstr ""
-#: 05100200.xhp
+#: 06140400.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3150021\n"
-"4\n"
+"06140400.xhp\n"
+"par_idN106D5\n"
"help.text"
-msgid "<ahelp hid=\"SW:NUMERICFIELD:DLG_SPLIT:ED_COUNT\">Enter the number of rows or columns that you want to split the selected cell(s) into.</ahelp>"
+msgid "For every entry in the list box, an own configuration is maintained. Select one of the open documents or select the application to load and edit the associated configuration. Edit the configuration and save it back to the location from where you loaded it. Editing the configuration in one location does not change the configuration in any other location."
msgstr ""
-#: 05100200.xhp
+#: 06140400.xhp
msgctxt ""
-"05100200.xhp\n"
-"hd_id3145249\n"
-"5\n"
+"06140400.xhp\n"
+"par_idN106D8\n"
"help.text"
-msgid "Direction"
-msgstr "Drejtim"
+msgid "It is not possible to load a configuration from one location and save it to another location."
+msgstr ""
-#: 05100200.xhp
+#: 06140402.xhp
msgctxt ""
-"05100200.xhp\n"
-"hd_id3150568\n"
-"7\n"
+"06140402.xhp\n"
+"tit\n"
"help.text"
-msgid "Horizontally"
-msgstr "Horizontalisht"
+msgid "Change Icon"
+msgstr "Fshije ikonën"
-#: 05100200.xhp
+#: 06140402.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3153927\n"
-"8\n"
+"06140402.xhp\n"
+"par_idN10543\n"
+"help.text"
+msgid "Change Icon"
+msgstr "Fshije ikonën"
+
+#: 06140402.xhp
+msgctxt ""
+"06140402.xhp\n"
+"par_idN10547\n"
"help.text"
-msgid "<ahelp hid=\"SW:IMAGERADIOBUTTON:DLG_SPLIT:RB_HORZ\">Splits the selected cell(s) into the number of rows that you specify in the <emph>Split cell into </emph>box.</ahelp>"
+msgid "Icons"
+msgstr "Ikonë"
+
+#: 06140402.xhp
+msgctxt ""
+"06140402.xhp\n"
+"par_idN1054B\n"
+"help.text"
+msgid "Displays the available icons in %PRODUCTNAME. To replace the icon that you selected in the <link href=\"text/shared/01/06140400.xhp\">Customize</link> dialog, click an icon, then click the <emph>OK</emph> button."
msgstr ""
-#: 05100200.xhp
+#: 06140402.xhp
msgctxt ""
-"05100200.xhp\n"
-"hd_id3147566\n"
-"11\n"
+"06140402.xhp\n"
+"par_idN1055C\n"
"help.text"
-msgid "Into equal proportions"
-msgstr "Në pjesë të barabarta"
+msgid "Import"
+msgstr "Importo"
-#: 05100200.xhp
+#: 06140402.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3154638\n"
-"12\n"
+"06140402.xhp\n"
+"par_idN10560\n"
"help.text"
-msgid "<ahelp hid=\"SW_CHECKBOX_DLG_SPLIT_CB_PROP\">Splits cells into rows of equal height.</ahelp>"
+msgid "<ahelp hid=\".\">Adds new icons to the list of icons. You see a file open dialog that imports the selected icon or icons into the internal icon directory of %PRODUCTNAME.</ahelp>"
msgstr ""
-#: 05100200.xhp
+#: 06140402.xhp
msgctxt ""
-"05100200.xhp\n"
-"hd_id3150765\n"
-"9\n"
+"06140402.xhp\n"
+"par_idN10575\n"
"help.text"
-msgid "Vertically"
-msgstr "Vertikalisht"
+msgid "You can only import icons that are in the PNG file format and that are 16x16 or 26x26 pixels in size."
+msgstr ""
-#: 05100200.xhp
+#: 06140402.xhp
msgctxt ""
-"05100200.xhp\n"
-"par_id3145410\n"
-"10\n"
+"06140402.xhp\n"
+"par_id8224433\n"
"help.text"
-msgid "<ahelp hid=\"SW:IMAGERADIOBUTTON:DLG_SPLIT:RB_VERT\">Splits the selected cell(s) into the number of columns that you specify in the <emph>Split cell into </emph>box.</ahelp>"
+msgid "<ahelp hid=\".\">Click to remove the selected icon from the list. Only user-defined icons can be removed.</ahelp>"
msgstr ""
-#: 05340402.xhp
+#: 06140500.xhp
msgctxt ""
-"05340402.xhp\n"
+"06140500.xhp\n"
"tit\n"
"help.text"
-msgid "Table format"
-msgstr "Formati i tabelës"
+msgid "Events"
+msgstr "Ngjarjet"
-#: 05340402.xhp
+#: 06140500.xhp
msgctxt ""
-"05340402.xhp\n"
-"hd_id3153514\n"
+"06140500.xhp\n"
+"bm_id3152427\n"
+"help.text"
+msgid "<bookmark_value>customizing; events</bookmark_value><bookmark_value>events; customizing</bookmark_value>"
+msgstr ""
+
+#: 06140500.xhp
+msgctxt ""
+"06140500.xhp\n"
+"hd_id3152427\n"
"1\n"
"help.text"
-msgid "Table format"
-msgstr "Formati i tabelës"
+msgid "<link href=\"text/shared/01/06140500.xhp\" name=\"Events\">Events</link>"
+msgstr ""
-#: 05340402.xhp
+#: 06140500.xhp
msgctxt ""
-"05340402.xhp\n"
-"par_id3154350\n"
+"06140500.xhp\n"
+"par_id3152937\n"
"2\n"
"help.text"
-msgid "<variable id=\"tabformtext\"><ahelp hid=\"HID_BROWSER_TABLEFORMAT\" visibility=\"visible\">Formats the selected row(s).</ahelp></variable>"
+msgid "<variable id=\"assignaction\"><ahelp hid=\".\">Assigns macros to program events. The assigned macro runs automatically every time the selected event occurs.</ahelp></variable>"
msgstr ""
-#: 06040200.xhp
+#: 06140500.xhp
msgctxt ""
-"06040200.xhp\n"
-"tit\n"
+"06140500.xhp\n"
+"par_id317748820\n"
"help.text"
-msgid "Replace"
-msgstr "Zëvendëso"
+msgid "The dialog box has reduced functionality when called from the Edit-Sheet menu of a spreadsheet."
+msgstr ""
-#: 06040200.xhp
+#: 06140500.xhp
msgctxt ""
-"06040200.xhp\n"
-"bm_id3152876\n"
+"06140500.xhp\n"
+"par_idN1060A\n"
"help.text"
-msgid "<bookmark_value>AutoCorrect function; replacement table</bookmark_value><bookmark_value>replacement table</bookmark_value><bookmark_value>replacing; AutoCorrect function</bookmark_value><bookmark_value>text; replacing with format</bookmark_value><bookmark_value>frames; AutoCorrect function</bookmark_value><bookmark_value>pictures; inserting automatically</bookmark_value><bookmark_value>AutoCorrect function; pictures and frames</bookmark_value>"
+msgid "Save In"
+msgstr "Ruaje macron nw"
+
+#: 06140500.xhp
+msgctxt ""
+"06140500.xhp\n"
+"par_idN1060E\n"
+"help.text"
+msgid "<ahelp hid=\"705547787\">Select first where to save the event binding, in the current document or in %PRODUCTNAME.</ahelp>"
msgstr ""
-#: 06040200.xhp
+#: 06140500.xhp
msgctxt ""
-"06040200.xhp\n"
-"hd_id3152876\n"
-"1\n"
+"06140500.xhp\n"
+"par_id3153662\n"
+"36\n"
"help.text"
-msgid "<link href=\"text/shared/01/06040200.xhp\" name=\"Replace\">Replace</link>"
+msgid "A macro that is saved with a document can only be run when that document is opened."
msgstr ""
-#: 06040200.xhp
+#: 06140500.xhp
msgctxt ""
-"06040200.xhp\n"
-"par_id3151262\n"
-"2\n"
+"06140500.xhp\n"
+"par_idN1061A\n"
"help.text"
-msgid "<ahelp hid=\"HID_OFAPAGE_AUTOCORR_REPLACE\">Edits the replacement table for automatically correcting or replacing words or abbreviations in your document.</ahelp>"
+msgid "<ahelp hid=\"40000\">The big list box lists the events and the assigned macros. After you selected the location in the <emph>Save In</emph> list box, select an event in the big list box. Then click <emph>Assign Macro</emph>.</ahelp>"
msgstr ""
-#: 06040200.xhp
+#: 06140500.xhp
msgctxt ""
-"06040200.xhp\n"
-"par_id3149999\n"
-"17\n"
+"06140500.xhp\n"
+"hd_id3159258\n"
+"22\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">To enable the replacement table, choose <emph>Tools - AutoCorrect Options</emph>, click the<emph> Options</emph> tab, and then select<emph> Use replacement table</emph>. To use the replacement table while you type, choose <emph>Format - AutoCorrect - While Typing</emph>. </caseinline></switchinline>"
+msgid "Assign Macro"
+msgstr "Cakto Makron"
+
+#: 06140500.xhp
+msgctxt ""
+"06140500.xhp\n"
+"par_id3156152\n"
+"23\n"
+"help.text"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_EVENT:PB_ASSIGN\">Opens the <link href=\"text/shared/01/06130000.xhp\">Macro Selector</link> to assign a macro to the selected event.</ahelp>"
msgstr ""
-#: 06040200.xhp
+#: 06140500.xhp
msgctxt ""
-"06040200.xhp\n"
-"hd_id3155321\n"
-"3\n"
+"06140500.xhp\n"
+"hd_id3154046\n"
+"24\n"
"help.text"
-msgid "Replacement table"
-msgstr "Përdor tabelën zëvendësuese"
+msgid "Remove Macro"
+msgstr "Ekzekuto makron"
-#: 06040200.xhp
+#: 06140500.xhp
msgctxt ""
-"06040200.xhp\n"
-"par_id3152945\n"
-"4\n"
+"06140500.xhp\n"
+"par_id3152349\n"
+"35\n"
"help.text"
-msgid "<ahelp hid=\"HID_OFACTL_AUTOCORR_REPLACE\">Lists the entries for automatically replacing words or abbreviations while you type. To add an entry, enter text in the <emph>Replace </emph>and <emph>With </emph>boxes, and then click <emph>New</emph>. To edit an entry, select it, change the text in the <emph>With</emph> box, and then click <emph>Replace</emph>. To delete an entry, select it, and then click <emph>Delete</emph>.</ahelp>"
+msgid "<ahelp hid=\"SFX2:PUSHBUTTON:TP_CONFIG_EVENT:PB_DELETE\">Deletes the macro assignment for the selected event.</ahelp>"
msgstr ""
-#: 06040200.xhp
+#: 06140500.xhp
msgctxt ""
-"06040200.xhp\n"
-"par_id3153349\n"
-"14\n"
+"06140500.xhp\n"
+"par_id3159147\n"
+"38\n"
"help.text"
-msgid "You can use the AutoCorrect feature to apply a specific character format to a word or abbreviation. Select the formatted text in your document, open this dialog, clear the <emph>Text only</emph> box, and then enter the text that you want to replace in the<emph> Replace</emph> box."
+msgid "<link href=\"text/swriter/01/05060700.xhp\" name=\"List of events\">List of events</link>"
msgstr ""
-#: 06040200.xhp
+#: 06150000.xhp
msgctxt ""
-"06040200.xhp\n"
-"par_id3154173\n"
-"16\n"
+"06150000.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">You can also include frames, graphics, and OLE objects in an AutoCorrect entry, so long as they are anchored <emph>as characters</emph> in the text. Select the frame, graphic or OLE object and at least one text character in front of and behind the object. Open this dialog, type a name for this AutoCorrect entry in the <emph>Replace </emph>box, and then click <emph>New</emph>. </caseinline></switchinline>"
+msgid "XML Filter Settings"
+msgstr "Parametrat e XLM Filtrit"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"bm_id3153272\n"
+"help.text"
+msgid "<bookmark_value>filters; XML filter settings</bookmark_value><bookmark_value>XML filters; settings</bookmark_value>"
msgstr ""
-#: 06040200.xhp
+#: 06150000.xhp
msgctxt ""
-"06040200.xhp\n"
-"hd_id3148943\n"
+"06150000.xhp\n"
+"hd_id3153272\n"
+"2\n"
+"help.text"
+msgid "<link href=\"text/shared/01/06150000.xhp\" name=\"XML Filter Settings\">XML Filter Settings</link>"
+msgstr ""
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3152937\n"
+"1\n"
+"help.text"
+msgid "<ahelp hid=\".uno:OpenXMLFilterSettings\">Opens the <emph>XML Filter Settings </emph>dialog, where you can create, edit, delete, and test filters to import and to export XML files.</ahelp>"
+msgstr ""
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_idN10646\n"
+"help.text"
+msgid "Some filters are only available as optional components during the %PRODUCTNAME installation. To install an optional filter, run the %PRODUCTNAME Setup application, select \"Modify\", and then select the filter that you want in the list of modules."
+msgstr ""
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3154794\n"
+"3\n"
+"help.text"
+msgid "The term <emph>XML filter</emph> is used in the following as a shortcut for the more exact description as an <emph>XSLT based filter</emph>."
+msgstr ""
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3149495\n"
+"4\n"
+"help.text"
+msgid "Term"
+msgstr "Term"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3149549\n"
"5\n"
"help.text"
-msgid "Replace"
-msgstr "Zëvendëso"
+msgid "Description"
+msgstr "Përshkrimi"
-#: 06040200.xhp
+#: 06150000.xhp
msgctxt ""
-"06040200.xhp\n"
-"par_id3147560\n"
+"06150000.xhp\n"
+"par_id3144758\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_REPLACE:ED_SHORT\">Enter the word or abbreviation that you want to replace while you type.</ahelp>"
-msgstr ""
+msgid "XML"
+msgstr "XML Dokument i formularit"
-#: 06040200.xhp
+#: 06150000.xhp
msgctxt ""
-"06040200.xhp\n"
-"hd_id3148947\n"
+"06150000.xhp\n"
+"par_id3152425\n"
"7\n"
"help.text"
-msgid "With:"
-msgstr "me"
+msgid "Extensible Markup Language"
+msgstr "HTML (HyperText Markup Language)"
-#: 06040200.xhp
+#: 06150000.xhp
msgctxt ""
-"06040200.xhp\n"
-"par_id3149456\n"
+"06150000.xhp\n"
+"par_id3155355\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:EDIT:RID_OFAPAGE_AUTOCORR_REPLACE:ED_REPLACE\">Enter the replacement text, graphic, frame, or OLE object that you want to replace the text in the<emph> Replace</emph> box. If you have selected text, a graphic, a frame, or an OLE object in your document, the relevant information is already entered here.</ahelp>"
-msgstr ""
+msgid "XSL"
+msgstr "XSLT Filterat shembuj"
-#: 06040200.xhp
+#: 06150000.xhp
msgctxt ""
-"06040200.xhp\n"
-"hd_id3150400\n"
+"06150000.xhp\n"
+"par_id3145071\n"
"9\n"
"help.text"
-msgid "Text only"
-msgstr "I ri (vetëm tekst)"
+msgid "Extensible Stylesheet Language"
+msgstr "Modulet e gjuhëve në dispozicion"
-#: 06040200.xhp
+#: 06150000.xhp
msgctxt ""
-"06040200.xhp\n"
-"par_id3153379\n"
+"06150000.xhp\n"
+"par_id3156426\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:CHECKBOX:RID_OFAPAGE_AUTOCORR_REPLACE:CB_TEXT_ONLY\">Saves the entry in the <emph>With</emph> box without formatting. When the replacement is made, the text uses the same format as the document text.</ahelp>"
-msgstr ""
+msgid "XSLT"
+msgstr "XSLT Filterat shembuj"
-#: 06040200.xhp
+#: 06150000.xhp
msgctxt ""
-"06040200.xhp\n"
-"hd_id3153797\n"
+"06150000.xhp\n"
+"par_id3154983\n"
"11\n"
"help.text"
-msgid "New"
-msgstr "E re"
+msgid "Extensible Stylesheet Language Transformation. XSLT files are also called XSLT stylesheets."
+msgstr ""
-#: 06040200.xhp
+#: 06150000.xhp
msgctxt ""
-"06040200.xhp\n"
-"par_id3153968\n"
+"06150000.xhp\n"
+"par_idN106E7\n"
+"help.text"
+msgid "The XHTML export filter produces valid \"XHTML 1.0 Strict\" output for Writer, Calc, Draw, and Impress documents."
+msgstr ""
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"hd_id3145382\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"OFFMGR:PUSHBUTTON:RID_OFAPAGE_AUTOCORR_REPLACE:PB_NEW_REPLACE\">Adds or replaces an entry in the replacement table.</ahelp>"
+msgid "Filter list"
+msgstr "Kryerresht i listës"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3147209\n"
+"13\n"
+"help.text"
+msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/filterlist\">Select one or more filters, then click one of the buttons.</ahelp>"
msgstr ""
-#: 06150210.xhp
+#: 06150000.xhp
msgctxt ""
-"06150210.xhp\n"
-"tit\n"
+"06150000.xhp\n"
+"par_idN10711\n"
"help.text"
-msgid "XML Filter output"
-msgstr "Parametrat e XLM Filtrit"
+msgid "Some filters are only available as optional components during the %PRODUCTNAME installation. To install an optional filter, run the %PRODUCTNAME Setup application, select \"Modify\", and then select the filter that you want in the list of modules."
+msgstr ""
-#: 06150210.xhp
+#: 06150000.xhp
msgctxt ""
-"06150210.xhp\n"
-"hd_id3158397\n"
-"6\n"
+"06150000.xhp\n"
+"par_id3153032\n"
+"33\n"
"help.text"
-msgid "<variable id=\"xmlfilteroutput\"><link href=\"text/shared/01/06150210.xhp\" name=\"XML Filter output\">XML Filter output</link></variable>"
+msgid "The lists shows the name and the type of the installed filters."
msgstr ""
-#: 06150210.xhp
+#: 06150000.xhp
msgctxt ""
-"06150210.xhp\n"
-"par_id3153882\n"
-"1\n"
+"06150000.xhp\n"
+"par_id3154577\n"
+"14\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"HID_XML_FILTER_OUTPUT_WINDOW\">Lists the test results of an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
+msgid "Click a filter to select it."
+msgstr "Zgjedh një komandë apo kliko për të zgjedhur temën."
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3149885\n"
+"15\n"
+"help.text"
+msgid "Shift-click or <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>-click to select several filters."
msgstr ""
-#: 06150210.xhp
+#: 06150000.xhp
msgctxt ""
-"06150210.xhp\n"
-"par_id3148731\n"
-"2\n"
+"06150000.xhp\n"
+"par_id3149784\n"
+"16\n"
"help.text"
-msgid "The test results of an import or export XSLT stylesheet are displayed in the <emph>XML Filter output </emph>window. If you want, you can also validate the filter output."
+msgid "Double-click a name to edit the filter."
msgstr ""
-#: 06150210.xhp
+#: 06150000.xhp
msgctxt ""
-"06150210.xhp\n"
-"hd_id3147143\n"
-"3\n"
+"06150000.xhp\n"
+"hd_id3159400\n"
+"17\n"
"help.text"
-msgid "Validate"
+msgid "New"
+msgstr "E re"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3149516\n"
+"18\n"
+"help.text"
+msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/new\">Opens a dialog with the name of a new filter.</ahelp>"
msgstr ""
-#: 06150210.xhp
+#: 06150000.xhp
msgctxt ""
-"06150210.xhp\n"
-"par_id3151315\n"
-"4\n"
+"06150000.xhp\n"
+"hd_id3143270\n"
+"19\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"HID_XML_SOURCE_FILE_VALIDATE\">Validates the contents of the <emph>XML Filter output</emph> window.</ahelp>"
+msgid "Edit"
+msgstr "Edito"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3156192\n"
+"20\n"
+"help.text"
+msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/edit\">Opens a dialog with the name of the selected file.</ahelp>"
msgstr ""
-#: 06150210.xhp
+#: 06150000.xhp
msgctxt ""
-"06150210.xhp\n"
-"par_id3149999\n"
-"5\n"
+"06150000.xhp\n"
+"hd_id3154380\n"
+"21\n"
"help.text"
-msgid "The window splits into two areas and the results of the validation are displayed in the lower area."
+msgid "Test XSLTs"
+msgstr "Parametrat testues"
+
+#: 06150000.xhp
+msgctxt ""
+"06150000.xhp\n"
+"par_id3148491\n"
+"22\n"
+"help.text"
+msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/test\">Opens a dialog with the name of the selected file.</ahelp>"
msgstr ""
-#: 04150200.xhp
+#: 06150000.xhp
msgctxt ""
-"04150200.xhp\n"
-"tit\n"
+"06150000.xhp\n"
+"hd_id3157909\n"
+"23\n"
"help.text"
-msgid "Insert Plug-In"
-msgstr "Shto Plug-in"
+msgid "Delete"
+msgstr "Fshije"
-#: 04150200.xhp
+#: 06150000.xhp
msgctxt ""
-"04150200.xhp\n"
-"bm_id3149962\n"
+"06150000.xhp\n"
+"par_id3153564\n"
+"24\n"
"help.text"
-msgid "<bookmark_value>plug-ins; inserting</bookmark_value><bookmark_value>inserting; plug-ins</bookmark_value>"
+msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/delete\">Deletes the selected file after you confirm the dialog that follows.</ahelp>"
msgstr ""
-#: 04150200.xhp
+#: 06150000.xhp
msgctxt ""
-"04150200.xhp\n"
-"hd_id3149962\n"
-"1\n"
+"06150000.xhp\n"
+"hd_id3151384\n"
+"25\n"
"help.text"
-msgid "Insert Plug-In"
-msgstr "Shto Plug-in"
+msgid "Save as Package"
+msgstr "Paketo -Ruaej si"
-#: 04150200.xhp
+#: 06150000.xhp
msgctxt ""
-"04150200.xhp\n"
-"par_id3155599\n"
-"2\n"
+"06150000.xhp\n"
+"par_id3149575\n"
+"26\n"
"help.text"
-msgid "<variable id=\"plugin\"><ahelp hid=\".uno:InsertPlugin\">Inserts a plug-in into the current document.</ahelp> </variable> A <link href=\"text/shared/00/00000002.xhp#plugin\" name=\"plug-in\">plug-in</link> is a software component that extends the capabilities of a web browser."
+msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/save\">Displays a <emph>Save as </emph>dialog to save the selected file as an XSLT filter package (*.jar).</ahelp>"
msgstr ""
-#: 04150200.xhp
+#: 06150000.xhp
msgctxt ""
-"04150200.xhp\n"
-"hd_id3148585\n"
-"3\n"
+"06150000.xhp\n"
+"hd_id3154758\n"
+"27\n"
"help.text"
-msgid "File/URL"
-msgstr "Skedari / URL\""
+msgid "Open Package"
+msgstr "~Menagjer i paketave"
-#: 04150200.xhp
+#: 06150000.xhp
msgctxt ""
-"04150200.xhp\n"
-"par_id3147399\n"
-"4\n"
+"06150000.xhp\n"
+"par_id3147559\n"
+"28\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/insertplugin/urled\">Enter the URL for the plug-in or click <emph>Browse</emph>, and then locate the plug-in that you want to insert.</ahelp>"
+msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/open\">Displays an <emph>Open </emph>dialog to open a filter from an XSLT filter package (*.jar).</ahelp>"
msgstr ""
-#: 04150200.xhp
+#: 06150000.xhp
msgctxt ""
-"04150200.xhp\n"
-"hd_id3155552\n"
-"5\n"
+"06150000.xhp\n"
+"hd_id3153960\n"
+"29\n"
"help.text"
-msgid "Browse"
-msgstr "Shfleto..."
+msgid "Help"
+msgstr "Ndihma"
-#: 04150200.xhp
+#: 06150000.xhp
msgctxt ""
-"04150200.xhp\n"
-"par_id3143267\n"
-"6\n"
+"06150000.xhp\n"
+"par_id3150865\n"
+"30\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/insertplugin/urlbtn\">Locate the plug-in that you want to insert, and then click <emph>Open</emph>.</ahelp>"
+msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/help\">Displays the help page for this dialog.</ahelp>"
msgstr ""
-#: 04150200.xhp
+#: 06150000.xhp
msgctxt ""
-"04150200.xhp\n"
-"hd_id3149750\n"
-"7\n"
+"06150000.xhp\n"
+"hd_id3152772\n"
+"31\n"
"help.text"
-msgid "Options"
-msgstr "Opcionet"
+msgid "Close"
+msgstr "Mbylle"
-#: 04150200.xhp
+#: 06150000.xhp
msgctxt ""
-"04150200.xhp\n"
-"par_id3150774\n"
-"8\n"
+"06150000.xhp\n"
+"par_id3159086\n"
+"32\n"
"help.text"
-msgid "<ahelp hid=\"cui/ui/insertplugin/pluginoptions\">Enter the parameters for the plug-in using the format <emph>parameter1=\"some text\"</emph>.</ahelp>"
+msgid "<ahelp hid=\"filter/ui/xmlfiltersettings/close\">Closes the dialog.</ahelp>"
msgstr ""
-#: 01010202.xhp
+#: 06150100.xhp
msgctxt ""
-"01010202.xhp\n"
+"06150100.xhp\n"
"tit\n"
"help.text"
-msgid "Format"
-msgstr "Formati"
+msgid "XML Filter"
+msgstr "Parametrat e XLM Filtrit"
-#: 01010202.xhp
+#: 06150100.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3151260\n"
+"06150100.xhp\n"
+"hd_id3153882\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010202.xhp\" name=\"Format\">Format</link>"
+msgid "<variable id=\"xml_filter\"><link href=\"text/shared/01/06150100.xhp\" name=\"XML Filter\">XML Filter</link></variable>"
msgstr ""
-#: 01010202.xhp
+#: 06150100.xhp
msgctxt ""
-"01010202.xhp\n"
-"par_id3153255\n"
+"06150100.xhp\n"
+"par_id3153070\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_LAB_FMT\">Set paper formatting options.</ahelp>"
+msgid "<ahelp hid=\".\">View and edit the settings of an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
msgstr ""
-#: 01010202.xhp
+#: 06150110.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3159194\n"
+"06150110.xhp\n"
+"tit\n"
+"help.text"
+msgid "General"
+msgstr "Të përgjithshme"
+
+#: 06150110.xhp
+msgctxt ""
+"06150110.xhp\n"
+"hd_id3158442\n"
+"1\n"
+"help.text"
+msgid "<variable id=\"general\"><link href=\"text/shared/01/06150110.xhp\" name=\"General\">General</link></variable>"
+msgstr ""
+
+#: 06150110.xhp
+msgctxt ""
+"06150110.xhp\n"
+"par_id3149038\n"
+"12\n"
+"help.text"
+msgid "<ahelp hid=\"\">Enter or edit general information for an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
+msgstr ""
+
+#: 06150110.xhp
+msgctxt ""
+"06150110.xhp\n"
+"hd_id3151097\n"
+"2\n"
+"help.text"
+msgid "Filter name"
+msgstr "Emri i grupit"
+
+#: 06150110.xhp
+msgctxt ""
+"06150110.xhp\n"
+"par_id3150838\n"
"3\n"
"help.text"
-msgid "Horizontal pitch"
-msgstr "Lartësia vertikale"
+msgid "<ahelp hid=\"HID_XML_FILTER_NAME\">Enter the name that you want to display in the list box of the <emph>XML Filter Settings</emph> dialog.</ahelp> You must enter a unique name."
+msgstr ""
-#: 01010202.xhp
+#: 06150110.xhp
msgctxt ""
-"01010202.xhp\n"
-"par_id3154186\n"
+"06150110.xhp\n"
+"hd_id3149119\n"
"4\n"
"help.text"
-msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_HDIST\">Displays the distance between the left edges of adjacent labels or business cards. If you are defining a custom format, enter a value here.</ahelp>"
-msgstr ""
+msgid "Application"
+msgstr "Aplikacioni"
-#: 01010202.xhp
+#: 06150110.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3155555\n"
+"06150110.xhp\n"
+"par_id3149793\n"
"5\n"
"help.text"
-msgid "Vertical pitch"
-msgstr "Lartësia vertikale"
+msgid "<ahelp hid=\"HID_XML_FILTER_APPLICATION\">Select the application that you want to use with the filter.</ahelp>"
+msgstr ""
-#: 01010202.xhp
+#: 06150110.xhp
msgctxt ""
-"01010202.xhp\n"
-"par_id3152425\n"
+"06150110.xhp\n"
+"hd_id3149999\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_VDIST\">Displays the distance between the upper edge of a label or a business card and the upper edge of the label or the business card directly below. If you are defining a custom format, enter a value here.</ahelp>"
-msgstr ""
+msgid "Name of file type"
+msgstr "{&MSSansBold8}Lloji i fajllit"
-#: 01010202.xhp
+#: 06150110.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3147399\n"
+"06150110.xhp\n"
+"par_id3149549\n"
"7\n"
"help.text"
-msgid "Width"
-msgstr "Gjerësia"
+msgid "<ahelp hid=\"HID_XML_FILTER_INTERFACE_NAME\">Enter the name that you want to display in the <emph>File type</emph> box in file dialogs.</ahelp> You must enter a unique name. For import filters, the name appears in the <emph>File type</emph> box of <emph>Open</emph> dialogs. For export filters, the name appears in the <emph>File format</emph> box of <emph>Export</emph> dialogs."
+msgstr ""
-#: 01010202.xhp
+#: 06150110.xhp
msgctxt ""
-"01010202.xhp\n"
-"par_id3147576\n"
+"06150110.xhp\n"
+"hd_id3147834\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_WIDTH\">Displays the width for the label or the business card. If you are defining a custom format, enter a value here.</ahelp>"
-msgstr ""
+msgid "File extension"
+msgstr "Emri i fajllit pa zgjerim"
-#: 01010202.xhp
+#: 06150110.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3150774\n"
+"06150110.xhp\n"
+"par_id3147291\n"
"9\n"
"help.text"
-msgid "Height"
-msgstr "Lartësia"
+msgid "<ahelp hid=\"HID_XML_FILTER_EXTENSION\">Enter the file extension to use when you open a file without specifying a filter. $[officename] uses the file extension to determine which filter to use.</ahelp>"
+msgstr ""
-#: 01010202.xhp
+#: 06150110.xhp
msgctxt ""
-"01010202.xhp\n"
-"par_id3149827\n"
+"06150110.xhp\n"
+"hd_id3157863\n"
"10\n"
"help.text"
-msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_HEIGHT\">Displays the height for the label or business card. If you are defining a custom format, enter a value here.</ahelp>"
+msgid "Comments"
+msgstr "Komentet"
+
+#: 06150110.xhp
+msgctxt ""
+"06150110.xhp\n"
+"par_id3146957\n"
+"11\n"
+"help.text"
+msgid "<ahelp hid=\"HID_XML_FILTER_DESCRIPTION\">Enter a comment (optional).</ahelp>"
msgstr ""
-#: 01010202.xhp
+#: 06150120.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3149182\n"
+"06150120.xhp\n"
+"tit\n"
+"help.text"
+msgid "Transformation"
+msgstr "Kthen transformimin e Fisherit."
+
+#: 06150120.xhp
+msgctxt ""
+"06150120.xhp\n"
+"hd_id3147477\n"
+"21\n"
+"help.text"
+msgid "<variable id=\"transformation\"><link href=\"text/shared/01/06150120.xhp\" name=\"Transformation\">Transformation</link></variable>"
+msgstr ""
+
+#: 06150120.xhp
+msgctxt ""
+"06150120.xhp\n"
+"par_id3154350\n"
+"1\n"
+"help.text"
+msgid "<ahelp visibility=\"visible\" hid=\"\">Enter or edit file information for an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
+msgstr ""
+
+#: 06150120.xhp
+msgctxt ""
+"06150120.xhp\n"
+"hd_id3148668\n"
+"2\n"
+"help.text"
+msgid "DocType"
+msgstr ""
+
+#: 06150120.xhp
+msgctxt ""
+"06150120.xhp\n"
+"par_id3155934\n"
+"3\n"
+"help.text"
+msgid "<ahelp hid=\"HID_XML_FILTER_DOCTYPE\" visibility=\"visible\">Enter the DOCTYPE of the XML file.</ahelp>"
+msgstr ""
+
+#: 06150120.xhp
+msgctxt ""
+"06150120.xhp\n"
+"par_id3155892\n"
"11\n"
"help.text"
-msgid "Left margin"
-msgstr "Margjina e majtë"
+msgid "The public identifier is used to detect the filter when you open a file without specifying a filter."
+msgstr ""
-#: 01010202.xhp
+#: 06150120.xhp
msgctxt ""
-"01010202.xhp\n"
-"par_id3154823\n"
+"06150120.xhp\n"
+"hd_id3155338\n"
"12\n"
"help.text"
-msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_LEFT\">Displays the distance from the left edge of the page to the left edge of the first label or business card. If you are defining a custom format, enter a value here.</ahelp>"
-msgstr ""
+msgid "Browse"
+msgstr "Shfleto..."
-#: 01010202.xhp
+#: 06150120.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3156346\n"
+"06150120.xhp\n"
+"par_id3150506\n"
"13\n"
"help.text"
-msgid "Upper margin"
-msgstr "Margjina e epërme"
+msgid "<ahelp hid=\"HID_XML_FILTER_IMPORT_TEMPLATE_BROWSE\" visibility=\"visible\">Opens a file selection dialog.</ahelp>"
+msgstr ""
-#: 01010202.xhp
+#: 06150120.xhp
msgctxt ""
-"01010202.xhp\n"
-"par_id3150355\n"
+"06150120.xhp\n"
+"hd_id3153527\n"
"14\n"
"help.text"
-msgid "<ahelp hid=\"SW:METRICFIELD:TP_LAB_FMT:FLD_UPPER\">Displays distance from the top edge of the page to the top of the first label or business card. If you are defining a custom format, enter a value here.</ahelp>"
-msgstr ""
+msgid "XSLT for export"
+msgstr "Eksporto si PDF..."
-#: 01010202.xhp
+#: 06150120.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3147573\n"
+"06150120.xhp\n"
+"par_id3152552\n"
"15\n"
"help.text"
-msgid "Columns"
-msgstr "Kolonat"
+msgid "<ahelp hid=\"HID_XML_FILTER_EXPORT_XSLT\" visibility=\"visible\">If this is an export filter, enter the file name of the XSLT stylesheet that you want to use for exporting.</ahelp>"
+msgstr ""
-#: 01010202.xhp
+#: 06150120.xhp
msgctxt ""
-"01010202.xhp\n"
-"par_id3153252\n"
+"06150120.xhp\n"
+"hd_id3149149\n"
+"20\n"
+"help.text"
+msgid "XSLT for import"
+msgstr "AutoCAD Import Filter"
+
+#: 06150120.xhp
+msgctxt ""
+"06150120.xhp\n"
+"par_id3147653\n"
"16\n"
"help.text"
-msgid "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_FMT:FLD_COLUMNS\">Enter the number of labels or business cards that you want to span the width of the page.</ahelp>"
+msgid "<ahelp hid=\"HID_XML_FILTER_IMPORT_XSLT\" visibility=\"visible\">If this is an import filter, enter the file name of the XSLT stylesheet that you want to use for importing.</ahelp>"
msgstr ""
-#: 01010202.xhp
+#: 06150120.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3154143\n"
+"06150120.xhp\n"
+"hd_id3147242\n"
"17\n"
"help.text"
-msgid "Rows"
-msgstr "Rreshtat"
+msgid "Template for import"
+msgstr "AutoCAD Import Filter"
-#: 01010202.xhp
+#: 06150120.xhp
msgctxt ""
-"01010202.xhp\n"
-"par_id3145119\n"
+"06150120.xhp\n"
+"par_id3153320\n"
"18\n"
"help.text"
-msgid "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_FMT:FLD_ROWS\">Enter the number of labels or business cards that you want to span the height of the page.</ahelp>"
+msgid "<ahelp hid=\"HID_XML_FILTER_IMPORT_TEMPLATE\" visibility=\"visible\">Enter the name of the template that you want to use for importing. In the template, styles are defined to display XML tags.</ahelp>"
msgstr ""
-#: 01010202.xhp
+#: 06150120.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3147336\n"
+"06150120.xhp\n"
+"par_id3156330\n"
"19\n"
"help.text"
-msgid "Save"
-msgstr "Ruaje"
+msgid "The path to the directory that contains the template must be included in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Paths</emph>. When you open an XML file whose filter uses the template, the template opens first. In the template, you can map $[officename] styles to display XML tags in the XML document."
+msgstr ""
-#: 01010202.xhp
+#: 06150200.xhp
msgctxt ""
-"01010202.xhp\n"
-"par_id3156152\n"
-"20\n"
+"06150200.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"SW_PUSHBUTTON_TP_LAB_FMT_PB_SAVE\">Saves the current label or business card format.</ahelp>"
-msgstr ""
+msgid "Test XML Filter"
+msgstr "Parametrat e XLM Filtrit"
-#: 01010202.xhp
+#: 06150200.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3146773\n"
-"21\n"
+"06150200.xhp\n"
+"hd_id3150379\n"
+"22\n"
"help.text"
-msgid "Save Label Format"
-msgstr "Ruaj Formatin e Etiketës"
+msgid "<variable id=\"testxml\"><link href=\"text/shared/01/06150200.xhp\" name=\"Test XML Filter\">Test XML Filter</link></variable>"
+msgstr ""
-#: 01010202.xhp
+#: 06150200.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3154897\n"
+"06150200.xhp\n"
+"par_id3146857\n"
"23\n"
"help.text"
-msgid "Brand"
-msgstr "Firma"
+msgid "<ahelp hid=\".\">Tests the XSLT stylesheets used by the selected <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
+msgstr ""
-#: 01010202.xhp
+#: 06150200.xhp
msgctxt ""
-"01010202.xhp\n"
-"par_id3155421\n"
-"24\n"
+"06150200.xhp\n"
+"hd_id3146765\n"
+"1\n"
"help.text"
-msgid "<ahelp hid=\"SW_COMBOBOX_DLG_SAVE_LABEL_CB_MAKE\">Enter or select the desired brand.</ahelp>"
+msgid "Export"
+msgstr "Eksporto"
+
+#: 06150200.xhp
+msgctxt ""
+"06150200.xhp\n"
+"hd_id3153070\n"
+"2\n"
+"help.text"
+msgid "XSLT for export"
+msgstr "Eksporto si PDF..."
+
+#: 06150200.xhp
+msgctxt ""
+"06150200.xhp\n"
+"par_id3147617\n"
+"3\n"
+"help.text"
+msgid "<ahelp hid=\".\">Displays the file name of the XSLT filter that you entered on the <emph>Transformation</emph> tab page.</ahelp>"
msgstr ""
-#: 01010202.xhp
+#: 06150200.xhp
msgctxt ""
-"01010202.xhp\n"
-"hd_id3155180\n"
-"25\n"
+"06150200.xhp\n"
+"hd_id3147090\n"
+"4\n"
"help.text"
-msgid "Type"
-msgstr "Tipi"
+msgid "Transform document"
+msgstr "Ngarko dokumentin"
-#: 01010202.xhp
+#: 06150200.xhp
msgctxt ""
-"01010202.xhp\n"
-"par_id3159158\n"
-"26\n"
+"06150200.xhp\n"
+"par_id3153029\n"
+"5\n"
"help.text"
-msgid "<ahelp hid=\"SW_EDIT_DLG_SAVE_LABEL_ED_TYPE\">Enter or select a label type.</ahelp>"
+msgid "<ahelp hid=\".\">Displays the file name of the document that you want to use to test the XSLT filter.</ahelp>"
msgstr ""
-#: 01010300.xhp
+#: 06150200.xhp
msgctxt ""
-"01010300.xhp\n"
-"tit\n"
+"06150200.xhp\n"
+"hd_id3145160\n"
+"6\n"
"help.text"
-msgid "Business cards"
-msgstr "Vizitkartat"
+msgid "Browse"
+msgstr "Shfleto..."
-#: 01010300.xhp
+#: 06150200.xhp
msgctxt ""
-"01010300.xhp\n"
-"hd_id3149038\n"
-"1\n"
+"06150200.xhp\n"
+"par_id3144436\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010300.xhp\" name=\"Business cards\">Business cards</link>"
+msgid "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_BROWSE\">Locate the file that you want to apply the XML export filter to. The XML code of the transformed file is opened in your default XML editor after transformation.</ahelp>"
msgstr ""
-#: 01010300.xhp
+#: 06150200.xhp
msgctxt ""
-"01010300.xhp\n"
-"par_id3149987\n"
-"2\n"
+"06150200.xhp\n"
+"hd_id3159194\n"
+"8\n"
"help.text"
-msgid "<ahelp hid=\".uno:InsertBusinessCard\">Design and create your own business cards.</ahelp> You can choose from a number of pre-defined size formats or create your own."
+msgid "Current Document"
+msgstr "Përdor dokumentin aktual"
+
+#: 06150200.xhp
+msgctxt ""
+"06150200.xhp\n"
+"par_id3147250\n"
+"9\n"
+"help.text"
+msgid "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_CURRENT\">The front-most open file that matches the XML filter criteria will be used to test the filter. The current XML export filter transforms the file and the resulting XML code is displayed in the <link href=\"text/shared/01/06150210.xhp\">XML Filter output</link> window.</ahelp>"
msgstr ""
-#: 06202000.xhp
+#: 06150200.xhp
msgctxt ""
-"06202000.xhp\n"
-"tit\n"
+"06150200.xhp\n"
+"hd_id3154823\n"
+"10\n"
"help.text"
-msgid "Edit Custom Dictionary"
-msgstr "Edito Fjalorin Sipas Dëshirës"
+msgid "Import"
+msgstr "Importo"
-#: 06202000.xhp
+#: 06150200.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN10542\n"
+"06150200.xhp\n"
+"hd_id3159233\n"
+"11\n"
"help.text"
-msgid "Edit Custom Dictionary"
-msgstr "Edito Fjalorin Sipas Dëshirës"
+msgid "XSLT for import"
+msgstr "AutoCAD Import Filter"
-#: 06202000.xhp
+#: 06150200.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN10546\n"
+"06150200.xhp\n"
+"par_id3153681\n"
+"12\n"
"help.text"
-msgid "Add and delete entries that are used for the <link href=\"text/shared/01/06200000.xhp\">Hangul/Hanja Conversion</link>."
+msgid "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_CURRENT\">Displays the file name of the XSLT filter that you entered on the <emph>Transformation</emph> tab page.</ahelp>"
msgstr ""
-#: 06202000.xhp
+#: 06150200.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN1055F\n"
+"06150200.xhp\n"
+"hd_id3149177\n"
+"13\n"
"help.text"
-msgid "Book"
-msgstr "Libri"
+msgid "Template for import"
+msgstr "AutoCAD Import Filter"
-#: 06202000.xhp
+#: 06150200.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN10563\n"
+"06150200.xhp\n"
+"par_id3156410\n"
+"14\n"
"help.text"
-msgid "<ahelp hid=\"svx:ListBox:RID_SVX_MDLG_HANGULHANJA_EDIT:LB_BOOK\">Select the user-defined dictionary that you want to edit.</ahelp>"
+msgid "<ahelp hid=\"HID_XML_FILTER_TEST_EXPORT_CURRENT\">Displays the file name of the template that you entered on the <emph>Transformation</emph> tab page.</ahelp>"
msgstr ""
-#: 06202000.xhp
+#: 06150200.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN1057A\n"
+"06150200.xhp\n"
+"hd_id3163802\n"
+"15\n"
"help.text"
-msgid "Original"
-msgstr "Origjinal"
+msgid "Transform file"
+msgstr "Emri i fajllit"
-#: 06202000.xhp
+#: 06150200.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN1057E\n"
+"06150200.xhp\n"
+"hd_id3147242\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\"svx:ComboBox:RID_SVX_MDLG_HANGULHANJA_EDIT:LB_ORIGINAL\">Select the entry in the current dictionary that you want to edit. If you want, you can also type a new entry in this box.</ahelp> To move from the Original box to the the first text box in the Suggestions area, press Enter."
+msgid "Display source"
+msgstr "Selekto kodin..."
+
+#: 06150200.xhp
+msgctxt ""
+"06150200.xhp\n"
+"par_id3150444\n"
+"17\n"
+"help.text"
+msgid "<ahelp hid=\"HID_XML_FILTER_TEST_IMPORT_DISPLAY_SOURCE\">Opens the XML source of the selected document in your default XML editor after importing.</ahelp>"
msgstr ""
-#: 06202000.xhp
+#: 06150200.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN10596\n"
+"06150200.xhp\n"
+"hd_id3147078\n"
+"18\n"
"help.text"
-msgid "Replace by character"
-msgstr "Karakteri i rrotulluar nga $(ARG1)"
+msgid "Browse"
+msgstr "Shfleto..."
-#: 06202000.xhp
+#: 06150200.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN1059A\n"
+"06150200.xhp\n"
+"par_id3149885\n"
+"19\n"
"help.text"
-msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_EDIT:CB_REPLACEBYCHAR\">Converts the text on a character by character basis and not on a word by word basis.</ahelp>"
+msgid "<ahelp hid=\"HID_XML_FILTER_TEST_IMPORT_BROWSE\">Opens a file selection dialog. The selected file is opened using the current XML import filter.</ahelp>"
msgstr ""
-#: 06202000.xhp
+#: 06150200.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN105C9\n"
+"06150200.xhp\n"
+"hd_id3153666\n"
+"20\n"
"help.text"
-msgid "Suggestions (max. 8)"
-msgstr "Vlerë maks."
+msgid "Recent File"
+msgstr "Emri i fajllit"
-#: 06202000.xhp
+#: 06150200.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN105CD\n"
+"06150200.xhp\n"
+"par_id3146137\n"
+"21\n"
"help.text"
-msgid "<ahelp hid=\"svx:Edit:RID_SVX_MDLG_HANGULHANJA_EDIT:ED_1\">Type a suggested replacement for the entry that is selected in the Original text box. The replacement word can contain a maximum of eight characters.</ahelp>"
+msgid "<ahelp hid=\"HID_XML_FILTER_TEST_IMPORT_RECENT\">Re-opens the document that was last opened with this dialog.</ahelp>"
msgstr ""
-#: 06202000.xhp
+#: 06150210.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN105E4\n"
+"06150210.xhp\n"
+"tit\n"
"help.text"
-msgid "New"
-msgstr "E re"
+msgid "XML Filter output"
+msgstr "Parametrat e XLM Filtrit"
-#: 06202000.xhp
+#: 06150210.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN105E8\n"
+"06150210.xhp\n"
+"hd_id3158397\n"
+"6\n"
"help.text"
-msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_EDIT:PB_HHE_NEW\">Adds the current replacement definition to the dictionary.</ahelp>"
+msgid "<variable id=\"xmlfilteroutput\"><link href=\"text/shared/01/06150210.xhp\" name=\"XML Filter output\">XML Filter output</link></variable>"
msgstr ""
-#: 06202000.xhp
+#: 06150210.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN105FF\n"
+"06150210.xhp\n"
+"par_id3153882\n"
+"1\n"
"help.text"
-msgid "Delete"
-msgstr "Fshije"
+msgid "<ahelp visibility=\"visible\" hid=\"HID_XML_FILTER_OUTPUT_WINDOW\">Lists the test results of an <link href=\"text/shared/01/06150000.xhp\" name=\"XML filter\">XML filter</link>.</ahelp>"
+msgstr ""
-#: 06202000.xhp
+#: 06150210.xhp
msgctxt ""
-"06202000.xhp\n"
-"par_idN10603\n"
+"06150210.xhp\n"
+"par_id3148731\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_EDIT:PB_HHE_DELETE\">Deletes the selected entry.</ahelp>"
+msgid "The test results of an import or export XSLT stylesheet are displayed in the <emph>XML Filter output </emph>window. If you want, you can also validate the filter output."
msgstr ""
-#: 02230500.xhp
+#: 06150210.xhp
msgctxt ""
-"02230500.xhp\n"
-"tit\n"
+"06150210.xhp\n"
+"hd_id3147143\n"
+"3\n"
"help.text"
-msgid "Merge Document"
-msgstr "~Bashko dokumentin..."
+msgid "Validate"
+msgstr ""
-#: 02230500.xhp
+#: 06150210.xhp
msgctxt ""
-"02230500.xhp\n"
-"hd_id3149000\n"
-"1\n"
+"06150210.xhp\n"
+"par_id3151315\n"
+"4\n"
"help.text"
-msgid "Merge Document"
-msgstr "~Bashko dokumentin..."
+msgid "<ahelp visibility=\"visible\" hid=\"HID_XML_SOURCE_FILE_VALIDATE\">Validates the contents of the <emph>XML Filter output</emph> window.</ahelp>"
+msgstr ""
-#: 02230500.xhp
+#: 06150210.xhp
msgctxt ""
-"02230500.xhp\n"
-"par_id3154408\n"
-"2\n"
+"06150210.xhp\n"
+"par_id3149999\n"
+"5\n"
"help.text"
-msgid "<variable id=\"dokzus\"><ahelp hid=\".uno:MergeDocuments\" visibility=\"visible\">Imports changes made to copies of the same document into the original document. Changes made to footnotes, headers, frames and fields are ignored.</ahelp></variable> Identical changes are merged automatically."
+msgid "The window splits into two areas and the results of the validation are displayed in the lower area."
msgstr ""
#: 06200000.xhp
@@ -39204,7627 +40734,5415 @@ msgctxt ""
msgid "<ahelp hid=\"HID_HANGULDLG_BUTTON_CLOSE\">Closes the dialog.</ahelp>"
msgstr ""
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
+"06201000.xhp\n"
"tit\n"
"help.text"
-msgid "ImageMap Editor"
-msgstr "Edituesi i ImageMapës"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3150502\n"
-"1\n"
-"help.text"
-msgid "ImageMap Editor"
-msgstr "Edituesi i ImageMapës"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3159194\n"
-"2\n"
-"help.text"
-msgid "<variable id=\"imagemaptext\"><ahelp hid=\"SVX:FLOATINGWINDOW:RID_SVXDLG_IMAP\">Allows you to attach URLs to specific areas, called hotspots, on a graphic or a group of graphics. An image map is a group of one or more hotspots.</ahelp></variable>"
-msgstr ""
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3149751\n"
-"3\n"
-"help.text"
-msgid "You can draw three types of hotspots: rectangles, ellipses, and polygons. When you click a hotspot, the URL is opened in the browser window or frame that you specify. You can also specify the text that appears when your mouse rests on the hotspot."
-msgstr ""
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3154317\n"
-"5\n"
-"help.text"
-msgid "Apply"
-msgstr "Zbato"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3150506\n"
-"7\n"
-"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_APPLY\">Applies the changes that you made to the image map.</ahelp>"
-msgstr ""
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3149811\n"
-"help.text"
-msgid "<image id=\"img_id3147275\" src=\"svx/res/nu07.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147275\">Icon</alt></image>"
-msgstr ""
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3153321\n"
-"6\n"
-"help.text"
-msgid "Apply"
-msgstr "Zbato"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3149579\n"
-"8\n"
-"help.text"
-msgid "Open"
-msgstr "Hape"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3155829\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_OPEN\">Loads an existing image map in the <emph>MAP-CERN, MAP-NCSA</emph> or <emph>SIP StarView ImageMap </emph>file format.</ahelp>"
-msgstr ""
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3149795\n"
-"help.text"
-msgid "<image id=\"img_id3155503\" src=\"cmd/sc_open.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3155503\">Icon</alt></image>"
-msgstr ""
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3159158\n"
-"9\n"
-"help.text"
-msgid "Open"
-msgstr "Hape"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3147618\n"
-"11\n"
-"help.text"
-msgid "Save"
-msgstr "Ruaje"
+msgid "Hangul/Hanja Options"
+msgstr "Shndërrimi Hangul/Hanja"
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3153626\n"
-"13\n"
+"06201000.xhp\n"
+"par_idN10542\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_SAVEAS\">Saves the image map in the<emph> MAP-CERN, MAP-NCSA</emph> or <emph>SIP StarView ImageMap </emph>file format.</ahelp>"
-msgstr ""
+msgid "Hangul/Hanja Options"
+msgstr "Shndërrimi Hangul/Hanja"
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3154280\n"
+"06201000.xhp\n"
+"par_idN10546\n"
"help.text"
-msgid "<image id=\"img_id3154923\" src=\"cmd/sc_saveas.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154923\">Icon</alt></image>"
+msgid "Define options for the <link href=\"text/shared/01/06200000.xhp\">Hangul/Hanja conversion</link>."
msgstr ""
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3152772\n"
-"12\n"
-"help.text"
-msgid "Save"
-msgstr "Ruaje"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3150791\n"
-"14\n"
-"help.text"
-msgid "Select"
-msgstr "Zgjedh"
-
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3154073\n"
-"16\n"
+"06201000.xhp\n"
+"par_idN1055F\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_SELECT\">Selects a hotspot in the image map for editing.</ahelp>"
-msgstr ""
+msgid "User-defined dictionaries"
+msgstr "Fjalorët e definuar nga shfrytëzuesi"
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3156214\n"
+"06201000.xhp\n"
+"par_idN10563\n"
"help.text"
-msgid "<image id=\"img_id3153192\" src=\"cmd/sc_drawselect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153192\">Icon</alt></image>"
+msgid "<ahelp hid=\"HID_HANGULHANJA_NEWDICT_DLG\">Lists all user-defined dictionaries. Select the check box next to the dictionary that you want to use. Clear the check box next to the dictionary that you do not want to use.</ahelp>"
msgstr ""
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3153351\n"
-"15\n"
-"help.text"
-msgid "Select"
-msgstr "Zgjedh"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3149807\n"
-"17\n"
-"help.text"
-msgid "Rectangle"
-msgstr "Drejtkëndësh"
-
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3150870\n"
-"19\n"
+"06201000.xhp\n"
+"par_idN1057A\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_RECT\">Draws a rectangular hotspot where you drag in the graphic. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
-msgstr ""
+msgid "New"
+msgstr "E re"
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3150769\n"
+"06201000.xhp\n"
+"par_idN1057E\n"
"help.text"
-msgid "<image id=\"img_id3154297\" src=\"cmd/sc_rect.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154297\">Icon</alt></image>"
+msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_NEW\">Opens the New dictionary dialog box, where you can create a new dictionary.</ahelp>"
msgstr ""
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3157894\n"
-"18\n"
-"help.text"
-msgid "Rectangle"
-msgstr "Drejtkëndësh"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3153518\n"
-"20\n"
-"help.text"
-msgid "Ellipse"
-msgstr "Elips"
-
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3145591\n"
-"22\n"
+"06201000.xhp\n"
+"par_idN10595\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_CIRCLE\">Draws an elliptical hotspot where you drag in the graphic. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
-msgstr ""
+msgid "Name"
+msgstr "Emri"
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3155308\n"
+"06201000.xhp\n"
+"par_idN10599\n"
"help.text"
-msgid "<image id=\"img_id3154011\" src=\"cmd/sc_ellipse.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154011\">Icon</alt></image>"
+msgid "<ahelp hid=\"svx:Edit:RID_SVX_MDLG_HANGULHANJA_NEWDICT:ED_DICTNAME\">Enter a name for the dictionary.</ahelp> To display the new dictionary in the <emph>User-defined dictionaries</emph> list box, click <emph>OK</emph>."
msgstr ""
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3153212\n"
-"21\n"
-"help.text"
-msgid "Ellipse"
-msgstr "Elips"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3153573\n"
-"23\n"
-"help.text"
-msgid "Polygon"
-msgstr "Shumëkëndësh"
-
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3153190\n"
-"25\n"
+"06201000.xhp\n"
+"par_idN105B5\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_POLY\">Draws a polygonal hotspot in the graphic. Click this icon, drag in the graphic, and then click to define one side of the polygon. Move to where you want to place the end of the next side, and then click. Repeat until you have drawn all of the sides of the polygon. When you are finished, double-click to close the polygon. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
-msgstr ""
+msgid "Edit"
+msgstr "Edito"
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3148577\n"
+"06201000.xhp\n"
+"par_idN105B9\n"
"help.text"
-msgid "<image id=\"img_id3156005\" src=\"cmd/sc_polygon.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3156005\">Icon</alt></image>"
+msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_EDIT\">Opens the <link href=\"text/shared/01/06202000.xhp\">Edit Custom Dictionary</link> dialog where you can edit any user-defined dictionary.</ahelp>"
msgstr ""
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3153364\n"
-"24\n"
-"help.text"
-msgid "Polygon"
-msgstr "Shumëkëndësh"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3153140\n"
-"41\n"
-"help.text"
-msgid "Freeform Polygon"
-msgstr "Në shumëkëndësh"
-
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3147046\n"
-"42\n"
+"06201000.xhp\n"
+"par_idN105DE\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_FREEPOLY\">Draws a hotspot that is based on a freeform polygon. Click this icon and move to where you want to draw the hotspot. Drag a freeform line and release to close the shape. After, you can enter the <emph>Address and the Text</emph> for the hotspot, and then select the <emph>Frame</emph> where you want the URL to open.</ahelp>"
-msgstr ""
+msgid "Delete"
+msgstr "Fshije"
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3153877\n"
+"06201000.xhp\n"
+"par_idN105E2\n"
"help.text"
-msgid "<image id=\"img_id3148386\" src=\"cmd/sc_freeline.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148386\">Icon</alt></image>"
+msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_OPT:PB_HHO_DELETE\">Deletes the selected user-defined dictionary.</ahelp>"
msgstr ""
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3159128\n"
-"43\n"
-"help.text"
-msgid "Freeform Polygon"
-msgstr "Në shumëkëndësh"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3145251\n"
-"44\n"
-"help.text"
-msgid "Edit Points"
-msgstr "Edito pikat"
-
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3153745\n"
-"45\n"
+"06201000.xhp\n"
+"par_idN105F1\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_POLYEDIT\">Lets you change the shape of the selected hotspot by editing the anchor points.</ahelp>"
-msgstr ""
+msgid "Options"
+msgstr "Opcionet"
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3145801\n"
+"06201000.xhp\n"
+"par_idN105F5\n"
"help.text"
-msgid "<image id=\"img_id3150113\" src=\"cmd/sc_toggleobjectbeziermode.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3150113\">Icon</alt></image>"
+msgid "Specifies additional options for all dictionaries."
msgstr ""
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3153416\n"
-"46\n"
-"help.text"
-msgid "Edit points"
-msgstr "Edito pikat"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3155600\n"
-"47\n"
-"help.text"
-msgid "Move Points"
-msgstr "Lëviz pikat"
-
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3151318\n"
-"48\n"
+"06201000.xhp\n"
+"par_idN10600\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_POLYMOVE\">Lets you move the individual anchor points of the selected hotspot.</ahelp>"
+msgid "Ignore post-positional word"
msgstr ""
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3146971\n"
+"06201000.xhp\n"
+"par_idN10604\n"
"help.text"
-msgid "<image id=\"img_id3148570\" src=\"cmd/sc_beziermove.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148570\">Icon</alt></image>"
+msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_IGNOREPOST\">Ignores positional characters at the end of Korean words when you search a dictionary.</ahelp>"
msgstr ""
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3153839\n"
-"49\n"
-"help.text"
-msgid "Move Points"
-msgstr "Lëviz pikat"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3145162\n"
-"50\n"
-"help.text"
-msgid "Insert Points"
-msgstr "Shto pikat"
-
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3156355\n"
-"51\n"
+"06201000.xhp\n"
+"par_idN1061B\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_POLYINSERT\">Adds an anchor point where you click on the outline of the hotspot.</ahelp>"
+msgid "Close Conversion dialog automatically after replacement"
msgstr ""
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3150749\n"
+"06201000.xhp\n"
+"par_idN1061F\n"
"help.text"
-msgid "<image id=\"img_id3146793\" src=\"cmd/sc_bezierinsert.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3146793\">Icon</alt></image>"
+msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_AUTOCLOSE\">Closes the Hangul/Hanja Conversion dialog box after you click <emph>Ignore</emph>, <emph>Always Ignore</emph>, <emph>Replace</emph>, or <emph>Always Replace</emph>.</ahelp>"
msgstr ""
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3148915\n"
-"52\n"
-"help.text"
-msgid "Insert Points"
-msgstr "Shto pikat"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3083283\n"
-"53\n"
-"help.text"
-msgid "Delete Points"
-msgstr "Fshij pikat"
-
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3163824\n"
-"54\n"
+"06201000.xhp\n"
+"par_idN10636\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_POLYDELETE\">Deletes the selected anchor point.</ahelp>"
+msgid "Show entries recently used first"
msgstr ""
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3149021\n"
+"06201000.xhp\n"
+"par_idN1063A\n"
"help.text"
-msgid "<image id=\"img_id3154508\" src=\"cmd/sc_bezierdelete.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3154508\">Icon</alt></image>"
+msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_SHOWRECENTLYFIRST\">Shows the replacement suggestion that you selected the last time as the first entry on the list.</ahelp>"
msgstr ""
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3147341\n"
-"55\n"
-"help.text"
-msgid "Delete Points"
-msgstr "Fshij pikat"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3166448\n"
-"26\n"
-"help.text"
-msgid "Active"
-msgstr "Aktiv"
-
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3146918\n"
-"28\n"
+"06201000.xhp\n"
+"par_idN10651\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_ACTIVE\">Disables or enables the hyperlink for the selected hotspot. A disabled hotspot is transparent.</ahelp>"
+msgid "Replace all unique entries automatically"
msgstr ""
-#: 02220000.xhp
+#: 06201000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3155901\n"
+"06201000.xhp\n"
+"par_idN10655\n"
"help.text"
-msgid "<image id=\"img_id3145232\" src=\"svx/res/id016.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3145232\">Icon</alt></image>"
+msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_OPT:CB_AUTOREPLACEUNIQUE\">Automatically replaces words that only have one suggested word replacement.</ahelp>"
msgstr ""
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3155959\n"
-"27\n"
-"help.text"
-msgid "Active"
-msgstr "Aktiv"
-
-#: 02220000.xhp
+#: 06202000.xhp
msgctxt ""
-"02220000.xhp\n"
-"hd_id3153966\n"
-"38\n"
+"06202000.xhp\n"
+"tit\n"
"help.text"
-msgid "Macro"
-msgstr "Makro"
+msgid "Edit Custom Dictionary"
+msgstr "Edito Fjalorin Sipas Dëshirës"
-#: 02220000.xhp
+#: 06202000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3151250\n"
-"40\n"
+"06202000.xhp\n"
+"par_idN10542\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_MACRO\">Lets you assign a macro that runs when you click the selected hotspot in a browser.</ahelp>"
-msgstr ""
+msgid "Edit Custom Dictionary"
+msgstr "Edito Fjalorin Sipas Dëshirës"
-#: 02220000.xhp
+#: 06202000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3145769\n"
+"06202000.xhp\n"
+"par_idN10546\n"
"help.text"
-msgid "<image id=\"img_id3153922\" src=\"cmd/sc_choosemacro.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153922\">Icon</alt></image>"
+msgid "Add and delete entries that are used for the <link href=\"text/shared/01/06200000.xhp\">Hangul/Hanja Conversion</link>."
msgstr ""
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3149239\n"
-"39\n"
-"help.text"
-msgid "Macro"
-msgstr "Makro"
-
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3149207\n"
-"56\n"
-"help.text"
-msgid "Properties"
-msgstr "Vetitë"
-
-#: 02220000.xhp
+#: 06202000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3150785\n"
-"57\n"
+"06202000.xhp\n"
+"par_idN1055F\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_PROPERTY\">Allows you to define the properties of the selected hotspot.</ahelp>"
-msgstr ""
+msgid "Book"
+msgstr "Libri"
-#: 02220000.xhp
+#: 06202000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3159104\n"
+"06202000.xhp\n"
+"par_idN10563\n"
"help.text"
-msgid "<image id=\"img_id3149735\" src=\"cmd/sc_modifyframe.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149735\">Icon</alt></image>"
+msgid "<ahelp hid=\"svx:ListBox:RID_SVX_MDLG_HANGULHANJA_EDIT:LB_BOOK\">Select the user-defined dictionary that you want to edit.</ahelp>"
msgstr ""
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"par_id3153196\n"
-"58\n"
-"help.text"
-msgid "Properties"
-msgstr "Vetitë"
-
-#: 02220000.xhp
+#: 06202000.xhp
msgctxt ""
-"02220000.xhp\n"
-"hd_id3144418\n"
-"29\n"
+"06202000.xhp\n"
+"par_idN1057A\n"
"help.text"
-msgid "Address:"
-msgstr "Adresa"
+msgid "Original"
+msgstr "Origjinal"
-#: 02220000.xhp
+#: 06202000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3157969\n"
-"30\n"
+"06202000.xhp\n"
+"par_idN1057E\n"
"help.text"
-msgid "<ahelp hid=\"SVX:COMBOBOX:RID_SVXDLG_IMAP:CBB_URL\">Enter the URL for the file that you want to open when you click the selected hotspot.</ahelp> If you want to jump to an anchor within the document, the address should be of the form \"file:///C/document_name#anchor_name\"."
+msgid "<ahelp hid=\"svx:ComboBox:RID_SVX_MDLG_HANGULHANJA_EDIT:LB_ORIGINAL\">Select the entry in the current dictionary that you want to edit. If you want, you can also type a new entry in this box.</ahelp> To move from the Original box to the first text box in the Suggestions area, press Enter."
msgstr ""
-#: 02220000.xhp
+#: 06202000.xhp
msgctxt ""
-"02220000.xhp\n"
-"hd_id3146132\n"
-"31\n"
+"06202000.xhp\n"
+"par_idN10596\n"
"help.text"
-msgid "Text:"
-msgstr "Tekst"
+msgid "Replace by character"
+msgstr "Karakteri i rrotulluar nga $(ARG1)"
-#: 02220000.xhp
+#: 06202000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3159090\n"
-"32\n"
+"06202000.xhp\n"
+"par_idN1059A\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAP:EDT_TEXT\">Enter the text that you want to display when the mouse rests on the hotspot in a browser.</ahelp> If you do not enter any text, the <emph>Address </emph>is displayed."
+msgid "<ahelp hid=\"svx:CheckBox:RID_SVX_MDLG_HANGULHANJA_EDIT:CB_REPLACEBYCHAR\">Converts the text on a character by character basis and not on a word by word basis.</ahelp>"
msgstr ""
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3158445\n"
-"33\n"
-"help.text"
-msgid "Frame:"
-msgstr "Kornizë"
-
-#: 02220000.xhp
+#: 06202000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3150208\n"
-"34\n"
+"06202000.xhp\n"
+"par_idN105C9\n"
"help.text"
-msgid "Enter the name of the target frame that you want to open the URL in. You can also select a standard frame name from the list."
-msgstr ""
+msgid "Suggestions (max. 8)"
+msgstr "Vlerë maks."
-#: 02220000.xhp
+#: 06202000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3153231\n"
-"35\n"
+"06202000.xhp\n"
+"par_idN105CD\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100500.xhp\" name=\"List of frame types\">List of frame types</link>"
+msgid "<ahelp hid=\"svx:Edit:RID_SVX_MDLG_HANGULHANJA_EDIT:ED_1\">Type a suggested replacement for the entry that is selected in the Original text box. The replacement word can contain a maximum of eight characters.</ahelp>"
msgstr ""
-#: 02220000.xhp
-msgctxt ""
-"02220000.xhp\n"
-"hd_id3150345\n"
-"36\n"
-"help.text"
-msgid "Graphic View"
-msgstr "Pamja e shënimeve"
-
-#: 02220000.xhp
+#: 06202000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3150382\n"
-"37\n"
+"06202000.xhp\n"
+"par_idN105E4\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_GRAPHWND\"/>Displays the image map, so that you can click and edit the hotspots."
-msgstr ""
+msgid "New"
+msgstr "E re"
-#: 02220000.xhp
+#: 06202000.xhp
msgctxt ""
-"02220000.xhp\n"
-"par_id3150983\n"
+"06202000.xhp\n"
+"par_idN105E8\n"
"help.text"
-msgid "<link href=\"text/shared/guide/keyboard.xhp\" name=\"Controlling the ImageMap Editor With the Keyboard\">Controlling the ImageMap Editor With the Keyboard</link>"
+msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_EDIT:PB_HHE_NEW\">Adds the current replacement definition to the dictionary.</ahelp>"
msgstr ""
-#: 06140102.xhp
-msgctxt ""
-"06140102.xhp\n"
-"tit\n"
-"help.text"
-msgid "Move Menu"
-msgstr "AutoPilot Meny"
-
-#: 06140102.xhp
-msgctxt ""
-"06140102.xhp\n"
-"par_idN10540\n"
-"help.text"
-msgid "Move Menu"
-msgstr "AutoPilot Meny"
-
-#: 06140102.xhp
+#: 06202000.xhp
msgctxt ""
-"06140102.xhp\n"
-"par_idN10558\n"
+"06202000.xhp\n"
+"par_idN105FF\n"
"help.text"
-msgid "Menu position"
-msgstr "<Pozicion tjetër>"
+msgid "Delete"
+msgstr "Fshije"
-#: 06140102.xhp
+#: 06202000.xhp
msgctxt ""
-"06140102.xhp\n"
-"par_idN1055C\n"
+"06202000.xhp\n"
+"par_idN10603\n"
"help.text"
-msgid "<ahelp hid=\".\">Moves the selected menu entry up one position or down one position in the menu when you click an arrow button.</ahelp>"
+msgid "<ahelp hid=\"svx:PushButton:RID_SVX_MDLG_HANGULHANJA_EDIT:PB_HHE_DELETE\">Deletes the selected entry.</ahelp>"
msgstr ""
-#: 06040000.xhp
+#: 06990000.xhp
msgctxt ""
-"06040000.xhp\n"
+"06990000.xhp\n"
"tit\n"
"help.text"
-msgid "AutoCorrect"
-msgstr "AutoCorrect"
-
-#: 06040000.xhp
-#, fuzzy
-msgctxt ""
-"06040000.xhp\n"
-"bm_id3153391\n"
-"help.text"
-msgid "<bookmark_value>AutoCorrect function;switching on and off</bookmark_value><bookmark_value>AutoComplete, see also AutoCorrect/AutoInput</bookmark_value>"
-msgstr "Kthen vitin e një vlere të datës si një numër të plotë."
-
-#: 06040000.xhp
-#, fuzzy
-msgctxt ""
-"06040000.xhp\n"
-"hd_id3153391\n"
-"help.text"
-msgid "AutoCorrect"
-msgstr "AutoCorrect"
-
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"par_id3150838\n"
-"help.text"
-msgid "<variable id=\"autoko\"><ahelp hid=\".uno:AutoCorrectDlg\">Sets the options for automatically replacing text as you type.</ahelp></variable>"
-msgstr ""
-
-#: 06040000.xhp
-msgctxt ""
-"06040000.xhp\n"
-"par_id3147261\n"
-"help.text"
-msgid "The AutoCorrect settings are applied when you press the Spacebar after you enter a word."
-msgstr ""
+msgid "Spellcheck"
+msgstr "Kontrolli i drejtëshkrimit"
-#: 06040000.xhp
+#: 06990000.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3153394\n"
+"06990000.xhp\n"
+"hd_id3147069\n"
+"1\n"
"help.text"
-msgid "To turn on or to turn off the AutoCorrect feature, in $[officename] Calc choose <emph>Tools - Cell Contents - AutoInput</emph>, and in $[officename] Writer choose <emph>Format - AutoCorrect - While Typing</emph>. To apply the AutoCorrect settings to an entire text document, choose <emph>Format - AutoCorrect - Apply</emph>."
+msgid "<link href=\"text/shared/01/06990000.xhp\" name=\"Spellcheck\">Spellcheck</link>"
msgstr ""
-#: 06040000.xhp
+#: 06990000.xhp
msgctxt ""
-"06040000.xhp\n"
-"par_id3146137\n"
+"06990000.xhp\n"
+"par_id3153116\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/swriter/01/05150200.xhp\" name=\"AutoFormat\">AutoCorrect</link>"
+msgid "<ahelp hid=\".\">Checks spelling manually.</ahelp>"
msgstr ""
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Select Source"
-msgstr "Selekto Burimin"
-
-#: 04060100.xhp
-msgctxt ""
-"04060100.xhp\n"
-"hd_id3150758\n"
-"1\n"
-"help.text"
-msgid "Select Source"
-msgstr "Selekto Burimin"
-
-#: 04060100.xhp
+#: 06990000.xhp
msgctxt ""
-"04060100.xhp\n"
-"par_id3152823\n"
-"2\n"
+"06990000.xhp\n"
+"par_id2551957\n"
"help.text"
-msgid "<variable id=\"quellaus\"><ahelp hid=\".uno:TwainSelect\" visibility=\"visible\">Selects the scanner that you want to use.</ahelp></variable>"
+msgid "<link href=\"text/shared/01/06010000.xhp\" name=\"Check\">Spellcheck dialog</link>"
msgstr ""
-#: 05110200.xhp
+#: 07010000.xhp
msgctxt ""
-"05110200.xhp\n"
+"07010000.xhp\n"
"tit\n"
"help.text"
-msgid "Italic"
-msgstr "Italike"
+msgid "New Window"
+msgstr "Dritarja e re"
-#: 05110200.xhp
+#: 07010000.xhp
msgctxt ""
-"05110200.xhp\n"
-"bm_id3155182\n"
+"07010000.xhp\n"
+"bm_id6323129\n"
"help.text"
-msgid "<bookmark_value>text; italics</bookmark_value><bookmark_value>italic text</bookmark_value><bookmark_value>characters; italics</bookmark_value>"
+msgid "<bookmark_value>new windows</bookmark_value><bookmark_value>windows;new</bookmark_value>"
msgstr ""
-#: 05110200.xhp
+#: 07010000.xhp
msgctxt ""
-"05110200.xhp\n"
-"hd_id3155182\n"
+"07010000.xhp\n"
+"hd_id3148882\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05110200.xhp\" name=\"Italic\">Italic</link>"
+msgid "<link href=\"text/shared/01/07010000.xhp\" name=\"New Window\">New Window</link>"
msgstr ""
-#: 05110200.xhp
+#: 07010000.xhp
msgctxt ""
-"05110200.xhp\n"
-"par_id3148882\n"
+"07010000.xhp\n"
+"par_id3158442\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:Italic\">Makes the selected text italic. If the cursor is in a word, the entire word is made italic. If the selection or word is already italic, the formatting is removed.</ahelp>"
+msgid "<ahelp hid=\".uno:NewWindow\">Opens a new window that displays the contents of the current window.</ahelp> You can now view different parts of the same document at the same time."
msgstr ""
-#: 05110200.xhp
+#: 07010000.xhp
msgctxt ""
-"05110200.xhp\n"
-"par_id3156069\n"
+"07010000.xhp\n"
+"par_id3147588\n"
"3\n"
"help.text"
-msgid "If the cursor is not inside a word, and no text is selected, then the font style is applied to the text that you type."
+msgid "Changes made to a document in one window are automatically applied to all of the windows that are open for that document."
msgstr ""
-#: 06050500.xhp
+#: 07080000.xhp
msgctxt ""
-"06050500.xhp\n"
+"07080000.xhp\n"
"tit\n"
"help.text"
-msgid "Options"
-msgstr "Opcionet"
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"bm_id4096499\n"
-"help.text"
-msgid "<bookmark_value>numbering;options</bookmark_value> <bookmark_value>bullet lists; formatting options</bookmark_value> <bookmark_value>font sizes;bullets</bookmark_value>"
-msgstr ""
+msgid "Document List"
+msgstr "Kryerresht i listës"
-#: 06050500.xhp
+#: 07080000.xhp
msgctxt ""
-"06050500.xhp\n"
-"hd_id3147240\n"
+"07080000.xhp\n"
+"hd_id3155620\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/06050500.xhp\" name=\"Options\">Options</link>"
+msgid "<link href=\"text/shared/01/07080000.xhp\" name=\"Document List\">Document List</link>"
msgstr ""
-#: 06050500.xhp
+#: 07080000.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3147212\n"
+"07080000.xhp\n"
+"par_id3147273\n"
"2\n"
"help.text"
-msgid "Sets the formatting options for numbered or bulleted lists. If you want, you can apply formatting to individual levels in the list hierarchy."
-msgstr ""
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"hd_id3155069\n"
-"6\n"
-"help.text"
-msgid "Format"
-msgstr "Formati"
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3153255\n"
-"61\n"
-"help.text"
-msgid "Select the level(s) that you want to modify, and then specify the formatting that you want to use."
-msgstr ""
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"hd_id3153089\n"
-"4\n"
-"help.text"
-msgid "Level"
-msgstr "Nivel"
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3153935\n"
-"5\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:MULTILISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_LEVEL\">Select the level(s) that you want to define the formatting options for.</ahelp> The selected level is highlighted in the preview."
-msgstr ""
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"hd_id3159201\n"
-"9\n"
-"help.text"
-msgid "Numbering"
-msgstr "Numërimi"
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3147261\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_FMT\">Select a numbering style for the selected levels.</ahelp>"
-msgstr ""
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3148548\n"
-"62\n"
-"help.text"
-msgid "Selection"
-msgstr "Selektimet"
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3155391\n"
-"63\n"
-"help.text"
-msgid "Description"
-msgstr "Përshkrimi"
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3156426\n"
-"72\n"
-"help.text"
-msgid "1, 2, 3, ..."
-msgstr "1, 2, 3, ..."
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3156410\n"
-"73\n"
-"help.text"
-msgid "Arabic numerals"
-msgstr ""
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3150693\n"
-"64\n"
-"help.text"
-msgid "A, B, C, ..."
-msgstr "A, B, C, ..."
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3156347\n"
-"65\n"
-"help.text"
-msgid "Capital letters"
-msgstr "Fjalë me shkronja të mëdha"
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3154749\n"
-"66\n"
-"help.text"
-msgid "a, b, c, ..."
-msgstr "a, b, c, ..."
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3156327\n"
-"67\n"
-"help.text"
-msgid "Lowercase letters"
-msgstr "shkronjë e madhe/vogël"
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3143271\n"
-"68\n"
-"help.text"
-msgid "I, II, III, ..."
-msgstr "I, II, III, ..."
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3154143\n"
-"69\n"
-"help.text"
-msgid "Roman numerals (uppercase)"
-msgstr "Kontrollo fjalët me shkronja të mëdha"
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3148474\n"
-"70\n"
-"help.text"
-msgid "i, ii, iii, ..."
-msgstr "i, ii, iii, ..."
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3159344\n"
-"71\n"
-"help.text"
-msgid "Roman numerals (lowercase)"
-msgstr "Romak (I II III)"
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3149580\n"
-"100\n"
-"help.text"
-msgid "A,... AA,... AAA,..."
-msgstr "A, .., AA, .., AAA, ..."
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3154579\n"
-"101\n"
-"help.text"
-msgid "Alphabetical numbering with uppercase letters"
+msgid "Lists the currently open documents. Select the name of a document in the list to switch to that document."
msgstr ""
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3147620\n"
-"102\n"
+"about_meta_tags.xhp\n"
+"tit\n"
"help.text"
-msgid "a,... aa,... aaa,..."
-msgstr "A, .., AA, .., AAA, ..."
+msgid "HTML import and export"
+msgstr "TIFF Import dhe Eksport Filteri"
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3159167\n"
-"103\n"
+"about_meta_tags.xhp\n"
+"bm_id3154380\n"
"help.text"
-msgid "Alphabetical numbering with lowercase letters"
+msgid "<bookmark_value>importing; HTML with META tags</bookmark_value><bookmark_value>exporting; to HTML</bookmark_value><bookmark_value>HTML; importing META tags</bookmark_value><bookmark_value>HTML documents; META tags in</bookmark_value><bookmark_value>META tags</bookmark_value><bookmark_value>tags; META tags</bookmark_value>"
msgstr ""
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3153062\n"
-"76\n"
+"about_meta_tags.xhp\n"
+"hd_id3154380\n"
+"20\n"
"help.text"
-msgid "Bullet"
-msgstr "Pikë"
+msgid "HTML import and export"
+msgstr "TIFF Import dhe Eksport Filteri"
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3145085\n"
-"77\n"
+"about_meta_tags.xhp\n"
+"par_id3145119\n"
+"1\n"
"help.text"
-msgid "Adds a bullet to the beginning of a line. Select this option, and then click the <emph>Character</emph> button to choose a bullet style."
+msgid "When you export a file to an HTML document, the description and the user-defined file properties are included as META <link href=\"text/shared/00/00000002.xhp#tags\" name=\"tags\">tags</link> between the HEAD tags of the exported document. META tags are not displayed in a Web browser, and are used to include information, such as keywords for search engines on your Web page. To set the properties of the current document, choose <emph>File - Properties</emph>, click the <emph>Description</emph> or <emph>User Defined</emph> tabs, and then type the information you want."
msgstr ""
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3154758\n"
-"94\n"
+"about_meta_tags.xhp\n"
+"par_id3148552\n"
+"21\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Bullets are resized to fit the current line height. If you want, you can define a Character Style that uses a different font size for bullets. </caseinline></switchinline>"
+msgid "The following file properties are converted to META tags when you export a file as an HTML document:"
msgstr ""
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3152811\n"
-"79\n"
+"about_meta_tags.xhp\n"
+"par_id3154935\n"
+"2\n"
"help.text"
-msgid "Graphics"
-msgstr "Grafikat"
+msgid "File Property"
+msgstr "Vendos vetinë '#'"
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3157817\n"
-"80\n"
+"about_meta_tags.xhp\n"
+"par_id3151056\n"
+"3\n"
"help.text"
-msgid "Displays an image for the bullet. Select this option, and then click <emph>Select</emph> to locate the image file that you want to use. The image gets embedded into the document."
-msgstr ""
+msgid "<TITLE>"
+msgstr "Titulli"
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3149649\n"
-"110\n"
+"about_meta_tags.xhp\n"
+"par_id3153778\n"
+"4\n"
"help.text"
-msgid "Linked graphics"
-msgstr "Grafikat e lidhura"
+msgid "Subject"
+msgstr "Tema"
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3151210\n"
-"111\n"
+"about_meta_tags.xhp\n"
+"par_id3147228\n"
+"5\n"
"help.text"
-msgid "Displays an image for the bullet. Select this option, and then click <emph>Select</emph> to locate the image file that you want to use. The image gets inserted as a link to the image file."
+msgid "<META NAME=\"CLASSIFICATION\" CONTENT=\"Field Content\">"
msgstr ""
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3148452\n"
-"74\n"
-"help.text"
-msgid "None"
-msgstr "Asnjë"
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3149167\n"
-"75\n"
-"help.text"
-msgid "Does not apply a numbering style."
-msgstr "Ky Stil nuk ekziston."
-
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3145746\n"
-"95\n"
+"about_meta_tags.xhp\n"
+"par_id3154908\n"
+"6\n"
"help.text"
-msgid "The availability of the following fields depends on the style that you select in the <emph>Numbering </emph>box."
-msgstr ""
+msgid "Keywords"
+msgstr "Fjalët kyçe"
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"hd_id3156293\n"
+"about_meta_tags.xhp\n"
+"par_id3156422\n"
"7\n"
"help.text"
-msgid "Before"
-msgstr "Përpara"
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3150393\n"
-"28\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_NUM_OPTIONS:ED_PREFIX\">Enter a character or the text to display in front of the number in the list.</ahelp>"
+msgid "<META NAME=\"KEYWORDS\" CONTENT=\"Field Content\">"
msgstr ""
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"hd_id3153968\n"
-"78\n"
-"help.text"
-msgid "After"
-msgstr "Pas"
-
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3150288\n"
+"about_meta_tags.xhp\n"
+"par_id3151041\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXPAGE_NUM_OPTIONS:ED_SUFFIX\">Enter a character or the text to display behind the number in the list. If you want to create a numbered list that uses the style \"1.)\", enter \".)\" in this box.</ahelp>"
-msgstr ""
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"hd_id3156423\n"
-"29\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Character Styles </caseinline></switchinline>"
-msgstr ""
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3150495\n"
-"30\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_CHARFMT\">Select the Character Style that you want to use in the numbered list.</ahelp> To create or edit a <link href=\"text/swriter/01/05130002.xhp\" name=\"Character Style\">Character Style</link>, open the <emph>Styles and Formatting</emph> window, click the Character Styles icon, right-click a style, and then choose <emph>New</emph>. </caseinline></switchinline>"
-msgstr ""
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"hd_id3147299\n"
-"31\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Show sublevels </caseinline></switchinline>"
-msgstr ""
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3152881\n"
-"32\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_NUM_OPTIONS:NF_ALL_LEVEL\">Enter the number of previous levels to include in the numbering style. For example, if you enter \"2\" and the previous level uses the \"A, B, C...\" numbering style, the numbering scheme for the current level becomes: \"A.1\".</ahelp></caseinline></switchinline>"
-msgstr ""
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"hd_id3155429\n"
-"33\n"
-"help.text"
-msgid "Start at"
-msgstr "Fillo në"
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3146903\n"
-"34\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:NUMERICFIELD:RID_SVXPAGE_NUM_OPTIONS:ED_START\">Enter a new starting number for the current level.</ahelp>"
-msgstr ""
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"hd_id3145114\n"
-"104\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Color </caseinline><caseinline select=\"DRAW\">Color </caseinline></switchinline>"
-msgstr ""
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3156060\n"
-"105\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_BUL_COLOR\">Select a color for the current numbering style.</ahelp></defaultinline></switchinline>"
-msgstr ""
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"hd_id3159180\n"
-"107\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"IMPRESS\">Relative size </caseinline><caseinline select=\"DRAW\">Relative size </caseinline></switchinline>"
-msgstr ""
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"par_id3145364\n"
-"108\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"MATH\"></caseinline><defaultinline><ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_NUM_OPTIONS:MF_BUL_REL_SIZE\">Enter the amount by which you want to resize the bullet character with respect to the font height of the current paragraph.</ahelp></defaultinline></switchinline>"
-msgstr ""
-
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"hd_id3147444\n"
-"81\n"
-"help.text"
-msgid "Character"
-msgstr "Karakter"
+msgid "Description"
+msgstr "Përshkrimi"
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3153144\n"
-"82\n"
+"about_meta_tags.xhp\n"
+"par_id3125863\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_NUM_OPTIONS:PB_BULLET\">Opens the <link href=\"text/shared/01/04100000.xhp\" name=\"Special Characters\">Special Characters</link> dialog, where you can select a bullet symbol.</ahelp>"
+msgid "<META NAME=\"DESCRIPTION\" CONTENT=\"Field Content\">"
msgstr ""
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"hd_id3147327\n"
-"83\n"
-"help.text"
-msgid "Options for graphics:"
-msgstr "Shiriti i opcioneve /Grafikat"
-
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"hd_id3149934\n"
-"84\n"
+"about_meta_tags.xhp\n"
+"par_id3159149\n"
+"10\n"
"help.text"
-msgid "Select..."
-msgstr "Zgjedh"
+msgid "Info fields 1...4"
+msgstr "Fushat e informatës..."
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3152417\n"
-"85\n"
+"about_meta_tags.xhp\n"
+"par_id3157892\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\"SVX:MENUBUTTON:RID_SVXPAGE_NUM_OPTIONS:MB_BITMAP\">Select the graphic, or locate the graphic file that you want to use as a bullet.</ahelp>"
+msgid "<META NAME=\"Info field name\" CONTENT=\"Field Content\">"
msgstr ""
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"hd_id3155746\n"
-"86\n"
-"help.text"
-msgid "Width"
-msgstr "Gjerësia"
-
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3146974\n"
-"87\n"
+"about_meta_tags.xhp\n"
+"par_id3155855\n"
+"22\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_NUM_OPTIONS:MF_WIDTH\">Enter a width for the graphic.</ahelp>"
+msgid "When you import an HTML containing these META tags, the contents of the tags are added to the corresponding $[officename] file property box."
msgstr ""
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"hd_id3150487\n"
-"88\n"
-"help.text"
-msgid "Height"
-msgstr "Lartësia"
-
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3154640\n"
-"89\n"
+"about_meta_tags.xhp\n"
+"par_id0926200812164481\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_NUM_OPTIONS:MF_HEIGHT\">Enter a height for the graphic.</ahelp>"
+msgid "Keywords must be separated by commas. A keyword can contain white space characters or semicolons."
msgstr ""
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"hd_id3153740\n"
-"92\n"
+"about_meta_tags.xhp\n"
+"hd_id3163822\n"
+"12\n"
"help.text"
-msgid "Keep ratio"
-msgstr "Mbaje përpjestimin"
+msgid "Import Tips"
+msgstr "Këshilla të zgjeruara"
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3153097\n"
-"93\n"
+"about_meta_tags.xhp\n"
+"par_id3155307\n"
+"13\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_NUM_OPTIONS:CB_RATIO\">Maintains the size proportions of the graphic.</ahelp>"
+msgid "When you import an HTML document, following META tags are automatically converted to $[officename] fields: <META HTTP-EQUIV=\"REFRESH\"...> and <META NAME=\"...\" ...> , where NAME equals to AUTHOR, CREATED, CHANGED, CHANGEDBY, DESCRIPTION, KEYWORDS or CLASSIFICATION."
msgstr ""
-#: 06050500.xhp
-msgctxt ""
-"06050500.xhp\n"
-"hd_id3147382\n"
-"90\n"
-"help.text"
-msgid "Alignment"
-msgstr "Mbështetje"
-
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3147127\n"
-"91\n"
+"about_meta_tags.xhp\n"
+"par_id3146146\n"
+"15\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_NUM_OPTIONS:LB_ORIENT\">Select the alignment option for the graphic.</ahelp>"
+msgid "Scripts, comments, and META tags that are positioned directly before a TABLE tag are inserted in the first cell of the table."
msgstr ""
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"hd_id3145596\n"
-"96\n"
+"about_meta_tags.xhp\n"
+"par_id3155366\n"
+"16\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">All levels </caseinline></switchinline>"
+msgid "Scripts and META tags in the header of an HTML document are imported and anchored to the first paragraph in the document."
msgstr ""
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3148455\n"
-"97\n"
+"about_meta_tags.xhp\n"
+"par_id3152885\n"
+"14\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Set the numbering options for all of the levels. </caseinline></switchinline>"
+msgid "To set the options for importing HTML tags, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</emph>. A known META tag contains either \"HTTP-EQUIV\" or \"NAME\", and are imported as $[officename] comments. The only exception is <META NAME=\"GENERATOR\"...>, which is ignored."
msgstr ""
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"hd_id3155852\n"
-"98\n"
+"about_meta_tags.xhp\n"
+"hd_id3163717\n"
+"17\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Consecutive numbering </caseinline></switchinline>"
-msgstr ""
+msgid "Export Tips"
+msgstr "Këshilla të zgjeruara"
-#: 06050500.xhp
+#: about_meta_tags.xhp
msgctxt ""
-"06050500.xhp\n"
-"par_id3148880\n"
-"99\n"
+"about_meta_tags.xhp\n"
+"par_id3159180\n"
+"19\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_NUM_OPTIONS:CB_SAME_LEVEL\">Increases the numbering by one as you go down each level in the list hierarchy.</ahelp></caseinline></switchinline>"
+msgid "Comments and script fields at the beginning of the first paragraph in a document are exported to the header of an HTML document. If the document begins with a table, the first paragraph in the first cell of the table is exported to the header of the HTML document."
msgstr ""
-#: online_update.xhp
-#, fuzzy
+#: digitalsignatures.xhp
msgctxt ""
-"online_update.xhp\n"
+"digitalsignatures.xhp\n"
"tit\n"
"help.text"
-msgid "Check for Updates"
-msgstr "E gatshme për përdorim"
+msgid "Digital Signatures"
+msgstr "Nënshkrim digjital..."
-#: online_update.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"online_update.xhp\n"
-"bm_id7647328\n"
+"digitalsignatures.xhp\n"
+"par_idN10544\n"
"help.text"
-msgid "<bookmark_value>updates;checking manually</bookmark_value> <bookmark_value>online updates;checking manually</bookmark_value>"
+msgid "<link href=\"text/shared/01/digitalsignatures.xhp\">Digital Signatures</link>"
msgstr ""
-#: online_update.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"online_update.xhp\n"
-"hd_id315256\n"
+"digitalsignatures.xhp\n"
+"par_idN10548\n"
"help.text"
-msgid "<variable id=\"online_update\"><link href=\"text/shared/01/online_update.xhp\">Check for Updates</link></variable>"
+msgid "<ahelp hid=\".\">Adds and removes digital signatures to and from your document. You can also use the dialog to view certificates.</ahelp>"
msgstr ""
-#: online_update.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id3174230\n"
+"digitalsignatures.xhp\n"
+"par_idN10629\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Mark to enable the automatic check for updates. Choose %PRODUCTNAME - Online Update in the Options dialog box to disable or enable this feature.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">You must save a file before you can apply a digital signature to the file.</ahelp>"
msgstr ""
-#: online_update.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id0116200901063996\n"
+"digitalsignatures.xhp\n"
+"par_idN10644\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to select a folder to download the files.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">You must save a file in OpenDocument format before you can apply a digital signature to the file.</ahelp>"
msgstr ""
-#: online_update.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id6797082\n"
+"digitalsignatures.xhp\n"
+"par_idN1055F\n"
"help.text"
-msgid "<ahelp hid=\".\">You can check for updates manually or automatically.</ahelp>"
-msgstr ""
+msgid "List"
+msgstr "Lista"
-#: online_update.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id4218878\n"
+"digitalsignatures.xhp\n"
+"par_idN10563\n"
"help.text"
-msgid "Checking for updates will also look for updates of all installed extensions."
+msgid "<ahelp hid=\".\">Lists the digital signatures for the current document.</ahelp>"
msgstr ""
-#: online_update.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id8132267\n"
+"digitalsignatures.xhp\n"
+"par_idN10566\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Help - Check for Updates</item> to check manually."
+msgid "The Signed icon<image id=\"img_id4557023\" src=\"xmlsecurity/res/certificate_16.png\" width=\"0.1665in\" height=\"0.1146in\"><alt id=\"alt_id4557023\">Icon</alt></image> indicates a valid digital signature, while the Exclamation mark icon<image id=\"img_id249336\" src=\"xmlsecurity/res/caution_11x16.png\" width=\"0.1665in\" height=\"0.1146in\"><alt id=\"alt_id249336\">Icon</alt></image> indicates an invalid digital signature."
msgstr ""
-#: online_update.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id702230\n"
+"digitalsignatures.xhp\n"
+"par_id0821200910573716\n"
"help.text"
-msgid "You can disable or enable the automatic check in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/online_update.xhp\">Online Update</link>."
+msgid "See also <link href=\"text/shared/guide/digital_signatures.xhp\">Digital Signatures</link>."
msgstr ""
-#: online_update.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id3422345\n"
+"digitalsignatures.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "If an update is available, an icon<image id=\"img_id3155415\" src=\"extensions/source/update/ui/onlineupdate_16.png\" width=\"0.4583in\" height=\"0.1354in\"><alt id=\"alt_id3155415\">Icon</alt></image> on the menu bar will notify you of the update. Click the icon to open a dialog with more information."
-msgstr ""
+msgid "View Certificate"
+msgstr "Pamja e shënimeve"
-#: online_update.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id9313638\n"
+"digitalsignatures.xhp\n"
+"par_idN10570\n"
"help.text"
-msgid "You will see the <link href=\"text/shared/01/online_update_dialog.xhp\">Check for Updates</link> dialog with some information about the online update of %PRODUCTNAME."
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/optionen/viewcertificate.xhp\">View Certificate</link> dialog.</ahelp>"
msgstr ""
-#: online_update.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id9951780\n"
+"digitalsignatures.xhp\n"
+"par_idN10581\n"
"help.text"
-msgid "Enable an Internet connection for %PRODUCTNAME."
-msgstr ""
+msgid "Sign Document"
+msgstr "Duke i krijuar dokumentet..."
-#: online_update.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id6479384\n"
+"digitalsignatures.xhp\n"
+"par_idN10585\n"
"help.text"
-msgid "If you need a proxy server, enter the proxy settings in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet - Proxy."
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/01/selectcertificate.xhp\">Select Certificate</link> dialog.</ahelp>"
msgstr ""
-#: online_update.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id3639027\n"
+"digitalsignatures.xhp\n"
+"par_idN10596\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Check for Updates</item> to check for the availability of a newer version of your office suite."
-msgstr ""
+msgid "Remove"
+msgstr "Largo"
-#: online_update.xhp
+#: digitalsignatures.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id3722342\n"
+"digitalsignatures.xhp\n"
+"par_idN1059A\n"
"help.text"
-msgid "If a newer version is available and %PRODUCTNAME is not set up for automatic downloading, then you can select any of the following actions:"
+msgid "<ahelp hid=\".\">Removes the selected source from the list.</ahelp>"
msgstr ""
-#: online_update.xhp
-msgctxt ""
-"online_update.xhp\n"
-"par_id5106662\n"
-"help.text"
-msgid "Download the new version."
-msgstr "Ruaj versionin e ri"
-
-#: online_update.xhp
-msgctxt ""
-"online_update.xhp\n"
-"par_id4931485\n"
-"help.text"
-msgid "Install the downloaded files."
-msgstr "Fajllat e simbolit (*.sms)"
-
-#: online_update.xhp
+#: extensionupdate.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id9168980\n"
+"extensionupdate.xhp\n"
+"tit\n"
"help.text"
-msgid "Abort this check for updates for now."
-msgstr ""
+msgid "Extension Update"
+msgstr "Azhuro të gjitha"
-#: online_update.xhp
+#: extensionupdate.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id9766533\n"
+"extensionupdate.xhp\n"
+"hd_id9688100\n"
"help.text"
-msgid "If %PRODUCTNAME is configured to download the files automatically, the download starts immediately. A download continues even when you minimize the dialog."
-msgstr ""
+msgid "Extension Update"
+msgstr "Azhuro të gjitha"
-#: online_update.xhp
+#: extensionupdate.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id927152\n"
+"extensionupdate.xhp\n"
+"par_id5084688\n"
"help.text"
-msgid "If automatic downloads are disabled, start the download manually."
+msgid "<ahelp hid=\".\">Click the <emph>Check for Updates</emph> button in the <link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link> to check for online updates for all installed extensions. To check for online updates for only the selected extension, right-click to open the context menu, then choose <emph>Update</emph>.</ahelp>"
msgstr ""
-#: online_update.xhp
+#: extensionupdate.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id6081728\n"
+"extensionupdate.xhp\n"
+"par_id6401257\n"
"help.text"
-msgid "If no update was found, you can close the dialog."
+msgid "When you click the <item type=\"menuitem\">Check for Updates</item> button or choose the <item type=\"menuitem\">Update</item> command, the Extension Update dialog is displayed and the check for availability of updates starts immediately."
msgstr ""
-#: online_update.xhp
+#: extensionupdate.xhp
msgctxt ""
-"online_update.xhp\n"
-"par_id9219641\n"
+"extensionupdate.xhp\n"
+"par_id5841242\n"
"help.text"
-msgid "You need Administrator rights to update %PRODUCTNAME."
+msgid "<ahelp hid=\".\">While checking for updates, you see a progress indicator. Wait for some messages to show up in the dialog, or click Cancel to abort the update check.</ahelp>"
msgstr ""
-#: 02050000.xhp
-msgctxt ""
-"02050000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Copy"
-msgstr "Kopjo"
-
-#: 02050000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"02050000.xhp\n"
-"bm_id3154824\n"
+"extensionupdate.xhp\n"
+"par_id6794030\n"
"help.text"
-msgid "<bookmark_value>clipboard; Unix</bookmark_value><bookmark_value>copying; in Unix</bookmark_value>"
+msgid "If no updates are available, the message in the dialog tells you there are no updates. Close the dialog."
msgstr ""
-#: 02050000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"02050000.xhp\n"
-"hd_id3152876\n"
-"1\n"
+"extensionupdate.xhp\n"
+"par_id7096774\n"
"help.text"
-msgid "<link href=\"text/shared/01/02050000.xhp\" name=\"Copy\">Copy</link>"
+msgid "If updates are available, the updates can either be installed automatically, or you must respond with some action:"
msgstr ""
-#: 02050000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"02050000.xhp\n"
-"par_id3154682\n"
-"2\n"
+"extensionupdate.xhp\n"
+"par_id6420484\n"
"help.text"
-msgid "<ahelp hid=\".uno:Copy\">Copies the selection to the clipboard.</ahelp>"
+msgid "The Extension Update dialog may contain entries which are not selectable and hence no automatic update can be performed."
msgstr ""
-#: 02050000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"02050000.xhp\n"
-"par_id3155552\n"
-"4\n"
+"extensionupdate.xhp\n"
+"par_id6986602\n"
"help.text"
-msgid "Each time you copy, the existing content of the clipboard is overwritten."
+msgid "Dependencies are not fulfilled (the update needs some more or newer files to be installed)."
msgstr ""
-#: 02050000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"02050000.xhp\n"
-"par_id3154824\n"
-"3\n"
+"extensionupdate.xhp\n"
+"par_id616779\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"UNIX\"><variable id=\"unixkopieren\">$[officename] also supports the clipboard under Unix; however, you must use the $[officename] commands, such as Ctrl+C.</variable></caseinline></switchinline>"
+msgid "Insufficient user rights (the Extension Manager was started from the menu, but shared extensions can only be modified when %PRODUCTNAME does not run, and only by a user with appropriate rights). See <link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link> for details."
msgstr ""
-#: 04990000.xhp
-msgctxt ""
-"04990000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Picture"
-msgstr "Fotografi"
-
-#: 04990000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"04990000.xhp\n"
-"hd_id3156045\n"
-"1\n"
+"extensionupdate.xhp\n"
+"par_id791039\n"
"help.text"
-msgid "<link href=\"text/shared/01/04990000.xhp\" name=\"Picture\">Picture</link>"
+msgid "A manual update is necessary."
msgstr ""
-#: 04990000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"04990000.xhp\n"
-"par_id3154613\n"
-"2\n"
+"extensionupdate.xhp\n"
+"par_id757469\n"
"help.text"
-msgid "<ahelp hid=\".\">Select the source for a picture that you want to insert.</ahelp>"
+msgid "<ahelp hid=\".\">When you click the Install button the Download and Installation dialog is displayed.</ahelp>"
msgstr ""
-#: 04990000.xhp
+#: extensionupdate.xhp
msgctxt ""
-"04990000.xhp\n"
-"hd_id3158442\n"
-"3\n"
+"extensionupdate.xhp\n"
+"par_id5189062\n"
"help.text"
-msgid "<link href=\"text/shared/01/04140000.xhp\" name=\"From File\">From File</link>"
+msgid "All extensions which can be directly downloaded are downloaded now. The progress is shown in the Download and Installation dialog. If an extension cannot be downloaded, a message is displayed. The operation continues for the remaining extensions."
msgstr ""
-#: 05340300.xhp
-msgctxt ""
-"05340300.xhp\n"
-"tit\n"
-"help.text"
-msgid "Alignment"
-msgstr "Mbështetje"
-
-#: 05340300.xhp
+#: extensionupdate.xhp
msgctxt ""
-"05340300.xhp\n"
-"bm_id3154545\n"
+"extensionupdate.xhp\n"
+"par_id3949095\n"
"help.text"
-msgid "<bookmark_value>aligning; cells</bookmark_value><bookmark_value>cells; aligning</bookmark_value>"
+msgid "Some extensions may be marked with the phrase \"browser based update\". These extensions cannot be downloaded by the Extension Manager. A web browser must be opened to download the extension update from a particular web site. That site may require several more user interaction to download the extension. After downloading you must install the extension manually, for example by double-clicking the extension's icon in a file browser."
msgstr ""
-#: 05340300.xhp
+#: extensionupdate.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3154545\n"
-"1\n"
+"extensionupdate.xhp\n"
+"par_id3729056\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340300.xhp\" name=\"Alignment\">Alignment</link>"
+msgid "For extensions marked as \"browser based update\", the Extension Manager will open your web browser on the respective web site. This happens when you close the dialog, after downloading any other extension updates. If there are no extensions which can be directly downloaded then the web browser is started immediately."
msgstr ""
-#: 05340300.xhp
+#: extensionupdate.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3155577\n"
-"52\n"
+"extensionupdate.xhp\n"
+"par_id6854457\n"
"help.text"
-msgid "<ahelp hid=\"HID_ALIGNMENT\">Sets the alignment options for the contents of the current cell, or the selected cells.</ahelp>"
+msgid "After the last extension has been downloaded, the installation begins. First all installed extensions for which an update could be downloaded successfully, are removed. Then the updated extensions are installed. If an error occurs, a message that the installation failed is displayed, but the operation proceeds."
msgstr ""
-#: 05340300.xhp
-msgctxt ""
-"05340300.xhp\n"
-"hd_id3153124\n"
-"54\n"
-"help.text"
-msgid "Horizontal"
-msgstr "Horizontal"
-
-#: 05340300.xhp
+#: extensionupdate.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3144436\n"
-"55\n"
+"extensionupdate.xhp\n"
+"par_id3372295\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGNMENT_LB_HORALIGN\">Select the horizontal alignment option that you want to apply to the cell contents.</ahelp>"
+msgid "If all updates have been processed the Download and Installation dialog shows that it has finished. You can abort the download and installation process by clicking the <emph>Abort Update</emph> button."
msgstr ""
-#: 05340300.xhp
+#: extensionupdate.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3146109\n"
-"56\n"
+"extensionupdate.xhp\n"
+"hd_id5699942\n"
"help.text"
-msgid "Default"
-msgstr "Standarde"
+msgid "Show all Updates"
+msgstr "Trego të gjitha dritare"
-#: 05340300.xhp
+#: extensionupdate.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3166445\n"
-"57\n"
+"extensionupdate.xhp\n"
+"par_id641193\n"
"help.text"
-msgid "Aligns numbers to the right, and text to the left."
+msgid "<ahelp hid=\".\">By default, only the downloadable extensions are shown in the dialog. Mark <emph>Show all Updates</emph> to see also other extensions and error messages.</ahelp>"
msgstr ""
-#: 05340300.xhp
+#: extensionupdate.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3147010\n"
-"10\n"
+"extensionupdate.xhp\n"
+"par_id7634510\n"
"help.text"
-msgid "If the <emph>Default</emph> option is selected, numbers will be aligned to the right and text will be left-justified."
+msgid "<link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link>"
msgstr ""
-#: 05340300.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3153577\n"
-"58\n"
+"formatting_mark.xhp\n"
+"tit\n"
"help.text"
-msgid "Left"
-msgstr "Majtas"
+msgid "Formatting Mark"
+msgstr "Shenjë piksimi"
-#: 05340300.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3150506\n"
-"59\n"
+"formatting_mark.xhp\n"
+"bm_id9930722\n"
"help.text"
-msgid "<variable id=\"linkstext\"><ahelp hid=\".uno:AlignLeft\">Aligns the contents of the cell to the left.</ahelp></variable>"
+msgid "<bookmark_value>CTL;(not) wrapping words</bookmark_value> <bookmark_value>words;wrapping in CTL</bookmark_value>"
msgstr ""
-#: 05340300.xhp
-msgctxt ""
-"05340300.xhp\n"
-"hd_id3156347\n"
-"60\n"
-"help.text"
-msgid "Right"
-msgstr "Djathtas"
-
-#: 05340300.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3148538\n"
-"61\n"
+"formatting_mark.xhp\n"
+"hd_id030220091035120\n"
"help.text"
-msgid "<variable id=\"rechtstext\"><ahelp hid=\".uno:AlignRight\">Aligns the contents of the cell to the right.</ahelp></variable>"
+msgid "<variable id=\"formattingmark\"><link href=\"text/shared/01/formatting_mark.xhp\">Formatting Mark</link></variable>"
msgstr ""
-#: 05340300.xhp
-msgctxt ""
-"05340300.xhp\n"
-"hd_id3153541\n"
-"62\n"
-"help.text"
-msgid "Center"
-msgstr "Qendër"
-
-#: 05340300.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3154380\n"
-"63\n"
+"formatting_mark.xhp\n"
+"par_id0302200910351248\n"
"help.text"
-msgid "<variable id=\"zentrierttext\"><ahelp hid=\".\">Horizontally centers the contents of the cell.</ahelp></variable>"
+msgid "<ahelp hid=\".\">Opens a submenu to insert special formatting marks. Enable CTL for more commands.</ahelp>"
msgstr ""
-#: 05340300.xhp
-#, fuzzy
+#: formatting_mark.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3159166\n"
-"64\n"
+"formatting_mark.xhp\n"
+"hd_id9996948\n"
"help.text"
-msgid "Justified"
-msgstr "Rrafshuar në të dy anët"
+msgid "Non-breaking space"
+msgstr "Shto hapësirën e pandërprerë"
-#: 05340300.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3153665\n"
-"65\n"
+"formatting_mark.xhp\n"
+"par_id8326975\n"
"help.text"
-msgid "<variable id=\"blocktext\"><ahelp hid=\".uno:AlignBlock\">Aligns the contents of the cell to the left and to the right cell borders.</ahelp></variable>"
+msgid "<ahelp hid=\".\">Inserts a space that will keep bordering characters together on line breaks.</ahelp>"
msgstr ""
-#: 05340300.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_idN1079C\n"
+"formatting_mark.xhp\n"
+"hd_id6383556\n"
"help.text"
-msgid "Filled"
-msgstr "Hark, i mbushur"
+msgid "Non-breaking hyphen"
+msgstr "Shto hifenin e pandërprerë"
-#: 05340300.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_idN107A0\n"
+"formatting_mark.xhp\n"
+"par_id8469191\n"
"help.text"
-msgid "Repeats the cell contents (number and text) until the visible area of the cell is filled. This feature does not work on text that contains line breaks."
+msgid "<ahelp hid=\".\">Inserts a hyphen that will keep bordering characters together on line breaks.</ahelp>"
msgstr ""
-#: 05340300.xhp
-#, fuzzy
+#: formatting_mark.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_idN1079D\n"
+"formatting_mark.xhp\n"
+"hd_id3306680\n"
"help.text"
-msgid "Distributed"
-msgstr "Shpërndarje"
+msgid "Optional hyphen"
+msgstr "Shto vizën bashkangjitëse opcionale"
-#: 05340300.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_idN107A1\n"
+"formatting_mark.xhp\n"
+"par_id9407330\n"
"help.text"
-msgid "Aligns contents evenly across the whole cell. Unlike <emph>Justified</emph>, it justifies the very last line of text, too."
+msgid "<ahelp hid=\".\">Inserts an invisible hyphen within a word that will appear and create a line break once it becomes the last character in a line.</ahelp>"
msgstr ""
-#: 05340300.xhp
-msgctxt ""
-"05340300.xhp\n"
-"hd_id3158432\n"
-"41\n"
-"help.text"
-msgid "Indent"
-msgstr "Kryerresht"
-
-#: 05340300.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3153716\n"
-"42\n"
+"formatting_mark.xhp\n"
+"hd_id2295907\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_ALIGNMENT:ED_INDENT\">Indents from the left edge of the cell by the amount that you enter.</ahelp>"
+msgid "No-width optional break"
msgstr ""
-#: 05340300.xhp
-msgctxt ""
-"05340300.xhp\n"
-"hd_id3149903\n"
-"66\n"
-"help.text"
-msgid "Vertical"
-msgstr "Vertikal"
-
-#: 05340300.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3148924\n"
-"67\n"
+"formatting_mark.xhp\n"
+"par_id1536301\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGNMENT_LB_VERALIGN\">Select the vertical alignment option that you want to apply to the cell contents.</ahelp>"
+msgid "<ahelp hid=\".\">Inserts an invisible space within a word that will insert a line break once it becomes the last character in a line. Available when complex text layout (CTL) is enabled.</ahelp>"
msgstr ""
-#: 05340300.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3146848\n"
-"68\n"
+"formatting_mark.xhp\n"
+"hd_id3245643\n"
"help.text"
-msgid "Default"
-msgstr "Standarde"
+msgid "No-width no break"
+msgstr "Pa thyerje të faqes"
-#: 05340300.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3150822\n"
-"69\n"
+"formatting_mark.xhp\n"
+"par_id1085238\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGNMENT_LB_VERALIGN\">Aligns the cell contents to the bottom of the cell.</ahelp>"
+msgid "<ahelp hid=\".\">Inserts an invisible space within a word that will keep the word together at the end of a line. Available when complex text layout (CTL) is enabled.</ahelp>"
msgstr ""
-#: 05340300.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3147531\n"
-"70\n"
+"formatting_mark.xhp\n"
+"hd_id4634540\n"
"help.text"
-msgid "Top"
-msgstr "Lartë"
+msgid "Left-to-right mark"
+msgstr "Nga e djathta në të majtë (vertikalisht)"
-#: 05340300.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3145085\n"
-"71\n"
+"formatting_mark.xhp\n"
+"par_id6690878\n"
"help.text"
-msgid "<variable id=\"obentext\"><ahelp hid=\".uno:AlignTop\">Aligns the contents of the cell to the upper edge of the cell.</ahelp></variable>"
+msgid "<ahelp hid=\".\">Inserts a text direction mark that affects the text direction of any text following the mark. Available when complex text layout (CTL) is enabled.</ahelp>"
msgstr ""
-#: 05340300.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3156343\n"
-"72\n"
+"formatting_mark.xhp\n"
+"hd_id9420148\n"
"help.text"
-msgid "Bottom"
-msgstr "Poshtë"
+msgid "Right-to-left mark"
+msgstr "Nga e djathta në të majtë (vertikalisht)"
-#: 05340300.xhp
+#: formatting_mark.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3152813\n"
-"26\n"
+"formatting_mark.xhp\n"
+"par_id923184\n"
"help.text"
-msgid "<variable id=\"untentext\"><ahelp hid=\".\">Aligns the contents of the cell to the lower edge of the cell.</ahelp></variable>"
+msgid "<ahelp hid=\".\">Inserts a text direction mark that affects the text direction of any text following the mark. Available when complex text layout (CTL) is enabled.</ahelp>"
msgstr ""
-#: 05340300.xhp
-#, fuzzy
+#: gallery.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3151106\n"
-"73\n"
+"gallery.xhp\n"
+"tit\n"
"help.text"
-msgid "Middle"
-msgstr "Lart - në mes"
+msgid "Gallery"
+msgstr "Galeria"
-#: 05340300.xhp
+#: gallery.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3151210\n"
-"74\n"
+"gallery.xhp\n"
+"par_id3149783\n"
+"46\n"
"help.text"
-msgid "<variable id=\"mittetext\"><ahelp hid=\".uno:AlignVCenter\">Vertically centers the contents of the cell.</ahelp></variable>"
+msgid "<ahelp hid=\"HID_GALLERY_ICONVIEW\" visibility=\"hidden\">Displays the contents of the <emph>Gallery </emph>as icons.</ahelp>"
msgstr ""
-#: 05340300.xhp
-#, fuzzy
-msgctxt ""
-"05340300.xhp\n"
-"hd_id3151107\n"
-"help.text"
-msgid "Justified"
-msgstr "Rrafshuar në të dy anët"
-
-#: 05340300.xhp
+#: gallery.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3151211\n"
+"gallery.xhp\n"
+"par_id3148983\n"
+"47\n"
"help.text"
-msgid "Aligns the contents of the cell to the top and to the bottom cell borders."
+msgid "<ahelp hid=\"HID_GALLERY_LISTVIEW\" visibility=\"hidden\">Displays the contents of the <emph>Gallery </emph>as small icons, with title and path information.</ahelp>"
msgstr ""
-#: 05340300.xhp
-#, fuzzy
-msgctxt ""
-"05340300.xhp\n"
-"hd_id3151108\n"
-"help.text"
-msgid "Distributed"
-msgstr "Shpërndarje"
-
-#: 05340300.xhp
+#: gallery.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3151212\n"
+"gallery.xhp\n"
+"hd_id3153894\n"
+"1\n"
"help.text"
-msgid "Same as <emph>Justified</emph>, unless the text orientation is vertical. Then it behaves similarly, than horizontal <emph>Distributed</emph> setting, i.e. the very last line is justified, too."
+msgid "<link href=\"text/shared/01/gallery.xhp\" name=\"Gallery\">Gallery</link>"
msgstr ""
-#: 05340300.xhp
-#, fuzzy
-msgctxt ""
-"05340300.xhp\n"
-"hd_id3154154\n"
-"51\n"
-"help.text"
-msgid "Text orientation"
-msgstr "Orientimi i zarfit"
-
-#: 05340300.xhp
+#: gallery.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3151380\n"
-"30\n"
+"gallery.xhp\n"
+"par_id3150789\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\".uno:AlignVCenter\">Sets the text orientation of the cell contents.</ahelp>"
+msgid "<ahelp hid=\".uno:Gallery\">Opens the <emph>Gallery</emph>, where you can select graphics and sounds to insert into your document.</ahelp>"
msgstr ""
-#: 05340300.xhp
+#: gallery.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3147085\n"
-"49\n"
+"gallery.xhp\n"
+"par_id3155555\n"
+"44\n"
"help.text"
-msgid "<ahelp hid=\"HID_ALIGNMENT_CTR_DIAL\">Click in the dial to set the text orientation.</ahelp>"
+msgid "You can display the contents of the <emph>Gallery </emph>as icons, or icons with titles and path information."
msgstr ""
-#: 05340300.xhp
-#, fuzzy
+#: gallery.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3150449\n"
+"gallery.xhp\n"
+"par_id3153394\n"
"45\n"
"help.text"
-msgid "Degrees"
-msgstr "0 shkallë"
-
-#: 05340300.xhp
-msgctxt ""
-"05340300.xhp\n"
-"par_id3153194\n"
-"46\n"
-"help.text"
-msgid "<ahelp hid=\"SVX_NUMERICFIELD_RID_SVXPAGE_ALIGNMENT_NF_DEGREES\">Enter the rotation angle for the text in the selected cell(s). A positive number rotates the text to the left and a negative number rotates the text to the right.</ahelp>"
+msgid "To zoom in or zoom out on a single object in the <emph>Gallery</emph>, double-click the object, or select the object, and then press the Spacebar."
msgstr ""
-#: 05340300.xhp
-msgctxt ""
-"05340300.xhp\n"
-"hd_id3150497\n"
-"75\n"
-"help.text"
-msgid "Reference edge"
-msgstr "Mprehtësi referimi"
-
-#: 05340300.xhp
+#: gallery.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3154069\n"
-"76\n"
+"gallery.xhp\n"
+"par_id3145346\n"
+"26\n"
"help.text"
-msgid "<ahelp hid=\"HID_ALIGNMENT_CTR_BORDER_LOCK\">Specify the cell edge from which to write the rotated text.</ahelp>"
+msgid "Themes are listed on the left side of the <emph>Gallery</emph>.<ahelp hid=\"HID_GALLERY_THEMELIST\">Click a theme to view the objects associated with the theme.</ahelp>"
msgstr ""
-#: 05340300.xhp
+#: gallery.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3147299\n"
-"78\n"
+"gallery.xhp\n"
+"par_id3155355\n"
+"50\n"
"help.text"
-msgid "<emph>Text Extension From Lower Cell Border:</emph> Writes the rotated text from the bottom cell edge outwards."
+msgid "<ahelp hid=\"HID_GALLERY_WINDOW\">To insert a <emph>Gallery </emph>object, select the object, and then drag it into the document.</ahelp>"
msgstr ""
-#: 05340300.xhp
+#: gallery.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3149561\n"
-"79\n"
+"gallery.xhp\n"
+"hd_id3156113\n"
+"4\n"
"help.text"
-msgid "<emph>Text Extension From Upper Cell Border:</emph> Writes the rotated text from the top cell edge outwards."
+msgid "Adding a New File to the Gallery"
msgstr ""
-#: 05340300.xhp
+#: gallery.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3163712\n"
-"80\n"
+"gallery.xhp\n"
+"par_id3153032\n"
+"43\n"
"help.text"
-msgid "<emph>Text Extension Inside Cells:</emph> Writes the rotated text only within the cell."
+msgid "To add a file to the <emph>Gallery</emph>, right-click a theme, choose <emph>Properties</emph>, click the <emph>Files </emph>tab, and then click <emph>Add</emph>. You can also click an object in the current document, hold, and then drag it to the <emph>Gallery</emph> window."
msgstr ""
-#: 05340300.xhp
+#: gallery.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_idN109F4\n"
+"gallery.xhp\n"
+"hd_id3145315\n"
+"10\n"
"help.text"
-msgid "Vertically stacked"
-msgstr "Cilinndër, grumbulluar"
+msgid "New theme"
+msgstr "Temë e Re"
-#: 05340300.xhp
+#: gallery.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_idN109F8\n"
+"gallery.xhp\n"
+"par_id3150275\n"
+"11\n"
"help.text"
-msgid "<ahelp hid=\".\">Aligns text vertically.</ahelp>"
+msgid "<ahelp hid=\"HID_GALLERY_NEWTHEME\">Adds a new theme to the <emph>Gallery </emph>and lets you choose the files to include in the theme.</ahelp>"
msgstr ""
-#: 05340300.xhp
-msgctxt ""
-"05340300.xhp\n"
-"hd_id3152576\n"
-"84\n"
-"help.text"
-msgid "Asian layout mode"
-msgstr "Modi i shikimit paraprak"
-
-#: 05340300.xhp
+#: gallery.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3150010\n"
-"85\n"
+"gallery.xhp\n"
+"par_id3159167\n"
+"9\n"
"help.text"
-msgid "This checkbox is only available if Asian language support is enabled and the text direction is set to vertical. <ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_ALIGNMENT_BTN_ASIAN_VERTICAL\">Aligns Asian characters one below the other in the selected cell(s). If the cell contains more than one line of text, the lines are converted to text columns that are arranged from right to left. Western characters in the converted text are rotated 90 degrees to the right. Asian characters are not rotated.</ahelp>"
+msgid "To access the following commands, right-click a theme in the <emph>Gallery</emph>:"
msgstr ""
-#: 05340300.xhp
-#, fuzzy
+#: gallery.xhp
msgctxt ""
-"05340300.xhp\n"
-"hd_id3150032\n"
-"43\n"
+"gallery.xhp\n"
+"hd_id3154142\n"
+"15\n"
"help.text"
msgid "Properties"
msgstr "Vetitë"
-#: 05340300.xhp
-msgctxt ""
-"05340300.xhp\n"
-"par_id3146120\n"
-"44\n"
-"help.text"
-msgid "Determine the text flow in a cell."
-msgstr ""
-
-#: 05340300.xhp
-msgctxt ""
-"05340300.xhp\n"
-"hd_id3145590\n"
-"3\n"
-"help.text"
-msgid "Wrap text automatically"
-msgstr "Përshtat tekstin për formë"
-
-#: 05340300.xhp
-msgctxt ""
-"05340300.xhp\n"
-"par_id3148555\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_ALIGNMENT:BTN_WRAP\">Wraps text onto another line at the cell border. The number of lines depends on the width of the cell.</ahelp> To enter a manual line break, press <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Enter in the cell."
-msgstr ""
-
-#: 05340300.xhp
-msgctxt ""
-"05340300.xhp\n"
-"hd_id3147380\n"
-"81\n"
-"help.text"
-msgid "Hyphenation active"
-msgstr "Lidhje aktive"
-
-#: 05340300.xhp
+#: gallery.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_id3148458\n"
-"82\n"
+"gallery.xhp\n"
+"par_id3148990\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\"SVX_TRISTATEBOX_RID_SVXPAGE_ALIGNMENT_BTN_HYPH\">Enables word hyphenation for text wrapping to the next line.</ahelp>"
+msgid "The <emph>Properties of (Theme)</emph> dialog contains the following tabs:"
msgstr ""
-#: 05340300.xhp
-msgctxt ""
-"05340300.xhp\n"
-"par_idN10AD3\n"
-"help.text"
-msgid "Shrink to fit cell size"
-msgstr "Përshtate sipas madhësisë tekst objektin"
-
-#: 05340300.xhp
+#: gallery.xhp
msgctxt ""
-"05340300.xhp\n"
-"par_idN10AD7\n"
+"gallery.xhp\n"
+"hd_id3151384\n"
+"25\n"
"help.text"
-msgid "<ahelp hid=\".\">Reduces the apparent size of the font so that the contents of the cell fit into the current cell width. You cannot apply this command to a cell that contains line breaks.</ahelp>"
+msgid "<link href=\"text/shared/01/gallery_files.xhp\" name=\"Files\">Files</link>"
msgstr ""
-#: 05030100.xhp
+#: gallery_files.xhp
msgctxt ""
-"05030100.xhp\n"
+"gallery_files.xhp\n"
"tit\n"
"help.text"
-msgid "Indents and Spacing"
-msgstr "Pozita dhe hapësira"
-
-#: 05030100.xhp
-msgctxt ""
-"05030100.xhp\n"
-"bm_id3154689\n"
-"help.text"
-msgid "<bookmark_value>spacing; between paragraphs in footnotes</bookmark_value> <bookmark_value>line spacing; paragraph</bookmark_value> <bookmark_value>spacing; lines and paragraphs</bookmark_value> <bookmark_value>single-line spacing in text</bookmark_value> <bookmark_value>one and a half line spacing in text</bookmark_value> <bookmark_value>double-line spacing in paragraphs</bookmark_value> <bookmark_value>leading between paragraphs</bookmark_value> <bookmark_value>paragraphs;spacing</bookmark_value>"
-msgstr ""
+msgid "Files"
+msgstr "Fajllat"
-#: 05030100.xhp
+#: gallery_files.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3154689\n"
+"gallery_files.xhp\n"
+"hd_id3150756\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030100.xhp\" name=\"Indents and Spacing\">Indents and Spacing</link>"
-msgstr ""
+msgid "Files"
+msgstr "Fajllat"
-#: 05030100.xhp
+#: gallery_files.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3155069\n"
+"gallery_files.xhp\n"
+"par_id3153882\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FORMAT_PARAGRAPH_STD\">Sets the indenting and the spacing options for the paragraph.</ahelp>"
-msgstr ""
-
-#: 05030100.xhp
-msgctxt ""
-"05030100.xhp\n"
-"par_id3153910\n"
-"64\n"
-"help.text"
-msgid "To change the measurement units used in this dialog, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME Writer - General, and then select a new measurement unit in the Settings area."
-msgstr ""
-
-#: 05030100.xhp
-msgctxt ""
-"05030100.xhp\n"
-"par_id3154823\n"
-"11\n"
-"help.text"
-msgid "You can also <link href=\"text/swriter/guide/ruler.xhp\" name=\"ruler\">set indents using the ruler</link>. To display the ruler, choose <emph>View - Ruler</emph>."
-msgstr ""
-
-#: 05030100.xhp
-msgctxt ""
-"05030100.xhp\n"
-"hd_id3158430\n"
-"3\n"
-"help.text"
-msgid "Indent"
-msgstr "Kryerresht"
-
-#: 05030100.xhp
-msgctxt ""
-"05030100.xhp\n"
-"par_id3155419\n"
-"4\n"
-"help.text"
-msgid "Specify the amount of space to leave between the left and the right page margins and the paragraph."
+msgid "<variable id=\"stargallerymanager\">Adds new files to the selected theme. </variable>"
msgstr ""
-#: 05030100.xhp
+#: gallery_files.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3153698\n"
+"gallery_files.xhp\n"
+"hd_id3153089\n"
"5\n"
"help.text"
-msgid "Before text"
-msgstr "Vizato tekstin"
+msgid "File Type"
+msgstr "Lloji i fajllit"
-#: 05030100.xhp
+#: gallery_files.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3148990\n"
+"gallery_files.xhp\n"
+"par_id3154497\n"
"6\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_LEFTINDENT\">Enter the amount of space that you want to indent the paragraph from the page margin. If you want the paragraph to extend into the page margin, enter a negative number. In Left-to-Right languages, the left edge of the paragraph is indented with respect to the left page margin. In Right-to-Left languages, the right edge of the paragraph is indented with respect to the right page margin.</ahelp>"
-msgstr ""
-
-#: 05030100.xhp
-msgctxt ""
-"05030100.xhp\n"
-"hd_id3152361\n"
-"9\n"
-"help.text"
-msgid "After text"
-msgstr "Vizato tekstin"
-
-#: 05030100.xhp
-msgctxt ""
-"05030100.xhp\n"
-"par_id3154390\n"
-"10\n"
-"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_RIGHTINDENT\">Enter the amount of space that you want to indent the paragraph from the page margin. If you want the paragraph to extend into the page margin, enter a negative number. In Left-to-Right languages, the right edge of the paragraph is indented with respect to the right page margin. In Right-to-Left languages, the left edge of the paragraph is indented with respect to the left page margin.</ahelp>"
+msgid "<ahelp hid=\"SVX:COMBOBOX:RID_SVXTABPAGE_GALLERYTHEME_FILES:CBB_FILETYPE\">Select the type of file that you want to add.</ahelp>"
msgstr ""
-#: 05030100.xhp
+#: gallery_files.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3149169\n"
+"gallery_files.xhp\n"
+"hd_id3153935\n"
"7\n"
"help.text"
-msgid "First line"
-msgstr "Rreshti i Parë"
+msgid "Files found"
+msgstr "' nuk u gjet."
-#: 05030100.xhp
+#: gallery_files.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3150651\n"
+"gallery_files.xhp\n"
+"par_id3145829\n"
"8\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_FLINEINDENT\">Indents the first line of a paragraph by the amount that you enter. To create a hanging indent enter a positive value for \"Before text\" and a negative value for \"First line\". To indent the first line of a paragraph that uses numbering or bullets, choose \"<link href=\"text/shared/01/06050600.xhp\">Format - Bullets and Numbering - Position</link>\".</ahelp>"
+msgid "<ahelp hid=\"SVX:MULTILISTBOX:RID_SVXTABPAGE_GALLERYTHEME_FILES:LBX_FOUND\">Lists the available files. Select the file(s) that you want to add, and then click <emph>Add</emph>. To add all of the files in the list, click <emph>Add All</emph>.</ahelp>"
msgstr ""
-#: 05030100.xhp
+#: gallery_files.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3150288\n"
-"52\n"
+"gallery_files.xhp\n"
+"hd_id3154751\n"
+"9\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Automatic </caseinline></switchinline>"
-msgstr ""
+msgid "Find files"
+msgstr "Gjej Fajllat..."
-#: 05030100.xhp
+#: gallery_files.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3151041\n"
-"53\n"
+"gallery_files.xhp\n"
+"par_id3147557\n"
+"10\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_STD_PARAGRAPH:CB_AUTO\">Automatically indents a paragraph according to the font size and the line spacing. The setting in the <emph>First Line </emph>box is ignored.</ahelp></caseinline></switchinline>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_SEARCH\">Locate the directory containing the files that you want to add, and then click <emph>OK</emph>.</ahelp>"
msgstr ""
-#: 05030100.xhp
+#: gallery_files.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3157894\n"
-"22\n"
+"gallery_files.xhp\n"
+"hd_id3154317\n"
+"13\n"
"help.text"
-msgid "Spacing"
-msgstr "Hapësira"
+msgid "Add"
+msgstr "Shto"
-#: 05030100.xhp
+#: gallery_files.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3152462\n"
-"23\n"
+"gallery_files.xhp\n"
+"par_id3150774\n"
+"14\n"
"help.text"
-msgid "Specify the amount of space to leave between selected paragraphs."
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_TAKE\">Adds the selected file(s) to the current theme.</ahelp>"
msgstr ""
-#: 05030100.xhp
+#: gallery_files.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3147216\n"
-"24\n"
+"gallery_files.xhp\n"
+"hd_id3149751\n"
+"15\n"
"help.text"
-msgid "Above paragraph"
-msgstr "Paragrafi: $(ARG)"
+msgid "Add all"
+msgstr "Prano të gjitha"
-#: 05030100.xhp
+#: gallery_files.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3146148\n"
-"25\n"
+"gallery_files.xhp\n"
+"par_id3156426\n"
+"16\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_TOPDIST\">Enter the amount of space that you want to leave above the selected paragraph(s).</ahelp>"
+msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXTABPAGE_GALLERYTHEME_FILES:BTN_TAKEALL\">Adds all of the files in the list to the current theme.</ahelp>"
msgstr ""
-#: 05030100.xhp
+#: gallery_files.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3145590\n"
-"26\n"
+"gallery_files.xhp\n"
+"hd_id3147088\n"
+"17\n"
"help.text"
-msgid "Below paragraph"
-msgstr "Paragrafi: $(ARG)"
+msgid "Preview"
+msgstr "Shikim paraprak"
-#: 05030100.xhp
+#: gallery_files.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3163822\n"
-"27\n"
+"gallery_files.xhp\n"
+"par_id3151111\n"
+"18\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_BOTTOMDIST\">Enter the amount of space that you want to leave below the selected paragraph(s).</ahelp>"
+msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXTABPAGE_GALLERYTHEME_FILES:CBX_PREVIEW\">Displays or hides a preview of the selected file.</ahelp>"
msgstr ""
-#: 05030100.xhp
+#: gallery_files.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3145591\n"
-"26\n"
+"gallery_files.xhp\n"
+"hd_id3147275\n"
+"19\n"
"help.text"
-msgid "Don't add space between paragraphs of the same style"
-msgstr ""
+msgid "Preview box"
+msgstr "Kutia për kontrollim"
-#: 05030100.xhp
+#: gallery_files.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3163823\n"
-"27\n"
+"gallery_files.xhp\n"
+"par_id3153662\n"
+"20\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_STD_PARAGRAPH:CB_CONTEXTUALSPACING\">Makes any space specified before or after this paragraph not be applied when the preceding and following paragraphs are of the same paragraph style.</ahelp>"
+msgid "<ahelp hid=\"HID_GALLERY_PREVIEW\">Displays a preview of the selected file.</ahelp>"
msgstr ""
-#: 05030100.xhp
+#: grid.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3156441\n"
-"28\n"
+"grid.xhp\n"
+"tit\n"
"help.text"
-msgid "Line spacing"
-msgstr "Hapësira në mes rreshtave"
+msgid "Grid"
+msgstr "Rrjet"
-#: 05030100.xhp
+#: grid.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3146985\n"
-"29\n"
+"grid.xhp\n"
+"bm_id4263435\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_STD_PARAGRAPH:LB_LINEDIST\">Specify the amount of space to leave between lines of text in a paragraph.</ahelp>"
+msgid "<bookmark_value>grids;display options (Impress/Draw)</bookmark_value>"
msgstr ""
-#: 05030100.xhp
-msgctxt ""
-"05030100.xhp\n"
-"hd_id3146923\n"
-"30\n"
-"help.text"
-msgid "Single"
-msgstr "E vetme"
-
-#: 05030100.xhp
+#: grid.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3150011\n"
-"31\n"
+"grid.xhp\n"
+"par_idN10565\n"
"help.text"
-msgid "<variable id=\"einzeiligtext\">Applies single line spacing to the current paragraph. This is the default setting. </variable>"
+msgid "<link href=\"text/shared/01/grid.xhp\">Grid</link>"
msgstr ""
-#: 05030100.xhp
-msgctxt ""
-"05030100.xhp\n"
-"hd_id3148500\n"
-"33\n"
-"help.text"
-msgid "1.5 lines"
-msgstr "1.5 Rreshta"
-
-#: 05030100.xhp
+#: grid.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3150094\n"
-"34\n"
+"grid.xhp\n"
+"par_id3147340\n"
+"5\n"
"help.text"
-msgid "<variable id=\"eineinhalbzeiligtext\">Sets the line spacing to 1.5 lines. </variable>"
+msgid "<ahelp hid=\".\">Sets the display properties of a grid.</ahelp>"
msgstr ""
-#: 05030100.xhp
+#: grid.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3149378\n"
-"36\n"
+"grid.xhp\n"
+"par_idN1057E\n"
"help.text"
-msgid "Double"
-msgstr "Dyfish"
+msgid "Display Grid"
+msgstr "Paraqit Rrjetën"
-#: 05030100.xhp
+#: grid.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3154512\n"
-"37\n"
+"grid.xhp\n"
+"par_idN10582\n"
"help.text"
-msgid "<variable id=\"zweizeiligtext\">Sets the line spacing to two lines. </variable>"
+msgid "Displays or hides grid lines that you can use to align objects such as graphics on a page."
msgstr ""
-#: 05030100.xhp
+#: grid.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3151206\n"
-"39\n"
+"grid.xhp\n"
+"par_idN10585\n"
"help.text"
-msgid "Proportional"
-msgstr "Proporcionale"
+msgid "Snap to Grid"
+msgstr "Mbërthe për rrjetë"
-#: 05030100.xhp
+#: grid.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3147494\n"
-"40\n"
+"grid.xhp\n"
+"par_idN10589\n"
"help.text"
-msgid "Select this option and then enter a percentage value in the box, where 100% corresponds to single line spacing."
+msgid "Automatically aligns objects to vertical and horizontal grid lines. To override this feature, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key</defaultinline></switchinline> when you drag an object."
msgstr ""
-#: 05030100.xhp
+#: grid.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3156332\n"
-"41\n"
+"grid.xhp\n"
+"par_idN105C9\n"
"help.text"
-msgid "At Least"
-msgstr "Gjerësia (më së paku)"
+msgid "Grid to Front"
+msgstr "Rrjeta përpara"
-#: 05030100.xhp
+#: grid.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3157965\n"
-"42\n"
+"grid.xhp\n"
+"par_idN105CD\n"
"help.text"
-msgid "Sets the minimum line spacing to the value that you enter in the box."
+msgid "<ahelp hid=\".\">Displays the grid lines in front of the objects on the slide or page.</ahelp>"
msgstr ""
-#: 05030100.xhp
+#: grid.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3150744\n"
-"47\n"
+"grid.xhp\n"
+"par_id4372692\n"
"help.text"
-msgid "If you use different font sizes within a paragraph, the line spacing is automatically adjusted to the largest font size. If you prefer to have identical spacing for all lines, specify a value in <emph>At least</emph> that corresponds to the largest font size."
+msgid "Set the grid color on <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/01012000.xhp\">Appearance</link>."
msgstr ""
-#: 05030100.xhp
+#: guides.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3153927\n"
-"43\n"
+"guides.xhp\n"
+"tit\n"
"help.text"
-msgid "Leading"
+msgid "Snap Lines"
msgstr ""
-#: 05030100.xhp
+#: guides.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3153354\n"
-"44\n"
+"guides.xhp\n"
+"bm_id1441999\n"
"help.text"
-msgid "Sets the height of the vertical space that is inserted between two lines."
+msgid "<bookmark_value>guides;display options (Impress/Draw)</bookmark_value>"
msgstr ""
-#: 05030100.xhp
+#: guides.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3155443\n"
-"54\n"
+"guides.xhp\n"
+"par_idN10562\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Fixed </caseinline></switchinline>"
+msgid "<link href=\"text/shared/01/guides.xhp\">Snap Lines</link>"
msgstr ""
-#: 05030100.xhp
+#: guides.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3153711\n"
-"55\n"
+"guides.xhp\n"
+"par_id3146313\n"
+"7\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Sets the line spacing to exactly match the value that you enter in the box. This can result in cropped characters. </caseinline></switchinline>"
+msgid "<ahelp hid=\".\">Specifies the display options for snap lines.</ahelp>"
msgstr ""
-#: 05030100.xhp
+#: guides.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3156383\n"
-"45\n"
+"guides.xhp\n"
+"par_idN1057B\n"
"help.text"
-msgid "of"
-msgstr "nga"
+msgid "Display Snap Lines"
+msgstr ""
-#: 05030100.xhp
+#: guides.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3154304\n"
-"46\n"
+"guides.xhp\n"
+"par_idN1057F\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_STD_PARAGRAPH:ED_LINEDISTMETRIC\">Enter the value to use for the line spacing.</ahelp>"
+msgid "Displays or hides snap lines that you can use to align objects on a page."
msgstr ""
-#: 05030100.xhp
+#: guides.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3154965\n"
-"48\n"
+"guides.xhp\n"
+"par_idN10582\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Register-true </caseinline></switchinline>"
+msgid "Snap to Snap Lines"
msgstr ""
-#: 05030100.xhp
+#: guides.xhp
msgctxt ""
-"05030100.xhp\n"
-"hd_id3146316\n"
-"50\n"
+"guides.xhp\n"
+"par_idN10586\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Activate </caseinline></switchinline>"
+msgid "Automatically aligns objects to vertical and horizontal snap lines. To override this feature, hold down the <switchinline select=\"sys\"><caseinline select=\"MAC\">Option key</caseinline><defaultinline>Alt key </defaultinline></switchinline>when you drag an object."
msgstr ""
-#: 05030100.xhp
+#: guides.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id3156315\n"
-"51\n"
+"guides.xhp\n"
+"par_idN105C6\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_STD_PARAGRAPH:CB_REGISTER\">Aligns the baseline of each line of text to a vertical document grid, so that each line is the same height. To use this feature, you must first activate the <emph>Register-true </emph>option for the current page style. To do this, choose <emph>Format - Page</emph>, click on the <emph>Page </emph>tab, and then select the<emph> Register-true</emph> box in the<emph> Layout settings</emph> area.</ahelp></caseinline></switchinline>"
+msgid "Snap Lines to Front"
msgstr ""
-#: 05030100.xhp
+#: guides.xhp
msgctxt ""
-"05030100.xhp\n"
-"par_id9267250\n"
+"guides.xhp\n"
+"par_idN105CA\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/registertrue.xhp\" name=\"Writing Register-true\">Writing Register-true</link>"
+msgid "<ahelp hid=\".\">Displays the snap lines in front of the objects on the slide or page.</ahelp>"
msgstr ""
-#: 01010001.xhp
+#: mediaplayer.xhp
msgctxt ""
-"01010001.xhp\n"
+"mediaplayer.xhp\n"
"tit\n"
"help.text"
-msgid "Master Document"
-msgstr "Dokument kryesor"
+msgid "Media Player"
+msgstr "Media objekt"
-#: 01010001.xhp
+#: mediaplayer.xhp
msgctxt ""
-"01010001.xhp\n"
-"hd_id3153514\n"
-"1\n"
+"mediaplayer.xhp\n"
+"bm_id8659321\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010001.xhp\" name=\"Master Document\">Master Document</link>"
+msgid "<bookmark_value>Media Player window</bookmark_value>"
msgstr ""
-#: 01010001.xhp
+#: mediaplayer.xhp
msgctxt ""
-"01010001.xhp\n"
-"par_id3154682\n"
-"2\n"
+"mediaplayer.xhp\n"
+"par_idN10550\n"
"help.text"
-msgid "Use a <emph>Master Document</emph> to organize complex projects, such as a book. <ahelp hid=\".\">A <emph>Master Document</emph> can contain the individual files for each chapter of a book, as well as a table of contents, and an index.</ahelp>"
+msgid "<variable id=\"mediaplayertitle\"><link href=\"text/shared/01/mediaplayer.xhp\">Media Player</link></variable>"
msgstr ""
-#: 01010001.xhp
+#: mediaplayer.xhp
msgctxt ""
-"01010001.xhp\n"
-"par_id3149828\n"
+"mediaplayer.xhp\n"
+"par_idN10560\n"
"help.text"
-msgid "<link href=\"text/shared/01/02110000.xhp\" name=\"Navigator for Master Documents\">Navigator for Master Documents</link>"
+msgid "<ahelp hid=\".\">Opens the Media Player window where you can preview movie and sound files as well as insert these files into the current document.</ahelp>"
msgstr ""
-#: 02220100.xhp
-msgctxt ""
-"02220100.xhp\n"
-"tit\n"
-"help.text"
-msgid "Description"
-msgstr "Përshkrimi"
-
-#: 02220100.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02220100.xhp\n"
-"bm_id1202200909085990\n"
+"mediaplayer.xhp\n"
+"par_idN10577\n"
"help.text"
-msgid "<bookmark_value>hotspots;properties</bookmark_value> <bookmark_value>properties;hotspots</bookmark_value> <bookmark_value>ImageMap;hotspot properties</bookmark_value>"
+msgid "The Media Player supports many different media formats. You can also insert media files from the Media Player into your document."
msgstr ""
-#: 02220100.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02220100.xhp\n"
-"hd_id3154810\n"
-"1\n"
+"mediaplayer.xhp\n"
+"par_idN1057A\n"
"help.text"
-msgid "Description"
-msgstr "Përshkrimi"
+msgid "Open"
+msgstr "Hape"
-#: 02220100.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02220100.xhp\n"
-"par_id3152910\n"
-"2\n"
+"mediaplayer.xhp\n"
+"par_idN1057E\n"
"help.text"
-msgid "<ahelp hid=\"SVX:MODALDIALOG:RID_SVXDLG_IMAPURL\">Lists the properties for the selected hotspot.</ahelp>"
+msgid "Opens a movie file or a sound file that you want to preview."
msgstr ""
-#: 02220100.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02220100.xhp\n"
-"hd_id3150976\n"
-"3\n"
+"mediaplayer.xhp\n"
+"par_idN10581\n"
"help.text"
-msgid "Hyperlink"
-msgstr "Hiperlink"
+msgid "Apply"
+msgstr "Zbato"
-#: 02220100.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02220100.xhp\n"
-"par_id3152349\n"
-"4\n"
+"mediaplayer.xhp\n"
+"par_idN10585\n"
"help.text"
-msgid "Lists the properties of the URL that is attached to the hotspot."
+msgid "Inserts the current movie file or sound file as a media object into the current document."
msgstr ""
-#: 02220100.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02220100.xhp\n"
-"hd_id3156327\n"
-"5\n"
+"mediaplayer.xhp\n"
+"par_idN10588\n"
"help.text"
-msgid "URL:"
-msgstr "URL"
+msgid "Play"
+msgstr "Luaje"
-#: 02220100.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02220100.xhp\n"
-"par_id3155831\n"
-"6\n"
+"mediaplayer.xhp\n"
+"par_idN1058C\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAPURL:EDT_URL\">Enter the URL for the file that you want to open when you click the selected hotspot.</ahelp> If you want to jump to a named anchor within the current document, the address should be of the form \"file:///C/[current_document_name]#anchor_name\"."
-msgstr ""
+msgid "Plays the current file."
+msgstr "Format i panjohur i fajllit!"
-#: 02220100.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02220100.xhp\n"
-"hd_id3153827\n"
-"7\n"
+"mediaplayer.xhp\n"
+"par_idN1058F\n"
"help.text"
-msgid "Alternative text:"
-msgstr "Alternativ (vetëm tekst)"
+msgid "Pause"
+msgstr "Pauzo..."
-#: 02220100.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02220100.xhp\n"
-"par_id3153665\n"
-"8\n"
+"mediaplayer.xhp\n"
+"par_idN10593\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAPURL:EDT_URLDESCRIPTION\">Enter the text that you want to display when the mouse rests on the hotspot in a browser.</ahelp> If you do not enter any text, the <emph>Address </emph>is displayed."
+msgid "Pauses or resumes the playback of the current file."
msgstr ""
-#: 02220100.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02220100.xhp\n"
-"hd_id3149166\n"
-"9\n"
+"mediaplayer.xhp\n"
+"par_idN10596\n"
"help.text"
-msgid "Frame:"
-msgstr "Kornizë"
+msgid "Stop"
+msgstr "Ndal"
-#: 02220100.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02220100.xhp\n"
-"par_id3155922\n"
-"10\n"
+"mediaplayer.xhp\n"
+"par_idN1059A\n"
"help.text"
-msgid "<ahelp hid=\"SVX:COMBOBOX:RID_SVXDLG_IMAPURL:CBB_TARGETS\">Enter the name of the target frame that you want to open the URL in. You can also select a standard frame name that is recognized by all browsers from the list.</ahelp>"
+msgid "Stops the playback of the current file."
msgstr ""
-#: 02220100.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02220100.xhp\n"
-"hd_id3147530\n"
-"11\n"
+"mediaplayer.xhp\n"
+"par_idN1059D\n"
"help.text"
-msgid "Name:"
-msgstr "Emri:"
+msgid "Repeat"
+msgstr "Përsërite"
-#: 02220100.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02220100.xhp\n"
-"par_id3148550\n"
-"12\n"
+"mediaplayer.xhp\n"
+"par_idN105A1\n"
"help.text"
-msgid "<ahelp hid=\"SVX:EDIT:RID_SVXDLG_IMAPURL:EDT_NAME\">Enter a name for the image.</ahelp>"
-msgstr ""
+msgid "Plays the file repeatedly."
+msgstr "Format i panjohur i fajllit!"
-#: 02220100.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02220100.xhp\n"
-"hd_id7557298\n"
+"mediaplayer.xhp\n"
+"par_idN105A4\n"
"help.text"
-msgid "Description"
-msgstr "Përshkrimi"
+msgid "Mute"
+msgstr ""
-#: 02220100.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02220100.xhp\n"
-"par_id5057222\n"
+"mediaplayer.xhp\n"
+"par_idN105A8\n"
"help.text"
-msgid "<ahelp hid=\".\">Enter a description for the hotspot.</ahelp>"
+msgid "Turns sound off and on."
msgstr ""
-#: 02220100.xhp
+#: mediaplayer.xhp
msgctxt ""
-"02220100.xhp\n"
-"par_id3147559\n"
+"mediaplayer.xhp\n"
+"par_idN105AB\n"
"help.text"
-msgid "<link href=\"text/shared/01/01100500.xhp\" name=\"Priority Table\">Priority Table</link>"
-msgstr ""
+msgid "Volume slider"
+msgstr "Grupi i Volumit:"
-#: 04160300.xhp
+#: mediaplayer.xhp
msgctxt ""
-"04160300.xhp\n"
-"tit\n"
+"mediaplayer.xhp\n"
+"par_idN105AF\n"
"help.text"
-msgid "Formula"
-msgstr "Formula"
+msgid "Adjusts the volume."
+msgstr "Grupi i Volumit:"
-#: 04160300.xhp
+#: mediaplayer.xhp
msgctxt ""
-"04160300.xhp\n"
-"bm_id3152937\n"
+"mediaplayer.xhp\n"
+"par_idN105B2\n"
"help.text"
-msgid "<bookmark_value>formulas; starting formula editor</bookmark_value><bookmark_value>$[officename] Math start</bookmark_value><bookmark_value>Math formula editor</bookmark_value><bookmark_value>equations in formula editor</bookmark_value><bookmark_value>editors;formula editor</bookmark_value>"
-msgstr ""
+msgid "View"
+msgstr "Pamja"
-#: 04160300.xhp
+#: mediaplayer.xhp
msgctxt ""
-"04160300.xhp\n"
-"hd_id3152937\n"
-"1\n"
+"mediaplayer.xhp\n"
+"par_idN105B6\n"
"help.text"
-msgid "Formula"
-msgstr "Formula"
+msgid "Adjusts the size of the movie playback."
+msgstr ""
-#: 04160300.xhp
+#: mediaplayer.xhp
msgctxt ""
-"04160300.xhp\n"
-"par_id3149495\n"
-"2\n"
+"mediaplayer.xhp\n"
+"par_idN105B9\n"
"help.text"
-msgid "<variable id=\"starmath\"><ahelp hid=\".uno:InsertObjectStarMath\">Inserts a formula into the current document.</ahelp><switchinline select=\"appl\"><caseinline select=\"MATH\"></caseinline><defaultinline> For more information open the $[officename] Math Help.</defaultinline></switchinline></variable>"
-msgstr ""
+msgid "Position slider"
+msgstr "<Pozicion tjetër>"
-#: 04160300.xhp
+#: mediaplayer.xhp
msgctxt ""
-"04160300.xhp\n"
-"par_id3154317\n"
+"mediaplayer.xhp\n"
+"par_idN105BD\n"
"help.text"
-msgid "<link href=\"text/smath/main0000.xhp\" name=\"Formulas\">Formulas</link>"
+msgid "Moves to a different position in the file."
msgstr ""
-#: 02230200.xhp
+#: moviesound.xhp
msgctxt ""
-"02230200.xhp\n"
+"moviesound.xhp\n"
"tit\n"
"help.text"
-msgid "Show Changes"
-msgstr "Trego Ndryshimet"
+msgid "Movie and Sound"
+msgstr "Fil~mi dhevZëri"
-#: 02230200.xhp
+#: moviesound.xhp
msgctxt ""
-"02230200.xhp\n"
-"bm_id3149988\n"
+"moviesound.xhp\n"
+"bm_id1907712\n"
"help.text"
-msgid "<bookmark_value>changes; showing</bookmark_value><bookmark_value>hiding;changes</bookmark_value><bookmark_value>showing; changes</bookmark_value>"
+msgid "<bookmark_value>inserting;movies/sounds</bookmark_value> <bookmark_value>sound files</bookmark_value> <bookmark_value>playing movies and sound files</bookmark_value> <bookmark_value>videos</bookmark_value> <bookmark_value>movies</bookmark_value> <bookmark_value>audio</bookmark_value> <bookmark_value>music</bookmark_value>"
msgstr ""
-#: 02230200.xhp
+#: moviesound.xhp
msgctxt ""
-"02230200.xhp\n"
-"hd_id3149988\n"
-"1\n"
+"moviesound.xhp\n"
+"par_idN1065C\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230200.xhp\" name=\"Show Changes\">Show Changes</link>"
+msgid "<variable id=\"moviesoundtitle\"><link href=\"text/shared/01/moviesound.xhp\">Movie and Sound</link></variable>"
msgstr ""
-#: 02230200.xhp
+#: moviesound.xhp
msgctxt ""
-"02230200.xhp\n"
-"par_id3153323\n"
-"2\n"
+"moviesound.xhp\n"
+"par_idN1066C\n"
"help.text"
-msgid "<variable id=\"text\"><ahelp hid=\".uno:ShowChanges\">Shows or hides recorded changes.</ahelp></variable>"
+msgid "<ahelp hid=\".\">Inserts a video or sound file into your document.</ahelp>"
msgstr ""
-#: 02230200.xhp
+#: moviesound.xhp
msgctxt ""
-"02230200.xhp\n"
-"par_id3152425\n"
-"7\n"
+"moviesound.xhp\n"
+"par_idN10683\n"
"help.text"
-msgid "You can change the display properties of the markup elements by choosing <switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/optionen/01060600.xhp\" name=\"Writer - Changes\"><emph>%PRODUCTNAME Writer - Changes</emph></link> in the Options dialog box.</caseinline></switchinline><switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/optionen/01060600.xhp\" name=\"Calc - Changes\"><emph>%PRODUCTNAME Calc - Changes</emph></link> in the Options dialog box.</caseinline></switchinline>"
+msgid "To insert a movie or sound file into your document"
msgstr ""
-#: 02230200.xhp
+#: moviesound.xhp
msgctxt ""
-"02230200.xhp\n"
-"par_id3155356\n"
-"6\n"
+"moviesound.xhp\n"
+"par_idN1068A\n"
"help.text"
-msgid "When you rest the mouse pointer over a change markup in the document, a <emph>Tip</emph> displays the author and the date and time that the change was made.<switchinline select=\"appl\"><caseinline select=\"CALC\"> If the <emph>Extended Tips</emph> are activated, the type of change and any attached comments are also displayed.</caseinline></switchinline>"
+msgid "Click where you want to insert the file."
msgstr ""
-#: 02230200.xhp
+#: moviesound.xhp
msgctxt ""
-"02230200.xhp\n"
-"hd_id3153681\n"
-"8\n"
+"moviesound.xhp\n"
+"par_idN1068E\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Show changes in spreadsheet</caseinline></switchinline>"
+msgid "Choose <emph>Insert - Movie and Sound</emph>."
msgstr ""
-#: 02230200.xhp
+#: moviesound.xhp
msgctxt ""
-"02230200.xhp\n"
-"par_id3149150\n"
-"9\n"
+"moviesound.xhp\n"
+"par_idN10696\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT\">Shows or hides recorded changes.</ahelp></caseinline></switchinline>"
+msgid "In the File Open dialog, select the file that you want to insert."
msgstr ""
-#: 02230200.xhp
+#: moviesound.xhp
msgctxt ""
-"02230200.xhp\n"
-"hd_id3147336\n"
-"10\n"
+"moviesound.xhp\n"
+"par_idN10699\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Show accepted changes</caseinline></switchinline>"
+msgid "The file types that are listed in this dialog are not supported by all operating systems."
msgstr ""
-#: 02230200.xhp
+#: moviesound.xhp
msgctxt ""
-"02230200.xhp\n"
-"par_id3153541\n"
-"11\n"
+"moviesound.xhp\n"
+"par_idN10700\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_ACCEPT\">Shows or hides the changes that were accepted.</ahelp></caseinline></switchinline>"
+msgid "Click the <emph>Link</emph> box if you want a link to the original file. If it is not checked, the media file will be embedded (not supported with all file formats)."
msgstr ""
-#: 02230200.xhp
+#: moviesound.xhp
msgctxt ""
-"02230200.xhp\n"
-"hd_id3149956\n"
-"12\n"
+"moviesound.xhp\n"
+"par_idN106D7\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Show rejected changes </caseinline></switchinline>"
-msgstr ""
+msgid "Click <emph>Open</emph>."
+msgstr "Dokumenti nuk mund të hapet."
-#: 02230200.xhp
+#: moviesound.xhp
msgctxt ""
-"02230200.xhp\n"
-"par_id3159166\n"
-"13\n"
+"moviesound.xhp\n"
+"par_id0120200912190948\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><ahelp hid=\"SC:CHECKBOX:RID_SCDLG_HIGHLIGHT_CHANGES:CB_HIGHLIGHT_REJECT\">Shows or hides the changes that were rejected.</ahelp></caseinline></switchinline>"
+msgid "Alternatively, you can choose <item type=\"menuitem\">Tools - Media Player</item> to open the Media Player. Use the Media Player to preview all supported media files. Click the Apply button in the Media Player window to insert the current media file into your document."
msgstr ""
-#: 02230200.xhp
+#: moviesound.xhp
msgctxt ""
-"02230200.xhp\n"
-"par_id3145119\n"
+"moviesound.xhp\n"
+"par_idN1069C\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230300.xhp\" name=\"Comments\">Comments</link>"
+msgid "To play a movie or sound file"
msgstr ""
-#: 05030700.xhp
-msgctxt ""
-"05030700.xhp\n"
-"tit\n"
-"help.text"
-msgid "Alignment"
-msgstr "Mbështetje"
-
-#: 05030700.xhp
+#: moviesound.xhp
msgctxt ""
-"05030700.xhp\n"
-"bm_id3150008\n"
+"moviesound.xhp\n"
+"par_idN106A7\n"
"help.text"
-msgid "<bookmark_value>aligning; paragraphs</bookmark_value><bookmark_value>paragraphs; alignment</bookmark_value><bookmark_value>lines of text; alignment</bookmark_value><bookmark_value>left alignment of paragraphs</bookmark_value><bookmark_value>right alignment of paragraphs</bookmark_value><bookmark_value>centered text</bookmark_value><bookmark_value>justifying text</bookmark_value>"
+msgid "Click the object icon for the movie or sound file in your document."
msgstr ""
-#: 05030700.xhp
+#: moviesound.xhp
msgctxt ""
-"05030700.xhp\n"
-"hd_id3150008\n"
-"1\n"
+"moviesound.xhp\n"
+"par_id0120200912190940\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030700.xhp\" name=\"Alignment\">Alignment</link>"
+msgid "If the icon is arranged on the background, hold down Ctrl while you click."
msgstr ""
-#: 05030700.xhp
+#: moviesound.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3147399\n"
-"2\n"
+"moviesound.xhp\n"
+"par_id0120200912062096\n"
"help.text"
-msgid "<ahelp hid=\"HID_FORMAT_PARAGRAPH_ALIGN\">Sets the alignment of the paragraph relative to the margins of page.</ahelp>"
+msgid "The Media Playback toolbar is shown."
msgstr ""
-#: 05030700.xhp
-msgctxt ""
-"05030700.xhp\n"
-"hd_id3143268\n"
-"3\n"
-"help.text"
-msgid "Alignment"
-msgstr "Mbështetje"
-
-#: 05030700.xhp
+#: moviesound.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3147008\n"
-"4\n"
+"moviesound.xhp\n"
+"par_idN10788\n"
"help.text"
-msgid "Set the alignment options for the current paragraph."
+msgid "Click <emph>Play</emph> on the <emph>Media Playback</emph> toolbar."
msgstr ""
-#: 05030700.xhp
-msgctxt ""
-"05030700.xhp\n"
-"hd_id3153681\n"
-"5\n"
-"help.text"
-msgid "Left"
-msgstr "Majtas"
-
-#: 05030700.xhp
+#: moviesound.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3153031\n"
-"6\n"
+"moviesound.xhp\n"
+"par_id0120200912062064\n"
"help.text"
-msgid "<variable id=\"linkstext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_LEFTALIGN\">Aligns the paragraph to the left page margin.</ahelp></variable> If Asian language support is enabled, this option is named Left/Top."
+msgid "When you show an Impress presentation, the embedded sound or video on the current slide plays automatically until it's over or until you leave the slide."
msgstr ""
-#: 05030700.xhp
-msgctxt ""
-"05030700.xhp\n"
-"hd_id3154142\n"
-"7\n"
-"help.text"
-msgid "Right"
-msgstr "Djathtas"
-
-#: 05030700.xhp
+#: moviesound.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3156326\n"
-"8\n"
+"moviesound.xhp\n"
+"par_idN106D0\n"
"help.text"
-msgid "<variable id=\"rechtstext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_RIGHTALIGN\">Aligns the paragraph to the right page margin.</ahelp></variable> If Asian language support is enabled, this option is named Right/Bottom."
+msgid "You can also use the Media Playback Bar to pause, to stop, to loop, as well as to adjust the volume or to mute the playback of the file. The current playback position in the file is indicated on the left slider. Use the right slider to adjust the playback volume. For movie files, the bar also contains a list box where you can select the zoom factor for the playback."
msgstr ""
-#: 05030700.xhp
+#: online_update.xhp
msgctxt ""
-"05030700.xhp\n"
-"hd_id3148642\n"
-"9\n"
+"online_update.xhp\n"
+"tit\n"
"help.text"
-msgid "Centered"
-msgstr "Në qendër"
+msgid "Check for Updates"
+msgstr "E gatshme për përdorim"
-#: 05030700.xhp
+#: online_update.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3153257\n"
-"10\n"
+"online_update.xhp\n"
+"bm_id7647328\n"
"help.text"
-msgid "<variable id=\"zentrierttext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_CENTERALIGN\">Centers the contents of the paragraph on the page.</ahelp></variable>"
+msgid "<bookmark_value>updates;checking manually</bookmark_value> <bookmark_value>online updates;checking manually</bookmark_value>"
msgstr ""
-#: 05030700.xhp
-msgctxt ""
-"05030700.xhp\n"
-"hd_id3149415\n"
-"11\n"
-"help.text"
-msgid "Justify"
-msgstr "Rrafsho në të dy anët"
-
-#: 05030700.xhp
+#: online_update.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3152474\n"
-"12\n"
+"online_update.xhp\n"
+"hd_id315256\n"
"help.text"
-msgid "<variable id=\"blocksatztext\"><ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_ALIGN_PARAGRAPH:BTN_JUSTIFYALIGN\">Aligns the paragraph to the left and to the right page margins.</ahelp></variable>"
+msgid "<variable id=\"online_update\"><link href=\"text/shared/01/online_update.xhp\">Check for Updates</link></variable>"
msgstr ""
-#: 05030700.xhp
+#: online_update.xhp
msgctxt ""
-"05030700.xhp\n"
-"hd_id3145068\n"
-"13\n"
+"online_update.xhp\n"
+"par_id3174230\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Last Line </caseinline></switchinline>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Mark to enable the automatic check for updates. Choose %PRODUCTNAME - Online Update in the Options dialog box to disable or enable this feature.</ahelp>"
msgstr ""
-#: 05030700.xhp
+#: online_update.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3154280\n"
-"14\n"
+"online_update.xhp\n"
+"par_id0116200901063996\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_ALIGN_PARAGRAPH:LB_LASTLINE\">Specify the alignment for the last line in the paragraph.</ahelp></caseinline></switchinline>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to select a folder to download the files.</ahelp>"
msgstr ""
-#: 05030700.xhp
+#: online_update.xhp
msgctxt ""
-"05030700.xhp\n"
-"hd_id3154936\n"
-"15\n"
+"online_update.xhp\n"
+"par_id6797082\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Expand single word </caseinline></switchinline>"
+msgid "<ahelp hid=\".\">You can check for updates manually or automatically.</ahelp>"
msgstr ""
-#: 05030700.xhp
+#: online_update.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3154224\n"
-"16\n"
+"online_update.xhp\n"
+"par_id4218878\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_ALIGN_PARAGRAPH:CB_EXPAND\">If the last line of a justified paragraph consists of one word, the word is stretched to the width of the paragraph.</ahelp></caseinline></switchinline>"
+msgid "Checking for updates will also look for updates of all installed extensions."
msgstr ""
-#: 05030700.xhp
-msgctxt ""
-"05030700.xhp\n"
-"hd_id3150495\n"
-"22\n"
-"help.text"
-msgid "Snap to text grid (if active)"
-msgstr "Paragrafi mbërthehet në rrjetën e tekstit (nëse është aktive)"
-
-#: 05030700.xhp
+#: online_update.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3154331\n"
-"21\n"
+"online_update.xhp\n"
+"par_id8132267\n"
"help.text"
-msgid "<ahelp hid=\"SVX_CHECKBOX_RID_SVXPAGE_ALIGN_PARAGRAPH_CB_SNAP\">Aligns the paragraph to a text grid. To activate the text grid, choose <link href=\"text/swriter/01/05040800.xhp\" name=\"Format - Page - Text Grid\"><emph>Format - Page - Text Grid</emph></link>.</ahelp>"
+msgid "Choose <item type=\"menuitem\">Help - Check for Updates</item> to check manually."
msgstr ""
-#: 05030700.xhp
-msgctxt ""
-"05030700.xhp\n"
-"hd_id3148672\n"
-"18\n"
-"help.text"
-msgid "Text-to-text - Alignment"
-msgstr "Rreshtim vertikal i tekstit"
-
-#: 05030700.xhp
+#: online_update.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3149807\n"
-"19\n"
+"online_update.xhp\n"
+"par_id702230\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGN_PARAGRAPH_LB_VERTALIGN\">Select an alignment option for oversized or undersized characters in the paragraph relative to the rest of the text in the paragraph.</ahelp>"
+msgid "You can disable or enable the automatic check in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - <link href=\"text/shared/optionen/online_update.xhp\">Online Update</link>."
msgstr ""
-#: 05030700.xhp
-msgctxt ""
-"05030700.xhp\n"
-"hd_id3144434\n"
-"23\n"
-"help.text"
-msgid "Properties"
-msgstr "Vetitë"
-
-#: 05030700.xhp
-msgctxt ""
-"05030700.xhp\n"
-"hd_id3154631\n"
-"25\n"
-"help.text"
-msgid "Text direction"
-msgstr "Drejtimi teksti"
-
-#: 05030700.xhp
+#: online_update.xhp
msgctxt ""
-"05030700.xhp\n"
-"par_id3157960\n"
-"24\n"
+"online_update.xhp\n"
+"par_id3422345\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_ALIGN_PARAGRAPH_LB_TEXTDIRECTION\">Specify the text direction for a paragraph that uses complex text layout (CTL). This feature is only available if complex text layout support is enabled.</ahelp>"
+msgid "If an update is available, an icon<image id=\"img_id3155415\" src=\"extensions/source/update/ui/onlineupdate_16.png\" width=\"0.4583in\" height=\"0.1354in\"><alt id=\"alt_id3155415\">Icon</alt></image> on the menu bar will notify you of the update. Click the icon to open a dialog with more information."
msgstr ""
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Open"
-msgstr "Hape"
-
-#: 01020000.xhp
+#: online_update.xhp
msgctxt ""
-"01020000.xhp\n"
-"bm_id3145211\n"
+"online_update.xhp\n"
+"par_id9313638\n"
"help.text"
-msgid "<bookmark_value>directories; creating new</bookmark_value> <bookmark_value>folder creation</bookmark_value> <bookmark_value>My Documents folder; opening</bookmark_value> <bookmark_value>default directories</bookmark_value> <bookmark_value>multiple documents; opening</bookmark_value> <bookmark_value>opening; several files</bookmark_value> <bookmark_value>selecting; several files</bookmark_value> <bookmark_value>opening; files, with placeholders</bookmark_value> <bookmark_value>placeholders;on opening files</bookmark_value> <bookmark_value>documents; opening with templates</bookmark_value> <bookmark_value>templates; opening documents with</bookmark_value> <bookmark_value>documents; styles changed</bookmark_value> <bookmark_value>styles; 'changed' message</bookmark_value>"
+msgid "You will see the <link href=\"text/shared/01/online_update_dialog.xhp\">Check for Updates</link> dialog with some information about the online update of %PRODUCTNAME."
msgstr ""
-#: 01020000.xhp
+#: online_update.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3146936\n"
-"1\n"
+"online_update.xhp\n"
+"par_id9951780\n"
"help.text"
-msgid "<link href=\"text/shared/01/01020000.xhp\" name=\"Open\">Open</link>"
+msgid "Enable an Internet connection for %PRODUCTNAME."
msgstr ""
-#: 01020000.xhp
+#: online_update.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3151191\n"
-"2\n"
+"online_update.xhp\n"
+"par_id6479384\n"
"help.text"
-msgid "<variable id=\"oeffnentext\"><ahelp hid=\"HID_EXPLORERDLG_FILE\">Opens or imports a file.</ahelp></variable>"
+msgid "If you need a proxy server, enter the proxy settings in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Internet - Proxy."
msgstr ""
-#: 01020000.xhp
+#: online_update.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3149877\n"
-"109\n"
+"online_update.xhp\n"
+"par_id3639027\n"
"help.text"
-msgid "The following sections describe the <item type=\"productname\">%PRODUCTNAME</item><emph>Open</emph> dialog box. To activate the <item type=\"productname\">%PRODUCTNAME</item><emph>Open</emph> and <emph>Save</emph> dialog boxes, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010600.xhp\" name=\"%PRODUCTNAME - General\">%PRODUCTNAME- General</link></emph>, and then select the <emph>Use %PRODUCTNAME dialogs</emph> in the <emph>Open/Save dialogs</emph> area."
+msgid "Choose <item type=\"menuitem\">Check for Updates</item> to check for the availability of a newer version of your office suite."
msgstr ""
-#: 01020000.xhp
+#: online_update.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3150713\n"
-"52\n"
+"online_update.xhp\n"
+"par_id3722342\n"
"help.text"
-msgid "If the file that you want to open contains Styles, <link href=\"text/shared/01/01020000.xhp#vorlagen\" name=\"special rules\">special rules</link> apply."
+msgid "If a newer version is available and %PRODUCTNAME is not set up for automatic downloading, then you can select any of the following actions:"
msgstr ""
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"hd_id3147250\n"
-"11\n"
-"help.text"
-msgid "Up One Level"
-msgstr "Një nivel më lartë"
-
-#: 01020000.xhp
+#: online_update.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3147226\n"
-"12\n"
+"online_update.xhp\n"
+"par_id5106662\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_MENUBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_UP\">Move up one directory in the directory hierarchy. Long-click to see the higher level directories.</ahelp>"
-msgstr ""
+msgid "Download the new version."
+msgstr "Ruaj versionin e ri"
-#: 01020000.xhp
+#: online_update.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3145211\n"
-"13\n"
+"online_update.xhp\n"
+"par_id4931485\n"
"help.text"
-msgid "Create New Directory"
-msgstr "Krijo një Folder të ri"
+msgid "Install the downloaded files."
+msgstr "Fajllat e simbolit (*.sms)"
-#: 01020000.xhp
+#: online_update.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3153681\n"
-"14\n"
+"online_update.xhp\n"
+"par_id9168980\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_IMAGEBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_NEWFOLDER\">Creates a new directory.</ahelp>"
+msgid "Abort this check for updates for now."
msgstr ""
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"hd_id3147010\n"
-"38\n"
-"help.text"
-msgid "Default Directory"
-msgstr "Folderi standard"
-
-#: 01020000.xhp
+#: online_update.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3109847\n"
-"39\n"
+"online_update.xhp\n"
+"par_id9766533\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_STANDARD\">Displays the files in the default user directory.</ahelp>"
+msgid "If %PRODUCTNAME is configured to download the files automatically, the download starts immediately. A download continues even when you minimize the dialog."
msgstr ""
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"hd_id3148538\n"
-"19\n"
-"help.text"
-msgid "Display area"
-msgstr "Zona e fundfaqes"
-
-#: 01020000.xhp
+#: online_update.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3156113\n"
-"20\n"
+"online_update.xhp\n"
+"par_id927152\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEDLG_STANDARD\">Displays the files and directories in the directory that you are in.</ahelp> To open a file, select the file, and then click <emph>Open</emph>."
+msgid "If automatic downloads are disabled, start the download manually."
msgstr ""
-#: 01020000.xhp
+#: online_update.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3159256\n"
-"78\n"
+"online_update.xhp\n"
+"par_id6081728\n"
"help.text"
-msgid "To open more than one document at the same time, each in an own window, hold <switchinline select=\"sys\"><caseinline select=\"MAC\">Command</caseinline><defaultinline>Ctrl</defaultinline></switchinline> while you click the files, and then click <emph>Open</emph>."
+msgid "If no update was found, you can close the dialog."
msgstr ""
-#: 01020000.xhp
+#: online_update.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3154514\n"
-"110\n"
+"online_update.xhp\n"
+"par_id9219641\n"
"help.text"
-msgid "Click a column header to sort the files. Click again to reverse the sort order."
+msgid "You need Administrator rights to update %PRODUCTNAME."
msgstr ""
-#: 01020000.xhp
+#: online_update_dialog.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3149514\n"
-"111\n"
+"online_update_dialog.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEVIEW_MENU_DELETE\">To delete a file, right-click the file, and then choose <emph>Delete</emph>.</ahelp>"
-msgstr ""
+msgid "Check for Updates"
+msgstr "E gatshme për përdorim"
-#: 01020000.xhp
+#: online_update_dialog.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3147618\n"
-"112\n"
+"online_update_dialog.xhp\n"
+"hd_id4959257\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEVIEW_MENU_RENAME\">To rename a file, right-click the file, and then choose <emph>Rename</emph>.</ahelp>"
+msgid "<link href=\"text/shared/01/online_update_dialog.xhp\">Check for Updates</link>"
msgstr ""
-#: 01020000.xhp
+#: online_update_dialog.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3153331\n"
-"124\n"
+"online_update_dialog.xhp\n"
+"par_id1906491\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_QUERYDELETE_BTN_YES\" visibility=\"hidden\">Click to delete the file with the name shown in this dialog.</ahelp>"
+msgid "<ahelp hid=\".\">Checks for available updates to your version of %PRODUCTNAME. If a newer version is available, you can choose to download the update. After downloading, if you have write permissions for the installation directory, you can install the update.</ahelp>"
msgstr ""
-#: 01020000.xhp
+#: online_update_dialog.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3161458\n"
-"125\n"
+"online_update_dialog.xhp\n"
+"par_id4799340\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_QUERYDELETE_BTN_NO\" visibility=\"hidden\">Click to cancel deletion of the file with the name shown in this dialog.</ahelp>"
+msgid "Once the download starts, you see a progress bar and three buttons on the dialog. You can pause and resume the download by clicking the Pause and Resume buttons. Click Cancel to abort the download and delete the partly downloaded file."
msgstr ""
-#: 01020000.xhp
+#: online_update_dialog.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3147531\n"
-"126\n"
+"online_update_dialog.xhp\n"
+"par_id1502121\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_QUERYDELETE_BTN_ALL\" visibility=\"hidden\">Click to delete all selected files.</ahelp>"
+msgid "By default, downloads will be stored to your desktop. You can change the folder where the downloaded file will be stored in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Online Update."
msgstr ""
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"hd_id3154280\n"
-"21\n"
-"help.text"
-msgid "File name"
-msgstr "Emri i fajllit"
-
-#: 01020000.xhp
+#: online_update_dialog.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3161656\n"
-"22\n"
+"online_update_dialog.xhp\n"
+"par_id8266853\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEDLG_AUTOCOMPLETEBOX\">Enter a file name or a path for the file. You can also enter a <link href=\"text/shared/00/00000002.xhp#url\" name=\"URL\">URL</link> that starts with the protocol name ftp, http, or https.</ahelp>"
+msgid "After the download is complete, you can click Install to start the installation of the update. You see a confirmation dialog, where you can choose to close %PRODUCTNAME."
msgstr ""
-#: 01020000.xhp
+#: online_update_dialog.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3150541\n"
-"72\n"
+"online_update_dialog.xhp\n"
+"par_id2871181\n"
"help.text"
-msgid "If you want, you can use wildcards in the <emph>File name </emph>box to filter the list of files that is displayed."
+msgid "Under some operation systems, it may be required to manually go to the download folder, unzip the download file, and start the setup script."
msgstr ""
-#: 01020000.xhp
+#: online_update_dialog.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3153779\n"
-"24\n"
+"online_update_dialog.xhp\n"
+"par_id2733542\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\"></caseinline><defaultinline>For example, to list all of the text files in a directory, enter the asterisk wildcard with the text file extension (*.txt), and then click<emph> Open</emph>. Use the question mark (?) wildcard to represent any character, as in (??3*.txt), which only displays text files with a '3' as the third character in the file name.</defaultinline></switchinline>"
+msgid "After installation of the update you can delete the download file to save space."
msgstr ""
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"hd_id3145117\n"
-"81\n"
-"help.text"
-msgid "Version"
-msgstr "Verzioni:"
-
-#: 01020000.xhp
+#: online_update_dialog.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3149291\n"
-"82\n"
+"online_update_dialog.xhp\n"
+"par_id4238715\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEOPEN_VERSION\">If there are multiple versions of the selected file, select the version that you want to open.</ahelp> You can save and organize multiple versions of a document by choosing <emph>File - Versions</emph>. The versions of a document are opened in read-only mode."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Downloads and saves the update files to the desktop or a folder of your choice. Select the folder in %PRODUCTNAME - Online Update in the Options dialog box.</ahelp>"
msgstr ""
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"hd_id3150767\n"
-"25\n"
-"help.text"
-msgid "File type"
-msgstr "Tipi i fajllit"
-
-#: 01020000.xhp
+#: online_update_dialog.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3153969\n"
-"26\n"
+"online_update_dialog.xhp\n"
+"par_id8277230\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_LISTBOX_DLG_SVT_EXPLORERFILE_LB_EXPLORERFILE_FILETYPE\">Select the file type that you want to open, or select <emph>All Files (*)</emph> to display a list of all of the files in the directory.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Installs the downloaded update.</ahelp>"
msgstr ""
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"hd_id3154125\n"
-"27\n"
-"help.text"
-msgid "Open"
-msgstr "Hape"
-
-#: 01020000.xhp
+#: online_update_dialog.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3152933\n"
-"28\n"
+"online_update_dialog.xhp\n"
+"par_id4086428\n"
"help.text"
-msgid "<ahelp hid=\"SVTOOLS_PUSHBUTTON_DLG_SVT_EXPLORERFILE_BTN_EXPLORERFILE_OPEN\">Opens the selected document(s).</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Pauses the download. Later click Resume to continue downloading.</ahelp>"
msgstr ""
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"hd_id3147085\n"
-"88\n"
-"help.text"
-msgid "Insert"
-msgstr "Shto"
-
-#: 01020000.xhp
+#: online_update_dialog.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3156293\n"
-"89\n"
+"online_update_dialog.xhp\n"
+"par_id9024628\n"
"help.text"
-msgid "If you opened the dialog by choosing <emph>Insert - File</emph>, the <emph>Open</emph> button is labeled <emph>Insert</emph>. <ahelp hid=\"HID_FILEDLG_INSERT_BTN\">Inserts the selected file into the current document at the cursor position.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Continues a paused download.</ahelp>"
msgstr ""
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"hd_id3144762\n"
-"35\n"
-"help.text"
-msgid "Read-only"
-msgstr "Vetëm -lexim"
-
-#: 01020000.xhp
+#: online_update_dialog.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3145785\n"
-"36\n"
+"online_update_dialog.xhp\n"
+"par_id3067110\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILEOPEN_READONLY\">Opens the file in read-only mode.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Aborts the download and deletes the partly downloaded file.</ahelp>"
msgstr ""
-#: 01020000.xhp
-msgctxt ""
-"01020000.xhp\n"
-"hd_id3149984\n"
-"113\n"
-"help.text"
-msgid "Play"
-msgstr "Luaje"
-
-#: 01020000.xhp
+#: online_update_dialog.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3147289\n"
-"114\n"
+"online_update_dialog.xhp\n"
+"par_id8841822\n"
"help.text"
-msgid "<ahelp hid=\"HID_FILESAVE_DOPLAY\">Plays the selected sound file. Click again to stop playing the sound file.</ahelp>"
+msgid "<link href=\"text/shared/01/online_update.xhp\">Starting online updates</link>"
msgstr ""
-#: 01020000.xhp
+#: packagemanager.xhp
msgctxt ""
-"01020000.xhp\n"
-"hd_id3149260\n"
-"53\n"
+"packagemanager.xhp\n"
+"tit\n"
"help.text"
-msgid "Opening Documents With Templates"
-msgstr "Përmban shabllone për krijimin e dokumenteve të reja"
+msgid "Extension Manager"
+msgstr "~Menagjer i paketave"
-#: 01020000.xhp
+#: packagemanager.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3145367\n"
-"40\n"
+"packagemanager.xhp\n"
+"bm_id2883388\n"
"help.text"
-msgid "<item type=\"productname\">%PRODUCTNAME</item> recognizes templates that are located in any directory from the following list:"
+msgid "<bookmark_value>UNO components;Extension Manager</bookmark_value><bookmark_value>extensions;Extension Manager</bookmark_value><bookmark_value>packages, see extensions</bookmark_value>"
msgstr ""
-#: 01020000.xhp
+#: packagemanager.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3151292\n"
-"120\n"
+"packagemanager.xhp\n"
+"par_idN10543\n"
"help.text"
-msgid "the shared template directory"
-msgstr "s'mund ta hapë folderin"
+msgid "<link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link>"
+msgstr ""
-#: 01020000.xhp
+#: packagemanager.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3144442\n"
-"121\n"
+"packagemanager.xhp\n"
+"par_idN10553\n"
"help.text"
-msgid "the user template directory <switchinline select=\"sys\"><caseinline select=\"UNIX\">in the home directory</caseinline><defaultinline>in the Documents and Settings directory</defaultinline></switchinline>"
+msgid "<ahelp hid=\"42772\">The Extension Manager adds, removes, disables, enables, and updates %PRODUCTNAME extensions.</ahelp>"
msgstr ""
-#: 01020000.xhp
+#: packagemanager.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3146905\n"
-"122\n"
+"packagemanager.xhp\n"
+"par_idN10615\n"
"help.text"
-msgid "all template folders as defined in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010300.xhp\" name=\"%PRODUCTNAME - Paths\">%PRODUCTNAME - Paths</link></emph>"
+msgid "The following are examples of %PRODUCTNAME extensions:"
msgstr ""
-#: 01020000.xhp
+#: packagemanager.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id7375713\n"
+"packagemanager.xhp\n"
+"par_idN1061B\n"
"help.text"
-msgid "When you use <item type=\"menuitem\">File - Template - Save</item> to save a template, the template will be stored in your user template directory. When you open a document that is based on such a template, the document will be checked for a changed template as decribed below. The template is associated with the document, it may be called a \"sticky template\"."
+msgid "UNO components (compiled software modules)"
msgstr ""
-#: 01020000.xhp
+#: packagemanager.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id6930143\n"
+"packagemanager.xhp\n"
+"par_idN1061F\n"
"help.text"
-msgid "When you use <item type=\"menuitem\">File - Save As</item> and select a template filter to save a template at any other directory that is not in the list, then the documents based on that template will not be checked."
+msgid "Configuration data (for menu commands)"
msgstr ""
-#: 01020000.xhp
+#: packagemanager.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3150105\n"
-"73\n"
+"packagemanager.xhp\n"
+"par_idN10623\n"
"help.text"
-msgid "When you open a document that was created from a \"sticky template\" (as defined above), <item type=\"productname\">%PRODUCTNAME</item> checks to see if the template has been modified since the document was last opened. If the template was changed a dialog is shown where you can select which styles to apply to the document."
-msgstr ""
+msgid "%PRODUCTNAME Basic libraries"
+msgstr "Biblioteka themelore %PRODUCTNAME"
-#: 01020000.xhp
+#: packagemanager.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3153096\n"
-"74\n"
+"packagemanager.xhp\n"
+"par_idN106E8\n"
"help.text"
-msgid "To apply the new styles from the template to the document, click <emph>Yes</emph>."
-msgstr ""
+msgid "%PRODUCTNAME dialog libraries"
+msgstr "Biblioteka themelore %PRODUCTNAME"
-#: 01020000.xhp
+#: packagemanager.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3147581\n"
-"75\n"
+"packagemanager.xhp\n"
+"par_idN106F5\n"
"help.text"
-msgid "To retain the styles that are currently used in the document, click <emph>No</emph>."
+msgid "Extension files (*.oxt files containing one or more extensions of the above listed types)"
msgstr ""
-#: 01020000.xhp
+#: packagemanager.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3154988\n"
-"44\n"
+"packagemanager.xhp\n"
+"hd_id8570513\n"
"help.text"
-msgid "If a document was created using a template that cannot be found a dialog is shown that asks you how to proceed next time the document is opened."
-msgstr ""
+msgid "Extension Scope"
+msgstr "Windows Explorer vazhdim"
-#: 01020000.xhp
+#: packagemanager.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3151351\n"
-"91\n"
+"packagemanager.xhp\n"
+"par_idN1068A\n"
"help.text"
-msgid "To break the link between the document and the missing template, click <emph>No</emph>, otherwise <item type=\"productname\">%PRODUCTNAME</item> will look for the template the next time you open the document."
+msgid "Users with administrator or root privileges will see a dialog where they can choose to install extensions \"for all users\" or \"only for me\". Normal users without those privileges can install, remove, or modify extensions only for their own use."
msgstr ""
-#: 01020000.xhp
+#: packagemanager.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3149417\n"
+"packagemanager.xhp\n"
+"par_idN10626\n"
"help.text"
-msgid "<link href=\"text/shared/guide/doc_open.xhp\" name=\"Opening Documents\">Opening Documents</link>"
+msgid "A user with root or administrator privileges can install an extension as a shared extension that is available to all users. After selecting an extension, a dialog opens and asks whether to install for the current user or all users."
msgstr ""
-#: 01020000.xhp
+#: packagemanager.xhp
msgctxt ""
-"01020000.xhp\n"
-"par_id3153848\n"
+"packagemanager.xhp\n"
+"par_idN1069C\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000020.xhp\" name=\"Import and Export Filters\">Import and Export Filters</link>"
+msgid "A user without root privileges can only install an extension for own usage. This is called a user extension."
msgstr ""
-#: 05210200.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210200.xhp\n"
-"tit\n"
+"packagemanager.xhp\n"
+"hd_id3895382\n"
"help.text"
-msgid "Colors"
-msgstr "Ngjyrat"
+msgid "To install an extension"
+msgstr "Instalo [ProductName] në:"
-#: 05210200.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210200.xhp\n"
-"hd_id3152895\n"
-"1\n"
+"packagemanager.xhp\n"
+"par_id9143955\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210200.xhp\" name=\"Colors\">Colors</link>"
+msgid "An extension is available as a file with the file extension .oxt."
msgstr ""
-#: 05210200.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210200.xhp\n"
-"par_id3149119\n"
-"2\n"
+"packagemanager.xhp\n"
+"par_id7857905\n"
"help.text"
-msgid "Select a color to apply, save the current color list, or load a different color list."
+msgid "You can find a collection of extensions on the Web. Click the \"Get more extensions here\" link in the Extension Manager to open your Web browser and see the <link href=\"http://extensions.libreoffice.org/\">http://extensions.libreoffice.org/</link> page."
msgstr ""
-#: 05210200.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210200.xhp\n"
-"par_id3154288\n"
+"packagemanager.xhp\n"
+"hd_id5016937\n"
"help.text"
-msgid "<switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010500.xhp\" name=\"$[officename] - Colors\">$[officename] - Colors</link>"
-msgstr ""
+msgid "To install a user extension"
+msgstr "Instalo [ProductName] databazën në:"
-#: 05100600.xhp
-#, fuzzy
+#: packagemanager.xhp
msgctxt ""
-"05100600.xhp\n"
-"tit\n"
+"packagemanager.xhp\n"
+"par_id1856440\n"
"help.text"
-msgid "Center (vertical)"
-msgstr "Rreshtat vertikal"
+msgid "Do any of the following:"
+msgstr "Gabimi në vazhdim ka ndodhur:"
-#: 05100600.xhp
+#: packagemanager.xhp
msgctxt ""
-"05100600.xhp\n"
-"hd_id3149874\n"
-"1\n"
+"packagemanager.xhp\n"
+"par_id7654347\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100600.xhp\" name=\"Center (vertical)\">Center (vertical)</link>"
+msgid "Double-click the <item type=\"literal\">.oxt</item> file in your system's file browser."
msgstr ""
-#: 05100600.xhp
+#: packagemanager.xhp
msgctxt ""
-"05100600.xhp\n"
-"par_id3149048\n"
-"2\n"
+"packagemanager.xhp\n"
+"par_id5269020\n"
"help.text"
-msgid "<ahelp hid=\".\">Centers the contents of the cell between top and bottom of the cell.</ahelp>"
+msgid "On a web page, click a hyperlink to an <item type=\"literal\">*.oxt</item> file (if your web browser can be configured to start the Extension Manager for this file type)."
msgstr ""
-#: 05100600.xhp
+#: packagemanager.xhp
msgctxt ""
-"05100600.xhp\n"
-"par_id3149525\n"
-"121\n"
+"packagemanager.xhp\n"
+"par_id8714255\n"
"help.text"
-msgid "<variable id=\"zellemitte\">In the context menu of a cell, choose <emph>Cell - Center</emph></variable>"
+msgid "Choose <item type=\"menuitem\">Tools - Extension Manager</item> and click <item type=\"menuitem\">Add</item>."
msgstr ""
-#: 03040000.xhp
-msgctxt ""
-"03040000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Input Method Status"
-msgstr "Statusi i metodës për futjen e shënimeve"
-
-#: 03040000.xhp
+#: packagemanager.xhp
msgctxt ""
-"03040000.xhp\n"
-"bm_id3159079\n"
+"packagemanager.xhp\n"
+"hd_id3734550\n"
"help.text"
-msgid "<bookmark_value>IME;showing/hiding</bookmark_value><bookmark_value>input method window</bookmark_value>"
+msgid "To install a shared extension in text mode (for system administrators)"
msgstr ""
-#: 03040000.xhp
+#: packagemanager.xhp
msgctxt ""
-"03040000.xhp\n"
-"hd_id3159079\n"
-"1\n"
+"packagemanager.xhp\n"
+"par_id4139225\n"
"help.text"
-msgid "<link href=\"text/shared/01/03040000.xhp\" name=\"Input Method Status\">Input Method Status</link>"
+msgid "As an administrator, open a terminal or command shell."
msgstr ""
-#: 03040000.xhp
+#: packagemanager.xhp
msgctxt ""
-"03040000.xhp\n"
-"par_id3148668\n"
-"2\n"
+"packagemanager.xhp\n"
+"par_id671712\n"
"help.text"
-msgid "<ahelp hid=\".uno:ShowImeStatusWindow\">Shows or hides the Input Method Engine (IME) status window.</ahelp>"
+msgid "Change to the <switchinline select=\"sys\"><caseinline select=\"WIN\">\\ </caseinline><defaultinline>/</defaultinline></switchinline>program folder in your installation."
msgstr ""
-#: 03040000.xhp
+#: packagemanager.xhp
msgctxt ""
-"03040000.xhp\n"
-"par_id3157898\n"
-"3\n"
+"packagemanager.xhp\n"
+"par_id4163945\n"
"help.text"
-msgid "Currently only the Internet/Intranet Input Method Protocol (IIIMP) under Unix is supported."
+msgid "Enter the following command, using the path and file name of your extension:"
msgstr ""
-#: 02240000.xhp
-msgctxt ""
-"02240000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Compare Document"
-msgstr "Krahaso Dokumentin"
-
-#: 02240000.xhp
-msgctxt ""
-"02240000.xhp\n"
-"hd_id3149877\n"
-"1\n"
-"help.text"
-msgid "Compare Document"
-msgstr "Krahaso Dokumentin"
-
-#: 02240000.xhp
+#: packagemanager.xhp
msgctxt ""
-"02240000.xhp\n"
-"par_id3150838\n"
-"2\n"
+"packagemanager.xhp\n"
+"par_id9581591\n"
"help.text"
-msgid "<variable id=\"dokver\"><ahelp hid=\".uno:CompareDocuments\">Compares the current document with a document that you select.</ahelp></variable> The contents of the selected document are marked as deletions in the dialog that opens. If you want, you can insert the contents of the selected file into the current document by selecting the relevant deleted entries, clicking <emph>Reject</emph>, and then clicking <emph>Insert</emph>."
+msgid "<item type=\"literal\">unopkg add --shared path_filename.oxt</item>"
msgstr ""
-#: 02240000.xhp
+#: packagemanager.xhp
msgctxt ""
-"02240000.xhp\n"
-"par_id3153662\n"
-"4\n"
+"packagemanager.xhp\n"
+"par_idN106AD\n"
"help.text"
-msgid "The contents of footnotes, headers, frames and fields are ignored."
+msgid "<ahelp hid=\"42769\">Select the extension that you want to remove, enable, or disable. For some extensions, you can also open an Options dialog.</ahelp>"
msgstr ""
-#: 05210700.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210700.xhp\n"
-"tit\n"
+"packagemanager.xhp\n"
+"par_idN10639\n"
"help.text"
-msgid "Transparency"
-msgstr "Transparencë"
+msgid "Add"
+msgstr "Shto"
-#: 05210700.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210700.xhp\n"
-"bm_id3146807\n"
+"packagemanager.xhp\n"
+"par_idN106BA\n"
"help.text"
-msgid "<bookmark_value>transparency;areas</bookmark_value><bookmark_value>areas; transparency</bookmark_value>"
+msgid "<ahelp hid=\"2180256276\">Click Add to add an extension.</ahelp>"
msgstr ""
-#: 05210700.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3146807\n"
-"1\n"
+"packagemanager.xhp\n"
+"par_idN106BD\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210700.xhp\" name=\"Transparency\">Transparency</link>"
+msgid "A file dialog opens where you can select the extension that you want to add. To copy and to register the selected extension, click Open."
msgstr ""
-#: 05210700.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3149748\n"
-"2\n"
+"packagemanager.xhp\n"
+"par_id4856410\n"
"help.text"
-msgid "<ahelp hid=\".\">Set the transparency options for the fill that you apply to the selected object.</ahelp>"
+msgid "An extension can show a license dialog. <ahelp hid=\".\">Read the license. Click the Scroll Down button to scroll down if necessary. Click Accept to continue the installation of the extension.</ahelp>"
msgstr ""
-#: 05210700.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3152363\n"
-"30\n"
+"packagemanager.xhp\n"
+"par_idN10643\n"
"help.text"
-msgid "Transparency mode"
-msgstr "Modi piksel"
+msgid "Remove"
+msgstr "Largo"
-#: 05210700.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3149283\n"
-"3\n"
+"packagemanager.xhp\n"
+"par_idN106D1\n"
"help.text"
-msgid "Specify the type of transparency that you want to apply."
+msgid "<ahelp hid=\"2180256277\">Select the extension that you want to remove, and then click Remove.</ahelp>"
msgstr ""
-#: 05210700.xhp
-msgctxt ""
-"05210700.xhp\n"
-"hd_id3148585\n"
-"4\n"
-"help.text"
-msgid "No transparency"
-msgstr "Pa transparencë"
-
-#: 05210700.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3147226\n"
-"5\n"
+"packagemanager.xhp\n"
+"par_id0523200810573866\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_OFF\">Turns off color transparency.</ahelp> This is the default setting."
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable or disable the extension.</ahelp>"
msgstr ""
-#: 05210700.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3152425\n"
-"6\n"
+"packagemanager.xhp\n"
+"par_idN1064D\n"
"help.text"
-msgid "Transparency"
-msgstr "Transparencë"
+msgid "Enable"
+msgstr "Mundëso"
-#: 05210700.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3150693\n"
-"7\n"
+"packagemanager.xhp\n"
+"par_idN106DE\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_LINEAR\">Turns on color transparency. Select this option, and then enter a number in the box, where 0% is fully opaque and 100% is fully transparent.</ahelp>"
+msgid "<ahelp hid=\"2180256278\">Select the extension that you want to enable, and then click Enable.</ahelp>"
msgstr ""
-#: 05210700.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3155941\n"
-"14\n"
+"packagemanager.xhp\n"
+"par_idN10657\n"
"help.text"
-msgid "Transparency spin button"
-msgstr "Zëvendëso me butonin rrotullues"
+msgid "Disable"
+msgstr "Deaktivizo Makrot"
-#: 05210700.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3155892\n"
-"15\n"
+"packagemanager.xhp\n"
+"par_idN106EB\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRANSPARENT\">Adjusts the transparency of the current fill color. Enter a number between 0% (opaque) and 100% (transparent).</ahelp>"
+msgid "<ahelp hid=\"2180256279\">Select the extension that you want to disable, and then click Disable.</ahelp>"
msgstr ""
-#: 05210700.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3149827\n"
-"11\n"
+"packagemanager.xhp\n"
+"hd_id4453566\n"
"help.text"
-msgid "Gradient"
-msgstr "Shkallëzim"
+msgid "Update"
+msgstr "Azhuro"
-#: 05210700.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3155338\n"
-"12\n"
+"packagemanager.xhp\n"
+"par_id4129459\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_TRANSPARENCE:RBT_TRANS_GRADIENT\">Applies a transparency gradient to the current fill color. Select this option, and then set the gradient properties.</ahelp>"
+msgid "<ahelp hid=\".\">Click to check for online updates of all installed extensions. To check for updates of the selected extension only, choose the Update command from the context menu. The check for availability of updates starts immediately.</ahelp> You will see the <link href=\"text/shared/01/extensionupdate.xhp\">Extension Update</link> dialog."
msgstr ""
-#: 05210700.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3150443\n"
-"17\n"
+"packagemanager.xhp\n"
+"hd_id4921414\n"
"help.text"
-msgid "Type"
-msgstr "Tipi"
+msgid "Options"
+msgstr "Opcionet"
-#: 05210700.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3149398\n"
-"18\n"
+"packagemanager.xhp\n"
+"par_id1439558\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_TRANSPARENCE:LB_TRGR_GRADIENT_TYPES\">Select the type of transparency gradient that you want to apply.</ahelp>"
+msgid "<ahelp hid=\".\">Select an installed extension, then click to open the Options dialog for the extension.</ahelp>"
msgstr ""
-#: 05210700.xhp
-msgctxt ""
-"05210700.xhp\n"
-"hd_id3145317\n"
-"19\n"
-"help.text"
-msgid "Center X"
-msgstr "Qendër"
-
-#: 05210700.xhp
+#: packagemanager.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3155583\n"
-"20\n"
+"packagemanager.xhp\n"
+"par_id0103201110331832\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_X\">Enter the horizontal offset for the gradient.</ahelp>"
+msgid "Some additional commands can appear in the context menu of an extension in the Extension Manager window, depending on the selected extension. You can choose to show the license text again. You can choose to exclude the extension from checking for updates or to include an excluded extension."
msgstr ""
-#: 05210700.xhp
+#: password_dlg.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3154897\n"
-"21\n"
+"password_dlg.xhp\n"
+"tit\n"
"help.text"
-msgid "Center Y"
-msgstr "Qendër"
+msgid "Password"
+msgstr "Fjalëkalimi"
-#: 05210700.xhp
+#: password_dlg.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3159399\n"
-"22\n"
+"password_dlg.xhp\n"
+"hd_id3146902\n"
+"63\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_CENTER_Y\">Enter the vertical offset for the gradient.</ahelp>"
+msgid "<link href=\"text/shared/01/password_dlg.xhp\" name=\"Password\">Password</link>"
msgstr ""
-#: 05210700.xhp
-msgctxt ""
-"05210700.xhp\n"
-"hd_id3158430\n"
-"23\n"
-"help.text"
-msgid "Angle"
-msgstr "Këndi"
-
-#: 05210700.xhp
+#: password_dlg.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3155829\n"
-"24\n"
+"password_dlg.xhp\n"
+"par_id3154350\n"
+"64\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_ANGLE\">Enter a rotation angle for the gradient.</ahelp>"
+msgid "Assigns a password to prevent users from making unauthorized changes."
msgstr ""
-#: 05210700.xhp
-msgctxt ""
-"05210700.xhp\n"
-"hd_id3153320\n"
-"25\n"
-"help.text"
-msgid "Border"
-msgstr "Kufiri"
-
-#: 05210700.xhp
+#: password_dlg.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3149784\n"
-"32\n"
+"password_dlg.xhp\n"
+"par_id31222\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_BORDER\">Enter the amount by which you want to adjust the transparent area of the gradient. The default value is 0%.</ahelp>"
+msgid "The open password must be entered to open the file."
msgstr ""
-#: 05210700.xhp
-msgctxt ""
-"05210700.xhp\n"
-"hd_id3144439\n"
-"26\n"
-"help.text"
-msgid "Start value"
-msgstr "~Vlera fillestare"
-
-#: 05210700.xhp
+#: password_dlg.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3150117\n"
-"27\n"
+"password_dlg.xhp\n"
+"par_id313339\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_START_VALUE\">Enter a transparency value for the beginning point of the gradient, where 0% is fully opaque and 100% is fully transparent.</ahelp>"
+msgid "The permission password must be entered to edit the document."
msgstr ""
-#: 05210700.xhp
+#: password_dlg.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3152350\n"
-"28\n"
+"password_dlg.xhp\n"
+"hd_id3146857\n"
+"65\n"
"help.text"
-msgid "End value"
-msgstr "Vlerë ~përfundimtare"
+msgid "Password"
+msgstr "Fjalëkalimi"
-#: 05210700.xhp
+#: password_dlg.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3148924\n"
-"29\n"
+"password_dlg.xhp\n"
+"par_id3150502\n"
+"62\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_TRANSPARENCE:MTR_TRGR_END_VALUE\">Enter a transparency value for the endpoint of the gradient, where 0% is fully opaque and 100% is fully transparent.</ahelp>"
+msgid "<ahelp hid=\"HID_PASSWD_TABLE\">Type a password. A password is case sensitive.</ahelp>"
msgstr ""
-#: 05210700.xhp
+#: password_dlg.xhp
msgctxt ""
-"05210700.xhp\n"
-"hd_id3149575\n"
-"9\n"
+"password_dlg.xhp\n"
+"hd_id3153029\n"
+"66\n"
"help.text"
-msgid "Preview"
-msgstr "Shikim paraprak"
+msgid "Confirm"
+msgstr "Konfirmo"
-#: 05210700.xhp
+#: password_dlg.xhp
msgctxt ""
-"05210700.xhp\n"
-"par_id3149798\n"
-"10\n"
+"password_dlg.xhp\n"
+"par_id3151100\n"
+"67\n"
"help.text"
-msgid "Use the preview to view your changes before you apply the transparency effect to the color fill of the selected object."
+msgid "<ahelp hid=\".\">Re-enter the password.</ahelp>"
msgstr ""
-#: 02020000.xhp
-msgctxt ""
-"02020000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Redo"
-msgstr "Bëje prap"
-
-#: 02020000.xhp
+#: password_dlg.xhp
msgctxt ""
-"02020000.xhp\n"
-"bm_id3149991\n"
+"password_dlg.xhp\n"
+"hd_id3155351\n"
+"68\n"
"help.text"
-msgid "<bookmark_value>restoring;editing</bookmark_value><bookmark_value>redo command</bookmark_value>"
-msgstr ""
+msgid "Undoing password protection"
+msgstr "Ndrysho mbrojtjen e fjalëkalimit"
-#: 02020000.xhp
+#: password_dlg.xhp
msgctxt ""
-"02020000.xhp\n"
-"hd_id3149991\n"
-"1\n"
+"password_dlg.xhp\n"
+"par_id3146109\n"
+"69\n"
"help.text"
-msgid "<link href=\"text/shared/01/02020000.xhp\" name=\"Redo\">Redo</link>"
+msgid "To remove a password, open the document, then save without password."
msgstr ""
-#: 02020000.xhp
+#: password_dlg.xhp
msgctxt ""
-"02020000.xhp\n"
-"par_id3157898\n"
-"2\n"
+"password_dlg.xhp\n"
+"par_id31323250502\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_REDO\">Reverses the action of the last <emph>Undo</emph> command. To select the <emph>Undo</emph> step that you want to reverse, click the arrow next to the <emph>Redo</emph> icon on the Standard bar.</ahelp>"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Click to show or hide the file sharing password options.</ahelp>"
msgstr ""
-#: 02230000.xhp
+#: password_main.xhp
msgctxt ""
-"02230000.xhp\n"
+"password_main.xhp\n"
"tit\n"
"help.text"
-msgid "Changes"
-msgstr "$1 ndryshimet"
+msgid "Enter Master Password"
+msgstr "Shkruaj parollwn pwr 'XX'"
-#: 02230000.xhp
+#: password_main.xhp
msgctxt ""
-"02230000.xhp\n"
-"hd_id3152952\n"
+"password_main.xhp\n"
+"hd_id3154183\n"
"1\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230000.xhp\" name=\"Changes\">Changes</link>"
+msgid "<variable id=\"password_maintitle\"><link href=\"text/shared/01/password_main.xhp\" name=\"Enter Master Password\">Enter Master Password</link></variable>"
msgstr ""
-#: 02230000.xhp
+#: password_main.xhp
msgctxt ""
-"02230000.xhp\n"
-"par_id3145759\n"
+"password_main.xhp\n"
+"par_id3154841\n"
"2\n"
"help.text"
-msgid "<ahelp hid=\".\">Lists the commands that are available for tracking changes in your file.</ahelp>"
-msgstr ""
-
-#: 02230000.xhp
-msgctxt ""
-"02230000.xhp\n"
-"hd_id3154894\n"
-"7\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><link href=\"text/shared/01/02230200.xhp\" name=\"Show\">Show</link></caseinline></switchinline>"
-msgstr ""
-
-#: 02230000.xhp
-msgctxt ""
-"02230000.xhp\n"
-"hd_id3154184\n"
-"8\n"
-"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\"><link href=\"text/shared/01/02230200.xhp\" name=\"Show\">Show</link></caseinline></switchinline>"
-msgstr ""
-
-#: 02230000.xhp
-msgctxt ""
-"02230000.xhp\n"
-"hd_id3153527\n"
-"4\n"
-"help.text"
-msgid "<link href=\"text/shared/01/02230400.xhp\" name=\"Accept or Reject\">Accept or Reject</link>"
+msgid "<ahelp hid=\"\">Assign a master password to protect the access to a saved password.</ahelp>"
msgstr ""
-#: 02230000.xhp
+#: password_main.xhp
msgctxt ""
-"02230000.xhp\n"
-"hd_id3145072\n"
+"password_main.xhp\n"
+"par_id3146857\n"
"3\n"
"help.text"
-msgid "<link href=\"text/shared/01/02230300.xhp\" name=\"Comment\">Comment</link>"
-msgstr ""
-
-#: 02230000.xhp
-msgctxt ""
-"02230000.xhp\n"
-"hd_id3150694\n"
-"5\n"
-"help.text"
-msgid "<link href=\"text/shared/01/02230500.xhp\" name=\"Merge Document\">Merge Document</link>"
+msgid "You can save some passwords for the duration of a session, or permanently to a file protected by a master password."
msgstr ""
-#: 05280000.xhp
-msgctxt ""
-"05280000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Fontwork"
-msgstr "Puna me fonte"
-
-#: 05280000.xhp
+#: password_main.xhp
msgctxt ""
-"05280000.xhp\n"
-"hd_id3146959\n"
-"51\n"
+"password_main.xhp\n"
+"par_id3147000\n"
+"6\n"
"help.text"
-msgid "<variable id=\"fntwrk\"><link href=\"text/shared/01/05280000.xhp\" name=\"FontWork\">Fontwork Dialog (Previous Version)</link></variable>"
+msgid "You must enter the master password to access a file or service that is protected by a saved password. You only need to enter the master password once during a session."
msgstr ""
-#: 05280000.xhp
+#: password_main.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3151097\n"
-"52\n"
+"password_main.xhp\n"
+"par_id0608200910545958\n"
"help.text"
-msgid "<ahelp hid=\".uno:FontWork\">Edits Fontwork effects of the selected object that has been created with the previous Fontwork dialog.</ahelp>"
+msgid "You should only use passwords that are hard to find by other persons or programs. A password should follow these rules:"
msgstr ""
-#: 05280000.xhp
+#: password_main.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3155934\n"
-"53\n"
+"password_main.xhp\n"
+"par_id0608200910545989\n"
"help.text"
-msgid "This <emph>Fontwork</emph> dialog is only available for Fontwork in old Writer text documents that were created prior to %PRODUCTNAME %PRODUCTVERSION. You must first call <emph>Tools - Customize</emph> to add a menu command or an icon to open this dialog."
+msgid "Length of eight or more characters."
msgstr ""
-#: 05280000.xhp
+#: password_main.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3154497\n"
-"74\n"
+"password_main.xhp\n"
+"par_id0608200910545951\n"
"help.text"
-msgid "You can change the shape of the text baseline to match semicircles, arcs, circles, and freeform lines."
+msgid "Contains a mix of lower case and upper case letters, numbers, and special characters."
msgstr ""
-#: 05280000.xhp
-msgctxt ""
-"05280000.xhp\n"
-"hd_id3152372\n"
-"54\n"
-"help.text"
-msgid "Alignment icons"
-msgstr "Mbështetje vertikale"
-
-#: 05280000.xhp
+#: password_main.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3149760\n"
-"55\n"
+"password_main.xhp\n"
+"par_id0608200910545923\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_CTL_FORMS\" visibility=\"hidden\">Click the shape of the baseline that you want to use for the text.</ahelp>"
+msgid "Cannot be found in any wordbook or encyclopedia."
msgstr ""
-#: 05280000.xhp
+#: password_main.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3152542\n"
-"56\n"
+"password_main.xhp\n"
+"par_id0608200910550049\n"
"help.text"
-msgid "The top row contains the following baseline shapes: <emph>Upper Semicircle</emph>, <emph>Lower Semicircle</emph>, <emph>Left Semicircle</emph> and <emph>Right Semicircle</emph>."
+msgid "Has no direct relation to your personal data, e.g., date of birth or car plate."
msgstr ""
-#: 05280000.xhp
+#: password_main.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3150774\n"
-"58\n"
+"password_main.xhp\n"
+"hd_id3147588\n"
+"7\n"
"help.text"
-msgid "The middle row contains the following baseline shapes: <emph>Upper Arc</emph>, <emph>Lower Arc, Left Arc</emph> and <emph>Right Arc</emph>."
-msgstr ""
+msgid "Master password"
+msgstr "Fjalëkalim i pavlefshëm"
-#: 05280000.xhp
+#: password_main.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3159158\n"
-"60\n"
+"password_main.xhp\n"
+"par_id3148731\n"
+"8\n"
"help.text"
-msgid "The bottom row contains the following baseline shapes: <emph>Open Circle, Closed Circle, Closed Circle II</emph>, and <emph>Open Circle Vertical</emph>. For the best results, the drawing object must contain more than two lines of text."
+msgid "<ahelp hid=\"UUI_EDIT_DLG_UUI_PASSWORD_ED_MASTERPASSWORD\">Type a master password to prevent unauthorized users from accessing stored passwords.</ahelp>"
msgstr ""
-#: 05280000.xhp
+#: password_main.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3149237\n"
-"62\n"
+"password_main.xhp\n"
+"hd_id3144436\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_OFF\">Removes baseline formatting.</ahelp>"
-msgstr ""
+msgid "Confirm master password"
+msgstr "Ndrysho mbrojtjen e fjalëkalimit"
-#: 05280000.xhp
+#: password_main.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3149244\n"
+"password_main.xhp\n"
+"par_id3145129\n"
+"10\n"
"help.text"
-msgid "<image id=\"img_id3161458\" src=\"cmd/sc_fontwork.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3161458\">Icon</alt></image>"
+msgid "<ahelp hid=\"UUI_EDIT_DLG_UUI_PASSWORD_CRT_ED_MASTERPASSWORD_REPEAT\">Re-enter the master password.</ahelp>"
msgstr ""
-#: 05280000.xhp
-msgctxt ""
-"05280000.xhp\n"
-"par_id3149046\n"
-"63\n"
-"help.text"
-msgid "Off"
-msgstr "Ç'kyçur"
-
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3156344\n"
-"64\n"
+"ref_pdf_export.xhp\n"
+"tit\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_ROTATE\">Uses the top or the bottom edge of the selected object as the text baseline.</ahelp>"
-msgstr ""
+msgid "Export as PDF"
+msgstr "Eksporto si dokument PDF"
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3150791\n"
+"ref_pdf_export.xhp\n"
+"bm_id3149532\n"
"help.text"
-msgid "<image id=\"img_id3153379\" src=\"svx/res/fw02.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3153379\">Icon</alt></image>"
+msgid "<bookmark_value>PDF;export</bookmark_value> <bookmark_value>portable document format</bookmark_value> <bookmark_value>exporting;to PDF</bookmark_value>"
msgstr ""
-#: 05280000.xhp
-msgctxt ""
-"05280000.xhp\n"
-"par_id3153339\n"
-"65\n"
-"help.text"
-msgid "Rotate"
-msgstr "Rrotullo"
-
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3155742\n"
-"66\n"
+"ref_pdf_export.xhp\n"
+"hd_id3149532\n"
+"52\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_UPRIGHT\">Uses the top or the bottom edge of the selected object as the text baseline and preserves the original vertical alignment of the individual characters.</ahelp>"
+msgid "<variable id=\"export_as_pdf\"><variable id=\"ref_pdf_export\"><link href=\"text/shared/01/ref_pdf_export.xhp\" name=\"Export as PDF\">Export as PDF</link></variable></variable>"
msgstr ""
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3154069\n"
+"ref_pdf_export.xhp\n"
+"par_id3154044\n"
+"1\n"
"help.text"
-msgid "<image id=\"img_id3152933\" src=\"svx/res/fw03.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3152933\">Icon</alt></image>"
+msgid "<variable id=\"export\"><ahelp hid=\"FILTER_EDIT_RID_PDF_EXPORT_DLG_ED_PAGES\">Saves the current file to Portable Document Format (PDF) version 1.4.</ahelp> A PDF file can be viewed and printed on any platform with the original formatting intact, provided that supporting software is installed.</variable>"
msgstr ""
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3154153\n"
-"67\n"
+"ref_pdf_export.xhp\n"
+"hd_id746482\n"
"help.text"
-msgid "Upright"
+msgid "General tab"
msgstr ""
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3149202\n"
-"68\n"
+"ref_pdf_export.xhp\n"
+"hd_id3148520\n"
+"2\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_SLANTX\">Horizontally slants the characters in the text object.</ahelp>"
-msgstr ""
+msgid "Range"
+msgstr "Brez"
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3153180\n"
+"ref_pdf_export.xhp\n"
+"par_id3154230\n"
+"3\n"
"help.text"
-msgid "<image id=\"img_id3151041\" src=\"svx/res/fw04.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3151041\">Icon</alt></image>"
+msgid "Sets the export options for the pages included in the PDF file."
msgstr ""
-#: 05280000.xhp
-msgctxt ""
-"05280000.xhp\n"
-"par_id3149983\n"
-"69\n"
-"help.text"
-msgid "Slant Horizontal"
-msgstr "Rreshtat horizontal"
-
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3154297\n"
-"70\n"
+"ref_pdf_export.xhp\n"
+"hd_id3166445\n"
+"4\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_STYLE_SLANTY\">Vertically slants the characters in the text object.</ahelp>"
-msgstr ""
+msgid "All"
+msgstr "Të gjitha"
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3147348\n"
+"ref_pdf_export.xhp\n"
+"par_id3149893\n"
+"5\n"
"help.text"
-msgid "<image id=\"img_id3154690\" src=\"svx/res/fw05.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3154690\">Icon</alt></image>"
+msgid "<ahelp hid=\"FILTER_RADIOBUTTON_RID_PDF_EXPORT_DLG_RB_ALL\">Exports all defined print ranges. If no print range is defined, exports the entire document.</ahelp>"
msgstr ""
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3150962\n"
-"71\n"
+"ref_pdf_export.xhp\n"
+"hd_id3154673\n"
+"6\n"
"help.text"
-msgid "Slant Vertical"
-msgstr "Rreshtat vertikal"
+msgid "Pages"
+msgstr "Faqet"
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3154985\n"
-"22\n"
+"ref_pdf_export.xhp\n"
+"par_id3147571\n"
+"7\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_MIRROR\">Reverses the text flow direction, and flips the text horizontally or vertically. To use this command, you must first apply a different baseline to the text.</ahelp>"
+msgid "<ahelp hid=\"FILTER_EDIT_RID_PDF_EXPORT_DLG_ED_PAGES\">Exports the pages you type in the box.</ahelp>"
msgstr ""
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3155854\n"
+"ref_pdf_export.xhp\n"
+"par_id3145136\n"
+"53\n"
"help.text"
-msgid "<image id=\"img_id3153142\" src=\"svx/res/fw06.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3153142\">Icon</alt></image>"
+msgid "To export a range of pages, use the format 3-6. To export single pages, use the format 7;9;11. If you want, you can export a combination of page ranges and single pages, by using a format like 3-6;8;10;12."
msgstr ""
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3149934\n"
-"21\n"
+"ref_pdf_export.xhp\n"
+"hd_id3147043\n"
+"8\n"
"help.text"
-msgid "Orientation"
-msgstr "Orientim"
+msgid "Selection"
+msgstr "Selektimet"
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3154640\n"
-"24\n"
+"ref_pdf_export.xhp\n"
+"par_id3150774\n"
+"9\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_LEFT\">Aligns the text to the left end of the text baseline.</ahelp>"
+msgid "<ahelp hid=\"FILTER_RADIOBUTTON_RID_PDF_EXPORT_DLG_RB_SELECTION\">Exports the current selection.</ahelp>"
msgstr ""
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3156006\n"
+"ref_pdf_export.xhp\n"
+"par_idN10706\n"
"help.text"
-msgid "<image id=\"img_id3153573\" src=\"cmd/sc_alignleft.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3153573\">Icon</alt></image>"
+msgid "Images"
msgstr ""
-#: 05280000.xhp
-msgctxt ""
-"05280000.xhp\n"
-"par_id3152416\n"
-"23\n"
-"help.text"
-msgid "Align Left"
-msgstr "Rreshto majtas"
-
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3147578\n"
-"26\n"
+"ref_pdf_export.xhp\n"
+"par_idN1070A\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_CENTER\">Centers the text on the text baseline.</ahelp>"
+msgid "Sets the PDF export options for images inside your document."
msgstr ""
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3155748\n"
+"ref_pdf_export.xhp\n"
+"par_idN1071B\n"
"help.text"
-msgid "<image id=\"img_id3147217\" src=\"cmd/sc_centerpara.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3147217\">Icon</alt></image>"
+msgid "EPS images with embedded previews are exported only as previews. EPS images without embedded previews are exported as empty placeholders."
msgstr ""
-#: 05280000.xhp
-msgctxt ""
-"05280000.xhp\n"
-"par_id3159346\n"
-"25\n"
-"help.text"
-msgid "Center"
-msgstr "Qendër"
-
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3149583\n"
-"28\n"
+"ref_pdf_export.xhp\n"
+"par_idN10715\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_RIGHT\">Aligns the text to the right end of the text baseline.</ahelp>"
-msgstr ""
+msgid "Lossless compression"
+msgstr "Pa kompresim"
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3149939\n"
+"ref_pdf_export.xhp\n"
+"par_idN10719\n"
"help.text"
-msgid "<image id=\"img_id3148498\" src=\"cmd/sc_alignright.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3148498\">Icon</alt></image>"
+msgid "<ahelp hid=\".\">Selects a lossless compression of images. All pixels are preserved.</ahelp>"
msgstr ""
-#: 05280000.xhp
-msgctxt ""
-"05280000.xhp\n"
-"par_id3150418\n"
-"27\n"
-"help.text"
-msgid "Align Right"
-msgstr "Rreshto djathtas"
-
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3147124\n"
-"30\n"
+"ref_pdf_export.xhp\n"
+"par_idN10730\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_ADJUST_AUTOSIZE\">Resizes the text to fit the length of the text baseline.</ahelp>"
-msgstr ""
+msgid "JPEG compression"
+msgstr "Pa kompresim"
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3159129\n"
+"ref_pdf_export.xhp\n"
+"par_idN10734\n"
"help.text"
-msgid "<image id=\"img_id3153334\" src=\"svx/res/fw010.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3153334\">Icon</alt></image>"
+msgid "<ahelp hid=\".\">Selects a JPEG compression of images. With a high quality level, almost all pixels are preserved. With a low quality level, some pixels get lost and artefacts are introduced, but file sizes are reduced.</ahelp>"
msgstr ""
-#: 05280000.xhp
-msgctxt ""
-"05280000.xhp\n"
-"par_id3148747\n"
-"29\n"
-"help.text"
-msgid "AutoSize Text"
-msgstr "Vizato tekstin"
-
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3157844\n"
-"32\n"
+"ref_pdf_export.xhp\n"
+"par_idN1074C\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_DISTANCE\">Enter the amount of space that you want to leave between the text baseline and the base of the individual characters.</ahelp>"
-msgstr ""
+msgid "Quality"
+msgstr "Kualitet"
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3153957\n"
+"ref_pdf_export.xhp\n"
+"par_idN10750\n"
"help.text"
-msgid "<image id=\"img_id3151019\" src=\"svx/res/fw020.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3151019\">Icon</alt></image>"
+msgid "<ahelp hid=\".\">Enter the quality level for JPEG compression.</ahelp>"
msgstr ""
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3146971\n"
-"31\n"
+"ref_pdf_export.xhp\n"
+"par_idN10767\n"
"help.text"
-msgid "Distance"
-msgstr "Distancë"
+msgid "Reduce image resolution"
+msgstr "Nga editori i fotografisë..."
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3153530\n"
-"34\n"
+"ref_pdf_export.xhp\n"
+"par_idN1076B\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_TEXTSTART\">Enter the amount of space to leave between the beginning of the text baseline, and the beginning of the text.</ahelp>"
+msgid "<ahelp hid=\".\">Selects to resample or down-size the images to a lower number of pixels per inch.</ahelp>"
msgstr ""
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3156332\n"
+"ref_pdf_export.xhp\n"
+"par_idN10782\n"
"help.text"
-msgid "<image id=\"img_id3153836\" src=\"svx/res/fw021.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3153836\">Icon</alt></image>"
+msgid "<ahelp hid=\".\">Select the target resolution for the images.</ahelp>"
msgstr ""
-#: 05280000.xhp
-msgctxt ""
-"05280000.xhp\n"
-"par_id3153710\n"
-"33\n"
-"help.text"
-msgid "Indent"
-msgstr "Kryerresht"
-
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3154636\n"
-"36\n"
+"ref_pdf_export.xhp\n"
+"par_idN10791\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_SHOWFORM\">Shows or hides the text baseline, or the edges of the selected object.</ahelp>"
-msgstr ""
+msgid "General"
+msgstr "Të përgjithshme"
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3155515\n"
+"ref_pdf_export.xhp\n"
+"par_idN10795\n"
"help.text"
-msgid "<image id=\"img_id3159186\" src=\"svx/res/fw011.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3159186\">Icon</alt></image>"
+msgid "Sets general PDF export options."
msgstr ""
-#: 05280000.xhp
-msgctxt ""
-"05280000.xhp\n"
-"par_id3148996\n"
-"35\n"
-"help.text"
-msgid "Contour"
-msgstr "Konturë"
-
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3155764\n"
-"38\n"
+"ref_pdf_export.xhp\n"
+"hd_id080420080355360\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_OUTLINE\">Shows or hides the borders of the individual characters in the text.</ahelp>"
+msgid "Embed OpenDocument file"
msgstr ""
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3150323\n"
+"ref_pdf_export.xhp\n"
+"par_id0804200803553767\n"
"help.text"
-msgid "<image id=\"img_id3147100\" src=\"svx/res/fw012.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3147100\">Icon</alt></image>"
+msgid "<ahelp hid=\".\">This setting enables you to export the document as a .pdf file containing two file formats: PDF and ODF.</ahelp> In PDF viewers it behaves like a normal .pdf file and it remains fully editable in %PRODUCTNAME."
msgstr ""
-#: 05280000.xhp
-msgctxt ""
-"05280000.xhp\n"
-"par_id3147339\n"
-"37\n"
-"help.text"
-msgid "Text Contour"
-msgstr "Kontrolla e Konturës"
-
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3148927\n"
-"40\n"
+"ref_pdf_export.xhp\n"
+"hd_id2796411\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_SHADOW_OFF\">Removes the shadow effects that you applied to the text.</ahelp>"
-msgstr ""
+msgid "PDF/A-1a"
+msgstr "PDF fajll"
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3150241\n"
+"ref_pdf_export.xhp\n"
+"par_id5016327\n"
"help.text"
-msgid "<image id=\"img_id3156375\" src=\"svx/res/fw013.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3156375\">Icon</alt></image>"
+msgid "<ahelp hid=\".\">Converts to the PDF/A-1a format. This is defined as an electronic document file format for long term preservation. All fonts that were used in the source document will be embedded into the generated PDF file. PDF tags will be written.</ahelp>"
msgstr ""
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3151248\n"
-"39\n"
+"ref_pdf_export.xhp\n"
+"par_idN107A0\n"
"help.text"
-msgid "No Shadow"
-msgstr "pa Hije"
+msgid "Tagged PDF"
+msgstr "PDF fajll"
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3147321\n"
-"42\n"
+"ref_pdf_export.xhp\n"
+"par_idN107A4\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_SHADOW_NORMAL\">Adds a shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the <emph>Distance X</emph> and the <emph>Distance Y</emph> boxes.</ahelp>"
+msgid "<ahelp hid=\".\">Selects to write PDF tags. This can increase file size by huge amounts.</ahelp>"
msgstr ""
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3145231\n"
+"ref_pdf_export.xhp\n"
+"par_idN107B3\n"
"help.text"
-msgid "<image id=\"img_id3149908\" src=\"svx/res/fw014.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3149908\">Icon</alt></image>"
+msgid "Tagged PDF contains information about the structure of the document contents. This can help to display the document on devices with different screens, and when using screen reader software."
msgstr ""
-#: 05280000.xhp
-msgctxt ""
-"05280000.xhp\n"
-"par_id3152484\n"
-"41\n"
-"help.text"
-msgid "Vertical"
-msgstr "Vertikal"
-
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3148478\n"
-"44\n"
+"ref_pdf_export.xhp\n"
+"hd_id8257087\n"
"help.text"
-msgid "<ahelp hid=\"HID_FONTWORK_TBI_SHADOW_SLANT\">Adds a slant shadow to the text in the selected object. Click this button, and then enter the dimensions of the shadow in the <emph>Distance X</emph> and the <emph>Distance Y</emph> boxes.</ahelp>"
-msgstr ""
+msgid "Export bookmarks"
+msgstr "Shënjimet e folderëve"
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3150664\n"
+"ref_pdf_export.xhp\n"
+"par_id3479415\n"
"help.text"
-msgid "<image id=\"img_id3166423\" src=\"svx/res/fw015.png\" width=\"0.2362inch\" height=\"0.222inch\"><alt id=\"alt_id3166423\">Icon</alt></image>"
+msgid "<ahelp hid=\".\">Selects to export bookmarks of Writer documents as PDF bookmarks. Bookmarks are created for all outline paragraphs (Tools - Outline Numbering) and for all table of contents entries for which you did assign hyperlinks in the source document.</ahelp>"
msgstr ""
-#: 05280000.xhp
-msgctxt ""
-"05280000.xhp\n"
-"par_id3147129\n"
-"43\n"
-"help.text"
-msgid "Slant"
-msgstr "Shtrembëro %O (pjerrtësi)"
-
-#: 05280000.xhp
-msgctxt ""
-"05280000.xhp\n"
-"hd_id3156537\n"
-"45\n"
-"help.text"
-msgid "Horizontal Distance"
-msgstr "Rreshtat horizontal"
-
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3151049\n"
-"46\n"
+"ref_pdf_export.xhp\n"
+"par_idN107BE\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_SHADOW_X\">Enter the horizontal distance between the text characters and the edge of the shadow.</ahelp>"
+msgid "Export comments"
msgstr ""
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3159103\n"
+"ref_pdf_export.xhp\n"
+"par_idN107C2\n"
"help.text"
-msgid "<image id=\"img_id3149242\" src=\"svx/res/fw016.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3149242\">Icon</alt></image>"
+msgid "<ahelp hid=\".\">Selects to export comments of Writer and Calc documents as PDF notes.</ahelp>"
msgstr ""
-#: 05280000.xhp
-msgctxt ""
-"05280000.xhp\n"
-"par_id3147093\n"
-"72\n"
-"help.text"
-msgid "X Distance"
-msgstr "Distancë"
-
-#: 05280000.xhp
-msgctxt ""
-"05280000.xhp\n"
-"hd_id3149450\n"
-"47\n"
-"help.text"
-msgid "Vertical Distance"
-msgstr "Rreshtat vertikal"
-
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3153704\n"
-"48\n"
+"ref_pdf_export.xhp\n"
+"par_idN107F4\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXDLG_FONTWORK:MTR_FLD_SHADOW_Y\">Enter the vertical distance between the text characters and the edge of the shadow.</ahelp>"
-msgstr ""
+msgid "Create PDF form"
+msgstr "XML Dokument i formularit"
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3154275\n"
+"ref_pdf_export.xhp\n"
+"par_id4909817\n"
"help.text"
-msgid "<image id=\"img_id3154118\" src=\"svx/res/fw017.png\" width=\"0.1772inch\" height=\"0.1665inch\"><alt id=\"alt_id3154118\">Icon</alt></image>"
+msgid "<ahelp hid=\".\">Choose to create a PDF form. This can be filled out and printed by the user of the PDF document.</ahelp>"
msgstr ""
-#: 05280000.xhp
-msgctxt ""
-"05280000.xhp\n"
-"par_id3150783\n"
-"73\n"
-"help.text"
-msgid "Y Distance"
-msgstr "Distancë"
-
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"hd_id3149209\n"
-"49\n"
+"ref_pdf_export.xhp\n"
+"hd_id6585283\n"
"help.text"
-msgid "Shadow Color"
-msgstr "Ngjyrë e hijes"
+msgid "Submit format"
+msgstr "Format tjetër"
-#: 05280000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05280000.xhp\n"
-"par_id3148681\n"
-"50\n"
+"ref_pdf_export.xhp\n"
+"par_idN107F8\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXDLG_FONTWORK:CLB_SHADOW_COLOR\">Select a color for the text shadow.</ahelp>"
+msgid "<ahelp hid=\".\">Select the format of submitting forms from within the PDF file.</ahelp>"
msgstr ""
-#: 02200200.xhp
-msgctxt ""
-"02200200.xhp\n"
-"tit\n"
-"help.text"
-msgid "Open"
-msgstr "Hape"
-
-#: 02200200.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02200200.xhp\n"
-"bm_id3085157\n"
+"ref_pdf_export.xhp\n"
+"par_id0901200811454970\n"
"help.text"
-msgid "<bookmark_value>objects; opening</bookmark_value><bookmark_value>opening; objects</bookmark_value>"
+msgid "Select the format of the data that you will receive from the submitter: FDF (Forms Data Format), PDF, HTML, or XML."
msgstr ""
-#: 02200200.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02200200.xhp\n"
-"hd_id3085157\n"
-"1\n"
+"ref_pdf_export.xhp\n"
+"par_idN10807\n"
"help.text"
-msgid "<link href=\"text/shared/01/02200200.xhp\" name=\"Open\">Open</link>"
+msgid "This setting overrides the control's URL property that you set in the document."
msgstr ""
-#: 02200200.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02200200.xhp\n"
-"par_id3151097\n"
-"2\n"
+"ref_pdf_export.xhp\n"
+"hd_id1026200909535841\n"
"help.text"
-msgid "Opens the selected OLE object with the program that the object was created in."
+msgid "Allow duplicate field names"
msgstr ""
-#: 02200200.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02200200.xhp\n"
-"par_id3154230\n"
-"3\n"
+"ref_pdf_export.xhp\n"
+"par_id102620090953596\n"
"help.text"
-msgid "This menu command is inserted into <emph>Edit – Objects</emph> submenu by the application that created the linked object. Depending on the application, the “Open” command for the OLE object might have a different name."
+msgid "<ahelp hid=\".\">Allows to use the same field name for multiple fields in the generated PDF file. If disabled, field names will be exported using generated unique names.</ahelp>"
msgstr ""
-#: 02200200.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02200200.xhp\n"
-"par_id3149760\n"
-"4\n"
+"ref_pdf_export.xhp\n"
+"hd_id3946958\n"
"help.text"
-msgid "After you have completed your changes, close the source file for the OLE object. The OLE object is then updated in the container document."
+msgid "Export automatically inserted blank pages"
msgstr ""
-#: 06010000.xhp
-msgctxt ""
-"06010000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Spelling and Grammar"
-msgstr "Bardh e zi"
-
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"bm_id3149047\n"
+"ref_pdf_export.xhp\n"
+"par_id8551896\n"
"help.text"
-msgid "<bookmark_value>dictionaries; spellcheck</bookmark_value> <bookmark_value>spellcheck; dialog</bookmark_value> <bookmark_value>languages; spellcheck</bookmark_value>"
+msgid "<ahelp hid=\".\">If switched on, automatically inserted blank pages are being exported to pdf file. This is best if you are printing the pdf file double-sided. Example: In a book a chapter paragraph style is set to always start with an odd numbered page. The previous chapter ends on an odd page. %PRODUCTNAME inserts an even numbered blank page. This option controls whether to export that even numbered page or not.</ahelp>"
msgstr ""
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3153882\n"
-"1\n"
+"ref_pdf_export.xhp\n"
+"hd_id3954548\n"
"help.text"
-msgid "<link href=\"text/shared/01/06010000.xhp\" name=\"Spellcheck\">Spelling and Grammar</link>"
-msgstr ""
+msgid "Embed standard fonts"
+msgstr "Formati numerik: standard"
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3154682\n"
-"2\n"
+"ref_pdf_export.xhp\n"
+"par_id853434896\n"
"help.text"
-msgid "<variable id=\"recht\"><ahelp hid=\".uno:Spelling\">Checks the document or the current selection for spelling errors. If a grammar checking extension is installed, the dialog also checks for grammar errors.</ahelp></variable>"
+msgid "<ahelp hid=\".\">Normally the 14 standard Postscript fonts are not embedded in a PDF file, because every PDF reader software already contains these fonts. Enable this option to embed the standard fonts that are installed on your system and that are used in the document.</ahelp> Use this option if you expect to have a better looking or more useful standard font than the font that is available in the recipients' PDF reader software."
msgstr ""
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_idN1064B\n"
+"ref_pdf_export.xhp\n"
+"hd_id9796441\n"
"help.text"
-msgid "The spellcheck starts at the current cursor position and advances to the end of the document or selection. You can then choose to continue the spellcheck from the beginning of the document."
-msgstr ""
+msgid "Initial View tab"
+msgstr "Pamja e shënimeve"
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3166445\n"
-"3\n"
+"ref_pdf_export.xhp\n"
+"hd_id1218604\n"
"help.text"
-msgid "Spellcheck looks for misspelled words and gives you the option of adding an unknown word to a user dictionary. When the first misspelled word is found, the <emph>Spellcheck</emph> dialog opens."
-msgstr ""
+msgid "Panes"
+msgstr "Faqet"
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id1022200801300654\n"
+"ref_pdf_export.xhp\n"
+"hd_id7071443\n"
"help.text"
-msgid "If a grammar checking extension is installed, this dialog is called <emph>Spelling and Grammar</emph>. Spelling errors are underlined in red, grammar errors in blue. First the dialog presents all spelling errors, then all grammar errors."
-msgstr ""
+msgid "Page only"
+msgstr "Vetëm titull"
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id1022200801354366\n"
+"ref_pdf_export.xhp\n"
+"par_id1851557\n"
"help.text"
-msgid "<ahelp hid=\".\">Enable <emph>Check grammar</emph> to work first on all spellcheck errors, then on all grammar errors.</ahelp>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows only the page contents.</ahelp>"
msgstr ""
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3149511\n"
-"6\n"
+"ref_pdf_export.xhp\n"
+"hd_id7464217\n"
"help.text"
-msgid "Not in dictionary"
-msgstr "Nuk është brenda"
+msgid "Bookmarks and page"
+msgstr "Thyerjet e faqes dhe kolonës"
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3149798\n"
-"7\n"
+"ref_pdf_export.xhp\n"
+"par_id4490188\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays the sentence with the misspelled word highlighted. Edit the word or the sentence, or click one of the suggestions in the text box below.</ahelp>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows a bookmarks palette and the page contents.</ahelp>"
msgstr ""
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3149885\n"
-"10\n"
+"ref_pdf_export.xhp\n"
+"hd_id3581041\n"
"help.text"
-msgid "Suggestions"
-msgstr "Vlerë maks."
+msgid "Thumbnails and page"
+msgstr "Thyerjet e faqes dhe kolonës"
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3155628\n"
-"11\n"
+"ref_pdf_export.xhp\n"
+"par_id956755\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_SPELLCHECK_LB_NEWWORD\">Lists suggested words to replace the misspelled word. Select the word that you want to use, and then click <emph>Change</emph> or <emph>Change All</emph>.</ahelp>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows a thumbnails palette and the page contents.</ahelp>"
msgstr ""
-#: 06010000.xhp
-msgctxt ""
-"06010000.xhp\n"
-"hd_id3145087\n"
-"12\n"
-"help.text"
-msgid "Text Language"
-msgstr "Gjuha e skriptimit"
-
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3144422\n"
-"13\n"
+"ref_pdf_export.xhp\n"
+"hd_id1905575\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXDLG_SPELLCHECK_LB_LANGUAGE\">Specifies the language to use to check the spelling.</ahelp>"
-msgstr ""
+msgid "Open on page"
+msgstr "$(ARG1) në faqen $(ARG2)"
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3154071\n"
-"52\n"
+"ref_pdf_export.xhp\n"
+"par_id9776909\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">AutoCorrect</caseinline></switchinline>"
+msgid "<ahelp hid=\".\">Select to show the given page when the reader opens the PDF file.</ahelp>"
msgstr ""
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3153798\n"
-"53\n"
+"ref_pdf_export.xhp\n"
+"hd_id7509994\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SPELLCHECK_BTN_AUTOCORR\">Adds the current combination of the incorrect word and the replacement word to the AutoCorrect replacements table.</ahelp></caseinline></switchinline>"
+msgid "Magnification"
msgstr ""
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3151382\n"
-"56\n"
+"ref_pdf_export.xhp\n"
+"hd_id5900143\n"
"help.text"
-msgid "Options"
-msgstr "Opcionet"
+msgid "Default"
+msgstr "Standarde"
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3154123\n"
-"57\n"
+"ref_pdf_export.xhp\n"
+"par_id822168\n"
"help.text"
-msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SPELLCHECK_BTN_OPTIONS\">Opens a dialog, where you can select the user-defined dictionaries, and set the rules for the spellchecking.</ahelp>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the page contents without zooming. If the reader software is configured to use a zoom factor by default, the page shows with that zoom factor.</ahelp>"
msgstr ""
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3153353\n"
-"24\n"
+"ref_pdf_export.xhp\n"
+"hd_id1092257\n"
"help.text"
-msgid "Add"
-msgstr "Shto"
+msgid "Fit in window"
+msgstr "Përshtate me faqe"
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3144432\n"
-"25\n"
+"ref_pdf_export.xhp\n"
+"par_id3092135\n"
"help.text"
-msgid "<ahelp hid=\"SVX_PUSHBUTTON_RID_SVXDLG_SPELLCHECK_BTN_ADD\">Adds the unknown word to a user-defined dictionary.</ahelp>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the page zoomed to fit entirely into the reader's window.</ahelp>"
msgstr ""
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3155994\n"
-"22\n"
+"ref_pdf_export.xhp\n"
+"hd_id654622\n"
"help.text"
-msgid "Ignore Once"
-msgstr "Flash Once"
+msgid "Fit width"
+msgstr "Gjerësia e plotë"
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3148920\n"
-"23\n"
+"ref_pdf_export.xhp\n"
+"par_id814539\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_IGNORE\">Skips the unknown word and continues with the spellcheck.</ahelp>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the page zoomed to fit the width of the reader's window.</ahelp>"
msgstr ""
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_idN107CB\n"
+"ref_pdf_export.xhp\n"
+"hd_id9883114\n"
"help.text"
-msgid "This label of this button changes to <emph>Resume</emph> if you leave the Spellcheck dialog open when you return to your document. To continue the spellcheck from the current position of the cursor, click <emph>Resume</emph>."
-msgstr ""
+msgid "Fit visible"
+msgstr "Rrjeta e dukshme"
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id1024200804091149\n"
+"ref_pdf_export.xhp\n"
+"par_id2362437\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">While performing a grammar check, click Ignore Rule to ignore the rule that is currently flagged as a grammar error.</ahelp>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the text and graphics on the page zoomed to fit the width of the reader's window.</ahelp>"
msgstr ""
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3150740\n"
-"20\n"
+"ref_pdf_export.xhp\n"
+"hd_id7296975\n"
"help.text"
-msgid "Ignore All"
-msgstr "Injoro të gjitha"
+msgid "Zoom factor"
+msgstr "Zvogëlo"
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3145318\n"
-"21\n"
+"ref_pdf_export.xhp\n"
+"par_id371715\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_IGNOREALL\">Skips all occurrences of the unknown word until the end of the current %PRODUCTNAME session and continues with the spellcheck.</ahelp>"
+msgid "<ahelp hid=\".\">Select a given zoom factor when the reader opens the PDF file.</ahelp>"
msgstr ""
-#: 06010000.xhp
-msgctxt ""
-"06010000.xhp\n"
-"hd_id3153056\n"
-"18\n"
-"help.text"
-msgid "Change"
-msgstr "Ndrysho %O"
-
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3148559\n"
-"19\n"
+"ref_pdf_export.xhp\n"
+"hd_id329905\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_CHANGE\">Replaces the unknown word with the current suggestion. If you changed more than just the misspelled word, the entire sentence is replaced.</ahelp>"
-msgstr ""
+msgid "Page layout"
+msgstr "Ndrysho formëdhënien..."
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"hd_id3145787\n"
-"16\n"
+"ref_pdf_export.xhp\n"
+"hd_id5632496\n"
"help.text"
-msgid "Change All"
-msgstr "Prano të gjitha"
+msgid "Default"
+msgstr "Standarde"
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3144446\n"
-"17\n"
+"ref_pdf_export.xhp\n"
+"par_id1694082\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXDLG_SPELLCHECK:BTN_CHANGEALL\">Replaces all occurrences of the unknown word with the current suggestion.</ahelp>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows the pages according to the layout setting of the reader software.</ahelp>"
msgstr ""
-#: 06010000.xhp
-msgctxt ""
-"06010000.xhp\n"
-"par_idN10850\n"
-"help.text"
-msgid "Undo"
-msgstr "Zhbëj%O"
-
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_idN10854\n"
+"ref_pdf_export.xhp\n"
+"hd_id8454237\n"
"help.text"
-msgid "<ahelp hid=\".\">Click to undo the last change in the current sentence. Click again to undo the previous change in the same sentence.</ahelp>"
-msgstr ""
+msgid "Single page"
+msgstr "Numri i faqes"
-#: 06010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"06010000.xhp\n"
-"par_id3147426\n"
+"ref_pdf_export.xhp\n"
+"par_id672322\n"
"help.text"
-msgid "<link href=\"text/shared/01/06020000.xhp\" name=\"Thesaurus\">Thesaurus</link>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows one page at a time.</ahelp>"
msgstr ""
-#: 02030000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02030000.xhp\n"
-"tit\n"
+"ref_pdf_export.xhp\n"
+"hd_id7387310\n"
"help.text"
-msgid "Repeat"
-msgstr "Përsërite"
+msgid "Continuous"
+msgstr "I vazhdueshëm"
-#: 02030000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02030000.xhp\n"
-"bm_id3150279\n"
+"ref_pdf_export.xhp\n"
+"par_id8764305\n"
"help.text"
-msgid "<bookmark_value>repeating; commands</bookmark_value><bookmark_value>commands; repeating</bookmark_value>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows pages in a continuous vertical column.</ahelp>"
msgstr ""
-#: 02030000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02030000.xhp\n"
-"hd_id3150279\n"
-"1\n"
+"ref_pdf_export.xhp\n"
+"hd_id6223639\n"
"help.text"
-msgid "<link href=\"text/shared/01/02030000.xhp\" name=\"Repeat\">Repeat</link>"
+msgid "Continuous facing"
msgstr ""
-#: 02030000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02030000.xhp\n"
-"par_id3155934\n"
-"2\n"
+"ref_pdf_export.xhp\n"
+"par_id5318765\n"
"help.text"
-msgid "<ahelp hid=\".uno:Repeat\">Repeats the last command. This command is available in Writer and Calc.</ahelp>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows pages side by side in a continuous column. For more than two pages, the first page is displayed on the right.</ahelp>"
msgstr ""
-#: packagemanager.xhp
-msgctxt ""
-"packagemanager.xhp\n"
-"tit\n"
-"help.text"
-msgid "Extension Manager"
-msgstr "~Menagjer i paketave"
-
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"bm_id2883388\n"
+"ref_pdf_export.xhp\n"
+"hd_id1416364\n"
"help.text"
-msgid "<bookmark_value>UNO components;Extension Manager</bookmark_value><bookmark_value>extensions;Extension Manager</bookmark_value><bookmark_value>packages, see extensions</bookmark_value>"
+msgid "First page is left"
msgstr ""
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_idN10543\n"
+"ref_pdf_export.xhp\n"
+"par_id9596850\n"
"help.text"
-msgid "<link href=\"text/shared/01/packagemanager.xhp\">Extension Manager</link>"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that shows pages side by side in a continuous column. For more than two pages, the first page is displayed on the left. You must enable support for complex text layout on Language settings - Languages in the Options dialog box.</ahelp>"
msgstr ""
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_idN10553\n"
+"ref_pdf_export.xhp\n"
+"hd_id18005\n"
"help.text"
-msgid "<ahelp hid=\"42772\">The Extension Manager adds, removes, disables, enables, and updates %PRODUCTNAME extensions.</ahelp>"
-msgstr ""
+msgid "User Interface tab"
+msgstr "Elementet e intefejsit të shfrytëzuasit"
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_idN10615\n"
+"ref_pdf_export.xhp\n"
+"hd_id6676839\n"
"help.text"
-msgid "The following are examples of %PRODUCTNAME extensions:"
-msgstr ""
+msgid "Window options"
+msgstr "Shiriti i opcioneve"
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_idN1061B\n"
+"ref_pdf_export.xhp\n"
+"hd_id3809015\n"
"help.text"
-msgid "UNO components (compiled software modules)"
+msgid "Resize window to initial page"
msgstr ""
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_idN1061F\n"
+"ref_pdf_export.xhp\n"
+"par_id1321146\n"
"help.text"
-msgid "Configuration data (for menu commands)"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that is shown in a window displaying the whole initial page.</ahelp>"
msgstr ""
-#: packagemanager.xhp
-msgctxt ""
-"packagemanager.xhp\n"
-"par_idN10623\n"
-"help.text"
-msgid "%PRODUCTNAME Basic libraries"
-msgstr "Biblioteka themelore %PRODUCTNAME"
-
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_idN106E8\n"
+"ref_pdf_export.xhp\n"
+"hd_id6994842\n"
"help.text"
-msgid "%PRODUCTNAME dialog libraries"
-msgstr "Biblioteka themelore %PRODUCTNAME"
+msgid "Center window on screen"
+msgstr "Ekrani i plotë kyçur/çkyçur"
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_idN106F5\n"
+"ref_pdf_export.xhp\n"
+"par_id9601428\n"
"help.text"
-msgid "Extension files (*.oxt files containing one or more extensions of the above listed types)"
+msgid "<ahelp hid=\".\">Select to generate a PDF file that is shown in a reader window centered on screen.</ahelp>"
msgstr ""
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"hd_id8570513\n"
+"ref_pdf_export.xhp\n"
+"hd_id6369212\n"
"help.text"
-msgid "Extension Scope"
-msgstr "Windows Explorer vazhdim"
+msgid "Open in full screen mode"
+msgstr "Hape këtë dokument në modin vetëm-lexo"
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_idN1068A\n"
+"ref_pdf_export.xhp\n"
+"par_id1111789\n"
"help.text"
-msgid "Users with administrator or root privileges will see a dialog where they can choose to install extensions \"for all users\" or \"only for me\". Normal users without those privileges can install, remove, or modify extensions only for their own use."
+msgid "<ahelp hid=\".\">Select to generate a PDF file that is shown in a full screen reader window in front of all other windows.</ahelp>"
msgstr ""
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_idN10626\n"
+"ref_pdf_export.xhp\n"
+"hd_id2041993\n"
"help.text"
-msgid "A user with root or administrator privileges can install an extension as a shared extension that is available to all users. After selecting an extension, a dialog opens and asks whether to install for the current user or all users."
-msgstr ""
+msgid "Display document title"
+msgstr "Shto Titullin e Dokumentit"
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_idN1069C\n"
+"ref_pdf_export.xhp\n"
+"par_id4576555\n"
"help.text"
-msgid "A user without root privileges can only install an extension for own usage. This is called a user extension."
+msgid "<ahelp hid=\".\">Select to generate a PDF file that is shown with the document title in the reader's title bar.</ahelp>"
msgstr ""
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"hd_id3895382\n"
+"ref_pdf_export.xhp\n"
+"hd_id4632099\n"
"help.text"
-msgid "To install an extension"
-msgstr "Instalo [ProductName] në:"
+msgid "User interface options"
+msgstr "Elementet e intefejsit të shfrytëzuasit"
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_id9143955\n"
+"ref_pdf_export.xhp\n"
+"hd_id3154087\n"
"help.text"
-msgid "An extension is available as a file with the file extension .oxt."
-msgstr ""
+msgid "Hide menu bar"
+msgstr "Shfaq/Fsheh Shiritin e Hiperlinkut"
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_id7857905\n"
+"ref_pdf_export.xhp\n"
+"par_id6582537\n"
"help.text"
-msgid "You can find a collection of extensions on the Web. Click the \"Get more extensions here\" link in the Extension Manager to open your Web browser and see the <link href=\"http://extensions.libreoffice.org/\">http://extensions.libreoffice.org/</link> page."
+msgid "<ahelp hid=\".\">Select to hide the reader's menu bar when the document is active.</ahelp>"
msgstr ""
-#: packagemanager.xhp
-msgctxt ""
-"packagemanager.xhp\n"
-"hd_id5016937\n"
-"help.text"
-msgid "To install a user extension"
-msgstr "Instalo [ProductName] databazën në:"
-
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_id1856440\n"
+"ref_pdf_export.xhp\n"
+"hd_id729697\n"
"help.text"
-msgid "Do any of the following:"
-msgstr "Gabimi në vazhdim ka ndodhur:"
+msgid "Hide toolbar"
+msgstr "Shiriti i kryesor i veglave"
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_id7654347\n"
+"ref_pdf_export.xhp\n"
+"par_id769066\n"
"help.text"
-msgid "Double-click the <item type=\"literal\">.oxt</item> file in your system's file browser."
+msgid "<ahelp hid=\".\">Select to hide the reader's toolbar when the document is active.</ahelp>"
msgstr ""
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_id5269020\n"
+"ref_pdf_export.xhp\n"
+"hd_id376293\n"
"help.text"
-msgid "On a web page, click a hyperlink to an <item type=\"literal\">*.oxt</item> file (if your web browser can be configured to start the Extension Manager for this file type)."
-msgstr ""
+msgid "Hide window controls"
+msgstr "XML Form Controllat"
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_id8714255\n"
+"ref_pdf_export.xhp\n"
+"par_id43641\n"
"help.text"
-msgid "Choose <item type=\"menuitem\">Tools - Extension Manager</item> and click <item type=\"menuitem\">Add</item>."
+msgid "<ahelp hid=\".\">Select to hide the reader's controls when the document is active.</ahelp>"
msgstr ""
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"hd_id3734550\n"
+"ref_pdf_export.xhp\n"
+"hd_id1886654\n"
"help.text"
-msgid "To install a shared extension in text mode (for system administrators)"
+msgid "Transitions"
msgstr ""
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_id4139225\n"
+"ref_pdf_export.xhp\n"
+"par_idN107D9\n"
"help.text"
-msgid "As an administrator, open a terminal or command shell."
-msgstr ""
+msgid "Use transition effects"
+msgstr "E gatshme për përdorim"
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_id671712\n"
+"ref_pdf_export.xhp\n"
+"par_idN107DD\n"
"help.text"
-msgid "Change to the <switchinline select=\"sys\"><caseinline select=\"WIN\">\\ </caseinline><defaultinline>/</defaultinline></switchinline>program folder in your installation."
+msgid "<ahelp hid=\".\">Selects to export Impress slide transition effects to respective PDF effects.</ahelp>"
msgstr ""
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_id4163945\n"
+"ref_pdf_export.xhp\n"
+"hd_id9053926\n"
"help.text"
-msgid "Enter the following command, using the path and file name of your extension:"
-msgstr ""
+msgid "Bookmarks"
+msgstr "Shënjimet"
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_id9581591\n"
+"ref_pdf_export.xhp\n"
+"hd_id1941892\n"
"help.text"
-msgid "<item type=\"literal\">unopkg add --shared path_filename.oxt</item>"
-msgstr ""
+msgid "All bookmark levels"
+msgstr "Janë paraqitur nivelet e kryefaqes"
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_idN106AD\n"
+"ref_pdf_export.xhp\n"
+"par_id341807\n"
"help.text"
-msgid "<ahelp hid=\"42769\">Select the extension that you want to remove, enable, or disable. For some extensions, you can also open an Options dialog.</ahelp>"
+msgid "<ahelp hid=\".\">Select to show all bookmark levels when the reader opens the PDF file.</ahelp>"
msgstr ""
-#: packagemanager.xhp
-msgctxt ""
-"packagemanager.xhp\n"
-"par_idN10639\n"
-"help.text"
-msgid "Add"
-msgstr "Shto"
-
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_idN106BA\n"
+"ref_pdf_export.xhp\n"
+"hd_id486770\n"
"help.text"
-msgid "<ahelp hid=\"2180256276\">Click Add to add an extension.</ahelp>"
-msgstr ""
+msgid "Visible bookmark levels"
+msgstr "Janë paraqitur nivelet e kryefaqes"
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_idN106BD\n"
+"ref_pdf_export.xhp\n"
+"par_id4850001\n"
"help.text"
-msgid "A file dialog opens where you can select the extension that you want to add. To copy and to register the selected extension, click Open."
+msgid "<ahelp hid=\".\">Select to show bookmark levels down to the selected level when the reader opens the PDF file.</ahelp>"
msgstr ""
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_id4856410\n"
+"ref_pdf_export.xhp\n"
+"hd_id9464094\n"
"help.text"
-msgid "An extension can show a license dialog. <ahelp hid=\".\">Read the license. Click the Scroll Down button to scroll down if necessary. Click Accept to continue the installation of the extension.</ahelp>"
+msgid "Links tab"
msgstr ""
-#: packagemanager.xhp
-msgctxt ""
-"packagemanager.xhp\n"
-"par_idN10643\n"
-"help.text"
-msgid "Remove"
-msgstr "Largo"
-
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_idN106D1\n"
+"ref_pdf_export.xhp\n"
+"par_id9302346\n"
"help.text"
-msgid "<ahelp hid=\"2180256277\">Select the extension that you want to remove, and then click Remove.</ahelp>"
+msgid "Specify how to export bookmarks and hyperlinks in your document."
msgstr ""
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_id0523200810573866\n"
+"ref_pdf_export.xhp\n"
+"hd_id8296151\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Enable or disable the extension.</ahelp>"
+msgid "Export bookmarks as named destinations"
msgstr ""
-#: packagemanager.xhp
-msgctxt ""
-"packagemanager.xhp\n"
-"par_idN1064D\n"
-"help.text"
-msgid "Enable"
-msgstr "Mundëso"
-
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_idN106DE\n"
+"ref_pdf_export.xhp\n"
+"par_id4809411\n"
"help.text"
-msgid "<ahelp hid=\"2180256278\">Select the extension that you want to enable, and then click Enable.</ahelp>"
+msgid "<ahelp hid=\".\">The bookmarks (targets of references) in PDF files can be defined as rectangular areas. Additionally, bookmarks to named objects can be defined by their names. Enable the checkbox to export the names of objects in your document as valid bookmark targets. This allows to link to those objects by name from other documents.</ahelp>"
msgstr ""
-#: packagemanager.xhp
-msgctxt ""
-"packagemanager.xhp\n"
-"par_idN10657\n"
-"help.text"
-msgid "Disable"
-msgstr "Deaktivizo Makrot"
-
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_idN106EB\n"
+"ref_pdf_export.xhp\n"
+"hd_id6454969\n"
"help.text"
-msgid "<ahelp hid=\"2180256279\">Select the extension that you want to disable, and then click Disable.</ahelp>"
+msgid "Convert document references to PDF targets"
msgstr ""
-#: packagemanager.xhp
-msgctxt ""
-"packagemanager.xhp\n"
-"hd_id4453566\n"
-"help.text"
-msgid "Update"
-msgstr "Azhuro"
-
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_id4129459\n"
+"ref_pdf_export.xhp\n"
+"par_id7928708\n"
"help.text"
-msgid "<ahelp hid=\".\">Click to check for online updates of all installed extensions. To check for updates of the selected extension only, choose the Update command from the context menu. The check for availability of updates starts immediately.</ahelp> You will see the <link href=\"text/shared/01/extensionupdate.xhp\">Extension Update</link> dialog."
+msgid "<ahelp hid=\".\">Enable this checkbox to convert the URLs referencing other ODF files to PDF files with the same name. In the referencing URLs the extensions .odt, .odp, .ods, .odg, and .odm are converted to the extension .pdf.</ahelp>"
msgstr ""
-#: packagemanager.xhp
-msgctxt ""
-"packagemanager.xhp\n"
-"hd_id4921414\n"
-"help.text"
-msgid "Options"
-msgstr "Opcionet"
-
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_id1439558\n"
+"ref_pdf_export.xhp\n"
+"hd_id3864253\n"
"help.text"
-msgid "<ahelp hid=\".\">Select an installed extension, then click to open the Options dialog for the extension.</ahelp>"
+msgid "Export URLs relative to file system"
msgstr ""
-#: packagemanager.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"packagemanager.xhp\n"
-"par_id0103201110331832\n"
+"ref_pdf_export.xhp\n"
+"par_id3144016\n"
"help.text"
-msgid "Some additional commands can appear in the context menu of an extension in the Extension Manager window, depending on the selected extension. You can choose to show the license text again. You can choose to exclude the extension from checking for updates or to include an excluded extension."
+msgid "<ahelp hid=\".\">Enable this checkbox to export URLs to other documents as relative URLs in the file system. See <link href=\"text/shared/guide/hyperlink_rel_abs.xhp\">\"relative hyperlinks\"</link> in the Help.</ahelp>"
msgstr ""
-#: 01010201.xhp
-msgctxt ""
-"01010201.xhp\n"
-"tit\n"
-"help.text"
-msgid "Labels"
-msgstr "Etiketat"
-
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"hd_id3149987\n"
-"1\n"
+"ref_pdf_export.xhp\n"
+"hd_id9937131\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010201.xhp\" name=\"Labels\">Labels</link>"
-msgstr ""
+msgid "Cross-document links"
+msgstr "Azhuro të gjitha lidhjet"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3152952\n"
-"2\n"
+"ref_pdf_export.xhp\n"
+"par_id5616626\n"
"help.text"
-msgid "<ahelp hid=\"HID_LAB_LAB\">Specify the label text and choose the paper size for the label.</ahelp>"
+msgid "Specify how to handle hyperlinks from your PDF file to other files."
msgstr ""
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"hd_id3158397\n"
-"3\n"
+"ref_pdf_export.xhp\n"
+"hd_id1972106\n"
"help.text"
-msgid "Inscription"
-msgstr "Mbishkrim"
+msgid "Default mode"
+msgstr "Modi piksel"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3154350\n"
-"4\n"
+"ref_pdf_export.xhp\n"
+"par_id79042\n"
"help.text"
-msgid "Enter or insert the text that you want to appear on the label(s)."
+msgid "<ahelp hid=\".\">Links from your PDF document to other documents will be handled as it is specified in your operating system.</ahelp>"
msgstr ""
-#: 01010201.xhp
-msgctxt ""
-"01010201.xhp\n"
-"hd_id3147294\n"
-"5\n"
-"help.text"
-msgid "Label text"
-msgstr "Teksti i etiketës"
-
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3150838\n"
-"6\n"
+"ref_pdf_export.xhp\n"
+"hd_id4076357\n"
"help.text"
-msgid "<ahelp hid=\"SW_MULTILINEEDIT_TP_LAB_LAB_EDT_WRITING\">Enter the text that you want to appear on the label. You can also insert a database field.</ahelp>"
+msgid "Open with PDF reader application"
msgstr ""
-#: 01010201.xhp
-msgctxt ""
-"01010201.xhp\n"
-"hd_id3150603\n"
-"7\n"
-"help.text"
-msgid "Address"
-msgstr "Adresa"
-
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3153089\n"
-"8\n"
+"ref_pdf_export.xhp\n"
+"par_id8231757\n"
"help.text"
-msgid "<ahelp hid=\"SW_CHECKBOX_TP_LAB_LAB_BOX_ADDR\">Creates a label with your return address. Text that is currently in the <emph>Label text</emph> box is overwritten.</ahelp>"
+msgid "<ahelp hid=\".\">Cross-document links are opened with the PDF reader application that currently shows the document. The PDF reader application must be able to handle the specified file type inside the hyperlink.</ahelp>"
msgstr ""
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3155555\n"
-"9\n"
+"ref_pdf_export.xhp\n"
+"hd_id3168736\n"
"help.text"
-msgid "To change your return address, choose <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - <link href=\"text/shared/optionen/01010100.xhp\" name=\"%PRODUCTNAME\">%PRODUCTNAME</link></emph>, and then click on the <emph>User Data</emph> tab."
+msgid "Open with Internet browser"
msgstr ""
-#: 01010201.xhp
-msgctxt ""
-"01010201.xhp\n"
-"hd_id3147557\n"
-"10\n"
-"help.text"
-msgid "Database"
-msgstr "Databaza"
-
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3148620\n"
-"11\n"
+"ref_pdf_export.xhp\n"
+"par_id1909848\n"
"help.text"
-msgid "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_LB_DATABASE\">Select the database that you want to use as the data source for your label. </ahelp>"
+msgid "<ahelp hid=\".\">Cross-document links are opened with the Internet browser. The Internet browser must be able to handle the specified file type inside the hyperlink.</ahelp>"
msgstr ""
-#: 01010201.xhp
-msgctxt ""
-"01010201.xhp\n"
-"hd_id3149388\n"
-"12\n"
-"help.text"
-msgid "Table"
-msgstr "Tabelë"
-
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3149827\n"
-"13\n"
+"ref_pdf_export.xhp\n"
+"hd_id3068636\n"
"help.text"
-msgid "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_LB_TABLE\">Select the database table containing the field(s) that you want to use in your label.</ahelp>"
+msgid "Security tab"
msgstr ""
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"hd_id3155391\n"
-"14\n"
+"ref_pdf_export.xhp\n"
+"hd_id2927335\n"
"help.text"
-msgid "Database field"
-msgstr "Fusha e databazës"
+msgid "Set passwords"
+msgstr "Ruaje fjalëkalimin"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3149750\n"
-"15\n"
+"ref_pdf_export.xhp\n"
+"par_id2107303\n"
"help.text"
-msgid "<ahelp hid=\"SW_IMAGEBUTTON_TP_LAB_LAB_BTN_INSERT\">Select the database field that you want, and then click the arrow to the left of this box to insert the field into the <emph>Label text</emph> box.</ahelp>"
+msgid "<ahelp hid=\".\">Click to open a dialog where you enter the passwords.</ahelp>"
msgstr ""
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3152780\n"
-"16\n"
+"ref_pdf_export.xhp\n"
+"par_id41123951\n"
"help.text"
-msgid "The name of the database field is bounded by brackets in the <emph>Label text</emph> box. If you want, you can separate database fields with spaces. Press Enter to insert a database field on a new line."
+msgid "You can enter a password to open the file. You can enter an optional password that allows to edit the document."
msgstr ""
-#: 01010201.xhp
-msgctxt ""
-"01010201.xhp\n"
-"hd_id3147653\n"
-"17\n"
-"help.text"
-msgid "Format"
-msgstr "Formati"
-
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3149762\n"
-"18\n"
+"ref_pdf_export.xhp\n"
+"hd_id7985168\n"
"help.text"
-msgid "You can select a pre-defined size format for your label or a size format that you specify on the <emph>Format </emph>tab.."
-msgstr ""
+msgid "Printing"
+msgstr "Duke shtypur"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"hd_id3154143\n"
-"19\n"
+"ref_pdf_export.xhp\n"
+"hd_id876186\n"
"help.text"
-msgid "Continuous"
-msgstr "I vazhdueshëm"
+msgid "Not permitted"
+msgstr "Përdorimi i zeros nuk lejohet"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3151339\n"
-"20\n"
+"ref_pdf_export.xhp\n"
+"par_id3939634\n"
"help.text"
-msgid "<ahelp hid=\"SW_RADIOBUTTON_TP_LAB_LAB_BTN_CONT\">Prints labels on continuous paper.</ahelp>"
+msgid "<ahelp hid=\".\">Printing the document is not permitted.</ahelp>"
msgstr ""
-#: 01010201.xhp
-msgctxt ""
-"01010201.xhp\n"
-"hd_id3150131\n"
-"21\n"
-"help.text"
-msgid "Sheet"
-msgstr "Fleta"
-
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3159167\n"
-"22\n"
+"ref_pdf_export.xhp\n"
+"hd_id599688\n"
"help.text"
-msgid "<ahelp hid=\"SW_RADIOBUTTON_TP_LAB_LAB_BTN_SHEET\">Prints labels on individual sheets.</ahelp>"
+msgid "Low resolution (150 dpi)"
msgstr ""
-#: 01010201.xhp
-msgctxt ""
-"01010201.xhp\n"
-"hd_id3156327\n"
-"23\n"
-"help.text"
-msgid "Brand"
-msgstr "Firma"
-
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3150466\n"
-"24\n"
+"ref_pdf_export.xhp\n"
+"par_id1371501\n"
"help.text"
-msgid "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_BOX_MAKE\">Select the brand of paper that you want to use.</ahelp> Each brand has its own size formats."
+msgid "<ahelp hid=\".\">The document can only be printed in low resolution (150 dpi). Not all PDF readers honor this setting.</ahelp>"
msgstr ""
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"hd_id3153821\n"
-"25\n"
+"ref_pdf_export.xhp\n"
+"hd_id4661702\n"
"help.text"
-msgid "Type"
-msgstr "Tipi"
+msgid "High resolution"
+msgstr "Rezolucioni i ngjyrave"
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3149235\n"
-"26\n"
+"ref_pdf_export.xhp\n"
+"par_id7868892\n"
"help.text"
-msgid "<ahelp hid=\"SW_LISTBOX_TP_LAB_LAB_BOX_TYPE\">Select the size format that you want to use. The available formats depend on the brand on what you selected in the <emph>Brand</emph> list. If you want to use a custom label format, select <emph>[User]</emph>, and then click the <link href=\"text/shared/01/01010202.xhp\" name=\"Format\"><emph>Format</emph></link> tab to define the format.</ahelp>"
+msgid "<ahelp hid=\".\">The document can be printed in high resolution.</ahelp>"
msgstr ""
-#: 01010201.xhp
-msgctxt ""
-"01010201.xhp\n"
-"hd_id3153828\n"
-"27\n"
-"help.text"
-msgid "Info"
-msgstr "Informacione"
-
-#: 01010201.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"01010201.xhp\n"
-"par_id3152349\n"
-"28\n"
+"ref_pdf_export.xhp\n"
+"hd_id2188787\n"
"help.text"
-msgid "The paper type and the dimensions of the label are displayed at the bottom of the <emph>Format</emph> area."
-msgstr ""
+msgid "Changes"
+msgstr "$1 ndryshimet"
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"tit\n"
+"ref_pdf_export.xhp\n"
+"hd_id5833307\n"
"help.text"
-msgid "Undo"
-msgstr "Zhbëj%O"
+msgid "Not permitted"
+msgstr "Përdorimi i zeros nuk lejohet"
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"bm_id3155069\n"
+"ref_pdf_export.xhp\n"
+"par_id7726676\n"
"help.text"
-msgid "<bookmark_value>undoing;editing</bookmark_value><bookmark_value>editing;undoing</bookmark_value>"
+msgid "<ahelp hid=\".\">No changes of the content are permitted.</ahelp>"
msgstr ""
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"hd_id3155069\n"
-"1\n"
+"ref_pdf_export.xhp\n"
+"hd_id3729361\n"
"help.text"
-msgid "<link href=\"text/shared/01/02010000.xhp\" name=\"Undo\">Undo</link>"
+msgid "Inserting, deleting, and rotating pages"
msgstr ""
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"par_id3149205\n"
-"2\n"
+"ref_pdf_export.xhp\n"
+"par_id9573961\n"
"help.text"
-msgid "<ahelp hid=\"HID_IMAPDLG_UNDO\">Reverses the last command or the last entry you typed. To select the command that you want to reverse, click the arrow next to the <emph>Undo </emph>icon on the Standard bar.</ahelp>"
+msgid "<ahelp hid=\".\">Only inserting, deleting, and rotating pages is permitted.</ahelp>"
msgstr ""
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"par_idN10630\n"
+"ref_pdf_export.xhp\n"
+"hd_id7700430\n"
"help.text"
-msgid "To change the number of commands that you can undo, choose <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - $[officename] - Memory, and enter a new value in the number of steps box."
+msgid "Filling in form fields"
msgstr ""
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"par_id3163803\n"
-"8\n"
+"ref_pdf_export.xhp\n"
+"par_id1180455\n"
"help.text"
-msgid "Some commands (for example, editing Styles) cannot be undone."
+msgid "<ahelp hid=\".\">Only filling in form fields is permitted.</ahelp>"
msgstr ""
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"par_id3155338\n"
-"11\n"
+"ref_pdf_export.xhp\n"
+"hd_id3405560\n"
"help.text"
-msgid "You can cancel the Undo command by choosing Edit - Redo."
+msgid "Commenting, filling in form fields"
msgstr ""
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"hd_id3166410\n"
-"7\n"
+"ref_pdf_export.xhp\n"
+"par_id3409527\n"
"help.text"
-msgid "About the Undo command in database tables"
+msgid "<ahelp hid=\".\">Only commenting and filling in form fields is permitted.</ahelp>"
msgstr ""
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"par_id3148492\n"
-"3\n"
+"ref_pdf_export.xhp\n"
+"hd_id7112338\n"
"help.text"
-msgid "When you are working with database tables, you can only undo the last command."
+msgid "Any except extracting pages"
msgstr ""
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"par_id3155504\n"
-"4\n"
+"ref_pdf_export.xhp\n"
+"par_id2855616\n"
"help.text"
-msgid "If you change the content of a record in a database table that has not been saved, and then use the<emph> Undo</emph> command, the record is erased."
+msgid "<ahelp hid=\".\">All changes are permitted, except extracting pages.</ahelp>"
msgstr ""
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"hd_id3149415\n"
-"9\n"
+"ref_pdf_export.xhp\n"
+"hd_id2091433\n"
"help.text"
-msgid "About the Undo command in presentations"
-msgstr ""
+msgid "Enable copying of content"
+msgstr "Nga përmbajta e dokumentit"
-#: 02010000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"02010000.xhp\n"
-"par_id3159147\n"
-"10\n"
+"ref_pdf_export.xhp\n"
+"par_id5092318\n"
"help.text"
-msgid "The <emph>Undo</emph> list is cleared when you apply a new layout to a slide."
+msgid "<ahelp hid=\".\">Select to enable copying of content to the clipboard.</ahelp>"
msgstr ""
-#: 05270000.xhp
-msgctxt ""
-"05270000.xhp\n"
-"tit\n"
-"help.text"
-msgid "Edit Points"
-msgstr "Edito pikat"
-
-#: 05270000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05270000.xhp\n"
-"hd_id3155271\n"
-"1\n"
+"ref_pdf_export.xhp\n"
+"hd_id9312417\n"
"help.text"
-msgid "<link href=\"text/shared/01/05270000.xhp\" name=\"Edit Points\">Edit Points</link>"
+msgid "Enable text access for accessibility tools"
msgstr ""
-#: 05270000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05270000.xhp\n"
-"par_id3153391\n"
-"2\n"
+"ref_pdf_export.xhp\n"
+"par_id9089022\n"
"help.text"
-msgid "<ahelp hid=\".uno:ToggleObjectBezierMode\">Lets you change the shape of the selected drawing object.</ahelp>"
+msgid "<ahelp hid=\".\">Select to enable text access for accessibility tools.</ahelp>"
msgstr ""
-#: 05270000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05270000.xhp\n"
-"par_id3148668\n"
-"7\n"
+"ref_pdf_export.xhp\n"
+"hd_id3150507\n"
+"50\n"
"help.text"
-msgid "To edit the shape of a selected drawing object, click the <emph>Points</emph> icon on the <emph>Drawing</emph> Bar, and then drag one of the points on the object."
+msgid "Export button"
msgstr ""
-#: 05270000.xhp
+#: ref_pdf_export.xhp
msgctxt ""
-"05270000.xhp\n"
-"par_id3093440\n"
+"ref_pdf_export.xhp\n"
+"par_id3146975\n"
+"51\n"
"help.text"
-msgid "<link href=\"text/shared/main0227.xhp\" name=\"Edit Points Bar\">Edit Points Bar</link>"
+msgid "<ahelp hid=\".\">Exports the current file in PDF format.</ahelp>"
msgstr ""
-#: 06130010.xhp
+#: ref_pdf_send_as.xhp
msgctxt ""
-"06130010.xhp\n"
+"ref_pdf_send_as.xhp\n"
"tit\n"
"help.text"
-msgid "Record Macro"
-msgstr "Regjistro Makron..."
+msgid "E-mail as PDF"
+msgstr "Eksporto si PDF..."
-#: 06130010.xhp
+#: ref_pdf_send_as.xhp
msgctxt ""
-"06130010.xhp\n"
-"hd_id3153383\n"
-"5\n"
+"ref_pdf_send_as.xhp\n"
+"hd_id3146902\n"
+"2\n"
"help.text"
-msgid "<link href=\"text/shared/01/06130010.xhp\" name=\"Record Macro\">Record Macro</link>"
+msgid "<variable id=\"ref_pdf_send_as\"><link href=\"text/shared/01/ref_pdf_send_as.xhp\" name=\"E-mail as PDF\">E-mail as PDF</link></variable>"
msgstr ""
-#: 06130010.xhp
+#: ref_pdf_send_as.xhp
msgctxt ""
-"06130010.xhp\n"
-"par_id3152952\n"
+"ref_pdf_send_as.xhp\n"
+"par_id3150756\n"
"1\n"
"help.text"
-msgid "<ahelp hid=\".uno:MacroRecorder\">Records a new macro.</ahelp> Only available, if macro recording feature is enabled in <emph><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Advanced</emph>."
-msgstr ""
-
-#: 06130010.xhp
-msgctxt ""
-"06130010.xhp\n"
-"hd_id3154788\n"
-"2\n"
-"help.text"
-msgid "Stop Recording"
-msgstr "Ndal Regjistrimin"
-
-#: 06130010.xhp
-msgctxt ""
-"06130010.xhp\n"
-"par_id3146067\n"
-"4\n"
-"help.text"
-msgid "<ahelp hid=\".uno:StopRecording\">Stops recording a macro.</ahelp>"
+msgid "<variable id=\"ref_pdf_send_as_text\"><ahelp hid=\".uno:SendMailDocAsPDF\">Shows the Export as PDF dialog, exports the current document to Portable Document Format (PDF), and then opens an e-mail sending window with the PDF as an attachment.</ahelp></variable>"
msgstr ""
-#: 01010203.xhp
+#: securitywarning.xhp
msgctxt ""
-"01010203.xhp\n"
+"securitywarning.xhp\n"
"tit\n"
"help.text"
-msgid "Options"
-msgstr "Opcionet"
+msgid "Security Warning"
+msgstr "Paralajmërim i sigurisë"
-#: 01010203.xhp
+#: securitywarning.xhp
msgctxt ""
-"01010203.xhp\n"
-"hd_id3155599\n"
-"1\n"
+"securitywarning.xhp\n"
+"bm_id6499832\n"
"help.text"
-msgid "<link href=\"text/shared/01/01010203.xhp\" name=\"Options\">Options</link>"
+msgid "<bookmark_value>security;warning dialogs with macros</bookmark_value><bookmark_value>macros;security warning dialog</bookmark_value>"
msgstr ""
-#: 01010203.xhp
+#: securitywarning.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3154497\n"
-"2\n"
+"securitywarning.xhp\n"
+"par_idN1054D\n"
"help.text"
-msgid "<ahelp hid=\"HID_LAB_PRT\" visibility=\"visible\">Sets additional options for your labels or business cards, including text synchronization and printer settings.</ahelp>"
+msgid "<variable id=\"securitywarning\"><link href=\"text/shared/01/securitywarning.xhp\">Security Warning</link></variable>"
msgstr ""
-#: 01010203.xhp
+#: securitywarning.xhp
msgctxt ""
-"01010203.xhp\n"
-"hd_id3150713\n"
-"3\n"
+"securitywarning.xhp\n"
+"par_idN1056B\n"
"help.text"
-msgid "Entire Page"
-msgstr "E gjithë faqja"
+msgid "When you open a document that contains an unsigned macro, or a signed macro from an unknown source, the <emph>Security Warning</emph> dialog opens."
+msgstr ""
-#: 01010203.xhp
+#: securitywarning.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3155355\n"
-"4\n"
+"securitywarning.xhp\n"
+"par_idN105FC\n"
"help.text"
-msgid "<ahelp hid=\"SW:RADIOBUTTON:TP_LAB_PRT:BTN_PAGE\" visibility=\"visible\">Creates a full page of labels or business cards.</ahelp>"
+msgid "<ahelp hid=\".\">Enable or disable the macros. Choose <emph>%PRODUCTNAME - Security</emph> in the Options dialog box to set the options.</ahelp>"
msgstr ""
-#: 01010203.xhp
+#: securitywarning.xhp
msgctxt ""
-"01010203.xhp\n"
-"hd_id3146958\n"
-"5\n"
+"securitywarning.xhp\n"
+"par_idN1056E\n"
"help.text"
-msgid "Single Label"
-msgstr "Etiketë e vetme"
+msgid "View Signature"
+msgstr "Nënshkrimi digjital"
-#: 01010203.xhp
+#: securitywarning.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3155535\n"
-"6\n"
+"securitywarning.xhp\n"
+"par_idN10572\n"
"help.text"
-msgid "<ahelp hid=\"SW:RADIOBUTTON:TP_LAB_PRT:BTN_SINGLE\" visibility=\"visible\">Prints a single label or business card on a page.</ahelp>"
+msgid "<ahelp hid=\".\">Opens a dialog where you can view the signature.</ahelp>"
msgstr ""
-#: 01010203.xhp
+#: securitywarning.xhp
msgctxt ""
-"01010203.xhp\n"
-"hd_id3148621\n"
-"7\n"
+"securitywarning.xhp\n"
+"par_idN10587\n"
"help.text"
-msgid "Column"
-msgstr "Kolonë"
+msgid "Always trust macros from this source"
+msgstr "Gjithnjë i besoni makrove nga ky burim"
-#: 01010203.xhp
+#: securitywarning.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3145345\n"
-"8\n"
+"securitywarning.xhp\n"
+"par_idN1058B\n"
"help.text"
-msgid "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_PRT:FLD_COL\" visibility=\"visible\">Enter the number of labels or business cards that you want to have in a row on your page.</ahelp>"
+msgid "<ahelp hid=\".\">Adds the current macro source to the list of <link href=\"text/shared/optionen/macrosecurity_ts.xhp\">trusted sources</link>.</ahelp>"
msgstr ""
-#: 01010203.xhp
+#: securitywarning.xhp
msgctxt ""
-"01010203.xhp\n"
-"hd_id3149398\n"
-"9\n"
+"securitywarning.xhp\n"
+"par_idN1059C\n"
"help.text"
-msgid "Row"
-msgstr "Rresht"
+msgid "Enable Macros"
+msgstr "Aktivizo Makrot"
-#: 01010203.xhp
+#: securitywarning.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3166410\n"
-"10\n"
+"securitywarning.xhp\n"
+"par_idN105A0\n"
"help.text"
-msgid "<ahelp hid=\"SW:NUMERICFIELD:TP_LAB_PRT:FLD_ROW\" visibility=\"visible\">Enter the number of rows of labels or business cards that you want to have on your page.</ahelp>"
+msgid "<ahelp hid=\".\">Allows macros in the document to run.</ahelp>"
msgstr ""
-#: 01010203.xhp
+#: securitywarning.xhp
msgctxt ""
-"01010203.xhp\n"
-"hd_id3149237\n"
-"15\n"
+"securitywarning.xhp\n"
+"par_idN105A3\n"
"help.text"
-msgid "Synchronize contents"
-msgstr "Tabela e përmbajtjeve"
+msgid "Disable Macros"
+msgstr "Deaktivizo Makrot"
-#: 01010203.xhp
+#: securitywarning.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3155342\n"
-"16\n"
+"securitywarning.xhp\n"
+"par_idN105A7\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SW:CHECKBOX:TP_LAB_PRT:CB_SYNCHRON\">Allows you to edit a single label or business card and updates the contents of the remaining labels or business cards on the page when you click the <emph>Synchronize Labels </emph>button.</ahelp>"
+msgid "<ahelp hid=\".\">Does not allow macros in the document to run.</ahelp>"
msgstr ""
-#: 01010203.xhp
+#: selectcertificate.xhp
msgctxt ""
-"01010203.xhp\n"
-"hd_id3149164\n"
-"18\n"
+"selectcertificate.xhp\n"
+"tit\n"
"help.text"
-msgid "Synchronize Labels"
-msgstr "Sinkronizo etiketat"
+msgid "Select Certificate"
+msgstr "Selekto kodin..."
-#: 01010203.xhp
+#: selectcertificate.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3148474\n"
-"17\n"
+"selectcertificate.xhp\n"
+"par_idN10541\n"
"help.text"
-msgid "The <emph>Synchronize labels </emph>button only appears in your document if you selected the <emph>Synchronize contents </emph>on the<emph> Options tab </emph>when you created the labels or business cards."
-msgstr ""
+msgid "Select Certificate"
+msgstr "Selekto kodin..."
-#: 01010203.xhp
+#: selectcertificate.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3149762\n"
-"19\n"
+"selectcertificate.xhp\n"
+"par_idN10545\n"
"help.text"
-msgid "<ahelp hid=\"SW:PUSHBUTTON:DLG_SYNC_BTN:BTN_SYNC\" visibility=\"visible\">Copies the contents of the top left label or business card to the remaining labels or business cards on the page.</ahelp>"
+msgid "<ahelp hid=\".\">Select the certificate that you want to <link href=\"text/shared/01/digitalsignatures.xhp\">digitally sign</link> the current document with.</ahelp>"
msgstr ""
-#: 01010203.xhp
+#: selectcertificate.xhp
msgctxt ""
-"01010203.xhp\n"
-"hd_id3150504\n"
-"11\n"
+"selectcertificate.xhp\n"
+"par_idN1056A\n"
"help.text"
-msgid "Printer"
-msgstr "Shtypësi"
+msgid "List"
+msgstr "Lista"
-#: 01010203.xhp
+#: selectcertificate.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3148990\n"
-"12\n"
+"selectcertificate.xhp\n"
+"par_idN1056E\n"
"help.text"
-msgid "Displays the name of the currently selected printer."
+msgid "<ahelp hid=\".\">Select the certificate that you want to digitally sign the current document with.</ahelp>"
msgstr ""
-#: 01010203.xhp
+#: selectcertificate.xhp
msgctxt ""
-"01010203.xhp\n"
-"hd_id3153127\n"
-"13\n"
+"selectcertificate.xhp\n"
+"par_idN10571\n"
"help.text"
-msgid "Setup"
-msgstr "Setup..."
+msgid "View Certificate"
+msgstr "Pamja e shënimeve"
-#: 01010203.xhp
+#: selectcertificate.xhp
msgctxt ""
-"01010203.xhp\n"
-"par_id3144438\n"
-"14\n"
+"selectcertificate.xhp\n"
+"par_idN10575\n"
"help.text"
-msgid "<ahelp visibility=\"visible\" hid=\"SW:PUSHBUTTON:TP_LAB_PRT:BTN_PRTSETUP\">Opens the <link href=\"text/shared/01/01140000.xhp\" name=\"Printer Setup\">Printer Setup</link> dialog.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the <link href=\"text/shared/optionen/viewcertificate.xhp\">View Certificate</link> dialog where you can examine the selected certificate.</ahelp>"
msgstr ""
-#: 05030600.xhp
+#: webhtml.xhp
msgctxt ""
-"05030600.xhp\n"
+"webhtml.xhp\n"
"tit\n"
"help.text"
-msgid "Background"
-msgstr "Sfond"
+msgid "Preview in Web Browser"
+msgstr "Përdor ~shfletuesin e rrjetit aranzhime të autorizuara"
-#: 05030600.xhp
+#: webhtml.xhp
msgctxt ""
-"05030600.xhp\n"
-"bm_id3151097\n"
+"webhtml.xhp\n"
+"hd_id3901181\n"
"help.text"
-msgid "<bookmark_value>frames; backgrounds</bookmark_value><bookmark_value>backgrounds; frames/sections/indexes</bookmark_value><bookmark_value>sections; backgrounds</bookmark_value><bookmark_value>indexes; backgrounds</bookmark_value><bookmark_value>footers;backgrounds</bookmark_value><bookmark_value>headers;backgrounds</bookmark_value>"
+msgid "<link href=\"text/shared/01/webhtml.xhp\">Preview in Web Browser</link>"
msgstr ""
-#: 05030600.xhp
+#: webhtml.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3151097\n"
-"1\n"
+"webhtml.xhp\n"
+"par_id8309274\n"
"help.text"
-msgid "<link href=\"text/shared/01/05030600.xhp\" name=\"Background\">Background</link>"
+msgid "<ahelp hid=\".\">Creates a temporary copy of the current document in HTML format, opens the system default Web browser, and displays the HTML file in the Web browser.</ahelp>"
msgstr ""
-#: 05030600.xhp
+#: webhtml.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3153748\n"
-"2\n"
+"webhtml.xhp\n"
+"par_id9186681\n"
"help.text"
-msgid "<ahelp hid=\"HID_BACKGROUND\">Set the background color or graphic.</ahelp>"
+msgid "The HTML formatted copy is written to the temporary files folder that you can select in <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - %PRODUCTNAME - Paths</item>. When you quit %PRODUCTNAME, the HTML file will be deleted."
msgstr ""
-#: 05030600.xhp
+#: webhtml.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3147653\n"
-"34\n"
+"webhtml.xhp\n"
+"par_id5871150\n"
"help.text"
-msgid "You can specify the background for <switchinline select=\"appl\"><caseinline select=\"WRITER\">paragraphs, pages, headers, footers, text frames, tables, table cells, sections, and indexes.</caseinline><caseinline select=\"CALC\">cells and pages.</caseinline></switchinline>"
+msgid "You can set the HTML export filter options by choosing <item type=\"menuitem\"><switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - HTML Compatibility</item>."
msgstr ""
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3154514\n"
-"4\n"
+"xformsdata.xhp\n"
+"tit\n"
"help.text"
-msgid "As"
-msgstr "Si Objekt"
+msgid "Data Navigator"
+msgstr "Orientuesi i të dhënave..."
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3154380\n"
-"5\n"
+"xformsdata.xhp\n"
+"bm_id6823023\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BACKGROUND:LB_SELECTOR\">Select the type of background that you want to apply.</ahelp>"
+msgid "<bookmark_value>data structure of XForms</bookmark_value> <bookmark_value>deleting;models/instances</bookmark_value> <bookmark_value>models in XForms</bookmark_value> <bookmark_value>Data Navigator;display options</bookmark_value>"
msgstr ""
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3151245\n"
-"7\n"
+"xformsdata.xhp\n"
+"par_idN1054E\n"
"help.text"
-msgid "Using a Color as a Background"
+msgid "<variable id=\"xformsdata\"><link href=\"text/shared/01/xformsdata.xhp\">Data Navigator</link></variable>"
msgstr ""
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"hd_id3148946\n"
-"8\n"
-"help.text"
-msgid "Color Background"
-msgstr "Ngjyra e sfondit"
-
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3152361\n"
-"9\n"
+"xformsdata.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "<ahelp hid=\"HID_BACKGROUND_CTL_BGDCOLORSET\">Click the color that you want to use as a background. To remove a background color, click <emph>No Fill</emph>.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the data structure of the current XForms document.</ahelp>"
msgstr ""
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3153524\n"
-"37\n"
+"xformsdata.xhp\n"
+"par_idN1056F\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Transparency</caseinline></switchinline>"
-msgstr ""
+msgid "Model name"
+msgstr "Emri i grupit"
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_idN107A4\n"
+"xformsdata.xhp\n"
+"par_idN10573\n"
"help.text"
-msgid "Background transparency can be set only for frames."
+msgid "<ahelp hid=\".\">Selects the XForms model that you want to use.</ahelp>"
msgstr ""
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3150358\n"
-"38\n"
+"xformsdata.xhp\n"
+"par_idN10576\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX_METRICFIELD_RID_SVXPAGE_BACKGROUND_MF_COL_TRANS\">Set the transparency for the background color or graphic of a frame, where 100% is completely transparent and 0% is opaque. When you increase the transparency of the background, the underlying text or objects become visible through the background of the frame.</ahelp></caseinline></switchinline>"
-msgstr ""
+msgid "Models"
+msgstr "Modelet"
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3154216\n"
-"11\n"
+"xformsdata.xhp\n"
+"par_idN1057A\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">For</caseinline></switchinline>"
+msgid "<ahelp hid=\".\">Adds, renames, and removes XForms models.</ahelp>"
msgstr ""
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3145419\n"
-"12\n"
+"xformsdata.xhp\n"
+"par_idN10604\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_BACKGROUND:LB_TBL_BOX\">Select the area that you want to apply the background color to.</ahelp> For example, when you define the background color for a table, you can choose to apply it to the table, the active cell, the row, or the column.</caseinline></switchinline>"
-msgstr ""
+msgid "Add"
+msgstr "Shto"
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3150497\n"
-"13\n"
+"xformsdata.xhp\n"
+"par_idN10608\n"
"help.text"
-msgid "This option is only available when you edit the background of a table or a paragraph style."
+msgid "<ahelp hid=\".\">Opens the Add Model dialog where you can add an XForm model.</ahelp>"
msgstr ""
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3153056\n"
-"14\n"
+"xformsdata.xhp\n"
+"par_id0130200901590878\n"
"help.text"
-msgid "Using a Graphic as a Background"
+msgid "<ahelp hid=\".\" visibility=\"hidden\">Enter the name.</ahelp>"
msgstr ""
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3149983\n"
-"15\n"
+"xformsdata.xhp\n"
+"hd_id0910200811173295\n"
"help.text"
-msgid "File"
-msgstr "Fajlli"
+msgid "Model data updates change document's modification status"
+msgstr ""
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3152462\n"
-"16\n"
+"xformsdata.xhp\n"
+"par_id0910200811173255\n"
"help.text"
-msgid "Contains information about the graphic file."
+msgid "<ahelp hid=\".\">When enabled, the document status will be set to \"modified\" when you change any form control that is bound to any data in the model. When not enabled, such a change does not set the document status to \"modified\".</ahelp>"
msgstr ""
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3145592\n"
-"17\n"
+"xformsdata.xhp\n"
+"par_idN10612\n"
"help.text"
-msgid "Display field"
-msgstr "Paraqit fushën"
+msgid "Remove"
+msgstr "Largo"
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3154920\n"
-"18\n"
+"xformsdata.xhp\n"
+"par_idN10616\n"
"help.text"
-msgid "Shows the path for the graphic file."
+msgid "<ahelp hid=\".\">Deletes the selected XForm model. You cannot delete the last model.</ahelp>"
msgstr ""
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3145272\n"
-"19\n"
+"xformsdata.xhp\n"
+"par_idN10743\n"
"help.text"
-msgid "Link"
-msgstr "Link"
+msgid "Rename"
+msgstr "Riemëro"
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3154150\n"
-"20\n"
+"xformsdata.xhp\n"
+"par_idN10749\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_BACKGROUND:BTN_LINK\">Links to or embeds the graphic file in the current file.</ahelp>"
+msgid "<ahelp hid=\".\">Renames the selected Xform model.</ahelp>"
msgstr ""
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3155366\n"
-"21\n"
+"xformsdata.xhp\n"
+"par_idN10619\n"
"help.text"
-msgid "Preview"
-msgstr "Shikim paraprak"
+msgid "Show Details"
+msgstr "Trego hollësitë"
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3147426\n"
-"22\n"
+"xformsdata.xhp\n"
+"par_idN1061D\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_BACKGROUND:BTN_PREVIEW\">Displays or hides a preview of the selected graphic.</ahelp>"
+msgid "<ahelp hid=\".\">Switches the display to show or hide details.</ahelp>"
msgstr ""
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3154472\n"
-"23\n"
+"xformsdata.xhp\n"
+"par_idN1057D\n"
"help.text"
-msgid "Browse"
-msgstr "Shfleto..."
+msgid "Instance"
+msgstr "Instancat"
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3153951\n"
-"24\n"
+"xformsdata.xhp\n"
+"par_idN10682\n"
"help.text"
-msgid "<ahelp hid=\"SVX:PUSHBUTTON:RID_SVXPAGE_BACKGROUND:BTN_BROWSE\">Locate the graphic file that you want to use as a background, and then click <emph>Open</emph>.</ahelp>"
+msgid "<ahelp hid=\".\">Lists the items that belong to the current instance.</ahelp>"
msgstr ""
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3153726\n"
-"25\n"
+"xformsdata.xhp\n"
+"par_idN1058B\n"
"help.text"
-msgid "Type"
-msgstr "Tipi"
+msgid "Submissions"
+msgstr "Pranimet"
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3147442\n"
-"26\n"
+"xformsdata.xhp\n"
+"par_idN1058F\n"
"help.text"
-msgid "Specify the way that you want to display the background graphic."
+msgid "<ahelp hid=\".\">Lists the submissions.</ahelp>"
msgstr ""
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3153366\n"
-"27\n"
+"xformsdata.xhp\n"
+"par_idN10592\n"
"help.text"
-msgid "Position"
-msgstr "Pozicion"
+msgid "Bindings"
+msgstr "Ndërlidhjet"
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3153741\n"
-"28\n"
+"xformsdata.xhp\n"
+"par_idN10596\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_BACKGROUND:BTN_POSITION\">Select this option, and then click a location in the position grid.</ahelp>"
+msgid "<ahelp hid=\".\">Lists the bindings for the XForm.</ahelp>"
msgstr ""
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"hd_id3156005\n"
-"29\n"
+"xformsdata.xhp\n"
+"par_idN10599\n"
"help.text"
-msgid "Area"
-msgstr "Hapësira"
+msgid "Instances"
+msgstr "Instancat"
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3152596\n"
-"30\n"
+"xformsdata.xhp\n"
+"par_idN1059D\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_BACKGROUND:BTN_AREA\">Stretches the graphic to fill the entire background of the selected object.</ahelp>"
+msgid "<ahelp hid=\".\">This button has submenus to add, edit or remove instances.</ahelp>"
msgstr ""
-#: 05030600.xhp
-msgctxt ""
-"05030600.xhp\n"
-"hd_id3145663\n"
-"32\n"
-"help.text"
-msgid "Tile"
-msgstr "Pllakë"
-
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3149481\n"
-"33\n"
+"xformsdata.xhp\n"
+"par_idN10649\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_BACKGROUND:BTN_TILE\">Repeats the graphic so that it covers the entire background of the selected object.</ahelp>"
-msgstr ""
+msgid "Add"
+msgstr "Shto"
-#: 05030600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05030600.xhp\n"
-"par_id3151114\n"
-"35\n"
+"xformsdata.xhp\n"
+"par_idN1064D\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Click a color. Click No Fill to remove a background or highlighting color. Click Automatic to reset a font color.</ahelp>"
+msgid "<ahelp hid=\".\">Opens a dialog where you can add a new instance.</ahelp>"
msgstr ""
-#: 05100100.xhp
+#: xformsdata.xhp
msgctxt ""
-"05100100.xhp\n"
-"tit\n"
+"xformsdata.xhp\n"
+"par_idN10650\n"
"help.text"
-msgid "Merge"
-msgstr "Bashko"
+msgid "Edit"
+msgstr "Edito"
-#: 05100100.xhp
+#: xformsdata.xhp
msgctxt ""
-"05100100.xhp\n"
-"hd_id3154765\n"
-"1\n"
+"xformsdata.xhp\n"
+"par_idN10654\n"
"help.text"
-msgid "<link href=\"text/shared/01/05100100.xhp\" name=\"Merge\">Merge</link>"
+msgid "<ahelp hid=\".\">Opens a dialog where you can modify the current instance.</ahelp>"
msgstr ""
-#: 05100100.xhp
+#: xformsdata.xhp
msgctxt ""
-"05100100.xhp\n"
-"par_id3147406\n"
-"2\n"
+"xformsdata.xhp\n"
+"par_idN10657\n"
"help.text"
-msgid "<variable id=\"verbindentext\"><ahelp hid=\".\">Combines the contents of the selected table cells into a single cell.</ahelp></variable>"
-msgstr ""
+msgid "Remove"
+msgstr "Largo"
-#: 05100100.xhp
+#: xformsdata.xhp
msgctxt ""
-"05100100.xhp\n"
-"par_id3154351\n"
-"79\n"
+"xformsdata.xhp\n"
+"par_idN1065B\n"
"help.text"
-msgid "Choose <emph>Table - Merge Cells</emph>"
+msgid "<ahelp hid=\".\">Deletes the current instance. You cannot delete the last instance.</ahelp>"
msgstr ""
-#: 05100100.xhp
+#: xformsdata.xhp
msgctxt ""
-"05100100.xhp\n"
-"par_id3154370\n"
-"80\n"
+"xformsdata.xhp\n"
+"par_idN1065E\n"
"help.text"
-msgid "On the <emph>Table</emph> Bar, click"
-msgstr ""
+msgid "Show data types"
+msgstr "Trego ~elementet pa të dhëna"
-#: 05100100.xhp
+#: xformsdata.xhp
msgctxt ""
-"05100100.xhp\n"
-"par_id3153996\n"
+"xformsdata.xhp\n"
+"par_idN10662\n"
"help.text"
-msgid "<image id=\"img_id3154002\" src=\"cmd/sc_mergecells.png\" width=\"0.423cm\" height=\"0.423cm\"><alt id=\"alt_id3154002\">icon</alt></image>"
+msgid "<ahelp hid=\".\">Switches the display to show more or less details.</ahelp>"
msgstr ""
-#: 05100100.xhp
+#: xformsdata.xhp
msgctxt ""
-"05100100.xhp\n"
-"par_id3150662\n"
-"81\n"
+"xformsdata.xhp\n"
+"par_idN10584\n"
"help.text"
-msgid "Merge Cells"
-msgstr "Bashko qelizat"
+msgid "Add"
+msgstr "Shto"
-#: 05100100.xhp
+#: xformsdata.xhp
msgctxt ""
-"05100100.xhp\n"
-"par_id3153718\n"
-"3\n"
+"xformsdata.xhp\n"
+"par_idN10588\n"
"help.text"
-msgid "Merging cells can lead to calculation errors in formulas in the table."
+msgid "<ahelp hid=\".\">Opens a dialog to add a new item (element, attribute, submission, or binding) as a sub-item of the current item.</ahelp>"
msgstr ""
-#: 05340600.xhp
-msgctxt ""
-"05340600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Show Columns"
-msgstr "Paraqit Kolonat"
-
-#: 05340600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05340600.xhp\n"
-"hd_id3152876\n"
-"1\n"
+"xformsdata.xhp\n"
+"par_idN10624\n"
"help.text"
-msgid "<link href=\"text/shared/01/05340600.xhp\" name=\"Show Columns\">Show Columns</link>"
-msgstr ""
+msgid "Edit"
+msgstr "Edito"
-#: 05340600.xhp
+#: xformsdata.xhp
msgctxt ""
-"05340600.xhp\n"
-"par_id3147212\n"
-"2\n"
+"xformsdata.xhp\n"
+"par_idN10628\n"
"help.text"
-msgid "<ahelp hid=\".\">Displays hidden columns. Choose the column that you want to display from the list, or click <emph>All </emph>to display all of the hidden columns.</ahelp>"
+msgid "<ahelp hid=\".\">Opens a dialog to edit the selected item (element, attribute, submission, or binding).</ahelp>"
msgstr ""
-#: 04060000.xhp
+#: xformsdata.xhp
msgctxt ""
-"04060000.xhp\n"
-"tit\n"
+"xformsdata.xhp\n"
+"par_idN1062B\n"
"help.text"
-msgid "Scan"
-msgstr "Skeno"
+msgid "Delete"
+msgstr "Fshije"
-#: 04060000.xhp
+#: xformsdata.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3146902\n"
-"1\n"
+"xformsdata.xhp\n"
+"par_idN1062F\n"
"help.text"
-msgid "<link href=\"text/shared/01/04060000.xhp\" name=\"Scan\">Scan</link>"
+msgid "<ahelp hid=\".\">Deletes the selected item (element, attribute, submission, or binding).</ahelp>"
msgstr ""
-#: 04060000.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3154926\n"
-"2\n"
+"xformsdataadd.xhp\n"
+"tit\n"
"help.text"
-msgid "<variable id=\"scan\"><ahelp hid=\".uno:Scan\">Inserts a scanned image into your document.</ahelp></variable>"
-msgstr ""
+msgid "Add / Edit"
+msgstr "Edito Ndryshimet"
-#: 04060000.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"04060000.xhp\n"
-"par_id3153124\n"
-"5\n"
+"xformsdataadd.xhp\n"
+"bm_id7194738\n"
"help.text"
-msgid "To insert a scanned image, the driver for your scanner must be installed. <switchinline select=\"sys\"><caseinline select=\"UNIX\">Under UNIX systems, install the SANE package found at http://www.mostang.com/sane/. The SANE package must use the same libc as $[officename].</caseinline></switchinline>"
+msgid "<bookmark_value>read-only items in Data Navigator</bookmark_value><bookmark_value>Data Navigator;adding/editing items</bookmark_value>"
msgstr ""
-#: 04060000.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3154673\n"
-"3\n"
+"xformsdataadd.xhp\n"
+"par_idN10547\n"
"help.text"
-msgid "<link href=\"text/shared/01/04060100.xhp\" name=\"Select Source\">Select Source</link>"
-msgstr ""
+msgid "Add / Edit"
+msgstr "Edito Ndryshimet"
-#: 04060000.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"04060000.xhp\n"
-"hd_id3152801\n"
-"4\n"
+"xformsdataadd.xhp\n"
+"par_idN1054B\n"
"help.text"
-msgid "<link href=\"text/shared/01/04060200.xhp\" name=\"Request\">Request</link>"
+msgid "<ahelp hid=\".\">Adds a new item or edits the selected item in the XForms Data Navigator.</ahelp> Items can be elements, attributes, submissions, or bindings."
msgstr ""
-#: 05230400.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05230400.xhp\n"
-"tit\n"
+"xformsdataadd.xhp\n"
+"par_idN10560\n"
"help.text"
-msgid "Slant & Corner Radius"
-msgstr "Ndrysho rrezen me %O"
+msgid "<ahelp hid=\".\">%PRODUCTNAME inserts a new item directly after the currently selected item in the Data Navigator. A new attribute is added to the currently selected element.</ahelp>"
+msgstr ""
-#: 05230400.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05230400.xhp\n"
-"bm_id3149988\n"
+"xformsdataadd.xhp\n"
+"par_idN10563\n"
"help.text"
-msgid "<bookmark_value>slanting draw objects</bookmark_value><bookmark_value>draw objects; slanting</bookmark_value><bookmark_value>areas; slanting</bookmark_value>"
-msgstr ""
+msgid "Name"
+msgstr "Emri"
-#: 05230400.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05230400.xhp\n"
-"hd_id3149988\n"
-"1\n"
+"xformsdataadd.xhp\n"
+"par_idN10567\n"
"help.text"
-msgid "<link href=\"text/shared/01/05230400.xhp\" name=\"Slant & Corner Radius\">Slant & Corner Radius</link>"
+msgid "<ahelp hid=\".\">Enter the name of the item.</ahelp>"
msgstr ""
-#: 05230400.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05230400.xhp\n"
-"par_id3154788\n"
-"2\n"
+"xformsdataadd.xhp\n"
+"par_idN1056A\n"
"help.text"
-msgid "<ahelp hid=\"HID_TRANS_SLANT\">Slants the selected object, or rounds the corners of a rectangular object.</ahelp>"
+msgid "The attribute names must be unique within the same group."
msgstr ""
-#: 05230400.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05230400.xhp\n"
-"hd_id3154497\n"
-"3\n"
+"xformsdataadd.xhp\n"
+"par_idN1056D\n"
"help.text"
-msgid "Corner Radius"
-msgstr "Rrezja e këndit"
+msgid "Type"
+msgstr "Tipi"
-#: 05230400.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05230400.xhp\n"
-"par_id3156027\n"
-"4\n"
+"xformsdataadd.xhp\n"
+"par_idN10571\n"
"help.text"
-msgid "You can only round the corners of a rectangular object."
+msgid "<ahelp hid=\".\">Select the type of a new item. You cannot change the type of an edited item.</ahelp>"
msgstr ""
-#: 05230400.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05230400.xhp\n"
-"hd_id3153935\n"
-"5\n"
+"xformsdataadd.xhp\n"
+"par_idN10574\n"
"help.text"
-msgid "Radius"
-msgstr "Radius"
+msgid "Default value"
+msgstr "Mosparaqitje vlerash"
-#: 05230400.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05230400.xhp\n"
-"par_id3147373\n"
-"6\n"
+"xformsdataadd.xhp\n"
+"par_idN10578\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SLANT:MTR_FLD_RADIUS\">Enter the radius of the circle that you want to use to round the corners.</ahelp>"
+msgid "<ahelp hid=\".\">Enter a default value for the selected item.</ahelp>"
msgstr ""
-#: 05230400.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05230400.xhp\n"
-"hd_id3145090\n"
-"7\n"
+"xformsdataadd.xhp\n"
+"par_idN1057B\n"
"help.text"
-msgid "Slant"
-msgstr "Shtrembëro %O (pjerrtësi)"
+msgid "Settings"
+msgstr "Parametrat"
-#: 05230400.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05230400.xhp\n"
-"par_id3153345\n"
-"8\n"
+"xformsdataadd.xhp\n"
+"par_idN1057F\n"
"help.text"
-msgid "Slants the selected object along an axis that you specify."
+msgid "<ahelp hid=\".\">Specifies the properties of the selected item.</ahelp>"
msgstr ""
-#: 05230400.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05230400.xhp\n"
-"hd_id3154983\n"
-"9\n"
+"xformsdataadd.xhp\n"
+"par_idN10582\n"
"help.text"
-msgid "Angle"
-msgstr "Këndi"
+msgid "Data type"
+msgstr "Tipi i të dhënave"
-#: 05230400.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05230400.xhp\n"
-"par_id3153683\n"
-"10\n"
+"xformsdataadd.xhp\n"
+"par_idN10586\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SLANT:MTR_FLD_ANGLE\">Enter the angle of the slant axis.</ahelp>"
+msgid "<ahelp hid=\".\">Select the data type for the selected item.</ahelp>"
msgstr ""
-#: 05210600.xhp
-msgctxt ""
-"05210600.xhp\n"
-"tit\n"
-"help.text"
-msgid "Shadow"
-msgstr "Hije"
-
-#: 05210600.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05210600.xhp\n"
-"bm_id3150014\n"
+"xformsdataadd.xhp\n"
+"par_idN10589\n"
"help.text"
-msgid "<bookmark_value>areas; shadows</bookmark_value><bookmark_value>shadows; areas</bookmark_value>"
-msgstr ""
+msgid "Required"
+msgstr "Kërkohet"
-#: 05210600.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05210600.xhp\n"
-"hd_id3150014\n"
-"1\n"
+"xformsdataadd.xhp\n"
+"par_idN1058D\n"
"help.text"
-msgid "<link href=\"text/shared/01/05210600.xhp\" name=\"Shadow\">Shadow</link>"
+msgid "<ahelp hid=\".\">Specifies if the item must be included on the XForm.</ahelp>"
msgstr ""
-#: 05210600.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3155069\n"
-"2\n"
+"xformsdataadd.xhp\n"
+"par_idN10590\n"
"help.text"
-msgid "<ahelp hid=\"HID_AREA_SHADOW\">Add a shadow to the selected drawing object, and define the properties of the shadow.</ahelp>"
+msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can enter used namespaces and full XPath expressions."
msgstr ""
-#: 05210600.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05210600.xhp\n"
-"hd_id3153748\n"
-"3\n"
+"xformsdataadd.xhp\n"
+"par_idN105AA\n"
"help.text"
-msgid "Properties"
-msgstr "Vetitë"
+msgid "Relevant"
+msgstr "Përsërite"
-#: 05210600.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3153345\n"
-"4\n"
+"xformsdataadd.xhp\n"
+"par_idN105AE\n"
"help.text"
-msgid "Set the properties of the shadow that you want to apply."
+msgid "<ahelp hid=\".\">Declares the item as relevant.</ahelp>"
msgstr ""
-#: 05210600.xhp
-msgctxt ""
-"05210600.xhp\n"
-"hd_id3150774\n"
-"5\n"
-"help.text"
-msgid "Use shadow"
-msgstr "Ngjyrë e hijes"
-
-#: 05210600.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3154749\n"
-"6\n"
+"xformsdataadd.xhp\n"
+"par_idN105B1\n"
"help.text"
-msgid "<ahelp hid=\"SVX:TRISTATEBOX:RID_SVXPAGE_SHADOW:TSB_SHOW_SHADOW\">Adds a shadow to the selected drawing object.</ahelp>"
+msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can enter used namespaces and full XPath expressions."
msgstr ""
-#: 05210600.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05210600.xhp\n"
-"hd_id3166460\n"
-"7\n"
+"xformsdataadd.xhp\n"
+"par_idN105CB\n"
"help.text"
-msgid "Position"
-msgstr "Pozicion"
+msgid "Constraint"
+msgstr "Kufizimet"
-#: 05210600.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3146138\n"
-"8\n"
+"xformsdataadd.xhp\n"
+"par_idN105CF\n"
"help.text"
-msgid "<ahelp hid=\"HID_TPSHADOW_CTRL\">Click where you want to cast the shadow.</ahelp>"
+msgid "<ahelp hid=\".\">Declares the item as a constraint.</ahelp>"
msgstr ""
-#: 05210600.xhp
-msgctxt ""
-"05210600.xhp\n"
-"hd_id3154897\n"
-"9\n"
-"help.text"
-msgid "Distance"
-msgstr "Distancë"
-
-#: 05210600.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3146847\n"
-"10\n"
+"xformsdataadd.xhp\n"
+"par_idN106C7\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SHADOW:MTR_FLD_DISTANCE\">Enter the distance that you want the shadow to be offset from the selected object.</ahelp>"
+msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can specify the constraint condition."
msgstr ""
-#: 05210600.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05210600.xhp\n"
-"hd_id3150276\n"
-"11\n"
+"xformsdataadd.xhp\n"
+"par_idN105E4\n"
"help.text"
-msgid "Color"
-msgstr "Ngjyra"
+msgid "Read-only"
+msgstr "Vetëm -lexim"
-#: 05210600.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3155829\n"
-"12\n"
+"xformsdataadd.xhp\n"
+"par_idN105E8\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_SHADOW:LB_SHADOW_COLOR\">Select a color for the shadow.</ahelp>"
+msgid "<ahelp hid=\".\">Declares the item as read-only.</ahelp>"
msgstr ""
-#: 05210600.xhp
-msgctxt ""
-"05210600.xhp\n"
-"hd_id3148992\n"
-"13\n"
-"help.text"
-msgid "Transparency"
-msgstr "Transparencë"
-
-#: 05210600.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3148642\n"
-"14\n"
+"xformsdataadd.xhp\n"
+"par_idN105EB\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_SHADOW:MTR_SHADOW_TRANSPARENT\">Enter a percentage from 0% (opaque) to 100% (transparent) to specify the transparency of the shadow.</ahelp>"
+msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can enter used namespaces and full XPath expressions."
msgstr ""
-#: 05210600.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05210600.xhp\n"
-"hd_id3154810\n"
-"17\n"
+"xformsdataadd.xhp\n"
+"par_idN10605\n"
"help.text"
-msgid "Shadow"
-msgstr "Hije"
+msgid "Calculate / Calculation"
+msgstr "Kalkulo tabelën"
-#: 05210600.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3148924\n"
-"15\n"
+"xformsdataadd.xhp\n"
+"par_idN10609\n"
"help.text"
-msgid "<ahelp hid=\".uno:FillShadow\">Adds a shadow to the selected object. If the object already has a shadow, the shadow is removed. If you click this icon when no object is selected, the shadow is added to the next object that you draw.</ahelp>"
+msgid "<ahelp hid=\".\">Declares that the item is calculated.</ahelp>"
msgstr ""
-#: 05210600.xhp
+#: xformsdataadd.xhp
msgctxt ""
-"05210600.xhp\n"
-"par_id3145068\n"
+"xformsdataadd.xhp\n"
+"par_idN1076B\n"
"help.text"
-msgid "<image id=\"img_id3149045\" src=\"cmd/sc_fillshadow.png\" width=\"0.222inch\" height=\"0.222inch\"><alt id=\"alt_id3149045\">Icon</alt></image>"
+msgid "The <emph>Condition</emph> button opens the <link href=\"text/shared/01/xformsdataaddcon.xhp\">Add Condition</link> dialog where you can enter the calculation."
msgstr ""
-#: 05210600.xhp
-msgctxt ""
-"05210600.xhp\n"
-"par_id3154935\n"
-"16\n"
-"help.text"
-msgid "Shadow"
-msgstr "Hije"
-
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
+"xformsdataaddcon.xhp\n"
"tit\n"
"help.text"
-msgid "Page"
-msgstr "Faqe"
+msgid "Add Condition"
+msgstr "Shto kushtin"
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"bm_id3150620\n"
+"xformsdataaddcon.xhp\n"
+"bm_id8615680\n"
"help.text"
-msgid "<bookmark_value>pages;formatting and numbering</bookmark_value><bookmark_value>formatting;pages</bookmark_value><bookmark_value>paper formats</bookmark_value><bookmark_value>paper trays</bookmark_value><bookmark_value>printers;paper trays</bookmark_value><bookmark_value>layout;pages</bookmark_value><bookmark_value>binding space</bookmark_value><bookmark_value>margins;pages</bookmark_value><bookmark_value>gutter</bookmark_value>"
+msgid "<bookmark_value>conditions;items in Data Navigator</bookmark_value><bookmark_value>XForms;conditions</bookmark_value>"
msgstr ""
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3150620\n"
-"1\n"
+"xformsdataaddcon.xhp\n"
+"par_idN1053E\n"
"help.text"
-msgid "<link href=\"text/shared/01/05040200.xhp\" name=\"Page\">Page</link>"
-msgstr ""
+msgid "Add Condition"
+msgstr "Shto kushtin"
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3153255\n"
-"2\n"
+"xformsdataaddcon.xhp\n"
+"par_idN10542\n"
"help.text"
-msgid "<ahelp hid=\"HID_FORMAT_PAGE\">Allows you to define page layouts for single and multiple-page documents, as well as a numbering and paper formats.</ahelp>"
+msgid "<ahelp hid=\".\">Add a condition in this subdialog of the Add Item / Edit Item dialog of the Data Navigator.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3149549\n"
-"31\n"
+"xformsdataaddcon.xhp\n"
+"par_idN10561\n"
"help.text"
-msgid "Paper format"
-msgstr "Format tjetër"
+msgid "Condition"
+msgstr "Kushti"
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3150710\n"
-"32\n"
+"xformsdataaddcon.xhp\n"
+"par_idN10565\n"
"help.text"
-msgid "Select from a list of predefined paper sizes, or define a custom paper format."
+msgid "<ahelp hid=\".\">Enter a condition.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3153394\n"
-"33\n"
+"xformsdataaddcon.xhp\n"
+"par_idN10568\n"
"help.text"
-msgid "Format"
-msgstr "Formati"
+msgid "Result"
+msgstr "Rezultat"
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3149827\n"
-"34\n"
+"xformsdataaddcon.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_PAGE:LB_PAPER_SIZE\">Select a predefined paper size, or create a custom format by entering the dimensions for the paper in the <emph>Height </emph>and <emph>Width </emph>boxes.</ahelp>"
+msgid "<ahelp hid=\".\">Displays a preview of the result.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3154823\n"
-"35\n"
+"xformsdataaddcon.xhp\n"
+"par_idN1056F\n"
"help.text"
-msgid "Width"
-msgstr "Gjerësia"
+msgid "Edit Namespaces"
+msgstr "Edito hapësirat e emrave"
-#: 05040200.xhp
+#: xformsdataaddcon.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3145313\n"
-"36\n"
+"xformsdataaddcon.xhp\n"
+"par_idN10573\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_PAGE:ED_PAPER_WIDTH\">Displays the width of the selected paper format. To define a custom format, enter a width here.</ahelp>"
+msgid "<ahelp hid=\".\">Opens the Form Namespaces dialog where you can add, edit, or delete namespaces.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdatachange.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3147008\n"
-"37\n"
+"xformsdatachange.xhp\n"
+"tit\n"
"help.text"
-msgid "Height"
-msgstr "Lartësia"
+msgid "Change Data Binding"
+msgstr "Ndrysho Intervalin e të Dhënave Burimore"
-#: 05040200.xhp
+#: xformsdatachange.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3156113\n"
-"38\n"
+"xformsdatachange.xhp\n"
+"bm_id433973\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_PAGE:ED_PAPER_HEIGHT\">Displays the height of the selected paper format. To define a custom format, enter a height here.</ahelp>"
+msgid "<bookmark_value>editing;data binding of XForms</bookmark_value><bookmark_value>data binding change in XForms</bookmark_value>"
msgstr ""
-#: 05040200.xhp
+#: xformsdatachange.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3146798\n"
-"39\n"
+"xformsdatachange.xhp\n"
+"par_idN10547\n"
"help.text"
-msgid "Portrait"
-msgstr "Orientim vertikal"
+msgid "Change Data Binding"
+msgstr "Ndrysho Intervalin e të Dhënave Burimore"
-#: 05040200.xhp
+#: xformsdatachange.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3149811\n"
-"40\n"
+"xformsdatachange.xhp\n"
+"par_idN1054B\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_PAGE:RB_PORTRAIT\">Displays and prints the current document with the paper oriented vertically.</ahelp>"
+msgid "<ahelp hid=\".\">Edit the data binding in the XForms Data Navigator.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdatachange.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3150976\n"
-"41\n"
+"xformsdatachange.xhp\n"
+"par_idN1056E\n"
"help.text"
-msgid "Landscape"
-msgstr "Orientim horizontal"
+msgid "Model"
+msgstr "Modeli"
-#: 05040200.xhp
+#: xformsdatachange.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3153827\n"
-"42\n"
+"xformsdatachange.xhp\n"
+"par_idN10572\n"
"help.text"
-msgid "<ahelp hid=\"SVX:RADIOBUTTON:RID_SVXPAGE_PAGE:RB_LANDSCAPE\">Displays and prints the current document with the paper oriented horizontally.</ahelp>"
+msgid "<ahelp hid=\".\">Select the name of the XForms model.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdatachange.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3156153\n"
-"74\n"
+"xformsdatachange.xhp\n"
+"par_idN10587\n"
"help.text"
-msgid "Text direction"
-msgstr "Drejtimi teksti"
+msgid "Item list"
+msgstr "Kryerresht i listës"
-#: 05040200.xhp
+#: xformsdatachange.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3154380\n"
-"73\n"
+"xformsdatachange.xhp\n"
+"par_idN1058B\n"
"help.text"
-msgid "<ahelp hid=\"SVX_LISTBOX_RID_SVXPAGE_PAGE_LB_TEXT_FLOW\">Select the text direction that you want to use in your document.</ahelp> The \"right-to-left (vertical)\" text flow direction rotates all layout settings to the right by 90 degrees, except for the header and footer."
+msgid "<ahelp hid=\".\">Displays the data binding for the selected form control. To change the data binding, select another item in the list click <emph>OK</emph>. To access the <emph>Add</emph> and <emph>Properties</emph> commands for an item, right-click the item.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdataname.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3156327\n"
-"43\n"
+"xformsdataname.xhp\n"
+"tit\n"
"help.text"
-msgid "Paper tray"
-msgstr "Shporta e letrave"
+msgid "Form Namespaces"
+msgstr "Edito hapësirat e emrave"
-#: 05040200.xhp
+#: xformsdataname.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3150771\n"
-"44\n"
+"xformsdataname.xhp\n"
+"bm_id8286080\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_PAGE:LB_PAPER_TRAY\">Select the paper source for your printer. If you want, you can assign different paper trays to different page styles. For example, assign a different tray to the First Page style and load the tray with your company's letterhead paper.</ahelp>"
+msgid "<bookmark_value>deleting;namespaces in XForms</bookmark_value><bookmark_value>organizing;namespaces in XForms</bookmark_value><bookmark_value>namespace organization in XForms</bookmark_value><bookmark_value>XForms;adding/editing/deleting/organizing namespaces</bookmark_value>"
msgstr ""
-#: 05040200.xhp
+#: xformsdataname.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3150275\n"
-"3\n"
+"xformsdataname.xhp\n"
+"par_idN1053E\n"
"help.text"
-msgid "Margins"
-msgstr "Margjinat"
+msgid "Form Namespaces"
+msgstr "Edito hapësirat e emrave"
-#: 05040200.xhp
+#: xformsdataname.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3153348\n"
-"4\n"
+"xformsdataname.xhp\n"
+"par_idN10542\n"
"help.text"
-msgid "Specify the amount of space to leave between the edges of the page and the document text."
+msgid "<ahelp hid=\".\">Use this dialog to organize namespaces. You can access this dialog through the Add Condition dialog of the Data Navigator.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdataname.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3153061\n"
-"5\n"
+"xformsdataname.xhp\n"
+"par_idN10561\n"
"help.text"
-msgid "Left / Inner"
-msgstr "Mbështjellje e brendshme"
+msgid "Namespaces"
+msgstr "Hapësirat e emrit"
-#: 05040200.xhp
+#: xformsdataname.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3151384\n"
-"6\n"
+"xformsdataname.xhp\n"
+"par_idN10565\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_PAGE:ED_LEFT_MARGIN\">Enter the amount of space to leave between the left edge of the page and the document text. If you are using the <emph>Mirrored</emph> page layout, enter the amount of space to leave between the inner text margin and the inner edge of the page.</ahelp>"
+msgid "<ahelp hid=\".\">Lists the currently defined namespaces for the form.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdataname.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3154923\n"
-"8\n"
+"xformsdataname.xhp\n"
+"par_idN10568\n"
"help.text"
-msgid "Right / Outer"
-msgstr "Mbështjellje e jashtme"
+msgid "Add"
+msgstr "Shto"
-#: 05040200.xhp
+#: xformsdataname.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3147304\n"
-"9\n"
+"xformsdataname.xhp\n"
+"par_idN1056C\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_PAGE:ED_RIGHT_MARGIN\">Enter the amount of space to leave between the right edge of the page and the document text. If you are using the <emph>Mirrored</emph> page layout, enter the amount of space to leave between the outer text margin and the outer edge of the page.</ahelp>"
+msgid "<ahelp hid=\".\">Adds a new namespace to the list.</ahelp>"
msgstr ""
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3161657\n"
-"11\n"
-"help.text"
-msgid "Top"
-msgstr "Lartë"
-
-#: 05040200.xhp
+#: xformsdataname.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3154226\n"
-"12\n"
+"xformsdataname.xhp\n"
+"par_idN1056F\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_PAGE:ED_TOP_MARGIN\">Enter the amount of space to leave between the upper edge of the page and the document text.</ahelp>"
+msgid "Use the <emph>Add Namespace</emph> dialog to enter the Prefix and URL."
msgstr ""
-#: 05040200.xhp
-msgctxt ""
-"05040200.xhp\n"
-"hd_id3153381\n"
-"13\n"
-"help.text"
-msgid "Bottom"
-msgstr "Poshtë"
-
-#: 05040200.xhp
+#: xformsdataname.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3154138\n"
-"14\n"
+"xformsdataname.xhp\n"
+"par_idN10576\n"
"help.text"
-msgid "<ahelp hid=\"SVX:METRICFIELD:RID_SVXPAGE_PAGE:ED_BOTTOM_MARGIN\">Enter the amount of space to leave between the lower edge of the page and the document text.</ahelp>"
-msgstr ""
+msgid "Edit"
+msgstr "Edito"
-#: 05040200.xhp
+#: xformsdataname.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id0522200809473735\n"
+"xformsdataname.xhp\n"
+"par_idN1057A\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Aligns the text on the selected Page Style to a vertical page grid.</ahelp>"
+msgid "<ahelp hid=\".\">Edits the selected namespace.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdataname.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3150488\n"
-"55\n"
+"xformsdataname.xhp\n"
+"par_idN1057D\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Register-true</caseinline></switchinline>"
+msgid "Use the <emph>Edit Namespace</emph> dialog to edit the Prefix and URL."
msgstr ""
-#: 05040200.xhp
+#: xformsdataname.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3151112\n"
-"56\n"
+"xformsdataname.xhp\n"
+"par_idN10584\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\"><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_PAGE:CB_REGISTER\">Aligns the text on the selected Page Style to a vertical page grid.</ahelp> The spacing of the grid is defined by the <emph>Reference Style</emph>.</caseinline></switchinline>"
-msgstr ""
+msgid "Delete"
+msgstr "Fshije"
-#: 05040200.xhp
+#: xformsdataname.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id0522200809473732\n"
+"xformsdataname.xhp\n"
+"par_idN10588\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Select the Paragraph Style that you want to use as a reference for lining up the text on the selected Page style. The height of the font that is specified in the reference style sets the spacing of the vertical page grid. </ahelp>"
+msgid "<ahelp hid=\".\">Deletes the selected namespace.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3150686\n"
-"57\n"
+"xformsdatatab.xhp\n"
+"tit\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Reference Style</caseinline></switchinline>"
+msgid "Data (for XML Form Documents)"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3146146\n"
-"58\n"
+"xformsdatatab.xhp\n"
+"hd_id5766472\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_PAGE:LB_REGISTER\"><switchinline select=\"appl\"><caseinline select=\"WRITER\">Select the Paragraph Style that you want to use as a reference for lining up the text on the selected Page style. The height of the font that is specified in the reference style sets the spacing of the vertical page grid.</caseinline></switchinline></ahelp>"
+msgid "<link href=\"text/shared/01/xformsdatatab.xhp\">Data (for XML Form Documents)</link>"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3147480\n"
-"47\n"
+"xformsdatatab.xhp\n"
+"par_id1161534\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Table alignment</caseinline></switchinline>"
+msgid "The Data tab page of the Properties dialog for an XML Form document offers some XML forms settings."
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3150417\n"
-"48\n"
+"xformsdatatab.xhp\n"
+"par_id3994567\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Specify the alignment options for the cells on a printed page.</caseinline></switchinline>"
+msgid "The possible settings of the <emph>Data</emph> tab page of a control depend on the respective control. You will only see the options that are available for the current control and context. The following fields are available:"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id0522200809473845\n"
+"xformsdatatab.xhp\n"
+"hd_id9461653\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Centers the cells horizontally on the printed page.</ahelp>"
-msgstr ""
+msgid "XML data model"
+msgstr "Shto të dhënat si:"
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3147047\n"
-"49\n"
+"xformsdatatab.xhp\n"
+"par_id9239173\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Horizontal</caseinline></switchinline>"
+msgid "<ahelp hid=\".\">Select a model from the list of all models in the current document.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3153878\n"
-"50\n"
+"xformsdatatab.xhp\n"
+"hd_id2656941\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_PAGE:CB_HORZ\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Centers the cells horizontally on the printed page.</caseinline></switchinline></ahelp>"
-msgstr ""
+msgid "Binding"
+msgstr "Ndërlidhjet"
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id0522200809473811\n"
+"xformsdatatab.xhp\n"
+"par_id1481063\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Centers the cells vertically on the printed page.</ahelp>"
+msgid "<ahelp hid=\".\">Select or enter the name of a binding. Selecting the name of an existing binding associates the binding with the form control. Entering a new name creates a new binding and associates it with the form control.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3153522\n"
-"51\n"
+"xformsdatatab.xhp\n"
+"hd_id7921079\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"CALC\">Vertical</caseinline></switchinline>"
-msgstr ""
+msgid "Binding expression"
+msgstr "Duke ndërlidhur shprehjen"
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3149413\n"
-"52\n"
+"xformsdatatab.xhp\n"
+"par_id636921\n"
"help.text"
-msgid "<ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_PAGE:CB_VERT\"><switchinline select=\"appl\"><caseinline select=\"CALC\">Centers the cells vertically on the printed page.</caseinline></switchinline></ahelp>"
+msgid "<ahelp hid=\".\">Enter the DOM node to bind the control model to. Click the ... button for a dialog to enter the XPath expression.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3147381\n"
-"63\n"
+"xformsdatatab.xhp\n"
+"hd_id2799157\n"
"help.text"
-msgid "Layout settings"
-msgstr "Parametrat e faqes"
+msgid "Required"
+msgstr "Kërkohet"
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3151041\n"
-"15\n"
+"xformsdatatab.xhp\n"
+"par_id3004547\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Page Layout</defaultinline></switchinline>"
+msgid "<ahelp hid=\".\">Specifies if the item must be included on the XForm.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3157962\n"
-"16\n"
+"xformsdatatab.xhp\n"
+"hd_id6401867\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Select the page layout style to use in the current document.</defaultinline></switchinline>"
-msgstr ""
+msgid "Relevant"
+msgstr "Përsërite"
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3145744\n"
-"17\n"
+"xformsdatatab.xhp\n"
+"par_id18616\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Page layout</defaultinline></switchinline>"
+msgid "<ahelp hid=\".\">Declares the item as relevant.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3154218\n"
-"18\n"
+"xformsdatatab.xhp\n"
+"hd_id6138492\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_PAGE:LB_LAYOUT\"><switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Specify whether the current style should show odd pages, even pages, or both odd and even pages.</defaultinline></switchinline></ahelp>"
-msgstr ""
+msgid "Read-only"
+msgstr "Vetëm -lexim"
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3154946\n"
-"19\n"
+"xformsdatatab.xhp\n"
+"par_id4569231\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Right and left</defaultinline></switchinline>"
+msgid "<ahelp hid=\".\">Declares the item as read-only.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3153058\n"
-"20\n"
+"xformsdatatab.xhp\n"
+"hd_id291451\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The current page style shows both odd and even pages with left and right margins as specified.</defaultinline></switchinline>"
-msgstr ""
+msgid "Constraint"
+msgstr "Kufizimet"
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3147287\n"
-"21\n"
+"xformsdatatab.xhp\n"
+"par_id3341776\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Mirrored</defaultinline></switchinline>"
+msgid "<ahelp hid=\".\">Declares the item as a constraint.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3147317\n"
-"22\n"
+"xformsdatatab.xhp\n"
+"hd_id5947141\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The current page style shows both odd and even pages with inner and outer margins as specified. Use this layout if you want to bind the printed pages like a book. Enter the binding space as the \"Inner\" margin.</defaultinline></switchinline>"
+msgid "Calculation"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3155308\n"
-"23\n"
+"xformsdatatab.xhp\n"
+"par_id1911679\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Only right</defaultinline></switchinline>"
+msgid "<ahelp hid=\".\">Declares that the item is calculated.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3152885\n"
-"24\n"
+"xformsdatatab.xhp\n"
+"hd_id9364909\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The current page style shows only odd (right) pages. Even pages are shown as blank pages.</defaultinline></switchinline>"
-msgstr ""
+msgid "Data type"
+msgstr "Tipi i të dhënave"
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3157309\n"
-"25\n"
+"xformsdatatab.xhp\n"
+"par_id4473403\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>Only left</defaultinline></switchinline>"
+msgid "<ahelp hid=\".\">Select a data type which the control should be validated against.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3147326\n"
-"26\n"
+"xformsdatatab.xhp\n"
+"hd_id2480849\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"DRAW\"></caseinline><caseinline select=\"IMPRESS\"></caseinline><defaultinline>The current page style shows only even (left) pages. Odd pages are shown as blank pages.</defaultinline></switchinline>"
+msgid "x"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3155366\n"
-"53\n"
+"xformsdatatab.xhp\n"
+"par_id4181951\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"WRITER\">Register-true</caseinline></switchinline>"
+msgid "<ahelp hid=\".\">Select a user-defined data type and click the button to delete the user-defined data type.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3083281\n"
-"27\n"
+"xformsdatatab.xhp\n"
+"hd_id2927335\n"
"help.text"
-msgid "Format"
-msgstr "Formati"
+msgid "+"
+msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3153745\n"
-"28\n"
+"xformsdatatab.xhp\n"
+"par_id2107303\n"
"help.text"
-msgid "<ahelp hid=\"SVX:LISTBOX:RID_SVXPAGE_PAGE:LB_NUMBER_FORMAT\">Select the page numbering format that you want to use for the current page style.</ahelp>"
+msgid "<ahelp hid=\".\">Click the button to open a dialog where you can enter the name of a new user-defined data type. The new data type inherits all facets from the currently selected data type.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id0522200809473965\n"
+"xformsdatatab.xhp\n"
+"par_id4071779\n"
"help.text"
-msgid "<ahelp hid=\".\" visibility=\"hidden\">Resizes the drawing objects so that they fit on the paper format that you select. The arrangement of the drawing objects is preserved.</ahelp>"
+msgid "The following lists all facets that are valid for data types. Some facets are only available for some data types."
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"hd_id3151318\n"
-"67\n"
+"xformsdatatab.xhp\n"
+"hd_id4313791\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"OFFICE\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><caseinline select=\"IMAGE\"></caseinline><defaultinline>AutoFit object to page format</defaultinline></switchinline>"
+msgid "Whitespaces"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3144746\n"
-"68\n"
+"xformsdatatab.xhp\n"
+"par_id4331797\n"
"help.text"
-msgid "<switchinline select=\"appl\"><caseinline select=\"OFFICE\"></caseinline><caseinline select=\"WRITER\"></caseinline><caseinline select=\"CALC\"></caseinline><caseinline select=\"CHART\"></caseinline><caseinline select=\"MATH\"></caseinline><caseinline select=\"IMAGE\"></caseinline><defaultinline><ahelp hid=\"SVX:CHECKBOX:RID_SVXPAGE_PAGE:CB_ADAPT\">Resizes the drawing objects so that they fit on the paper format that you select. The arrangement of the drawing objects is preserved.</ahelp></defaultinline></switchinline>"
+msgid "<ahelp hid=\".\">Specifies how whitespaces are to be handled when a string of the current data type is being processed. Possible values are Preserve, Replace, and Collapse. The semantics follow the definition at http://www.w3.org/TR/xmlschema-2/#rf-whiteSpace.</ahelp>"
msgstr ""
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3149123\n"
+"xformsdatatab.xhp\n"
+"hd_id4191717\n"
"help.text"
-msgid "<link href=\"text/shared/00/00000001.xhp#metrik\" name=\"Changing measurement units\">Changing measurement units</link>"
-msgstr ""
+msgid "Pattern"
+msgstr "Model"
-#: 05040200.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"05040200.xhp\n"
-"par_id3153730\n"
+"xformsdatatab.xhp\n"
+"par_id2318796\n"
"help.text"
-msgid "<link href=\"text/swriter/guide/registertrue.xhp\" name=\"Writing Register-true\">Writing Register-true</link>"
+msgid "<ahelp hid=\".\">Specifies a regular expression pattern. Strings validated against the data type must conform to this pattern to be valid. The XSD data type syntax for regular expressions is different from the regular expression syntax used elseswhere in %PRODUCTNAME, for example in the Find & Replace dialog.</ahelp>"
msgstr ""
-#: 01110400.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110400.xhp\n"
-"tit\n"
+"xformsdatatab.xhp\n"
+"hd_id399182\n"
"help.text"
-msgid "Edit"
-msgstr "Edito"
+msgid "Digits (total)"
+msgstr "Gjerësi Totale"
-#: 01110400.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110400.xhp\n"
-"hd_id3150620\n"
-"1\n"
+"xformsdatatab.xhp\n"
+"par_id5298318\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110400.xhp\" name=\"Edit\">Edit</link>"
+msgid "<ahelp hid=\".\">Specifies the maximum total number of digits that values of the decimal data type can have.</ahelp>"
msgstr ""
-#: 01110400.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110400.xhp\n"
-"par_id3144415\n"
-"2\n"
+"xformsdatatab.xhp\n"
+"hd_id7588732\n"
"help.text"
-msgid "<ahelp hid=\".uno:OpenTemplate\">Opens a dialog where you can select a template for editing.</ahelp>"
-msgstr ""
+msgid "Digits (fraction)"
+msgstr "Shiriti i thyesës"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"tit\n"
+"xformsdatatab.xhp\n"
+"par_id95828\n"
"help.text"
-msgid "Saving (Templates)"
-msgstr "Shabllonet e mia"
+msgid "<ahelp hid=\".\">Specifies the maximum total number of fractional digits that values of the decimal data type can have.</ahelp>"
+msgstr ""
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"hd_id3160463\n"
-"1\n"
+"xformsdatatab.xhp\n"
+"hd_id3496200\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110300.xhp\" name=\"Saving (Templates)\">Saving (Templates)</link>"
-msgstr ""
+msgid "Max. (inclusive)"
+msgstr "Vlerë maks."
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"par_id3157898\n"
-"2\n"
+"xformsdatatab.xhp\n"
+"par_id7599108\n"
"help.text"
-msgid "<ahelp hid=\".uno:SaveAsTemplate\">Saves the current document as a template.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies an inclusive upper bound for values.</ahelp>"
msgstr ""
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"hd_id3147226\n"
-"4\n"
+"xformsdatatab.xhp\n"
+"hd_id888698\n"
"help.text"
-msgid "New Template"
-msgstr "Shabllon i ri"
+msgid "Max. (exclusive)"
+msgstr "Vlerë maks."
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"par_id3147043\n"
-"5\n"
+"xformsdatatab.xhp\n"
+"par_id3394573\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:EDIT:DLG_DOC_TEMPLATE:ED_NAME\">Enter a name for the template.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies an exclusive upper bound for values.</ahelp>"
msgstr ""
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"hd_id3147571\n"
-"6\n"
+"xformsdatatab.xhp\n"
+"hd_id7594225\n"
"help.text"
-msgid "Templates"
-msgstr "Shabllonet"
+msgid "Min. (inclusive)"
+msgstr "Lartësia min.:"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"par_id3150774\n"
-"7\n"
+"xformsdatatab.xhp\n"
+"par_id8147221\n"
"help.text"
-msgid "Lists templates and template categories."
+msgid "<ahelp hid=\".\">Specifies an inclusive lower bound for values.</ahelp>"
msgstr ""
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"hd_id3143268\n"
-"8\n"
+"xformsdatatab.xhp\n"
+"hd_id5081637\n"
"help.text"
-msgid "Categories"
-msgstr "Kategoritë"
+msgid "Min. (exclusive)"
+msgstr "Lartësia min.:"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"par_id3159233\n"
-"9\n"
+"xformsdatatab.xhp\n"
+"par_id9759514\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:LISTBOX:DLG_DOC_TEMPLATE:LB_SECTION\">Select a category in which to save the new template.</ahelp> To add a new template category, click the <link href=\"text/shared/01/01110100.xhp\" name=\"Organize\">Organize</link> button."
+msgid "<ahelp hid=\".\">Specifies an exclusive lower bound for values.</ahelp>"
msgstr ""
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"hd_id3150693\n"
-"10\n"
+"xformsdatatab.xhp\n"
+"hd_id1614429\n"
"help.text"
-msgid "Templates"
-msgstr "Shabllonet"
+msgid "Length"
+msgstr "Gjatësi"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"par_id3149398\n"
-"11\n"
+"xformsdatatab.xhp\n"
+"par_id1589098\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:LISTBOX:DLG_DOC_TEMPLATE:LB_STYLESHEETS\">Lists the available template categories.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the number of characters for a string.</ahelp>"
msgstr ""
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"hd_id3163803\n"
-"12\n"
+"xformsdatatab.xhp\n"
+"hd_id1278420\n"
"help.text"
-msgid "Edit"
-msgstr "Edito"
+msgid "Length (at least)"
+msgstr "Gjerësia (më së paku)"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"par_id3147242\n"
-"13\n"
+"xformsdatatab.xhp\n"
+"par_id8746910\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_DOC_TEMPLATE:BT_EDIT\">Opens the selected template for editing.</ahelp>"
+msgid "<ahelp hid=\".\">Specifies the minimum number of characters for a string.</ahelp>"
msgstr ""
-#: 01110300.xhp
-msgctxt ""
-"01110300.xhp\n"
-"hd_id3156156\n"
-"14\n"
-"help.text"
-msgid "Organize"
-msgstr "Organizo..."
-
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"par_id3155419\n"
-"15\n"
+"xformsdatatab.xhp\n"
+"hd_id9636524\n"
"help.text"
-msgid "<ahelp hid=\"SFX2:PUSHBUTTON:DLG_DOC_TEMPLATE:BT_ORGANIZE\">Opens the <emph>Template Management</emph> dialog where you can organize or create new templates.</ahelp>"
-msgstr ""
+msgid "Length (at most)"
+msgstr "Pikat në fund"
-#: 01110300.xhp
+#: xformsdatatab.xhp
msgctxt ""
-"01110300.xhp\n"
-"par_id3153126\n"
+"xformsdatatab.xhp\n"
+"par_id5675527\n"
"help.text"
-msgid "<link href=\"text/shared/01/01110100.xhp\" name=\"Template Management\">Template Management</link>"
+msgid "<ahelp hid=\".\">Specifies the maximum number of characters for a string.</ahelp>"
msgstr ""
diff --git a/source/sq/helpcontent2/source/text/shared/02.po b/source/sq/helpcontent2/source/text/shared/02.po
index 7cd241d4b6e..2d3b0c6ef74 100644
--- a/source/sq/helpcontent2/source/text/shared/02.po
+++ b/source/sq/helpcontent2/source/text/shared/02.po