Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorolpc <olpc@xo-11-16-62.localdomain>2008-11-03 10:54:57 (GMT)
committer Aleksey Lim <alsroot@member.fsf.org>2009-04-14 21:42:13 (GMT)
commit840303a3e55f944af58a38b4f211b20e669081dd (patch)
treed57a429eab638b85171dcde6e9fea712104c5ae4
parent1c7916170c0317975609cee1be3760276d921ec9 (diff)
Limpieza y localizacion
-rwxr-xr-xSpeak.activity/gen_cerebro.py10
-rw-r--r--Speak.activity/po/HablarConSara.pot58
-rwxr-xr-xSpeak.activity/probar_cerebro.py10
3 files changed, 0 insertions, 78 deletions
diff --git a/Speak.activity/gen_cerebro.py b/Speak.activity/gen_cerebro.py
deleted file mode 100755
index f9c8271..0000000
--- a/Speak.activity/gen_cerebro.py
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env python
-#coding=utf-8
-
-import aiml
-k = aiml.Kernel()
-import glob
-laiml = glob.glob("sara/*.aiml") #devuelve lista con ficheros *.aiml
-for fichero in laiml:
- k.learn(str(fichero))
-k.saveBrain("cerebro.brn")
diff --git a/Speak.activity/po/HablarConSara.pot b/Speak.activity/po/HablarConSara.pot
deleted file mode 100644
index 3f13f73..0000000
--- a/Speak.activity/po/HablarConSara.pot
+++ /dev/null
@@ -1,58 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2008-03-07 08:10+0000\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../activity.py:174
-#, python-format
-msgid "Hello %s. Type something."
-msgstr ""
-
-#: ../activity.py:334
-msgid "pitch adjusted"
-msgstr ""
-
-#: ../activity.py:337
-msgid "rate adjusted"
-msgstr ""
-
-#: ../activity.py:346
-msgid "Simple"
-msgstr ""
-
-#: ../activity.py:347
-msgid "Waveform"
-msgstr ""
-
-#: ../activity.py:348
-msgid "Frequency"
-msgstr ""
-
-#: ../activity.py:356
-msgid "Round"
-msgstr ""
-
-#: ../activity.py:357
-msgid "Glasses"
-msgstr ""
-
-#: ../activity.py:388
-msgid "mouth changed"
-msgstr ""
-
-#: ../activity.py:409
-msgid "eyes changed"
-msgstr ""
diff --git a/Speak.activity/probar_cerebro.py b/Speak.activity/probar_cerebro.py
deleted file mode 100755
index bdae924..0000000
--- a/Speak.activity/probar_cerebro.py
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env python
-#coding=utf-8
-
-import aiml
-import os.path
-
-k = aiml.Kernel()
-k.loadBrain("cerebro.brn")
-
-while True: print k.respond(raw_input("Pregunta > "))