Integrated file selection dialogue with the main code. Improved the
[openvpnui.git] / qml / filebrowse / pages / AboutPage.qml
1 import QtQuick 2.0
2 import Sailfish.Silica 1.0
3
4 Page {
5     id: page
6     allowedOrientations: Orientation.All
7
8     SilicaFlickable {
9         id: flickable
10         anchors.fill: parent
11         contentHeight: column.height
12         VerticalScrollDecorator { flickable: flickable }
13
14         Column {
15             id: column
16             anchors.left: parent.left
17             anchors.right: parent.right
18             anchors.leftMargin: Theme.paddingLarge
19             anchors.rightMargin: Theme.paddingLarge
20
21             PageHeader { title: qsTr("Public Domain") }
22
23             Label {
24                 width: parent.width
25                 wrapMode: Text.Wrap
26                 font.pixelSize: Theme.fontSizeSmall
27                 color: Theme.highlightColor
28                 text: "This is free and unencumbered software released into the public domain."+
29                       "\n\n"+
30                       "Anyone is free to copy, modify, publish, use, compile, sell, or "+
31                       "distribute this software, either in source code form or as a compiled "+
32                       "binary, for any purpose, commercial or non-commercial, and by any "+
33                       "means."+
34                       "\n\n"+
35                       "In jurisdictions that recognize copyright laws, the author or authors "+
36                       "of this software dedicate any and all copyright interest in the "+
37                       "software to the public domain. We make this dedication for the benefit "+
38                       "of the public at large and to the detriment of our heirs and "+
39                       "successors. We intend this dedication to be an overt act of "+
40                       "relinquishment in perpetuity of all present and future rights to this "+
41                       "software under copyright law."+
42                       "\n\n"+
43                       "THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, "+
44                       "EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF "+
45                       "MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. "+
46                       "IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR "+
47                       "OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, "+
48                       "ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR "+
49                       "OTHER DEALINGS IN THE SOFTWARE."+
50                       "\n\n"+
51                       "For more information, please refer to <http://unlicense.org>"
52             }
53         }
54     }
55
56 }
57
58