def empty_msgid_store(): return MessageIdStore()
def msgid_store(msgids): msgid_store = MessageIdStore() for msgid, symbol in msgids.items(): msgid_store.add_msgid_and_symbol(msgid, symbol) return msgid_store
def msgid_store(msgids: dict[str, str]) -> MessageIdStore: msgid_store = MessageIdStore() for msgid, symbol in msgids.items(): msgid_store.add_msgid_and_symbol(msgid, symbol) return msgid_store