18 Commits

Author SHA1 Message Date
a500092625 trying something out 2018-06-25 01:08:40 -05:00
05e3600504 Add note that the builds are currently not signed 2018-06-24 18:59:42 -05:00
0b24c89307 Add link to build artifacts 2018-06-24 18:11:25 -05:00
f8491fefdb revert 2018-06-24 16:56:01 -05:00
4885aa9df6 try this out 2018-06-24 16:55:04 -05:00
0dd894a777 add .gitlab-ci.yml 2018-06-24 16:45:13 -05:00
01e7a2674c Remove f-droid text metadata.
This is the format used by f-droid's own metadata repo but they seem to be moving away from it at least for application repos.

see  bca2f86802 (note_50562827)
2018-06-24 05:51:51 -05:00
8838fbd5a9 Correctly format .fdroid.yml. 2018-06-24 05:51:35 -05:00
ddd99e48e5 Add .fdroid.yml 2018-06-24 05:41:57 -05:00
b4da74dea1 Update gradle version in gradle-wrapper 2018-06-24 02:23:40 -05:00
24e7fc5904 Also fix the fdroid metadata file name. 2018-06-24 02:20:37 -05:00
6ef85c45b5 Fix applicationId. 2018-06-24 02:11:42 -05:00
2c55929f9f add google() repository to allprojects 2018-06-24 02:07:25 -05:00
e45665ece1 attempt to update gradle 2018-06-24 01:59:04 -05:00
97f1be558b Add f-droid metadata file.
This is currently for use with the fdroid-docker-build image at https://gitlab.monarch-pass.net/malacoda/fdroid-docker-build. But, once it builds correctly (it does not), it should be able to be pushed to F-droid rather easily.
2018-06-24 01:46:41 -05:00
2ee5a8e904 Hide "View it on the web" option until it can be fixed. 2018-06-23 22:41:54 -05:00
c56b0f8054 Update readme. 2018-06-23 04:14:11 -05:00
7a6d0d3eba Rebrand to Text Editor 8000. 2018-06-23 03:47:51 -05:00
199 changed files with 735 additions and 683 deletions

25
.fdroid.yml Normal file
View File

@ -0,0 +1,25 @@
Categories:
- Writing
License: GPL-3.0-or-later
WebSite: https://github.com/adrianmalacoda/text-editor-8000
SourceCode: https://github.com/adrianmalacoda/text-editor-8000
IssueTracker: https://github.com/adrianmalacoda/text-editor-8000/issues
AutoName: Text Editor 8000
Summary: Simple text editor
Description: Simple, yet powerful editor for text files.
RepoType: git
Repo: .
builds:
- versionName: "1.20"
versionCode: 48
commit: HEAD
subdir: app
gradle: yes
AutoUpdateMode: None
UpdateCheckMode: RepoManifest
CurrentVersion: 1.20
CurrentVersion Code: 48

10
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,10 @@
image: fdroidbuild:latest
build-apk:
script:
- fdroid build
- fdroid nightly
artifacts:
paths:
- unsigned/*.apk
- unsigned/*.tar.gz

View File

@ -1,5 +1,14 @@
# Text Editor 8000
Text editor for Android. Originally forked from [Turbo Editor](https://github.com/vmihalachi/turbo-editor) by Vlad Mihalachi.
Text editor for Android. Forked from [Turbo Editor](https://github.com/vmihalachi/turbo-editor) by Vlad Mihalachi.
### License
Currently this fork includes a fix for hardware keyboards, as well as an updated [CommonMark](http://commonmark.org/) Markdown renderer.
## Notice
This project undergoes sporadic bursts of activity. There's no timeframe for a release, and stuff gets worked on when it gets worked on.
The general policy is that master is always buildable and should run fine, but there's no guarantees.
Also, [build artifacts](https://gitlab.monarch-pass.net/malacoda/text-editor-8000/-/jobs/artifacts/master/download?job=build-apk) from master are available on the Monarch Pass GitLab. Note that as of now these builds are not signed so you'll need to sign them yourself before installing them. Use at your own risk!
## License
GNU General Public License version 3, see [LICENSE](./license).

View File

@ -2,14 +2,14 @@
* Copyright (C) 2016 Adrian Malacoda
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.
@ -31,7 +31,7 @@ android {
buildToolsVersion '22.0.1'
defaultConfig {
applicationId "net.monarchpass.android.robuteditor"
applicationId "net.monarchpass.android.texteditor8000"
minSdkVersion 15
targetSdkVersion 22
versionCode 48

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
/*
* Copyright (C) 2014 Vlad Mihalachi
*
* This file is part of Robut Editor.
* This file is part of Text Editor 8000.
*
* Robut Editor is free software: you can redistribute it and/or modify
* Text Editor 8000 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.
*
* Robut Editor is distributed in the hope that it will be useful,
* Text Editor 8000 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.

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?><!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -64,11 +64,11 @@
app:showAsAction="never"
android:title="@string/goto_line"
/>
<item
<!-- <item
android:id="@id/im_view_it_on_browser"
app:showAsAction="never"
android:title="@string/view_it_on_the_web"
/>
/> -->
<item
android:id="@id/im_view_markdown"
app:showAsAction="never"

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -2,14 +2,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -73,7 +73,7 @@
</changelogversion>
<changelogversion versionName="1.13" changeDate="Oct 25, 2014">
<changelogtext>Robut Editor is a free and open source app. Now you can show your appreciation and support development by donating :)</changelogtext>
<changelogtext>Text Editor 8000 is a free and open source app. Now you can show your appreciation and support development by donating :)</changelogtext>
<changelogtext>New visual changes to make the app more "Material"</changelogtext>
<changelogtext>New save dialog when you are about to close a file</changelogtext>
<changelogtext>Many enchantments and fixes</changelogtext>
@ -86,7 +86,7 @@
<changelogversion versionName="1.11" changeDate="Sep 30, 2014">
<changelogtext>[b]New! [/b]Important improvements to the syntax highlight</changelogtext>
<changelogtext>[b]New! [/b]Donation option in the about screen. Help to make Robut Editor a better software! :)</changelogtext>
<changelogtext>[b]New! [/b]Donation option in the about screen. Help to make Text Editor 8000 a better software! :)</changelogtext>
<changelogtext>[b]New! [/b]Setting to disable the "page system"</changelogtext>
<changelogtext>[b]New! [/b]Setting to ignore the back button</changelogtext>
<changelogtext>Fixed an issue related to cut/copy/past buttons</changelogtext>
@ -103,7 +103,7 @@
<changelogtext>[b]New! [/b]Create empty files with just one click</changelogtext>
<changelogtext>[b]New! [/b]Read only mode</changelogtext>
<changelogtext>[b]New! [/b]Autosave function, to save files when the app loses focus</changelogtext>
<changelogtext>[b]New! [/b]Share the text from other apps to Robut Editor</changelogtext>
<changelogtext>[b]New! [/b]Share the text from other apps to Text Editor 8000</changelogtext>
<changelogtext>[b]New! [/b]Style changes</changelogtext>
<changelogtext>Other enchantments and fixs</changelogtext>
</changelogversion>

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -61,7 +61,7 @@
<string name="codifica">Encoding</string>
<string name="condividi">Share</string>
<string name="info">Info</string>
<string name="nome_app_turbo_editor">Robut Editor</string>
<string name="nome_app_turbo_editor">Text Editor 8000</string>
<string name="preferenze">Preferences</string>
<string name="salva">Save</string>
<string name="save_as">Save as</string>

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -22,7 +22,7 @@
<string name="close">Close</string>
<string name="about_action">About</string>
<string name="about_message"><![CDATA[
Robut Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Text Editor 8000 is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
<br/>
Many thanks to all who

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -22,7 +22,7 @@
<string name="close">Close</string>
<string name="about_action">About</string>
<string name="about_message"><![CDATA[
Robut Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Text Editor 8000 is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
<br/>
Many thanks to all who

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -61,7 +61,7 @@
<string name="codifica">Encoding</string>
<string name="condividi">Share</string>
<string name="info">Info</string>
<string name="nome_app_turbo_editor">Robut Editor</string>
<string name="nome_app_turbo_editor">Text Editor 8000</string>
<string name="preferenze">Preferences</string>
<string name="salva">Save</string>
<string name="save_as">Save as</string>

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -22,7 +22,7 @@
<string name="close">Close</string>
<string name="about_action">About</string>
<string name="about_message"><![CDATA[
Robut Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Text Editor 8000 is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
<br/>
Many thanks to all who

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -61,7 +61,7 @@
<string name="codifica">Encoding</string>
<string name="condividi">Share</string>
<string name="info">Info</string>
<string name="nome_app_turbo_editor">Robut Editor</string>
<string name="nome_app_turbo_editor">Text Editor 8000</string>
<string name="preferenze">Preferences</string>
<string name="salva">Save</string>
<string name="save_as">Save as</string>

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -22,7 +22,7 @@
<string name="close">Close</string>
<string name="about_action">About</string>
<string name="about_message"><![CDATA[
Robut Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Text Editor 8000 is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
<br/>
Many thanks to all who

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -61,7 +61,7 @@
<string name="codifica">Encoding</string>
<string name="condividi">Share</string>
<string name="info">Info</string>
<string name="nome_app_turbo_editor">Robut Editor</string>
<string name="nome_app_turbo_editor">Text Editor 8000</string>
<string name="preferenze">Preferences</string>
<string name="salva">Save</string>
<string name="save_as">Save as</string>

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -22,7 +22,7 @@
<string name="close">Close</string>
<string name="about_action">About</string>
<string name="about_message"><![CDATA[
Robut Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Text Editor 8000 is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
<br/>
Many thanks to all who

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -61,7 +61,7 @@
<string name="codifica">Codifica</string>
<string name="condividi">Compartir</string>
<string name="info">Informació</string>
<string name="nome_app_turbo_editor">Robut Editor</string>
<string name="nome_app_turbo_editor">Text Editor 8000</string>
<string name="preferenze">Preferències</string>
<string name="salva">Desa</string>
<string name="save_as">Save as</string>

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -22,7 +22,7 @@
<string name="close">Close</string>
<string name="about_action">About</string>
<string name="about_message"><![CDATA[
Robut Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Text Editor 8000 is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
<br/>
Many thanks to all who

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -61,7 +61,7 @@
<string name="codifica">Kódování</string>
<string name="condividi">Sdílet</string>
<string name="info">Info</string>
<string name="nome_app_turbo_editor">Robut Editor</string>
<string name="nome_app_turbo_editor">Text Editor 8000</string>
<string name="preferenze">Předvolby</string>
<string name="salva">Uložit</string>
<string name="save_as">Save as</string>

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -22,7 +22,7 @@
<string name="close">Close</string>
<string name="about_action">About</string>
<string name="about_message"><![CDATA[
Robut Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Text Editor 8000 is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
<br/>
Many thanks to all who

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -61,7 +61,7 @@
<string name="codifica">Kodning</string>
<string name="condividi">Del</string>
<string name="info">Information</string>
<string name="nome_app_turbo_editor">Robut Editor</string>
<string name="nome_app_turbo_editor">Text Editor 8000</string>
<string name="preferenze">Indstillinger</string>
<string name="salva">Gem</string>
<string name="save_as">Save as</string>

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -22,7 +22,7 @@
<string name="close">Close</string>
<string name="about_action">About</string>
<string name="about_message"><![CDATA[
Robut Editor is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Text Editor 8000 is a free and <a href="http://github.com/vmihalachi/turbo-editor">open source</a> app.
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
<br/>
Many thanks to all who

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -22,7 +22,7 @@
<string name="close">Schließen</string>
<string name="about_action">Über</string>
<string name="about_message"><![CDATA[
Robut Editor ist eine freie und <a href="http://github.com/vmihalachi/turbo-editor">quelloffene</a> Anwendung.
Text Editor 8000 ist eine freie und <a href="http://github.com/vmihalachi/turbo-editor">quelloffene</a> Anwendung.
Copyright 2013-2014 <a href="https://plus.google.com/+VladMihalachi">Vlad Mihalachi</a>. All Rights Reserved.<br/>
<br/>
Vielen dank an alle Personen,

View File

@ -3,14 +3,14 @@
<!--
~ Copyright (C) 2014 Vlad Mihalachi
~
~ This file is part of Robut Editor.
~ This file is part of Text Editor 8000.
~
~ Robut Editor is free software: you can redistribute it and/or modify
~ Text Editor 8000 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.
~
~ Robut Editor is distributed in the hope that it will be useful,
~ Text Editor 8000 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.
@ -61,7 +61,7 @@
<string name="codifica">Κωδικοποίηση</string>
<string name="condividi">Μοίρασε</string>
<string name="info">Πληροφορίες</string>
<string name="nome_app_turbo_editor">Robut Editor</string>
<string name="nome_app_turbo_editor">Text Editor 8000</string>
<string name="preferenze">Προτιμήσεις</string>
<string name="salva">Αποθήκευση</string>
<string name="save_as">Save as</string>

Some files were not shown because too many files have changed in this diff Show More