Index: trunk/eCard/eCardMVC/Platnosci.Core/Interface/ITranslateManager.cs
===================================================================
--- trunk/eCard/eCardMVC/Platnosci.Core/Interface/ITranslateManager.cs (revision 927)
+++ trunk/eCard/eCardMVC/Platnosci.Core/Interface/ITranslateManager.cs (revision 927)
@@ -0,0 +1,12 @@
+﻿using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace Platnosci.Core.Interface
+{
+    public interface ITranslateManager
+    {
+        string Translate(string className, string keyName);
+    }
+}
Index: trunk/eCard/eCardMVC/Platnosci.Core/Platnosci.Core.csproj
===================================================================
--- trunk/eCard/eCardMVC/Platnosci.Core/Platnosci.Core.csproj (revision 903)
+++ trunk/eCard/eCardMVC/Platnosci.Core/Platnosci.Core.csproj (revision 927)
@@ -70,5 +70,5 @@
     <Compile Include="Interface\IIdentifiable.cs" />
     <Compile Include="Interface\IRepository.cs" />
-    <Compile Include="Interface\ITranslate.cs" />
+    <Compile Include="Interface\ITranslateManager.cs" />
     <Compile Include="Linq\DataContext1.cs" />
     <Compile Include="Linq\Payer.cs" />
@@ -85,5 +85,5 @@
     <Compile Include="Linq\PotwierdzeniaEcard.cs" />
     <Compile Include="Linq\Repository.cs" />
-    <Compile Include="Linq\Translate.cs" />
+    <Compile Include="Linq\Translation.cs" />
     <Compile Include="Linq\vPlatnosciEcard.cs" />
     <Compile Include="Linq\Waluta.cs" />
Index: trunk/eCard/eCardMVC/Platnosci.Core/Linq/Translation.cs
===================================================================
--- trunk/eCard/eCardMVC/Platnosci.Core/Linq/Translation.cs (revision 927)
+++ trunk/eCard/eCardMVC/Platnosci.Core/Linq/Translation.cs (revision 927)
@@ -0,0 +1,19 @@
+﻿using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using Platnosci.Core.Interface;
+
+namespace Platnosci.Core.Linq
+{
+    public class Translation: ITranslateManager
+    {
+        public string Translate(string className, string keyName)
+        {
+            string strName = HttpContext.GetGlobalResourceObject(className, keyName).ToString();
+            return strName;
+        }
+
+        
+    }
+}
