Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(568)

Side by Side Diff: chrome/browser/resources/file_manager/js/mock_chrome.js

Issue 10832036: Remove comma in date for today and yesterday. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 function MockEventSource() { 5 function MockEventSource() {
6 this.listeners_ = []; 6 this.listeners_ = [];
7 } 7 }
8 8
9 /** 9 /**
10 * Add a listener. 10 * Add a listener.
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after
653 TAR_GZIP_ARCHIVE_FILE_TYPE: 'Gzip compressed tar archive', 653 TAR_GZIP_ARCHIVE_FILE_TYPE: 'Gzip compressed tar archive',
654 PLAIN_TEXT_FILE_TYPE: 'Plain text file', 654 PLAIN_TEXT_FILE_TYPE: 'Plain text file',
655 PDF_DOCUMENT_FILE_TYPE: 'PDF document', 655 PDF_DOCUMENT_FILE_TYPE: 'PDF document',
656 WORD_DOCUMENT_FILE_TYPE: 'Word document', 656 WORD_DOCUMENT_FILE_TYPE: 'Word document',
657 POWERPOINT_PRESENTATION_FILE_TYPE: 'PowerPoint presentation', 657 POWERPOINT_PRESENTATION_FILE_TYPE: 'PowerPoint presentation',
658 EXCEL_FILE_TYPE: 'Excel spreadsheet', 658 EXCEL_FILE_TYPE: 'Excel spreadsheet',
659 659
660 SEARCH_TEXT_LABEL: 'Search', 660 SEARCH_TEXT_LABEL: 'Search',
661 SEARCH_NO_MATCHING_FILES: 'No files match <b>"$1"</b>', 661 SEARCH_NO_MATCHING_FILES: 'No files match <b>"$1"</b>',
662 662
663 TIME_TODAY: 'Today, $1', 663 TIME_TODAY: 'Today $1',
664 TIME_YESTERDAY: 'Yesterday, $1', 664 TIME_YESTERDAY: 'Yesterday $1',
665 665
666 ALL_FILES_FILTER: 'All files', 666 ALL_FILES_FILTER: 'All files',
667 667
668 DEFAULT_ACTION_LABEL: '(default)', 668 DEFAULT_ACTION_LABEL: '(default)',
669 ASH: true, 669 ASH: true,
670 DETAIL_VIEW_TOOLTIP: 'List view', 670 DETAIL_VIEW_TOOLTIP: 'List view',
671 THUMBNAIL_VIEW_TOOLTIP: 'Thumbnail view', 671 THUMBNAIL_VIEW_TOOLTIP: 'Thumbnail view',
672 textdirection: '' 672 textdirection: ''
673 }); 673 });
674 } 674 }
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
816 compare: function(a, b) { 816 compare: function(a, b) {
817 if (a > b) return 1; 817 if (a > b) return 1;
818 if (a < b) return -1; 818 if (a < b) return -1;
819 return 0; 819 return 0;
820 } 820 }
821 }; 821 };
822 }; 822 };
823 823
824 return v8Intl; 824 return v8Intl;
825 }()); 825 }());
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698