diff options
| author | Greg Roach <fisharebest@gmail.com> | 2016-06-22 00:13:48 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2016-06-22 00:26:30 +0100 |
| commit | 91e873d9b307ef6adcae869e1ff1a1704931f211 (patch) | |
| tree | 6e52724f5d8a82fbcde92f136f90c091275bc232 /app/Module/ClippingsCartModule.php | |
| parent | f6d17dc2a569b0163bdda900596030f303e7409d (diff) | |
| download | webtrees-91e873d9b307ef6adcae869e1ff1a1704931f211.tar.gz webtrees-91e873d9b307ef6adcae869e1ff1a1704931f211.tar.bz2 webtrees-91e873d9b307ef6adcae869e1ff1a1704931f211.zip | |
Fix #1005 - button labels
Diffstat (limited to 'app/Module/ClippingsCartModule.php')
| -rw-r--r-- | app/Module/ClippingsCartModule.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Module/ClippingsCartModule.php b/app/Module/ClippingsCartModule.php index 6a870724b9..6ebc4bd25c 100644 --- a/app/Module/ClippingsCartModule.php +++ b/app/Module/ClippingsCartModule.php @@ -429,7 +429,7 @@ class ClippingsCartModule extends AbstractModule implements ModuleMenuInterface, <tr> <td class="topbottombar" colspan="2"> - <input type="submit" value="<?php echo I18N::translate('Download'); ?>"> + <input type="submit" value="<?php echo /* I18N: A button label. */ I18N::translate('download'); ?>"> </td> </tr> </table> @@ -793,8 +793,8 @@ class ClippingsCartModule extends AbstractModule implements ModuleMenuInterface, </td></tr> <tr><td class="topbottombar" colspan="2"> - <input type="button" value="' . I18N::translate('Cancel') . '" onclick="cancelDownload();"> - <input type="submit" value="' . I18N::translate('Download') . '"> + <input type="button" value="' . /* I18N: A button label. */ I18N::translate('cancel') . '" onclick="cancelDownload();"> + <input type="submit" value="' . /* I18N: A button label. */ I18N::translate('download') . '"> </form>'; return $out; |
