PageRenderTime 43ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/wp-content/plugins/newsletter/languages/nl_NL.php

https://gitlab.com/endomorphosis/reservationtelco
PHP | 66 lines | 49 code | 14 blank | 3 comment | 0 complexity | a88507363f870c37fed1943c8c12f8dc MD5 | raw file
  1. <?php
  2. // Subscription form (traslate "your name", "your email" and the button "subscribe me")
  3. $newsletter_labels['subscription_form'] =
  4. '<form method="post" action="" style="text-align: center">
  5. <input type="hidden" name="na" value="s"/>
  6. <table cellspacing="3" cellpadding="3" border="0" width="50%">
  7. <tr><td>Jouw&nbsp;naam</td><td><input type="text" name="nn" size="30"/></td></tr>
  8. <tr><td>Jouw&nbsp;email</td><td><input type="text" name="ne" size="30"/></td></tr>
  9. <tr><td colspan="2" style="text-align: center"><input type="submit" value="Inschrijven"/></td></tr>
  10. </table>
  11. </form>';
  12. $newsletter_labels['subscription_form_noname'] =
  13. '<form method="post" action="" style="text-align: center">
  14. <input type="hidden" name="na" value="s"/>
  15. <table cellspacing="3" cellpadding="3" border="0" width="50%">
  16. <tr><td>Jouw&nbsp;email</td><td><input type="text" name="ne" size="30"/></td></tr>
  17. <tr><td colspan="2" style="text-align: center"><input type="submit" value="Inschrijven"/></td></tr>
  18. </table>
  19. </form>';
  20. $newsletter_labels['widget_form'] =
  21. '<form action="{newsletter_url}" method="post">
  22. {text}
  23. <p><input type="text" name="nn" value="Jouw naam" onclick="if (this.defaultValue==this.value) this.value=\'\'" onblur="if (this.value==\'\') this.value=this.defaultValue"/></p>
  24. <p><input type="text" name="ne" value="Jouw email" onclick="if (this.defaultValue==this.value) this.value=\'\'" onblur="if (this.value==\'\') this.value=this.defaultValue"/></p>
  25. <p><input type="submit" value="Inschrijven"/></p>
  26. <input type="hidden" name="na" value="s"/>
  27. </form>';
  28. $newsletter_labels['widget_form_noname'] =
  29. '<form action="{newsletter_url}" method="post">
  30. {text}
  31. <p><input type="text" name="ne" value="Jouw email" onclick="if (this.defaultValue==this.value) this.value=\'\'" onblur="if (this.value==\'\') this.value=this.defaultValue"/></p>
  32. <p><input type="submit" value="Inschrijven"/></p>
  33. <input type="hidden" name="na" value="s"/>
  34. </form>';
  35. $newsletter_labels['embedded_form'] =
  36. '<form action="{newsletter_url}" method="post">
  37. <p><input type="text" name="ne" value="Jouw email" onclick="if (this.defaultValue==this.value) this.value=\'\'" onblur="if (this.value==\'\') this.value=this.defaultValue"/>
  38. &nbsp;<input type="text" name="nn" value="Jouw naam" onclick="if (this.defaultValue==this.value) this.value=\'\'" onblur="if (this.value==\'\') this.value=this.defaultValue"/>
  39. <input type="submit" value="Inschrijven"/>
  40. <input type="hidden" name="na" value="s"/></p>
  41. </form>';
  42. // Example of embedded form without name
  43. $newsletter_labels['embedded_form_noname'] =
  44. '<form action="{newsletter_url}" method="post">
  45. <p><input type="text" name="ne" value="Jouw email" onclick="if (this.defaultValue==this.value) this.value=\'\'" onblur="if (this.value==\'\') this.value=this.defaultValue"/>
  46. <input type="submit" value="Inschrijven"/>
  47. <input type="hidden" name="na" value="s"/></p>
  48. </form>';
  49. // Errors on subscription
  50. $newsletter_labels['error_email'] = 'Foutief email-adres. <a href="javascript:history.back()">Ga terug</a>.';
  51. $newsletter_labels['error_name'] = 'Gelieve jouw naam in te vullen. <a href="javascript:history.back()">Ga terug</a>.';
  52. ?>