From 126bb8cb6b93240bb4d3a2b816b74c286c3d422b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sun, 6 Jul 2014 15:20:38 +0200 Subject: Imported Upstream version 1.7.0 --- lib/gcstar/GCLang/AR/GCExport/GCExportCSV.pm | 52 ++ lib/gcstar/GCLang/AR/GCExport/GCExportExternal.pm | 38 ++ lib/gcstar/GCLang/AR/GCExport/GCExportHTML.pm | 76 +++ lib/gcstar/GCLang/AR/GCExport/GCExportPDB.pm | 38 ++ lib/gcstar/GCLang/AR/GCExport/GCExportSQL.pm | 53 ++ lib/gcstar/GCLang/AR/GCExport/GCExportTarGz.pm | 49 ++ lib/gcstar/GCLang/AR/GCExport/GCExportXML.pm | 53 ++ .../GCLang/AR/GCImport/GCImportAlexandria.pm | 51 ++ lib/gcstar/GCLang/AR/GCImport/GCImportCSV.pm | 55 ++ lib/gcstar/GCLang/AR/GCImport/GCImportFolder.pm | 68 ++ lib/gcstar/GCLang/AR/GCImport/GCImportGCstar.pm | 49 ++ lib/gcstar/GCLang/AR/GCImport/GCImportList.pm | 54 ++ lib/gcstar/GCLang/AR/GCImport/GCImportScanner.pm | 50 ++ lib/gcstar/GCLang/AR/GCImport/GCImportTellico.pm | 49 ++ lib/gcstar/GCLang/AR/GCModels/GCTVepisodes.pm | 46 ++ lib/gcstar/GCLang/AR/GCModels/GCTVseries.pm | 50 ++ lib/gcstar/GCLang/AR/GCModels/GCboardgames.pm | 86 +++ lib/gcstar/GCLang/AR/GCModels/GCbooks.pm | 68 ++ lib/gcstar/GCLang/AR/GCModels/GCcoins.pm | 102 +++ lib/gcstar/GCLang/AR/GCModels/GCcomics.pm | 73 +++ lib/gcstar/GCLang/AR/GCModels/GCfilms.pm | 104 ++++ lib/gcstar/GCLang/AR/GCModels/GCgames.pm | 92 +++ lib/gcstar/GCLang/AR/GCModels/GCgeneric.pm | 42 ++ lib/gcstar/GCLang/AR/GCModels/GCminicars.pm | 182 ++++++ lib/gcstar/GCLang/AR/GCModels/GCmusics.pm | 78 +++ lib/gcstar/GCLang/AR/GCModels/GCperiodicals.pm | 52 ++ lib/gcstar/GCLang/AR/GCModels/GCsmartcards.pm | 108 ++++ lib/gcstar/GCLang/AR/GCModels/GCsoftware.pm | 84 +++ lib/gcstar/GCLang/AR/GCModels/GCstamps.pm | 189 ++++++ lib/gcstar/GCLang/AR/GCModels/GCwines.pm | 63 ++ lib/gcstar/GCLang/AR/GCstar.pm | 692 +++++++++++++++++++++ 31 files changed, 2846 insertions(+) create mode 100644 lib/gcstar/GCLang/AR/GCExport/GCExportCSV.pm create mode 100644 lib/gcstar/GCLang/AR/GCExport/GCExportExternal.pm create mode 100644 lib/gcstar/GCLang/AR/GCExport/GCExportHTML.pm create mode 100644 lib/gcstar/GCLang/AR/GCExport/GCExportPDB.pm create mode 100644 lib/gcstar/GCLang/AR/GCExport/GCExportSQL.pm create mode 100644 lib/gcstar/GCLang/AR/GCExport/GCExportTarGz.pm create mode 100644 lib/gcstar/GCLang/AR/GCExport/GCExportXML.pm create mode 100644 lib/gcstar/GCLang/AR/GCImport/GCImportAlexandria.pm create mode 100644 lib/gcstar/GCLang/AR/GCImport/GCImportCSV.pm create mode 100644 lib/gcstar/GCLang/AR/GCImport/GCImportFolder.pm create mode 100644 lib/gcstar/GCLang/AR/GCImport/GCImportGCstar.pm create mode 100644 lib/gcstar/GCLang/AR/GCImport/GCImportList.pm create mode 100644 lib/gcstar/GCLang/AR/GCImport/GCImportScanner.pm create mode 100644 lib/gcstar/GCLang/AR/GCImport/GCImportTellico.pm create mode 100644 lib/gcstar/GCLang/AR/GCModels/GCTVepisodes.pm create mode 100644 lib/gcstar/GCLang/AR/GCModels/GCTVseries.pm create mode 100644 lib/gcstar/GCLang/AR/GCModels/GCboardgames.pm create mode 100644 lib/gcstar/GCLang/AR/GCModels/GCbooks.pm create mode 100644 lib/gcstar/GCLang/AR/GCModels/GCcoins.pm create mode 100644 lib/gcstar/GCLang/AR/GCModels/GCcomics.pm create mode 100644 lib/gcstar/GCLang/AR/GCModels/GCfilms.pm create mode 100644 lib/gcstar/GCLang/AR/GCModels/GCgames.pm create mode 100644 lib/gcstar/GCLang/AR/GCModels/GCgeneric.pm create mode 100644 lib/gcstar/GCLang/AR/GCModels/GCminicars.pm create mode 100644 lib/gcstar/GCLang/AR/GCModels/GCmusics.pm create mode 100644 lib/gcstar/GCLang/AR/GCModels/GCperiodicals.pm create mode 100644 lib/gcstar/GCLang/AR/GCModels/GCsmartcards.pm create mode 100644 lib/gcstar/GCLang/AR/GCModels/GCsoftware.pm create mode 100644 lib/gcstar/GCLang/AR/GCModels/GCstamps.pm create mode 100644 lib/gcstar/GCLang/AR/GCModels/GCwines.pm create mode 100644 lib/gcstar/GCLang/AR/GCstar.pm (limited to 'lib/gcstar/GCLang/AR') diff --git a/lib/gcstar/GCLang/AR/GCExport/GCExportCSV.pm b/lib/gcstar/GCLang/AR/GCExport/GCExportCSV.pm new file mode 100644 index 0000000..96692e3 --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCExport/GCExportCSV.pm @@ -0,0 +1,52 @@ +{ + package GCLang::AR::GCExport::GCExportCSV; + + use utf8; +################################################### +# +# This file translated by : +# Muhammad Bashir Al-Noimi +# Contact me: +# webmaster@hali-sy.com +# bashir.storm@gmail.com +# hali83@cec.sy +# MY Blog: +# http://www.hali-sy.com/blog +# +################################################### +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Header' => 'تضمين أسماء الحقول بالأعلى', + 'Separator' => 'الفاصلة', + 'Replacement' => 'إستبدال الفاصلة بـ', + 'Charset' => 'الترميز', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCExport/GCExportExternal.pm b/lib/gcstar/GCLang/AR/GCExport/GCExportExternal.pm new file mode 100644 index 0000000..c87fc2f --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCExport/GCExportExternal.pm @@ -0,0 +1,38 @@ +{ + package GCLang::AR::GCExport::GCExportExternal; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Name' => 'External disk', + 'ZipAll' => 'Put everything in a zipped file (.gcz)', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCExport/GCExportHTML.pm b/lib/gcstar/GCLang/AR/GCExport/GCExportHTML.pm new file mode 100644 index 0000000..e692fa5 --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCExport/GCExportHTML.pm @@ -0,0 +1,76 @@ +{ + package GCLang::AR::GCExport::GCExportHTML; + + use utf8; +################################################### +# +# This file translated by : +# Muhammad Bashir Al-Noimi +# Contact me: +# webmaster@hali-sy.com +# bashir.storm@gmail.com +# hali83@cec.sy +# MY Blog: +# http://www.hali-sy.com/blog +# +################################################### +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'ModelNotFound' => 'قالب غير صالح', + 'UseFile' => 'قم بإستعمال الملف أدناه', + 'TemplateExternalFile' => 'القالب', + 'WithJS' => 'إستعمل Javascript', + 'FileTemplate' => 'قالب:', + 'Preview' => 'معاينة', + 'NoPreview' => 'المعاينة غير متاحة', + 'Title' => 'عنوان الصفحة', + 'InfoFile' => 'قائمة الأفلام في الملف: ', + 'InfoDir' => 'الصور في المجلد: ', + 'HeightImg' => 'إرتفاع الصور التي سيتم تصديرها (بالبكسل): ', + 'OpenFileInBrowser' => 'فتح الملف المنشئ بواسطة متصفح الإنترنت', + 'Note' => 'تم إنشاء القائمة بواسطة GCstar', + 'InputTitle' => 'أدخل نص البحث', + 'SearchType1' => 'عنوان فقط', + 'SearchType2' => 'معلومات كاملة', + 'SearchButton' => 'بحث', + 'SearchTitle' => 'عرض الأفلام الماطيقة للمعيار السابق فقط', + 'AllButton' => 'الكل', + 'AllTitle' => 'عرض كل الأفلام', + 'Expand' => 'توسيع الكل', + 'ExpandTitle' => 'عرض معلومات كل الأفلام', + 'Collapse' => 'طي الكل', + 'CollapseTitle' => 'طي كل معلومات الأفلام', + 'Borrowed' => 'تمت إستعارته من قبل: ', + 'NotBorrowed' => 'متاح', + 'Top' => 'للأعلى', + 'Bottom' => 'للأسفل', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCExport/GCExportPDB.pm b/lib/gcstar/GCLang/AR/GCExport/GCExportPDB.pm new file mode 100644 index 0000000..984b4bf --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCExport/GCExportPDB.pm @@ -0,0 +1,38 @@ +{ + package GCLang::AR::GCExport::GCExportPDB; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Name' => 'Palm PDB', + 'DatabaseName' => 'Database name', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCExport/GCExportSQL.pm b/lib/gcstar/GCLang/AR/GCExport/GCExportSQL.pm new file mode 100644 index 0000000..7edff66 --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCExport/GCExportSQL.pm @@ -0,0 +1,53 @@ + +{ + package GCLang::AR::GCExport::GCExportSQL; + + use utf8; +################################################### +# +# This file translated by : +# Muhammad Bashir Al-Noimi +# Contact me: +# webmaster@hali-sy.com +# bashir.storm@gmail.com +# hali83@cec.sy +# MY Blog: +# http://www.hali-sy.com/blog +# +################################################### +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'WithDrop' => 'تضمين تعليمة DROP', + 'WithCreate' => 'تضمين تعليمة CREATE', + 'TableName' => 'إسم الجدول', + 'InfoFile' => 'ملف SQL: ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCExport/GCExportTarGz.pm b/lib/gcstar/GCLang/AR/GCExport/GCExportTarGz.pm new file mode 100644 index 0000000..3f8163c --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCExport/GCExportTarGz.pm @@ -0,0 +1,49 @@ +{ + package GCLang::AR::GCExport::GCExportTarGz; + + use utf8; +################################################### +# +# This file translated by : +# Muhammad Bashir Al-Noimi +# Contact me: +# webmaster@hali-sy.com +# bashir.storm@gmail.com +# hali83@cec.sy +# MY Blog: +# http://www.hali-sy.com/blog +# +################################################### +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Info' => 'أرشفة للملف: ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCExport/GCExportXML.pm b/lib/gcstar/GCLang/AR/GCExport/GCExportXML.pm new file mode 100644 index 0000000..a36c7d2 --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCExport/GCExportXML.pm @@ -0,0 +1,53 @@ +{ + package GCLang::AR::GCExport::GCExportXML; + + use utf8; +################################################### +# +# This file translated by : +# Muhammad Bashir Al-Noimi +# Contact me: +# webmaster@hali-sy.com +# bashir.storm@gmail.com +# hali83@cec.sy +# MY Blog: +# http://www.hali-sy.com/blog +# +################################################### +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'ModelFile' => 'ملف القالب', + 'ModelText' => 'نص القالب', + 'Models' => 'قالب سيتم إستعماله', + 'UseFile' => 'إستعمل الملف', + 'UseModel' => 'إستعمل مربع النص', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCImport/GCImportAlexandria.pm b/lib/gcstar/GCLang/AR/GCImport/GCImportAlexandria.pm new file mode 100644 index 0000000..7622dca --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCImport/GCImportAlexandria.pm @@ -0,0 +1,51 @@ +{ + package GCLang::AR::GCImport::GCImportAlexandria; + + use utf8; +################################################### +# +# This file translated by : +# Muhammad Bashir Al-Noimi +# Contact me: +# webmaster@hali-sy.com +# bashir.storm@gmail.com +# hali83@cec.sy +# MY Blog: +# http://www.hali-sy.com/blog +# +################################################### +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Where' => 'مكان البحث', + 'Default' => 'مسار Alexandria الإفتراضي', + 'Specified' => 'المسار المحدّد أدناه', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCImport/GCImportCSV.pm b/lib/gcstar/GCLang/AR/GCImport/GCImportCSV.pm new file mode 100644 index 0000000..ff92e5f --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCImport/GCImportCSV.pm @@ -0,0 +1,55 @@ +{ + package GCLang::AR::GCImport::GCImportCSV; + + use utf8; +################################################### +# +# This file translated by : +# Muhammad Bashir Al-Noimi +# Contact me: +# webmaster@hali-sy.com +# bashir.storm@gmail.com +# hali83@cec.sy +# MY Blog: +# http://www.hali-sy.com/blog +# +################################################### +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Charset' => 'الترميز', + 'Header' => 'تجاهل السطر الأول', + 'Separator' => 'الفاصلة', + 'Plugin' => 'موقع سيتم إستعماله', + 'UseFirst' => 'حدد أول نتيجة', + 'SearchField' => 'Search for items using', + + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCImport/GCImportFolder.pm b/lib/gcstar/GCLang/AR/GCImport/GCImportFolder.pm new file mode 100644 index 0000000..e72f5fa --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCImport/GCImportFolder.pm @@ -0,0 +1,68 @@ +{ + package GCLang::AR::GCImport::GCImportFolder; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + use GCLang::GCLangUtils; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Name' => 'Folder', + 'Recursive' => 'Browse sub-folders', + 'Suffixes' => 'Suffixes or extensions of the files', + 'SuffixesTooltip' => 'A comma-separated list of suffixes or extensions of files to consider', + 'Remove' => 'To be removed from names', + 'RemoveTooltip' => 'A comma-seperated list of words that should be removed from file names to create the fetched names', + 'Ask'=> 'Ask', + 'AskEnd'=> 'Ask all at end', + 'AddWithoutInfo'=> 'Add without infos', + 'DontAdd'=> 'Do not add', + 'TakeFirst' => 'Select first', + 'MultipleResult'=> 'Multiple results', + 'MultipleResultTooltip'=> 'What do we do when more than 1 result is return by the plugin', + 'RemoveWholeWord' => 'Remove only whole words', + 'NoResult'=> 'No results', + 'NoResultTooltip'=> 'What do we do when no search results is return by the plugin', + 'RemoveTooltipWholeWord' => 'Words will be removed only if they appear as an entire word', + 'RemoveRegularExpr' => 'Regular expression', + 'RemoveTooltipRegularExpr' => 'Consider that \'To be removed from names\' is a perl regular expression', + 'SkipFileAlreadyInCollection' => 'Add new files only', + 'SkipFileAlreadyInCollectionTooltip' => 'Add only files not already in the collection', + 'SkipFileNo' => 'No', + 'SkipFileFullPath' => 'based on full path', + 'SkipFileFileName' => 'based on file name', + 'SkipFileFileNameAndUpdate' => 'based on file name (but update path in collection)', + 'InfoFromFileNameRegExp' => 'Parse file name with this regular expression', + 'InfoFromFileNameRegExpTooltip' => 'Use this to retrieve infos from filename (applied after removing extension).\nLeave empty if not needed.\nKnown fields : \n$T:Title, $A:Alphabetised title, $Y:Release date, $S:Season, $E:Episode, $N:Alphabetised serie name, $x:Part number, $y: Total part number', + + ); + + # As this plugin shares some values with ImportList, it adds them from it + importTranslation('List'); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCImport/GCImportGCstar.pm b/lib/gcstar/GCLang/AR/GCImport/GCImportGCstar.pm new file mode 100644 index 0000000..8d5a41e --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCImport/GCImportGCstar.pm @@ -0,0 +1,49 @@ +{ + package GCLang::AR::GCImport::GCImportGCstar; + + use utf8; +################################################### +# +# This file translated by : +# Muhammad Bashir Al-Noimi +# Contact me: +# webmaster@hali-sy.com +# bashir.storm@gmail.com +# hali83@cec.sy +# MY Blog: +# http://www.hali-sy.com/blog +# +################################################### +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'CopyPictures' => 'نسخ الصور', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCImport/GCImportList.pm b/lib/gcstar/GCLang/AR/GCImport/GCImportList.pm new file mode 100644 index 0000000..a424172 --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCImport/GCImportList.pm @@ -0,0 +1,54 @@ +{ + package GCLang::AR::GCImport::GCImportList; + + use utf8; +################################################### +# +# This file translated by : +# Muhammad Bashir Al-Noimi +# Contact me: +# webmaster@hali-sy.com +# bashir.storm@gmail.com +# hali83@cec.sy +# MY Blog: +# http://www.hali-sy.com/blog +# +################################################### +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Name' => 'قائمة الأسماء', + 'Plugin' => 'موقع سيتم إستعماله', + 'UseFirst' => 'حدد أول نتيجة', + 'CommentAuto' => 'عنصر سيتم إستيراده بشكل تلقائي', + 'CommentSite' => 'موقع إنترنت: ', + 'CommentTitle' => 'عنوان: ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCImport/GCImportScanner.pm b/lib/gcstar/GCLang/AR/GCImport/GCImportScanner.pm new file mode 100644 index 0000000..3f98efc --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCImport/GCImportScanner.pm @@ -0,0 +1,50 @@ +{ + package GCLang::AR::GCImport::GCImportScanner; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'Name' => 'Barcode scanner', + 'Type' => 'Scanner type', + 'Local' => 'Local (used as a keyboard)', + 'Network' => 'Network (eg: GCstar Scanner for Android)', + 'Port' => 'Port to listen on', + 'Plugin' => 'Site to be used', + 'UseFirst' => 'Select first one if many results', + 'Waiting' => 'Waiting for barcode', + 'EAN' => 'Barcode', + 'ScanPrompt' => 'Scan an item or press on Done', + 'ScanOtherPrompt' => 'Scan another item or press on Done', + 'Previous' => '"%s" will be added.', + 'NothingFound' => 'Nothing was found for "%s". An empty item will be added.', + 'Terminate' => 'Done', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCImport/GCImportTellico.pm b/lib/gcstar/GCLang/AR/GCImport/GCImportTellico.pm new file mode 100644 index 0000000..3029f9f --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCImport/GCImportTellico.pm @@ -0,0 +1,49 @@ +{ + package GCLang::AR::GCImport::GCImportTellico; + + use utf8; +################################################### +# +# This file translated by : +# Muhammad Bashir Al-Noimi +# Contact me: +# webmaster@hali-sy.com +# bashir.storm@gmail.com +# hali83@cec.sy +# MY Blog: +# http://www.hali-sy.com/blog +# +################################################### +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + 'NotSupported' => 'الملف لا يدعم مجموعة Tellico ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCModels/GCTVepisodes.pm b/lib/gcstar/GCLang/AR/GCModels/GCTVepisodes.pm new file mode 100644 index 0000000..a03bc0b --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCModels/GCTVepisodes.pm @@ -0,0 +1,46 @@ +{ + package GCLang::AR::GCModels::GCTVepisodes; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use GCLang::GCLangUtils; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'TV Shows (episodes) collection', + Items => 'Episodes', + NewItem => 'New episode', + NewSeries => 'New series', + Episode => 'Episode', + ); + # Both of them are required as importTranslation doesn't recurse + importTranslation('films'); + importTranslation('TVseries'); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCModels/GCTVseries.pm b/lib/gcstar/GCLang/AR/GCModels/GCTVseries.pm new file mode 100644 index 0000000..6f866c0 --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCModels/GCTVseries.pm @@ -0,0 +1,50 @@ +{ + package GCLang::AR::GCModels::GCTVseries; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use GCLang::GCLangUtils; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'TV Shows (series) collection', + Items => 'Series', + NewItem => 'New series', + Name => 'Name', + Season => 'Season', + Part => 'Part', + Episodes => 'Episodes', + FirstAired => 'First Aired', + Time => 'Ep. Length', + Producer => 'Producer', + Music => 'Music', + ); + importTranslation('Films'); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCModels/GCboardgames.pm b/lib/gcstar/GCLang/AR/GCModels/GCboardgames.pm new file mode 100644 index 0000000..61d58e9 --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCModels/GCboardgames.pm @@ -0,0 +1,86 @@ +{ + package GCLang::AR::GCModels::GCboardgames; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Board games collection', + Items => {0 => 'Game', + 1 => 'Game', + X => 'Games'}, + NewItem => 'New game', + + Id => 'Id', + Name => 'Name', + Original => 'Original name', + Box => 'Box picture', + DesignedBy => 'Designed by', + PublishedBy => 'Published by', + Players => 'Number of players', + PlayingTime => 'Playing time', + SuggestedAge => 'Suggested age', + Released => 'Released', + Description => 'Description', + Category => 'Category', + Mechanics => 'Mechanics', + ExpandedBy => 'Expanded by', + ExpansionFor => 'Expansion for', + GameFamily => 'Game family', + IllustratedBy => 'Illustrated by', + Url => 'Web page', + TimesPlayed => 'Times played', + CompleteContents => 'Complete contents', + Copies => 'No. of copies', + Condition => 'Condition', + Photos => 'Photos', + Photo1 => 'First picture', + Photo2 => 'Second picture', + Photo3 => 'Third picture', + Photo4 => 'Fourth picture', + Comments => 'Comments', + + Perfect => 'Perfect', + Good => 'Good', + Average => 'Average', + Poor => 'Poor', + + CompleteYes => 'Complete contents', + CompleteNo => 'Missing pieces', + + General => 'General', + Details => 'Details', + Personal => 'Personal', + Information => 'Information', + + FilterRatingSelect => 'Rating At _Least...', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCModels/GCbooks.pm b/lib/gcstar/GCLang/AR/GCModels/GCbooks.pm new file mode 100644 index 0000000..f72cc67 --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCModels/GCbooks.pm @@ -0,0 +1,68 @@ +{ + package GCLang::AR::GCModels::GCbooks; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'مجموعة الكتب', + Items => 'الكتب', + NewItem => 'كتاب جديد', + + Isbn => 'ISBN', + Title => 'العنوان', + Cover => 'الغلاف', + Authors => 'المؤلفون', + Publisher => 'الناشر', + Publication => 'تاريخ النشر', + Language => 'اللغة', + Genre => 'النوع', + Serie => 'سلسلة', + Rank => 'الرتبة', + Bookdescription => 'الوصف', + Pages => 'صفحات', + Read => 'قُرء', + Acquisition => 'تاريخ الحصول على الكتاب', + Edition => 'الطبعة', + Format => 'الصيغة', + Comments => 'تعليقات', + Url => 'صفحة الإنترنت', + Translator => 'المترجم', + Artist => 'الرسّام', + DigitalFile => 'Digital version', + + General => 'عام', + Details => 'تفاصيل', + + ReadNo => 'لم يُقرء', + ReadYes => 'قُرء', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCModels/GCcoins.pm b/lib/gcstar/GCLang/AR/GCModels/GCcoins.pm new file mode 100644 index 0000000..ccb8bad --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCModels/GCcoins.pm @@ -0,0 +1,102 @@ +{ + package GCLang::AR::GCModels::GCcoins; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'مجموعة نقديّة', + Items => 'نقود', + NewItem => 'نقد جديد', + + Name => 'الإسم', + Country => 'البلد', + Year => 'العام', + Currency => 'العملة', + Value => 'القيمة', + Picture => 'الصورة الرئيسية', + Diameter => 'القطر', + Metal => 'معدني', + Edge => 'الحافة', + Edge1 => 'الحافة 1', + Edge2 => 'الحافة 2', + Edge3 => 'الحافة 3', + Edge4 => 'الحافة 4', + Head => 'الترويسة', + Tail => 'التذييل', + Comments => 'تعليقات', + History => 'التاريخ', + Website => 'موقع الإنترنت', + Estimate => 'التخمين', + References => 'المراجع', + Type => 'النوع', + Coin => 'العملة', + Banknote => 'ملاحظة المصرف', + + Main => 'عام', + Description => 'الوصف', + Other => 'معلومات أخرى', + Pictures => 'الصور', + + Condition => 'الشروط (PCGS)', + Grade1 => 'BS-1', + Grade2 => 'FR-2', + Grade3 => 'AG-3', + Grade4 => 'G-4', + Grade6 => 'G-6', + Grade8 => 'VG-8', + Grade10 => 'VG-10', + Grade12 => 'F-12', + Grade15 => 'F-15', + Grade20 => 'VF-20', + Grade25 => 'VF-25', + Grade30 => 'VF-30', + Grade35 => 'VF-35', + Grade40 => 'XF-40', + Grade45 => 'XF-45', + Grade50 => 'AU-50', + Grade53 => 'AU-53', + Grade55 => 'AU-55', + Grade58 => 'AU-58', + Grade60 => 'MS-60', + Grade61 => 'MS-61', + Grade62 => 'MS-62', + Grade63 => 'MS-63', + Grade64 => 'MS-64', + Grade65 => 'MS-65', + Grade66 => 'MS-66', + Grade67 => 'MS-67', + Grade68 => 'MS-68', + Grade69 => 'MS-69', + Grade70 => 'MS-70', + + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCModels/GCcomics.pm b/lib/gcstar/GCLang/AR/GCModels/GCcomics.pm new file mode 100644 index 0000000..4e0fa7d --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCModels/GCcomics.pm @@ -0,0 +1,73 @@ +{ + package GCLang::AR::GCModels::GCcomics; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Comics collection', + Items => {0 => 'Comics', + 1 => 'Comic', + X => 'Comics'}, + NewItem => 'New comic', + + + Id => 'Id', + Name => 'Name', + Series => 'Series', + Volume => 'Volume', + Title => 'Title', + Writer => 'Writer', + Illustrator => 'Illustrator', + Colourist => 'Colourist', + Publisher => 'Publisher', + Synopsis => 'Synopsis', + Collection => 'Collection', + PublishDate => 'Publish Date', + PrintingDate => 'Printing Date', + ISBN => 'ISBN', + Type => 'Type', + Category => 'Category', + Format => 'Format', + NumberBoards => 'Number of Boards', + Signing => 'Signing', + Cost => 'Cost', + Rating => 'Rating', + Comment => 'Comments', + Url => 'Web page', + + FilterRatingSelect => 'Rating At _Least...', + + Main => 'Main items', + General => 'General', + Details => 'Details', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCModels/GCfilms.pm b/lib/gcstar/GCLang/AR/GCModels/GCfilms.pm new file mode 100644 index 0000000..d303348 --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCModels/GCfilms.pm @@ -0,0 +1,104 @@ +{ + package GCLang::AR::GCModels::GCfilms; + + use utf8; +################################################### +# +# This file translated by : +# Muhammad Bashir Al-Noimi +# Contact me: +# webmaster@hali-sy.com +# bashir.storm@gmail.com +# hali83@cec.sy +# MY Blog: +# http://www.hali-sy.com/blog +# +################################################### +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'مجموعة الأفلام', + Items => 'أفلام', + NewItem => 'فيلم جديد', + + + Id => 'الرقم المعرّف', + Title => 'العنوان', + Date => 'التاريخ', + Time => 'المدّة الزمنية', + Director => 'المخرج', + Country => 'البلد', + MinimumAge => 'أقل عمر', + Genre => 'النوع', + Image => 'صورة', + Original => 'العنوان الأصلي', + Actors => 'الممثلون', + Actor => 'Actor', + Role => 'Role', + Comment => 'تعليقات', + Synopsis => 'الخلاصة', + Seen => 'متى عُرض', + Number => '# مرة', + Format => 'الصيغة', + Region => 'Region', + Identifier => 'Identifier', + Url => 'صفحة الإنترنت', + Audio => 'الصوت', + Video => 'صيغة الفيديو', + Trailer => 'ملف الفيديو', + Serie => 'سلسلة', + Rank => 'الرتبة', + Subtitles => 'الترجمة الثانوية', + Added => 'تاريخ الإضافة', + + SeenYes => 'عًرض', + SeenNo => 'لم يًعرض', + + AgeUnrated => 'لم يتم تقييمه', + AgeAll => 'كل الأعمال', + AgeParent => 'التوجيه الأبوي', + + Main => 'عناصر رئيسية', + General => 'عام', + Details => 'تفاصيل', + + Information => 'معلومات', + Languages => 'لغات', + Encoding => 'ترميز', + + FilterAudienceAge => 'عمر الجمهور', + FilterSeenNo => 'لم يتم عرضه حتى الآن', + FilterSeenYes => 'تم عرضه', + FilterRatingSelect => 'تم تقييمه على الأقل...', + + ExtractSize => 'قياس', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCModels/GCgames.pm b/lib/gcstar/GCLang/AR/GCModels/GCgames.pm new file mode 100644 index 0000000..e23d7eb --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCModels/GCgames.pm @@ -0,0 +1,92 @@ +{ + package GCLang::AR::GCModels::GCgames; + + use utf8; +################################################### +# +# This file translated by : +# Muhammad Bashir Al-Noimi +# Contact me: +# webmaster@hali-sy.com +# bashir.storm@gmail.com +# hali83@cec.sy +# MY Blog: +# http://www.hali-sy.com/blog +# +################################################### +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'مجموعة ألعاب الفيديو', + Items => 'ألعاب', + NewItem => 'لعبة جديدة', + + Id => 'الرقم المعرّف', + Ean => 'EAN', + Name => 'الإسم', + Platform => 'منصة التشغيل', + Players => 'عدد اللاّعبين', + Released => 'تاريخ الإصدار', + Editor => 'المحرّر', + Developer => 'المطوّر', + Genre => 'النوع', + Box => 'صورة العلبة', + Case => 'الحالة', + Manual => 'دليل الإستخدام', + Completion => 'الإكمال (%)', + Executable => 'ملف تنفيذي', + Description => 'الوصف', + Codes => 'شيفرات', + Code => 'شيفرة', + Effect => 'تأثير', + Secrets => 'أسرار', + Screenshots => 'لقطات', + Screenshot1 => 'أول لقطة', + Screenshot2 => 'ثاني لقطة', + Comments => 'تعليقات', + Url => 'صفحة الإنترنت', + Unlockables => 'قابلة لإلغاء الأقفال', + Unlockable => 'قابلة لإلغاء القفل', + Howto => 'كيفية إلغاء القفل', + Exclusive => 'Exclusive', + Resolutions => 'Display resolutions', + InstallationSize => 'Size', + Region => 'Region', + SerialNumber => 'Serial Number', + + General => 'عام', + Details => 'تفاصيل', + Tips => 'تلميحات', + Information => 'معلومات', + + FilterRatingSelect => 'التقييم على الأقل...', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCModels/GCgeneric.pm b/lib/gcstar/GCLang/AR/GCModels/GCgeneric.pm new file mode 100644 index 0000000..a45ec28 --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCModels/GCgeneric.pm @@ -0,0 +1,42 @@ +{ + package GCLang::AR::GCModels::GCgeneric; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + Items => {0 => 'Item', + 1 => 'Item', + X => 'Items' + }, + NewItem => 'New item', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCModels/GCminicars.pm b/lib/gcstar/GCLang/AR/GCModels/GCminicars.pm new file mode 100644 index 0000000..34fe51a --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCModels/GCminicars.pm @@ -0,0 +1,182 @@ +{ + package GCLang::AR::GCModels::GCminicars; + + use utf8; +################################################### +# +# Copyright 2005-2007 Tian +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Mini vehicles collection', + Items => {0 => 'Vehicle', + 1 => 'Vehicle', + X => 'Vehicles', + lowercase1 => 'vehicle', + lowercaseX => 'vehicles' + }, + NewItem => 'New vehicle', + Currency => 'Currency', + +# Main fields + + Main => 'Main information', + + Name => 'Name', + Exchange => 'To be sold or exchanged', + Wanted => 'Wanted', + Rating1 => 'Main rating', + Picture1 => 'Main picture', + Scale => 'Scale', + Manufacturer => 'Manufacturer', + Constructor => 'Constructor', + Type1 => 'Type', + Modele => 'Model', + Version => 'Version', + Color => 'Model color', + Pub => 'Advertisement', + Year => 'Year', + Reference => 'Reference', + Kit => 'In kit form', + Transformation => 'Personal transformation', + Comments1 => 'Comments', + +# Details fields + + Details => 'Details', + + MiscCharacteristics => 'Miscellaneous characteristics', + Material => 'Material', + Molding => 'Molding', + Condition => 'Condition', + Edition => 'Edition', + Collectiontype => 'Collection name', + Serial => 'Series', + Serialnumber => 'Serial number', + Designed => 'Design date', + Madein => 'Manufacture date', + Box1 => 'Kind of box', + Box2 => 'Box description', + Containbox => 'Box contet', + Rating2 => 'Realism', + Rating3 => 'Finish', + Acquisition => 'Acquisition date', + Location => 'Acquisition place', + Buyprice => 'Acquisition price', + Estimate => 'Estimation', + Comments2 => 'Comments', + Decorationset => 'Decoration set', + Characters => 'Characters', + CarFromFilm => 'Movie car', + Filmcar => 'Movie related to the vehicle', + Filmpart => 'Movie part/episode', + Parts => 'Number of parts', + VehiculeDetails => 'Vehicule details', + Detailsparts => 'Details parts', + Detailsdecorations => 'Kind of decorations', + Decorations => 'Number of decorations', + Lwh => 'Length / Width / Height', + Weight => 'Weight', + Framecar => 'Chassis', + Bodycar => 'Bodywork', + Colormirror => 'Model color', + Interior => 'Interior', + Wheels => 'Wheels', + Registrationnumber1 => 'Front registration number', + Registrationnumber2 => 'Back registration number', + RacingCar => 'Racing car', + Course => 'Race', + Courselocation => 'Race place', + Courseyear => 'Race date', + Team => 'Team', + Pilots => 'Pilot(s)', + Copilots => 'Copilot(s)', + Carnumber => 'Vehicle number', + Pub2 => 'Advertisers', + Finishline => 'Finish ranking', + Steeringwheel => 'Position of steering wheel', + + +# Catalogs fields + + Catalogs => 'Catalogs', + + OfficialPicture => 'Official picture', + Barcode => 'Barcode', + Referencemirror => 'Reference', + Year3 => 'Availability date', + CatalogCoverPicture => 'Cover', + CatalogPagePicture => 'Page', + Catalogyear => 'Catalog year', + Catalogedition => 'Catalog edition', + Catalogpage => 'Catalog page', + Catalogprice => 'Catalog price', + Personalref => 'Personal reference', + Websitem => 'Mini vehicle\'s manufacturer website', + Websitec => 'Actual vehicle\'s manufacturer website', + Websiteo => 'Useful link', + Comments3 => 'Comments', + +# Pictures fields + + Pictures => 'Pictures', + + OthersComments => 'General remarks', + OthersDetails => 'Other details', + Top1 => 'Above', + Back1 => 'Below', + AVG => 'Front Left', + AV => 'Front', + AVD => 'Front Right', + G => 'Left', + BOX => 'Box', + D => 'Right', + ARG => 'Back Left', + AR => 'Back', + ARD => 'Back Right', + Others => 'Misc', + +# PanelLending fields + + LendingExplanation => 'Useful exchanges during temporary exhibitions', + PanelLending => 'Lendings (for exhibitions)', + Comments4 => 'Comments', + +# Realmodel fields + + Realmodel => 'Actual vehicle', + + Difference => 'Differences with miniature', + Front2 => 'Front', + Back2 => 'Back', + Comments5 => 'Comments', + + References => 'References', + + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCModels/GCmusics.pm b/lib/gcstar/GCLang/AR/GCModels/GCmusics.pm new file mode 100644 index 0000000..921457f --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCModels/GCmusics.pm @@ -0,0 +1,78 @@ +{ + package GCLang::AR::GCModels::GCmusics; + + use utf8; +################################################### +# +# This file translated by : +# Muhammad Bashir Al-Noimi +# Contact me: +# webmaster@hali-sy.com +# bashir.storm@gmail.com +# hali83@cec.sy +# MY Blog: +# http://www.hali-sy.com/blog +# +################################################### +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'مجموعة الموسيقا', + Items => 'ألبومات', + NewItem => 'ألبوم جديد', + + Unique => 'ISRC/EAN', + Title => 'العنوان', + Cover => 'الغلاف', + Artist => 'الفنّان', + Format => 'الصيغة', + Running => 'وقت التشغيل', + Release => 'تاريخ الإصدار', + Genre => 'النوع', + Origin => 'Origin', + +#For tracks list + Tracks => 'قائمة المسارات', + Number => 'الرقم', + Track => 'العنوان', + Time => 'الزمن', + + Composer => 'الملحّن', + Producer => 'المنتج', + Playlist => 'قائمة القراءة', + Comments => 'تعليقات', + Label => 'تسمية', + Url => 'صفحة الإنترنت', + + General => 'عام', + Details => 'تفاصيل', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCModels/GCperiodicals.pm b/lib/gcstar/GCLang/AR/GCModels/GCperiodicals.pm new file mode 100644 index 0000000..4821839 --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCModels/GCperiodicals.pm @@ -0,0 +1,52 @@ +{ + package GCLang::AR::GCModels::GCperiodicals; + + use utf8; +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Periodicals collection', + Items => {0 => 'Periodical', + 1 => 'Periodical', + X => 'Periodicals'}, + NewItem => 'New periodical', + + Title => 'Title', + Cover => 'Cover', + Periodical => 'Periodical', + Number => 'Number', + Date => 'Date', + Subject => 'Subject', + Articles => 'Articles', + + General => 'General', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCModels/GCsmartcards.pm b/lib/gcstar/GCLang/AR/GCModels/GCsmartcards.pm new file mode 100644 index 0000000..e8b414b --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCModels/GCsmartcards.pm @@ -0,0 +1,108 @@ +{ + package GCLang::AR::GCModels::GCsmartcards; + + use utf8; +################################################### +# +# Copyright 2005-2010 Tian +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Smart card collection', + Items => {0 => 'Smart card', + 1 => 'Smart card', + X => 'Smart cards'}, + NewItem => 'New smart card', + Currency => 'Currency', + + Help => 'Help for fields', + Help1 => 'Help', + +# Traduction des Champs "Main" + + Main => 'The smart card', + + Cover => 'Picture', + + Name => 'Name', + Exchange => 'To be exchanged or sold', + Wanted => 'Wanted', + Rating1 => 'Global rating', + TheSmartCard => 'The smart card, front/back', + + Country => 'Country', + Color => 'Color', + Type1 => 'Card type', + Type2 => 'Chip type', + Dimension => 'Length / Width / Thickness', + + Box => 'Box', + Chip => 'Chip', + Year1 => 'Edition year', + Year2 => 'Validity year', + Condition => 'Condition', + Charge => 'Rechargeable card', + Variety => 'Variety', + + Edition => 'Number of exemplars', + Serial => 'Serial number', + Theme => 'Theme', + + Acquisition => 'Acquired on', + + Catalog0 => 'Catalog', + Catalog1 => 'Phonecote / Infopuce (YT)', + Catalog2 => 'La Cote en Poche', + + Reference0 => 'Reference', + Reference1 => 'Reference Phonecote / Infopuce (YT)', + Reference2 => 'Reference La Cote en Poche', + Reference3 => 'Other reference', + + Quotationnew00 => 'Quotation for new card', + Quotationnew10 => 'Quotation Phonecote / Infopuce (YT)', + Quotationnew20 => 'Quotation La Cote en Poche', + Quotationnew30 => 'Cotation Autre', + Quotationold00 => 'Quotation for used card', + Quotationold10 => 'Quotation Phonecote / Infopuce (YT)', + Quotationold20 => 'Quotation La Cote en Poche', + Quotationold30 => 'Other quotation', + + Title1 => 'Title', + + Unit => 'Units / Minutes number', + + Pressed => 'Impression type', + Location => 'Impression place', + + Comments1 => 'Comments', + + Others => 'Misc.', + Weight => 'Weight', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCModels/GCsoftware.pm b/lib/gcstar/GCLang/AR/GCModels/GCsoftware.pm new file mode 100644 index 0000000..4596fa3 --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCModels/GCsoftware.pm @@ -0,0 +1,84 @@ +{ + package GCLang::AR::GCModels::GCsoftware; + + use utf8; +################################################### +# +# Copyright 2005-2009 Tian +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Computer software collection', + Items => {0 => 'Application', + 1 => 'Application', + X => 'Applications', + lowercase1 => 'application', + lowercaseX => 'applications'}, + NewItem => 'New application', + + Id => 'Id', + Ean => 'EAN', + Name => 'Name', + Platform => 'Platform', + Released => 'Release date', + Homepage => 'Homepage', + Editor => 'Editor', + Developer => 'Developer', + Category => 'Category', + NumberOfCopies => 'Copies', + Price => 'Price', + Box => 'Box picture', + Case => 'Case', + Manual => 'Instruction manual', + Executable => 'Executable', + Description => 'Description', + License => 'License', + Commercial => 'Commercial', + FreewareNoncommercial => 'Freeware (non-commercial use)', + OtherOpenSource => 'Other Open Source', + PublicDomain => 'Public Domain', + OtherLicense => 'Other', + Registration => 'Registration', + RegistrationInfo => 'Registration Info', + RegInfo => 'Registration Info', + RegistrationName => 'Username', + RegistrationNumber => 'Registration Number', + PanelRegistration => 'Registration Info', + RegistrationComments => 'Additional info or comments', + Screenshots => 'Screenshots', + Screenshot1 => 'First screenshot', + Screenshot2 => 'Second screenshot', + Comments => 'Comments', + Url => 'Web page', + General => 'General', + Details => 'Details', + Information => 'Information', + + FilterRatingSelect => 'Rating At _Least...', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCModels/GCstamps.pm b/lib/gcstar/GCLang/AR/GCModels/GCstamps.pm new file mode 100644 index 0000000..70d3b0b --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCModels/GCstamps.pm @@ -0,0 +1,189 @@ +{ + package GCLang::AR::GCModels::GCstamps; + + use utf8; +################################################### +# +# Copyright 2005-2007 Tian +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Stamp collection', + Items => {0 => 'Stamps', + 1 => 'Stamp', + X => 'Stamps'}, + NewItem => 'New stamp', + + General => 'General', + Detail => 'Detail', + Value => 'Value', + Notes => 'Notes', + Views => 'Views', + + Name => 'Name', + Country => 'Country', + Year => 'Year', + Catalog => 'Catalog', + Number => 'Number', + Topic => 'Topic', + Serie => 'Serie', + Designer => 'Designer', + Engraver => 'Engraver', + Type => 'Type', + Format => 'Format', + Description => 'Description', + Color => 'Color', + Gum => 'Gum', + Paper => 'Paper', + Perforation => 'Perforation', + PerforationSize => 'Perforation size', + CancellationType => 'Cancellation type', + Comments => 'Comments', + PrintingVariety => 'Printing variety', + IssueDate => 'Issue date', + EndOfIssue => 'End of issue', + Issue => 'Issue', + Grade => 'Grade', + Status => 'Status', + Adjusted => 'Adjusted', + Cancellation => 'Cancellation', + CancellationCondition => 'Cancellation condition', + GumCondition => 'Gum condition', + PerforationCondition => 'Perforation condition', + ConditionNotes => 'Condition notes', + Error => 'Error', + ErrorNotes => 'Error notes', + FaceValue => 'Face value', + MintValue => 'Mint value', + UsedValue => 'Used value', + PurchasedDate => 'Purchased date', + Quantity => 'Quantity', + History => 'History', + Picture1 => 'Picture 1', + Picture2 => 'Picture 2', + Picture3 => 'Picture 3', + + AirMail => 'Air mail', + MilitaryStamp => 'Military stamp', + Official => 'Official', + PostageDue => 'Postage due', + Regular => 'Regular', + Revenue => 'Revenue', + SpecialDelivery => 'Special delivery', + StrikeStamp => 'Strike stamp', + TelegraphStamp => 'Telegraph stamp', + WarStamp => 'War stamp', + WarTaxStamp => 'War tax stamp', + + Booklet => 'Booklet', + BookletPane => 'Booklet Pane', + Card => 'Card', + Coil => 'Coil', + Envelope => 'Envelope', + FirstDayCover => 'First Day Cover', + Sheet => 'Sheet', + Single => 'Single', + + Heliogravure => 'Heliogravure', + Lithography => 'Lithography', + Offset => 'Offset', + Photogravure => 'Photogravure', + RecessPrinting => 'Recess printing', + Typography => 'Typography', + + OriginalGum => 'Original gum', + Ungummed => 'Ungummed', + Regummed => 'Regummed', + + Chalky => 'Chalky', + ChinaPaper => 'China paper', + Coarsed => 'Coarsed', + Glossy => 'Glossy', + Granite => 'Granite', + Laid => 'Laid', + Manila => 'Manila', + Native => 'Native', + Pelure => 'Pelure', + Quadrille => 'Quadrille', + Ribbed => 'Ribbed', + Rice => 'Rice', + Silk => 'Silk', + Smoothed => 'Smoothed', + Thick => 'Thick', + Thin => 'Thin', + Wove => 'Wove', + + CoarsedPerforation => 'Coarsed perforation', + CombPerforation => 'Comb perforation', + CompoundPerforation => 'Compound perforation', + DamagedPerforation => 'Damaged perforation', + DoublePerforation => 'Double perforation', + HarrowPerforation => 'Harrow perforation', + LinePerforation => 'Line perforation', + NoPerforation => 'No perforation', + + CancellationToOrder => 'Cancellation To Order', + FancyCancellation => 'Fancy cancellation', + FirstDayCancellation => 'First Day cancellation', + NumeralCancellation => 'Numeral cancellation', + PenMarked => 'Pen-Marked', + RailroadCancellation => 'Railroad cancellation', + SpecialCancellation => 'Special cancellation', + + Superb => 'Superb', + ExtraFine => 'Extra-Fine', + VeryFine => 'Very fine', + FineVeryFine => 'Fine/Very fine', + Fine => 'Fine', + Average => 'Average', + Poor => 'Poor', + + Owned => 'Owned', + Ordered => 'Ordered', + Sold => 'Sold', + ToSell => 'To sell', + Wanted => 'Wanted', + + LightCancellation => 'Light cancellation', + HeavyCancellation => 'Heavy cancellation', + ModerateCancellation => 'Moderate cancellation', + + MintNeverHinged => 'Mint never hinged', + MintLightHinged => 'Mint light hinged', + HingedRemnant => 'Hinged remnant', + HeavilyHinged => 'Heavily hinged', + LargePartOriginalGum => 'Large part original gum', + SmallPartOriginalGum => 'Small part original gum', + NoGum => 'No gum', + + Perfect => 'Perfect', + VeryNice => 'Very nice', + Nice => 'Nice', + Incomplete => 'Incomplete', + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCModels/GCwines.pm b/lib/gcstar/GCLang/AR/GCModels/GCwines.pm new file mode 100644 index 0000000..db10bdd --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCModels/GCwines.pm @@ -0,0 +1,63 @@ +{ + package GCLang::AR::GCModels::GCwines; + + use utf8; + +# Copyright 2007 Yves Martin + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + CollectionDescription => 'Wines collection', + Items => 'Wines', + NewItem => 'New wine', + + Name => 'Name', + Designation => 'Designation', + Vintage => 'Vintage', + Vineyard => 'Vineyard', + Type => 'Type', + Grapes => 'Grapes', + Soil => 'Soil', + Producer => 'Producer', + Country => 'Country', + Volume => 'Volume (ml)', + Alcohol => 'Alcohol (%)', + Medal => 'Medal/Honour', + + Storage => 'Storage', + Location => 'Location', + ShelfIndex => 'Index', + Quantity => 'Quantity', + Acquisition => 'Acquisition', + PurchaseDate => 'Purchase date', + PurchasePrice => 'Purchase price', + Gift => 'Gift', + BottleLabel => 'Bottle label', + Website => 'Reference on the web', + + Tasted => 'Tasted', + Comments => 'Comments', + Serving => 'Serving', + TastingField => 'Testing notes', + + General => 'General', + Details => 'Details', + Tasting => 'Tasting', + + TastedNo => 'Non tasted', + TastedYes => 'Tasted', + + FilterRange => 'Range', + FilterTastedNo => '_Not yet tasted', + FilterTastedYes => 'Already _tasted', + FilterRatingSelect => 'Rating at _least...' + + ); +} + +1; diff --git a/lib/gcstar/GCLang/AR/GCstar.pm b/lib/gcstar/GCLang/AR/GCstar.pm new file mode 100644 index 0000000..f5bdd58 --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCstar.pm @@ -0,0 +1,692 @@ +{ + package GCLang::AR; + + use utf8; +################################################### +# +# This file translated by : +# Muhammad Bashir Al-Noimi +# Contact me: +# mhdbnoimi@gmail.com +# bashir.storm@gmail.com +# mbnoimi@gmail.com +# MY Blog: +# http://mbnoimi.net/ +# +################################################### +# +# Copyright 2005-2010 Christian Jodar +# +# This file is part of GCstar. +# +# GCstar is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# GCstar is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCstar; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA +# +################################################### + +# +# MODEL-SPECIFIC CODES +# +# Some strings are modified to include the model-specific item type. Inside these strings, +# any strings contained in {}'s will be replaced by the corresponding string from +# the Item collection in the model language file. For example: +# +# {lowercase1} = {Items}->{lowercase1} (item type, singular, all lowercase). EG: game, movie, book +# {1} = {Items}->{1} (item type, singular, with first letter uppercase). EG: Game, Movie, Book +# {lowercaseX} = {Items}->{lowercaseX} (item type, multiple, lowercase). EG: games, movies, books +# {X} = {Items}->{X} (item type, multiple, with first letter uppercase). EG Games, Movies, Books +# +# GCstar will automatically convert these codes to the relevant translated string. You can +# use these codes in any string marked by a "Accepts model codes" comment. +# + + use strict; + use base 'Exporter'; + + our @EXPORT = qw(%lang); + + our %lang = ( + + 'LangName' => 'Arabic عربي', + + 'Separator' => ': ', + + 'Warning' => 'تحذير: + +المعلومات التي يتم تحميلها من الإنترنت (عن طريق +ملحقات البحث) تستعمل فقط من أجل الإستعمال الشخصي. + +من أجل تحديد موقع الإنترنت المناسب لتحميل البيانات، بإمكانك +إستعمال الزر الواقع تحت تفاصيل العنصر .', + + + 'AllItemsFiltered' => 'لم يتم العثور على أي عنصر من خلال معيار البحث الذي قمت بتخصيصه', # Accepts model codes + +#Installation + 'InstallDirInfo' => 'تم تنصيبه ضمن ', + 'InstallMandatory' => 'مكونات أساسية', + 'InstallOptional' => 'مكونات إختيارية', + 'InstallErrorMissing' => 'خطأ : مكونات بيرل التالية يجب أن يتم تنصيبها: ', + 'InstallPrompt' => 'مجلد التنصيب [/usr/local]: ', + 'InstallEnd' => 'نهاية التنصيب', + 'InstallNoError' => 'لا توجد أخطاء', + 'InstallLaunch' => 'لتشغيل البرنامج يجب إستدعاء نسخة واحدة ', + 'InstallDirectory' => 'المجلد الرئيسي', + 'InstallTitle' => 'تنصيب جي سي ستار', + 'InstallDependencies' => 'الإعتمادية', + 'InstallPath' => 'مسار', + 'InstallOptions' => 'خيارات', + 'InstallSelectDirectory' => 'قم بتحديد مجلد التنصيب', + 'InstallWithClean' => 'إزالة الملفات الموجودة ضمن مجلد التنصيب', + 'InstallWithMenu' => 'إضافة جي سي ستار لقائمة البرامج', + 'InstallNoPermission' => 'خطأ : ليس لديك سماحية الكتابة ضمن المجلد المحدد', + 'InstallMissingMandatory' => 'إعتماديات أساسية مفقودة. ليس بإمكانك تنصيب جي سي ستار إلا بعد إضافة الإعتماديات الرئيسية لنظامك.', + 'InstallMissingOptional' => 'بعض الإعتماديات الإختيارية مفقودة كما هو موضح أدناه. يمكن تنصيب جي سي ستار لكن بعض الميزات لن تكون متوفرة للعمل.', + 'InstallMissingNone' => 'لا توجد إعتماديات مفقودة. بإمكانك الإستمرار و تنصيب جي سي ستار.', + 'InstallOK' => 'موافق', + 'InstallMissing' => 'مفقود', + 'InstallMissingFor' => 'مفقود', + 'InstallCleanDirectory' => 'إزالة ملفات جي سي ستار من المجلد: ', + 'InstallCopyDirectory' => 'نسخ الملفات للمجلد: ', + 'InstallCopyDesktop' => 'نسخ ملف سطح المكتب إلى: ', + +#Update + 'UpdateUseProxy' => 'البروكسي الذي سيتم إستعماله (قم بالنقر على Enter في حال عدم وجود بروكسي): ', + 'UpdateNoPermission' => 'لا توجد سماحية للكتابة ضمن هذا المجلّد ', + 'UpdateNone' => 'لم يتم العثور على تحديث جديد', + 'UpdateFileNotFound' => 'لم يتم العثور على الملف', + +#Splash + 'SplashInit' => 'تهيئة', + 'SplashLoad' => 'تحميل المجموعات', + 'SplashDisplay' => 'عرض المجموعات', + 'SplashSort' => 'ترتيب المجموعات', + 'SplashDone' => 'جاهز', + +#Import from GCfilms + 'GCfilmsImportQuestion' => 'يبدو أنك كنت تستعمل جي سي فيلم من قبل. هل ترغب بإستيراد البيانات من جي سي فيلم إلى جي سي ستار؟', + 'GCfilmsImportOptions' => 'إعدادات', + 'GCfilmsImportData' => 'قائمة الأفلام', + +#Menus + 'MenuFile' => '_ملف', + 'MenuNewList' => '_مجموعة جديدة', + 'MenuStats' => 'Statistics', + 'MenuHistory' => '_المجموعات السابقة', + 'MenuLend' => 'إظهار العناصر _المستعرضة سابقاً', # Accepts model codes + 'MenuImport' => '_إستيراد', + 'MenuExport' => '_تصدير', + 'MenuAddItem' => '_Add Items', # Accepts model codes + + 'MenuEdit' => '_تحرير', + 'MenuDuplicate' => 'مضاعفة العنصر', # Accepts model codes + 'MenuDuplicatePlural' => 'Du_plicate Items', # Accepts model codes + 'MenuEditSelectAllItems' => 'Select _All Items', # Accepts model codes + 'MenuEditDeleteCurrent' => '_حذف العنصر', # Accepts model codes + 'MenuEditDeleteCurrentPlural' => '_Remove Items', # Accepts model codes + 'MenuEditFields' => '_تغيير حقول المجموعة', + 'MenuEditLockItems' => '_إقفال المجموعة', + + 'MenuDisplay' => 'ت_صفية', + 'MenuSavedSearches' => 'حفظ البحث', + 'MenuSavedSearchesSave' => 'حفظ البحث الحالي', + 'MenuSavedSearchesEdit' => 'تعديل بحث محفوظ', + 'MenuAdvancedSearch' => 'ب_حث متقدّم', + 'MenuViewAllItems' => 'عرض _كل العناصر', # Accepts model codes + 'MenuNoFilter' => '_أي شيء', + + 'MenuConfiguration' => '_إعدادات', + 'MenuDisplayMenu' => 'Display', + 'MenuDisplayFullScreen' => 'Full screen', + 'MenuDisplayMenuBar' => 'Menus', + 'MenuDisplayToolBar' => 'Toolbar', + 'MenuDisplayStatusBar' => 'Bottom bar', + 'MenuDisplayOptions' => '_المعلومات المعروضة', + 'MenuBorrowers' => '_إستعارة', + 'MenuToolbarConfiguration' => '_عناصر شريط الأدوات', + 'MenuDefaultValues' => 'Default values for new item', # Accepts model codes + 'MenuGenresConversion' => 'نم_ط التحويل', + + 'MenuBookmarks' => '_محفوظات', + 'MenuBookmarksAdd' => '_أضف الجموعة الحالية', + 'MenuBookmarksEdit' => '_تحرير المحفوظات', + + 'MenuHelp' => '_مساعدة', + 'MenuHelpContent' => '_المحتوى', + 'MenuAllPlugins' => 'عرض الملحقات', + 'MenuBugReport' => 'الإبلاغ عن خطأ', + 'MenuAbout' => '_حول جي سي ستار', + + 'MenuNewWindow' => 'عرض العنصر بنافذة _جديدة', # Accepts model codes + 'MenuNewWindowPlural' => 'Show Items in _New Window', # Accepts model codes + + 'ContextExpandAll' => 'توسيع الكل', + 'ContextCollapseAll' => 'طي الكل', + 'ContextChooseImage' => 'قم بإختيار صورة', + 'ContextOpenWith' => 'فتح بواسطة', + 'ContextImageEditor' => 'محرر الصور', + 'ContextImgFront' => 'الواجهة', + 'ContextImgBack' => 'الخلفية', + 'ContextChooseFile' => 'Choose a File', + 'ContextChooseFolder' => 'Choose a Folder', + + 'DialogEnterNumber' => 'قم بإدخال قيمة', + + 'RemoveConfirm' => 'هل أنت متأكد من حذف هذا العنصر؟', # Accepts model codes + 'RemoveConfirmPlural' => 'Do you really want to remove these items?', # Accepts model codes + + 'DefaultNewItem' => 'عنصر جديد', + 'NewItemTooltip' => 'إضافة عنصر جديد', + 'NoItemFound' => 'لم يتم العثور على أي شيء. هل تود البحث ضمن موقع آخر؟', + 'OpenList' => 'قم بتحديد مجموعة', + 'SaveList' => 'قم بتحديد مسار حفظ المجموعة', + 'SaveListTooltip' => 'حفظ المجموعة الحالية', + 'SaveUnsavedChanges' => 'لم يتم حفظ التعديلات على مجموعتك لم تُحفظ. هل تريد حفظ التعديلات؟', + 'SaveDontSave' => 'لا تحفظ', + 'PreferencesTooltip' => 'تفضيلات البرنامج', + 'ViewTooltip' => 'تغيير عرض المجموعة', + 'PlayTooltip' => 'قراءة ملف الفيديو المرتبط بالعنصر', # Accepts model codes + 'PlayFileNotFound' => 'الملف الذي سيتم إستدعاؤه غير موجود في هذا المسار:', + 'PlayRetry' => 'إعادة القراءة', + + 'StatusSave' => 'الحفظ جاري...', + 'StatusLoad' => 'التحميل جاري...', + 'StatusSearch' => 'البحث جاري...', + 'StatusGetInfo' => 'الحصول على المعلومات...', + 'StatusGetImage' => 'الحصول على الصورة...', + + 'SaveError' => 'غير قادر على حفظ قائمة العناصر. من فضلك قم بفحص سماحيات الكتابة على القرص', + 'OpenError' => 'غير قادر على فتح قائمة العناصر. من فضلك قم بفحص سماحيات القرص', + 'OpenFormatError' => 'غير قادر على فتح قائمة العناصر. تأكد من صحة التنسيق', + 'OpenVersionWarning' => 'المجموعة تم حفظها بواسطة عدة إصدارات من جي سي ستار. إذا قمت بحفظها هنالك إحتمال أن تفقد بعض البيانات.', + 'OpenVersionQuestion' => 'هل لا تزال ترغب بالإستمرار؟', + 'ImageError' => 'المسار المحدّد من أجل حفظ الصوّر غير صالح. من فضلك قم بتحديد مسار آخر', + 'OptionsCreationError'=> 'غير قادر على إنشاء ملف الخيارات: ', + 'OptionsOpenError'=> 'غير قادر على فتح ملف الخيارات: ', + 'OptionsSaveError'=> 'غير قادر على حفظ ملف الخيارات: ', + 'ErrorModelNotFound' => 'النموذج غير موجود: ', + 'ErrorModelUserDir' => 'النماذج المعرفة من قبل المستخدم موجودة ضمن: ', + + 'RandomTooltip' => 'ما الذي ترغب برؤيته هذا المساء؟', + 'RandomError'=> 'لم يتم تحديد أي عنصر', # Accepts model codes + 'RandomEnd'=> 'لا توجد عناصر أكثر من ذلك', # Accepts model codes + 'RandomNextTip'=> 'الإقتراح التالي', + 'RandomOkTip'=> 'قبول هذا العنصر', + + 'AboutTitle' => 'حول جي سي ستار', + 'AboutDesc' => 'لإدارة المجموعات', + 'AboutVersion' => 'إصدار', + 'AboutTeam' => 'فريق', + 'AboutWho' => 'مدير المشروع، مبرمج: Christian Jodar (Tian) +مبرمج: Nyall Dawson (Zombiepig) +مبرمج: TPF +مبرمج: Adolfo González +', + 'AboutLicense' => 'المشروع تم تطويره و توزيعه وفق رخصة البرامج مفتوحة المصدر GPL +Logos Copyright le Spektre', + 'AboutTranslation' => 'دعم اللغة العربية: محمد بشير النعيمي +http://mbnoimi.net/ +mhdbnoimi@gmail.com +bashir.storm@gmail.com +mbnoimi@gmail.com', + 'AboutDesign' => 'Łukasz Kowalczk (Qoolman): Skin Designer + تم أنجاز الشعار و تصميم الويب من قبل le Spektre', + + 'ToolbarRandom' => 'هذه اللّيلة', + + 'UnsavedCollection' => 'مجموعة لم يتم حفظها', + 'ModelsSelect' => 'حدّد نوع المجموعة', + 'ModelsPersonal' => 'نماذج شخصية', + 'ModelsDefault' => 'نماذج إفتراضية', + 'ModelsList' => 'تعريف المجموعة', + 'ModelSettings' => 'إعدادات المجموعة', + 'ModelNewType' => 'مجموعة جديدة', + 'ModelName' => 'إسم المجموعة: ', + 'ModelFields' => 'حقول', + 'ModelOptions' => 'خيارات', + 'ModelFilters' => 'مرشحات تصفية', + 'ModelNewField' => 'حقل جديد', + 'ModelFieldInformation' => 'معلومات', + 'ModelFieldName' => 'تسمية:', + 'ModelFieldType' => 'نوع:', + 'ModelFieldGroup' => 'مجموعة:', + 'ModelFieldValues' => 'القيم', + 'ModelFieldInit' => 'إفتراضي:', + 'ModelFieldMin' => 'الحد الأدنى:', + 'ModelFieldMax' => 'الحد الأعلى:', + 'ModelFieldList' => 'قائمة القيم:', + 'ModelFieldListLegend' => 'كل قيمة تفصل عن الأخرى بفاصلة', + 'ModelFieldDisplayAs' => 'عرض بهيئة: ', + 'ModelFieldDisplayAsText' => 'نص', + 'ModelFieldDisplayAsGraphical' => 'عنصر تقييم', + 'ModelFieldTypeShortText' => 'نص قصير', + 'ModelFieldTypeLongText' => 'نص طويل', + 'ModelFieldTypeYesNo' => 'نعم/لا', + 'ModelFieldTypeNumber' => 'عدد', + 'ModelFieldTypeDate' => 'تاريخ', + 'ModelFieldTypeOptions' => 'قائمة قيم ذات تعريف مسبق', + 'ModelFieldTypeImage' => 'صورة', + 'ModelFieldTypeSingleList' => 'قائمة بسيطة', + 'ModelFieldTypeFile' => 'ملف', + 'ModelFieldTypeFormatted' => 'يعتمد على الحقول الأخرى', + 'ModelFieldParameters' => 'وسائط', + 'ModelFieldHasHistory' => 'إستعمال المحفوظات', + 'ModelFieldFlat' => 'عرض ضمن صفّ واحد', + 'ModelFieldStep' => 'خطوة الزيادة:', + 'ModelFieldFileFormat' => 'تنسيق الملف:', + 'ModelFieldFileFile' => 'ملف بسيط', + 'ModelFieldFileImage' => 'صورة', + 'ModelFieldFileVideo' => 'فيديو', + 'ModelFieldFileAudio' => 'صوت', + 'ModelFieldFileProgram' => 'برنامج', + 'ModelFieldFileUrl' => 'رابط', + 'ModelFieldFileEbook' => 'Ebook', + 'ModelOptionsFields' => 'حقول للأستعمال', + 'ModelOptionsFieldsAuto' => 'تلقائي', + 'ModelOptionsFieldsNone' => 'لا شيء', + 'ModelOptionsFieldsTitle' => 'حسب العنوان', + 'ModelOptionsFieldsId' => 'حسب المعرّف', + 'ModelOptionsFieldsCover' => 'حسب الغلاف', + 'ModelOptionsFieldsPlay' => 'من أجل زر القراءة', + 'ModelCollectionSettings' => 'إعدادات المجموعة', + 'ModelCollectionSettingsLending' => 'إمكانية إعارة العناصر', + 'ModelCollectionSettingsTagging' => 'عناصر يسمح بوسمها', + 'ModelFilterActivated' => 'عرض ضمن صندوق البحث', + 'ModelFilterComparison' => 'مقارنة', + 'ModelFilterContain' => 'يحتوي', + 'ModelFilterDoesNotContain' => 'لا يحتوي على', + 'ModelFilterRegexp' => 'تعبير منتظم', + 'ModelFilterRange' => 'مجال', + 'ModelFilterNumeric' => 'المقارنة عددية', + 'ModelFilterQuick' => 'إنشاء تصفية سريعة', + 'ModelTooltipName' => 'إستعمل إسماً من أجل إعادة إستعمال هذا النموذج لمجموعات أخرى. في حال كان فارغاً، الإعدادات سيتم تخزينها مباشرة +ضمن ملف المجموعة نفسه', + 'ModelTooltipLabel' => 'إسم الحقل كما سيتم إظهاره', + 'ModelTooltipGroup' => 'يستعمل من أجل تجميع الحقول. جميع العناصر التي لا تحتوي على قيم سيتم تجميعها ضمن مجموعة إفتراضية', + 'ModelTooltipHistory' => 'القيم المدخلة سابقاً سيتم تخزينها ضمن قائمة مرتبطة بالحقل', + 'ModelTooltipFormat' => 'تستعمل هذه الصيغة لتخصيص طريقة فتح الملف بإستعمال زر القراءة', + 'ModelTooltipLending' => 'سيتم إضافة بعض الحقول من أجل إدارة الإستعارة', + 'ModelTooltipTagging' => 'إضافة بعض الحقول من أجل إدارة الوسوم', + 'ModelTooltipNumeric' => 'سيتم معاملة جميع المقارنات على أنها أعداد', + 'ModelTooltipQuick' => 'سيتم إضافة قائمة فرعية ضمن قائمة التصفية', + + 'ResultsTitle' => 'حدد عنصر', # Accepts model codes + 'ResultsNextTip' => 'البحث ضمن الموقع', + 'ResultsPreview' => 'معاينة', + 'ResultsInfo' => 'بإمكانك إضافة عدة عناصر للمجموعة عن طريق النقر المستمر على زر Ctrl أو Shift ثم إختيار العنصر', # Accepts model codes + + 'OptionsTitle' => 'التفضيلات', + 'OptionsExpertMode' => 'متقدّم', + 'OptionsPrograms' => 'تخصيص التطبيقات الإفتراضية ضمن البرنامج، سيتم إستعمال إفتراضيات النظام في حال ترك الحقل فارغاً', + 'OptionsBrowser' => 'متصفّح الإنترنت', + 'OptionsPlayer' => 'قارئ الفيديو', + 'OptionsAudio' => 'قارئ الصوت', + 'OptionsImageEditor' => 'محرر الصور', + 'OptionsCdDevice' => 'جهاز القرص المدمج', + 'OptionsImages' => 'مجلد الصوّر', + 'OptionsUseRelativePaths' => 'إستعمال المسارات النسبية من أجل الصوّر', + 'OptionsLayout' => 'تخطيط العرض', + 'OptionsStatus' => 'عرض شريط الحالة', + 'OptionsUseStars' => 'إستعمال النجوم من أجل عرض التقييم', + 'OptionsWarning' => 'تحذير: جميع التعديلات ستظهر عند إعادة تشغيل البرنامج، و لن تظهر مباشرة الآن', + 'OptionsRemoveConfirm' => 'إظهار رسالة تأكيد حذف العنصر', + 'OptionsAutoSave' => 'حفظ المجموعة بشكل تلقائي', + 'OptionsAutoLoad' => 'فتح المجموعة السابقة عند بدء تشغيل البرنامج', + 'OptionsSplash' => 'عرض الشاشة الترحيبية', + 'OptionsTearoffMenus' => 'تمكين تثبيت القوائم', + 'OptionsSpellCheck' => 'إستعمال المدقق الإملائي ضمن حقول النص الطويلة', + 'OptionsProgramTitle' => 'حدد البرنامج الذي سيتم إستعماله', + 'OptionsPlugins' => 'الموقع الذي سيتم جلب البيانات منه', + 'OptionsAskPlugins' => 'سؤال جميع المواقع', + 'OptionsPluginsMulti' => 'عدد معيّن من المواقع', + 'OptionsPluginsMultiAsk' => 'سؤال عدد معين من المواقع', + 'OptionsPluginsMultiPerField' => 'Many sites (per field)', + 'OptionsPluginsMultiPerFieldWindowTitle' => 'Many sites per field order selection', + 'OptionsPluginsMultiPerFieldDesc' => 'For each field we will fill the field with the first non empty information beginning from left', + 'OptionsPluginsMultiPerFieldFirst' => 'First', + 'OptionsPluginsMultiPerFieldLast' => 'Last', + 'OptionsPluginsMultiPerFieldRemove' => 'Remove', + 'OptionsPluginsMultiPerFieldClearSelected' => 'Empty selected field list', + 'OptionsPluginsList' => 'تخصيص قائمة المواقع', + 'OptionsAskImport' => 'حدد الحقول التي سيتم إستيرادها', + 'OptionsProxy' => 'إستعمل البروكسي', + 'OptionsCookieJar' => 'إستعمال ملف الكوكي', + 'OptionsLang' => 'لغة', + 'OptionsMain' => 'عام', + 'OptionsPaths' => 'مسارات', + 'OptionsInternet' => 'إنترنت', + 'OptionsConveniences' => 'ميّزات', + 'OptionsDisplay' => 'عرض', + 'OptionsToolbar' => 'شريط الأدوات', + 'OptionsToolbars' => {0 => 'بلا', 1 => 'صغير', 2 => 'كبير'}, + 'OptionsToolbarPosition' => 'توضّع', + 'OptionsToolbarPositions' => {0 => 'في الأعلى', 1 => 'في الأسفل', 2 => 'في اليسار', 3 => 'في اليمين'}, + 'OptionsExpandersMode' => 'طريقة إحتواء العناصر الكبيرة', + 'OptionsExpandersModes' => {'asis' => 'لا تفعل شيء', 'cut' => 'إقتطاع', 'wrap' => 'إلتفاف السطر'}, + 'OptionsDateFormat' => 'صيغة التاريخ', + 'OptionsDateFormatTooltip' => 'صيغة التاريخ. القيمة الإفتراضية هي: %d/%m/%Y', + 'OptionsView' => 'قائمة العناصر', + 'OptionsViews' => {0 => 'نص', 1 => 'صورة', 2 => 'تفاصيل'}, + 'OptionsColumns' => 'أعمدة', + 'OptionsMailer' => 'إرسال البريد الإلكتروني بواسطة', + 'OptionsSMTP' => 'الملقم', + 'OptionsFrom' => 'عنوان بريدك الإلكتروني', + + 'OptionsTransform' => 'وضع مقطع التعريف بنهاية العناوين', + 'OptionsArticles' => 'مقطع التعريف (كل مقطع مفصول عن الآخر بفاصلة)', + 'OptionsSearchStop' => 'السماح بإحباط عملية البحث', + 'OptionsBigPics' => 'إستعمال الصور بقياس كبير في حال توفرهم', + + 'OptionsAlwaysOriginal' => 'استعمل العنوان الرئيسي كعنوان أصلي إن لم يتم تخصيصه', + 'OptionsRestoreAccelerators' => 'إستعادة الإختصارات الإفتراضية', + 'OptionsHistory' => 'حجم المحفوظات', + 'OptionsClearHistory' => 'مسح المحفوظات', + 'OptionsStyle' => 'مظهرية العرض', + 'OptionsDontAsk' => 'لا تسألني مرة أخرى', + 'OptionsPathProgramsGroup' => 'تطبيقات', + 'OptionsProgramsSystem' => 'إستعمال البرامج المعرفة من قبل النظام', + 'OptionsProgramsUser' => 'إستعمال البرامج المعرفة من قبل المستخدم', + 'OptionsProgramsSet' => 'تخصيص البرامج', + 'OptionsPathImagesGroup' => 'صور', + 'OptionsInternetDataGroup' => 'استيراد البيانات', + 'OptionsInternetSettingsGroup' => 'إعدادات', + 'OptionsDisplayInformationGroup' => 'عرض المعلومات', + + 'OptionsDisplayArticlesGroup' => 'مقاطع التعريف', + 'OptionsImagesDisplayGroup' => 'عرض', + 'OptionsImagesStyleGroup' => 'نمط', + 'OptionsDetailedPreferencesGroup' => 'تفضيلات', +#0 + 'OptionsFeaturesConveniencesGroup' => 'وسائل الراحة', + 'OptionsPicturesFormat' => 'البادئة التي ستستعمل للصوّر', + 'OptionsPicturesFormatInternal' => 'gcstar__', + 'OptionsPicturesFormatTitle' => 'عنوان أو اسم العنصر المرتبط', + 'OptionsPicturesWorkingDir' => 'الصيغة %WORKING_DIR% . سيتم إستبدالها بمجلد المجموعة (تستعمل فقط في بداية المسار)', + 'OptionsPicturesFileBase' => 'الصيغة %FILE_BASE% سيتم إستبدالها بواسطة إسم ملف المجموعة دون اللاحقة (.gcs)', + 'OptionsPicturesWorkingDirError' => 'الصيغة %WORKING_DIR% يمكن إستعمالها فقط في بداية المسار للصور', + 'OptionsConfigureMailers' => 'تهيئة برامج البريد الإلكتروني', + + 'ImagesOptionsButton' => 'إعدادات', + 'ImagesOptionsTitle' => 'إعدادات قائمة الصوّر', + 'ImagesOptionsSelectColor' => 'حدد لون', + 'ImagesOptionsUseOverlays' => 'عرض ضمن إطار زجاجي', + 'ImagesOptionsBg' => 'خلفية', + 'ImagesOptionsBgPicture' => 'إستعمل صورة الخلفية', + 'ImagesOptionsFg'=> 'تحديد', + 'ImagesOptionsBgTooltip' => 'تغيير لون الخلفية', + 'ImagesOptionsFgTooltip'=> 'تغيير لون التحديد', + 'ImagesOptionsResizeImgList' => 'تغيير عدد الأعمدة بشكل تلقائي', + 'ImagesOptionsAnimateImgList' => 'Use animations', + 'ImagesOptionsSizeLabel' => 'حجم', + 'ImagesOptionsSizeList' => {0 => 'صغير جداً', 1 => 'صغير', 2 => 'متوسط', 3 => 'كبير', 4 => 'كبير جداً'}, + 'ImagesOptionsSizeTooltip' => 'حدد حجم الصورة', + + 'DetailedOptionsTitle' => 'إعدادات قائمة تفاصيل', + 'DetailedOptionsImageSize' => 'قياس الصوّر', + 'DetailedOptionsGroupItems' => 'تجميع العناصر بواسطة', + 'DetailedOptionsSecondarySort' => 'ترتيب الحقول الفرعية', + 'DetailedOptionsFields' => 'حدد التي الحقول التي سيتم عرضها', + 'DetailedOptionsGroupedFirst' => 'فرز العناصر الغير مجمّعة', + 'DetailedOptionsAddCount' => 'إضافة عدد العناصر ضمن التصنيفات', + 'ExtractButton' => 'معلومات', + 'ExtractTitle' => 'معلومات الملف', + 'ExtractImport' => 'إستعمل القيم', + + 'FieldsListOpen' => 'فتح قائمة الحقول من ملف', + 'FieldsListSave' => 'حفظ قائمة الحقول لملف', + 'FieldsListError' => 'لا يمكن إستعمال قائمة الحقول مع هذا النوع من المجموعات', + 'FieldsListIgnore' => '--- تجاهل', + + 'ExportTitle' => 'تصدير قائمة العناصر', + 'ExportFilter' => 'تصدير العناصر المعروضة فقط', + 'ExportFieldsTitle' => 'حقول سيتم تصديرها', + 'ExportFieldsTip' => 'حدد الحقول التي تود تصديرها', + 'ExportWithPictures' => 'نسخ الصّور لمجلّد فرعي', + 'ExportSortBy' => 'ترتيب حسب', + 'ExportOrder' => 'ترتيب', + + 'ImportListTitle' => 'إستيراد قائمة عناصر أخرى', + 'ImportExportData' => 'بيانات', + 'ImportExportFile' => 'ملف', + 'ImportExportFieldsUnused' => 'حقول عير مستعملة', + 'ImportExportFieldsUsed' => 'حقول مستعملة', + 'ImportExportFieldsFill' => 'إضافة الكل', + 'ImportExportFieldsClear' => 'إزالة الكل', + 'ImportExportFieldsEmpty' => 'يجب تحديد حقل واحد على الأقل', + 'ImportExportFileEmpty' => 'يجب تخصيص إسم الملف', + 'ImportFieldsTitle' => 'حقول سيتم إستيرادها', + 'ImportFieldsTip' => 'حدد الحقول التي تريد إستيرادها', + 'ImportNewList' => 'إنشاء مجموعة جديدة', + 'ImportCurrentList' => 'إضافة للمجموعة الحالية', + 'ImportDropError' => 'حدث خطأ أثناء فتح الملف. القائمة السابقة سيعاد تحميلها من جديد', + 'ImportGenerateId' => 'إنشاء رقم معرّف من أجل كل عنصر', + + 'FileChooserOpenFile' => 'قم بتحديد ملف ليتم إستعاله', + 'FileChooserDirectory' => 'مجلد', + 'FileChooserOpenDirectory' => 'حدد مجلد', + 'FileChooserOverwrite' => 'الملف موجود مسبقاً. هل تود إستبداله؟', + 'FileAllFiles' => 'All Files', + 'FileVideoFiles' => 'Video Files', + 'FileEbookFiles' => 'Ebook Files', + 'FileAudioFiles' => 'Audio Files', + 'FileGCstarFiles' => 'GCstar Collections', + + #Some default panels + 'PanelCompact' => 'مدمج', + 'PanelReadOnly' => 'للقراءة فقط', + 'PanelForm' => 'صفحات', + + 'PanelSearchButton' => 'جلب المعلومات', + 'PanelSearchTip' => 'البحث بالإنترنت عن المعلومات التي تحمل هذا الإسم', + 'PanelSearchContextChooseOne' => 'Choose a site ...', + 'PanelSearchContextMultiSite' => 'Use "Many sites"', + 'PanelSearchContextMultiSitePerField' => 'Use "Many sites per field"', + 'PanelSearchContextOptions' => 'Change options ...', + 'PanelImageTipOpen' => 'إنقر على الصورة من أجل تحديد واحدة أخرى ', + 'PanelImageTipView' => ' إنقر على الصورة من أجل مشاهدة القياس الأصلي', + 'PanelImageTipMenu' => ' إنقر على الزر الأيمن للفأرة من أجل مزيد من الخيارات', + 'PanelImageTitle' => 'حدد صورة', + 'PanelImageNoImage' => 'لا توجد صورة', + 'PanelSelectFileTitle' => 'حدد ملف', + 'PanelLaunch' => 'Launch', + 'PanelRestoreDefault' => 'إستعادة الإفتراضيات', + 'PanelRefresh' => 'Update', + 'PanelRefreshTip' => 'Update information from web', + + 'PanelFrom' =>'من', + 'PanelTo' =>'إلى', + + 'PanelWeb' => 'عرض المعلومات', + 'PanelWebTip' => 'عرض المعلومات من الإنترنت حول هذا العنصر', # Accepts model codes + 'PanelRemoveTip' => 'حذف العنصر الحالي', # Accepts model codes + + 'PanelDateSelect' => 'حدد التاريخ', + 'PanelNobody' => 'لا أحد', + 'PanelUnknown' => 'غير معروف', + 'PanelAdded' => 'إضافة التاريخ', + 'PanelRating' => 'تقييم', + 'PanelPressRating' => 'Press Rating', + 'PanelLocation' => 'المكان', + + 'PanelLending' => 'إعارة', + 'PanelBorrower' => 'مستعير', + + 'PanelLendDate' => 'تاريخ الإعارة', + 'PanelHistory' => 'تاريخ الإعارة', + 'PanelReturned' => 'عنصر مُعاد', # Accepts model codes + 'PanelReturnDate' => 'تاريخ الإعادة', + 'PanelLendedYes' => 'مُعار', + 'PanelLendedNo' => 'متاح', + + 'PanelTags' => 'وسوم', + 'PanelFavourite' => 'محفوظات', + 'TagsAssigned' => 'وسوم مستعملة', + + 'PanelUser' => 'حقول المستخدم', + + 'CheckUndef' => 'اما', + 'CheckYes' => 'نعم', + 'CheckNo' => 'لا', + + 'ToolbarAll' => 'عرض الكل', + 'ToolbarAllTooltip' => 'عرض كل العناصر', + 'ToolbarGroupBy' => 'تجميع حسب', + 'ToolbarGroupByTooltip' => 'حدد الحقل الذي سيستعمل من أجل تجميع عناصر القائمة', + 'ToolbarQuickSearch' => 'بحث سريع', + 'ToolbarQuickSearchLabel' => 'بحث', + 'ToolbarQuickSearchTooltip' => 'قم بتحديد الحقل الذي سيتم البحث ضمنه.', + 'ToolbarSeparator' => ' فاصل', + + 'PluginsTitle' => 'البحث عن عنصر', + 'PluginsQuery' => 'إستعلام', + 'PluginsFrame' => 'موقع البحث', + 'PluginsLogo' => 'الشعار', + 'PluginsName' => 'الإسم', + 'PluginsSearchFields' => 'حقول البحث', + 'PluginsAuthor' => 'المؤلف', + 'PluginsLang' => 'اللغة', + 'PluginsUseSite' => 'أستخدم الموقع المحدّد من أجل عمليات البحث المستقبلية', + 'PluginsPreferredTooltip' => 'Site recommended by GCstar', + 'PluginDisabled' => 'Disabled', + + 'BorrowersTitle' => 'إعدادات الإستعارة', + 'BorrowersList' => 'المستعيرون', + 'BorrowersName' => 'إسم', + 'BorrowersEmail' => 'بريد إلكتروني', + 'BorrowersAdd' => 'إضافة', + 'BorrowersRemove' => 'إزالة', + 'BorrowersEdit' => 'تحرير', + 'BorrowersTemplate' => 'قالب البريد', + 'BorrowersSubject' => 'عنوان الرسالة', + 'BorrowersNotice1' => '%1 سيتم إستبداله بإسم المستعير', + 'BorrowersNotice2' => '%2 سيتم إستبداله بعنوان العنصر', + 'BorrowersNotice3' => '%3 سيتم إستبداله بتاريخ الإستعارة', + + 'BorrowersImportTitle' => 'إستيراد معلومات المستعيرين', + 'BorrowersImportType' => 'تنسيق الملف:', + 'BorrowersImportFile' => 'ملف:', + + 'BorrowedTitle' => 'عناصر مُعارة', # Accepts model codes + 'BorrowedDate' => 'منذ', + 'BorrowedDisplayInPanel' => 'عرض العنصر في النافذة الرئيسية', # Accepts model codes + + 'MailTitle' => 'إرسال رسالة إلكترونية', + 'MailFrom' => 'من: ', + 'MailTo' => 'إلى: ', + 'MailSubject' => 'عنوان الرسالة: ', + 'MailSmtpError' => 'حدث خطأ لدى محاولة الإتصال بملقم SMTP', + 'MailSendmailError' => 'حدث خطأ لدى محاولة الإتصال بواسطة Sendmail', + + 'SearchTooltip' => 'البحث بعن عنصر', # Accepts model codes + 'SearchTitle' => 'البحث عن عنصر', # Accepts model codes + 'SearchNoField' => 'No field have been selected for the search box. +Add some of them in the Filters tab of the collection settings.', + + 'QueryReplaceField' => 'حقل سيتم إستبداله', + 'QueryReplaceOld' => 'القيمة الحالية', + 'QueryReplaceNew' => 'قيمة جديدة', + 'QueryReplaceLaunch' => 'إستبدال', + + 'ImportWindowTitle' => 'حدد الحقول التي سيتم إستيرادها', + 'ImportViewPicture' => 'عرض الصورة', + 'ImportSelectAll' => 'تحديد الكل', + 'ImportSelectNone' => 'إلغاء التحديد', + + 'MultiSiteTitle' => 'مواقع سيتم إستعمالها في عمليات البحث', + 'MultiSiteUnused' => 'ملحقات غير مستعملة', + 'MultiSiteUsed' => 'ملحقات مستعملة', + 'MultiSiteLang' => 'قم بتعبئة القائمة بالملحقات العربية', + 'MultiSiteEmptyError' => 'لديك قائمة مواقع فارغة', + 'MultiSiteClear' => 'مسح القائمة', + + 'DisplayOptionsTitle' => 'عناصر سيتم عرضها', + 'DisplayOptionsAll' => 'تحديد الكل', + 'DisplayOptionsSearch' => 'زر البحث', + + 'GenresTitle' => 'نوع التحويل', + 'GenresCategoryName' => 'نوع سيتمل استعماله', + 'GenresCategoryMembers' => 'نوع سيتم استبداله', + 'GenresLoad' => 'فتح قائمة', + 'GenresExport' => 'حفظ القائمة لملف', + 'GenresModify' => 'تحرير التحويل', + + 'PropertiesName' => 'إسم المجموعة', + 'PropertiesLang' => 'رمز اللغة', + 'PropertiesOwner' => 'المالك', + 'PropertiesEmail' => 'بريد إلكتروني', + 'PropertiesDescription' => 'الوصف', + 'PropertiesFile' => 'معلومات الملف', + 'PropertiesFilePath' => 'مسار كامل', + 'PropertiesItemsNumber' => 'عدد المرات', # Accepts model codes + 'PropertiesFileSize' => 'حجم', + 'PropertiesFileSizeSymbols' => ['بايت', 'كيلوبايت', 'ميغابايت', 'جيجابايت', 'تيرابايت', 'PB', 'EB', 'ZB', 'YB'], + 'PropertiesCollection' => 'خصائص المجموعة', + 'PropertiesDefaultPicture' => 'الصورة الإفتراضية', + + 'MailProgramsTitle' => 'برامج من أجل إرسال البريد الإلكتروني', + 'MailProgramsName' => 'الإسم', + 'MailProgramsCommand' => 'سطر الأوامر', + 'MailProgramsRestore' => 'أستعادة الإفتراضيات', + 'MailProgramsAdd' => 'إضافة برنامج', + 'MailProgramsInstructions' => 'في سطر الأوامر، البدائل التالية تقوم بـ: + %f يتم إستبدالها بعنوان البريد الإلكتروني للمستخدم. + %t يتم إستبدالها بعنوان البريد الإلكتروني للمستقبل. + %s يتم إستبدالها بعنوان الرسالة. + %b يتم إستبدالها بنص الرسالة.', + + 'BookmarksBookmarks' => 'إشارات مرجعية', + 'BookmarksFolder' => 'مجلدات', + 'BookmarksLabel' => 'تسمية', + 'BookmarksPath' => 'مسار', + 'BookmarksNewFolder' => 'مجلد جديد', + + 'AdvancedSearchType' => 'نوع البحث', + 'AdvancedSearchTypeAnd' => 'مطابقة كل المعايير', # Accepts model codes + 'AdvancedSearchTypeOr' => 'مطايقة معيار واحد على الأقل', # Accepts model codes + 'AdvancedSearchCriteria' => 'المعيار', + 'AdvancedSearchAnyField' => 'أي حقل', + 'AdvancedSearchSaveTitle' => 'حفظ البحث', + 'AdvancedSearchSaveName' => 'الإسم', + 'AdvancedSearchSaveOverwrite' => 'عملية بحث تم حفظها سابقا تحمل نفس التسمية. قم بإختيار تسمية أخرى.', + 'AdvancedSearchUseCase' => 'تحسس حالة الأحرف', + 'AdvancedSearchIgnoreDiacritics' => 'Ignore accents and other diacritics', + + 'BugReportSubject' => 'تقرير الإبلاغ عن خطأ قام بتوليده جي سي ستار', + 'BugReportVersion' => 'الإصدار', + 'BugReportPlatform' => 'نظام التشغيل', + 'BugReportMessage' => 'رسالة الخطأ', + 'BugReportInformation' => 'معلومات إضافية', + +#Statistics + 'StatsFieldToUse' => 'Field to use', + 'StatsSortByNumber' => 'Sort by number of {lowercaseX}', + 'StatsGenerate' => 'Generate', + 'StatsKindOfGraph' => 'Kind of graphic', + 'StatsBars' => 'Bars', + 'StatsPie' => 'Pie', + 'Stats3DPie' => '3D Pie', + 'StatsArea' => 'Areas', + 'StatsHistory' => 'History', + 'StatsWidth' => 'Width', + 'StatsHeight' => 'Height', + 'StatsFontSize' => 'Font size', + 'StatsDisplayNumber' => 'Show numbers', + 'StatsSave' => 'Save statistics image to a file', + 'StatsAccumulate' => 'Accumulate values', + 'StatsShowAllDates' => 'Show all dates', + + 'DefaultValuesTip' => 'Values set in this window will be used as the default values when creating a new {lowercase1}', + ); +} +1; -- cgit v1.2.3