~ubuntu-branches/ubuntu/wily/webbrowser-app/wily-proposed

« back to all changes in this revision

Viewing changes to src/Ubuntu/Browser/ErrorSheet.qml

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2013-06-05 05:03:05 UTC
  • Revision ID: package-import@ubuntu.com-20130605050305-qgpd9x3s01m06dca
Tags: upstream-0.20daily13.06.05
ImportĀ upstreamĀ versionĀ 0.20daily13.06.05

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2013 Canonical Ltd.
 
3
 *
 
4
 * This file is part of webbrowser-app.
 
5
 *
 
6
 * webbrowser-app is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; version 3.
 
9
 *
 
10
 * webbrowser-app is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 */
 
18
 
 
19
import QtQuick 2.0
 
20
import Ubuntu.Components 0.1
 
21
 
 
22
Rectangle {
 
23
    property string url
 
24
 
 
25
    signal refreshClicked()
 
26
 
 
27
    color: "white"
 
28
 
 
29
    Column {
 
30
        anchors.fill: parent
 
31
        anchors.margins: units.gu(4)
 
32
 
 
33
        spacing: units.gu(3)
 
34
 
 
35
        Label {
 
36
            width: parent.width
 
37
            fontSize: "x-large"
 
38
            text: i18n.tr("Network Error")
 
39
        }
 
40
 
 
41
        Label {
 
42
            width: parent.width
 
43
            text: i18n.tr("It appears you are having trouble viewing: %1.").arg(url)
 
44
            wrapMode: Text.Wrap
 
45
        }
 
46
 
 
47
        Label {
 
48
            width: parent.width
 
49
            text: i18n.tr("Ubuntu suggests you check your network settings and try refreshing the page.")
 
50
            wrapMode: Text.Wrap
 
51
        }
 
52
 
 
53
        Button {
 
54
            text: i18n.tr("Refresh page")
 
55
            width: units.gu(16)
 
56
            onClicked: refreshClicked()
 
57
        }
 
58
    }
 
59
}