From 4683e3b721ca32ab8a464306f9b6753b2e5a8ec4 Mon Sep 17 00:00:00 2001
From: EuAndreh <eu@euandre.org>
Date: Sat, 24 Apr 2021 17:38:11 -0300
Subject: Add po files for new TILs, update whitespace of others

---
 .../2021-04-03-javascript-naive-slugify.po         | 44 ++++++++++++++++++++++
 1 file changed, 44 insertions(+)
 create mode 100644 locale/eo/LC_MESSAGES/_pastebins/2021-04-03-javascript-naive-slugify.po

(limited to 'locale/eo/LC_MESSAGES/_pastebins')

diff --git a/locale/eo/LC_MESSAGES/_pastebins/2021-04-03-javascript-naive-slugify.po b/locale/eo/LC_MESSAGES/_pastebins/2021-04-03-javascript-naive-slugify.po
new file mode 100644
index 0000000..6f638f2
--- /dev/null
+++ b/locale/eo/LC_MESSAGES/_pastebins/2021-04-03-javascript-naive-slugify.po
@@ -0,0 +1,44 @@
+#
+msgid ""
+msgstr ""
+
+msgid "title: JavaScript naive slugify"
+msgstr ""
+
+msgid "date: 2021-04-03"
+msgstr ""
+
+msgid "layout: post"
+msgstr ""
+
+msgid "lang: en"
+msgstr ""
+
+msgid "ref: javascript-naive-slugify"
+msgstr ""
+
+msgid ""
+"const s = \"Pézão: açaí, saci-pererê.\";\n"
+"\n"
+"function slugify(s) {\n"
+"    return s\n"
+"        .toLowerCase()\n"
+"        .replaceAll(\":\", \"\")\n"
+"        .replaceAll(\".\", \"\")\n"
+"        .replaceAll(\",\", \"\")\n"
+"        .replaceAll(\"-\", \"\")\n"
+"        .replaceAll(\"á\", \"a\")\n"
+"        .replaceAll(\"ã\", \"a\")\n"
+"        .replaceAll(\"à\", \"a\")\n"
+"        .replaceAll(\"é\", \"e\")\n"
+"        .replaceAll(\"ê\", \"e\")\n"
+"        .replaceAll(\"í\", \"i\")\n"
+"        .replaceAll(\"ó\", \"o\")\n"
+"        .replaceAll(\"ô\", \"o\")\n"
+"        .replaceAll(\"ú\", \"u\")\n"
+"        .replaceAll(\"ü\", \"u\")\n"
+"        .replaceAll(\"ç\", \"c\");\n"
+"}\n"
+"\n"
+"console.log(slugify(s));\n"
+msgstr ""
-- 
cgit v1.2.3