diff options
Diffstat (limited to 'lib/gcstar/GCLang/EN/GCExport')
-rw-r--r-- | lib/gcstar/GCLang/EN/GCExport/GCExportCSV.pm | 40 | ||||
-rw-r--r-- | lib/gcstar/GCLang/EN/GCExport/GCExportExternal.pm | 38 | ||||
-rw-r--r-- | lib/gcstar/GCLang/EN/GCExport/GCExportHTML.pm | 64 | ||||
-rw-r--r-- | lib/gcstar/GCLang/EN/GCExport/GCExportPDB.pm | 38 | ||||
-rw-r--r-- | lib/gcstar/GCLang/EN/GCExport/GCExportSQL.pm | 40 | ||||
-rw-r--r-- | lib/gcstar/GCLang/EN/GCExport/GCExportTarGz.pm | 37 | ||||
-rw-r--r-- | lib/gcstar/GCLang/EN/GCExport/GCExportXML.pm | 41 |
7 files changed, 298 insertions, 0 deletions
diff --git a/lib/gcstar/GCLang/EN/GCExport/GCExportCSV.pm b/lib/gcstar/GCLang/EN/GCExport/GCExportCSV.pm new file mode 100644 index 0000000..0653a56 --- /dev/null +++ b/lib/gcstar/GCLang/EN/GCExport/GCExportCSV.pm @@ -0,0 +1,40 @@ +{ + package GCLang::EN::GCExport::GCExportCSV; + + 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 = ( + 'Header' => 'Include fields names on the top', + 'Separator' => 'Separator', + 'Replacement' => 'Replace the separator with', + 'Charset' => 'Charset', + ); +} + +1; diff --git a/lib/gcstar/GCLang/EN/GCExport/GCExportExternal.pm b/lib/gcstar/GCLang/EN/GCExport/GCExportExternal.pm new file mode 100644 index 0000000..3334ca4 --- /dev/null +++ b/lib/gcstar/GCLang/EN/GCExport/GCExportExternal.pm @@ -0,0 +1,38 @@ +{ + package GCLang::EN::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/EN/GCExport/GCExportHTML.pm b/lib/gcstar/GCLang/EN/GCExport/GCExportHTML.pm new file mode 100644 index 0000000..a26ecba --- /dev/null +++ b/lib/gcstar/GCLang/EN/GCExport/GCExportHTML.pm @@ -0,0 +1,64 @@ +{ + package GCLang::EN::GCExport::GCExportHTML; + + 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 = ( + 'ModelNotFound' => 'Invalid template file', + 'UseFile' => 'Use file specified below', + 'WithJS' => 'Use Javascript', + 'FileTemplate' => 'Template', + 'Preview' => 'Preview', + 'NoPreview' => 'No preview available', + 'TemplateExternalFile' => 'Template file', + 'Title' => 'Page title', + 'InfoFile' => 'Movies list is in file: ', + 'InfoDir' => 'Images are in: ', + 'HeightImg' => 'Height (in pixels) of the image to be exported', + 'OpenFileInBrowser' => 'Open generated file in web browser', + 'Note' => 'List generated by <a href="http://www.gcstar.org/">GCstar</a>', + 'InputTitle' => 'Enter search text', + 'SearchType1' => 'Title only', + 'SearchType2' => 'Full information', + 'SearchButton' => 'Search', + 'SearchTitle' => 'Display only movies matching previous criteria', + 'AllButton' => 'All', + 'AllTitle' => 'Display all movies', + 'Expand' => 'Expand all', + 'ExpandTitle' => 'Display all movies information', + 'Collapse' => 'Collapse all', + 'CollapseTitle' => 'Collapse all movies information', + 'Borrowed' => 'Borrowed by: ', + 'NotBorrowed' => 'Available', + 'Top' => 'Top', + 'Bottom' => 'Bottom', + ); +} + +1; diff --git a/lib/gcstar/GCLang/EN/GCExport/GCExportPDB.pm b/lib/gcstar/GCLang/EN/GCExport/GCExportPDB.pm new file mode 100644 index 0000000..fdfa311 --- /dev/null +++ b/lib/gcstar/GCLang/EN/GCExport/GCExportPDB.pm @@ -0,0 +1,38 @@ +{ + package GCLang::EN::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/EN/GCExport/GCExportSQL.pm b/lib/gcstar/GCLang/EN/GCExport/GCExportSQL.pm new file mode 100644 index 0000000..8356cd4 --- /dev/null +++ b/lib/gcstar/GCLang/EN/GCExport/GCExportSQL.pm @@ -0,0 +1,40 @@ +{ + package GCLang::EN::GCExport::GCExportSQL; + + 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 = ( + 'WithDrop' => 'Include DROP instruction', + 'WithCreate' => 'Include CREATE instruction', + 'TableName' => 'Table Name', + 'InfoFile' => 'SQL file: ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/EN/GCExport/GCExportTarGz.pm b/lib/gcstar/GCLang/EN/GCExport/GCExportTarGz.pm new file mode 100644 index 0000000..2345b0e --- /dev/null +++ b/lib/gcstar/GCLang/EN/GCExport/GCExportTarGz.pm @@ -0,0 +1,37 @@ +{ + package GCLang::EN::GCExport::GCExportTarGz; + + 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 = ( + 'Info' => 'Archive is in file: ', + ); +} + +1; diff --git a/lib/gcstar/GCLang/EN/GCExport/GCExportXML.pm b/lib/gcstar/GCLang/EN/GCExport/GCExportXML.pm new file mode 100644 index 0000000..b68ac14 --- /dev/null +++ b/lib/gcstar/GCLang/EN/GCExport/GCExportXML.pm @@ -0,0 +1,41 @@ +{ + package GCLang::EN::GCExport::GCExportXML; + + 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 = ( + 'ModelFile' => 'Template file', + 'ModelText' => 'Template text', + 'Models' => 'Template to use', + 'UseFile' => 'Use file', + 'UseModel' => 'Use text area', + ); +} + +1; |