-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
API Rename getActiveJob to getPendingJob, add last updated date to re…
…port
- Loading branch information
1 parent
409319f
commit 3fc275c
Showing
8 changed files
with
106 additions
and
30 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
en: | ||
BringYourOwnIdeas\Maintenance\Forms\GridFieldDropdownFilter: | ||
AllResults: 'All results' | ||
BringYourOwnIdeas\Maintenance\Model\Package: | ||
PLURALNAME: Packages | ||
PLURALS: | ||
one: 'A Package' | ||
other: '{count} Packages' | ||
SINGULARNAME: Package | ||
BringYourOwnIdeas\Maintenance\Reports\SiteSummary: | ||
FilterSupported: 'Supported modules' | ||
FilterUnsupported: 'Unsupported modules' | ||
LAST_UPDATED: 'Last updated {updated}' | ||
LINK_TO_ADDONS: 'Explore Addons' | ||
ShowAllModules: 'Show all modules' | ||
TITLE: 'Installed modules' | ||
VERSION: Version | ||
VersionUnknown: Unknown | ||
BringYourOwnIdeas\Maintenance\Tasks\UpdatePackageInfoTask: | ||
DESCRIPTION: 'Repopulates installation summary, listing installed modules and information associated with each.' | ||
TITLE: 'Refresh installed package info' | ||
CheckForUpdates: | ||
TITLE: 'Check for updates' | ||
GridFieldRefreshButton: | ||
MESSAGE: 'Updating this list may take 2-3 minutes. You can continue to use the CMS while we run the update.' | ||
REFRESH: 'Check for updates' | ||
UPDATE: Updating... | ||
SiteSummary: | ||
AddonsLinkTitle: 'View {package} on addons.silverstripe.org' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
templates/BringYourOwnIdeas/Maintenance/Forms/GridFieldRefreshButton.ss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<span class="grid-refresh-button" id="checkForUpdates"> | ||
<span class="grid-refresh-button site-summary__check-for-updates" id="checkForUpdates"> | ||
$Button | ||
</span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
<div class="site-summary__clearfix"></div> | ||
<h3>{$Title.XML}: {$Version.XML}</h3> | ||
<h3>{$Title}: {$Version}</h3> | ||
<p class="site-summary__last-updated"> | ||
<%t BringYourOwnIdeas\\Maintenance\\Reports\\SiteSummary.LAST_UPDATED "Last updated {updated}" updated=$LastUpdated %> | ||
</p> |