diff options
Diffstat (limited to 'lib/gcstar/GCLang/NL/GCExport/GCExportSQL.pm')
| -rw-r--r-- | lib/gcstar/GCLang/NL/GCExport/GCExportSQL.pm | 40 | 
1 files changed, 40 insertions, 0 deletions
diff --git a/lib/gcstar/GCLang/NL/GCExport/GCExportSQL.pm b/lib/gcstar/GCLang/NL/GCExport/GCExportSQL.pm new file mode 100644 index 0000000..f59a75a --- /dev/null +++ b/lib/gcstar/GCLang/NL/GCExport/GCExportSQL.pm @@ -0,0 +1,40 @@ +{ +    package GCLang::NL::GCExport::GCExportSQL; + +    use utf8; +################################################### +# +#  Auteursrecht 2005-2009 Tian +# +#  Dit bestand is onderdeel van GCstar. +# +#  GCstar is gratis software; je kan het verspreiden en/ of wijzigen +#  onder de voorwaarden van de GNU General Public License zoals gepubliceerd door +#  de Free Software Foundation; ofwel versie 2 van de licentie, of +#  (op uw keuze) een latere versie. +# +#  GCstar wordt verspreid in de hoop dat het nuttig zal zijn +#  maar ZONDER ENIGE GARANTIE, zelfs zonder de impliciete garantie van +#  Verkoopbaarheid of geschiktheid voor een bepaald doel. Zie de +#  GNU General Public License voor meer details. +# +#  Je zou een kopie van de GNU General Public License moeten ontvangen hebben +#  samen met GCstar; zo niet, schrijf naar de Free Software +#  Foundation, Inc, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +################################################### +     +    use strict; +    use base 'Exporter'; + +    our @EXPORT = qw(%lang); + +    our %lang = ( +        'WithDrop' => 'Inclusief DROP instructie', +        'WithCreate' => 'Inclusief CREATE instructie', +        'TableName' => 'Tabel Naam', +        'InfoFile' => 'SQL bestand: ', +     ); +} + +1;  | 
