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

Side by Side Diff: chrome/browser/chromeos/extensions/file_browser_private_api.cc

Issue 9808012: More strings for GData (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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
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 #include "chrome/browser/chromeos/extensions/file_browser_private_api.h" 5 #include "chrome/browser/chromeos/extensions/file_browser_private_api.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/base64.h" 9 #include "base/base64.h"
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 1459 matching lines...) Expand 10 before | Expand all | Expand 10 after
1470 1470
1471 SET_STRING(IDS_FILE_BROWSER, COMPUTING_SELECTION); 1471 SET_STRING(IDS_FILE_BROWSER, COMPUTING_SELECTION);
1472 SET_STRING(IDS_FILE_BROWSER, ONE_FILE_SELECTED); 1472 SET_STRING(IDS_FILE_BROWSER, ONE_FILE_SELECTED);
1473 SET_STRING(IDS_FILE_BROWSER, ONE_DIRECTORY_SELECTED); 1473 SET_STRING(IDS_FILE_BROWSER, ONE_DIRECTORY_SELECTED);
1474 SET_STRING(IDS_FILE_BROWSER, MANY_FILES_SELECTED); 1474 SET_STRING(IDS_FILE_BROWSER, MANY_FILES_SELECTED);
1475 SET_STRING(IDS_FILE_BROWSER, MANY_DIRECTORIES_SELECTED); 1475 SET_STRING(IDS_FILE_BROWSER, MANY_DIRECTORIES_SELECTED);
1476 SET_STRING(IDS_FILE_BROWSER, MANY_ENTRIES_SELECTED); 1476 SET_STRING(IDS_FILE_BROWSER, MANY_ENTRIES_SELECTED);
1477 1477
1478 SET_STRING(IDS_FILE_BROWSER, OFFLINE_HEADER); 1478 SET_STRING(IDS_FILE_BROWSER, OFFLINE_HEADER);
1479 SET_STRING(IDS_FILE_BROWSER, OFFLINE_MESSAGE); 1479 SET_STRING(IDS_FILE_BROWSER, OFFLINE_MESSAGE);
1480 SET_STRING(IDS_FILE_BROWSER, OFFLINE_MESSAGE_PLURAL);
1481 SET_STRING(IDS_FILE_BROWSER, GDATA_OUT_OF_SPACE_HEADER);
1482 SET_STRING(IDS_FILE_BROWSER, GDATA_OUT_OF_SPACE_MESSAGE);
1480 SET_STRING(IDS_FILE_BROWSER, NO_ACTION_FOR_FILE); 1483 SET_STRING(IDS_FILE_BROWSER, NO_ACTION_FOR_FILE);
1481 1484
1482 // MP3 metadata extractor plugin 1485 // MP3 metadata extractor plugin
1483 SET_STRING(IDS_FILE_BROWSER, ID3_ALBUM); // TALB 1486 SET_STRING(IDS_FILE_BROWSER, ID3_ALBUM); // TALB
1484 SET_STRING(IDS_FILE_BROWSER, ID3_BPM); // TBPM 1487 SET_STRING(IDS_FILE_BROWSER, ID3_BPM); // TBPM
1485 SET_STRING(IDS_FILE_BROWSER, ID3_COMPOSER); // TCOM 1488 SET_STRING(IDS_FILE_BROWSER, ID3_COMPOSER); // TCOM
1486 SET_STRING(IDS_FILE_BROWSER, ID3_COPYRIGHT_MESSAGE); // TCOP 1489 SET_STRING(IDS_FILE_BROWSER, ID3_COPYRIGHT_MESSAGE); // TCOP
1487 SET_STRING(IDS_FILE_BROWSER, ID3_DATE); // TDAT 1490 SET_STRING(IDS_FILE_BROWSER, ID3_DATE); // TDAT
1488 SET_STRING(IDS_FILE_BROWSER, ID3_PLAYLIST_DELAY); // TDLY 1491 SET_STRING(IDS_FILE_BROWSER, ID3_PLAYLIST_DELAY); // TDLY
1489 SET_STRING(IDS_FILE_BROWSER, ID3_ENCODED_BY); // TENC 1492 SET_STRING(IDS_FILE_BROWSER, ID3_ENCODED_BY); // TENC
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
1842 source_url_.GetOrigin(), 1845 source_url_.GetOrigin(),
1843 &file_url)) { 1846 &file_url)) {
1844 result->SetString("fileUrl", file_url.spec()); 1847 result->SetString("fileUrl", file_url.spec());
1845 } 1848 }
1846 1849
1847 responses->Append(result.release()); 1850 responses->Append(result.release());
1848 } 1851 }
1849 result_.reset(responses.release()); 1852 result_.reset(responses.release());
1850 SendResponse(true); 1853 SendResponse(true);
1851 } 1854 }
OLDNEW
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/resources/file_manager/js/file_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698