File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -1000,7 +1000,10 @@ Here is how you can configure the Symfony2 reverse proxy to support the
1000
1000
``PURGE `` HTTP method::
1001
1001
1002
1002
// app/AppCache.php
1003
- class AppCache extends Cache
1003
+
1004
+ use Symfony\Bundle\FrameworkBundle\HttpCache\HttpCache;
1005
+
1006
+ class AppCache extends HttpCache
1004
1007
{
1005
1008
protected function invalidate(Request $request)
1006
1009
{
Original file line number Diff line number Diff line change @@ -322,7 +322,7 @@ Creating Translations
322
322
323
323
The act of creating translation files is an important part of "localization"
324
324
(often abbreviated `L10n `_). Translation files consist of a series of
325
- id-translation pairs for the given domain and locale. The id is the identifier
325
+ id-translation pairs for the given domain and locale. The source is the identifier
326
326
for the individual translation, and can be the message in the main locale (e.g.
327
327
"Symfony is great") of your application or a unique identifier (e.g.
328
328
"symfony2.great" - see the sidebar below):
You can’t perform that action at this time.
0 commit comments