comparison filestatuswidget.cpp @ 162:910c2c5d1873

* Better handling of empty repositories; some tidying & textual fixes
author Chris Cannam
date Fri, 03 Dec 2010 14:43:32 +0000
parents 70fe12873106
children 5c262ac73948
comparison
equal deleted inserted replaced
161:5b2046f67a56 162:910c2c5d1873
60 60
61 layout->addWidget(new QLabel("<qt><hr></qt>"), ++row, 0, 1, 3); 61 layout->addWidget(new QLabel("<qt><hr></qt>"), ++row, 0, 1, 3);
62 62
63 ++row; 63 ++row;
64 m_noModificationsLabel = new QLabel 64 m_noModificationsLabel = new QLabel
65 (tr("You have made no changes.")); 65 (tr("You have no uncommitted changes."));
66 layout->addWidget(m_noModificationsLabel, row, 1, 1, 2); 66 layout->addWidget(m_noModificationsLabel, row, 1, 1, 2);
67 67
68 m_simpleLabels[FileStates::Clean] = tr("Unmodified:"); 68 m_simpleLabels[FileStates::Clean] = tr("Unmodified:");
69 m_simpleLabels[FileStates::Modified] = tr("Modified:"); 69 m_simpleLabels[FileStates::Modified] = tr("Modified:");
70 m_simpleLabels[FileStates::Added] = tr("Added:"); 70 m_simpleLabels[FileStates::Added] = tr("Added:");