Skip to content

Commit

Permalink
Merge pull request #250 from panique/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
panique committed Sep 21, 2013
2 parents 7ba4668 + e98d3cd commit 39e5787
Show file tree
Hide file tree
Showing 4 changed files with 102 additions and 4 deletions.
8 changes: 4 additions & 4 deletions 2-advanced/lang/en.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
'Database error' => 'Database connection problem.',
'Empty username' => 'Username field was empty',
'Username exist' => 'Sorry, that username is already taken. Please choose another one.',
'Invalid username' => 'Username does not fit the name sheme: only a-Z and numbers are allowed, 2 to 64 characters',
'Invalid username' => 'Username does not fit the name scheme: only a-Z and numbers are allowed, 2 to 64 characters',
'Empty password' => 'Password field was empty',
'Bad confirm password' => 'Password and password repeat are not the same',
'Password too short' => 'Password has a minimum length of 6 characters',
'Email exist' => 'This email address is already registered. Please use the "I forgot my password" page if you don\'t remeber it.',
'Email exist' => 'This email address is already registered. Please use the "I forgot my password" page if you don\'t remember it.',
'Invalid email' => 'Your email address is not in a valid email format',

// Registration class
Expand All @@ -37,7 +37,7 @@
'Username change failed' => 'Sorry, your chosen username renaming failed',
'Email changed' => 'Your email address has been changed successfully. New email address is ',
'Email change failed' => 'Sorry, your email changing failed.',
'Password changed' => 'Password sucessfully changed!',
'Password changed' => 'Password successfully changed!',
'Password changed failed' => 'Sorry, your password changing failed.',
'Wrong old password' => 'Your OLD password was wrong.',
'Password mail sent' => 'Password reset mail successfully sent!',
Expand All @@ -55,7 +55,7 @@

// Register form
'Register username' => 'Username (only letters and numbers, 2 to 64 characters)',
'Register email' => 'User\'s email (please provide a real email adress, you\'ll get a verification mail with an activation link)',
'Register email' => 'User\'s email (please provide a real email address, you\'ll get a verification mail with an activation link)',
'Register password' => 'Password (min. 6 characters!)',
'Register password repeat' => 'Password repeat',
'Register captcha' => 'Please enter those characters',
Expand Down
88 changes: 88 additions & 0 deletions 2-advanced/lang/nl.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
<?php

$phplogin_lang = array(

// Login & Registration classes
'Database error' => 'Database verbinding probeem.',
'Empty username' => 'Gebruikersnaam veld was leeg',
'Username exist' => 'Sorry, deze gebruikersnaam is al in gebruik. Kies een andere.',
'Invalid username' => 'Gebruikersnaam past niet in het schema: enkel a-Z en nummers zijn toegestaan, 2 tot 64 karakters',
'Empty password' => 'Wachtwoord vel was leeg',
'Bad confirm password' => 'Het ingevulde wachtwoord en het herhaalde wachtwoord komen niet overeen',
'Password too short' => 'Minimum lengte van het wachtwoord is 6 karakters',
'Email exist' => 'Dit e-mailadres is al in gebruik. Gebruik de "Wachtwoord vergeten" pagina als je de gegevens verloren bent.',
'Invalid email' => 'Uw e-mailadres is niet in een geldig formaat',

// Registration class
'Wrong captcha' => 'Beveiligingscode is onjuist!',
'Username bad length' => 'Gebruikersnaam mag niet korter dan 2 of langer dan 64 karakters',
'Empty email' => 'E-mailadres mag niet leeg zijn',
'Email too long' => 'E-mail adres mag niet langer zijn dan 64 karakters',
'Verification mail error' => 'Sorry, we hebben geen activatiemail kunnen sturen. Uw account is NIET aangemaakt',
'Verification mail sent' => 'Uw account is succesvol aangemaakt en we hebben uw een mail gestuurd. Klik op de link in deze mail om uw account te activeren.',
'Verification mail not sent'=> 'Activatiemail NIET succesvol verzonden! Fout: ',
'Registration failed' => 'Sorry, uw registratie is mislukt. Ga terug en probeer het opnieuw.',
'Activation successful' => 'Activatie succesvol! U kunt nu inloggen!',
'Activation error' => 'Sorry, geen geschikte id/activatie code combinatie..',

// Login class
'Invalid cookie' => 'Ongeldige cookie',
'User not exist' => 'Deze gebruiker bestaat niet',
'Wrong password' => 'Verkeerd wacthwoord. Probeer opnieuw.',
'Account not activated' => 'Uw account is nog niet geactieveerd. Klik op de bevestigingslink in de mail.',
'Logged out' => 'U ben uitgelogd.',
'Same username' => 'Sorry, die gebruikersnaam is het zelfde als uw huidige. Kies een andere.',
'Same email' => 'Sorry, dat e-mailadres is het zelfde als uw huidige. Kies een andere.',
'Username changed' => 'Uw gebruikersnaam is succesvol gewijzigd. Nieuwe gebruikersnaam is ',
'Username change failed' => 'Sorry, uw gekozen gebruikersnaam wijzigen mislukt',
'Email changed' => 'Uw e-mailadres is succesvol gewijzigd. Nieuwe e-mailadres is ',
'Email change failed' => 'Sorry, wijzigen van uw e-mailadres is mislukt.',
'Password changed' => 'Wachtwoord succesvol gewijzigd!',
'Password changed failed' => 'Sorry, het wijzigen van uw wachtwoord mislukt.',
'Wrong old password' => 'Uw oude wachtwoord verkeerd ingevoerd.',
'Password mail sent' => 'Wachtwoord reset e-mail succesvol verzonden!',
'Password mail not sent' => 'Wachtwoord reset e-mail NIET succesvol verzonden! Fout: ',
'Reset link has expired' => 'Uw reset link is verlopen. Gebruik de reset link binnen 60 min.',
'Empty link parameter' => 'Lege link parameter data.',

// Login form
'Username' => 'Gebruikersnaam',
'Password' => 'Wachtwoord',
'Remember me' => 'Laat me ingelogd blijven (voor 2 weken)',
'Log in' => 'Inloggen',
'Register new account' => 'Account aanmaken',
'I forgot my password' => 'Wachtwoord vergeten',

// Register form
'Register username' => 'Gebruikersnaam (enkel letters en nummers, 2 tot 64 karakters)',
'Register email' => 'Gebruiker email (geef een geldig e-mailadre op, u krijgt een mail met daarin een activatielink)',
'Register password' => 'Wachtwoord (min. 6 karakters!)',
'Register password repeat' => 'Wachtwoord herhalen',
'Register captcha' => 'Neem de karakters over',
'Register' => 'Registreren',
'Back to login' => 'Terug naar login pagina',

// Password reset request
'Password reset request' => 'Wachtwoord reset aanvragen. Geef uw gebruikersnaam op en u krijgt een e-mail met instructies:',
'Reset my password' => 'Reset mijn wachtwoord',
'New password' => 'Nieuw wachtwoord',
'Repeat new password' => 'Nieuwe wachtwoord herhalen',
'Submit new password' => 'Nieuwe wachtwoord opslaan',

// Edit account
'Edit title' => 'U bent ingelogd en kunt uw gegevens hier wijzigen',
'Old password' => 'Uw OUDE wachtwoord',
'New username' => 'Nieuwe gebruikersnaam (gebruikersnaam mag niet leeg zijn en moeten azAZ09 en 2-64 karakters zijn)',
'New email' => 'Nieuwe e-mail',
'currently' => 'huidige',
'Change username' => 'Wijzig gebruikersnaam',
'Change email' => 'Wijzig e-mail',
'Change password' => 'Wijzig wachtwoord',

// Logged in
'You are logged in as' => 'U ben ingelogd als ',
'Logout' => 'Uitloggen',
'Edit user data' => 'Wijzig gebruiker gegevens',
'Profile picture' => 'Uw profielfoto (van gravatar):'

);
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGE LOG #

September 21th 2013
* 2-advanced: netherlands translation file
* 2-advanced: EN translation file typo fixes
* README: added PHPStorm/IntelliJ into "thank you" section

September 19th 2013
* 2-advanced: polish translation file

Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,11 @@ See [the wiki pages here](https://github.com/Panique/PHP-Login/wiki) for in-dept

## Thanks

This project is kindly powered by **PHPStorm**. Thanks to IntelliJ for giving php-login free licenses of this wonderful IDE.
I've switched from NetBeans to PHPStorm as it is so much more advanced, bringing config-free support for XDebug,
Vagrant, composer etc. into your workflow. Try it: [PHPStorm - The PHP IDE](http://www.jetbrains.com/phpstorm/).
Totally free beta-versions here: [PHPStorm - Free beta version](http://www.jetbrains.com/phpstorm/nextversion/index.html).

BIG BIG THANKS to JREAM and his excellent mvc-framework tutorial / codebase on http://jream.com/lab/ ! The PHP Login Framework is build using code from JReam's framework (I took the base code from "Part 3" and improved with code from "Part 9", "Part 10" and "Part 11", so the code itself is still basic and not too advanced). If you like, have a look on the how-to-build-a-framework-tutorials on his site, they are excellent and very sympathic. And it's probably the best
MVC/framework tutorial on the web. Get started here: [http://www.youtube.com/watch?v=Aw28-krO7ZM](http://www.youtube.com/watch?v=Aw28-krO7ZM)

Expand Down

0 comments on commit 39e5787

Please sign in to comment.