diff --git a/configure b/configure
index 3b5dc779157ca05ac6d1403d089d2505279b56df..ff0a29a830057185c0fcf69654b7257f10bc8027 100755
--- a/configure
+++ b/configure
@@ -15117,7 +15117,7 @@ wine_fn_config_dll ole32 enable_ole32 implib
 wine_fn_config_test dlls/ole32/tests ole32_test
 wine_fn_config_dll oleacc enable_oleacc implib
 wine_fn_config_test dlls/oleacc/tests oleacc_test
-wine_fn_config_dll oleaut32 enable_oleaut32 implib
+wine_fn_config_dll oleaut32 enable_oleaut32 po,implib
 wine_fn_config_test dlls/oleaut32/tests oleaut32_test
 wine_fn_config_dll olecli.dll16 enable_win16
 wine_fn_config_dll olecli32 enable_olecli32 implib
diff --git a/configure.ac b/configure.ac
index bb37216a14914c3fc5a4e7173e3b769496c44a9f..306b8dfc3c845ea834757fb7b9055f3b7c15db7d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2646,7 +2646,7 @@ WINE_CONFIG_DLL(ole32,,[implib])
 WINE_CONFIG_TEST(dlls/ole32/tests)
 WINE_CONFIG_DLL(oleacc,,[implib])
 WINE_CONFIG_TEST(dlls/oleacc/tests)
-WINE_CONFIG_DLL(oleaut32,,[implib])
+WINE_CONFIG_DLL(oleaut32,,[po,implib])
 WINE_CONFIG_TEST(dlls/oleaut32/tests)
 WINE_CONFIG_DLL(olecli.dll16,enable_win16)
 WINE_CONFIG_DLL(olecli32,,[implib])
diff --git a/dlls/oleaut32/Makefile.in b/dlls/oleaut32/Makefile.in
index a1e6de6009635f3aada21e142851a518314d54c7..de61a256fc891fd338f44ae7d4689257de38482a 100644
--- a/dlls/oleaut32/Makefile.in
+++ b/dlls/oleaut32/Makefile.in
@@ -24,35 +24,8 @@ C_SRCS = \
 	variant.c \
 	vartype.c
 
-RC_SRCS = \
-	oleaut32_Bg.rc \
-	oleaut32_Cy.rc \
-	oleaut32_Cz.rc \
-	oleaut32_Da.rc \
-	oleaut32_De.rc \
-	oleaut32_El.rc \
-	oleaut32_En.rc \
-	oleaut32_Eo.rc \
-	oleaut32_Es.rc \
-	oleaut32_Fr.rc \
-	oleaut32_Hu.rc \
-	oleaut32_It.rc \
-	oleaut32_Ko.rc \
-	oleaut32_Lt.rc \
-	oleaut32_Nl.rc \
-	oleaut32_No.rc \
-	oleaut32_Pl.rc \
-	oleaut32_Pt.rc \
-	oleaut32_Ro.rc \
-	oleaut32_Ru.rc \
-	oleaut32_Si.rc \
-	oleaut32_Sr.rc \
-	oleaut32_Sv.rc \
-	oleaut32_Th.rc \
-	oleaut32_Tr.rc \
-	oleaut32_Uk.rc \
-	oleaut32_Zh.rc \
-	rsrc.rc
+RC_SRCS = oleaut32.rc
+PO_SRCS = oleaut32.rc
 
 IDL_P_SRCS = \
 	oleaut32_oaidl.idl \
diff --git a/dlls/oleaut32/rsrc.rc b/dlls/oleaut32/oleaut32.rc
similarity index 79%
rename from dlls/oleaut32/rsrc.rc
rename to dlls/oleaut32/oleaut32.rc
index 081f2953f5fefb1259071a91fc6530814347cf64..b4612c0796f6e74bb60061196b70e2482075dcb9 100644
--- a/dlls/oleaut32/rsrc.rc
+++ b/dlls/oleaut32/oleaut32.rc
@@ -1,5 +1,7 @@
 /*
- * Copyright 2001 Dmitry Timoshkov
+ * Resources for oleaut32
+ *
+ * Copyright 2003 Jon Griffiths
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -16,6 +18,22 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  */
 
+#include "resource.h"
+
+LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
+
+STRINGTABLE
+{
+  IDS_TRUE  "True"
+  IDS_FALSE "False"
+  IDS_YES   "Yes"
+  IDS_NO    "No"
+  IDS_ON    "On"
+  IDS_OFF   "Off"
+}
+
+LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
+
 /* @makedep: oleaut32.rgs */
 1 WINE_REGISTRY oleaut32.rgs
 
diff --git a/dlls/oleaut32/oleaut32_Bg.rc b/dlls/oleaut32/oleaut32_Bg.rc
deleted file mode 100644
index 70b8debe73ca1a589771a651e8fbeb455fa9d243..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Bg.rc
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Bulgarian resources for oleaut32
- *
- * Copyright 2005 Milko Krachounov
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_BULGARIAN, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-  IDS_TRUE  "Истина"
-  IDS_FALSE "Лъжа"
-  IDS_YES   "Да"
-  IDS_NO    "Не"
-  IDS_ON    "Включено"
-  IDS_OFF   "Изключено"
-}
diff --git a/dlls/oleaut32/oleaut32_Cy.rc b/dlls/oleaut32/oleaut32_Cy.rc
deleted file mode 100644
index af9428059e07553ed96b1f92a5a87c2031264ea1..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Cy.rc
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Cefnogaeth iaith Cymraeg
- * Welsh language support
- *
- * Copyright 2010 Ken Sharp
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_WELSH, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-  IDS_TRUE  "Gwir"
-  IDS_FALSE "Ffug"
-  IDS_YES   "Ydw"
-  IDS_NO    "Dim"
-  IDS_ON    "Ar"
-  IDS_OFF   "Off"
-}
diff --git a/dlls/oleaut32/oleaut32_Cz.rc b/dlls/oleaut32/oleaut32_Cz.rc
deleted file mode 100644
index 680143b31271fa59452f5cc03f5f270cd0a9a497..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Cz.rc
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Czech resources for oleaut32
- *
- * Copyright 2003 Jon Griffiths
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_CZECH, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-  IDS_TRUE  "Pravda"
-  IDS_FALSE "Nepravda"
-  IDS_YES   "Ano"
-  IDS_NO    "Ne"
-  IDS_ON    "Zapnuto"
-  IDS_OFF   "Vypnuto"
-}
diff --git a/dlls/oleaut32/oleaut32_Da.rc b/dlls/oleaut32/oleaut32_Da.rc
deleted file mode 100644
index 1f54db37f0a5e88968b287dfea4fa91068e063bf..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Da.rc
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Danish resources for oleaut32
- *
- * Copyright 2003 Jon Griffiths
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_DANISH, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-  IDS_TRUE  "Sand"
-  IDS_FALSE "Falsk"
-  IDS_YES   "Ja"
-  IDS_NO    "Nej"
-  IDS_ON    "Til"
-  IDS_OFF   "Fra"
-}
diff --git a/dlls/oleaut32/oleaut32_De.rc b/dlls/oleaut32/oleaut32_De.rc
deleted file mode 100644
index 61a3c260e41329f897d70e1adce602368c4e5a59..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_De.rc
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * German resources for oleaut32
- *
- * Copyright 2003 Jon Griffiths
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-#pragma code_page(65001)
-
-LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
-
-STRINGTABLE
-{
-  IDS_TRUE  "Wahr"
-  IDS_FALSE "Falsch"
-  IDS_YES   "Ja"
-  IDS_NO    "Nein"
-  IDS_ON    "Ein"
-  IDS_OFF   "Aus"
-}
diff --git a/dlls/oleaut32/oleaut32_El.rc b/dlls/oleaut32/oleaut32_El.rc
deleted file mode 100644
index 73745041facb8982b3fae65db070a33cc21ac25a..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_El.rc
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Greek resources for oleaut32
- *
- * Copyright 200 Apostolos Alexiadis
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_GREEK, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-  IDS_TRUE  "БлзиЭт"
-  IDS_FALSE "ШехдЭт"
-  IDS_YES   "Нбй"
-  IDS_NO    "ьчй"
-  IDS_ON    "Енесгь"
-  IDS_OFF   "Бненесгь"
-}
diff --git a/dlls/oleaut32/oleaut32_En.rc b/dlls/oleaut32/oleaut32_En.rc
deleted file mode 100644
index f35200465cee8aa03753cd40c600a0acb4244cc2..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_En.rc
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * English resources for oleaut32
- *
- * Copyright 2003 Jon Griffiths
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-  IDS_TRUE  "True"
-  IDS_FALSE "False"
-  IDS_YES   "Yes"
-  IDS_NO    "No"
-  IDS_ON    "On"
-  IDS_OFF   "Off"
-}
diff --git a/dlls/oleaut32/oleaut32_Eo.rc b/dlls/oleaut32/oleaut32_Eo.rc
deleted file mode 100644
index 15b7b5b60cd6bd4f6530597654de4985bbdfa021..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Eo.rc
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Oleaut32 - Esperanto Language Support
- *
- * Copyright 2006 Antonio Codazzi
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_ESPERANTO, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-  IDS_TRUE  "Vere"
-  IDS_FALSE "False"
-  IDS_YES   "Jes"
-  IDS_NO    "Ne"
-  IDS_ON    "Kondukta"
-  IDS_OFF   "Elkluda"
-}
diff --git a/dlls/oleaut32/oleaut32_Es.rc b/dlls/oleaut32/oleaut32_Es.rc
deleted file mode 100644
index eeb3d9080a68c0305e61f33ceab9a108799ec6f3..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Es.rc
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Spanish resources for oleaut32
- *
- * Copyright 2003 Jon Griffiths
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL
-
-STRINGTABLE
-{
-  IDS_TRUE  "Verdadero"
-  IDS_FALSE "Falso"
-  IDS_YES   "Sн"
-  IDS_NO    "No"
-  IDS_ON    "Activado"
-  IDS_OFF   "Desactivado"
-}
diff --git a/dlls/oleaut32/oleaut32_Fr.rc b/dlls/oleaut32/oleaut32_Fr.rc
deleted file mode 100644
index 1583bd1d3c27fa5e379bb338d7c235f488ec7750..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Fr.rc
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * French resources for oleaut32
- *
- * Copyright 2003 Jon Griffiths
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
-
-STRINGTABLE
-{
-  IDS_TRUE  "Vrai"
-  IDS_FALSE "Faux"
-  IDS_YES   "Oui"
-  IDS_NO    "Non"
-  IDS_ON    "Actif"
-  IDS_OFF   "Inactif"
-}
diff --git a/dlls/oleaut32/oleaut32_Hu.rc b/dlls/oleaut32/oleaut32_Hu.rc
deleted file mode 100644
index 5705441b74a51d609f23886d103b7f6aee20020c..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Hu.rc
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Hungarian resources for oleaut32
- *
- * Copyright 2003 Jon Griffiths
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_HUNGARIAN, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-  IDS_TRUE  "Igaz"
-  IDS_FALSE "Hamis"
-  IDS_YES   "Igen"
-  IDS_NO    "Nem"
-  IDS_ON    "Be"
-  IDS_OFF   "Ki"
-}
diff --git a/dlls/oleaut32/oleaut32_It.rc b/dlls/oleaut32/oleaut32_It.rc
deleted file mode 100644
index 753614a6dcb65f524cbf58383c5a649e9b612cc1..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_It.rc
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Italian resources for oleaut32
- *
- * Copyright 2003 Jon Griffiths
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-/* UTF-8 */
-#pragma code_page(65001)
-
-LANGUAGE LANG_ITALIAN, SUBLANG_NEUTRAL
-
-STRINGTABLE
-{
-  IDS_TRUE  "Vero"
-  IDS_FALSE "Falso"
-  IDS_YES   "Sì"
-  IDS_NO    "No"
-  IDS_ON    "On"
-  IDS_OFF   "Off"
-}
diff --git a/dlls/oleaut32/oleaut32_Ko.rc b/dlls/oleaut32/oleaut32_Ko.rc
deleted file mode 100644
index 318a8c58d31d68dcebbdcf92b71d8a23fc3ebf37..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Ko.rc
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Korean resources for oleaut32
- *
- * Copyright 2005,2010 YunSong Hwang
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-#pragma code_page(65001)
-
-LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-  IDS_TRUE  "진실"
-  IDS_FALSE "거짓"
-  IDS_YES   "예"
-  IDS_NO    "아니오"
-  IDS_ON    "мћ‘лЏ™"
-  IDS_OFF   "비작동"
-}
diff --git a/dlls/oleaut32/oleaut32_Lt.rc b/dlls/oleaut32/oleaut32_Lt.rc
deleted file mode 100644
index 1eca35f37349076b5ed106d82a61ed685b859d6f..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Lt.rc
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Lithuanian resources for oleaut32
- *
- * Copyright 2009 Aurimas FiЕЎeras <aurimas@gmail.com>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-/* UTF-8 */
-#pragma code_page(65001)
-
-LANGUAGE LANG_LITHUANIAN, SUBLANG_NEUTRAL
-
-STRINGTABLE
-{
-  IDS_TRUE  "Tiesa"
-  IDS_FALSE "Netiesa"
-  IDS_YES   "Taip"
-  IDS_NO    "Ne"
-  IDS_ON    "Д®jungta"
-  IDS_OFF   "IЕЎjungta"
-}
diff --git a/dlls/oleaut32/oleaut32_Nl.rc b/dlls/oleaut32/oleaut32_Nl.rc
deleted file mode 100644
index 513ba61cb6c32824c6e8f686327e5fd8a226ce50..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Nl.rc
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Dutch resources for oleaut32
- *
- * Copyright 2003 Jon Griffiths
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL
-
-STRINGTABLE
-{
-  IDS_TRUE  "Waar"
-  IDS_FALSE "Onwaar"
-  IDS_YES   "Ja"
-  IDS_NO    "Nee"
-  IDS_ON    "Aan"
-  IDS_OFF   "Uit"
-}
diff --git a/dlls/oleaut32/oleaut32_No.rc b/dlls/oleaut32/oleaut32_No.rc
deleted file mode 100644
index 8dbd0efa097f04cfdfc1006751d867e7e5ea43ff..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_No.rc
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Norwegian resources for oleaut32
- *
- * Copyright 2003 Jon Griffiths
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-#pragma code_page(65001)
-
-LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
-
-STRINGTABLE
-{
-  IDS_TRUE  "Sann"
-  IDS_FALSE "Usann"
-  IDS_YES   "Ja"
-  IDS_NO    "Nei"
-  IDS_ON    "PГҐ"
-  IDS_OFF   "Av"
-}
diff --git a/dlls/oleaut32/oleaut32_Pl.rc b/dlls/oleaut32/oleaut32_Pl.rc
deleted file mode 100644
index f80bc80a1fb3e17537b93577a714c3514162da69..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Pl.rc
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Polish resources for oleaut32
- *
- * Copyright 2003 Jon Griffiths
- * Copyright 2004 Jacek Caban
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_POLISH, SUBLANG_DEFAULT 
-
-STRINGTABLE
-{
-  IDS_TRUE  "Prawda"
-  IDS_FALSE "Faіsz"
-  IDS_YES   "Tak"
-  IDS_NO    "Nie"
-  IDS_ON    "Wі№czone"
-  IDS_OFF   "Wyі№czone"
-}
diff --git a/dlls/oleaut32/oleaut32_Pt.rc b/dlls/oleaut32/oleaut32_Pt.rc
deleted file mode 100644
index 484990de8ad14735eeb8a02ab949e7a92e12493b..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Pt.rc
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Portuguese resources for oleaut32
- *
- * Copyright 2003 Marcelo Duarte
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_PORTUGUESE, SUBLANG_NEUTRAL
-
-STRINGTABLE
-{
-  IDS_TRUE  "Verdadeiro"
-  IDS_FALSE "Falso"
-  IDS_YES   "Sim"
-  IDS_NO    "Nгo"
-  IDS_ON    "Ligado"
-  IDS_OFF   "Desligado"
-}
diff --git a/dlls/oleaut32/oleaut32_Ro.rc b/dlls/oleaut32/oleaut32_Ro.rc
deleted file mode 100644
index 1b80fa2fe2e1f070d4ae5d19a95bc266fbc17db2..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Ro.rc
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright 2003 Jon Griffiths
- * Copyright 2008 Michael Stefaniuc
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL
-
-#pragma code_page(65001)
-
-STRINGTABLE
-{
-  IDS_TRUE  "AdevДѓrat"
-  IDS_FALSE "Fals"
-  IDS_YES   "Da"
-  IDS_NO    "Nu"
-  IDS_ON    "Activat"
-  IDS_OFF   "Dezactivat"
-}
diff --git a/dlls/oleaut32/oleaut32_Ru.rc b/dlls/oleaut32/oleaut32_Ru.rc
deleted file mode 100644
index 1545bffd07b83a9bd03ceed88a34fe6b389283e0..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Ru.rc
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Russian resources for oleaut32
- *
- * Copyright 2004 Dmitry Timoshkov
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-/* UTF-8 */
-#pragma code_page(65001)
-
-LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-  IDS_TRUE  "Правда"
-  IDS_FALSE "Ложь"
-  IDS_YES   "Да"
-  IDS_NO    "Нет"
-  IDS_ON    "Включено"
-  IDS_OFF   "Выключено"
-}
diff --git a/dlls/oleaut32/oleaut32_Si.rc b/dlls/oleaut32/oleaut32_Si.rc
deleted file mode 100644
index bf4e99539209fbdbea635b094cf58a05590cfb3e..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Si.rc
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Slovenian resources for oleaut32
- *
- * Copyright 2008 Rok Mandeljc
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-#pragma code_page(65001)
-
-LANGUAGE LANG_SLOVENIAN, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-  IDS_TRUE  "Da"
-  IDS_FALSE "Ne"
-  IDS_YES   "Da"
-  IDS_NO    "Ne"
-  IDS_ON    "VkljuДЌeno"
-  IDS_OFF   "IzkljuДЌeno"
-}
diff --git a/dlls/oleaut32/oleaut32_Sr.rc b/dlls/oleaut32/oleaut32_Sr.rc
deleted file mode 100644
index 4dc64563f05674f8c791ba75475b9fa2f2a6429f..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Sr.rc
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Serbian resources for oleaut32
- *
- * Copyright 2003 Jon Griffiths
- * Copyright 2010 Đorđe Vasiljević
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-#pragma code_page(65001)
-
-LANGUAGE LANG_SERBIAN, SUBLANG_SERBIAN_CYRILLIC
-
-STRINGTABLE
-{
-  IDS_TRUE  "Тачно"
-  IDS_FALSE "Нетачно"
-  IDS_YES   "Да"
-  IDS_NO    "РќРµ"
-  IDS_ON    "Укључено"
-  IDS_OFF   "Искључено"
-}
-
-LANGUAGE LANG_SERBIAN, SUBLANG_SERBIAN_LATIN
-
-STRINGTABLE
-{
-  IDS_TRUE  "TaДЌno"
-  IDS_FALSE "NetaДЌno"
-  IDS_YES   "Da"
-  IDS_NO    "Ne"
-  IDS_ON    "UkljuДЌeno"
-  IDS_OFF   "IskljuДЌeno"
-}
diff --git a/dlls/oleaut32/oleaut32_Sv.rc b/dlls/oleaut32/oleaut32_Sv.rc
deleted file mode 100644
index 08bee95caaff8da3131da52e69e3a744b541b38a..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Sv.rc
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Swedish resources for oleaut32
- *
- * Copyright 2003 Jon Griffiths
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
-
-STRINGTABLE
-{
-  IDS_TRUE  "Sant"
-  IDS_FALSE "Falskt"
-  IDS_YES   "Ja"
-  IDS_NO    "Nej"
-  IDS_ON    "Pе"
-  IDS_OFF   "Av"
-}
diff --git a/dlls/oleaut32/oleaut32_Th.rc b/dlls/oleaut32/oleaut32_Th.rc
deleted file mode 100644
index 0cc3831f132734e7e29249e542cfabb1ee0f20fd..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Th.rc
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Thai resources for oleaut32
- *
- * Copyright 2003 Jon Griffiths
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_THAI, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-  IDS_TRUE  "ЁГФ§"
-  IDS_FALSE "дБиЁГФ§"
-  IDS_YES   "гЄи"
-  IDS_NO    "дБигЄи"
-  IDS_ON    "а»Фґ"
-  IDS_OFF   "»Фґ"
-}
diff --git a/dlls/oleaut32/oleaut32_Tr.rc b/dlls/oleaut32/oleaut32_Tr.rc
deleted file mode 100644
index a2dd130e30ae518ae2868200ab8a441435256cb8..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Tr.rc
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Turkish resources for oleaut32
- *
- * Copyright 2006 Fatih Aюэcэ
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-LANGUAGE LANG_TURKISH, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-  IDS_TRUE  "Doрru"
-  IDS_FALSE "Yanlэю"
-  IDS_YES   "Evet"
-  IDS_NO    "Hayэr"
-  IDS_ON    "Aзэk"
-  IDS_OFF   "Kapalэ"
-}
diff --git a/dlls/oleaut32/oleaut32_Uk.rc b/dlls/oleaut32/oleaut32_Uk.rc
deleted file mode 100644
index 56bf3520fe046b1abbf5f56a5f528184abc6a153..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Uk.rc
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Ukrainian resources for oleaut32
- *
- * Copyright 2003 Jon Griffiths
- *
- * Copyright 2007 Artem Reznikov
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-/* UTF-8 */
-#pragma code_page(65001)
-
-LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT
-
-STRINGTABLE
-{
-  IDS_TRUE  "Істина"
-  IDS_FALSE "Неправда"
-  IDS_YES   "Так"
-  IDS_NO    "РќС–"
-  IDS_ON    "Ввімкнено"
-  IDS_OFF   "Вимкнено"
-}
diff --git a/dlls/oleaut32/oleaut32_Zh.rc b/dlls/oleaut32/oleaut32_Zh.rc
deleted file mode 100644
index 7257f836ed24eec1ed08039a1af5ea628cf5a9e4..0000000000000000000000000000000000000000
--- a/dlls/oleaut32/oleaut32_Zh.rc
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * oleaut32 (Simplified and Traditional Chinese Resources)
- *
- * Copyright 2008 Hongbo Ni <hongbo.at.njstar.com>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-#include "resource.h"
-
-/* Chinese text is encoded in UTF-8 */
-#pragma code_page(65001)
-
-LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_SIMPLIFIED
-
-STRINGTABLE
-{
-  IDS_TRUE  "зњџ"
-  IDS_FALSE "еЃ‡"
-  IDS_YES   "是"
-  IDS_NO    "еђ¦"
-  IDS_ON    "ејЂ"
-  IDS_OFF   "е…і"
-}
-
-LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_TRADITIONAL
-
-STRINGTABLE
-{
-  IDS_TRUE  "зњџ"
-  IDS_FALSE "еЃ‡"
-  IDS_YES   "是"
-  IDS_NO    "еђ¦"
-  IDS_ON    "й–‹"
-  IDS_OFF   "й—њ"
-}
diff --git a/po/bg.po b/po/bg.po
index 3277e669151352f8c92ccd52c9d9d10bd46f1a51..ab305f9f32676648dadc524bdd1baecf932076f8 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -759,13 +759,13 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
-msgstr ""
+msgstr "Да"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
-msgstr ""
+msgstr "РќРµ"
 
 #: crypt32.rc:224
 msgid "Digital Signature"
@@ -1246,6 +1246,22 @@ msgstr ""
 msgid "Wine Video 1 video codec"
 msgstr "Wine MS-RLE видео кодек"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Истина"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Лъжа"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "Включено"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Изключено"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr ""
diff --git a/po/cs.po b/po/cs.po
index aee7baa65293e1ab709ffe71edf402792648204f..6994883cc1aee878538a3dce15ba58adceceabdb 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -773,13 +773,13 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
-msgstr ""
+msgstr "Ano"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
-msgstr ""
+msgstr "Ne"
 
 #: crypt32.rc:224
 msgid "Digital Signature"
@@ -1231,6 +1231,22 @@ msgstr ""
 msgid "Wine Video 1 video codec"
 msgstr "Wine MS-RLE video kodek"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Pravda"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Nepravda"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "Zapnuto"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Vypnuto"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Vlastnosti"
diff --git a/po/da.po b/po/da.po
index ddb0a2af0025ff4dcd3812ac56d20fdd6e1e07bd..15d32f7c83d7a946944d0aa5366ec848b32aaa05 100644
--- a/po/da.po
+++ b/po/da.po
@@ -773,13 +773,13 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
-msgstr ""
+msgstr "Ja"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
-msgstr ""
+msgstr "Nej"
 
 #: crypt32.rc:224
 msgid "Digital Signature"
@@ -1262,6 +1262,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Wine Video 1 videokodeks"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Sand"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Falsk"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "Til"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Fra"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Instillinger"
diff --git a/po/de.po b/po/de.po
index 7c96f77478b2896ff543aa9868b98599525f135b..08c1c904ead72fa5d2b1e6626d008dea1f04b1aa 100644
--- a/po/de.po
+++ b/po/de.po
@@ -761,11 +761,11 @@ msgstr "Nicht vorhanden"
 msgid "Meets Criteria="
 msgstr "Kriterien erfГјllt="
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "Ja"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "Nein"
 
@@ -1253,6 +1253,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Wine Video 1 Video Codec"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Wahr"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Falsch"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "Ein"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Aus"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Einstellungen"
diff --git a/po/el.po b/po/el.po
index 632b66e5810453d8902b21526a93b33fd7d95686..aeee6b25ee6035a7a60e78a5aac9eb001344e666 100644
--- a/po/el.po
+++ b/po/el.po
@@ -761,13 +761,13 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
-msgstr ""
+msgstr "ОќО±О№"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
-msgstr ""
+msgstr "ПЊП‡О№"
 
 #: crypt32.rc:224
 msgid "Digital Signature"
@@ -1214,6 +1214,22 @@ msgstr ""
 msgid "Wine Video 1 video codec"
 msgstr ""
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "О‘О»О·ОёО­П‚"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "ОЁОµП…ОґО­П‚"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "О•ОЅОµПЃОіПЊ"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "О‘ОЅОµОЅОµПЃОіПЊ"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr ""
diff --git a/po/en.po b/po/en.po
index e097b1fc5e741d203daaad2d9a6ac71945e74fb1..f317ecaf009419ff903ad50efe3a28e4e0d9439b 100644
--- a/po/en.po
+++ b/po/en.po
@@ -761,11 +761,11 @@ msgstr "Not Available"
 msgid "Meets Criteria="
 msgstr "Meets Criteria="
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "Yes"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "No"
 
@@ -1215,6 +1215,22 @@ msgstr ""
 msgid "Wine Video 1 video codec"
 msgstr ""
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr ""
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr ""
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr ""
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Properties"
diff --git a/po/en_US.po b/po/en_US.po
index 0225b2a52005f278272b75b9707cd5968f52f353..150eb9f6e9d9bfb90fc4c586cac7bc8f0423fae4 100644
--- a/po/en_US.po
+++ b/po/en_US.po
@@ -761,11 +761,11 @@ msgstr "Not Available"
 msgid "Meets Criteria="
 msgstr "Meets Criteria="
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "Yes"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "No"
 
@@ -1247,6 +1247,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Wine Video 1 video codec"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "True"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "False"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "On"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Off"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Properties"
diff --git a/po/eo.po b/po/eo.po
index c5b25c8b79f59d7b5ef6d273081a63f940281e7d..f3435e601872ff5bbcb4c9b11c26c1c7a70512ec 100644
--- a/po/eo.po
+++ b/po/eo.po
@@ -762,13 +762,13 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
-msgstr ""
+msgstr "Jes"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
-msgstr ""
+msgstr "Ne"
 
 #: crypt32.rc:224
 msgid "Digital Signature"
@@ -1246,6 +1246,22 @@ msgstr ""
 msgid "Wine Video 1 video codec"
 msgstr ""
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Vere"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "False"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "Kondukta"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Elkluda"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Ecoj"
diff --git a/po/es.po b/po/es.po
index 8f67913f833314adc8245bca89e4795f6e118949..60b79ca2b1461bdae777aeccedc67c31496c8c59 100644
--- a/po/es.po
+++ b/po/es.po
@@ -773,13 +773,13 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
-msgstr ""
+msgstr "SГ­"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
-msgstr ""
+msgstr "No"
 
 #: crypt32.rc:224
 msgid "Digital Signature"
@@ -1263,6 +1263,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "cГіdec de video Wine Video 1"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Verdadero"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Falso"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "Activado"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Desactivado"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Propiedades"
diff --git a/po/fi.po b/po/fi.po
index 38bdccd48f886d8921c6f660fd1afaa8c11b8f48..a4e57b51a4934cb7a2ba9f8e4f4c6d2d170ddd58 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -762,11 +762,11 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr ""
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr ""
 
@@ -1246,6 +1246,22 @@ msgstr ""
 msgid "Wine Video 1 video codec"
 msgstr ""
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr ""
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr ""
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr ""
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Ominaisuudet"
diff --git a/po/fr.po b/po/fr.po
index 2d849774ef3561033f49d632610b43a6e158fc0c..dc9eec8516d4ddac46f880372340d1a482c9fb58 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -761,11 +761,11 @@ msgstr "Non disponible"
 msgid "Meets Criteria="
 msgstr "Respecte les critГЁres ="
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "Oui"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "Non"
 
@@ -1253,6 +1253,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Codec vidГ©o Wine Video 1"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Vrai"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Faux"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "Actif"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Inactif"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&PropriГ©tГ©s"
diff --git a/po/he.po b/po/he.po
index 9b38a5f068b5b650fef70a32c5a589a8a65eb0a9..faaf5c28169e10fbd49488eb75e9d4decbb9033b 100644
--- a/po/he.po
+++ b/po/he.po
@@ -762,11 +762,11 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr ""
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr ""
 
@@ -1218,6 +1218,22 @@ msgstr ""
 msgid "Wine Video 1 video codec"
 msgstr "ЧћЧ§Ч•Ч“Ч“ Ч”Ч•Ч•Ч™Ч“ЧђЧ• Wine MS-RLE"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr ""
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr ""
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr ""
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&ЧћЧђЧ¤Ч™Ч™Ч Ч™Чќ"
diff --git a/po/hi.po b/po/hi.po
index 8bb4a5df345770d5cde07cad81375f22ce5304ad..9ba31600c208ba1c878c74253ebabfb723444e02 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -762,11 +762,11 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr ""
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr ""
 
@@ -1215,6 +1215,22 @@ msgstr ""
 msgid "Wine Video 1 video codec"
 msgstr ""
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr ""
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr ""
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr ""
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "सूचना (&o)"
diff --git a/po/hu.po b/po/hu.po
index f49b8fea465b4b12a711f10fad659fd2e6b56c14..2bbe0f8ed6acaa6cced42abbdbd5ffd9cd217b5d 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -761,11 +761,11 @@ msgstr "Nem elГ©rhetЕ‘"
 msgid "Meets Criteria="
 msgstr "MegfelelЕ‘sГ©gi feltГ©tel="
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "Igen"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "Nem"
 
@@ -1255,6 +1255,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Wine Video 1 video kodek"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Igaz"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Hamis"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "Be"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Ki"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&BeГЎllГ­tГЎsok"
diff --git a/po/it.po b/po/it.po
index 11b26d1bfc48d0ed9609fb50f84e275dd5cb24b4..91ff06fb3150b880a7c02d9ed037ece7d94a2f83 100644
--- a/po/it.po
+++ b/po/it.po
@@ -761,11 +761,11 @@ msgstr "Non disponibili"
 msgid "Meets Criteria="
 msgstr "Soddisfa Criteri="
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "Sì"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "No"
 
@@ -1253,6 +1253,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Wine Video 1 video codec"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Vero"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Falso"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "On"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Off"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&ProprietГ "
diff --git a/po/ja.po b/po/ja.po
index da5f3bbbea88c4624642bfbf6cba3b1d599cb222..9a619f0179e28de6b0c150983a128a8ecfcca515 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -761,11 +761,11 @@ msgstr "Not Available"
 msgid "Meets Criteria="
 msgstr "Meets Criteria="
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr ""
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr ""
 
@@ -1223,6 +1223,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Wine гѓ“гѓ‡г‚Є 1 гѓ“гѓ‡г‚Єг‚ігѓјгѓ‡гѓѓг‚Ї"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr ""
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr ""
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr ""
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "гѓ—гѓ­гѓ‘гѓ†г‚Ј(&P)"
diff --git a/po/ko.po b/po/ko.po
index ff324eb95f90968afcb0e3b281728dc82ef646b4..49fb4daab753ca689ff58291c0e810213ff2b45c 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -761,11 +761,11 @@ msgstr "불가능함"
 msgid "Meets Criteria="
 msgstr "л§ћлЉ” кё°м¤Ђ ="
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "예"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "아니오"
 
@@ -1250,6 +1250,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Wine 비디오 1 비디오 코덱"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "진실"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "거짓"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "мћ‘лЏ™"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "비작동"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "л“±лЎќ м •ліґ(&P)"
diff --git a/po/lt.po b/po/lt.po
index 024778e25e2b7e0ebb6bb1696923b9942af2d174..45695402a40fe68cb93659674f492c4649252a5d 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -761,11 +761,11 @@ msgstr "Neprieinama"
 msgid "Meets Criteria="
 msgstr "Atitinka kriterijus="
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "Taip"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "Ne"
 
@@ -1251,6 +1251,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Wine Video 1 vaizdo kodekas"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Tiesa"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Netiesa"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "Д®jungta"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "IЕЎjungta"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&SavybД—s"
diff --git a/po/ml.po b/po/ml.po
index b92a4eadaa09787e8a02cd23700eff2e3bdb8d0b..741237c9afa2253569e4a594de82935bef5a28d7 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -762,11 +762,11 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr ""
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr ""
 
@@ -1215,6 +1215,22 @@ msgstr ""
 msgid "Wine Video 1 video codec"
 msgstr ""
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr ""
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr ""
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr ""
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "аґµаґї_аґµаґ°аґ‚"
diff --git a/po/nb_NO.po b/po/nb_NO.po
index 5dc148f8e5cc39a9c51d95978b7f56c1ecf37e61..ee22574c0ae99c21ce6c719fb1825e94c459a884 100644
--- a/po/nb_NO.po
+++ b/po/nb_NO.po
@@ -761,11 +761,11 @@ msgstr "Ikke tilgjengelig"
 msgid "Meets Criteria="
 msgstr "MГёter kriterier="
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "Ja"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "Nei"
 
@@ -1253,6 +1253,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Wine Video 1-videokodek"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Sann"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Usann"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "PГҐ"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Av"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Egenskaper"
diff --git a/po/nl.po b/po/nl.po
index 5e4a18e417a848189cb25799f7ab142ba018f5bf..e07eba90fda8960c40015a77b1a182c6d8f86ded 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -761,11 +761,11 @@ msgstr "Niet beschikbaar"
 msgid "Meets Criteria="
 msgstr "Past bij criteria="
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "Ja"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "Nee"
 
@@ -1253,6 +1253,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Wine Video 1 video codec"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Waar"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Onwaar"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "Aan"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Uit"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Eigenschappen"
diff --git a/po/or.po b/po/or.po
index 320dd157be03cf501c84dc7572c95d5053a98fce..82ea088027a03c388bfd48966c705d90e1c08a1c 100644
--- a/po/or.po
+++ b/po/or.po
@@ -762,11 +762,11 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr ""
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr ""
 
@@ -1215,6 +1215,22 @@ msgstr ""
 msgid "Wine Video 1 video codec"
 msgstr ""
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr ""
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr ""
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr ""
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "а¬ёа­‚а¬ља¬Ёа¬ѕ (&o)"
diff --git a/po/pa.po b/po/pa.po
index 45fbdebd3d7c81f1a961e1972768d0624e1fbb5c..45066c3635cb8d02af190e341f207d9835abc93d 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -762,11 +762,11 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr ""
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr ""
 
@@ -1215,6 +1215,22 @@ msgstr ""
 msgid "Wine Video 1 video codec"
 msgstr ""
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr ""
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr ""
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr ""
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "аЁњаЁѕаЁЈаЁ•аЁѕаЁ°а©Ђ(&o)"
diff --git a/po/pl.po b/po/pl.po
index a9a226a61850f08cc5eee713eb2430ae26df7758..22383f69f3637c7fb22cafc5916ff5c4087f178b 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -761,11 +761,11 @@ msgstr "Nie dostД™pne"
 msgid "Meets Criteria="
 msgstr "SpeЕ‚nianie kryteriГіw="
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "Tak"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "Nie"
 
@@ -1253,6 +1253,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Kodek Wine Video 1"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Prawda"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "FaЕ‚sz"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "WЕ‚Д…czone"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "WyЕ‚Д…czone"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Ustawienia"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index a2ae6a4424746db00ffc6161f52841161e9be85b..40497f423da779bab450ba997de9d3c35190193b 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -761,11 +761,11 @@ msgstr "NГЈo DisponГ­vel"
 msgid "Meets Criteria="
 msgstr "Conforme os CritГ©rios="
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "Sim"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "NГЈo"
 
@@ -1253,6 +1253,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "codec video Wine Video 1"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Verdadeiro"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Falso"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "Ligado"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Desligado"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Propriedades"
diff --git a/po/pt_PT.po b/po/pt_PT.po
index a1dcc567f07eccd656e3c552131f610ebcfe61b2..d0df129e46182a74c40792a29e7634fee3093455 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -761,11 +761,11 @@ msgstr "NГЈo DisponГ­vel"
 msgid "Meets Criteria="
 msgstr "Conforme os CritГ©rios="
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "Sim"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "NГЈo"
 
@@ -1253,6 +1253,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "codec video Wine Video 1"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Verdadeiro"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Falso"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "Ligado"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Desligado"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Propriedades"
diff --git a/po/ro.po b/po/ro.po
index fe64885edb6bba372469b3ace9c36cc20f0ec0d2..43e86a0deaf9e9430c8c86873bdacaa8de72c7b4 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -761,11 +761,11 @@ msgstr "IndisponibilДѓ"
 msgid "Meets Criteria="
 msgstr "ГЋndeplineИ™te criteriul="
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "Da"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "Nu"
 
@@ -1254,6 +1254,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Codecul video Wine Video 1"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "AdevДѓrat"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Fals"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "Activat"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Dezactivat"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&ProprietДѓИ›i"
diff --git a/po/ru.po b/po/ru.po
index 333bdafaad2b00efa755602755fa2eefad887e32..cc26c34a4f9e85d4b8afdc83624ce527b9525e88 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -773,13 +773,13 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
-msgstr ""
+msgstr "Да"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
-msgstr ""
+msgstr "Нет"
 
 #: crypt32.rc:224
 msgid "Digital Signature"
@@ -1258,6 +1258,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Видео кодер Wine Video 1"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Правда"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Ложь"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "Включено"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Выключено"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Свойства"
diff --git a/po/sk.po b/po/sk.po
index b66ce27102f50b439b5b1b0724de67ef85ce6b2a..7116e2cc5e63472271d980ab3ea4e92e29497c05 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -762,11 +762,11 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr ""
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr ""
 
@@ -1215,6 +1215,22 @@ msgstr ""
 msgid "Wine Video 1 video codec"
 msgstr ""
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr ""
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr ""
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr ""
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Vlastnosti"
diff --git a/po/sl.po b/po/sl.po
index 5c016d2bdb887339d4a7fe25bc371a84df06402c..2142d02363277050a33cf4882057979c93b2d7f6 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -776,11 +776,11 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "Da"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "Ne"
 
@@ -1263,6 +1263,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Wine Video 1 video kodek"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Da"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Ne"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "VkljuДЌeno"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "IzkljuДЌeno"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Lastnosti"
diff --git a/po/sr_Latn_SP.po b/po/sr_Latn_SP.po
index 7dadc3056e97c0d9d09e54b96ffe9dccb083b39f..06d8547121c2c7e5148cf4155269c77d4ec0820f 100644
--- a/po/sr_Latn_SP.po
+++ b/po/sr_Latn_SP.po
@@ -765,11 +765,11 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "Da"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "Ne"
 
@@ -1251,6 +1251,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Wine Video 1 video kodek"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "TaДЌno"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "NetaДЌno"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "UkljuДЌeno"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "IskljuДЌeno"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Svojstva"
diff --git a/po/sr_SP.po b/po/sr_SP.po
index 9188d7750b6f56f4498dda6d782d45483d8b59bc..44d1ce13f44819e405de7f16f2b98188e1c79cf3 100644
--- a/po/sr_SP.po
+++ b/po/sr_SP.po
@@ -765,11 +765,11 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "Да"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "РќРµ"
 
@@ -1251,6 +1251,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Wine Video 1 видео кодек"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Тачно"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Нетачно"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "Укључено"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Искључено"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Својства"
diff --git a/po/sv.po b/po/sv.po
index 6e28a0259224b5831093bf00ee157e37accbf7a7..da498325744f93d33a787df9a175b70263dcc8b0 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -761,11 +761,11 @@ msgstr "Ej tillgänglig"
 msgid "Meets Criteria="
 msgstr "Uppfyller kriterier="
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "Ja"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "Nej"
 
@@ -1253,6 +1253,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Wine Video 1 videokodek"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Sant"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Falskt"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "PГҐ"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Av"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Egenskaper"
diff --git a/po/te.po b/po/te.po
index 19f32ca796749334ff5885cadd574dc2ba79b340..595f6e3a73bf57918204dfd400d936cc2565eb96 100644
--- a/po/te.po
+++ b/po/te.po
@@ -762,11 +762,11 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr ""
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr ""
 
@@ -1215,6 +1215,22 @@ msgstr ""
 msgid "Wine Video 1 video codec"
 msgstr ""
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr ""
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr ""
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr ""
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "а°ёа°®а°ѕа°ља°ѕа°°а°®а±Ѓ (&o)"
diff --git a/po/th.po b/po/th.po
index c5cb95561eb1f567435cbdd15d5608a6a17f03ce..19edf0b10df75aa419ff45198b6f45b1e3e16b91 100644
--- a/po/th.po
+++ b/po/th.po
@@ -762,13 +762,13 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
-msgstr ""
+msgstr "а№ѓаёЉа№€"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
-msgstr ""
+msgstr "ไม่ใช่"
 
 #: crypt32.rc:224
 msgid "Digital Signature"
@@ -1215,6 +1215,22 @@ msgstr ""
 msgid "Wine Video 1 video codec"
 msgstr ""
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "аё€аёЈаёґаё‡"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "ไม่จริง"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "а№Ђаё›аёґаё”"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "аё›аёґаё”"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "аё›аёЈаё±аёља№Ѓаё•а№€аё‡аё™аёІаё¬аёґаёЃаёІ"
diff --git a/po/tr.po b/po/tr.po
index 86fbdfc9e058b3704e4636d798cd88cb3e72c43e..a245667e192b9d14a5b072036c9758518320cb5c 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -773,13 +773,13 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
-msgstr ""
+msgstr "Evet"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
-msgstr ""
+msgstr "HayД±r"
 
 #: crypt32.rc:224
 msgid "Digital Signature"
@@ -1260,6 +1260,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Wine Vidyo 1 vidyo çözücü"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "DoДџru"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "YanlД±Еџ"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "Açık"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "KapalД±"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Г–zellikler"
diff --git a/po/uk.po b/po/uk.po
index a8d530afe824d45e10fd954ae0f7582a40234c4c..23d1ae50b1d470824d68d99650af7146bf476844 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -761,11 +761,11 @@ msgstr "Недоступно"
 msgid "Meets Criteria="
 msgstr "Відповідає критеріям="
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr "Так"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr "РќС–"
 
@@ -1251,6 +1251,22 @@ msgstr "MS-CRAM"
 msgid "Wine Video 1 video codec"
 msgstr "Відео кодек Wine Video 1"
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "Істина"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "Неправда"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "Ввімкнено"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "Вимкнено"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&Властивості"
diff --git a/po/wa.po b/po/wa.po
index 337862f079fc6f3989df782ea7ffd6a55afabe3d..9f717c65996df0bad160ffcabb719113eeb33c46 100644
--- a/po/wa.po
+++ b/po/wa.po
@@ -762,11 +762,11 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr ""
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr ""
 
@@ -1215,6 +1215,22 @@ msgstr ""
 msgid "Wine Video 1 video codec"
 msgstr ""
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr ""
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr ""
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr ""
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "&PropietГ©s"
diff --git a/po/wine.pot b/po/wine.pot
index 71b30420dbb2942798815f5f95b8cfc1ff5f5c1f..85e8e8dc3b10894e23b4b264c2ef003d150a1d1c 100644
--- a/po/wine.pot
+++ b/po/wine.pot
@@ -758,11 +758,11 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
 msgstr ""
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
 msgstr ""
 
@@ -1211,6 +1211,22 @@ msgstr ""
 msgid "Wine Video 1 video codec"
 msgstr ""
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr ""
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr ""
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr ""
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr ""
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr ""
diff --git a/po/zh_CN.po b/po/zh_CN.po
index df0752c3e40f1f88a8057f44855965282526a6ec..3ab2063c1e7d91773faf7cb7aa62328f76e6bcb5 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -762,13 +762,13 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
-msgstr ""
+msgstr "是"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
-msgstr ""
+msgstr "еђ¦"
 
 #: crypt32.rc:224
 msgid "Digital Signature"
@@ -1244,6 +1244,22 @@ msgstr ""
 msgid "Wine Video 1 video codec"
 msgstr ""
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "зњџ"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "еЃ‡"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "ејЂ"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "е…і"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "е±ћжЂ§(&P)"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 1d3f39dc53b2e28886b216bf98870a2426703e94..bef2eb1c4fc713cc4eed721a8dc3081f064634b7 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -762,13 +762,13 @@ msgstr ""
 msgid "Meets Criteria="
 msgstr ""
 
-#: crypt32.rc:222 ipconfig.rc:44
+#: crypt32.rc:222 oleaut32.rc:29 ipconfig.rc:44
 msgid "Yes"
-msgstr ""
+msgstr "是"
 
-#: crypt32.rc:223 ipconfig.rc:45
+#: crypt32.rc:223 oleaut32.rc:30 ipconfig.rc:45
 msgid "No"
-msgstr ""
+msgstr "еђ¦"
 
 #: crypt32.rc:224
 msgid "Digital Signature"
@@ -1244,6 +1244,22 @@ msgstr ""
 msgid "Wine Video 1 video codec"
 msgstr ""
 
+#: oleaut32.rc:27
+msgid "True"
+msgstr "зњџ"
+
+#: oleaut32.rc:28
+msgid "False"
+msgstr "еЃ‡"
+
+#: oleaut32.rc:31
+msgid "On"
+msgstr "й–‹"
+
+#: oleaut32.rc:32
+msgid "Off"
+msgstr "й—њ"
+
 #: clock.rc:28
 msgid "&Properties"
 msgstr "屬性(&P)"