- ICultureSelector to set current request culture.

- Default implementation uses site setting with a low priority.
- Tests.

--HG--
branch : dev
This commit is contained in:
Suha Can
2010-06-01 15:00:28 -07:00
parent c15566fd9c
commit c37ee71c16
11 changed files with 89 additions and 3 deletions

View File

@@ -123,6 +123,11 @@ namespace Orchard.Setup {
get { return ""; }
set { throw new NotImplementedException(); }
}
public string SiteCulture {
get { return ""; }
set { throw new NotImplementedException(); }
}
}
}
}