From 6cd5dcad5c1c80c37ae398308ceea296f1fcd098 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20=C5=81ukasiewicz?= Date: Fri, 21 Apr 2023 03:23:11 +0200 Subject: [PATCH] =?UTF-8?q?Prze=C5=9Blij=20pliki=20do=20'gramatyki'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gramatyki/hello.jsgf | 8 ++++++++ gramatyki/payment.jsgf | 8 ++++++++ gramatyki/price.jsgf | 9 +++++++++ 3 files changed, 25 insertions(+) create mode 100644 gramatyki/hello.jsgf create mode 100644 gramatyki/payment.jsgf create mode 100644 gramatyki/price.jsgf diff --git a/gramatyki/hello.jsgf b/gramatyki/hello.jsgf new file mode 100644 index 0000000..fd3c7d6 --- /dev/null +++ b/gramatyki/hello.jsgf @@ -0,0 +1,8 @@ +#JSGF V1.0 UTF-8 pl; + +grammar hello; + + + = ; + +public = (dzień dobry | cześć | siema | witam); \ No newline at end of file diff --git a/gramatyki/payment.jsgf b/gramatyki/payment.jsgf new file mode 100644 index 0000000..0a6e7ab --- /dev/null +++ b/gramatyki/payment.jsgf @@ -0,0 +1,8 @@ +#JSGF V1.0 UTF-8 pl; + +grammar payment; + + + = ; + +public = (płacę | zapłacę | płatność | ) (kartą | gotówką | online | przy odbiorze); \ No newline at end of file diff --git a/gramatyki/price.jsgf b/gramatyki/price.jsgf new file mode 100644 index 0000000..67bb0e4 --- /dev/null +++ b/gramatyki/price.jsgf @@ -0,0 +1,9 @@ +#JSGF V1.0 UTF-8 pl; + +grammar price; + + + = ; + +public = (ile | jaki jest | jaka jest | w jakiej jest | ) (całkowity | ) +(koszt | kosztuje | cena | cenie) (pizza | pizze | pizzy | zamówienia | ); \ No newline at end of file