Updated copyright text
This commit is contained in:
parent
b2daff0bf0
commit
3153bc6ef6
22 changed files with 367 additions and 9 deletions
|
@ -1,4 +1,25 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
|
||||||
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Marcel Michael Kapfer
|
||||||
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
|
-->
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="de.marcelkapfer.morseconverter" >
|
package="de.marcelkapfer.morseconverter" >
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,26 @@
|
||||||
package de.marcelkapfer.morseconverter;
|
package de.marcelkapfer.morseconverter;
|
||||||
|
|
||||||
|
/*
|
||||||
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Marcel Michael Kapfer
|
||||||
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.support.v4.app.Fragment;
|
import android.support.v4.app.Fragment;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
|
|
|
@ -1,5 +1,26 @@
|
||||||
package de.marcelkapfer.morseconverter;
|
package de.marcelkapfer.morseconverter;
|
||||||
|
|
||||||
|
/*
|
||||||
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Marcel Michael Kapfer
|
||||||
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
public class DecodeNormalMorseManager {
|
public class DecodeNormalMorseManager {
|
||||||
|
|
||||||
private String inputMessage;
|
private String inputMessage;
|
||||||
|
|
|
@ -1,5 +1,26 @@
|
||||||
package de.marcelkapfer.morseconverter;
|
package de.marcelkapfer.morseconverter;
|
||||||
|
|
||||||
|
/*
|
||||||
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Marcel Michael Kapfer
|
||||||
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
public class DecodeWrittenMorseManager {
|
public class DecodeWrittenMorseManager {
|
||||||
|
|
||||||
private String inputMessage;
|
private String inputMessage;
|
||||||
|
|
|
@ -1,5 +1,26 @@
|
||||||
package de.marcelkapfer.morseconverter;
|
package de.marcelkapfer.morseconverter;
|
||||||
|
|
||||||
|
/*
|
||||||
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Marcel Michael Kapfer
|
||||||
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Code for converting morse code into latin letters
|
* Code for converting morse code into latin letters
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,4 +1,26 @@
|
||||||
package de.marcelkapfer.morseconverter;
|
package de.marcelkapfer.morseconverter;
|
||||||
|
|
||||||
|
/*
|
||||||
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Marcel Michael Kapfer
|
||||||
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Code for converting writtenMorse to latin letters
|
* Code for converting writtenMorse to latin letters
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,5 +1,26 @@
|
||||||
package de.marcelkapfer.morseconverter;
|
package de.marcelkapfer.morseconverter;
|
||||||
|
|
||||||
|
/*
|
||||||
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Marcel Michael Kapfer
|
||||||
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
import android.content.ClipData;
|
import android.content.ClipData;
|
||||||
import android.content.ClipboardManager;
|
import android.content.ClipboardManager;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
|
|
|
@ -1,5 +1,26 @@
|
||||||
package de.marcelkapfer.morseconverter;
|
package de.marcelkapfer.morseconverter;
|
||||||
|
|
||||||
|
/*
|
||||||
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Marcel Michael Kapfer
|
||||||
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.support.v4.app.Fragment;
|
import android.support.v4.app.Fragment;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
|
|
|
@ -1,5 +1,26 @@
|
||||||
package de.marcelkapfer.morseconverter;
|
package de.marcelkapfer.morseconverter;
|
||||||
|
|
||||||
|
/*
|
||||||
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Marcel Michael Kapfer
|
||||||
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.support.v4.app.Fragment;
|
import android.support.v4.app.Fragment;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
|
|
|
@ -1,4 +1,25 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
|
||||||
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Marcel Michael Kapfer
|
||||||
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
|
-->
|
||||||
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:color="@color/ripple_material_light">
|
android:color="@color/ripple_material_light">
|
||||||
<item>
|
<item>
|
||||||
|
|
|
@ -1,4 +1,25 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
|
||||||
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Marcel Michael Kapfer
|
||||||
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
|
-->
|
||||||
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:color="@color/ripple_material_light">
|
android:color="@color/ripple_material_light">
|
||||||
<item>
|
<item>
|
||||||
|
|
|
@ -1,4 +1,25 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
|
||||||
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Marcel Michael Kapfer
|
||||||
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
|
-->
|
||||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<item android:drawable="@color/ripple_material_light" android:state_pressed="true"/>
|
<item android:drawable="@color/ripple_material_light" android:state_pressed="true"/>
|
||||||
<item android:drawable="@color/cardview_light_background"/>
|
<item android:drawable="@color/cardview_light_background"/>
|
||||||
|
|
|
@ -1,4 +1,25 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
|
||||||
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Marcel Michael Kapfer
|
||||||
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
|
-->
|
||||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<item android:drawable="@color/ripple_material_light" android:state_pressed="true"/>
|
<item android:drawable="@color/ripple_material_light" android:state_pressed="true"/>
|
||||||
<item android:drawable="@color/white"/>
|
<item android:drawable="@color/white"/>
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
This is a Android application for converting writtenMorse and normal morse code.
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
@ -18,8 +19,6 @@
|
||||||
Marcel Michael Kapfer
|
Marcel Michael Kapfer
|
||||||
marcelmichaelkapfer@yahoo.co.nz
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
Version 1.0.1
|
|
||||||
|
|
||||||
-->
|
-->
|
||||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
This is a Android application for converting writtenMorse and normal morse code.
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
@ -18,7 +19,6 @@
|
||||||
Marcel Michael Kapfer
|
Marcel Michael Kapfer
|
||||||
marcelmichaelkapfer@yahoo.co.nz
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
Version 1.1.0
|
|
||||||
-->
|
-->
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
This is a Android application for converting writtenMorse and normal morse code.
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
@ -18,7 +19,6 @@
|
||||||
Marcel Michael Kapfer
|
Marcel Michael Kapfer
|
||||||
marcelmichaelkapfer@yahoo.co.nz
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
Version 1.1.0
|
|
||||||
-->
|
-->
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
|
|
@ -19,8 +19,6 @@
|
||||||
Marcel Michael Kapfer
|
Marcel Michael Kapfer
|
||||||
marcelmichaelkapfer@yahoo.co.nz
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
Version 1.0.1
|
|
||||||
|
|
||||||
-->
|
-->
|
||||||
<!-- German translations -->
|
<!-- German translations -->
|
||||||
<resources>
|
<resources>
|
||||||
|
@ -40,7 +38,7 @@
|
||||||
<string name="aboutBug">Wenn Du einen Fehler gefunden hast, schreibe mit bitte ein Email an marcelmichaelkapfer@yahoo.co.nz</string>
|
<string name="aboutBug">Wenn Du einen Fehler gefunden hast, schreibe mit bitte ein Email an marcelmichaelkapfer@yahoo.co.nz</string>
|
||||||
<string name="aboutHow">Du kannst eine ausführliche Anwendung auf marcel-kapfer.de/projects/morse/index.html#howto_android finden.</string>
|
<string name="aboutHow">Du kannst eine ausführliche Anwendung auf marcel-kapfer.de/projects/morse/index.html#howto_android finden.</string>
|
||||||
<string name="aboutMissing">Wenn du auf einen fehlenden Code aufmerksam geworden bist, dann schreibe eine Email an marcelmichaelkapfer@yahoo.co.nz.</string>
|
<string name="aboutMissing">Wenn du auf einen fehlenden Code aufmerksam geworden bist, dann schreibe eine Email an marcelmichaelkapfer@yahoo.co.nz.</string>
|
||||||
<string name="aboutVersion">2.0 alpha \n14th February 2015</string>
|
<string name="aboutVersion">2.0 beta \n17th February 2015</string>
|
||||||
<string name="sectionBug">Fehler</string>
|
<string name="sectionBug">Fehler</string>
|
||||||
<string name="sectionContact">Kontakt</string>
|
<string name="sectionContact">Kontakt</string>
|
||||||
<string name="sectionDeveloper">Entwickler</string>
|
<string name="sectionDeveloper">Entwickler</string>
|
||||||
|
|
|
@ -1,3 +1,25 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
|
||||||
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Marcel Michael Kapfer
|
||||||
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
|
-->
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Example customization of dimensions originally defined in res/values/dimens.xml
|
<!-- Example customization of dimensions originally defined in res/values/dimens.xml
|
||||||
(such as screen margins) for screens with more than 820dp of available width. This
|
(such as screen margins) for screens with more than 820dp of available width. This
|
||||||
|
|
|
@ -1,4 +1,25 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
|
||||||
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Marcel Michael Kapfer
|
||||||
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
|
-->
|
||||||
<resources>
|
<resources>
|
||||||
<color name="white">#ffffff</color>
|
<color name="white">#ffffff</color>
|
||||||
<color name="colorPrimary">#2196F3</color>
|
<color name="colorPrimary">#2196F3</color>
|
||||||
|
|
|
@ -1,3 +1,25 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
|
||||||
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Marcel Michael Kapfer
|
||||||
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
|
-->
|
||||||
<resources>
|
<resources>
|
||||||
<!-- Default screen margins, per the Android Design guidelines. -->
|
<!-- Default screen margins, per the Android Design guidelines. -->
|
||||||
<dimen name="activity_horizontal_margin">16dp</dimen>
|
<dimen name="activity_horizontal_margin">16dp</dimen>
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
This is a Android application for converting writtenMorse and normal morse code.
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
||||||
|
|
||||||
|
@ -18,7 +19,6 @@
|
||||||
Marcel Michael Kapfer
|
Marcel Michael Kapfer
|
||||||
marcelmichaelkapfer@yahoo.co.nz
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
Version 1.0.1
|
|
||||||
-->
|
-->
|
||||||
<resources>
|
<resources>
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@
|
||||||
<string name="sectionHow">How to</string>
|
<string name="sectionHow">How to</string>
|
||||||
<string name="sectionMissing">Missing Code</string>
|
<string name="sectionMissing">Missing Code</string>
|
||||||
<!--About Texts-->
|
<!--About Texts-->
|
||||||
<string name="aboutVersion">2.0 alpha \n14th February 2015</string>
|
<string name="aboutVersion">2.0 beta \n17th February 2015</string>
|
||||||
<string name="aboutDeveloper" translatable="false">Marcel Michael Kapfer</string>
|
<string name="aboutDeveloper" translatable="false">Marcel Michael Kapfer</string>
|
||||||
<string name="aboutWebsite" translatable="false">marcel-kapfer.de/projects/morse/</string>
|
<string name="aboutWebsite" translatable="false">marcel-kapfer.de/projects/morse/</string>
|
||||||
<string name="aboutContact" translatable="false">marcelmichaelkapfer@yahoo.co.nz</string>
|
<string name="aboutContact" translatable="false">marcelmichaelkapfer@yahoo.co.nz</string>
|
||||||
|
|
|
@ -1,3 +1,25 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
|
||||||
|
This is a Android application for converting writtenMorse and normal morse code.
|
||||||
|
Copyright (C) 2014-2015 Marcel Michael Kapfer
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Marcel Michael Kapfer
|
||||||
|
marcelmichaelkapfer@yahoo.co.nz
|
||||||
|
|
||||||
|
-->
|
||||||
<resources>
|
<resources>
|
||||||
|
|
||||||
<!-- Base application theme. -->
|
<!-- Base application theme. -->
|
||||||
|
|
Reference in a new issue